@charset "UTF-8";
/*========================
このcssファイルはsassから生成されていますので、
編集しないようにご注意ください。
=========================*/
/*reset*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
:where(html) {
  -webkit-text-size-adjust: none;
  /* iOSのランドスケープでテキストが調整されないようにする */
  text-size-adjust: none;
  color-scheme: dark light;
  /* ダークテーマ対応 */
  font-feature-settings: "palt";
}

:where(body) {
  block-size: 100%;
  /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb;
  /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  /* テキストのレンダリングを改善 */
}

:where(header a, footer a) {
  text-decoration: none;
}

:where(input, button, textarea, select) {
  font: inherit;
  /* 親フォントを継承 */
  color: inherit;
  /* 親カラーを継承 */
}

:where(textarea) {
  resize: vertical;
  /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

button, label, select, summary, [role='button'], [role='option'] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

:where(a) {
  text-decoration: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
  text-underline-offset: 0.2ex;
  /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object, picture) {
  max-width: 100%;
  border: 0;
  vertical-align: bottom;
}

:where(img, picture, svg) {
  border: 0;
  vertical-align: bottom;
  max-inline-size: 100%;
  block-size: auto;
  /* アスペクト比を保持 */
  image-rendering: -webkit-optimize-contrast;
  /*Chromeの画像ボケ*/
}

:where(p, h1, h2, h3, h4, h5, h6) {
  font-size: 100%;
  overflow-wrap: break-word;
  /* 長い単語は改行 */
}

:where(h1, h2, h3, h4) {
  line-height: calc(1em + 0.5rem);
  /* 見出しの行の高さを減らす */
}

html {
  scroll-padding-top: calc(3.25rem + 20px);
  scroll-behavior: smooth;
  touch-action: manipulation;
  font-family: "YuGothic", "Yu Gothic", "Arial", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}

body {
  background-color: #1989c9;
  font-size: 1rem;
  line-height: 1.6;
  color: #192347;
  overflow-x: clip;
  font-family: "nitalago-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  min-width: none;
}

/*.webp body{
	background: url("../images/bg_space.webp") no-repeat repeat center;
	background-size: contain;
}*/
/*.no-webp body{
	background: url("../images/bg_space.jpg") no-repeat repeat center;
	background-size: contain;
}*/
.hover_nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}
.hover_nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hover_nav li {
  width: calc(100% / 3);
  font-size: clamp(0.813rem, 0.784rem + 0.128vw, 0.938rem);
}
.hover_nav a {
  display: block;
  padding: 1em;
  text-align: center;
  background-color: #192347;
  color: white;
  transition: background-color ease 0.3s, color ease 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .hover_nav a:hover {
    background-color: #ffea3a;
    color: #192347;
  }
}

#top .btn_top a, #hpass_jp .btn_hpassJp a, #hpass_en .btn_hpassEn a {
  background-color: #ffea3a;
  color: #192347;
}

main {
  margin-inline: auto;
  font-size: clamp(1rem, 0.971rem + 0.128vw, 1.125rem);
  max-width: 48rem;
  overflow-x: hidden;
}

/*切りの良い改行*/
.break {
  display: inline-block;
}

/*フロート*/
.float_l {
  float: left;
}

.float_r {
  float: right;
}

.clear::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.no_sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .no_sp {
    display: block;
  }
}

.tab_only {
  display: none;
}
@media screen and (min-width: 768px) {
  .tab_only {
    display: block;
  }
}
@media screen and (min-width: 900px) {
  .tab_only {
    display: none;
  }
}

.no_tab {
  display: block;
}
@media screen and (min-width: 768px) {
  .no_tab {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .no_tab {
    display: block;
  }
}

.pc_only {
  display: none;
}
@media screen and (min-width: 900px) {
  .pc_only {
    display: block;
  }
}

@media screen and (min-width: 900px) {
  .no_pc {
    display: none;
  }
}

.fv {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/*================================================
 * 見出し類
 ================================================*/
/*================================================
 * 各セクション
 ================================================*/
*[class^='sec'] {
  margin-bottom: clamp(4.375rem, -0.037rem + 19.608vw, 9.375rem);
}

/*================================================
 *  footer
 ================================================*/
footer {
  padding: 10px 0;
  background-color: #192347;
  font-size: clamp(0.688rem, 0.659rem + 0.128vw, 0.813rem);
  text-align: center;
  color: white;
  max-width: 48rem;
  margin-inline: auto;
  font-family: "YuGothic", "Yu Gothic", "Arial", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
}

/*visual*/
.webp .bgconts {
  background-image: url("../images/visualbg_sp.jpg");
}
@media screen and (min-width: 768px) {
  .webp .bgconts {
    background-image: url("../images/visualbg_pc.jpg");
  }
}

.no-webp .bgconts {
  background-image: url("../images/visualbg_sp.jpg");
}
@media screen and (min-width: 768px) {
  .no-webp .bgconts {
    background-image: url("../images/visualbg_pc.jpg");
  }
}

.fv {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.bgconts {
  position: fixed;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bgconts .bgconts_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.bgconts picture {
  position: absolute;
}
.bgconts picture img {
  width: 100%;
}
.bgconts .baien {
  top: 3%;
  right: 0;
  width: 52%;
  max-width: 22.438rem;
}
@media screen and (min-width: 768px) {
  .bgconts .baien {
    top: 0%;
    right: 0%;
    width: 52%;
    max-width: 34.375rem;
  }
}
@media screen and (min-width: 1100px) {
  .bgconts .baien {
    top: 0%;
    right: 3%;
    width: 52%;
    max-width: 40rem;
  }
}
.bgconts .tanso {
  top: 47%;
  left: 0;
  width: 52%;
  max-width: 26.313rem;
}
@media screen and (min-width: 768px) {
  .bgconts .tanso {
    top: 34%;
    width: 48%;
    max-width: 31.25rem;
  }
}
@media screen and (min-width: 1100px) {
  .bgconts .tanso {
    top: 34%;
    width: 40%;
    max-width: 36.25rem;
  }
}
.bgconts .banri {
  bottom: 3%;
  right: 0;
  width: 57%;
  max-width: 22.438rem;
}
@media screen and (min-width: 768px) {
  .bgconts .banri {
    bottom: 3%;
    right: 0;
    width: 57%;
    max-width: 30rem;
  }
}
@media screen and (min-width: 1100px) {
  .bgconts .banri {
    bottom: 3%;
    right: 0;
    width: 50%;
    max-width: 38.75rem;
  }
}

.titleArea {
  position: relative;
  width: 100%;
}

.titlebox {
  height: fit-content;
  width: 50vmin;
  max-width: 31.25rem;
  min-width: 18.75rem;
  position: absolute;
  inset: 0;
  margin: auto;
  inset: 10% 0 0;
}
.titlebox .title_logo {
  margin-bottom: 5%;
}
.titlebox .visual_text {
  display: inline-block;
  margin-bottom: 4%;
}

@media screen and (max-width: 900px) and (orientation: landscape) {
  .is-mobile .titlebox {
    width: 63vh;
    min-width: 0;
  }

  .is-mobile .bgconts_inner {
    display: none;
  }
}
/*catch*/
.sec_catch {
  text-align: center;
  margin-bottom: calc(clamp(4.375rem, -0.037rem + 19.608vw, 9.375rem) * 1.3);
}
.sec_catch p {
  width: 90%;
  margin-inline: auto;
  padding: 1em;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 0.938rem;
  font-size: clamp(1.125rem, 0.462rem + 2.948vw, 1.875rem);
}

/*波部分の設定*/
.waves {
  position: relative;
  height: 4.688rem;
  width: 100%;
}
.waves picture {
  position: absolute;
}
.waves .wave_bottom {
  top: 0;
}
.waves .wave_middle {
  top: clamp(1.563rem, 0.185rem + 6.125vw, 3.125rem);
}
.waves .wave_top {
  top: clamp(2.5rem, -0.258rem + 12.255vw, 5.625rem);
}
.waves .wave_hover {
  width: min(24%, 10rem);
  right: 0;
  top: -5%;
  translate: 100% 0;
  animation: hover 6s linear infinite;
}
@media screen and (min-width: 768px) {
  .waves .wave_hover {
    animation: hovertab 8s linear infinite;
  }
}

@keyframes hover {
  0% {
    translate: 100% 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes hovertab {
  0% {
    translate: 100% 0;
  }
  100% {
    translate: -767px 0;
  }
}
/*背景青部分の設定*/
.blueArea {
  margin-top: -1em;
  background-color: #1989c9;
  background-image: url("../images/bottombg_hover.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  padding-bottom: clamp(7.5rem, 0.331rem + 31.863vw, 15.625rem);
  background-attachment: fixed;
}
@media screen and (min-width: 768px) {
  .blueArea {
    background-size: 48rem auto;
  }
}

/*prize*/
.sec_prize {
  padding-top: clamp(4.375rem, -0.037rem + 19.608vw, 9.375rem);
}
.sec_prize h2 {
  text-align: center;
  margin-bottom: 2em;
}
.sec_prize h2 span {
  display: inline-block;
  border-radius: 50vh;
  background-color: #ffea3a;
  padding: 0.5em 3.5em;
  font-size: clamp(1.188rem, 0.857rem + 1.471vw, 1.563rem);
  letter-spacing: 0.1em;
  font-weight: 100;
}

.grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.813rem, -0.401rem + 5.392vw, 2.188rem) 0.5em;
  width: 85%;
  margin-inline: auto;
}
.grid_box > div[class^="prize"] {
  padding-bottom: clamp(0.5rem, -0.052rem + 2.451vw, 1.125rem);
  position: relative;
  border-radius: clamp(0.938rem, 0.662rem + 1.227vw, 1.25rem);
  border: solid #192347 clamp(0.25rem, 0.084rem + 0.739vw, 0.438rem);
  background-color: white;
}
.grid_box > div[class^="prize"] picture {
  display: inline;
}

.one_col {
  grid-column: 1/3;
}

.prize_icon {
  position: absolute;
  top: 0;
  left: 0;
  translate: -33% -28%;
}

.prize_name {
  margin-bottom: clamp(0.5rem, -0.052rem + 2.451vw, 1.125rem);
  padding-top: clamp(1rem, 0.449rem + 2.451vw, 1.625rem);
  padding-bottom: clamp(1rem, 0.449rem + 2.451vw, 1.625rem);
  padding-right: calc(clamp(1rem, 0.449rem + 2.451vw, 1.625rem) * 0.7);
  border-radius: clamp(0.625rem, 0.514rem + 0.491vw, 0.75rem) clamp(0.625rem, 0.514rem + 0.491vw, 0.75rem) 0 0;
}

.prize_a .prize_icon {
  width: 20.22059%;
}
.prize_a .prize_name {
  background-color: #ff9dc7;
  padding-left: 13.54779%;
}

.prize_b .prize_icon {
  width: 18.53554%;
}
.prize_b .prize_name {
  background-color: #faf3aa;
  padding-left: 12.41881%;
}

.prize_c .prize_icon, .prize_d .prize_icon, .prize_e .prize_icon, .prize_f .prize_icon {
  width: 30.11487%;
}
.prize_c .prize_name, .prize_d .prize_name, .prize_e .prize_name, .prize_f .prize_name {
  padding-left: 16.56318%;
  padding-bottom: clamp(0.625rem, 0.349rem + 1.227vw, 0.938rem);
}

.prize_c .prize_name {
  background-color: #aaface;
}

.prize_d .prize_name {
  background-color: #f0b4ff;
}

.prize_e .prize_name {
  background-color: #ffafaf;
}

.prize_f .prize_name {
  background-color: #a3e0f4;
}

.prize_img, .prize_text {
  margin: 0 clamp(0.5rem, -0.052rem + 2.451vw, 1.125rem) 0.5em;
  font-family: "YuGothic", "Yu Gothic", "Arial", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(0.75rem, 0.419rem + 1.471vw, 1.125rem);
  text-align: left;
  line-height: 1.4;
}

.hlight {
  padding: 0.8em 1em;
  background-color: #192347;
  font-size: 70%;
  font-weight: normal;
  color: white;
  text-align: center;
  width: 90%;
  margin-inline: auto;
  line-height: 1.3;
}

/*join*/
.sec_join {
  text-align: center;
  letter-spacing: 0.08em;
  color: white;
}
.sec_join h2 {
  color: #ffea3a;
  font-size: clamp(1.313rem, 0.266rem + 4.655vw, 2.5rem);
  margin-bottom: 0.8em;
  font-weight: 100;
}
.sec_join ul {
  text-align: left;
  display: inline-block;
  width: 85%;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
  font-size: clamp(1rem, 0.668rem + 1.474vw, 1.375rem);
}
.sec_join li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.sec_join li:not(:last-of-type) {
  margin-bottom: 0.8em;
}
.sec_join .line_btn {
  display: block;
  width: min(50%, 14.5rem);
  margin-top: 0.3em;
  margin-inline: auto;
  text-indent: 0;
  translate: -1em 0;
}
.sec_join .line_btn img {
  width: 100%;
}
.sec_join .note {
  width: 85%;
  margin-inline: auto;
  text-align: left;
  font-size: clamp(0.813rem, 0.758rem + 0.243vw, 0.875rem);
  font-family: "YuGothic", "Yu Gothic", "Arial", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
  text-shadow: 0.125rem 0.125rem 0.125rem rgba(25, 35, 71, 0.4), -0.125rem 0.125rem 0.125rem rgba(25, 35, 71, 0.4), 0.125rem -0.125rem 0.125rem rgba(25, 35, 71, 0.4), -0.125rem -0.125rem 0.125rem rgba(25, 35, 71, 0.4), 0.125rem 0px 0.125rem rgba(25, 35, 71, 0.4), 0px 0.125rem 0.125rem rgba(25, 35, 71, 0.4), -0.125rem 0px 0.125rem rgba(25, 35, 71, 0.4), 0px -0.125rem 0.125rem rgba(25, 35, 71, 0.4);
}
.sec_join .btn_box a {
  display: inline-flex;
  padding: 0.8em 1em 0.8em 2.5em;
  border-radius: 6.25rem;
  background-color: #42bddd;
  line-break: anywhere;
  box-sizing: content-box;
  line-height: 1.2;
  color: #ffea3a;
  font-size: clamp(1rem, 0.723rem + 1.23vw, 1.313rem);
}
.sec_join .btn_box a::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 1.1em;
  height: auto;
  background-image: url("../images/window_icon.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
.sec_join .btn_box a span .small {
  font-size: 70%;
  color: white;
}
.sec_join .btn_box a .text_area {
  margin-right: 1.1em;
}
.sec_join .limit {
  padding: 0.5em;
  width: 85%;
  margin-inline: auto;
  margin-bottom: 0.8em;
  background-color: #192347;
  font-size: clamp(0.75rem, 0.419rem + 1.471vw, 1.125rem);
}

/*detail*/
.sec_detail {
  color: white;
  font-size: clamp(0.875rem, 0.528rem + 1.542vw, 1.25rem);
  rotate: 0.05deg;
}
.sec_detail a {
  color: white;
}
.sec_detail .org {
  text-align: center;
  margin-bottom: 0.8em;
  display: block;
}
.sec_detail .org dt {
  margin-bottom: 1em;
  color: #192347;
}
.sec_detail .org dt span {
  display: inline-block;
  border-radius: 50vh;
  background-color: #ffea3a;
  padding: 0.2em 2em;
  letter-spacing: 0.1em;
  font-weight: 100;
}
.sec_detail .org dd {
  letter-spacing: 0.08em;
}
.sec_detail .spo, .sec_detail .ope {
  display: flex;
  justify-content: center;
  font-size: 86%;
  font-family: "YuGothic", "Yu Gothic", "Arial", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
}

.sponcer_rec {
  text-align: center;
  margin-bottom: clamp(5rem, 2.108rem + 12.853vw, 8.125rem);
}
.sponcer_rec img {
  width: min(75%, 25rem);
  margin-bottom: 0.8em;
}
.sponcer_rec .address {
  color: white;
  text-shadow: 0.125rem 0.125rem 0.313rem #0b083e, -0.125rem 0.125rem 0.313rem #0b083e, 0.125rem -0.125rem 0.313rem #0b083e, -0.125rem -0.125rem 0.313rem #0b083e, 0.125rem 0px 0.313rem #0b083e, 0px 0.125rem 0.313rem #0b083e, -0.125rem 0px 0.313rem #0b083e, 0px -0.125rem 0.313rem #0b083e;
}
@media screen and (min-width: 768px) {
  .sponcer_rec .address {
    pointer-events: none;
  }
}

.lower main {
  max-width: none;
  background-color: #1989c9;
}
.lower .grid_box {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1em;
  width: 90%;
  max-width: 900px;
  margin-inline: auto;
  margin-block: 4em 1em;
}
.lower .grid_box img {
  width: 100%;
}
.lower footer {
  width: 100%;
  max-width: none;
}
