@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@400;700&display=swap");
/*********************************
 *
 * COMMON
 *
 *********************************/
body {
  overflow-x: hidden;
  color: #804603;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4vw;
  font-weight: 900; }
  @media screen and (max-width: 750px) {
    body {
      max-width: 750px;
      font-size: 3vw; }
      body .pc {
        display: none !important; } }
  @media screen and (min-width: 751px) {
    body a {
      transition: 0.3s; }
      body a:hover {
        opacity: 0.8; }
    body .sp {
      display: none !important; } }
  body a {
    text-decoration: none; }
  body img {
    width: 100%;
    height: auto; }
  body .red {
    color: #d63030; }

/* font */
p.l_1em {
  padding: 0 0 0 1em !important;
  text-indent: -1em;
  line-height: 1.7; }

/* fadeIn */
.fadeIn,
.fadeIn_dl400,
.fadeIn_dl600,
.fadeIn_dl800,
.fadeIn_dl1200 {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  opacity: 0; }

.fadeIn_dl400 {
  animation-delay: 0.4s; }

.fadeIn_dl600 {
  animation-delay: 0.6s; }

.fadeIn_dl800 {
  animation-delay: 0.8s; }

.fadeIn_dl1200 {
  animation-delay: 1.2s; }

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeInAnime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeInTrigger {
  opacity: 0; }

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0; }

.fadeUp_dl400 {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  animation-delay: 0.4s;
  opacity: 0; }

.fadeUp_dl800 {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  animation-delay: 0.8s;
  opacity: 0; }

.fadeUp_dl1000 {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  animation-delay: 1s;
  opacity: 0; }

.fadeUp_dl1200 {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  animation-delay: 1.2s;
  opacity: 0; }

.fadeUp_dl1400 {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  animation-delay: 1.4s;
  opacity: 0; }

.fadeUp_dl1600 {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  animation-delay: 1.6s;
  opacity: 0; }

.fadeUp_dl1800 {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  animation-delay: 1.8s;
  opacity: 0; }

.fadeUp_dl2000 {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  animation-delay: 2s;
  opacity: 0; }

.fadeUp_dl2200 {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  animation-delay: 2.2s;
  opacity: 0; }

.fadeUp_dl2400 {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  animation-delay: 2.4s;
  opacity: 0; }

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.fadeUpTrigger,
.fadeUpTrigger2 {
  opacity: 0; }

/* scale */
.scale {
  animation: scaleAnime 0.5s ease-in-out forwards;
  animation-delay: 0.1s; }

@keyframes scaleAnime {
  0% {
    transform: scale(0.4, 0.4);
    opacity: 0; }
  100% {
    transform: scale(1, 1);
    opacity: 1; } }
.scale2 {
  animation: scale2Anime 0.4s ease-in-out forwards;
  animation-delay: 0.1s; }

@keyframes scale2Anime {
  0% {
    transform: scale(0, 0); }
  100% {
    transform: scale(1, 1); } }
.scaleTrigger2 {
  transform: scale(0, 0); }

/* rotate */
.rotate {
  animation: rotateAnime 20s linear infinite;
  transform-origin: 49.9% 48.8% 0; }

@-webkit-keyframes rotateAnime {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* updown */
.updown {
  animation: updownAnime 0.3s ease-in-out infinite alternate-reverse; }

@keyframes updownAnime {
  0% {
    transform: translateY(-8%); }
  100% {
    transform: translateY(8%); } }
/* leftright */
.leftright {
  animation: leftrightAnime 6s ease-in-out infinite alternate-reverse; }

@keyframes leftrightAnime {
  0% {
    transform: translateX(-10%); }
  100% {
    transform: translateX(10%); } }
/* rightleft */
.rightleft {
  animation: rightleftAnime 6s ease-in-out infinite alternate-reverse; }

@keyframes rightleftAnime {
  0% {
    transform: translateX(18%); }
  100% {
    transform: translateX(-18%); } }
.rightleft2 {
  animation: rightleftAnime 4s ease-in-out infinite alternate-reverse; }

@keyframes rightleftAnime {
  0% {
    transform: translateX(12%); }
  100% {
    transform: translateX(-12%); } }
/* rumble */
.rumble {
  animation: rumbleAnime 2.5s linear infinite; }

@keyframes rumbleAnime {
  0% {
    transform: rotate(-10deg); }
  6% {
    transform: rotate(10deg); }
  13% {
    transform: rotate(-10deg); }
  20% {
    transform: rotate(10deg); }
  27% {
    transform: rotate(-10deg); }
  34% {
    transform: rotate(10deg); }
  41% {
    transform: rotate(-10deg); }
  48% {
    transform: rotate(10deg); }
  55% {
    transform: rotate(-10deg); }
  62% {
    transform: rotate(10deg); }
  69% {
    transform: rotate(0deg); }
  94% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(-10deg); } }
.rumble2 {
  animation: rumble2Anime 2.5s linear infinite; }

@keyframes rumble2Anime {
  0% {
    transform: rotate(10deg); }
  6% {
    transform: rotate(-10deg); }
  13% {
    transform: rotate(10deg); }
  20% {
    transform: rotate(-10deg); }
  27% {
    transform: rotate(10deg); }
  34% {
    transform: rotate(-10deg); }
  41% {
    transform: rotate(10deg); }
  48% {
    transform: rotate(-10deg); }
  55% {
    transform: rotate(10deg); }
  62% {
    transform: rotate(-10deg); }
  69% {
    transform: rotate(0deg); }
  94% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(10deg); } }
.rumble3 {
  animation: rumble3Anime 1s linear alternate-reverse; }

@keyframes rumble3Anime {
  0% {
    transform: translate(0); }
  50% {
    transform: translate(0); }
  60% {
    transform: translate(5%); }
  64% {
    transform: translate(0); }
  68% {
    transform: translate(-5%); }
  72% {
    transform: translate(0); }
  76% {
    transform: translate(5%); }
  80% {
    transform: translate(0); }
  84% {
    transform: translate(-5%); }
  88% {
    transform: translate(0); }
  100% {
    transform: translate(0); } }
.rumble4 {
  animation: rumble4Anime 2.5s linear infinite; }

@keyframes rumble4Anime {
  0% {
    transform: rotate(11deg); }
  6% {
    transform: rotate(-11deg); }
  13% {
    transform: rotate(11deg); }
  20% {
    transform: rotate(-11deg); }
  27% {
    transform: rotate(11deg); }
  34% {
    transform: rotate(-11deg); }
  41% {
    transform: rotate(11deg); }
  48% {
    transform: rotate(-11deg); }
  55% {
    transform: rotate(11deg); }
  62% {
    transform: rotate(-11deg); }
  69% {
    transform: rotate(0deg); }
  94% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(11deg); } }
@keyframes fall {
  to {
    top: 120%; } }
@keyframes sway1 {
  from {
    transform: translateX(0px) rotateY(0deg); }
  to {
    transform: translateX(200px) rotateY(-360deg); } }
@keyframes sway2 {
  from {
    transform: translateX(200px) rotateY(0deg); }
  to {
    transform: translateX(0px) rotateY(360deg); } }
/*********************************
 *
 * MV
 *
 *********************************/
#mv {
  overflow: hidden;
  width: 100%;
  margin: 0 auto; }
  #mv .mv_inner {
    position: relative; }
    #mv .mv_inner .logo {
      position: absolute;
      width: 4.3%;
      top: 2.1%;
      left: 2%; }
      @media screen and (max-width: 750px) {
        #mv .mv_inner .logo {
          width: 14.1%;
          top: 1.7%;
          left: 3%; } }
    #mv .mv_inner .img1 {
      position: absolute;
      width: 22.55%;
      top: 52.8%;
      left: 10%; }
      @media screen and (max-width: 750px) {
        #mv .mv_inner .img1 {
          width: 30.2%;
          top: 67.4%;
          left: 0; } }
    #mv .mv_inner .img2 {
      position: absolute;
      width: 20.9%;
      top: 32%;
      right: 9.7%; }
      @media screen and (max-width: 750px) {
        #mv .mv_inner .img2 {
          width: 28.9%;
          top: 47.8%;
          right: 0%; } }
    #mv .mv_inner .img3 {
      position: absolute;
      width: 33.8%;
      top: 42.5%;
      left: 39%; }
      @media screen and (max-width: 750px) {
        #mv .mv_inner .img3 {
          width: 52.4%;
          top: 32%;
          left: 32.4%; } }
    @media screen and (max-width: 750px) {
      #mv .mv_inner .img4 {
        position: absolute;
        width: 34%;
        top: 70%;
        right: -4%; } }
    #mv .mv_inner .anime1 {
      position: absolute;
      animation: fall 11s linear infinite, sway1 2s ease-in-out infinite alternate;
      animation-delay: 8s;
      width: 3.3%;
      top: -10%;
      right: 15%; }
    #mv .mv_inner .anime2 {
      position: absolute;
      animation: fall 10s linear infinite, sway1 3.5s ease-in-out infinite alternate;
      animation-delay: 13s;
      width: 3.1%;
      top: -10%;
      right: 30%; }
    #mv .mv_inner .anime3 {
      position: absolute;
      animation: fall 6s linear infinite, sway2 4s ease-in-out infinite alternate;
      animation-delay: 7s;
      width: 6.7%;
      top: -10%;
      left: 6%; }
    #mv .mv_inner .anime4 {
      position: absolute;
      animation: fall 9s linear infinite, sway1 4s ease-in-out infinite alternate;
      animation-delay: 0s;
      width: 2.2%;
      top: -10%;
      left: 17%; }
    #mv .mv_inner .anime5 {
      position: absolute;
      animation: fall 8s linear infinite, sway2 3s ease-in-out infinite alternate;
      animation-delay: 3s;
      width: 2.3%;
      top: -10%;
      right: 15%; }
    #mv .mv_inner .anime6 {
      position: absolute;
      animation: fall 5s linear infinite, sway2 3.5s ease-in-out infinite alternate;
      animation-delay: 16s;
      width: 3.1%;
      top: -10%;
      right: 40%; }
    #mv .mv_inner .anime7 {
      position: absolute;
      animation: fall 4s linear infinite, sway1 3s ease-in-out infinite alternate;
      animation-delay: 3s;
      width: 2.7%;
      top: -10%;
      left: 6%; }
    #mv .mv_inner .anime8 {
      position: absolute;
      animation: fall 7s linear infinite, sway2 4s ease-in-out infinite alternate;
      animation-delay: 4s;
      width: 3.2%;
      top: -10%;
      left: 57%; }

/*********************************
 *
 * DATE
 *
 *********************************/
#date {
  background: #ffa0aa url("../images/date_bg.png") left bottom no-repeat;
  background-size: 100% auto; }
  #date h2 {
    width: 37.1%;
    max-width: 714px;
    margin: 0 auto;
    padding: 1.8vw 0 0 0; }
    @media screen and (max-width: 750px) {
      #date h2 {
        width: 85.9%;
        padding: 2.5em 0 0 0; } }
  #date .date_img1 {
    width: 84.1%;
    max-width: 1616px;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      #date .date_img1 {
        width: 96.9%;
        padding: 1em 0 0 0; } }
  #date .date_img2 {
    width: 45%;
    max-width: 864px;
    margin: 0 auto;
    padding: 2.8vw 0 8vw 0; }
    @media screen and (max-width: 750px) {
      #date .date_img2 {
        width: 66.9%;
        padding: 1.5em 0 6em 0; } }

/*********************************
 *
 * ABOUT
 *
 *********************************/
#about {
  position: relative;
  padding: 4vw 0 7vw 0;
  background: url("../images/about_bg.jpg") center top no-repeat;
  background-size: cover; }
  @media screen and (max-width: 750px) {
    #about {
      padding: 7vw 0 10vw 0;
      background: url("../images/about_bg-sp.jpg") center top no-repeat;
      background-size: 100% cover; } }
  #about .about_inner {
    width: 83.3%;
    max-width: 1600px;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      #about .about_inner {
        width: 92%; } }
    #about .about_inner .btn {
      position: relative;
      width: 39.5%;
      max-width: 633px;
      margin: 0 auto;
      z-index: 2; }
      @media screen and (max-width: 750px) {
        #about .about_inner .btn {
          width: 77.3%; } }
      #about .about_inner .btn p {
        margin: 0 auto;
        color: #d63030;
        text-align: center; }
    #about .about_inner .lead {
      width: 107%;
      max-width: 1715px;
      margin: -8vw 0 0 -3.5%; }
      @media screen and (max-width: 750px) {
        #about .about_inner .lead {
          width: 100%;
          margin: 0 auto; } }
    #about .about_inner h2 {
      margin: 2.9vw auto 0 auto; }
      @media screen and (max-width: 750px) {
        #about .about_inner h2 {
          width: 97%;
          margin: 8vw auto 0 auto; } }
    #about .about_inner .img_box {
      position: relative;
      background: url("../images/about_img10.png") left top no-repeat;
      background-size: 100% auto; }
      @media screen and (max-width: 750px) {
        #about .about_inner .img_box {
          width: 97%;
          margin: 0 auto;
          background: url("../images/about_img10-sp.png") left top no-repeat;
          background-size: 100% auto; } }
      #about .about_inner .img_box .course {
        position: absolute;
        width: 12.6%;
        left: 4.8%; }
        @media screen and (max-width: 750px) {
          #about .about_inner .img_box .course {
            width: 24%;
            left: 2.8%; } }
      #about .about_inner .img_box .img1 {
        position: absolute;
        width: 100%; }
        #about .about_inner .img_box .img1 .course {
          top: 1%;
          margin: 1.5% 0 0 0; }
          @media screen and (max-width: 750px) {
            #about .about_inner .img_box .img1 .course {
              margin: 2.7% auto 0 auto; } }
        #about .about_inner .img_box .img1 .item {
          width: 17%;
          margin: 11.5% 0 0 41%; }
          @media screen and (max-width: 750px) {
            #about .about_inner .img_box .img1 .item {
              width: 33%;
              margin: 29% auto 0 auto; } }
      #about .about_inner .img_box .img2 {
        position: absolute;
        width: 100%;
        top: 25.5%; }
        #about .about_inner .img_box .img2 .course {
          top: 0; }
          @media screen and (max-width: 750px) {
            #about .about_inner .img_box .img2 .course {
              margin: 0 auto 0 auto; } }
        #about .about_inner .img_box .img2 .item {
          width: 19.1%;
          margin: 6.5% 0 0 40%; }
          @media screen and (max-width: 750px) {
            #about .about_inner .img_box .img2 .item {
              width: 35%;
              margin: 19% auto 0 auto; } }
      #about .about_inner .img_box .img3 {
        position: absolute;
        width: 100%;
        top: 50%; }
        #about .about_inner .img_box .img3 .course {
          top: 1%; }
          @media screen and (max-width: 750px) {
            #about .about_inner .img_box .img3 .course {
              margin: 5.5vw auto 0 auto; } }
        #about .about_inner .img_box .img3 .item {
          width: 23.3%;
          margin: 10% 0 0 37%; }
          @media screen and (max-width: 750px) {
            #about .about_inner .img_box .img3 .item {
              width: 41%;
              margin: 32% 0 0 28%; } }
      #about .about_inner .img_box .img4 {
        position: absolute;
        width: 100%;
        top: 75%; }
        #about .about_inner .img_box .img4 .course {
          top: 0.5%; }
          @media screen and (max-width: 750px) {
            #about .about_inner .img_box .img4 .course {
              margin: 4.2vw auto 0 auto; } }
        #about .about_inner .img_box .img4 .item {
          width: 25.6%;
          margin: 18% 0 0 36%; }
          @media screen and (max-width: 750px) {
            #about .about_inner .img_box .img4 .item {
              width: 56%;
              margin: 43% 0 0 22%; } }
        @media screen and (max-width: 750px) {
          #about .about_inner .img_box .img4 .img {
            position: relative;
            width: 23%;
            margin: -13% 0 0 70%;
            z-index: 2; } }
    #about .about_inner .notice {
      margin: 0.5em auto 0 auto;
      font-size: 80%;
      font-weight: 600; }
      @media screen and (max-width: 750px) {
        #about .about_inner .notice {
          width: 97%;
          margin: 0.5em auto 0 auto; } }

/*********************************
 *
 * PRODUCT
 *
 *********************************/
#product {
  position: relative; }
  #product .product_inner {
    width: 83.9%;
    max-width: 1612px;
    margin: 0 auto;
    padding: 5.1vw 0 9vw 0; }
    @media screen and (max-width: 750px) {
      #product .product_inner {
        width: 89.4%;
        padding: 7vw 0 12vw 0; } }
    #product .product_inner ul.list {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      width: 90%;
      margin: 0 auto; }
      @media screen and (max-width: 750px) {
        #product .product_inner ul.list {
          padding: 1em 0 0 0; } }
      #product .product_inner ul.list li {
        width: 29%;
        margin: 2.5em 0 0 0;
        text-align: center; }
        @media screen and (max-width: 750px) {
          #product .product_inner ul.list li {
            width: 46%;
            margin: 1.5em 0 0 0; }
            #product .product_inner ul.list li:last-child {
              margin-left: 27%; } }
        #product .product_inner ul.list li p {
          margin: 0.8em 0 0 0;
          font-size: 85%;
          line-height: 1.4; }
    #product .product_inner .img {
      width: 42.6%;
      margin: 5em auto 0 auto; }
      @media screen and (max-width: 750px) {
        #product .product_inner .img {
          width: 83.4%;
          margin: 3em auto 0 auto; } }
      #product .product_inner .img li {
        padding-left: 1em;
        text-indent: -1em; }
    #product .product_inner .notice {
      margin: 1em auto 0 auto;
      font-size: 90%;
      text-align: center; }
      #product .product_inner .notice li {
        padding-left: 1em;
        text-indent: -1em; }
    #product .product_inner .btn {
      width: 39.2%;
      margin: 2em auto 0 auto; }
      @media screen and (max-width: 750px) {
        #product .product_inner .btn {
          width: 85%;
          margin: 2.2em auto 0 auto; } }

/*********************************
 *
 * BG
 *
 *********************************/
.bg {
  position: relative;
  padding: 11vw 0;
  background: #ffa0aa; }
  @media screen and (max-width: 750px) {
    .bg {
      padding: 15vw 0; } }

/*********************************
 *
 * HOWTO
 *
 *********************************/
#howto .howto_inner {
  width: 85.4%;
  max-width: 1640px;
  margin: 0 auto; }
  @media screen and (max-width: 750px) {
    #howto .howto_inner {
      width: 89.6%; } }
  #howto .howto_inner h2 {
    position: relative;
    width: 37.8%;
    margin: 0 auto;
    cursor: pointer; }
    @media screen and (max-width: 750px) {
      #howto .howto_inner h2 {
        width: 84.9%; } }
    #howto .howto_inner h2::before {
      position: absolute;
      display: block;
      content: "";
      width: 1.3em;
      height: 1.3em;
      right: 0.8em;
      top: 33%;
      background: url("../images/icn_line.svg") center center no-repeat;
      background-size: 100% auto; }
    #howto .howto_inner h2::after {
      position: absolute;
      display: block;
      content: "";
      width: 1.3em;
      height: 1.3em;
      right: 0.8em;
      top: 33%;
      background: url("../images/icn_line.svg") center center no-repeat;
      background-size: 100% auto;
      transform: rotate(90deg);
      transition: 0.3s; }
    #howto .howto_inner h2.open::after {
      transform: rotate(0); }
  #howto .howto_inner .howto_box {
    display: none;
    position: relative; }
    @media screen and (max-width: 750px) {
      #howto .howto_inner .howto_box::after {
        position: absolute;
        display: block;
        content: "";
        width: 8%;
        height: 5em;
        top: 27.8%;
        left: 46%;
        background: url("../images/icn_arw.png") center center no-repeat;
        background-size: 50% auto;
        transform: rotate(90deg); } }
  #howto .howto_inner .step {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 3.3vw auto 0 auto; }
    @media screen and (max-width: 750px) {
      #howto .howto_inner .step {
        width: 77.5%; } }
    #howto .howto_inner .step::before {
      position: absolute;
      display: block;
      content: "";
      width: 2.5%;
      height: 4em;
      top: 23%;
      left: 32.2%;
      background: url("../images/icn_arw.png") center center no-repeat;
      background-size: 50% auto; }
      @media screen and (max-width: 750px) {
        #howto .howto_inner .step::before {
          width: 10%;
          height: 5em;
          top: 23.8%;
          left: 45%;
          transform: rotate(90deg); } }
    #howto .howto_inner .step::after {
      position: absolute;
      display: block;
      content: "";
      width: 2.5%;
      height: 4em;
      top: 23%;
      right: 31.2%;
      background: url("../images/icn_arw.png") center center no-repeat;
      background-size: 50% auto; }
      @media screen and (max-width: 750px) {
        #howto .howto_inner .step::after {
          width: 10%;
          height: 5em;
          top: 48.7%;
          left: 45%;
          transform: rotate(90deg); } }
    #howto .howto_inner .step div {
      width: 31.5%;
      margin: 1.5em 0 0 0; }
      @media screen and (max-width: 750px) {
        #howto .howto_inner .step div {
          width: 100%;
          margin: 2em 0 0 0; } }
    #howto .howto_inner .step .step4 {
      width: 100%;
      text-align: center; }
      #howto .howto_inner .step .step4 img {
        width: 75.6%; }
        @media screen and (max-width: 750px) {
          #howto .howto_inner .step .step4 img {
            width: 100%; } }
  #howto .howto_inner .entry_btn {
    width: 38.5%;
    margin: 5em auto 0 auto;
    text-align: center; }
    @media screen and (max-width: 750px) {
      #howto .howto_inner .entry_btn {
        width: 85%;
        margin: 2em auto 0 auto; } }
    #howto .howto_inner .entry_btn p {
      margin: 0 auto;
      color: #fff; }
  #howto .howto_inner h3 {
    width: 97.5%;
    margin: 4em auto 0 auto;
    padding: 0.8em 0;
    background: #fff8e1;
    border-radius: 10px 10px 0 0;
    font-size: 140%;
    font-weight: 900;
    text-align: center; }
    @media screen and (max-width: 750px) {
      #howto .howto_inner h3 {
        width: 100%;
        margin: 2em auto 0 auto; } }
  #howto .howto_inner .notice_box {
    width: 97.5%;
    margin: 0 auto;
    padding: 3em 4em 5em 4em;
    background: #fff;
    border-radius: 0 0 10px 10px; }
    @media screen and (max-width: 750px) {
      #howto .howto_inner .notice_box {
        width: 100%;
        padding: 2em 2em 3em 2em; } }
    #howto .howto_inner .notice_box ul {
      font-size: 90%; }
      #howto .howto_inner .notice_box ul li {
        position: relative;
        margin: 1em 0 1em 1.5em;
        line-height: 1.8; }
        #howto .howto_inner .notice_box ul li::before {
          position: absolute;
          display: block;
          content: "・";
          font-size: 150%;
          font-weight: 900;
          top: -0.3em;
          left: -1em; }
  #howto .howto_inner .img {
    margin: 3em auto 0 auto; }
    @media screen and (max-width: 750px) {
      #howto .howto_inner .img {
        width: 96.6%;
        margin: 8vw auto 0 auto; } }

/*********************************
 *
 * TERMS
 *
 *********************************/
#terms {
  padding: 3em 0 0 0;
  position: relative;
  z-index: 2; }
  @media screen and (max-width: 750px) {
    #terms {
      padding: 1em 0 0 0; } }
  #terms .terms_inner {
    width: 83.3%;
    max-width: 1600px;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      #terms .terms_inner {
        width: 89.6%;
        margin: 4vw auto 0 auto; } }
    #terms .terms_inner h2 {
      position: relative;
      width: 38.7%;
      margin: 0 auto;
      cursor: pointer; }
      @media screen and (max-width: 750px) {
        #terms .terms_inner h2 {
          width: 85.1%; } }
      #terms .terms_inner h2::before {
        position: absolute;
        display: block;
        content: "";
        width: 1.3em;
        height: 1.3em;
        right: 0.8em;
        top: 33%;
        background: url("../images/icn_line.svg") center center no-repeat;
        background-size: 100% auto; }
      #terms .terms_inner h2::after {
        position: absolute;
        display: block;
        content: "";
        width: 1.3em;
        height: 1.3em;
        right: 0.8em;
        top: 33%;
        background: url("../images/icn_line.svg") center center no-repeat;
        background-size: 100% auto;
        transform: rotate(90deg);
        transition: 0.3s; }
      #terms .terms_inner h2.open::after {
        transform: rotate(0); }
    #terms .terms_inner .terms_box {
      display: none;
      margin: -1.5em auto 0 auto;
      padding: 3.5em 1em 2em 4em;
      background: #fff;
      line-height: 1.6; }
      @media screen and (max-width: 750px) {
        #terms .terms_inner .terms_box {
          padding: 2em 1em 2em 2em; } }
      #terms .terms_inner .terms_box .scroll {
        height: 40vw;
        overflow-y: scroll; }
        @media screen and (max-width: 750px) {
          #terms .terms_inner .terms_box .scroll {
            height: 80vw; } }
      #terms .terms_inner .terms_box p {
        padding-top: 1em;
        font-size: 90%;
        line-height: 1.8; }
      #terms .terms_inner .terms_box .ttl + p {
        padding: 0; }
      #terms .terms_inner .terms_box .ttl {
        padding: 1.5em 0 0.4em 0;
        color: #d63030; }
      #terms .terms_inner .terms_box ul {
        font-size: 90%;
        line-height: 1.8; }
        #terms .terms_inner .terms_box ul li {
          position: relative;
          padding-left: 1em;
          text-indent: -1em; }
          #terms .terms_inner .terms_box ul li li {
            font-size: 110%; }
      #terms .terms_inner .terms_box a {
        color: #804603;
        border-bottom: 1px solid #804603; }

/*********************************
 *
 * CONTACT
 *
 *********************************/
#contact {
  background: #d63030;
  color: #fff;
  text-align: center; }
  #contact .contact_inner {
    margin: 0 auto;
    padding: 4.5em 0 2em 0; }
    @media screen and (max-width: 750px) {
      #contact .contact_inner {
        padding: 2.5em 0 2em 0; } }
    #contact .contact_inner h2 {
      font-size: 200%;
      font-weight: 900; }
      @media screen and (max-width: 750px) {
        #contact .contact_inner h2 {
          line-height: 1.2; } }
    #contact .contact_inner h3 {
      margin: 1.2em 0 0 0;
      font-size: 130%;
      font-weight: 900; }
      @media screen and (max-width: 750px) {
        #contact .contact_inner h3 {
          font-size: 120%; } }
    #contact .contact_inner p {
      margin: 0.35em 0 0 0;
      font-size: 90%;
      line-height: 1.5; }
      @media screen and (max-width: 750px) {
        #contact .contact_inner p {
          font-size: 80%;
          line-height: 1.8; } }
    #contact .contact_inner h3 + p {
      margin: 1.4em 0 0 0; }
    #contact .contact_inner .notice {
      margin: 1.4em 0 0 0;
      font-size: 90%;
      line-height: 1.3; }
      @media screen and (max-width: 750px) {
        #contact .contact_inner .notice {
          font-size: 80%; } }

/*********************************
 *
 * FOOTER
 *
 *********************************/
footer {
  padding: 0 0 3.5em 0;
  background: #d63030;
  color: #fff; }
  footer .copy {
    font-size: 70%;
    text-align: center; }
