@charset "UTF-8";

/*basic*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  margin: 0;
  font-family: serif;
}

html {
  font-size: 100px;
}

body {
  /* font-family: NotoSansJP Regular */
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.26rem;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.05em;
  -webkit-tap-highlight-color: transparent;
}


h1, h2, h3, h4, h5, h6, figure {
  margin: 0;
  font-weight: 600;
}
p {
  margin: 0;
}

button {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}

figure img {
  width: 100%;
  max-width: 100%;
}

iframe, img {
  vertical-align: top;
  max-width: 100%;
}

ul, ol {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:focus {
  text-decoration: none;
}

body.s-scroll-disabled {
  position: fixed;
  overflow: hidden;
  left: 0;
  right: 0;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  body.s-scroll-disabled_sp {
    position: fixed;
    overflow: hidden;
    left: 0;
    right: 0;
  }
}

@media screen and (max-width: 749px) {
  html {
    font-size: 13.333333333333334vw;
  }
}

@media screen and (min-width:  1100px) {
/* @media screen and (min-width:  768px) { */
  body {
    font-size: 0.16rem;
    line-height: 1.75;
  }
}
/* @media screen and (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
} */
/*end basic*/

/*helpers*/
.h-clear:after {
  content: '';
  display: block;
  clear: both;
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-pc-only {
    display: none !important;
  }
}

.h-txtIndent {
  padding-left: 1em;
  text-indent: -1em;
}

.h-ctnBefore:before,
.h-ctnAfter:after {
  content: '';
}

.h-hide {
  display: none !important;
}

.h-fw300 { font-weight: 300; }
.h-fw400 { font-weight: 400; }
.h-fw500 { font-weight: 500; }
.h-fw600 { font-weight: 600; }
.h-fw700 { font-weight: 700; }
.h-fw900 { font-weight: 900; }

.h-fntYuMincho {
  font-family: "YuMincho", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "メイリオ", Meiryo, serif;
}
.h-fntNotoSansJp {
  font-family: 'Noto Sans JP', sans-serif;
}
.h-fntPoppins {
  font-family: 'Poppins', sans-serif;
}
.h-fntPlayfairDisplay {
  font-family: 'Playfair Display', serif;
}
.h-fntSenobiGothic {
  font-family: 'senobi-gothic', sans-serif;
}

.h-fntStyleItalic {
  font-style: italic;
}


.h-dspBlock {
  display: block;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-dspBlock_sp {
    display: block;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-dspBlock_pc {
    display: block;
  }
}

.h-dspFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-dspFlex_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-dspFlex_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.h-dspInline {
  display: inline;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-dspInline_sp {
    display: inline;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-dspInline_pc {
    display: inline;
  }
}

.h-dspInlineBlock {
  display: inline-block;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-dspInlineBlock_sp {
    display: inline-block;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-dspInlineBlock_pc {
    display: inline-block;
  }
}

.h-dspGrid {
  display: -ms-grid;
  display: grid;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-dspGrid_sp {
    display: -ms-grid;
    display: grid;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-dspGrid_pc {
    display: -ms-grid;
    display: grid;
  }
}

.h-posFixed {
  position: fixed;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-posFixed_sp {
    position: fixed;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-posFixed_pc {
    position: fixed;
  }
}

.h-posAbsolute {
  position: absolute;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-posAbsolute_sp {
    position: absolute;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-posAbsolute_pc {
    position: absolute;
  }
}
.h-posRelative {
  position: relative;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-posRelative_sp {
    position: relative;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-posRelative_pc {
    position: relative;
  }
}

.h-txtLeft {
  text-align: left;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-txtLeft_sp {
    text-align: left;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-txtLeft_pc {
    text-align: left;
  }
}

.h-txtRight {
  text-align: right;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-txtRight_sp {
    text-align: right;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-txtRight_pc {
    text-align: right;
  }
}

.h-txtCenter {
  text-align: center;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-txtCenter_sp {
    text-align: center;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-txtCenter_pc {
    text-align: center;
  }
}

.h-txtJustify {
  text-align: justify;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-txtJustify_sp {
    text-align: justify;
  }
}

@media screen and (min-width: 768px) {
  .h-txtJustify_pc {
    text-align: justify;
  }
}

.h-fltLeft {
  float: left;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-fltLeft_sp {
    float: left;
  }
}


@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-fltLeft_pc {
    float: left;
  }
}

.h-fltRight {
  float: right;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-fltRight_sp {
    float: right;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-fltRight_pc {
    float: right;
  }
}

.h-flxWrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-flxWrap_sp {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-flxWrap_pc {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.h-flxRow {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-flxRow_sp {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-flxRow_pc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.h-flxRowReverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-flxRowReverse_sp {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-flxRowReverse_pc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.h-flxColumns {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-flxColumns_sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-flxColumns_pc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.h-flxJustifyCenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-flxJustifyCenter_sp {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-flxJustifyCenter_pc {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.h-flxAlignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-flxAlignCenter_sp {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-flxAlignCenter_pc {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.h-flxAlignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-flxAlignEnd_sp {
    -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  }
}
@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-flxAlignEnd_pc {
    -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  }
}

.h-ovfHidden {
  overflow: hidden;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-ovfHidden_sp {
    overflow: hidden;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-ovfHidden_pc {
    overflow: hidden;
  }
}

.h-ovfAuto {
  overflow: auto;
}

@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  .h-ovfAuto_sp {
    overflow: auto;
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .h-ovfAuto_pc {
    overflow: auto;
  }
}

/* media for hoverable screens only */
@media screen and (hover: hover) {
  .h-hoverOp70:hover {
    opacity: 0.7;
  }
}

/* end helpers*/


/* layouts */

.l-container {
  width: 10.8rem;

  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}
.l-container.l-container--narrow {
  width: 9.9rem;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}
.l-container.l-container--wide {
  width: 12.4rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}
.l-container.l-cointainer--ultrawide {
  width: 13.08rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.l-row.l-row--2col {
  grid-template-columns: repeat(2, 1fr);
}
.l-row.l-row--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1099px) {
/* @media screen and (max-width: 767px) { */
  
  .l-row.l-row--2col_sp {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-row.l-row--3col_sp {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1100px) {
/* @media screen and (min-width: 768px) { */
  .l-row.l-row--2col_pc {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-row.l-row--3col_pc {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* end layouts*/