@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%;
  line-height: 1.5;
  color: #333;
  font-size: 16px; /* CSS3未対応ブラウザ対策 */
  font-size: 1.6rem; /* CSS3単位 実質12.8px */
  word-break: break-all;
  font-family: Noto Sans JP, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro,
    メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  box-sizing: border-box;
}

/* -- >>> styles for wide layout ----- */
/** =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;
}
.fcWhite {
  color: #fff;
}
.w100per {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .spTxt_left {
    text-align: left;
  }
}

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

strong {
  font-weight: bold;
  color: #e60012;
}
.fwBold {
  font-weight: bold;
}
.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;
}
.txtUnderline {
  text-decoration: underline;
}

@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;
  }
  .fsSp28 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.fw400 {
  font-weight: 400;
}
.fw700 {
  font-weight: 700;
}
.fw900 {
  font-weight: 900;
}

.fcContent {
  color: #8cd9f7;
}
.fcTitle {
  color: #003f76;
}
.fcEdit {
  color: #00abd4;
}
.fcConfig {
  color: #e70020;
}
.fcPrivacy {
  color: #fff666;
}
.fcCap {
  color: #e70020;
}
.fcGray {
  color: #666666;
}
.bgContent {
  background-color: #8cd9f7;
}
.bgTitle {
  background-color: #003f76;
}
.bgEdit {
  background-color: #00abd4;
}
.bgConfig {
  background-color: #e70020;
}
.bgPrivacy {
  background-color: #fff666;
}
.bgWh {
  background-color: #ffffff;
}
.bgGray {
  background: #dfe4e7;
}

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

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: underline;
  outline: none;
}
a {
  color: #003b83;
}
/* a:hover {
  opacity: .6;
} */

a.opacity,
input.opacity,
button.opacity {
  transition: all 0.15s ease;
}
a.opacity:hover,
input.opacity:hover,
button.opacity:hover {
  opacity: 0.6;
}

/** =6
 * ========================================
 * list styles
 * ========================================
 */

ul li,
ol li {
  list-style-type: none;
}

ul.disc {
  display: grid;
  gap: calc(4 / 16 * 1em);
  list-style-type: none;
}
ul.disc li {
  position: relative;
  padding-left: calc(20 / 16 * 1em);
}
ul.disc li::before {
  position: absolute;
  top: 0;
  left: 0;
  margin-block-start: calc(10 / 16 * 1em);
  margin-inline-start: calc(3 / 16 * 1em);
  width: calc(6 / 16 * 1em);
  height: calc(6 / 16 * 1em);
  border-radius: 50%;
  background-color: #000;
  content: "";
}

ol.numberList {
  display: grid;
  gap: calc(8 / 16 * 1em);
  counter-reset: numberList;
  line-height: 1.6;
}
ol.numberList > li {
  position: relative;
  padding-left: calc(24 / 16 * 1em);
  counter-increment: numberList;
}
ol.numberList > li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(16 / 16 * 1em);
  font-weight: bold;
  content: counter(numberList) ".";
}

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

[id="contents"] form span.strong {
  color: #e60012;
  font-weight: bold;
}
[id="contents"] form .error {
  padding-top: 0.5em;
  color: #e70020;
  font-weight: bold;
  font-size: 1.2rem;
}
[id="contents"] form .required {
  margin-left: 0.5em;
  color: #e70020;
  font-weight: bold;
  font-size: 1.2rem;
}
[id="contents"] form input {
  max-width: 100%;
  box-sizing: border-box;
}

[id="contents"] .list_btn {
  position: relative;
  overflow: hidden;
}

[id="contents"] .btn a,
[id="contents"] .btn input,
[id="contents"] .btn button,
[id="contents"] .list_btn ul li a,
[id="contents"] .list_btn ul li input,
[id="contents"] .list_btn ul li button {
  display: block;
  /* min-width: 410px; */
  max-width: 410px;
  width: 100%;
  background: #e70020;
  text-align: center;
  padding: 20px 40px;
  margin: 0 auto;
  border-radius: 15px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  font-size: 24px;
  border: none;
  box-shadow: 0px 0px 0px 3px #e70020 inset, 0px 0px 0px 6px #ffffff inset;
  transition: all 0.15s ease;
}

[id="contents"] .list_btn ul li input.editBack,
[id="contents"] .list_btn ul li button.editBack {
  background: #00abd4;
  box-shadow: 0px 0px 0px 3px #00abd4 inset, 0px 0px 0px 6px #ffffff inset;
}

[id="contents"] .btn a.btn_glay,
[id="contents"] .btn input.btn_glay,
[id="contents"] .btn button.btn_glay,
[id="contents"] .list_btn ul li a.btn_glay,
[id="contents"] .list_btn ul li input.btn_glay,
[id="contents"] .list_btn ul li button.btn_glay {
  display: block;
  width: 240px;
  margin: 40px auto 10px auto;
  background: #e60012;
  text-align: center;
  padding: 10px 30px;
  border: none;
  border-radius: 7px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

/*[id="contents"] .btn a,*/

[id="contents"] form dl dt span.red {
  color: #cc0000;
}
[id="contents"] .orange .table .formEntry dl dt {
  background: #fd973f;
}

[id="contents"] .table .formEntry ul {
  margin: 0;
}

/* -- >>> styles for wide layout ----- */

[id="contents"] .table .formEntry dt {
  width: 25%;
}

[id="contents"] .table .formEntry dl {
  margin: 0;
}

[id="contents"] .table .formEntry dl dd {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-grow: 1;
  width: 75%;
  background: #fff;
}

[id="contents"] .table .formEntry dl dt,
[id="contents"] .table .formEntry dl dd {
  vertical-align: middle;
}

[id="contents"] dl dd input[type="text"],
[id="contents"] dl dd input[type="tel"],
[id="contents"] dl dd input[type="number"] {
  width: calc((100% - 100px) / 2);
  padding: calc(15 / 16 * 1em) calc(20 / 16 * 1em);
  border: 1px solid #aaaaaa;
  border-radius: 4px;
  font-size: 16px;
}

[id="contents"] dl dd input[type="text"]:first-child,
[id="contents"] dl dd input[type="tel"]:first-child,
[id="contents"] dl dd input[type="number"]:first-child {
  margin-right: 10px;
}
[id="contents"] dl dd input::placeholder {
  color: #aaaaaa;
  font-weight: 200;
}

[id="contents"] dl dd input[type="file"] {
  border: none;
}

.textareaWide {
  width: 90%;
}

@media screen and (max-width: 768px) {
  [id="contents"] .table .formEntry dt {
    width: 100%;
    margin-bottom: 15px;
  }
  [id="contents"] .table .formEntry dl dd {
    width: 100%;
  }
}

/* select */
.wrapSelect {
  display: inline-block;
  position: relative;
}
.wrapSelect.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.wrapSelect::before,
.wrapSelect::after {
  display: block;
  position: absolute;
  font-size: 16px;
  font-size: 1.6rem;
  content: "";
  pointer-events: none;
}
.wrapSelect::before {
  top: 1px;
  right: 1px;
  bottom: 1px;
  width: 2.75em;
  border-radius: 0 4px 4px 0;
  /* background-color: #fff; */
  background-color: transparent;
}
.wrapSelect::after {
  top: 50%;
  right: 1em;
  margin-top: -5px;
  border-top: 9px solid #b0bbbf;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
.wrapSelect.large::after {
  margin-top: -5px;
  border-top-width: 10px;
  border-right-width: 7px;
  border-left-width: 7px;
}
.wrapSelect select {
  display: block;
  width: 100%;
  padding: calc(15 / 16 * 1em) calc(20 / 16 * 1em);
  padding-right: 2.75em;
  border: 1px solid #b0bbbf;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #fff;
  color: inherit;
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
_:-ms-lang(x)::-ms-backdrop,
.wrapSelect select {
  padding-right: 1.25em;
}
.wrapSelect.large select {
  padding-top: 0.4em;
  padding-bottom: 0.4em;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 767px) {
  .wrapSelect.large {
    font-size: 1.8rem;
  }
  .wrapSelect select {
    min-width: 105px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 768px) {
  .wrapSelect.large {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .wrapSelect select {
    min-width: 140px;
  }
}

/** =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;
  }
}

.fcRed {
  color: red;
}
.lh18 {
  line-height: 1.8em;
}
.lh19 {
  line-height: 1.9em;
}
.lh20 {
  line-height: 2em;
}
.lh21 {
  line-height: 2.1em;
}

.w100 {
  width: 100%;
}

.boxLogin .btn,
.boxLogin .btn:link,
.boxLogin .btn:visited,
.boxLogin .btn:hover,
.boxLogin .btn:active {
  display: inline-block;
  padding: 1em 2.5em;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #1baad1;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  cursor: pointer;
}
.boxLogin .btn.yellow {
  border: 2px solid #1baad1;
  background-color: #ffff4d;
  color: #1baad1;
}
.btn.gray {
  background-color: #ebf0f2;
  color: #333;
}
.btn.gray.hasBorder {
  border: 1px solid #b0bbbf;
}
.btn.disabled {
  background-color: #ebf0f2;
  color: #888;
}
.btn.yellow.disabled {
  border-color: #888;
}

.btn.small {
  font-size: 12px;
  font-size: 1.2rem;
}
.btn.x-small {
  padding: 0.3em 1em 0.2em;
  border-radius: 2px;
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
}

.btn.fixedWidth {
  min-width: 292px;
}
.btn.small.fixedWidth {
  min-width: 216px;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 768px) {
  .boxLogin .btn,
  .boxLogin .btn:link,
  .boxLogin .btn:visited,
  .boxLogin .btn:hover,
  .boxLogin .btn:active {
    font-size: 1.4rem;
  }
  .btn.small,
  .btn.x-small {
    font-size: 1.2rem;
  }

  .btn.fixedWidth {
    min-width: 70%;
  }
  .btn.small.fixedWidth {
    min-width: initial;
  }
  [id="contents"] dl dd input[type="text"].spInput,
  [id="contents"] dl dd input[type="tel"].spInput {
    width: 100%;
    margin-right: 0;
  }
}

@media screen and (max-width: 414px) {
  [id="contents"] .btn a,
  [id="contents"] .btn input,
  [id="contents"] .list_btn ul li a,
  [id="contents"] .list_btn ul li input {
    font-size: 18px;
  }
}
