@charset "utf-8";
/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http://
 * File name: base.css
 * Summary:   ベーススタイル
 * Author:    CrEa., Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    html & body
 *     =2    box model styles
 *     =3    float/align styles
 *     =4    text styles
 *     =5    link styles
 *     =6    list styles
 *     =7    heading styles
 *     =8    table styles
 *     =9    form styles
 *     =10    other selectors
 *     =11   clearfix
 *     =12   display
 *
 * ===============================================================
*/

/*==-----------------------------------------------
フルードメディア
-------------------------------------------------*/
img,
video {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

/** =1
 * ========================================
 * html & body
 * ========================================
 */
html {
  height: 100%;
  font-size: 62.5%; /* 基準10px=1em */
}

body {
  height: 100%;
  background-color: #0b2244;
  color: #fff;
  font-size: 16px; /* CSS3未対応ブラウザ対策 */
  font-size: 1.6rem; /* CSS3単位 実質12.8px */
  line-height: 1.6;
  word-break: break-all;
  font-family: "Noto Sans JP", "Yu Gothic", YuMincho sans-serif;
  box-sizing: border-box;
}
/* link */
a:not([class]) {
  color: inherit;
}
a,
a:link,
a:visited,
a:hover,
a:active {
  outline: none;
  text-decoration: none;
}

a.underline {
  text-decoration: underline;
}
.no-touch a.underline:hover {
  text-decoration: none;
}

.no-touch .alpha {
  transition: opacity 0.3s ease-in-out;
}
.no-touch .alpha:hover {
  opacity: 0.6;
}

@media (any-hover: hover) {
  .alpha:hover {
    transition: opacity 0.3s ease-in-out;
    opacity: 0.6;
  }
}


/** =3
 * ========================================
 * float/align styles
 * ========================================
 */

.flo_left {
  float: left;
}
.flo_right {
  float: right;
}

.txt_left {
  text-align: left;
}
.txt_center {
  text-align: center;
}
.txt_right {
  text-align: right;
}

.txtCenter {
  text-align: center;
}
.txtLeft {
  text-align: left;
}
.txtRight {
  text-align: right;
}

.w100per {
  width: 100%;
}
.txtHasLp {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}
.txtHasLp.isWide {
  display: inline-block;
  text-indent: -3em;
  padding-left: 3em;
}
.txtHasLp.displayBlock {
  display: block;
}

@media screen and (max-width: 768px) {
  .spTxt_left {
    text-align: left;
  }
}

/** =4
 * ========================================
 * text styles
 * ========================================
 */

.sans-serif {
  font-family: "Noto Sans JP", sans-serif;
}

.fcAccent {
  color: #e70020;
}
.fcAccentOnDark {
  color: #fff666;
}
.fcWhite {
  color: #fff;
}

strong {
  font-weight: bold;
}
.fwBold {
  font-weight: bold;
}
.fwLight {
  font-weight: 300;
}
.fw400 {
  font-weight: 400;
}
.fw700 {
  font-weight: 700;
}
.fw900 {
  font-weight: 900;
}

.fs10 {
  font-size: 10px;
  font-size: 1rem;
}
.fs11 {
  font-size: 11px;
  font-size: 1.1rem;
}
.fs12 {
  font-size: 12px;
  font-size: 1.2rem;
}
.fs13 {
  font-size: 13px;
  font-size: 1.3rem;
}
.fs14 {
  font-size: 14px;
  font-size: 1.4rem;
}
.fs15 {
  font-size: 15px;
  font-size: 1.5rem;
}
.fs16 {
  font-size: 16px;
  font-size: 1.6rem;
}
.fs17 {
  font-size: 17px;
  font-size: 1.7rem;
}
.fs18 {
  font-size: 18px;
  font-size: 1.8rem;
}
.fs19 {
  font-size: 19px;
  font-size: 1.9rem;
}
.fs20 {
  font-size: 20px;
  font-size: 2rem;
}
.fs21 {
  font-size: 21px;
  font-size: 2.1rem;
}
.fs22 {
  font-size: 22px;
  font-size: 2.2rem;
}
.fs23 {
  font-size: 23px;
  font-size: 2.3rem;
}
.fs24 {
  font-size: 24px;
  font-size: 2.4rem;
}
.fs25 {
  font-size: 25px;
  font-size: 2.5rem;
}
.fs26 {
  font-size: 26px;
  font-size: 2.6rem;
}
.fs28 {
  font-size: 28px;
  font-size: 2.8rem;
}
.fs30 {
  font-size: 30px;
  font-size: 3rem;
}
.fs32 {
  font-size: 32px;
  font-size: 3.2rem;
}
.fs33 {
  font-size: 33px;
  font-size: 3.3rem;
}
.fs35 {
  font-size: 35px;
  font-size: 3.5rem;
}
.fs36 {
  font-size: 36px;
  font-size: 3.6rem;
}
.fs38 {
  font-size: 38px;
  font-size: 3.8rem;
}
.fs40 {
  font-size: 40px;
  font-size: 4rem;
}
.fs42 {
  font-size: 42px;
  font-size: 4.2rem;
}
.fs45 {
  font-size: 45px;
  font-size: 4.5rem;
}
.fs46 {
  font-size: 46px;
  font-size: 4.6rem;
}
.fs60 {
  font-size: 60px;
  font-size: 6rem;
}

@media screen and (max-width: 768px) {
  .fsSp10 {
    font-size: 10px;
    font-size: 1rem;
  }
  .fsSp14 {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .fsSp16 {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .fsSp18 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .fsSp20 {
    font-size: 20px;
    font-size: 2rem;
  }
  .fsSp22 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .fsSp28 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.ls-20 {
  letter-spacing: -0.02em;
}
.ls-50 {
  letter-spacing: -0.05em;
}
.ls-100 {
  letter-spacing: -0.1em;
}
.ls-200 {
  letter-spacing: -0.2em;
}

.lh16 {
  line-height: 1.6em;
}
.lh17 {
  line-height: 1.7em;
}
.lh18 {
  line-height: 1.8em;
}
.lh19 {
  line-height: 1.9em;
}
.lh20 {
  line-height: 2em;
}
.lh21 {
  line-height: 2.1em;
}

.kerningLeft-05 {
  margin-inline-start: -0.5em;
}
.kerningRight-05 {
  margin-inline-end: -0.5em;
}

/** =5
 * ========================================
 * link styles
 * ========================================
 */

/* .no-touch a.opacity,
.no-touch input.opacity,
.no-touch button.opacity {
  transition: all 0.15s ease;
}
.no-touch a.opacity:hover,
.no-touch input.opacity:hover,
.no-touch button.opacity:hover {
  opacity: 0.6;
} */

/** =6
 * ========================================
 * list styles
 * ========================================
 */
/* disc */
.listDisc {
  list-style-type: disc;
  padding-inline-start: 1.6em;
}

/* listNotice */
.listNotice > li {
  display: flex;
}
.listNotice > li::before {
  content: "※";
}

/** =9
/*==-----------------------------------------------
form
-------------------------------------------------*/

.btn,
a.btn,
input.btn,
button.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: calc(12 / 20 * 1em);
  margin: 0;
  padding-block: calc(16 / 20 * 1em);
  padding-inline: calc(24 / 20 * 1em);
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #0c1f40 0%, #00abd4 100%);
  box-shadow: 0 0 0 1px rgb(from #00abd4 r g b / 0.4);
  color: #fff;
  font-weight: bold;
  font-size: clamp(14px, calc(20 / 768 * 100vw), 20px);
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (any-hover: hover) {
  .btn:hover,
  a.btn:hover,
  input.btn:hover,
  button.btn:hover {
    opacity: 0.7;
  }
}

.btn.colorAccent {
  background: linear-gradient(90deg, #7f6427 0%, #e5b346 100%);
  box-shadow: 0 0 0 1px rgb(from #e5b346 r g b / 0.6);
}

.btn.large {
  font-size: clamp(20px, calc(26 / 768 * 100vw), 26px);
}
.btn.largeX {
  font-size: clamp(28px, calc(36 / 768 * 100vw), 36px);
}

.btn span {
  font-weight: inherit;
}

.btn[disabled],
.btn.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input.txt,
textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding-block: calc(13 / 16 * 1em);
  padding-inline: calc(20 / 16 * 1em);
  border: none;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px #ccc;
  background: #fff;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.4;
  appearance: none;
  transition: all 0.1s ease;
}
textarea {
  height: 8em;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input.txt:focus,
textarea:focus {
  box-shadow: inset 0 0 0 1px #2360b2, 0 0 0 3px rgb(from #2360b2 r g b / 0.2);
}

/* placeholder */
::placeholder {
  color: rgb(from #000 r g b / 0.4);
}
::-webkit-input-placeholder {
  /* Chrome */
  color: rgb(from #000 r g b / 0.4);
}
::-moz-placeholder {
  /* Firefox */
  color: rgb(from #000 r g b / 0.4);
}
:-ms-input-placeholder {
  /* IE */
  color: rgb(from #000 r g b / 0.4) !important;
}

/* radio */
.radioWrap {
  position: relative;
  line-height: 1.4;
}
.radioWrap input[type="radio"] {
  opacity: 0;
  position: absolute;
  z-index: -1;
  inset-block-start: 0;
  inset-inline-start: 0;
}

.radioWrap .text {
  display: inline-block;
  padding-inline-start: calc(28 / 16 * 1em);
}
.radioWrap .text::before,
.radioWrap .text::after {
  display: block;
  position: absolute;
  content: "";
}
.radioWrap .text::before {
  inset-block-start: calc(2 / 16 * 1em);
  inset-inline-start: 0;
  width: calc(20 / 16 * 1em);
  height: calc(20 / 16 * 1em);
  border: 1px solid #ccc;
  border-radius: 100vmax;
  box-sizing: border-box;
  background-color: #fff;
  transition: all 0.1s ease;
}
.radioWrap .text::after {
  opacity: 0;
  inset-block-start: calc(12 / 16 * 1em);
  inset-inline-start: calc(10 / 16 * 1em);
  width: calc(12 / 16 * 1em);
  height: calc(12 / 16 * 1em);
  margin-block-start: calc(-6 / 16 * 1em);
  margin-inline-start: calc(-6 / 16 * 1em);
  border-radius: 100vmax;
  background-color: #2360b2;
  transition: opacity 0.1s ease;
}
.radioWrap input[type="radio"]:checked + .text::after {
  opacity: 1;
}

.radioWrap input[type="radio"]:focus + .text::before {
  border-color: #2360b2;
  box-shadow: 0 0 0 3px rgb(from #2360b2 r g b / 0.2);
}

.radioWrap input[type="radio"]:disabled + .text {
  opacity: var(--opacity-disabled);
  cursor: not-allowed;
}
.radioWrap input[type="radio"]:disabled + .text::after {
  opacity: 0;
}

/* checkbox */
.checkboxWrap {
  position: relative;
}
.checkboxWrap input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.checkboxWrap .text {
  display: inline-block;
  padding-inline-start: calc(28 / 16 * 1em);
}
.checkboxWrap .text::before,
.checkboxWrap .text::after {
  display: block;
  position: absolute;
  content: "";
}
.checkboxWrap .text::before {
  inset-block-start: calc(3 / 16 * 1em);
  inset-inline-start: 0;
  width: calc(20 / 16 * 1em);
  height: calc(20 / 16 * 1em);
  border-radius: 3px;
  box-shadow: 0 0 0 1px #ccc;
  box-sizing: border-box;
  background-color: #fff;
  transition: all 0.1s ease;
}
.checkboxWrap .text::after {
  opacity: 0;
  inset-block-start: calc(12 / 16 * 1em);
  inset-inline-start: calc(10 / 16 * 1em);
  rotate: -45deg;
  translate: -50% -50%;
  width: calc(10 / 16 * 1em);
  height: calc(6 / 16 * 1em);
  border-block-end: 2px solid #2360b2;
  border-inline-start: 2px solid #2360b2;
  transition: opacity 0.1s ease;
}

.checkboxWrap input[type="checkbox"]:checked + .text::after {
  opacity: 1;
}

.checkboxWrap input[type="checkbox"]:focus + .text::before {
  box-shadow: 0 0 0 1px #2360b2, 0 0 0 3px rgb(from #2360b2 r g b / 0.2);
}

.checkboxWrap input[type="checkbox"]:disabled + .text {
  opacity: var(--opacity-disabled);
  cursor: not-allowed;
}
.checkboxWrap input[type="checkbox"]:disabled + .text::after {
  opacity: 0;
}

/* select */
select {
  color: inherit;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.4;
}
.selectWrap {
  position: relative;
}
.selectWrap::after {
  display: block;
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: calc(20 / 16 * 1em);
  z-index: 0;
  translate: 0 -50%;
  margin-block-start: calc(1 / 12 * 1em);
  border-block-start: calc(12 / 16 * 1em) solid #000;
  border-inline: calc(8 / 16 * 1em) solid transparent;
  pointer-events: none;
  content: "";
}

.selectWrap select {
  display: block;
  width: 100%;
  margin: 0;
  padding-block: calc(13 / 16 * 1em);
  padding-inline: calc(20 / 16 * 1em);
  padding-inline-end: calc(46 / 16 * 1em);
  box-shadow: 0 0 0 1px #ccc;
  border: none;
  border-radius: 3px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.1s ease;
  cursor: pointer;
}
.selectWrap select:focus {
  box-shadow: 0 0 0 1px #2360b2, 0 0 0 3px rgb(from #2360b2 r g b / 0.2);
}

/** =10
 * ========================================
 * other selectors
 * ========================================
 */

hr {
  clear: both;
}

/** =12
 * ========================================
 * display
 * ========================================
 */

.displayInlineBlock {
  display: inline-block;
}
.displayInline {
  display: inline;
}
.displayBlock {
  display: block;
}
.displayNone {
  display: none;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 768px) {
  .displayPc {
    display: none;
  }
  .displaySp {
    display: inherit;
  }
}

/* -- >>> styles for medium layout ----- */
@media screen and (min-width: 769px) and (max-width: 959px) {
  .displayPc {
    display: inherit;
  }
  .displaySp {
    display: none;
  }
}

/* -- >>> styles for wide layout ----- */
@media screen and (min-width: 960px) {
  .displayPc {
    display: inherit;
  }
  .displaySp {
    display: none;
  }
}

/** =12
 * ========================================
 * margin
 * ========================================
 */
/*//  * margin-bottom*/
.mb-10 {
  margin-bottom: -10px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb45 {
  margin-bottom: 45px;
}
.mb47 {
  margin-bottom: 47px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb100 {
  margin-bottom: 100px;
}
.mb120 {
  margin-bottom: 120px;
}
.mb135 {
  margin-bottom: 135px;
}
.mb150 {
  margin-bottom: 150px;
}
.mb180 {
  margin-bottom: 180px;
}
.mb05em {
  margin-bottom: 0.5em;
}
.mb10em {
  margin-bottom: 1em;
}
.mb15em {
  margin-bottom: 1.5em;
}
.mb20em {
  margin-bottom: 2em;
}
.mb30em {
  margin-bottom: 3em;
}
.mb40em {
  margin-bottom: 4em;
}

/*//  * margin-top*/
.mt-06 {
  margin-top: -0.6em;
}
.mt-3 {
  margin-top: -3px;
}
.mt-5 {
  margin-top: -5px;
}
.mt-10 {
  margin-top: -10px;
}
.mt-20 {
  margin-top: -20px;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}
.mt70 {
  margin-top: 70px;
}
.mt80 {
  margin-top: 80px;
}
.mt100 {
  margin-top: 100px;
}
.mt120 {
  margin-top: 120px;
}
.mt150 {
  margin-top: 150px;
}
.mt05em {
  margin-top: 0.5em;
}
.mt10em {
  margin-top: 1em;
}
.mt15em {
  margin-top: 1.5em;
}
.mt20em {
  margin-top: 2em;
}
.mt30em {
  margin-top: 3em;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 768px) {
  .spMb0 {
    margin-bottom: 0px;
  }
  .spMb2 {
    margin-bottom: 2px;
  }
  .spMb5 {
    margin-bottom: 5px;
  }
  .spMb10 {
    margin-bottom: 10px;
  }
  .spMb15 {
    margin-bottom: 15px;
  }
  .spMb20 {
    margin-bottom: 20px;
  }
  .spMb25 {
    margin-bottom: 25px;
  }
  .spMb30 {
    margin-bottom: 30px;
  }
  .spMb40 {
    margin-bottom: 40px;
  }
  .spMb50 {
    margin-bottom: 50px;
  }
  .spMb60 {
    margin-bottom: 60px;
  }
  .spMb70 {
    margin-bottom: 70px;
  }
  .spMb80 {
    margin-bottom: 80px;
  }
  .spMb90 {
    margin-bottom: 90px;
  }
  .spMb100 {
    margin-bottom: 100px;
  }
  .spMb120 {
    margin-bottom: 120px;
  }
  .spMb150 {
    margin-bottom: 150px;
  }

  .spMb05em {
    margin-bottom: 0.5em;
  }
  .spMb10em {
    margin-bottom: 1em;
  }
  .spMb15em {
    margin-bottom: 1.5em;
  }
  .spMb20em {
    margin-bottom: 2em;
  }

  .spMt0 {
    margin-top: 0px;
  }
  .spMt20 {
    margin-top: 20px;
  }
}
