@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/* ================================================
  変数をまとめるファイル
  ================================================ */
/* -----------------------------------------------
  @use 'variables' as var;　←ページ上部に追加

  [使用例]
  .button {
    color: var.$main-txt-color;
  }
------------------------------------------------- */
/*--------------------------------------------------------------
  font-size vw変換
-------------------------------------------------------------- */
/* ================================================
  メディアクエリをまとめるファイル
  ================================================ */
/* -----------------------------------------------
  @use 'mixin';　←ページ上部に追加

  [使用例]
  .button {
    padding: 8px;

    @include mix.sp {
      padding: 4px;
    }

    @include mix.pc {
      padding: 12px;
    }

    @include mix.hover {
      opacity: .7;
    }
  }
------------------------------------------------- */
/*---------------------------------------------
 Splide
---------------------------------------------*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/*---------------------------------------------
 generic  class
---------------------------------------------*/
.txt-b {
  font-weight: bold !important;
}

.txt-n {
  font-weight: normal !important;
}

.layout-c {
  text-align: center !important;
}

.layout-l {
  text-align: left !important;
}

.layout-r {
  text-align: right !important;
}

.ov {
  overflow: hidden !important;
}

.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

/*---------------------------------------------
 base margin
---------------------------------------------*/
.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt32 {
  margin-top: 32px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt48 {
  margin-top: 48px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt56 {
  margin-top: 56px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt64 {
  margin-top: 64px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt200 {
  margin-top: 200px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml8 {
  margin-left: 8px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml16 {
  margin-left: 16px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml24 {
  margin-left: 24px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml32 {
  margin-left: 32px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml48 {
  margin-left: 48px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml56 {
  margin-left: 56px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml64 {
  margin-left: 64px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr8 {
  margin-right: 8px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr16 {
  margin-right: 16px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr24 {
  margin-right: 24px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr32 {
  margin-right: 32px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr48 {
  margin-right: 48px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr56 {
  margin-right: 56px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr64 {
  margin-right: 64px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb16 {
  margin-bottom: 16px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb32 {
  margin-bottom: 32px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb48 {
  margin-bottom: 48px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb56 {
  margin-bottom: 56px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb64 {
  margin-bottom: 64px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt8 {
  padding-top: 8px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt16 {
  padding-top: 16px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt24 {
  padding-top: 24px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt32 {
  padding-top: 32px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt48 {
  padding-top: 48px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt56 {
  padding-top: 56px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt64 {
  padding-top: 64px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl8 {
  padding-left: 8px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl16 {
  padding-left: 16px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl24 {
  padding-left: 24px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl32 {
  padding-left: 32px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl48 {
  padding-left: 48px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl56 {
  padding-left: 56px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pl64 {
  padding-left: 64px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr8 {
  padding-right: 8px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr16 {
  padding-right: 16px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr24 {
  padding-right: 24px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr32 {
  padding-right: 32px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr48 {
  padding-right: 48px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr56 {
  padding-right: 56px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr64 {
  padding-right: 64px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb8 {
  padding-bottom: 8px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb16 {
  padding-bottom: 16px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb24 {
  padding-bottom: 24px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb32 {
  padding-bottom: 32px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb48 {
  padding-bottom: 48px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb56 {
  padding-bottom: 56px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb64 {
  padding-bottom: 64px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.w5p {
  width: 5% !important;
}

.w8p {
  width: 8% !important;
}

.w10p {
  width: 10% !important;
}

.w11p {
  width: 11% !important;
}

.w12p {
  width: 12% !important;
}

.w15p {
  width: 15% !important;
}

.w16p {
  width: 16% !important;
}

.w20p {
  width: 20% !important;
}

.w24p {
  width: 24% !important;
}

.w25p {
  width: 25% !important;
}

.w30p {
  width: 30% !important;
}

.w32p {
  width: 32% !important;
}

.w35p {
  width: 35% !important;
}

.w40p {
  width: 40% !important;
}

.w45p {
  width: 45% !important;
}

.w48p {
  width: 48% !important;
}

.w50p {
  width: 50% !important;
}

.w55p {
  width: 55% !important;
}

.w56p {
  width: 56% !important;
}

.w60p {
  width: 60% !important;
}

.w64p {
  width: 64% !important;
}

.w65p {
  width: 65% !important;
}

.w70p {
  width: 70% !important;
}

.w75p {
  width: 75% !important;
}

.w80p {
  width: 80% !important;
}

.w85p {
  width: 85% !important;
}

.w90p {
  width: 90% !important;
}

.w95p {
  width: 95% !important;
}

.w100p {
  width: 100% !important;
}

.wmax {
  width: 100% !important;
  height: auto !important;
}

.fz10 {
  font-size: 1rem;
}

.fz11 {
  font-size: 1.1rem;
}

.fz12 {
  font-size: 1.2rem;
}

.fz14 {
  font-size: 1.4rem;
}

.fz16 {
  font-size: 1.6rem;
}

.fz18 {
  font-size: 1.8rem;
}

.fz20 {
  font-size: 2rem;
}

.fz22 {
  font-size: 2.2rem;
}

.fz24 {
  font-size: 2.4rem;
}

.fz26 {
  font-size: 2.6rem;
}

.fz28 {
  font-size: 2.8rem;
}

.fz30 {
  font-size: 3rem;
}

.fz32 {
  font-size: 3.2rem;
}

.fz34 {
  font-size: 3.4rem;
}

.fz36 {
  font-size: 3.6rem;
}

.fz38 {
  font-size: 3.8rem;
}

.fz40 {
  font-size: 4rem;
}

.fz42 {
  font-size: 4.2rem;
}

.fz44 {
  font-size: 4.4rem;
}

.fz46 {
  font-size: 4.6rem;
}

.fz48 {
  font-size: 4.8rem;
}

.max1280 {
  max-width: 1280px !important;
  margin: 0 auto !important;
}

.max1024 {
  max-width: 1024px !important;
  margin: 0 auto !important;
}

.max960 {
  max-width: 960px !important;
  margin: 0 auto !important;
}

.max820 {
  max-width: 820px !important;
  margin: 0 auto !important;
}

.max720 {
  max-width: 720px !important;
  margin: 0 auto !important;
}

.max700 {
  max-width: 700px !important;
  margin: 0 auto !important;
}

.max640 {
  max-width: 640px !important;
  margin: 0 auto !important;
}

.max600 {
  max-width: 600px !important;
  margin: 0 auto !important;
}

.max500 {
  max-width: 500px !important;
  margin: 0 auto !important;
}

.max400 {
  max-width: 400px !important;
  margin: 0 auto !important;
}

.max300 {
  max-width: 300px !important;
  margin: 0 auto !important;
}

.max200 {
  max-width: 200px !important;
  margin: 0 auto !important;
}

.mg-a {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* common module */
body {
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #383838;
  line-height: 2;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

body,
#wrap {
  width: 100%;
  position: relative;
}

#wrap {
  overflow: hidden;
  height: 100%;
  min-height: 100vh;
}

.contents {
  position: relative;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: inherit;
  text-align: left;
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  color: #383838;
  cursor: pointer;
  transition: all 0.3s ease;
}

a {
  transition: all 0.3s ease;
  text-decoration: none;
  color: #383838;
}

.btn-wrap {
  text-align: center;
  margin-top: 50px;
}

.btn-cmn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #00C7B6;
  padding: 10px;
  width: 364px;
  min-height: 60px;
  border-radius: 20px;
  box-shadow: 0 4px 0 #029B8E;
  font-size: 41px;
  font-weight: 900;
}
@media (any-hover: hover) {
  .btn-cmn:hover {
    opacity: 0.7;
  }
}
.btn-cmn .mark {
  display: inline-block;
  transform: rotate(10deg);
  margin-left: 15px;
}
.btn-cmn.ver-q {
  border: 2px solid #354BB7;
  color: #354BB7;
  background-color: #fff;
  font-size: 3rem;
  width: 320px;
  line-height: 1.4666666667;
  box-shadow: 0 4px 0 #354BB7, 4px 4px 0 #354BB7;
}
.btn-cmn.ver-a {
  font-size: 3rem;
  width: 210px;
  line-height: 1.4666666667;
  box-shadow: 0 4px 0 #029B8E, 4px 4px 0 #029B8E, 4px 0 0 #029B8E;
  letter-spacing: 0.2em;
  padding-top: 11px;
  padding-bottom: 11px;
}
.btn-cmn.ver-a .mark {
  font-size: 3.2rem;
  margin-left: -4px;
  margin-right: -28px;
}
.btn-cmn.ver-a ruby[data-ruby]::before {
  font-size: 1.4rem;
  font-weight: bold;
}

.header-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  min-width: 190px;
  min-height: 66px;
  background-color: #FFDB55;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
}
@media (any-hover: hover) {
  .header-btn:hover {
    opacity: 0.7;
  }
}

img {
  max-width: 100%;
}

.inner-wrap {
  width: 1290px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 100%;
}

ruby[data-ruby] {
  position: relative;
}
ruby[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  left: -3em;
  right: -3em;
  bottom: 100%;
  margin-bottom: -0.2em;
  transform-origin: bottom center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
}
ruby[data-ruby] rt {
  display: none;
}

.lts-0 {
  letter-spacing: 0 !important;
}

.h2ttl-wrap .h2ttl {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 50px;
  min-width: 180px;
  padding: 6px 20px 6px 6px;
  font-size: 2.3rem;
  font-weight: bold;
  color: #354BB7;
  margin-bottom: 20px;
}
.h2ttl-wrap .h2ttl img {
  width: 47px;
  border-radius: 47px;
  margin-left: 10px;
  margin-right: -10px;
}
.h2ttl-wrap .h2ttl img.icn-01 {
  margin-left: 0;
  margin-right: 0;
}
.h2ttl-wrap .h2ttl .txt {
  padding-top: 1rem;
  flex: 1;
  line-height: 1.2;
}
.h2ttl-wrap .h2ttl ruby[data-ruby] {
  position: relative;
}
.h2ttl-wrap .h2ttl ruby[data-ruby]::before {
  font-size: 1rem;
  transform: scale(0.9);
}

.bg-cmn {
  background: #FFDB55 url(/assets/images/bg_02.png) no-repeat right top/100% auto;
}

/* /common module */
/* header common */
.header-cmn {
  width: 100%;
  padding-top: 20px;
  margin-bottom: 35px;
}
.header-cmn .header-inr {
  display: flex;
  justify-content: flex-end;
}
.header-cmn .h2ttl-wrap .h2ttl {
  margin-bottom: 0;
}
.header-cmn .btn-wrap {
  margin-top: 0;
}

/* /header common */
/* flex */
.flx-box {
  display: flex;
}
.flx-box.gap-l {
  gap: 56px;
}
.flx-box.gap-m {
  gap: 32px;
}
.flx-box.gap-s {
  gap: 20px;
}
.flx-box .flx1 {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .flx-box.sp-column {
    flex-direction: column;
  }
  .flx-box.gap-l {
    gap: 28px;
  }
  .flx-box.gap-m {
    gap: 16px;
  }
  .flx-box.gap-s {
    gap: 10px;
  }
}

.jc-s {
  justify-content: flex-start;
}

.jc-c {
  justify-content: center;
}

.jc-e {
  justify-content: flex-end;
}

.ai-s {
  align-items: flex-start;
}

.ai-c {
  align-items: center;
}

.ai-e {
  align-items: flex-end;
}

/* /flex */
/*==========================================================================================================
hover
==========================================================================================================*/
/*==========================================================================================================
PC Only
==========================================================================================================*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
  /* common module */
  .header-overlay,
  .sp-menu-btn {
    display: none;
  }
  /* /common module */
}
/*==========================================================================================================
SP Only
==========================================================================================================*/
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  /*---------------------------------------------
    generic  class
  ---------------------------------------------*/
  .sp-txt-b {
    font-weight: bold !important;
  }
  .sp-txt-n {
    font-weight: normal !important;
  }
  .sp-layout-c {
    text-align: center !important;
  }
  .sp-layout-l {
    text-align: left !important;
  }
  .sp-layout-r {
    text-align: right !important;
  }
  .sp-fl {
    float: left !important;
  }
  .sp-fr {
    float: right !important;
  }
  .sp-fz10 {
    font-size: 1rem !important;
  }
  .sp-fz11 {
    font-size: 1.1rem !important;
  }
  .sp-fz12 {
    font-size: 1.2rem !important;
  }
  .sp-fz14 {
    font-size: 1.4rem !important;
  }
  .sp-fz16 {
    font-size: 1.6rem !important;
  }
  .sp-fz18 {
    font-size: 1.8rem !important;
  }
  .sp-fz20 {
    font-size: 2rem !important;
  }
  .sp-fz22 {
    font-size: 2.2rem !important;
  }
  .sp-fz24 {
    font-size: 2.4rem !important;
  }
  .sp-fz26 {
    font-size: 2.6rem !important;
  }
  .sp-fz28 {
    font-size: 2.8rem !important;
  }
  .sp-fz30 {
    font-size: 3rem !important;
  }
  .sp-fz32 {
    font-size: 3.2rem !important;
  }
  .sp-fz34 {
    font-size: 3.4rem !important;
  }
  .sp-fz36 {
    font-size: 3.6rem !important;
  }
  .sp-fz38 {
    font-size: 3.8rem !important;
  }
  .sp-fz40 {
    font-size: 4rem !important;
  }
  .sp-fz42 {
    font-size: 4.2rem !important;
  }
  .sp-fz44 {
    font-size: 4.4rem !important;
  }
  .sp-fz46 {
    font-size: 4.6rem !important;
  }
  .sp-fz48 {
    font-size: 4.8rem !important;
  }
  /*---------------------------------------------
  base margin
  ---------------------------------------------*/
  .sp-mt0 {
    margin-top: 0px !important;
  }
  .sp-mt5 {
    margin-top: 5px !important;
  }
  .sp-mt8 {
    margin-top: 8px !important;
  }
  .sp-mt10 {
    margin-top: 10px !important;
  }
  .sp-mt15 {
    margin-top: 15px !important;
  }
  .sp-mt16 {
    margin-top: 16px !important;
  }
  .sp-mt20 {
    margin-top: 20px !important;
  }
  .sp-mt24 {
    margin-top: 24px !important;
  }
  .sp-mt25 {
    margin-top: 25px !important;
  }
  .sp-mt30 {
    margin-top: 30px !important;
  }
  .sp-mt32 {
    margin-top: 32px !important;
  }
  .sp-mt35 {
    margin-top: 35px !important;
  }
  .sp-mt40 {
    margin-top: 40px !important;
  }
  .sp-mt48 {
    margin-top: 48px !important;
  }
  .sp-mt50 {
    margin-top: 50px !important;
  }
  .sp-mt56 {
    margin-top: 56px !important;
  }
  .sp-mt60 {
    margin-top: 60px !important;
  }
  .sp-mt64 {
    margin-top: 64px !important;
  }
  .sp-mt70 {
    margin-top: 70px !important;
  }
  .sp-mt80 {
    margin-top: 80px !important;
  }
  .sp-mt90 {
    margin-top: 90px !important;
  }
  .sp-mt100 {
    margin-top: 100px !important;
  }
  .sp-ml0 {
    margin-left: 0px !important;
  }
  .sp-ml5 {
    margin-left: 5px !important;
  }
  .sp-ml8 {
    margin-left: 8px !important;
  }
  .sp-ml10 {
    margin-left: 10px !important;
  }
  .sp-ml15 {
    margin-left: 15px !important;
  }
  .sp-ml16 {
    margin-left: 16px !important;
  }
  .sp-ml20 {
    margin-left: 20px !important;
  }
  .sp-ml24 {
    margin-left: 24px !important;
  }
  .sp-ml25 {
    margin-left: 25px !important;
  }
  .sp-ml30 {
    margin-left: 30px !important;
  }
  .sp-ml32 {
    margin-left: 32px !important;
  }
  .sp-ml35 {
    margin-left: 35px !important;
  }
  .sp-ml40 {
    margin-left: 40px !important;
  }
  .sp-ml48 {
    margin-left: 48px !important;
  }
  .sp-ml50 {
    margin-left: 50px !important;
  }
  .sp-ml56 {
    margin-left: 56px !important;
  }
  .sp-ml60 {
    margin-left: 60px !important;
  }
  .sp-ml64 {
    margin-left: 64px !important;
  }
  .sp-ml70 {
    margin-left: 70px !important;
  }
  .sp-ml80 {
    margin-left: 80px !important;
  }
  .sp-ml90 {
    margin-left: 90px !important;
  }
  .sp-ml100 {
    margin-left: 100px !important;
  }
  .sp-mr0 {
    margin-right: 0px !important;
  }
  .sp-mr5 {
    margin-right: 5px !important;
  }
  .sp-mr8 {
    margin-right: 8px !important;
  }
  .sp-mr10 {
    margin-right: 10px !important;
  }
  .sp-mr15 {
    margin-right: 15px !important;
  }
  .sp-mr16 {
    margin-right: 16px !important;
  }
  .sp-mr20 {
    margin-right: 20px !important;
  }
  .sp-mr24 {
    margin-right: 24px !important;
  }
  .sp-mr25 {
    margin-right: 25px !important;
  }
  .sp-mr30 {
    margin-right: 30px !important;
  }
  .sp-mr32 {
    margin-right: 32px !important;
  }
  .sp-mr35 {
    margin-right: 35px !important;
  }
  .sp-mr40 {
    margin-right: 40px !important;
  }
  .sp-mr48 {
    margin-right: 48px !important;
  }
  .sp-mr50 {
    margin-right: 50px !important;
  }
  .sp-mr56 {
    margin-right: 56px !important;
  }
  .sp-mr60 {
    margin-right: 60px !important;
  }
  .sp-mr64 {
    margin-right: 64px !important;
  }
  .sp-mr70 {
    margin-right: 70px !important;
  }
  .sp-mr80 {
    margin-right: 80px !important;
  }
  .sp-mr90 {
    margin-right: 90px !important;
  }
  .sp-mr100 {
    margin-right: 100px !important;
  }
  .sp-mb0 {
    margin-bottom: 0px !important;
  }
  .sp-mb5 {
    margin-bottom: 5px !important;
  }
  .sp-mb8 {
    margin-bottom: 8px !important;
  }
  .sp-mb10 {
    margin-bottom: 10px !important;
  }
  .sp-mb15 {
    margin-bottom: 15px !important;
  }
  .sp-mb16 {
    margin-bottom: 16px !important;
  }
  .sp-mb20 {
    margin-bottom: 20px !important;
  }
  .sp-mb24 {
    margin-bottom: 24px !important;
  }
  .sp-mb25 {
    margin-bottom: 25px !important;
  }
  .sp-mb30 {
    margin-bottom: 30px !important;
  }
  .sp-mb32 {
    margin-bottom: 32px !important;
  }
  .sp-mb35 {
    margin-bottom: 35px !important;
  }
  .sp-mb40 {
    margin-bottom: 40px !important;
  }
  .sp-mb48 {
    margin-bottom: 48px !important;
  }
  .sp-mb50 {
    margin-bottom: 50px !important;
  }
  .sp-mb56 {
    margin-bottom: 56px !important;
  }
  .sp-mb60 {
    margin-bottom: 60px !important;
  }
  .sp-mb64 {
    margin-bottom: 64px !important;
  }
  .sp-mb70 {
    margin-bottom: 70px !important;
  }
  .sp-mb80 {
    margin-bottom: 80px !important;
  }
  .sp-mb90 {
    margin-bottom: 90px !important;
  }
  .sp-mb100 {
    margin-bottom: 100px !important;
  }
  .sp-pt0 {
    padding-top: 0px !important;
  }
  .sp-pt5 {
    padding-top: 5px !important;
  }
  .sp-pt8 {
    padding-top: 8px !important;
  }
  .sp-pt10 {
    padding-top: 10px !important;
  }
  .sp-pt15 {
    padding-top: 15px !important;
  }
  .sp-pt16 {
    padding-top: 16px !important;
  }
  .sp-pt20 {
    padding-top: 20px !important;
  }
  .sp-pt24 {
    padding-top: 24px !important;
  }
  .sp-pt25 {
    padding-top: 25px !important;
  }
  .sp-pt30 {
    padding-top: 30px !important;
  }
  .sp-pt32 {
    padding-top: 32px !important;
  }
  .sp-pt35 {
    padding-top: 35px !important;
  }
  .sp-pt40 {
    padding-top: 40px !important;
  }
  .sp-pt48 {
    padding-top: 48px !important;
  }
  .sp-pt50 {
    padding-top: 50px !important;
  }
  .sp-pt56 {
    padding-top: 56px !important;
  }
  .sp-pt60 {
    padding-top: 60px !important;
  }
  .sp-pt64 {
    padding-top: 64px !important;
  }
  .sp-pt70 {
    padding-top: 70px !important;
  }
  .sp-pt80 {
    padding-top: 80px !important;
  }
  .sp-pt90 {
    padding-top: 90px !important;
  }
  .sp-pt100 {
    padding-top: 100px !important;
  }
  .sp-pl0 {
    padding-left: 0px !important;
  }
  .sp-pl5 {
    padding-left: 5px !important;
  }
  .sp-pl8 {
    padding-left: 8px !important;
  }
  .sp-pl10 {
    padding-left: 10px !important;
  }
  .sp-pl15 {
    padding-left: 15px !important;
  }
  .sp-pl16 {
    padding-left: 16px !important;
  }
  .sp-pl20 {
    padding-left: 20px !important;
  }
  .sp-pl24 {
    padding-left: 24px !important;
  }
  .sp-pl25 {
    padding-left: 25px !important;
  }
  .sp-pl30 {
    padding-left: 30px !important;
  }
  .sp-pl32 {
    padding-left: 32px !important;
  }
  .sp-pl35 {
    padding-left: 35px !important;
  }
  .sp-pl40 {
    padding-left: 40px !important;
  }
  .sp-pl48 {
    padding-left: 48px !important;
  }
  .sp-pl50 {
    padding-left: 50px !important;
  }
  .sp-pl56 {
    padding-left: 56px !important;
  }
  .sp-pl60 {
    padding-left: 60px !important;
  }
  .sp-pl64 {
    padding-left: 64px !important;
  }
  .sp-pl70 {
    padding-left: 70px !important;
  }
  .sp-pl80 {
    padding-left: 80px !important;
  }
  .sp-pl90 {
    padding-left: 90px !important;
  }
  .sp-pl100 {
    padding-left: 100px !important;
  }
  .sp-pr0 {
    padding-right: 0px !important;
  }
  .sp-pr5 {
    padding-right: 5px !important;
  }
  .sp-pr8 {
    padding-right: 8px !important;
  }
  .sp-pr10 {
    padding-right: 10px !important;
  }
  .sp-pr15 {
    padding-right: 15px !important;
  }
  .sp-pr16 {
    padding-right: 16px !important;
  }
  .sp-pr20 {
    padding-right: 20px !important;
  }
  .sp-pr24 {
    padding-right: 24px !important;
  }
  .sp-pr25 {
    padding-right: 25px !important;
  }
  .sp-pr30 {
    padding-right: 30px !important;
  }
  .sp-pr32 {
    padding-right: 32px !important;
  }
  .sp-pr35 {
    padding-right: 35px !important;
  }
  .sp-pr40 {
    padding-right: 40px !important;
  }
  .sp-pr48 {
    padding-right: 48px !important;
  }
  .sp-pr50 {
    padding-right: 50px !important;
  }
  .sp-pr56 {
    padding-right: 56px !important;
  }
  .sp-pr60 {
    padding-right: 60px !important;
  }
  .sp-pr64 {
    padding-right: 64px !important;
  }
  .sp-pr70 {
    padding-right: 70px !important;
  }
  .sp-pr80 {
    padding-right: 80px !important;
  }
  .sp-pr90 {
    padding-right: 90px !important;
  }
  .sp-pr100 {
    padding-right: 100px !important;
  }
  .sp-pb0 {
    padding-bottom: 0px !important;
  }
  .sp-pb5 {
    padding-bottom: 5px !important;
  }
  .sp-pb8 {
    padding-bottom: 8px !important;
  }
  .sp-pb10 {
    padding-bottom: 10px !important;
  }
  .sp-pb15 {
    padding-bottom: 15px !important;
  }
  .sp-pb16 {
    padding-bottom: 16px !important;
  }
  .sp-pb20 {
    padding-bottom: 20px !important;
  }
  .sp-pb24 {
    padding-bottom: 24px !important;
  }
  .sp-pb25 {
    padding-bottom: 25px !important;
  }
  .sp-pb30 {
    padding-bottom: 30px !important;
  }
  .sp-pb32 {
    padding-bottom: 32px !important;
  }
  .sp-pb35 {
    padding-bottom: 35px !important;
  }
  .sp-pb40 {
    padding-bottom: 40px !important;
  }
  .sp-pb48 {
    padding-bottom: 48px !important;
  }
  .sp-pb50 {
    padding-bottom: 50px !important;
  }
  .sp-pb56 {
    padding-bottom: 56px !important;
  }
  .sp-pb60 {
    padding-bottom: 60px !important;
  }
  .sp-pb64 {
    padding-bottom: 64px !important;
  }
  .sp-pb70 {
    padding-bottom: 70px !important;
  }
  .sp-pb80 {
    padding-bottom: 80px !important;
  }
  .sp-pb90 {
    padding-bottom: 90px !important;
  }
  .sp-pb100 {
    padding-bottom: 100px !important;
  }
  .sp-w5p {
    width: 5% !important;
  }
  .sp-w8p {
    width: 8% !important;
  }
  .sp-w10p {
    width: 10% !important;
  }
  .sp-w11p {
    width: 11% !important;
  }
  .sp-w12p {
    width: 12% !important;
  }
  .sp-w15p {
    width: 15% !important;
  }
  .sp-w16p {
    width: 16% !important;
  }
  .sp-w20p {
    width: 20% !important;
  }
  .sp-w24p {
    width: 24% !important;
  }
  .sp-w25p {
    width: 25% !important;
  }
  .sp-w30p {
    width: 30% !important;
  }
  .sp-w32p {
    width: 32% !important;
  }
  .sp-w35p {
    width: 35% !important;
  }
  .sp-w40p {
    width: 40% !important;
  }
  .sp-w45p {
    width: 45% !important;
  }
  .sp-w48p {
    width: 48% !important;
  }
  .sp-w50p {
    width: 50% !important;
  }
  .sp-w55p {
    width: 55% !important;
  }
  .sp-w56p {
    width: 56% !important;
  }
  .sp-w60p {
    width: 60% !important;
  }
  .sp-w64p {
    width: 64% !important;
  }
  .sp-w65p {
    width: 65% !important;
  }
  .sp-w70p {
    width: 70% !important;
  }
  .sp-w75p {
    width: 75% !important;
  }
  .sp-w80p {
    width: 80% !important;
  }
  .sp-w85p {
    width: 85% !important;
  }
  .sp-w90p {
    width: 90% !important;
  }
  .sp-w95p {
    width: 95% !important;
  }
  .sp-w100p {
    width: 100% !important;
  }
  .sp-wmax {
    width: 100% !important;
    height: auto !important;
  }
  /* sp flex */
  .sp-jc-s {
    justify-content: flex-start;
  }
  .sp-jc-c {
    justify-content: center;
  }
  .sp-jc-e {
    justify-content: flex-end;
  }
  .sp-ai-s {
    align-items: flex-start;
  }
  .sp-ai-c {
    align-items: center;
  }
  .sp-ai-e {
    align-items: flex-end;
  }
  /* /sp flex */
}/*# sourceMappingURL=common.css.map */