@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@font-face {
  font-family: "NataIcon";
  src: url("../img/font/NataIcon.woff") format("woff");
}
/*______________________________________
common
______________________________________-*/
html {
  height: -webkit-fill-available;
  font-size: 100px;
  scroll-behavior: smooth;
  height: 100%;
  background: #017dea;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100%;
  color: #000;
  font-family: sans-serif, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #017dea;
}

@media (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
a:link, a:visited {
  color: #2d75d2;
  text-decoration: none;
}

a:hover, a:active {
  color: #488be3;
}

.container {
  font-family: sans-serif, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  font-size: 0.15rem;
  margin: 0 auto;
}

span {
  display: inline-block;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/*______________________________________
navigation
______________________________________-*/
#nav-toggle {
  position: fixed;
  top: 0px;
  right: 0px;
  height: 45px;
  cursor: pointer;
  padding: 10px;
  background: #000;
}
#nav-toggle > div {
  position: relative;
  width: 30px;
}
#nav-toggle span {
  width: 100%;
  height: 3px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.2s ease-in-out, top 0.2s ease;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}

.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 10px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
  z-index: 1000;
}

@keyframes GradietionAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#gloval-nav {
  background: linear-gradient(0deg, rgba(107, 102, 254, 0.95) 0%, rgba(66, 224, 232, 0.95) 100%);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  font-family: "M PLUS 1 Code", system-ui, sans-serif;
  font-weight: 800;
}
#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0;
}
#gloval-nav a:hover {
  color: #fff;
}
#gloval-nav ul {
  list-style: none;
  padding: 0;
  font-size: 0.18rem;
}
@media screen and (max-width: 767px) {
  #gloval-nav ul {
    font-size: 0.14rem;
  }
}
#gloval-nav ul li {
  opacity: 0;
}

/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 2s ease, opacity 1s ease;
}
.open #gloval-nav li + li {
  margin-top: 10%;
}

/*______________________________________
header
______________________________________-*/
#HEADER {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  z-index: 1;
  padding-bottom: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-image: url(../img/top_img_left.png), url(../img/top_img_right.png);
  background-repeat: repeat-y, repeat-y;
  background-size: 280px auto, 280px auto;
  background-position: 0 0, 100% 0;
  animation: scrollbg 20s linear infinite;
}
@media screen and (max-width: 680px) {
  #HEADER {
    background-size: 50% auto, 50% auto;
  }
}

@keyframes scrollbg {
  0% {
    background-position: 0 0, 100% 0;
  }
  100% {
    background-position: 0 100%, 100% 100%;
  }
}
.header {
  margin: 0 auto;
  position: relative;
}
.header .arrow_bg {
  position: relative;
  z-index: 0;
  background: url(../img/arrrow_bg.png) bottom center/100% auto no-repeat;
  max-width: 940px;
  margin: 0 auto;
}
.header img {
  width: 100%;
  display: inline-block;
  vertical-align: bottom;
}
.header__box {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 5% 0 100px;
  text-align: center;
}
.header__box div:first-child {
  display: flex;
  flex-direction: column-reverse;
}
.header__box div:first-child h1 {
  margin: 5% auto 0;
  max-width: 340px;
  text-align: center;
  padding: 0 20px;
}
.header__box div:first-child h2 {
  margin: 0 30px;
  padding: 0 20px;
}
.header__box .lead {
  position: relative;
  margin: 50px auto;
  padding: 0 10px;
  text-align: center;
  max-width: 500px;
  line-height: 2.4;
  display: block;
  font-family: sans-serif, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  white-space: now-wrap;
}
.header__box .lead p {
  font-size: 0.15rem;
}
.header__box .lead .comingsoon_1201 {
  max-width: 420px;
  margin: 40px auto -20px;
  border-radius: 3px;
  transform: rotate(-3deg);
}
@media screen and (max-width: 767px) {
  .header__box {
    background: url(../img/arrrow_bg.png) bottom center/200% auto no-repeat;
    padding: 5% 5px 100px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 680px) {
  .header__box {
    margin: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .header__box div:first-child {
    display: flex;
    flex-direction: column-reverse;
  }
  .header__box div:first-child h1 {
    max-width: 280px;
  }
}
@media screen and (max-width: 767px) and (max-width: 375px) {
  .header__box div:first-child h1 {
    max-width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .header__box div:first-child h2 {
    margin: 0;
    padding: 0;
  }
  .header__box .lead {
    line-height: 2 !important;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) and (max-width: 375px) {
  .header__box .lead p {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 767px) {
  .header__box .lead .comingsoon_1201 {
    margin: 40px auto -60px;
    padding: 0 20px;
  }
}

/*______________________________________
section common
______________________________________-*/
p {
  font-size: 0.15rem;
}
p + p {
  margin-top: 20px;
}

a:hover {
  opacity: 0.9;
}

span {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .txt > p {
    font-size: 0.14rem !important;
  }
}
.txt_link {
  margin: 10px 0 10px 15px !important;
  line-height: 1.3;
}
.txt_link + .txt_link {
  margin-top: -5px !important;
}
.txt_link a {
  position: relative;
}
.txt_link a:before {
  font-family: "NataIcon" !important;
  color: #78d3f2 !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e002";
  position: absolute;
  top: -0.2em;
  left: -1.2em;
}
.txt_link a:before[target=_blank]:before {
  content: "\e001" !important;
}

.btn {
  position: relative;
  width: calc(100% - 20px);
  font-weight: 800;
  margin: auto;
}
.btn p {
  position: relative;
  display: block;
  margin: 0px auto;
  padding: 15px;
  text-align: center;
  line-height: 1.4;
  color: #000;
  background: #ffaa00;
  border-radius: 10px;
  border: 3px solid #000;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 2px 2px 0px #000;
  font-size: 0.2rem;
}
.btn p span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 0.14rem;
  }
}
.btn p:after {
  content: "▶︎";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  margin: auto;
}
.btn a {
  display: block;
  text-decoration: none;
}

/*______________________________________
#ABOUT
______________________________________-*/
.contents_bg {
  background: #e0f8ff;
  padding-bottom: 1px;
}

#ABOUT {
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px 20px;
  max-width: 800px;
  background: url(../img/top_bg_2.png) top 40px left/250px auto no-repeat;
}

.about .ttl {
  width: calc(100% - 180px);
  margin: 20px auto 40px;
}
.about__txt {
  margin: 40px 0;
  width: calc(100% - 20px);
  clear: both;
}
.about__txt img {
  max-width: 120px;
  margin: 0 10px 20px 40px;
  float: right;
}
.about__txt p {
  font-size: 0.16rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about .ttl {
    width: calc(100% - 10px);
    margin: 20px auto 40px;
  }
  .about__txt {
    margin: 40px 0;
    width: calc(100% - 0px);
  }
  .about__txt img {
    max-width: 100px;
    margin: 0 10px 20px 20px;
    float: right;
  }
}

/*______________________________________
#NEWS
______________________________________-*/
#NEWS {
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 800px;
  background: url(../img/top_bg_1.png) top 0px right/120px auto no-repeat;
}

.news .ttl {
  max-width: 250px;
  margin: 20px auto 20px;
}
.news li {
  border-bottom: 3px solid #000;
  list-style: none;
  padding: 25px 25px;
}
.news li:first-child {
  border-top: 3px solid #000;
}
.news__list {
  padding: 0px;
}
.news__item {
  display: flex;
  padding: 0;
  line-height: 1.8;
  font-weight: 600;
}
.news__day {
  color: #017dea;
  display: flex;
  align-items: center;
  margin-right: 30px;
  padding-right: 30px;
  border-right: 3px solid #000;
  font-size: 0.16rem;
}
.news__data {
  text-align: left;
  color: #000;
  line-height: 1.6;
  font-size: 0.16rem;
}
.news__data p {
  font-size: 0.17rem;
}
.news__data p + a {
  margin-top: 10px;
}
.news__data a {
  display: inline-block;
  vertical-align: bottom;
  border: 1px solid #000;
  background: #fff;
  padding: 2px 5px 5px;
  line-height: 1;
}
.news__data a:hover {
  cursor: pointer;
  background: #ffaa00;
}
.news__data .note {
  display: inline;
  width: 100%;
  font-size: 70%;
  color: #000;
}
.news__data .note:after {
  content: "▶︎";
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  margin-left: 5px;
}

@media screen and (max-width: 767px) {
  .news {
    padding: 50px 0 0;
  }
  .news__ttl {
    font-size: 0.15rem;
    text-align: center;
  }
  .news__list li {
    padding: 24px 0px;
  }
  .news__item {
    flex-direction: column;
    font-size: 0.15rem;
  }
  .news__day {
    width: 100%;
    margin-bottom: 8px;
    border-right: none;
  }
  .news__data {
    margin-right: 0;
  }
  .news__data p {
    font-size: 0.15rem;
  }
}
/*______________________________________
#ENTRY
______________________________________-*/
#ENTRY {
  width: 100%;
  padding: 100px 0 50px;
  margin: 0 auto;
  max-width: 800px;
  background: url(../img/top_bg_4.png) top 40px left 50px/150px auto no-repeat;
}

.entry {
  margin: 0 20px;
}
.entry .ttl {
  font-size: 0.2rem;
  font-weight: 800;
  margin: 20px auto;
  text-align: center;
  max-width: 450px;
  margin: 0px auto 40px;
}
.entry__box {
  background: linear-gradient(0deg, rgba(107, 102, 254, 0.3) 0%, rgba(66, 224, 232, 0.3) 100%);
  margin: 0 20px 60px;
  font-size: 0.15rem;
}
.entry__txt {
  font-size: 0.16rem;
  padding: 30px;
}
.entry__txt dl + dl {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #000;
}
.entry__txt dl {
  display: grid;
  grid-template-columns: 140px 2fr;
  grid-auto-rows: minmax(100px, auto);
  place-content: center;
  place-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  font-size: 0.15rem;
}
.entry__txt dl dt {
  font-size: 100%;
  font-weight: 600;
  line-height: 1.4;
  margin: 0px auto 20px;
  padding: 0;
  max-width: 450px;
}
.entry__txt dl dt img {
  display: inline-block;
  width: 100%;
  background: #000;
  padding: 10px;
  margin-bottom: 10px;
}
.entry__txt dl ul {
  list-style: none;
  margin-left: 20px;
}
.entry__txt dl ul li {
  position: relative;
  line-height: 1.5;
}
.entry__txt dl ul li + li {
  margin-top: 8px;
}
.entry__txt dl ul li::before {
  position: absolute;
  display: inline-block;
  content: "";
  margin-top: 10px;
  left: -15px;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: #017dea;
}
@media screen and (max-width: 767px) {
  .entry__txt {
    padding: 30px 15px;
  }
  .entry__txt dl {
    display: block;
    padding: 0;
  }
  .entry__txt dl dt {
    width: 100%;
    display: flex;
    padding: 0px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .entry__txt dl img {
    display: inline-block;
    width: calc(50% - 5px) !important;
    background: #000;
    padding: 10px;
  }
}
.entry__result_lastyear {
  box-sizing: border-box;
  padding: 15px 15px 0;
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.18rem;
  justify-content: space-between;
  font-size: 0.16rem;
  border-top: 1px dashed #fff;
}
.entry__result_lastyear h5 {
  position: relative;
  font-size: 95%;
  line-height: 1.5;
  width: 100%;
  text-align: center;
  width: 40%;
  font-weight: 900;
}
.entry__result_lastyear h5 span {
  display: inline-block;
}
.entry__result_lastyear ul {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  width: 60%;
}
.entry__result_lastyear ul li {
  width: 50%;
  margin: 0;
  color: #000;
  text-align: center;
  border: 2px solid #000;
  font-weight: bold;
}
.entry__result_lastyear ul li a {
  color: #000;
  margin: 0;
  padding: 10px;
  display: block;
}
.entry__result_lastyear ul li:nth-child(1) {
  background: #ffd4fb;
}
.entry__result_lastyear ul li:nth-child(1):hover {
  background: #fff2fe;
}
.entry__result_lastyear ul li:nth-child(2) {
  background: #aae0ff;
}
.entry__result_lastyear ul li:nth-child(2):hover {
  background: #e4f5ff;
}
.entry__result_lastyear ul li + li {
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
  .entry__result_lastyear {
    display: block;
  }
  .entry__result_lastyear h5 {
    width: 100%;
  }
  .entry__result_lastyear ul {
    margin-top: 15px;
    justify-content: center;
    width: 100%;
  }
}
.entry .btn {
  bottom: 0px;
  left: 0px;
  right: 0;
  width: calc(100% - 76px);
  margin: 0px auto;
  border-radius: 0;
  max-width: 500px;
  font-weight: 600;
}
.entry > p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.17rem;
}
@media screen and (max-width: 767px) {
  .entry > p {
    font-size: 0.14rem;
  }
}
.entry .fukidashi {
  position: relative;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}
.entry .fukidashi:before,
.entry .fukidashi:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #017dea;
  width: 2px;
  height: 2em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}
.entry .fukidashi:before {
  transform: rotate(-35deg);
}
.entry .fukidashi:after {
  transform: rotate(35deg);
}

/*______________________________________
#SCHEDULE
______________________________________-*/
#SCHEDULE {
  padding: 0px 0 40px;
  margin: 0 auto;
  max-width: 800px;
}

.schedule {
  margin: 0 20px;
}
.schedule .ttl {
  font-size: 0.2rem;
  font-weight: 800;
  margin: 20px auto;
  text-align: center;
  max-width: 450px;
  margin: 30px auto;
}
.schedule__box {
  background: #fff;
  margin: 0 20px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .schedule__box {
    padding: 10px;
  }
  .schedule__box dl {
    font-size: 0.14rem;
    padding: 20px;
  }
}
.schedule__box dl {
  position: relative;
  background: #dcdcdc;
  margin: 20px 10px;
  padding: 20px;
  line-height: 1.8;
  font-size: 0.15rem;
  text-align: center;
}
.schedule__box dl + dl {
  margin-top: 30px;
}
.schedule__box dl:first-of-type::before {
  display: none;
}
.schedule__box dl::before {
  position: absolute;
  content: "▼";
  color: #78d3f2;
  top: -28px;
  right: 0;
  left: 0;
  margin: 0 auto;
  margin-left: 5px;
}
.schedule__box dl dt {
  font-weight: 800;
  font-size: 110%;
  margin-bottom: 10px;
}
.schedule__box dl dd {
  line-height: 1.4;
  font-size: 100%;
}
@media screen and (max-width: 767px) {
  .schedule__box dl dt, .schedule__box dl dd {
    font-size: 95%;
  }
}
.schedule__box .now {
  background: #017dea !important;
  color: #fff;
}
.schedule__box .now::after {
  position: absolute;
  content: "";
  top: -20px;
  right: 30px;
  display: inline-block;
  width: 100px;
  height: 100px;
  background-image: url("../img/now.png");
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .schedule__box .now::after {
    width: 70px;
    height: 70px;
    top: -20px;
    right: 10px;
  }
}
@media screen and (max-width: 400px) {
  .schedule__box .now::after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: -10px;
  }
}
.schedule__box > p {
  width: 75%;
  margin: 0 auto;
  padding-bottom: 20px;
  text-align: center;
  line-height: 1.6;
  color: #017dea;
  font-weight: bold;
}

/*______________________________________
#GUEST
______________________________________-*/
#GUEST {
  padding: 40px 0;
  margin: 0 auto;
  max-width: 800px;
  background: url(../img/top_bg_5.png) top 50px left 60px/100px auto no-repeat;
}

.guest {
  margin: 0 20px;
}
.guest .ttl {
  font-size: 0.2rem;
  font-weight: 800;
  margin: 20px auto;
  text-align: center;
  max-width: 450px;
  margin: 40px auto;
}
.guest > p {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
  line-height: 1.6;
}
.guest__box {
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .guest__box {
    display: block;
    row-gap: 50px;
  }
  .guest__box dl + dl {
    margin-top: 40px;
    border: 2px solid #000;
  }
}
.guest__box dl {
  position: relative;
  margin: 20px auto 0;
  padding: 20px;
  line-height: 1.8;
  font-size: 0.15rem;
  height: 100%;
  background: #fff;
  border: 3px solid #017dea;
  border-radius: 6px;
}
.guest__box dl dt {
  font-weight: 800;
  font-size: 130%;
  padding: 5px;
  margin: -45px auto 0;
  text-align: center;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  background: #017dea;
  font-feature-settings: "palt";
}
.guest__box dl dd {
  line-height: 1.6;
  font-size: 100%;
  text-align: left;
  margin-bottom: 0px;
}
.guest__box dl dd + dd {
  margin-top: 10px;
}
.guest__box dl dd h4 {
  position: relative;
  width: 100%;
  font-size: 80%;
  font-weight: 800;
  padding: 4px 5px;
  line-height: 3;
  background: #000;
  color: #fff;
  display: inline;
  font-family: "Outfit", sans-serif;
}
.guest__box dl dd img {
  margin: 20px 0;
  max-height: 280px;
  -o-object-fit: contain;
     object-fit: contain;
}
.guest__box dl dd P {
  font-size: 100%;
  margin: 0;
}

/*______________________________________
#CAMPAIGN
______________________________________-*/
#CAMPAIGN {
  position: relative;
  width: 100%;
  margin: 180px auto 0;
  padding: 120px 20px 40px;
  border: solid #e0f8ff;
  border-width: 3px 0;
  background: #fff;
  scroll-margin-top: 200px;
}

.campaign {
  border-radius: 0px;
}
.campaign__box {
  max-width: 800px !important;
  margin: 0 auto;
  background: url(../img/campaign_bg_1.png) top 78px left 30px/70px auto no-repeat, url(../img/campaign_bg_2.png) top 78px right 30px/70px auto no-repeat;
}
.campaign .ttl {
  position: relative;
  margin: -210px auto 40px;
  max-width: 550px;
  padding: 0 20px;
  z-index: 2;
}
.campaign__txt {
  margin: 30px 0;
  line-height: 1.8;
  text-align: center;
}
.campaign__txt p {
  font-size: 0.16rem;
  line-height: 1.6;
}
.campaign h3 {
  margin-bottom: 5px !important;
  text-align: center;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 900;
  font-size: 180%;
  font-feature-settings: "palt";
  line-height: 1;
  font-size: 0.14rem;
}
.campaign dl {
  margin: 0px auto 20px;
  display: grid;
  grid-template-columns: 1fr 70%;
  gap: 3px;
  padding: 2px;
}
.campaign dl dt {
  background: #017dea;
  line-height: 2;
  padding: 0 10px;
  display: grid;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: "Kosugi Maru", sans-serif;
  color: #fff;
  font-size: 0.14rem;
}
.campaign dl dd {
  font-size: 0.14rem;
  padding: 15px 15px 15px 20px;
  background: #e0f8ff;
}
.campaign dl dd > p {
  font-size: 0.14rem;
}
.campaign dl dd ul {
  position: relative;
  list-style-type: none;
}
.campaign dl dd ul li {
  line-height: 1.4;
  padding-left: 10px;
}
.campaign dl dd ul li + li {
  margin-top: 5px;
}
.campaign dl dd ul li::before {
  position: absolute;
  display: inline-block;
  content: "";
  margin-top: 9px;
  left: -3px;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: #017dea;
}
.campaign dl dd ol {
  position: relative;
  list-style-type: none;
  list-style-position: outside;
  counter-reset: my-counter;
  list-style: none;
  padding-left: 13px;
  margin-bottom: 10px;
}
.campaign dl dd ol li {
  position: relative;
  line-height: 1.5;
  padding-left: 0px;
}
.campaign dl dd ol li + li {
  margin-top: 5px;
}
.campaign dl dd ol li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  border: 1px solid #000;
  color: #000;
  display: block;
  float: left;
  line-height: 13px;
  margin-left: -20px;
  text-align: center;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  font-size: 85%;
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .campaign {
    margin: 120px auto 0 !important;
    padding: 90px 20px 40px !important;
  }
  .campaign .ttl {
    padding: 0;
    margin: -175px auto -30px !important;
  }
  .campaign__box {
    max-width: 800px !important;
    margin: 0 auto;
    background: none;
  }
  .campaign__txt {
    margin: 40px 0px 20px;
    background: url(../img/campaign_bg_1.png) top 0px left 35%/50px auto no-repeat, url(../img/campaign_bg_2.png) top 0px right 35%/50px auto no-repeat;
    padding-top: 55px;
  }
  .campaign__txt img {
    max-width: 100px;
    margin: 0 10px 20px 20px;
    float: right;
  }
  .campaign dl {
    display: block;
    grid-template-columns: 25% 1fr;
  }
  .campaign dl dt {
    font-size: 0.14rem;
  }
}
.campaign .x_btn {
  max-width: 380px !important;
  margin-top: 40px !important;
}
.campaign .x_btn p {
  padding: 10px 25px 10px 15px;
  font-size: 0.15rem;
  background: #000;
  border: none;
  box-shadow: none;
  color: #fff;
}

/*______________________________________
#COLUMN
______________________________________-*/
#COLUMN {
  padding: 80px 0 120px;
  margin: 0 auto;
  max-width: 800px;
  background: url(../img/top_bg_3.png) bottom 20px right 20px/180px auto no-repeat;
}

.column {
  margin: 0 20px;
}
.column .ttl {
  position: relative;
  z-index: 2;
  font-size: 0.2rem;
  font-weight: 800;
  margin: 20px auto -10px;
  text-align: center;
  max-width: 450px;
}
.column__box {
  position: relative;
  border: 3px solid #017dea;
  margin: 0 auto;
  padding: 30px;
  min-height: 160px;
  width: calc(100% - 40px);
}
.column__box p {
  font-size: 0.2rem;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.8;
  font-weight: 800;
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 640px) {
  .column .ttl {
    padding: 0 30px;
  }
  .column__box p {
    font-size: 0.16rem;
    max-width: 300px;
  }
}

/*______________________________________
#FOOTER
______________________________________-*/
#FOOTER {
  width: 100%;
  line-height: 4;
  text-align: center;
  padding: 0px 0 100px;
  color: #fff;
  line-height: 1.8;
  font-size: 0.14rem;
}
#FOOTER .sns {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-direction: row-reverse;
  margin: 40px auto;
  padding: 0 10px;
  max-width: 500px;
}
#FOOTER .sns__title {
  position: relative;
  box-sizing: border-box;
  font-weight: 900;
  font-family: "Outfit", sans-serif;
  display: flex;
  -moz-column-gap: 0px;
       column-gap: 0px;
  border: 2px solid #fff;
  padding: 10px;
  display: block;
  background: #fff;
  color: #017dea;
}
#FOOTER .sns__title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  margin-top: -7px;
  border: 8px solid transparent;
  border-right: 10px solid #fff;
  z-index: 1;
}
#FOOTER .sns__title p {
  font-size: 120%;
  line-height: 1.4;
  font-weight: 900;
}
#FOOTER .sns ul {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
#FOOTER .sns .x_icon a {
  box-sizing: border-box;
  display: block;
  text-align: center;
  background: #000;
  width: 50px;
  border-radius: 100%;
  border: none;
  margin: 0px auto;
}
#FOOTER .sns .x_icon a > img {
  padding: 15px;
}
#FOOTER .sns .x_icon a:hover {
  opacity: 0.8;
}
#FOOTER .archive {
  max-width: 500px;
  margin: 0 auto 30px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  border: solid #4d91ed;
  border-width: 1px 0;
}
#FOOTER .archive__title {
  position: relative;
  box-sizing: border-box;
  font-weight: 900;
  font-family: "Outfit", sans-serif;
  padding-right: 20px;
  font-size: 120%;
  letter-spacing: 4px;
  text-align: left;
}
#FOOTER .archive__title::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  bottom: 0;
  right: 0px;
  background: #fff;
}
#FOOTER .archive__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
#FOOTER .archive__list p {
  font-size: 180%;
  flex: inherit;
  letter-spacing: 1px;
  box-sizing: border-box;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: bold;
}
#FOOTER .archive__list p a {
  color: #fff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
  #FOOTER .archive {
    margin: 0 20px 30px;
    -moz-column-gap: 20px;
         column-gap: 20px;
    max-width: 100%;
  }
  #FOOTER .archive__title {
    font-size: 125%;
    text-align: center;
  }
  #FOOTER .archive__list li {
    font-size: 150%;
  }
}
#FOOTER .logo_area {
  max-width: 650px;
  margin: 0 auto 40px;
  padding: 20px 20px;
  background: rgba(0, 0, 0, 0.15);
}
#FOOTER .logo_area h4 {
  font-size: 0.13rem;
  margin: 0 auto 10px;
  font-weight: 500;
}
#FOOTER .logo_area .notes {
  color: #fff;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: left;
}
#FOOTER .logo_area .notes__txt {
  line-height: 1.6;
  font-size: 0.12rem;
  max-width: 300px;
}
#FOOTER .logo_area .notes__logo {
  width: 80px;
}
@media screen and (max-width: 767px) {
  #FOOTER .logo_area .notes {
    max-width: auto;
    padding: 0px;
  }
  #FOOTER .logo_area .notes__txt {
    line-height: 1.6;
    font-size: 0.1rem;
    text-align: left;
  }
}
#FOOTER .logo_area .notes p + p {
  margin-top: 0;
}
#FOOTER .logo_btn {
  max-width: 380px !important;
}
#FOOTER .logo_btn p {
  font-size: 100%;
  padding: 10px;
}
#FOOTER .logo_btn p:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../img/logo_btn_arrow.png) no-repeat;
  background-size: contain;
  margin-right: 3px;
  top: 50%;
  bottom: 0;
  transform: translate(0, -50%);
  margin-top: 3px;
}
#FOOTER .footer {
  margin: 0 auto;
}
#FOOTER .footer dt {
  font-size: 0.14rem;
  margin: 0 auto 10px;
  font-weight: 500;
}
#FOOTER .footer .pr {
  margin: 0 auto 30px;
  max-width: 800px;
}
#FOOTER .footer .pr dd {
  display: grid;
  grid-template-columns: repeat(auto-fit, 320px);
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
}
#FOOTER .footer .pr dd a {
  position: relative;
  border-bottom: none;
}
#FOOTER .footer .pr dd a + a {
  margin-top: 0;
}
#FOOTER .footer .pr dd a.pr_border {
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
#FOOTER .footer .sponsor {
  margin: 0 auto 30px;
  max-width: 700px;
}
#FOOTER .footer .sponsor dd {
  display: grid;
  grid-template-columns: repeat(auto-fit, 160px);
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 0 20px;
}
#FOOTER .footer .sponsor dd a {
  position: relative;
  border-bottom: none;
  background: #fff;
  min-height: 68px;
}
#FOOTER .footer .sponsor dd a + a {
  margin-top: 0;
}
#FOOTER .footer .sponsor dd a img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  top: 50%;
  left: 50%;
  height: 60px;
  transform: translate(-50%, -50%);
  max-width: 110px;
}
@media screen and (max-width: 767px) {
  #FOOTER .footer .sponsor dd a img {
    max-width: 100px;
  }
}
#FOOTER .footer .sponsor__extra {
  display: block !important;
  margin: 15px auto 0;
  padding: 10px 20px !important;
  line-height: 1.6;
  background: rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 650px;
}
#FOOTER .footer .sponsor__extra p {
  font-size: 90%;
}
#FOOTER .footer .sponsor__extra p span {
  display: inline-block;
}
#FOOTER .footer .management {
  margin: 0 auto;
}
#FOOTER .footer .management dd {
  margin: 0 auto;
  max-width: 250px;
  padding: 0;
}
#FOOTER .footer .management dd .comic_natalie {
  margin: 0px auto !important;
}
#FOOTER .footer .management dd .comic_natalie img {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
#FOOTER .footer .management dd .comic_natalie img:hover {
  opacity: 0.8;
}
#FOOTER .footer .management p {
  font-size: 90%;
}
#FOOTER .footer .management p a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#FOOTER .footer .policy {
  font-size: 90%;
  margin: 20px auto 0;
  color: #fff;
}
#FOOTER .footer .policy a {
  position: relative;
  color: #fff;
  margin: 0 10px;
}
#FOOTER .footer .policy a:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  bottom: 0;
  left: -12px;
  background: #fff;
}
#FOOTER .footer .copyright {
  font-size: 80%;
  margin: 30px auto 30px;
}
#FOOTER .footer a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#FOOTER .totop {
  width: 100%;
  height: 40px;
  background: #4d91ed;
  padding: 10px;
  border-radius: 0;
  margin: 0px auto 40px;
  font-size: 110%;
}
#FOOTER .totop a {
  text-decoration: none;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 90%;
}
#FOOTER .totop img {
  width: auto;
  height: 20px;
  margin-right: 5px;
}

/*______________________________________
フローティングボタン
______________________________________*/
.float {
  padding: 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 5;
}
.float .btn {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0;
  width: calc(100% - 76px);
  margin: 0 auto;
  border-radius: 0;
  max-width: 500px;
}
.float .btn p {
  position: relative;
  display: block;
  margin: 0px auto 20px;
  padding: 15px;
  text-align: center;
  color: #000;
  background: #ffaa00;
  font-weight: 600;
  font-size: 0.2rem;
  letter-spacing: 1px;
}
.float .btn a {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .float .btn {
    left: 15px;
    right: 0;
    margin: 0 auto;
    max-width: 640px;
  }
  .float .btn p {
    line-height: 1.4;
    width: calc(100% - 0px);
    max-width: 100%;
    font-size: 0.16rem;
    font-weight: 800;
    border: 3px solid #000;
  }
  .float .btn a {
    display: block;
    text-decoration: none;
    cursor: pointer;
  }
  .float .totop {
    right: 15px;
  }
}
/*______________________________________
moving
______________________________________-*/
/*下からフェードイン*/
.fadein {
  opacity: 0;
  transform: translate(0px, 100px);
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.3s 0s ease-out;
}/*# sourceMappingURL=style.css.map */