@charset "UTF-8";
/*=============================================
*
* 
*
=============================================*/
html {
  font-size: 62.5%;
}

body {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  overflow-x: hidden;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body img {
  width: auto;
}
body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

p, time {
  text-align: center;
}

a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.8;
}

span {
  display: inline;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  border: none;
}

img {
  max-width: 100%;
}

.underline {
  text-decoration: underline;
}

.br-sp {
  display: none;
}
@media screen and (max-width: 700px) {
  .br-sp {
    display: block;
  }
}

/*=============================================
*
*  header
*
=============================================*/
/*.header {
    background: none;
    height: 100dvh;
}
*/
.content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*=============================================
*
* main / section
*
=============================================*/
.main-contents {
  height: 100%;
  max-width: 100dvw;
  overflow-x: hidden;
  position: relative;
  -webkit-transition: opacity 2s ease 1s;
  transition: opacity 2s ease 1s;
  width: 100dvw;
}
.main-contents > .inner {
  margin: 0 auto;
  position: relative;
}

section {
  position: relative;
}
section > .inner {
  margin: 0 auto;
  max-width: 1500px;
  padding-bottom: 30px;
  position: relative;
}
section > .inner .content-box {
  height: 100%;
  overflow: hidden;
  position: relative;
}
section > .inner .content-box .content {
  position: relative;
}
section > .inner .content-box .content.effect {
  opacity: 0;
  -webkit-transition: opacity 1s ease 1s;
  transition: opacity 1s ease 1s;
}
@media screen and (max-width: 700px) {
  section > .inner .content-box .content {
    padding-top: 10px;
  }
}
section > .inner .content-box .content.is-scrollin {
  opacity: 1;
}
/*=============================================
*
*  見出し
*
=============================================*/
.content-heading-box {
  margin-bottom: 25px;
  position: relative;
  width: 100%;
}

.content-heading {
  margin: 0 auto;
  opacity: 0;
  position: relative;
  -webkit-transform: translate(100%, 60px);
          transform: translate(100%, 60px);
  -webkit-transition: all 0.7s ease 0.6s;
  transition: all 0.7s ease 0.6s;
  text-align: center;
}
.content-heading.is-scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.content-heading span {
  opacity: 0;
  -webkit-transition: opacity 1s ease 1.5s;
  transition: opacity 1s ease 1.5s;
}
.content-heading.is-scrollin .content-heading-left-border {
  height: 13.75px;
}
.content-heading.is-scrollin .content-heading-right-border {
  height: 13.75px;
}
.content-heading.is-scrollin span {
  opacity: 1;
}

/*=============================================
*
*  footer
*
=============================================*/
.footer {
  background: #FF5B60;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}
.footer > .inner {
  margin: 0 auto;
  max-width: 1366px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .footer > .inner {
    text-align: center;
  }
}
.footer > .inner .footer-logo {
  display: block;
  margin: 0 auto 25px;
  max-width: 817px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .footer > .inner .footer-logo {
    margin: -25px 0 2px;
    padding: 0 5px;
  }
}
.footer > .inner .footer-logo .footer-logo-img {
  display: inline-block;
}
.footer > .inner .organizing {
  margin: 0 auto 15px;
  max-width: 292px;
}
.footer > .inner .organizing .organizing-text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.footer > .inner small {
  bottom: 15px;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  position: absolute;
  right: 15px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .footer > .inner small {
    bottom: 10px;
    left: calc(50% - 108.5px);
    max-width: 217px;
    right: auto;
  }
}

.btn-page-top {
  bottom: -85px;
  max-width: 85px;
  right: 20px;
  position: fixed;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 700px) {
  .btn-page-top {
    max-width: 50px;
  }
}
.btn-page-top.is-active {
  bottom: 20px;
}
@media screen and (max-width: 700px) {
  .btn-page-top.is-active {
    bottom: 10px;
    right: 10px;
  }
}

.btn-page-top-img {
  max-width: 100%;
}

/*=============================================
*
* エフェクト
*
=============================================*/
.effect.fade-in {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: all 0.4s ease-out 0.6s;
  transition: all 0.4s ease-out 0.6s;
}
.effect.fade-in.is-scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*=============================================
*
* ローダー
*
=============================================*/
.loader-box {
  background: rgb(255, 255, 255);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  z-index: 100;
  /*
  @keyframes loader-logo {
      0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
      15%  { transform: scale(0.9, 0.9) translate(0%, 5%); }
      30%  { transform: scale(1.3, 0.8) translate(0%, 10%); }
      50%  { transform: scale(0.8, 1.3) translate(0%, -10%); }
      70%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
      100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
  }
  */
}
.is-loaded .loader-box {
  opacity: 0;
  visibility: hidden;
}
.loader-box .loader-logo {
  left: 50%;
  max-width: 120px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.loader-box .loader-logo img {
  -webkit-animation: loader-logo 0.3s ease 0s infinite alternate;
          animation: loader-logo 0.3s ease 0s infinite alternate;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.loader-box .loader-sooseijin {
  left: 50%;
  max-width: 120px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.loader-box .loader-sooseijin img {
  -webkit-animation: loader-logo 0.3s ease 0s infinite alternate;
          animation: loader-logo 0.3s ease 0s infinite alternate;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@-webkit-keyframes loader-logo {
  from {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes loader-logo {
  from {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}