@charset "UTF-8";
/* 変数ファイル */
/* -----------------------------------------------------------
    要素/属性セレクタ、疑似クラス
----------------------------------------------------------- */
/*Googleフォント*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Roboto:wght@700&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;
}

* {
  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 {
  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: #FFF;
  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 {
  text-decoration: none;
}

a:link:not(.c-btn__inner),
a:visited:not(.c-btn__inner),
a:active:not(.c-btn__inner),
a:hover:not(.c-btn__inner) {
  color: #333333;
}

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],
select,
textarea {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: clamp(16px, 4vw, 20px);
  padding: min(3.2vw, 16px) min(1.33vw, 6px);
  border: solid 1px #CCC;
  border-radius: 2px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus {
  outline: 2px solid #1370EA;
}

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

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;
  font-size: clamp(16px, 4vw, 20px);
  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] {
  position: relative;
}

input[type=checkbox] + label,
input[type=radio] + label {
  position: relative;
  cursor: pointer;
  padding-left: min(4.8vw, 24px);
  display: inline-flex;
  align-items: center;
}

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);
  width: min(5.33vw, 26px);
  height: min(5.33vw, 26px);
  border: solid 1px #CCC;
  background: #FFF;
}

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 #1370EA;
  border-bottom: min(0.8vw, 4px) solid #1370EA;
  transform: rotate(-45deg);
  width: min(2.67vw, 13px);
  height: min(1.33vw, 6px);
  top: min(2.13vw, 10px);
  left: clamp(-6px, -1.33vw, 0px);
}

/* ------------------------------------------------------------
ラジオボタン
------------------------------------------------------------ */
input[type=radio] {
  position: absolute;
}

input[type=radio] + label {
  padding: 0 0 0 min(7.2vw, 36px);
}

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

input[type=radio]:checked + label:after {
  background: #1370EA;
  width: min(2.67vw, 13px);
  height: min(2.67vw, 13px);
  border-radius: 50%;
  top: 50%;
  left: min(2.93vw, 14px);
  transform: translate(-50%, -50%);
}

input[type=radio]:checked + label:before {
  border-radius: 50%;
  border: 1px solid #1370EA;
}

select {
  color: #333;
  width: 100%;
}

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;
}
button:disabled {
  cursor: default;
}

/* -----------------------------------------------------------
    汎用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-space--pt15 {
  padding-top: min(4vw, 20px);
}

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

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

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

/*見出し、テキスト*/
.c-title {
  background: url(../image/common/bg_title.svg) no-repeat center center/contain;
  color: #0075B5;
  font-size: min(5.33vw, 26px);
  font-weight: bold;
  text-align: center;
  padding: min(2.67vw, 13px);
}

.c-title--left--border {
  font-weight: bold;
  margin-bottom: min(2.67vw, 13px);
  padding-bottom: min(1.33vw, 6px);
  color: #333;
  border-bottom: solid 1px #333;
}

.c-title--center--short-border {
  font-size: min(6.4vw, 32px);
  font-weight: bold;
  text-align: center;
  position: relative;
  color: #333;
  padding-bottom: min(2.67vw, 13px);
}
.c-title--center--short-border::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 10%;
  height: min(1.07vw, 5px);
  background-color: #0075B5;
}

.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: #004FB7 !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(1.33vw, 6px);
  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(1.33vw, 6px);
  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(1.33vw, 6px);
  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(2.67vw, 13px);
}
.c-link--outside:hover {
  text-decoration: none !important;
  opacity: 1;
}

.c-link--outside-white {
  color: #ffffff !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(2.67vw, 13px);
}
.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(2.67vw, 13px);
}
.c-link--pdf:hover {
  text-decoration: none !important;
  opacity: 1;
}

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

.c-btn__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #33A3E1 0%, #0770A9 100%);
  color: #FFF;
  padding: min(4vw, 20px);
  border-radius: min(13.33vw, 66px);
  /* ここを変えると全てのボタンに反映されます */
}
.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(4.8vw, 24px);
  height: min(4.8vw, 24px);
  transform: translate(0, -50%);
}

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

.c-btn--back {
  width: min(66.67vw, 333px);
  margin: 0 auto;
}
.c-btn--back .c-btn__inner {
  background: #E6E6E6;
  color: #333;
}
.c-btn--back .c-btn__inner:after {
  background: url(../image/common/icon_arrow02.svg) no-repeat left top/contain;
  right: auto;
  left: min(4vw, 20px);
}

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

.c-btn--long02 {
  width: min(86.67vw, 433px);
  margin: 0 auto;
}

.c-btn--small .c-btn__inner {
  font-size: min(3.73vw, 18px);
  padding: min(4vw, 20px) min(1.33vw, 6px);
}
.c-btn--small .c-btn__inner:after {
  content: none;
}

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

.c-btn--inactive {
  opacity: 0.3;
  pointer-events: none;
}

.c-btn--upload {
  display: block;
  width: min(53.33vw, 266px);
}
.c-btn--upload .c-btn__inner {
  padding: min(2.67vw, 13px) min(4vw, 20px);
}
.c-btn--upload .c-btn__inner:after {
  content: "";
  display: inline-block;
  background: url(../image/common/icon_upload.svg) no-repeat left top/contain;
  position: unset;
  width: min(4.8vw, 24px);
  height: min(4.8vw, 24px);
  transform: unset;
  margin-left: min(2.67vw, 13px);
}

.c-btn--text {
  width: auto;
  font-size: min(3.73vw, 18px);
  color: #004FB7 !important;
  text-align: left;
  text-decoration: underline !important;
}
.c-btn--text:hover {
  text-decoration: none !important;
  opacity: 1;
}

/*リスト、テーブル*/
.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: #EBF7FD;
  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: space-between;
  align-items: center;
  max-width: 500px;
  height: 65px;
  padding: min(2.67vw, 13px) min(4vw, 20px);
  margin: 0 auto;
}

.c-logo img {
  width: min(40vw, 200px);
}

.c-logo02 {
  margin-left: min(4vw, 20px);
}
.c-logo02 img {
  width: min(76.8vw, 384px); /* 288px */
}

.c-g-nav {
  display: flex;
  align-items: center;
}

.c-g-nav__list {
  display: block;
  background: #EBF7FD;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  color: #333;
  margin: 0;
  padding: min(16vw, 80px) 0 0;
  list-style: none;
  transition: 0.35s ease-in-out;
  overflow: hidden;
  z-index: 2;
}
.c-g-nav__list > li {
  float: none;
  margin: 0 !important;
  text-align: center;
}
.c-g-nav__list > li a {
  font-size: min(3.73vw, 18px);
  color: #333;
  display: block;
  padding: min(5.33vw, 26px) min(6.67vw, 33px);
}
.c-g-nav__list > li:not(:first-of-type) a {
  border-left: none;
  margin-left: 0;
  padding: min(5.33vw, 26px) min(6.67vw, 33px);
}

.c-g-nav__hbg-btn-wrap {
  background: #FFF;
  position: relative;
  z-index: 5;
}

.c-g-nav__hbg-btn {
  position: fixed;
  top: min(1.33vw, 6px);
  right: min(2.67vw, 13px);
  display: block;
  width: 42px;
  height: 40px;
  margin: 5px 0 -5px min(4vw, 20px);
}
.c-g-nav__hbg-btn.on {
  margin: 0 0 0 min(4vw, 20px);
}
.c-g-nav__hbg-btn:hover {
  cursor: pointer;
}
.c-g-nav__hbg-btn:before, .c-g-nav__hbg-btn:after,
.c-g-nav__hbg-btn span:first-of-type {
  display: block;
  width: 95%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.35s ease-in-out;
}
.c-g-nav__hbg-btn:after {
  content: "";
  top: calc(25% + 9px);
  border-bottom: 4px solid #7e7e80;
}
.c-g-nav__hbg-btn:before {
  content: "";
  top: 0;
  border-top: 4px solid #7e7e80;
}
.c-g-nav__hbg-btn span:first-of-type {
  height: 4px;
  background-color: #7e7e80;
  top: calc(25% - 1px);
}
.c-g-nav__hbg-btn span:nth-of-type(2):before {
  content: "MENU";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 14px;
  font-weight: bold;
  color: #333;
  letter-spacing: 0;
}
.c-g-nav__hbg-btn.on:before, .c-g-nav__hbg-btn.on:after, .c-g-nav__hbg-btn.on span:first-of-type {
  width: 70%;
}
.c-g-nav__hbg-btn.on:before {
  top: calc(41% - 1.5px);
  transform: rotate(315deg);
}
.c-g-nav__hbg-btn.on:after {
  top: calc(41% - 1.5px);
  transform: rotate(-315deg);
}
.c-g-nav__hbg-btn.on span:first-of-type {
  display: none;
}
.c-g-nav__hbg-btn.on span:nth-of-type(2):before {
  content: "CLOSE";
  bottom: -11px;
}

.js-open-menu {
  right: -100%;
}
.js-open-menu.active {
  right: 0;
}

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

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

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

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

/*フッター*/
.c-f-area {
  background: #0075B5;
  padding: min(4vw, 20px) min(1.33vw, 6px);
}

.c-f-area__copy {
  color: #ffffff;
  font-size: min(3.73vw, 18px);
  text-align: center;
}

.c-pagetop {
  opacity: 0;
  position: fixed;
  width: min(9.33vw, 46px);
  height: min(9.33vw, 46px);
  bottom: min(4vw, 20px);
  right: min(4vw, 20px);
  z-index: 10;
}
.c-pagetop a:hover {
  opacity: 1;
}

/* pagetopボタン */
.c-pagetop.js-fadeIn {
  opacity: 1;
  animation: fadeIn 0.5s ease-in-out;
}

.c-pagetop.js-fadeOut {
  opacity: 0;
  animation: fadeOut 0.5s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* カード */
.c-card__title {
  background: #0075B5;
  color: #ffffff;
  font-size: min(5.33vw, 26px);
  font-weight: bold;
  text-align: center;
  padding: min(2.67vw, 13px) min(1.33vw, 6px);
  border-radius: min(3.2vw, 16px) min(3.2vw, 16px) 0 0;
}

.c-card__content {
  background: #FFF;
  padding: min(5.33vw, 26px) min(4vw, 20px);
  border-radius: 0 0 min(3.2vw, 16px) min(3.2vw, 16px);
}
.c-card__content--notitle {
  border-radius: min(3.2vw, 16px);
}

/* セクション間margin */
.c-section-margin {
  margin-top: min(8vw, 40px);
}
.c-section-margin--bottom {
  margin-bottom: min(8vw, 40px);
}

/* アコーディオン */
.c-accordion {
  margin-bottom: min(4vw, 20px);
  /* アコーディオン（FAQ用style） */
}
.c-accordion:hover {
  cursor: pointer;
}
.c-accordion .c-acc_head {
  background: #0075B5;
  color: #ffffff;
  padding: min(3.2vw, 16px);
  display: flex;
  align-items: flex-start;
}
.c-accordion .c-acc_head::-webkit-details-marker {
  display: none;
}
.c-accordion .c-acc_head .c-acc_head__text {
  width: calc(100% - (min(6.4vw, 32px) + min(2.67vw, 13px)));
}
.c-accordion .c-acc_head::before,
.c-accordion .c-acc_detail::before {
  font-family: roboto, "Noto Sans JP", "ヒラギノ角ゴ Pro", sans-serif;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  width: min(6.4vw, 32px);
  height: min(6.4vw, 32px);
  display: grid;
  place-content: center;
  font-size: min(4.27vw, 21px);
  margin-right: min(2.67vw, 13px);
}
.c-accordion .c-acc_detail {
  background: #FFF;
  padding: min(3.2vw, 16px);
  display: flex;
  align-items: flex-start;
}
.c-accordion .c-acc_detail__text {
  width: calc(100% - min(2.67vw, 13px));
}
.c-accordion .c-acc_head:after {
  content: "";
  width: min(4.8vw, 24px);
  height: min(4.8vw, 24px);
  background-image: url(/../image/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: auto;
  transform: rotate(90deg);
}
.c-accordion[open] .c-acc_head:after {
  content: "";
  transform: rotate(-90deg);
}
.c-accordion--faq .c-acc_head::before {
  content: "Q";
  background: #FFF;
  color: #0075B5;
}
.c-accordion--faq .c-acc_head .c-acc_head__text {
  width: calc(100% - (min(6.4vw, 32px) * 2 + min(2.67vw, 13px) + min(2.67vw, 13px)));
}
.c-accordion--faq .c-acc_detail::before {
  content: "A";
  background: #0075B5;
  color: #ffffff;
}
.c-accordion--faq .c-acc_detail .c-acc_detail__text {
  width: calc(100% - (min(6.4vw, 32px) + min(2.67vw, 13px)));
}

.c-close-icon {
  display: block;
  width: min(10.67vw, 53px);
  height: min(10.67vw, 53px);
  margin: auto;
  position: absolute;
  top: clamp(-27px, -5.33vw, 0px);
  right: clamp(-27px, -5.33vw, 0px);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  background: #0075B5;
  border-radius: 100vmax;
}

.c-close-icon::before, .c-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(5.33vw, 26px);
  height: 4px;
  background: #FFF;
  border-radius: 1px;
  transform-origin: center;
}

.c-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*モーダルウィンドウ*/
.c-modal--bank {
  background: #EBF7FD;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: min(4vw, 20px);
  opacity: 0;
  z-index: -1;
  overflow-y: scroll; /* スクロールバーの有無によるズレ対策 */
}
.c-modal--bank.js-show {
  opacity: 1;
  z-index: 99;
}

.c-modal--bank-branch {
  background: #EBF7FD;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: min(4vw, 20px);
  opacity: 0;
  z-index: -1;
  overflow-y: scroll; /* スクロールバーの有無によるズレ対策 */
}
.c-modal--bank-branch.js-show {
  opacity: 1;
  z-index: 99;
}

.c-modal__title-wrap {
  margin: min(4.8vw, 24px) 0;
}

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

.c-modal__close {
  position: fixed;
  top: min(2.67vw, 13px);
  left: 81.33vw;
  right: 0;
  width: min(13.33vw, 66px);
  height: min(13.33vw, 66px);
  margin: 0 auto;
  z-index: 999;
}
.c-modal__close.c-close-icon::before, .c-modal__close.c-close-icon::after {
  width: min(8vw, 40px);
  height: min(1.33vw, 6px);
}

@media screen and (min-width: 501px) {
  /* ===========================================================
      タブレット、PC
  =========================================================== */
  /* -----------------------------------------------------------
      要素/属性セレクタ、疑似クラス
  ----------------------------------------------------------- */
  /* -----------------------------------------------------------
      汎用class
  ----------------------------------------------------------- */
  .sp-not {
    display: block;
  }
  .sp-only {
    display: none;
  }
  /* -----------------------------------------------------------
      共通パーツ(接頭辞が「.c-」)
  ----------------------------------------------------------- */
  /*見出し、テキスト*/
  .c-title {
    padding: min(3.2vw, 16px) min(2.67vw, 13px);
  }
  /*モーダルウィンドウ*/
  .c-modal__close {
    left: 408px;
  }
}
@media print {
  /* ===========================================================
      印刷用
  =========================================================== */
}