@charset "UTF-8";
/* =====================
  リセット・共通系
 ======================= */
/** -------------------- 変数定義 -------------------- **/
:root {
  /*---------- カラー定義 ---------- */
  /* common color */
  --c_base: #F08200;
  /* キーカラー */
  --c_bg_g: #F3F4F0;
  /* 背景色_グレー */
  --c_bg_c: #F8F3ED;
  /* 背景色_クリーム */
  --c_acc: #4C3905;
  /* アクセント_ブラウン */
  --c_placeholder: #CCCCCC;
  /* プレースホルダ */
  --c_attention: #E20036;
  /* 注釈・強調 */
  --c_wht: #ffffff;
  /* text color */
  --c_text: #000000;
  /*---------- フォント定義 ---------- */
  --font_ja: "Noto Serif JP", serif;
  --font_go: "Noto Sans JP", sans-serif;
  /*---------- transition定義 ---------- */
  --anim: all 0.2s ease-out;
  /*---------- filter定義
     https://codepen.io/sosuke/pen/Pjoqqp ---------- */
  /* #000 → #F08200 */
  --filter_base: invert(71%) sepia(58%) saturate(6544%) hue-rotate(9deg) brightness(102%) contrast(102%);
  /* #000 → #4C3905 */
  --filter_acc: invert(15%) sepia(69%) saturate(1922%) hue-rotate(35deg) brightness(100%) contrast(96%);
  /* #000 → #ffffff */
  --filter_wht: invert(100%) sepia(100%) saturate(2%) hue-rotate(171deg) brightness(104%) contrast(101%);
  /* #000 → #E20036 */
  --filter_attention: invert(18%) sepia(94%) saturate(7465%) hue-rotate(340deg) brightness(86%) contrast(106%);
}

/** -------------------- reset -------------------- **/
body {
  font-family: var(--font_ja);
  font-size: 1.4rem;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  color: var(--c_text);
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: 100%;
  font-weight: 400;
  line-height: normal;
}

figure {
  margin: 0;
}

a, button {
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

a:hover, button:hover {
  text-decoration: none;
  opacity: 0.7;
}

small {
  font-size: 100%;
}

dl, dt, dd {
  margin: 0;
}

p {
  margin: 0;
}

img {
  vertical-align: middle;
}

/** -------------------- ログイン状態 -------------------- **/
.fs-clientInfo--true .fs-clientInfo--falseOnly {
  display: none !important;
}

.fs-clientInfo--false .fs-clientInfo--trueOnly {
  display: none !important;
}

/** -------------------- レイアウト -------------------- **/
.l-inner {
  padding: 0 20px;
  margin: 0 auto;
}

/** -------------------- 見出し -------------------- **/
.c-h2 {
  color: var(--c_acc);
  font-family: var(--font_ja);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 16px;
}

.c-h2:last-child {
  margin-bottom: 0;
}

.c-h3 {
  font-family: var(--font_ja);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  background: var(--c_bg_c);
  color: var(--c_text);
  margin: 0 0 16px;
}

.c-h4 {
  font-family: var(--font_ja);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.0;
  position: relative;
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--c_acc);
}

.c-h4:before {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 0;
}

/** -------------------- リンク・ボタン -------------------- **/
.c-link-register {
  background: var(--c_base);
  color: var(--c_wht) !important;
  padding: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-link-register__txt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.c-link-register__txt:after {
  content: "";
  width: 32px;
  height: 5px;
  background: url(../images/common/arrow_l_sp.png) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
}

.c-link-register strong {
  font-size: 21px;
}

.c-btn-arrow {
  background: var(--c_base);
  color: var(--c_wht) !important;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.05em;
  min-height: 60px;
  margin: 0 auto;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-btn-arrow__txt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.c-btn-arrow__txt:after {
  content: "";
  width: 27px;
  height: 8px;
  background: url(../images/common/arrow_s_sp.png) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
}

.c-link-orange {
  color: var(--c_base) !important;
}

.c-link-border {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.c-link-border:hover {
  text-decoration: underline;
}

.c-link-hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-color: transparent;
}

.c-link-hover:hover {
  color: var(--c_base) !important;
  opacity: 1.0;
  text-decoration: underline;
}

/** -------------------- フォント -------------------- **/
.c-font-go {
  font-family: var(--font_go) !important;
}

.c-font-min {
  font-family: var(--font_ja) !important;
}

.c-color-orange {
  color: var(--c_base) !important;
}

.c-color-red {
  color: var(--c_attention) !important;
}

.c-color-brown {
  color: var(--c_acc) !important;
}

.c-font-bold {
  font-weight: 700 !important;
}

.c-font-normal {
  font-weight: 400 !important;
}

.c-font-medium {
  font-weight: 500 !important;
}

.c-font-semi {
  font-weight: 600 !important;
}

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

.c-align-left {
  text-align: left !important;
}

.c-align-right {
  text-align: right !important;
}

/** -------------------- 背景色 -------------------- **/
.c-bg-g {
  background-color: var(--c_bg_g);
}

.c-bg-c {
  background-color: var(--c_bg_c);
}

/** -------------------- 余白 -------------------- **/
.u-mt-200 {
  margin-top: -200px !important;
}

.u-mb-200 {
  margin-bottom: -200px !important;
}

.u-ml-200 {
  margin-left: -200px !important;
}

.u-mr-200 {
  margin-right: -200px !important;
}

.u-pt-200 {
  padding-top: -200px !important;
}

.u-pb-200 {
  padding-bottom: -200px !important;
}

.u-pl-200 {
  padding-left: -200px !important;
}

.u-pr-200 {
  padding-right: -200px !important;
}

.u-mt-150 {
  margin-top: -150px !important;
}

.u-mb-150 {
  margin-bottom: -150px !important;
}

.u-ml-150 {
  margin-left: -150px !important;
}

.u-mr-150 {
  margin-right: -150px !important;
}

.u-pt-150 {
  padding-top: -150px !important;
}

.u-pb-150 {
  padding-bottom: -150px !important;
}

.u-pl-150 {
  padding-left: -150px !important;
}

.u-pr-150 {
  padding-right: -150px !important;
}

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

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

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

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

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

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

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

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

.u-mt0 {
  margin-top: 0px !important;
}

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

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

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

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

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

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

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

.u-mt4 {
  margin-top: 4px !important;
}

.u-mb4 {
  margin-bottom: 4px !important;
}

.u-ml4 {
  margin-left: 4px !important;
}

.u-mr4 {
  margin-right: 4px !important;
}

.u-pt4 {
  padding-top: 4px !important;
}

.u-pb4 {
  padding-bottom: 4px !important;
}

.u-pl4 {
  padding-left: 4px !important;
}

.u-pr4 {
  padding-right: 4px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-mt12 {
  margin-top: 12px !important;
}

.u-mb12 {
  margin-bottom: 12px !important;
}

.u-ml12 {
  margin-left: 12px !important;
}

.u-mr12 {
  margin-right: 12px !important;
}

.u-pt12 {
  padding-top: 12px !important;
}

.u-pb12 {
  padding-bottom: 12px !important;
}

.u-pl12 {
  padding-left: 12px !important;
}

.u-pr12 {
  padding-right: 12px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-mt28 {
  margin-top: 28px !important;
}

.u-mb28 {
  margin-bottom: 28px !important;
}

.u-ml28 {
  margin-left: 28px !important;
}

.u-mr28 {
  margin-right: 28px !important;
}

.u-pt28 {
  padding-top: 28px !important;
}

.u-pb28 {
  padding-bottom: 28px !important;
}

.u-pl28 {
  padding-left: 28px !important;
}

.u-pr28 {
  padding-right: 28px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-mt36 {
  margin-top: 36px !important;
}

.u-mb36 {
  margin-bottom: 36px !important;
}

.u-ml36 {
  margin-left: 36px !important;
}

.u-mr36 {
  margin-right: 36px !important;
}

.u-pt36 {
  padding-top: 36px !important;
}

.u-pb36 {
  padding-bottom: 36px !important;
}

.u-pl36 {
  padding-left: 36px !important;
}

.u-pr36 {
  padding-right: 36px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-mt120 {
  margin-top: 120px !important;
}

.u-mb120 {
  margin-bottom: 120px !important;
}

.u-ml120 {
  margin-left: 120px !important;
}

.u-mr120 {
  margin-right: 120px !important;
}

.u-pt120 {
  padding-top: 120px !important;
}

.u-pb120 {
  padding-bottom: 120px !important;
}

.u-pl120 {
  padding-left: 120px !important;
}

.u-pr120 {
  padding-right: 120px !important;
}

.u-mt150 {
  margin-top: 150px !important;
}

.u-mb150 {
  margin-bottom: 150px !important;
}

.u-ml150 {
  margin-left: 150px !important;
}

.u-mr150 {
  margin-right: 150px !important;
}

.u-pt150 {
  padding-top: 150px !important;
}

.u-pb150 {
  padding-bottom: 150px !important;
}

.u-pl150 {
  padding-left: 150px !important;
}

.u-pr150 {
  padding-right: 150px !important;
}

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

.u-mb200 {
  margin-bottom: 200px !important;
}

.u-ml200 {
  margin-left: 200px !important;
}

.u-mr200 {
  margin-right: 200px !important;
}

.u-pt200 {
  padding-top: 200px !important;
}

.u-pb200 {
  padding-bottom: 200px !important;
}

.u-pl200 {
  padding-left: 200px !important;
}

.u-pr200 {
  padding-right: 200px !important;
}

/** -------------------- アンカーリンク -------------------- **/
.p-anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 15px;
  margin: 50px 0 80px;
  font-family: var(--font_ja);
}

.p-anchor:first-child {
  margin-top: 0;
}

.p-anchor:last-child {
  margin-bottom: 0;
}

.p-anchor__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc((100% - 15px) / 2);
          flex: 0 1 calc((100% - 15px) / 2);
}

.p-anchor__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--c_base);
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 70px;
  position: relative;
  font-weight: 600;
  line-height: 1.2;
  padding: 8px 20px;
  border: 1px solid var(--c_base);
}

.p-anchor__item a:after {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/common/arrow_up.png) no-repeat center/contain;
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-filter: var(--filter_base);
          filter: var(--filter_base);
}

/** -------------------- アコーディオン -------------------- **/
.js-accordion-label {
  position: relative;
  font-family: var(--font_ja);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 20px 60px 20px 20px;
  background: var(--c_bg_g);
  margin: 10px 0;
  cursor: pointer;
}

.js-accordion-label:first-child {
  margin-top: 0;
}

.js-accordion-label:last-child {
  margin-bottom: 0;
}

.js-accordion-label:after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../images/common/arrow_up.png) no-repeat center/contain;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.js-accordion-label.is-open:after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.js-accordion-content {
  padding: 6px 20px 16px;
  font-family: var(--font_go);
  line-height: 1.8;
  display: none;
}

/** -------------------- リスト -------------------- **/
.c-list-num {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 1.5em;
}

.c-list-disc {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1em;
}

/** -------------------- ボックス -------------------- **/
.c-box-border {
  border: 1px solid var(--c_text);
  padding: 16px;
  margin: 20px 0;
}

.c-box-border:first-child {
  margin-top: 0;
}

.c-box-border:last-child {
  margin-bottom: 0;
}

/* スマホのみ
  ------------------------ */
@media (max-width: 700px) {
  .u-onlyPC {
    display: none !important;
  }
  /** -------------------- レイアウト -------------------- **/
  .l-sidenav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1500;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    padding: 92px 20px 20px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  /** -------------------- 余白 -------------------- **/
  .u-mt-200--sp {
    margin-top: -200px !important;
  }
  .u-mb-200--sp {
    margin-bottom: -200px !important;
  }
  .u-pt-200--sp {
    padding-top: -200px !important;
  }
  .u-pb-200--sp {
    padding-bottom: -200px !important;
  }
  .u-mt-150--sp {
    margin-top: -150px !important;
  }
  .u-mb-150--sp {
    margin-bottom: -150px !important;
  }
  .u-pt-150--sp {
    padding-top: -150px !important;
  }
  .u-pb-150--sp {
    padding-bottom: -150px !important;
  }
  .u-mt-100--sp {
    margin-top: -100px !important;
  }
  .u-mb-100--sp {
    margin-bottom: -100px !important;
  }
  .u-pt-100--sp {
    padding-top: -100px !important;
  }
  .u-pb-100--sp {
    padding-bottom: -100px !important;
  }
  .u-mt0--sp {
    margin-top: 0px !important;
  }
  .u-mb0--sp {
    margin-bottom: 0px !important;
  }
  .u-pt0--sp {
    padding-top: 0px !important;
  }
  .u-pb0--sp {
    padding-bottom: 0px !important;
  }
  .u-mt4--sp {
    margin-top: 4px !important;
  }
  .u-mb4--sp {
    margin-bottom: 4px !important;
  }
  .u-pt4--sp {
    padding-top: 4px !important;
  }
  .u-pb4--sp {
    padding-bottom: 4px !important;
  }
  .u-mt5--sp {
    margin-top: 5px !important;
  }
  .u-mb5--sp {
    margin-bottom: 5px !important;
  }
  .u-pt5--sp {
    padding-top: 5px !important;
  }
  .u-pb5--sp {
    padding-bottom: 5px !important;
  }
  .u-mt8--sp {
    margin-top: 8px !important;
  }
  .u-mb8--sp {
    margin-bottom: 8px !important;
  }
  .u-pt8--sp {
    padding-top: 8px !important;
  }
  .u-pb8--sp {
    padding-bottom: 8px !important;
  }
  .u-mt10--sp {
    margin-top: 10px !important;
  }
  .u-mb10--sp {
    margin-bottom: 10px !important;
  }
  .u-pt10--sp {
    padding-top: 10px !important;
  }
  .u-pb10--sp {
    padding-bottom: 10px !important;
  }
  .u-mt12--sp {
    margin-top: 12px !important;
  }
  .u-mb12--sp {
    margin-bottom: 12px !important;
  }
  .u-pt12--sp {
    padding-top: 12px !important;
  }
  .u-pb12--sp {
    padding-bottom: 12px !important;
  }
  .u-mt15--sp {
    margin-top: 15px !important;
  }
  .u-mb15--sp {
    margin-bottom: 15px !important;
  }
  .u-pt15--sp {
    padding-top: 15px !important;
  }
  .u-pb15--sp {
    padding-bottom: 15px !important;
  }
  .u-mt16--sp {
    margin-top: 16px !important;
  }
  .u-mb16--sp {
    margin-bottom: 16px !important;
  }
  .u-pt16--sp {
    padding-top: 16px !important;
  }
  .u-pb16--sp {
    padding-bottom: 16px !important;
  }
  .u-mt20--sp {
    margin-top: 20px !important;
  }
  .u-mb20--sp {
    margin-bottom: 20px !important;
  }
  .u-pt20--sp {
    padding-top: 20px !important;
  }
  .u-pb20--sp {
    padding-bottom: 20px !important;
  }
  .u-mt24--sp {
    margin-top: 24px !important;
  }
  .u-mb24--sp {
    margin-bottom: 24px !important;
  }
  .u-pt24--sp {
    padding-top: 24px !important;
  }
  .u-pb24--sp {
    padding-bottom: 24px !important;
  }
  .u-mt25--sp {
    margin-top: 25px !important;
  }
  .u-mb25--sp {
    margin-bottom: 25px !important;
  }
  .u-pt25--sp {
    padding-top: 25px !important;
  }
  .u-pb25--sp {
    padding-bottom: 25px !important;
  }
  .u-mt28--sp {
    margin-top: 28px !important;
  }
  .u-mb28--sp {
    margin-bottom: 28px !important;
  }
  .u-pt28--sp {
    padding-top: 28px !important;
  }
  .u-pb28--sp {
    padding-bottom: 28px !important;
  }
  .u-mt30--sp {
    margin-top: 30px !important;
  }
  .u-mb30--sp {
    margin-bottom: 30px !important;
  }
  .u-pt30--sp {
    padding-top: 30px !important;
  }
  .u-pb30--sp {
    padding-bottom: 30px !important;
  }
  .u-mt32--sp {
    margin-top: 32px !important;
  }
  .u-mb32--sp {
    margin-bottom: 32px !important;
  }
  .u-pt32--sp {
    padding-top: 32px !important;
  }
  .u-pb32--sp {
    padding-bottom: 32px !important;
  }
  .u-mt36--sp {
    margin-top: 36px !important;
  }
  .u-mb36--sp {
    margin-bottom: 36px !important;
  }
  .u-pt36--sp {
    padding-top: 36px !important;
  }
  .u-pb36--sp {
    padding-bottom: 36px !important;
  }
  .u-mt40--sp {
    margin-top: 40px !important;
  }
  .u-mb40--sp {
    margin-bottom: 40px !important;
  }
  .u-pt40--sp {
    padding-top: 40px !important;
  }
  .u-pb40--sp {
    padding-bottom: 40px !important;
  }
  .u-mt48--sp {
    margin-top: 48px !important;
  }
  .u-mb48--sp {
    margin-bottom: 48px !important;
  }
  .u-pt48--sp {
    padding-top: 48px !important;
  }
  .u-pb48--sp {
    padding-bottom: 48px !important;
  }
  .u-mt50--sp {
    margin-top: 50px !important;
  }
  .u-mb50--sp {
    margin-bottom: 50px !important;
  }
  .u-pt50--sp {
    padding-top: 50px !important;
  }
  .u-pb50--sp {
    padding-bottom: 50px !important;
  }
  .u-mt60--sp {
    margin-top: 60px !important;
  }
  .u-mb60--sp {
    margin-bottom: 60px !important;
  }
  .u-pt60--sp {
    padding-top: 60px !important;
  }
  .u-pb60--sp {
    padding-bottom: 60px !important;
  }
  .u-mt70--sp {
    margin-top: 70px !important;
  }
  .u-mb70--sp {
    margin-bottom: 70px !important;
  }
  .u-pt70--sp {
    padding-top: 70px !important;
  }
  .u-pb70--sp {
    padding-bottom: 70px !important;
  }
  .u-mt80--sp {
    margin-top: 80px !important;
  }
  .u-mb80--sp {
    margin-bottom: 80px !important;
  }
  .u-pt80--sp {
    padding-top: 80px !important;
  }
  .u-pb80--sp {
    padding-bottom: 80px !important;
  }
  .u-mt90--sp {
    margin-top: 90px !important;
  }
  .u-mb90--sp {
    margin-bottom: 90px !important;
  }
  .u-pt90--sp {
    padding-top: 90px !important;
  }
  .u-pb90--sp {
    padding-bottom: 90px !important;
  }
  .u-mt100--sp {
    margin-top: 100px !important;
  }
  .u-mb100--sp {
    margin-bottom: 100px !important;
  }
  .u-pt100--sp {
    padding-top: 100px !important;
  }
  .u-pb100--sp {
    padding-bottom: 100px !important;
  }
  .u-mt120--sp {
    margin-top: 120px !important;
  }
  .u-mb120--sp {
    margin-bottom: 120px !important;
  }
  .u-pt120--sp {
    padding-top: 120px !important;
  }
  .u-pb120--sp {
    padding-bottom: 120px !important;
  }
  .u-mt150--sp {
    margin-top: 150px !important;
  }
  .u-mb150--sp {
    margin-bottom: 150px !important;
  }
  .u-pt150--sp {
    padding-top: 150px !important;
  }
  .u-pb150--sp {
    padding-bottom: 150px !important;
  }
  .u-mt200--sp {
    margin-top: 200px !important;
  }
  .u-mb200--sp {
    margin-bottom: 200px !important;
  }
  .u-pt200--sp {
    padding-top: 200px !important;
  }
  .u-pb200--sp {
    padding-bottom: 200px !important;
  }
}

/* PC
  ------------------------ */
@media (min-width: 701px) {
  .u-onlySP {
    display: none !important;
  }
  /** -------------------- reset -------------------- **/
  html, body {
    min-width: 1240px;
  }
  /** -------------------- レイアウト -------------------- **/
  .l-inner {
    max-width: 1200px;
    padding: 0;
  }
  /** -------------------- 見出し -------------------- **/
  .c-h2 {
    font-size: 2rem;
  }
  .c-h3 {
    font-size: 2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c-h4 {
    font-size: 1.8rem;
    padding-left: 20px;
  }
  .c-h4:before {
    width: 10px;
    height: 10px;
    top: 14px;
  }
  /** -------------------- リンク・ボタン -------------------- **/
  .c-link-register {
    padding: 20px;
    max-width: 870px;
    border: 2px solid var(--c_base);
    margin: 0 auto;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
  .c-link-register strong {
    font-size: 3rem;
  }
  .c-link-register__txt {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    border-bottom: 1px solid transparent;
  }
  .c-link-register__txt:after {
    width: 65px;
    height: 11px;
    background: url(../images/common/arrow_l.png) no-repeat center/contain;
    -webkit-transition: var(--anim);
    transition: var(--anim);
  }
  .c-link-register:hover {
    opacity: 1.0;
    background: var(--c_wht);
    color: var(--c_base) !important;
  }
  .c-link-register:hover .c-link-register__txt {
    border-color: var(--c_base);
  }
  .c-link-register:hover .c-link-register__txt:after {
    -webkit-filter: var(--filter_base);
            filter: var(--filter_base);
  }
  .c-btn-arrow {
    font-size: 2rem;
    padding: 22px 27px;
    border: 2px solid var(--c_base);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .c-btn-arrow__txt {
    border-bottom: 1px solid transparent;
  }
  .c-btn-arrow__txt:after {
    width: 38px;
    height: 11px;
    background: url(../images/common/arrow_s.png) no-repeat center/contain;
    -webkit-transition: var(--anim);
    transition: var(--anim);
  }
  .c-btn-arrow:hover {
    opacity: 1.0;
    background: none;
    color: var(--c_base) !important;
  }
  .c-btn-arrow:hover .c-btn-arrow__txt {
    border-color: var(--c_base);
  }
  .c-btn-arrow:hover .c-btn-arrow__txt:after {
    -webkit-filter: var(--filter_base);
            filter: var(--filter_base);
  }
  /** -------------------- 余白 -------------------- **/
  .u-mt-200--pc {
    margin-top: -200px !important;
  }
  .u-mb-200--pc {
    margin-bottom: -200px !important;
  }
  .u-pt-200--pc {
    padding-top: -200px !important;
  }
  .u-pb-200--pc {
    padding-bottom: -200px !important;
  }
  .u-mt-150--pc {
    margin-top: -150px !important;
  }
  .u-mb-150--pc {
    margin-bottom: -150px !important;
  }
  .u-pt-150--pc {
    padding-top: -150px !important;
  }
  .u-pb-150--pc {
    padding-bottom: -150px !important;
  }
  .u-mt-100--pc {
    margin-top: -100px !important;
  }
  .u-mb-100--pc {
    margin-bottom: -100px !important;
  }
  .u-pt-100--pc {
    padding-top: -100px !important;
  }
  .u-pb-100--pc {
    padding-bottom: -100px !important;
  }
  .u-mt0--pc {
    margin-top: 0px !important;
  }
  .u-mb0--pc {
    margin-bottom: 0px !important;
  }
  .u-pt0--pc {
    padding-top: 0px !important;
  }
  .u-pb0--pc {
    padding-bottom: 0px !important;
  }
  .u-mt4--pc {
    margin-top: 4px !important;
  }
  .u-mb4--pc {
    margin-bottom: 4px !important;
  }
  .u-pt4--pc {
    padding-top: 4px !important;
  }
  .u-pb4--pc {
    padding-bottom: 4px !important;
  }
  .u-mt5--pc {
    margin-top: 5px !important;
  }
  .u-mb5--pc {
    margin-bottom: 5px !important;
  }
  .u-pt5--pc {
    padding-top: 5px !important;
  }
  .u-pb5--pc {
    padding-bottom: 5px !important;
  }
  .u-mt8--pc {
    margin-top: 8px !important;
  }
  .u-mb8--pc {
    margin-bottom: 8px !important;
  }
  .u-pt8--pc {
    padding-top: 8px !important;
  }
  .u-pb8--pc {
    padding-bottom: 8px !important;
  }
  .u-mt10--pc {
    margin-top: 10px !important;
  }
  .u-mb10--pc {
    margin-bottom: 10px !important;
  }
  .u-pt10--pc {
    padding-top: 10px !important;
  }
  .u-pb10--pc {
    padding-bottom: 10px !important;
  }
  .u-mt12--pc {
    margin-top: 12px !important;
  }
  .u-mb12--pc {
    margin-bottom: 12px !important;
  }
  .u-pt12--pc {
    padding-top: 12px !important;
  }
  .u-pb12--pc {
    padding-bottom: 12px !important;
  }
  .u-mt15--pc {
    margin-top: 15px !important;
  }
  .u-mb15--pc {
    margin-bottom: 15px !important;
  }
  .u-pt15--pc {
    padding-top: 15px !important;
  }
  .u-pb15--pc {
    padding-bottom: 15px !important;
  }
  .u-mt16--pc {
    margin-top: 16px !important;
  }
  .u-mb16--pc {
    margin-bottom: 16px !important;
  }
  .u-pt16--pc {
    padding-top: 16px !important;
  }
  .u-pb16--pc {
    padding-bottom: 16px !important;
  }
  .u-mt20--pc {
    margin-top: 20px !important;
  }
  .u-mb20--pc {
    margin-bottom: 20px !important;
  }
  .u-pt20--pc {
    padding-top: 20px !important;
  }
  .u-pb20--pc {
    padding-bottom: 20px !important;
  }
  .u-mt24--pc {
    margin-top: 24px !important;
  }
  .u-mb24--pc {
    margin-bottom: 24px !important;
  }
  .u-pt24--pc {
    padding-top: 24px !important;
  }
  .u-pb24--pc {
    padding-bottom: 24px !important;
  }
  .u-mt25--pc {
    margin-top: 25px !important;
  }
  .u-mb25--pc {
    margin-bottom: 25px !important;
  }
  .u-pt25--pc {
    padding-top: 25px !important;
  }
  .u-pb25--pc {
    padding-bottom: 25px !important;
  }
  .u-mt28--pc {
    margin-top: 28px !important;
  }
  .u-mb28--pc {
    margin-bottom: 28px !important;
  }
  .u-pt28--pc {
    padding-top: 28px !important;
  }
  .u-pb28--pc {
    padding-bottom: 28px !important;
  }
  .u-mt30--pc {
    margin-top: 30px !important;
  }
  .u-mb30--pc {
    margin-bottom: 30px !important;
  }
  .u-pt30--pc {
    padding-top: 30px !important;
  }
  .u-pb30--pc {
    padding-bottom: 30px !important;
  }
  .u-mt32--pc {
    margin-top: 32px !important;
  }
  .u-mb32--pc {
    margin-bottom: 32px !important;
  }
  .u-pt32--pc {
    padding-top: 32px !important;
  }
  .u-pb32--pc {
    padding-bottom: 32px !important;
  }
  .u-mt36--pc {
    margin-top: 36px !important;
  }
  .u-mb36--pc {
    margin-bottom: 36px !important;
  }
  .u-pt36--pc {
    padding-top: 36px !important;
  }
  .u-pb36--pc {
    padding-bottom: 36px !important;
  }
  .u-mt40--pc {
    margin-top: 40px !important;
  }
  .u-mb40--pc {
    margin-bottom: 40px !important;
  }
  .u-pt40--pc {
    padding-top: 40px !important;
  }
  .u-pb40--pc {
    padding-bottom: 40px !important;
  }
  .u-mt48--pc {
    margin-top: 48px !important;
  }
  .u-mb48--pc {
    margin-bottom: 48px !important;
  }
  .u-pt48--pc {
    padding-top: 48px !important;
  }
  .u-pb48--pc {
    padding-bottom: 48px !important;
  }
  .u-mt50--pc {
    margin-top: 50px !important;
  }
  .u-mb50--pc {
    margin-bottom: 50px !important;
  }
  .u-pt50--pc {
    padding-top: 50px !important;
  }
  .u-pb50--pc {
    padding-bottom: 50px !important;
  }
  .u-mt60--pc {
    margin-top: 60px !important;
  }
  .u-mb60--pc {
    margin-bottom: 60px !important;
  }
  .u-pt60--pc {
    padding-top: 60px !important;
  }
  .u-pb60--pc {
    padding-bottom: 60px !important;
  }
  .u-mt70--pc {
    margin-top: 70px !important;
  }
  .u-mb70--pc {
    margin-bottom: 70px !important;
  }
  .u-pt70--pc {
    padding-top: 70px !important;
  }
  .u-pb70--pc {
    padding-bottom: 70px !important;
  }
  .u-mt80--pc {
    margin-top: 80px !important;
  }
  .u-mb80--pc {
    margin-bottom: 80px !important;
  }
  .u-pt80--pc {
    padding-top: 80px !important;
  }
  .u-pb80--pc {
    padding-bottom: 80px !important;
  }
  .u-mt90--pc {
    margin-top: 90px !important;
  }
  .u-mb90--pc {
    margin-bottom: 90px !important;
  }
  .u-pt90--pc {
    padding-top: 90px !important;
  }
  .u-pb90--pc {
    padding-bottom: 90px !important;
  }
  .u-mt100--pc {
    margin-top: 100px !important;
  }
  .u-mb100--pc {
    margin-bottom: 100px !important;
  }
  .u-pt100--pc {
    padding-top: 100px !important;
  }
  .u-pb100--pc {
    padding-bottom: 100px !important;
  }
  .u-mt120--pc {
    margin-top: 120px !important;
  }
  .u-mb120--pc {
    margin-bottom: 120px !important;
  }
  .u-pt120--pc {
    padding-top: 120px !important;
  }
  .u-pb120--pc {
    padding-bottom: 120px !important;
  }
  .u-mt150--pc {
    margin-top: 150px !important;
  }
  .u-mb150--pc {
    margin-bottom: 150px !important;
  }
  .u-pt150--pc {
    padding-top: 150px !important;
  }
  .u-pb150--pc {
    padding-bottom: 150px !important;
  }
  .u-mt200--pc {
    margin-top: 200px !important;
  }
  .u-mb200--pc {
    margin-bottom: 200px !important;
  }
  .u-pt200--pc {
    padding-top: 200px !important;
  }
  .u-pb200--pc {
    padding-bottom: 200px !important;
  }
  /** -------------------- アンカーリンク -------------------- **/
  .p-anchor {
    margin: 64px 0 100px;
    gap: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-anchor__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 24px * 3) / 4);
            flex: 0 1 calc((100% - 24px * 3) / 4);
  }
  .p-anchor__item a {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 10px 20px;
    text-decoration: underline;
    text-decoration-color: transparent;
  }
  .p-anchor__item a:after {
    -webkit-transition: var(--anim);
    transition: var(--anim);
  }
  .p-anchor__item a:hover {
    opacity: 1.0;
    color: var(--c_wht) !important;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    background: var(--c_base);
  }
  .p-anchor__item a:hover:after {
    -webkit-filter: var(--filter_wht);
            filter: var(--filter_wht);
  }
  /** -------------------- アコーディオン -------------------- **/
  .js-accordion-label {
    font-size: 2rem;
    line-height: 1.5;
    padding: 25px 60px 25px 20px;
    margin: 16px 0;
  }
  .js-accordion-label:after {
    content: "";
    width: 16px;
    height: 16px;
  }
  .js-accordion-content {
    padding: 14px 20px 30px;
    font-size: 1.6rem;
    line-height: 2.0;
  }
  /** -------------------- リスト -------------------- **/
  .c-list-disc {
    margin-left: 0.5em;
  }
  /** -------------------- ボックス -------------------- **/
  .c-box-border {
    padding: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
