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

/**
 * SCSS Information
 * ===============================================================
 *
 * File name: _base.scss
 * Summary:   ベーススタイル
 * Author:    CrEa Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    html & body
 *     =2    box model styles
 *       =2-1     margin
 *       =2-2     padding
 *       =2-3     box-sizing
 *     =3    text styles
 *     =4    img/video styles
 *     =5    link styles
 *     =6    list styles
 *     =7    heading styles
 *     =8    table styles
 *     =9    other selectors
 *     =10   general styles
 *       =10-1    display
 *       =10-2    position
 *       =10-3    float/align
 *       =10-4    form
 *       =10-5    clearfix
 *
 * ===============================================================
*/

/** =1
 * ========================================
 * html & body
 * ========================================
 */

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

body {
  overflow-x: clip;
  box-sizing: border-box;
  background-color: var(--color-base);
  container-type: inline-size;
  color: var(--color-text-bright);
  font-size: 1.4rem;
  font-family: var(--sans-serif-ja);
  font-weight: 400;
  font-variant-ligatures: none;
  letter-spacing: 0;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body *,
body *::before,
body *::after {
  box-sizing: border-box;
}

/** =2
 * ========================================
 * box model styles
 * ========================================
 */

/** =2-1
   * margin
   * ----------------------------------
   */

.mb0 {
  margin-block-end: 0px;
}
.mb5 {
  margin-block-end: 5px;
}
.mb10 {
  margin-block-end: 10px;
}
.mb15 {
  margin-block-end: 15px;
}
.mb20 {
  margin-block-end: 20px;
}
.mb30 {
  margin-block-end: 30px;
}
.mb40 {
  margin-block-end: 40px;
}
.mb50 {
  margin-block-end: 50px;
}
.mb60 {
  margin-block-end: 60px;
}
.mb70 {
  margin-block-end: 70px;
}
.mb80 {
  margin-block-end: 80px;
}
.mb100 {
  margin-block-end: 100px;
}
.mb120 {
  margin-block-end: 120px;
}
.mb150 {
  margin-block-end: 150px;
}

.mb05em {
  margin-block-end: 0.5em;
}
.mb10em {
  margin-block-end: 1em;
}
.mb15em {
  margin-block-end: 1.5em;
}
.mb20em {
  margin-block-end: 2em;
}

@media (max-width: 767px) {
  .mb0sp {
    margin-block-end: 0px;
  }
  .mb5sp {
    margin-block-end: 5px;
  }
  .mb10sp {
    margin-block-end: 10px;
  }
  .mb15sp {
    margin-block-end: 15px;
  }
  .mb20sp {
    margin-block-end: 20px;
  }
  .mb30sp {
    margin-block-end: 30px;
  }
  .mb40sp {
    margin-block-end: 40px;
  }
  .mb50sp {
    margin-block-end: 50px;
  }
  .mb60sp {
    margin-block-end: 60px;
  }
  .mb70sp {
    margin-block-end: 70px;
  }
  .mb80sp {
    margin-block-end: 80px;
  }
  .mb100sp {
    margin-block-end: 100px;
  }
  .mb120sp {
    margin-block-end: 120px;
  }
  .mb150sp {
    margin-block-end: 150px;
  }
}

/** =2-2
   * padding
   * ----------------------------------
   */

.pt0 {
  padding-block-start: 0px;
}
.pt5 {
  padding-block-start: 5px;
}
.pt10 {
  padding-block-start: 10px;
}
.pt15 {
  padding-block-start: 15px;
}
.pt20 {
  padding-block-start: 20px;
}
.pt30 {
  padding-block-start: 30px;
}
.pt40 {
  padding-block-start: 40px;
}
.pt50 {
  padding-block-start: 50px;
}
.pt60 {
  padding-block-start: 60px;
}
.pt70 {
  padding-block-start: 70px;
}
.pt80 {
  padding-block-start: 80px;
}
.pt100 {
  padding-block-start: 100px;
}
.pt120 {
  padding-block-start: 120px;
}
.pt150 {
  padding-block-start: 150px;
}

@media (max-width: 767px) {
  .pt0sp {
    padding-block-start: 0px;
  }
  .pt5sp {
    padding-block-start: 5px;
  }
  .pt10sp {
    padding-block-start: 10px;
  }
  .pt15sp {
    padding-block-start: 15px;
  }
  .pt20sp {
    padding-block-start: 20px;
  }
  .pt30sp {
    padding-block-start: 30px;
  }
  .pt40sp {
    padding-block-start: 40px;
  }
  .pt50sp {
    padding-block-start: 50px;
  }
  .pt60sp {
    padding-block-start: 60px;
  }
  .pt70sp {
    padding-block-start: 70px;
  }
  .pt80sp {
    padding-block-start: 80px;
  }
  .pt100sp {
    padding-block-start: 100px;
  }
  .pt120sp {
    padding-block-start: 120px;
  }
  .pt150sp {
    padding-block-start: 150px;
  }
}

.pt05em {
  padding-block-start: 0.5em;
}
.pt10em {
  padding-block-start: 1em;
}
.pt15em {
  padding-block-start: 1.5em;
}
.pt20em {
  padding-block-start: 2em;
}

sup {
  font-size: 50%;
}

/** =3
 * ========================================
 * text styles
 * ========================================
 */

.fwNormal {
  font-weight: 400;
}
strong,
.strong,
.fwBold {
  font-weight: 700;
}
.fwBlack {
  font-weight: 900;
}

.sans-serif {
  font-family: var(--sans-serif-ja);
}
.serif {
  font-family: var(--serif-ja);
}

.fcMain {
  color: var(--color-main);
}
.fcAttention,
.fcError {
  color: var(--color-error);
}

.fs10 {
  font-size: 1rem;
}
.fs11 {
  font-size: 1.1rem;
}
.fs12 {
  font-size: 1.2rem;
}
.fs13 {
  font-size: 1.3rem;
}
.fs14 {
  font-size: 1.4rem;
}
.fs15 {
  font-size: 1.5rem;
}
.fs16 {
  font-size: 1.6rem;
}
.fs18 {
  font-size: 1.8rem;
}
.fs20 {
  font-size: 2rem;
}
.fs22 {
  font-size: 2.2rem;
}
.fs24 {
  font-size: 2.4rem;
}
.fs26 {
  font-size: 2.6rem;
}
.fs28 {
  font-size: 2.8rem;
}
.fs30 {
  font-size: 3rem;
}
.fs40 {
  font-size: 4rem;
}
.fs50 {
  font-size: 5rem;
}
.fs60 {
  font-size: 6rem;
}

@media screen and (max-width: 599px) {
  .fs10sp {
    font-size: 1rem;
  }
  .fs11sp {
    font-size: 1.1rem;
  }
  .fs12sp {
    font-size: 1.2rem;
  }
  .fs13sp {
    font-size: 1.3rem;
  }
  .fs14sp {
    font-size: 1.4rem;
  }
  .fs15sp {
    font-size: 1.5rem;
  }
  .fs16sp {
    font-size: 1.6rem;
  }
  .fs18sp {
    font-size: 1.8rem;
  }
  .fs20sp {
    font-size: 2rem;
  }
  .fs22sp {
    font-size: 2.2rem;
  }
  .fs24sp {
    font-size: 2.4rem;
  }
  .fs26sp {
    font-size: 2.6rem;
  }
  .fs28sp {
    font-size: 2.8rem;
  }
  .fs30sp {
    font-size: 3rem;
  }
  .fs40sp {
    font-size: 4rem;
  }
  .fs50sp {
    font-size: 5rem;
  }
  .fs60sp {
    font-size: 6rem;
  }
}

.fs50per {
  font-size: 50%;
}
.fs60per {
  font-size: 60%;
}
.fs70per {
  font-size: 70%;
}
.fs80per {
  font-size: 80%;
}
.fs90per {
  font-size: 90%;
}
.fs110per {
  font-size: 110%;
}
.fs120per {
  font-size: 120%;
}
.fs130per {
  font-size: 130%;
}
.fs140per {
  font-size: 140%;
}
.fs150per {
  font-size: 150%;
}

.lh10 {
  line-height: 1;
}
.lh12 {
  line-height: 1.2;
}
.lh14 {
  line-height: 1.4;
}
.lh16 {
  line-height: 1.6;
}
.lh18 {
  line-height: 1.8;
}
.lh20 {
  line-height: 2;
}

.ls05 {
  letter-spacing: 0.05em;
}
.ls10 {
  letter-spacing: 0.1em;
}
.ls20 {
  letter-spacing: 0.2em;
}
.ls-05 {
  letter-spacing: -0.05em;
}
.ls-10 {
  letter-spacing: -0.1em;
}
.ls-20 {
  letter-spacing: -0.2em;
}

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

/** =4
 * ========================================
 * img/video styles
 * ========================================
 */

img,
video {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

.imageReplace {
  /* スコットケラムメソッド */
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

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

a,
a:link,
a:visited,
a:hover,
a:active {
  color: currentColor;
  text-decoration: none;
  outline: none;
}
a:not([class]),
a:not([class]):link,
a:not([class]):visited,
a:not([class]):hover,
a:not([class]):active {
  text-decoration: underline;
}
a.linkHasIcon {
  display: inline-flex;
  align-items: center;
  column-gap: calc(8 / 14 * 1em);
  color: currentColor;
  text-decoration: underline;
  line-height: 1.4;
}
a.linkHasIcon [class*="icon-"] {
  width: calc(24 / 14 * 1em);
  height: calc(24 / 14 * 1em);
}
a.underline {
  text-decoration: underline;
}
a.alpha {
  display: inline-block;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  a:not([class]):hover,
  a.linkHasIcon:hover,
  a.underline:hover {
    text-decoration: none;
  }
  a.alpha:hover {
    opacity: var(--opacity-hover);
  }
}

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

ul li {
  list-style-type: none;
}
ol li {
  list-style-type: decimal;
}
ul.disc,
ol {
  padding-inline-start: 1.2em;
}
ul.disc li {
  list-style-type: disc;
}

.listMark {
  display: grid;
  row-gap: calc(4 / 16 * 1em);
  font-size: clamp(1.4rem, calc(16 / 768 * 100cqw), 1.6rem);
  line-height: 1.6;
}
.listMark li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: calc(8 / 16 * 1em);
}
.listMark li::before {
  position: relative;
  inset-block-start: calc(9 / 16 * 1em);
  width: calc(8 / 16 * 1em);
  height: calc(8 / 16 * 1em);
  rotate: 45deg;
  background-color: var(--color-main);
  content: "";
}

.listNotice {
  line-height: 1.4;
}
.listNotice li {
  position: relative;
  padding-inline-start: 1em;
}
.listNotice li::before {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  content: "※";
}

/** =7
 * ========================================
 * heading styles
 * ========================================
 */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

/** =8
 * ========================================
 * table styles
 * ========================================
 */

table {
  border-collapse: collapse;
  width: 100%;
}

th {
  font-weight: bold;
}

/** =9
 * ========================================
 * other selectors
 * ========================================
 */

hr {
  clear: both;
}

/** =10
 * ========================================
 * general styles
 * ========================================
 */

/** =10-1
 * display
 * ----------------------------------
 */

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

@media (max-width: 767px) {
  .displayPc {
    display: none;
  }
  .displaySp {
    display: inherit;
  }
}
@media (min-width: 768px) {
  .displayPc {
    display: inherit;
  }
  .displaySp {
    display: none;
  }
}

/** =10-2
   * position
   * ----------------------------------
   */

.posRelative {
  position: relative;
}
.posAbsolute {
  position: absolute;
}
.posFixed {
  position: fixed;
}
.posStatic {
  position: static;
}

/** =10-3
   * float/align
   * ----------------------------------
   */

.floatLeft {
  float: left;
}
.floatRight {
  float: right;
}

.clearLeft {
  clear: left;
}
.clearRight {
  clear: right;
}
.clearBoth {
  clear: both;
}

.txtLeft {
  text-align: left;
}
.txtCenter {
  text-align: center;
}
.txtRight {
  text-align: right;
}
.inlineCenter {
  max-inline-size: max-content;
  margin-inline: auto;
}

.verticalTop {
  vertical-align: top;
}
.verticalMiddle {
  vertical-align: middle;
}
.verticalBottom {
  vertical-align: bottom;
}

@media screen and (max-width: 599px) {
  .txtLeftSp {
    text-align: left;
  }
  .txtCenterSp {
    text-align: center;
  }
  .txtRightSp {
    text-align: right;
  }
}

/** =10-4
 * form
 * ----------------------------------
 */

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: var(--border-radius-small);
  box-shadow: inset 0 0 0 1px var(--color-border-pale);
  background: var(--color-base-bright);
  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 var(--color-main-deep),
    0 0 0 3px rgb(from var(--color-main-deep) r g b / 0.2);
}

input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="email"]:disabled,
input[type="tel"]:disabled,
input[type="url"]:disabled,
input[type="search"]:disabled,
input.txt:disabled,
textarea:disabled {
  background-color: rgba(from var(--color-border-pale) r g b / 0.7);
  cursor: not-allowed;
}

/* placeholder */
::placeholder {
  color: rgb(from var(--color-text) r g b / 0.4);
}
::-webkit-input-placeholder {
  /* Chrome */
  color: rgb(from var(--color-text) r g b / 0.4);
}
::-moz-placeholder {
  /* Firefox */
  color: rgb(from var(--color-text) r g b / 0.4);
}
:-ms-input-placeholder {
  /* IE */
  color: rgb(from var(--color-text) 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(3 / 16 * 1em);
  inset-inline-start: 0;
  width: calc(20 / 16 * 1em);
  height: calc(20 / 16 * 1em);
  border: 1px solid var(--color-border-pale);
  border-radius: 50%;
  box-sizing: border-box;
  background-color: var(--color-base-bright);
  transition: all 0.1s ease;
}
.radioWrap .text::after {
  opacity: 0;
  inset-block-start: calc(13 / 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: var(--border-radius-round);
  background-color: var(--color-main);
  transition: opacity 0.1s ease;
}
.radioWrap input[type="radio"]:checked + .text::after {
  opacity: 1;
}

.radioWrap input[type="radio"]:focus + .text::before {
  border-color: var(--color-main-deep);
  box-shadow: 0 0 0 3px rgb(from var(--color-main) 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: var(--border-radius-small);
  box-shadow: 0 0 0 1px var(--color-border-pale);
  box-sizing: border-box;
  background-color: var(--color-base-bright);
  transition: all 0.1s ease;
}
.checkboxWrap .text::after {
  opacity: 0;
  inset-block-start: calc(13 / 16 * 1em);
  inset-inline-start: calc(10 / 16 * 1em);
  rotate: -45deg;
  translate: calc(-50% -50%);
  width: calc(12 / 16 * 1em);
  height: calc(8 / 16 * 1em);
  border-block-end: 2px solid var(--color-main);
  border-inline-start: 2px solid var(--color-main);
  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 var(--color-main-deep),
    0 0 0 3px rgb(from var(--color-main) 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 var(--color-text);
  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 var(--color-border-pale);
  border: none;
  border-radius: var(--border-radius-small);
  box-sizing: border-box;
  background: var(--color-base-bright);
  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 var(--color-main-deep),
    0 0 0 3px rgb(from var(--color-main-deep) r g b / 0.2);
}

/** =10-5
   * clearfix
   * ----------------------------------
   */

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