@charset "UTF-8";
/* 変数ファイル */
/* -----------------------------------------------------------
    要素/属性セレクタ、疑似クラス
----------------------------------------------------------- */
/*Googleフォント*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

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

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

img {
  vertical-align: bottom;
}

ul, ol {
  list-style: none;
}

nav ul {
  list-style: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
input, select {
  vertical-align: middle;
}

:focus {
  outline: none;
}

/* 色 */
/* 余白、フォントサイズ用 */
html {
  background: #003B90;
  font-size: 62.5%; /* 分かりやすくするために1remを10pxに */
  /*overflow-y: scroll;*/ /* スクロールバーの有無によるズレ対策 */
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, sans-serif;
  background: #E3EFFA;
  width: 100%;
  color: #333;
  font-size: min(4.27vw, 21px);
  line-height: 1.6;
  letter-spacing: 0;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  text-align: left; /* 左揃え */
  /*font-feature-settings: "palt";*/ /* テキストの自動カーニング */
}

::-ms-clear {
  display: none; /* IEのテキストボックスとパスワード入力欄の「×」を消すため */
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  /*backface-visibility: hidden;*/ /* Chromeのホバー時1pxのずれ解消のため */
  transition: all linear 0.3s;
}

a:link,
a:visited,
a:active,
a:hover {
  color: #333333;
  text-decoration: none;
}

a:hover {
  /*opacity: 0.8;*/
  /*transition: all linear 0.3s;*/
}

a[href^="tel:"] {
  pointer-events: auto;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
}

input[type=text],
input[type=email],
input[type=number] {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: min(4.27vw, 21px);
  padding: min(3.2vw, 16px) min(1.33vw, 6px);
  border: solid 1px #CCC;
  border-radius: 0;
}

input[type=text]:disabled,
input[type=email]:disabled,
input[type=number]:disabled {
  cursor: default;
  background: #FFF;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  /* Chrome, Safariでスピンボタン（上下の矢印ボタン）を非表示 */
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  /* FireFoxでスピンボタン（上下の矢印ボタン）を非表示 */
  -moz-appearance: textfield;
}

input[type=checkbox],
input[type=radio],
input[type=file] {
  display: inline-block;
  width: min(2.4vw, 12px);
  height: min(2.4vw, 12px);
  top: 0;
  left: min(0.8vw, 4px);
  margin: 0;
  vertical-align: sub;
  visibility: hidden;
}

input[type=file] {
  position: absolute;
}

input[type=checkbox],
input[type=radio] {
  position: relative;
}

input[type=checkbox] + label,
input[type=radio] + label {
  position: relative;
  cursor: pointer;
  padding-left: min(4vw, 20px);
}

input[type=checkbox] + label > span,
input[type=radio] + label > span {
  width: min(79.47vw, 397px);
}

input[type=checkbox] + label:before,
input[type=radio] + label:before {
  content: "";
  position: absolute;
  left: clamp(-13px, -2.67vw, 0px);
  margin: min(0.8vw, 4px) min(1.33vw, 6px) 0 0;
  width: min(5.07vw, 25px);
  height: min(5.07vw, 25px);
  border: solid 1px #CCC;
  background: #FFF;
}

input[type=radio] + label:before {
  border-radius: 50%;
}

input[type=checkbox]:checked + label:after,
input[type=radio]:checked + label:after {
  content: "";
  position: absolute;
}

input[type=checkbox]:checked + label:after {
  border-left: min(0.8vw, 4px) solid #333;
  border-bottom: min(0.8vw, 4px) solid #333;
  transform: rotate(-45deg);
  width: min(2.67vw, 13px);
  height: min(1.33vw, 6px);
  top: min(2.13vw, 10px);
  left: clamp(-8px, -1.6vw, 0px);
}

input[type=radio]:checked + label:after {
  background: #013B90;
  width: min(1.87vw, 9px);
  height: min(1.87vw, 9px);
  border-radius: 50%;
  top: min(2.67vw, 13px);
  left: clamp(-4px, -0.8vw, 0px);
}

button {
  background: none;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, sans-serif;
  width: 100%;
  font-size: min(4.27vw, 21px);
  padding: 0;
  border: none;
  cursor: pointer;
}

/* -----------------------------------------------------------
    汎用class
----------------------------------------------------------- */
.sp-not {
  display: none;
}

.clearfix {
  /*overflow: hidden;*/
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* -----------------------------------------------------------
    共通パーツ(接頭辞が「.c-」)
----------------------------------------------------------- */
.c-x-container {
  width: 100%;
  max-width: 526px;
  margin: 0 auto;
  padding: 0 min(2.67vw, 13px);
}

.c-x-container__inner {
  position: relative;
}

.c-space--mt5 {
  margin-top: min(1.33vw, 6px);
}

.c-space--mt10 {
  margin-top: min(2.67vw, 13px);
}

.c-space--mt15 {
  margin-top: min(4vw, 20px);
}

.c-space--mt20 {
  margin-top: min(5.33vw, 26px);
}

.c-space--mt25 {
  margin-top: min(6.67vw, 33px);
}

.c-space--mt30 {
  margin-top: min(8vw, 40px);
}

.c-space--mt45 {
  margin-top: min(12vw, 60px);
}

.c-space--mb5 {
  margin-bottom: min(1.33vw, 6px);
}

.c-space--mb10 {
  margin-bottom: min(2.67vw, 13px);
}

.c-space--mb15 {
  margin-bottom: min(4vw, 20px);
}

.c-space--mb20 {
  margin-bottom: min(5.33vw, 26px);
}

.c-space--mb25 {
  margin-bottom: min(6.67vw, 33px);
}

.c-space--mb30 {
  margin-bottom: min(8vw, 40px);
}

.c-space--mb45 {
  margin-bottom: min(12vw, 60px);
}

.c-space--mr5 {
  margin-right: min(1.33vw, 6px);
}

.c-space--mr10 {
  margin-right: min(2.67vw, 13px);
}

.c-space--mr15 {
  margin-right: min(4vw, 20px);
}

.c-space--mr20 {
  margin-right: min(5.33vw, 26px);
}

.c-space--mr25 {
  margin-right: min(6.67vw, 33px);
}

.c-space--mr30 {
  margin-right: min(8vw, 40px);
}

.c-space--ml5 {
  margin-left: min(1.33vw, 6px);
}

.c-space--ml10 {
  margin-left: min(2.67vw, 13px);
}

.c-space--ml15 {
  margin-left: min(4vw, 20px);
}

.c-space--ml20 {
  margin-left: min(5.33vw, 26px);
}

.c-space--ml25 {
  margin-left: min(6.67vw, 33px);
}

.c-space--ml30 {
  margin-left: min(8vw, 40px);
}

.c-anker-scroll {
  margin-top: clamp(-133px, -26.67vw, 0px);
  padding-top: min(26.67vw, 133px);
}

/*見出し、テキスト*/
.c-title--01 {
  font-weight: bold;
  margin-bottom: min(2.67vw, 13px);
  padding-bottom: min(1.33vw, 6px);
  border-bottom: solid 1px #333;
}

.c-text + .c-text {
  margin-top: min(4vw, 20px);
}

.c-text--fs1 {
  font-size: min(6.4vw, 32px);
}

.c-text--fs2 {
  font-size: min(5.87vw, 29px);
}

.c-text--fs3 {
  font-size: min(5.33vw, 26px);
}

.c-text--fs4 {
  font-size: min(4.8vw, 24px);
}

.c-text--fs5 {
  font-size: min(3.73vw, 18px);
}

.c-text--fs6 {
  font-size: min(3.47vw, 17px);
}

.c-text--fs7 {
  font-size: min(3.2vw, 16px);
}

.c-text--red {
  color: #D50000;
}

.c-text--bold {
  font-weight: bold;
}

.c-text--underline {
  text-decoration: underline;
}

.c-text--left {
  text-align: left;
}

.c-text--center {
  text-align: center;
}

.c-text--right {
  text-align: right;
}

.c-text--indent {
  margin-left: 1em;
  text-indent: -1em;
}

/*リンク、ボタン*/
.c-link--underline {
  color: #013B90 !important;
  text-decoration: underline !important;
}
.c-link--underline:hover {
  text-decoration: none !important;
  opacity: 1;
}

.c-link--arrow:after {
  content: "";
  display: inline-block;
  background: url(../image/common/icon_dainari.png) no-repeat center center/contain;
  width: min(2.27vw, 11px); /* 8.5px */
  height: min(3.73vw, 18px); /* 14px */
  margin: 0 0 0 min(2.67vw, 13px);
  vertical-align: -1px;
}

.c-link--arrow-bottom:after {
  content: "";
  display: inline-block;
  background: url(../image/common/icon_dainari.png) no-repeat center center/contain;
  width: min(2.27vw, 11px); /* 8.5px */
  height: min(3.73vw, 18px); /* 14px */
  margin: 0 0 0 min(2.67vw, 13px);
  vertical-align: -1px;
  transform: rotate(90deg);
}

.c-link--arrow-white:after {
  content: "";
  display: inline-block;
  background: url(../image/common/icon_dainari2.png) no-repeat center center/contain;
  width: min(2vw, 10px); /* 7.5px */
  height: min(3.07vw, 15px); /* 11.5px */
  margin: 0 0 0 min(2.67vw, 13px);
  vertical-align: baseline;
}

.c-link--outside {
  text-decoration: underline !important;
}
.c-link--outside:after {
  content: "";
  background: url(../image/common/icon_newtab.gif) no-repeat left top/contain;
  display: inline-block;
  width: min(4vw, 20px); /* 15px */
  height: min(3.47vw, 17px); /* 13px */
  vertical-align: middle;
  margin-left: min(1.33vw, 6px);
}
.c-link--outside:hover {
  text-decoration: none !important;
  opacity: 1;
}

.c-link--outside-white {
  color: #FFF !important;
  text-decoration: underline !important;
}
.c-link--outside-white:after {
  content: "";
  background: url(../image/common/icon_newtab-white.gif) no-repeat left top/contain;
  display: inline-block;
  width: min(4vw, 20px); /* 15px */
  height: min(3.47vw, 17px); /* 13px */
  vertical-align: middle;
  margin-left: min(1.33vw, 6px);
}
.c-link--outside-white:hover {
  text-decoration: none !important;
  opacity: 1;
}

.c-link--pdf {
  text-decoration: underline !important;
}
.c-link--pdf:after {
  content: "";
  background: url(../image/common/icon_pdf.png) no-repeat left top/contain;
  display: inline-block;
  width: 20px;
  height: 23.5px;
  width: min(5.33vw, 27px); /* 20px */
  height: min(6.27vw, 31px); /* 23.5px */
  vertical-align: middle;
  margin-left: min(1.33vw, 6px);
}
.c-link--pdf:hover {
  text-decoration: none !important;
  opacity: 1;
}

.c-btn-wrap * + * {
  margin-top: min(2.67vw, 13px) !important;
}

.c-btn {
  width: min(53.33vw, 266px);
  margin: 0 auto;
}

.c-btn__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #013B90;
  color: #FFF !important;
  padding: min(2.67vw, 13px) min(4vw, 20px);
}
.c-btn__inner:after {
  content: "";
  display: inline-block;
  background: url(../image/common/icon_arrow.svg) no-repeat left top/contain;
  position: absolute;
  top: 50%;
  right: min(4vw, 20px);
  width: min(2.4vw, 12px);
  height: min(3.73vw, 18px);
  transform: translate(0, -50%);
}

.c-btn--02 {
  width: min(53.33vw, 266px);
  margin: 0 auto;
}
.c-btn--02 .c-btn__inner {
  background: #9B9B9B;
}
.c-btn--02 .c-btn__inner:after {
  background: url(../image/common/icon_arrow02.svg) no-repeat left top/contain;
  right: auto;
  left: min(4vw, 20px);
}

.c-btn--03 {
  width: min(66.67vw, 333px);
  margin: 0 auto;
}

.c-btn--04 {
  width: min(92vw, 460px);
  margin: 0 auto;
}
.c-btn--04 .c-btn__inner {
  background: #EF4C84;
  font-size: min(5.33vw, 26px);
  font-weight: 500;
  padding: min(4vw, 20px);
}

/*リスト、テーブル*/
.c-list--dot > li {
  text-indent: -1em;
  margin-left: 1em;
}
.c-list--dot > li:before {
  content: "・";
}

.c-list--dot-large > li {
  text-indent: -1.2em;
  margin-left: 1.2em;
  letter-spacing: 0;
}
.c-list--dot-large > li:before {
  content: "";
  display: inline-block;
  width: min(2.13vw, 10px);
  height: min(2.13vw, 10px);
  background: #333;
  border-radius: 50%;
  margin: 0 min(2.67vw, 13px) min(0.53vw, 2px) 0;
}
.c-list--dot-large > li:not(:first-of-type) {
  margin-top: min(4vw, 20px);
}

.c-list--asterisk > li {
  text-indent: -1em;
  margin-left: 1em;
}
.c-list--asterisk > li:before {
  content: "※";
}

.c-list--asterisk-number {
  counter-reset: number 0;
}
.c-list--asterisk-number > * {
  counter-increment: number 1;
  text-indent: -1.9em;
  margin-left: 1.9em;
}
.c-list--asterisk-number > *:before {
  content: "※" counter(number) "";
  margin: 0 0.25em 0 0;
}

.c-list--number {
  counter-reset: number 0;
}
.c-list--number > li {
  counter-increment: number 1;
  text-indent: -1.6em;
  margin-left: 1.6em;
}
.c-list--number > li:before {
  content: "(" counter(number) ")";
  margin: 0 0.25em 0 0;
}
.c-list--number > li:not(:first-of-type) {
  margin-top: min(1.33vw, 6px);
}
.c-list--dot-large .c-list--number {
  margin: min(1.33vw, 6px) 0 0 2em;
}
.c-list--dot-large .c-list--number > li {
  margin-left: 0.5em;
}

.c-table dt {
  background: #E3EFFA;
  padding: min(4vw, 20px) min(1.33vw, 6px);
  text-align: center;
}
.c-table dd {
  margin-top: min(2.67vw, 13px);
}

/*ヘッダー*/
.c-header__inner {
  background: #FFF;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 500px;
  padding: 0 min(4vw, 20px) 0 0;
  margin: 0 auto;
}

.c-logo img {
  width: min(14.93vw, 74px); /* 56px */
}

.c-logo02 {
  margin-left: min(13.33vw, 66px);
}
.c-logo02 img {
  width: min(58.67vw, 293px);
}

/*メインコンテンツ*/
.c-main {
  width: 100%;
  margin: 0 auto;
}

/*メインビジュアル*/
.c-mv__inner {
  max-width: 500px;
  margin: 0 auto;
}

.c-mv--close .c-mv__inner {
  position: relative;
}
.c-mv--close .c-mv__inner:after {
  content: "本キャンペーンは終了いたしました";
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  color: #D50000;
  font-size: min(5.87vw, 29px);
  font-weight: bold;
  z-index: 2;
}

/*応募規約*/
.c-terms-text {
  font-size: min(3.73vw, 18px);
  font-weight: 500;
}

.c-terms-list dt {
  color: #013B90;
  font-weight: bold;
  margin: min(4vw, 20px) 0 min(1.33vw, 6px);
  padding-bottom: min(1.33vw, 6px);
  border-bottom: solid 1px #013B90;
}
.c-terms-list dd {
  font-size: min(3.73vw, 18px);
  font-weight: 500;
}

/*フッター*/
.c-f-area {
  background: #051864;
  padding: min(4vw, 20px) min(1.33vw, 6px);
  color: #FFF;
  font-size: min(3.2vw, 16px);
  text-align: center;
}

@media screen and (min-width: 501px) {
  /* ===========================================================
      タブレット、PC
  =========================================================== */
  /* -----------------------------------------------------------
      要素/属性セレクタ、疑似クラス
  ----------------------------------------------------------- */
  body {
    padding-top: min(2.67vw, 13px);
  }
  /* -----------------------------------------------------------
      汎用class
  ----------------------------------------------------------- */
  .sp-not {
    display: block;
  }
  .sp-only {
    display: none;
  }
  /* -----------------------------------------------------------
      共通パーツ(接頭辞が「.c-」)
  ----------------------------------------------------------- */
}