@charset "UTF-8";
@media screen and (min-width: 375px) {
  /* xs-size */
}
@media screen and (min-width: 768px) {
  /* s-size */
}
@media screen and (min-width: 992px) {
  /* m-size */
}
@media screen and (min-width: 1200px) {
  /* l-size */
}
@media screen and (min-width: 1400px) {
  /* xl-size */
}
/* グローバルリセット */
*,
*::before,
*::after {
  box-sizing: border-box; /* ボックスモデルをボーダーとパディングを含むように設定 */
}

* {
  margin: 0; /* 全ての要素のデフォルトのマージンを削除 */
  padding: 0; /* 全ての要素のデフォルトのパディングを削除 */
}

/* デフォルトのフォント設定 */
body {
  overflow-wrap: break-word; /* 単語が幅を超えた場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 日本語の禁則処理を厳格に適用 */
  -webkit-text-size-adjust: 100%; /* モバイルデバイスでのテキストサイズ調整を無効化 */
  -webkit-font-smoothing: antialiased; /* テキストのスムージングを有効化 */
}

/* リストのリセット */
ul,
ol {
  list-style: none; /* デフォルトのリストマーカーを削除 */
  padding: 0; /* デフォルトのパディングを削除 */
  margin: 0; /* デフォルトのマージンを削除 */
}

/* リンクのリセット */
a {
  text-decoration: none; /* デフォルトの下線を削除 */
  color: inherit; /* 親要素の色を継承 */
}

/* フォーム要素のリセット */
input,
button,
textarea,
select {
  font: inherit; /* フォントスタイルを親要素から継承 */
  color: inherit; /* フォントカラーを親要素から継承 */
  border: none; /* デフォルトのボーダーを削除 */
  background: none; /* デフォルトの背景を削除 */
  padding: 0; /* デフォルトのパディングを削除 */
  margin: 0; /* デフォルトのマージンを削除 */
}

/* ボタン要素のリセット */
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* 標準のボタンスタイルを削除 */
  background: none; /* デフォルトの背景を削除 */
  border: none; /* デフォルトのボーダーを削除 */
  padding: 0; /* デフォルトのパディングを削除 */
  margin: 0; /* デフォルトのマージンを削除 */
  cursor: pointer; /* カーソルをポインタに変更 */
}

/* モバイルデバイス特有のリセット */
input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* 標準のチェックボックスやラジオボタンのスタイルを削除 */
}

button,
a {
  touch-action: manipulation; /* タップやスクロールの動作を改善 */
}

/* メディア要素のリセット */
img,
picture,
video,
canvas,
svg {
  display: block; /* ブロック要素として扱い、余白を除去 */
  max-width: 100%; /* 親要素の幅に収まるように設定 */
  height: auto; /* 元のアスペクト比を保つ */
}

/* テーブルのリセット */
table {
  border-collapse: collapse; /* テーブルの境界線を統合 */
  border-spacing: 0; /* セル間のスペースを削除 */
}

th,
td {
  padding: 0; /* セルのデフォルトのパディングを削除 */
  border: 0; /* デフォルトのボーダーを削除 */
}

/* 見出しのリセット */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0; /* デフォルトのマージンを削除 */
  font-size: inherit; /* フォントサイズを親要素から継承 */
}

/* スクロールとタップのリセット */
html,
body {
  overscroll-behavior: none; /* スクロールのオーバースクロール挙動を無効化 */
}

:root {
  --vh: 100vh;
  --vh: 100svh;
  /* 色関連 */
  --color-primary: #ff6410;
  --color-secondary: #0067cf;
  --color-accent: #ff2e2e;
  --color-text: #000;
  --color-border: #cecece;
  --color-black: #000;
  --color-white: #fff;
  --font-family-base: "Zen Maru Gothic", serif;
  --font-family-noto: "Noto Sans JP", sans-serif;
  /* トランジションとアニメーション */
  --transition-duration-default: 0.3s;
  --transition-easing-default: ease-out;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  z-index: 1;
  font-family: var(--font-family-base);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--color-text);
  min-height: var(--vh);
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
  line-height: 1.625;
}

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

.ly_container {
  height: 100%;
  margin-inline: auto;
  min-height: var(--vh);
  display: flex;
  flex-direction: column;
}
.ly_container_inner {
  max-width: 500px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .ly_container_inner {
    background: #fff;
    padding: 0 20px;
  }
  .bnr_summer-kansyasai25 {
    margin: 0 -20px;
  }
}
@media screen and (min-width: 992px) {
  .ly_container {
    margin: 0 calc(12.734375% + 10px) 0 calc(54.84375% + 10px);
    padding: 0 20px;
  }
  .ly_container_inner {
    background: none;
    padding: 0;
  }
  
}

.ly_container_wrap {
  position: relative;
  z-index: -1;
}

.ly_centered {
  width: calc(100% - 40px);
  max-width: 350px;
  margin-inline: auto;
}

.ly_header {
  padding: 10px;
  height: 45px;
  background-color: var(--color-white);
}
.ly_header_logo {
  width: 72px;
}
.ly_header_logo img {
  width: 100%;
}

.ly_footer {
  padding: 50px 20px 70px;
  color: #333;
  background-color: var(--color-white);
  font-family: var(--font-family-noto);
}
.ly_footer_logo {
  max-width: 178px;
  margin: 0 auto 40px;
}
.ly_footer_btnList {
  margin: 10px 0 30px;
}
.ly_footer_btnList > li:not(:first-child) {
  margin-top: 16px;
}
.ly_footer_btn {
  display: block;
  padding: 10px 5px;
  color: #3f9cff;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(to bottom, #f2f2f2 50%, #e4e4e4 51%);
  border: 1px solid #b1b1b1;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.125;
}
.ly_footer_ttl {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
.ly_footer_txt {
  font-size: 1.4rem;
  line-height: 1.5714285714;
}
.ly_footer_number {
  margin: 30px 0;
  text-align: right;
}
.ly_footer_number > span {
  display: inline-block;
  padding: 3px 10px 5px;
  border: 1px solid #333;
  font-size: 1.2rem;
  line-height: 1;
}
.ly_footer_copy {
  margin-top: 20px;
  text-align: center;
}
.ly_footer_copy > small {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.6923076923;
}

.ly_footerInfo {
  margin-top: 30px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.4666666667;
}
.ly_footerInfo_link {
  margin-top: 20px;
  font-size: 1.3rem;
}

.bl_section {
  padding: 30px 0;
}

.bl_section02 {
  padding: 0 0 40px;
}

.bl_acc {
  margin-top: 15px;
  background-color: var(--color-white);
  border-radius: 4px;
}
.bl_acc_head {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 20px 10px 15px;
  text-align: left;
  color: var(--color-secondary);
  font-weight: 900;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.5;
}
.bl_acc_head::before, .bl_acc_head::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-secondary);
  border-radius: 2px;
}
.bl_acc_head::before {
  right: 12px;
  width: 16px;
  height: 2px;
}
.bl_acc_head::after {
  right: 19px;
  width: 2px;
  height: 16px;
  transition: transform var(--transition-duration-default) var(--transition-easing-default);
}
.bl_acc_head.is_active::after {
  transform: translateY(-50%) rotate(-90deg);
}
.bl_acc_cont {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.bl_acc_body {
  padding: 14px 12px 17px;
  border-radius: 0 0 4px 4px;
}

.bl_cardUnit {
  display: flex;
  flex-direction: column;
}
.bl_cardUnit__2col {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 13px;
}
.bl_cardUnit__2col .bl_card {
  width: calc((100% - 13px) / 2);
}

.bl_card {
  position: relative;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.16);
}
.bl_card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 5px solid transparent;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, #FFD958 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.bl_card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background-color: var(--color-white);
  border-radius: 7px;
  border: 1px solid #FBE8AC;
}
.bl_card_inner {
  position: relative;
  z-index: 1;
  padding: 10px;
}
.bl_card_imgWrap img {
  width: 100%;
  border-radius: 7px 7px 0 0;
}
.bl_card_body {
  margin-top: 3px;
}
.bl_card_ttl {
  text-align: center;
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1.3076923077;
}
.bl_card_ttl .sm {
  font-size: 1rem;
}
.bl_card_ttl.lts-70 {
  letter-spacing: -0.07em;
}
.bl_card_ttl.fs12 {
  font-size: 1.2rem;
}
.bl_card_num {
  margin-top: 8px;
  text-align: center;
}
.bl_card_num .num {
  display: inline-block;
  padding: 2px 12px 4px;
  background-color: #ffcb1d;
  border-radius: 24px;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.1111111111;
}
.bl_card_num .num .sm {
  display: inline-block;
  margin-left: 2px;
  font-weight: 900;
  font-size: 1.4rem;
}

.bl_card02Unit {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}

.bl_card02_inner {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.bl_card02_imgWrap {
  width: 45.4545455%;
}
.bl_card02_imgWrap img {
  width: 100%;
  border-radius: 7px;
}
.bl_card02_body {
  flex: 1;
}
.bl_card02_ttl {
  min-height: 2.5em;
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  letter-spacing: -0.03em;
}
.bl_card02_ttl .sm {
  font-size: 1rem;
}
.bl_card02_ttl.lts-100 {
  letter-spacing: -0.1em;
}
.bl_card02_ttl.fs12 {
  font-size: 1.2rem;
}
.bl_card02_ttl.fs13 {
  font-size: 1.3rem;
}
.bl_card02_num {
  margin-top: 8px;
  text-align: right;
}
.bl_card02_num .num {
  display: inline-block;
  padding: 2px 12px 4px;
  background-color: #ffcb1d;
  border-radius: 24px;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.1111111111;
}
.bl_card02_num .num .sm {
  display: inline-block;
  margin-left: 2px;
  font-weight: 900;
  font-size: 1.4rem;
}

.bl_defList dt {
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.375;
}
.bl_defList dt:not(:first-child) {
  margin-top: 25px;
}
.bl_defList dd {
  margin-top: 2px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.375;
}

.bl_img {
  display: block;
  width: 100%;
}
.bl_img img {
  width: 100%;
}

.el_link {
  text-decoration: underline;
  color: #0000ee;
}

.el_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 335px;
  min-height: 60px;
  padding: 7px 30px;
  text-align: center;
  background-color: var(--color-black);
  border-radius: 60px;
  border: 3px solid var(--color-black);
  box-shadow: inset 0 0 0 1px var(--color-white);
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.0625;
}
.el_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  width: 8px;
  height: 11px;
  background-color: var(--color-white);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.el_btn .lg {
  display: inline-block;
  margin: 0 5px;
  font-size: 2.2rem;
}
.el_btn .lg__02 {
  letter-spacing: 0.1em;
}
.el_btn .sm {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
.el_btn__simple::after {
  content: none;
}
.el_btn__gray {
  background-color: #a4a4a4;
  border-color: #7e7e7e;
  pointer-events: none;
}
.el_btn__green {
  background: linear-gradient(#38D14C, #17A22A);
  border-color: #CDF1D2;
}

.un_intro {
  padding-bottom: 30px;
  background-color: var(--color-primary);
  background-image: url("../images/intro_bg_deco01.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.un_intro_centered {
  width: calc(100% - 26px);
}
.un_intro_present {
  width: calc(100% - 16px);
  margin-inline: auto;
  padding-top: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.un_intro_period {
  margin-top: 10px;
  text-align: center;
  color: var(--color-white);
}
.un_intro_period .ttl {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.375;
  letter-spacing: 0.1em;
}
.un_intro_period .date {
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.375;
  letter-spacing: 0.05em;
}

.un_course {
  margin-top: 40px;
  padding-bottom: 15px;
}
.un_course_lv3Heading {
  max-width: 268px;
  margin: 20px auto 5px;
}
.un_course_lv3Heading img {
  width: 100%;
}

.un_special {
  position: relative;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.16);
}
.un_special::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 5px solid transparent;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, #FFD958 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.un_special::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background-color: var(--color-white);
  border-radius: 7px;
  border: 1px solid #FBE8AC;
}
.un_special_inner {
  position: relative;
  z-index: 1;
  padding: 30px 15px 20px;
}
.un_special_heading {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 1;
  width: calc(100% - 40px);
}

.un_chance {
  margin-top: 14px;
  display: flex;
  border: 3px solid #ffd140;
  border-radius: 8px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.16);
}
.un_chance_head {
  width: 30.2857143%;
  padding: 0 8px;
  display: grid;
  place-items: center;
  background-color: #ffd140;
}
.un_chance_heading {
  width: 90px;
}
.un_chance_heading img {
  width: 100%;
}
.un_chance_body {
  padding: 6px;
  border-radius: 0 6px 6px 0;
  flex: 1;
  background-color: var(--color-white);
}
.un_chance_txt {
  text-align: center;
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1.3076923077;
  letter-spacing: -0.02em;
}
.un_chance_txt .yen {
  display: inline-block;
  margin: 0 3px 0 2px;
  font-weight: 400;
  font-size: 2.2rem;
}
.un_chance_num {
  margin-top: 5px;
  text-align: center;
}
.un_chance_num .num {
  display: inline-block;
  padding: 2px 12px 4px;
  background-color: #ffcb1d;
  border-radius: 24px;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.1111111111;
}
.un_chance_num .num .sm {
  display: inline-block;
  margin-left: 2px;
  font-weight: 900;
  font-size: 1.4rem;
}

.un_shisa {
  padding: 40px 0 15px;
}
.un_shisa_btnWrap {
  margin-top: -24px;
  text-align: center;
}
.un_shisa_btn {
  position: relative;
  display: inline-block;
  max-width: 300px;
  padding: 7px 30px;
  border: 3px solid var(--color-secondary);
  border-radius: 48px;
  background-color: var(--color-white);
  color: var(--color-secondary);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.25;
}
.un_shisa_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 6px;
  height: 7px;
  background: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.163' height='9.378' viewBox='0 0 8.163 9.378'%3E%3Cpath d='M246.408,635.7a1,1,0,0,1-.5-1.867l4.714-2.711-4.744-2.951a1,1,0,1,1,1.056-1.7l6.163,3.833a1,1,0,0,1-.03,1.716l-6.163,3.544A1,1,0,0,1,246.408,635.7Z' transform='translate(-245.407 -626.325)' fill='%231c72d5'/%3E%3C/svg%3E") no-repeat center;
  background-size: 6px 7px;
}

.un_comingsoon {
  position: relative;
}
.un_comingsoon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: calc(100% + 26px);
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.un_comingsoon_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  min-width: 300px;
  width: -moz-max-content;
  width: max-content;
  padding: 3px 30px 11px;
  text-align: center;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  border-radius: 30px;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.un_fixedBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 7px;
  text-align: center;
  background-color: var(--color-black);
  border-radius: 60px;
  border: 3px solid var(--color-black);
  box-shadow: inset 0 0 0 1px var(--color-white);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.1428571429;
}
.un_fixedBtn .lg {
  display: inline-block;
  margin: 0 5px;
  font-weight: 900;
  font-size: 2.1rem;
}
.un_fixedBtn .lg__02 {
  letter-spacing: 0.1em;
}
.un_fixedBtn__gray {
  background-color: #a4a4a4;
  border-color: #7e7e7e;
  pointer-events: none;
}
.un_fixedBtn__green {
  background: linear-gradient(#38D14C, #17A22A);
  border-color: #077717;
}

.un_fixedBtnList {
  position: fixed;
  z-index: 11;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 350px;
  display: flex;
  gap: 0 10px;
  width: calc(100% - 40px);
  margin-inline: auto;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}
.un_fixedBtnList.is_fixed {
  opacity: 1;
  visibility: visible;
}
.un_fixedBtnList > li {
  width: calc((100% - 10px) / 2);
}

.un_fixedBg {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("../images/fix_bg.png") no-repeat center;
  background-size: cover;
  display: flex;
  place-items: center;
  border: 10px solid #fff;
}
.un_fixedBg_inner {
  display: none;
}
@media screen and (min-width: 992px) {
  .un_fixedBg_inner {
    position: relative;
    width: 54.84375%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 60px 0;
    height: 100%;
  }
  .un_fixedBg_center {
    display: block;
    position: relative;
    width: 32.421875%;
    background: #fff;
    padding: 20px 20px 0;
    height: 100%;
  }
  .un_fixedBg_center::after {
    content: "";
    width: 168px;
    height: 173px;
    background: url(../images/fix_bg_deco.png) no-repeat 0 0/cover;
    position: absolute;
    right: -110px;
    top: calc(100vh - 190px);
    display: block;
  }
  .un_fixedBg_right {
    display: block;
    position: relative;
    width: 12.734375%;
    height: 100%;
  }
}
.un_fixedBg_ttl {
  flex: 1;
  margin-bottom: -40px;
  background: url(../images/fix_bg_ttl.png) no-repeat center center/contain;
}
.un_fixedBg_btn {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 20px;
  min-height: 227px;
}
.un_fixedBg_btn img {
  width: 100%;
}

.un_check_number {
  background: #DCFEFF;
  padding: 10px 3.4644% 0;
}
.un_check_number_inner {
    background: #fff;
    border-radius: 10px 10px 0 0;
    padding: 4.87%;
}
.un_input_number {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.un_input_number .el_input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #64D6D9;
  font-size: 70px;
  font-weight: bold;
  line-height: 90px;
  text-align: center;
  flex: 1;
  width: 100%;
  min-height: 90px;
  background: #fff;
  border: 1px solid #64D6D9;
  border-radius: 10px;
  box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.16);
}
input[type="number"]::-webkit-outer-spin-button, 
input[type="number"]::-webkit-inner-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
.un_input_number .el_input:focus {
  outline: 1px solid #4DC2FF;
}
.un_pop_result {
  display: none;
  border: 2px solid #4DC2FF;
  border-radius: 15px;
  padding: 20px 4.44% 30px;
  margin-top: 10px;
}
.un_pop_result .ttl {
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 20px;
}
.un_pop_result .ttl strong {
  font-size: 2rem;
  padding: 0 3px;
  font-family: "Tilt Warp", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "XROT" 0,
    "YROT" 0;
}
.un_pop_result .lead {
  margin-bottom: 20px;
}
.un_pop_result .fukidashi {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border-radius: 12px;
  padding: 13px 10px;
  background: #DEF8FF;
  position: relative;
}
.un_pop_result .fukidashi::after {
  content: "";
  position: absolute;
  left: calc(50% - 24px);
  bottom: -14px;
  width: 48px;
  height: 17px;
  background: url(../images/fukidashi_arrow.png) no-repeat 0 0 / cover;
}
.un_pop_result .lead dd {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.un_pop_result .lead dd strong {
  font-size: 4.5rem;
  padding: 0 3px;
  font-family: "Tilt Warp", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "XROT" 0,
    "YROT" 0;
}
.un_pop_result .thumb {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.un_pop_result .thumb li {
  flex:1;
}
.js_result_thumb,
.js_result_thumb_02 {
    width: auto;
    margin: auto;
}
@keyframes pyoko {
  0%, 100% { transform: translateY(0); }
  20% { transform: translateY(-15px); }
  40% { transform: translateY(0); }
  60% { transform: translateY(-10px); }
  80% { transform: translateY(0); }
}
.pyoko {
  animation: pyoko 1.5s ease-in-out 0s 2;
}
.js_result_text {
  font-size: 1.5rem;
  padding: 20px 5px;
  margin-top: 30px;
  background: url(../images/line.png) no-repeat 0 0/100%,
  url(../images/line.png) no-repeat 0 bottom/100%;
}
.un_pop_result .visit {
  padding: 10px 0 20px;
  background: url(../images/line.png) no-repeat 0 bottom/100%;
}
.un_pop_result .refresh {
  text-align: center;
  margin-top: 30px;
}
.un_pop_result .refresh a {
    color: #fff;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    background: linear-gradient(#4dc2ff 0%, #0099e9 100%);
    padding: 10px 20px;
    border-radius: 30px;
}

@media screen and (min-width: 768px) {
  .hp_spOnly {
    display: none !important;
  }
}

.hp_pcOnly {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .hp_pcOnly {
    display: block !important;
  }
}

.hp_tal {
  text-align: left !important;
}

.hp_tac {
  text-align: center !important;
}

.hp_tar {
  text-align: right !important;
}

.hp_mt0 {
  margin-top: 0 !important;
}

.hp_mt5 {
  margin-top: 5px !important;
}

.hp_mt10 {
  margin-top: 10px !important;
}

.hp_mt20 {
  margin-top: 20px !important;
}

.hp_mt30 {
  margin-top: 30px !important;
}

.hp_mt40 {
  margin-top: 40px !important;
}

.hp_mt50 {
  margin-top: 50px !important;
}

.hp_mb0 {
  margin-bottom: 0 !important;
}

.hp_mb5 {
  margin-bottom: 5px !important;
}

.hp_mb10 {
  margin-bottom: 10px !important;
}

.hp_mb20 {
  margin-bottom: 20px !important;
}
.hp_mb25 {
  margin-bottom: 25px !important;
}
.hp_mb30 {
  margin-bottom: 30px !important;
}

.hp_mb40 {
  margin-bottom: 40px !important;
}

.hp_mb50 {
  margin-bottom: 50px !important;
}

.hp_radius0 {
  border-radius: 0 !important;
}

.hp_fwb {
  font-weight: bold !important;
}
.hp_fw700 {
  font-weight: 700 !important;
}

.hp_clrOrange {
  color: var(--color-primary) !important;
}

.hp_clrRed {
  color: var(--color-accent) !important;
}

.hp_bgBlue {
  background-color: var(--color-secondary) !important;
}/*# sourceMappingURL=common.css.map */