@charset "UTF-8";
/* **************************************************************************************

RESET/* --mayank99--(v0.11.0/2024.11.29) *

************************************************************************************** */
*,
*::before,
*::after {
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* タブやアコーディオンの非表示コンテンツ */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  interpolate-size: allow-keywords; /* キーワード値によるアニメーションを許可 */
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) { /* コンテンツが要素内に収まらない場合、要素のパディングボックスに合わせて切り取る */
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  line-height: 1.5; /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  -webkit-font-feature-settings: inherit;
          font-feature-settings: inherit;
  font-variation-settings: inherit;
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled, label:has(> :disabled, + disabled)) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
  text-decoration: none;
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg, video) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
  text-wrap: balance;
}

:where(hr) { /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) { /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus-within, :active)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

/* **************************************************************************************

BASE

************************************************************************************** */
body {
  font-size: 16px;
  color: #333;
  font-family: "NotoSansCJKjp", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-color: #f7f7f7;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

/* =MAP
-----------------------------------------------------------------------------*/
.map-waku {
  border: 1px solid #A58558;
  padding: 10px;
  color: #6D5041;
  font-size: 14px;
  font-weight: 800;
}

.map {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.map iframe,
.map object,
.map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* **************************************************************************************

 MARGIN-PADDING /component/_mixin/

************************************************************************************** */
.mg-0 {
  margin: 0rem !important;
}
.mt-0 {
  margin-top: 0rem !important;
}
.mr-0 {
  margin-right: 0rem !important;
}
.mb-0 {
  margin-bottom: 0rem !important;
}
.ml-0 {
  margin-left: 0rem !important;
}
.mtb-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.pd-0 {
  padding: 0rem !important;
}
.pb-0 {
  padding-bottom: 0rem !important;
}
.pt-0 {
  padding-top: 0rem !important;
}
.pl-0 {
  padding-left: 0rem !important;
}
.pr-0 {
  padding-right: 0rem !important;
}
.ptb-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.mg-1 {
  margin: 1rem !important;
}
.mt-1 {
  margin-top: 1rem !important;
}
.mr-1 {
  margin-right: 1rem !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.ml-1 {
  margin-left: 1rem !important;
}
.mtb-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.pd-1 {
  padding: 1rem !important;
}
.pb-1 {
  padding-bottom: 1rem !important;
}
.pt-1 {
  padding-top: 1rem !important;
}
.pl-1 {
  padding-left: 1rem !important;
}
.pr-1 {
  padding-right: 1rem !important;
}
.ptb-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.mg-2 {
  margin: 2rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.mr-2 {
  margin-right: 2rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.ml-2 {
  margin-left: 2rem !important;
}
.mtb-2 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.pd-2 {
  padding: 2rem !important;
}
.pb-2 {
  padding-bottom: 2rem !important;
}
.pt-2 {
  padding-top: 2rem !important;
}
.pl-2 {
  padding-left: 2rem !important;
}
.pr-2 {
  padding-right: 2rem !important;
}
.ptb-2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.mg-3 {
  margin: 3rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.mr-3 {
  margin-right: 3rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.ml-3 {
  margin-left: 3rem !important;
}
.mtb-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.pd-3 {
  padding: 3rem !important;
}
.pb-3 {
  padding-bottom: 3rem !important;
}
.pt-3 {
  padding-top: 3rem !important;
}
.pl-3 {
  padding-left: 3rem !important;
}
.pr-3 {
  padding-right: 3rem !important;
}
.ptb-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.mg-4 {
  margin: 4rem !important;
}
.mt-4 {
  margin-top: 4rem !important;
}
.mr-4 {
  margin-right: 4rem !important;
}
.mb-4 {
  margin-bottom: 4rem !important;
}
.ml-4 {
  margin-left: 4rem !important;
}
.mtb-4 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.pd-4 {
  padding: 4rem !important;
}
.pb-4 {
  padding-bottom: 4rem !important;
}
.pt-4 {
  padding-top: 4rem !important;
}
.pl-4 {
  padding-left: 4rem !important;
}
.pr-4 {
  padding-right: 4rem !important;
}
.ptb-4 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.mg-5 {
  margin: 5rem !important;
}
.mt-5 {
  margin-top: 5rem !important;
}
.mr-5 {
  margin-right: 5rem !important;
}
.mb-5 {
  margin-bottom: 5rem !important;
}
.ml-5 {
  margin-left: 5rem !important;
}
.mtb-5 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.pd-5 {
  padding: 5rem !important;
}
.pb-5 {
  padding-bottom: 5rem !important;
}
.pt-5 {
  padding-top: 5rem !important;
}
.pl-5 {
  padding-left: 5rem !important;
}
.pr-5 {
  padding-right: 5rem !important;
}
.ptb-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.mt-025 {
  margin-top: 0.25rem !important;
}
.mr-025 {
  margin-right: 0.25rem !important;
}
.mb-025 {
  margin-bottom: 0.25rem !important;
}
.ml-025 {
  margin-left: 0.25rem !important;
}
.mtb-025 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.mt-05 {
  margin-top: 0.5rem !important;
}
.mr-05 {
  margin-right: 0.5rem !important;
}
.mb-05 {
  margin-bottom: 0.5rem !important;
}
.ml-05 {
  margin-left: 0.5rem !important;
}
.mtb-05 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.pt-025 {
  padding-top: 0.25rem !important;
}
.pr-025 {
  padding-right: 0.25rem !important;
}
.pb-025 {
  padding-bottom: 0.25rem !important;
}
.pl-025 {
  padding-left: 0.25rem !important;
}
.ptb-025 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.plr-025 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.pt-05 {
  padding-top: 0.5rem !important;
}
.pr-05 {
  padding-right: 0.5rem !important;
}
.pb-05 {
  padding-bottom: 0.5rem !important;
}
.pl-05 {
  padding-left: 0.5rem !important;
}
.ptb-05 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.plr-05 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

/* **************************************************************************************

 FLEX /component/_flex/

************************************************************************************** */
.flex {
  display: flex !important;
  flex-wrap: wrap;
}
.flex._gap15 {
  grid-gap: 15px;
}
.flex._gap15-column {
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.flex._gap30-column {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.flex._gap30 {
  grid-gap: 30px;
}
.flex._gap50 {
  grid-gap: 50px;
}
.flex_center {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flex_center._gap15 {
  grid-gap: 15px;
}
.flex_center._gap30 {
  grid-gap: 30px;
}
.flex_center._gap50 {
  grid-gap: 50px;
}
.flex_center_column {
  display: flex !important;
  flex-direction: column;
  align-items: center;
}
.flex_center_column._gap30 {
  grid-gap: 30px;
}
.flex_center_row {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.flex_center_row._gap15 {
  grid-gap: 15px;
}
.flex_center_row._gap30 {
  grid-gap: 30px;
}
.flex_start {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.flex_start._gap15 {
  grid-gap: 15px;
}
.flex_start._gap30 {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;
}
.flex_end {
  display: flex !important;
  flex-direction: row;
  justify-content: flex-end;
}
.flex_end._gap15 {
  grid-gap: 15px;
}
.flex_end._gap30 {
  grid-gap: 30px;
}
.flex_between {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.flex_between._gap30 {
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.flex_between._gap50 {
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
}
.flex._column {
  display: flex;
  flex-direction: column;
}
.flex._row {
  display: flex;
  flex-direction: row;
}
.flex._row._gap15 {
  grid-gap: 15px;
}
.flex._row._gap30 {
  grid-gap: 30px;
}

.inline-flex_center {
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media print, screen and (min-width: 62.5em) { /* -------- PC用のスタイル(1000px以上)-------- */
  .flex_center {
    flex-direction: row;
  }
  .flex_center_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .flex_column {
    display: flex;
    flex-direction: column;
  }
  .flex_column._gap30 {
    grid-gap: 30px;
  }
  .flex_row {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .flex_start {
    flex-direction: row;
  }
  .flex_start._gap30 {
    flex-direction: row;
    align-items: flex-start;
  }
  .flex_between {
    flex-direction: row;
  }
  .flex_between._gap30 {
    flex-direction: row;
  }
  .flex_between._gap50 {
    flex-direction: row;
  }
}
/* **************************************************************************************

 GRID /component/_grid/

************************************************************************************** */
.grid {
  display: grid;
  align-content: center;
  flex-wrap: wrap;
}
.grid._grid2 {
  grid-template-columns: 1fr;
}
.grid._grid3 {
  grid-template-columns: 1fr;
}
.grid._grid4 {
  grid-template-columns: 1fr;
}
.grid._grid5 {
  grid-template-columns: 1fr;
}
.grid._gap20 {
  grid-gap: 20px;
}
.grid._gap30 {
  grid-gap: 30px 30px;
}
.grid._gap50 {
  grid-gap: 50px 50px;
}

@media print, screen and (min-width: 62.5em) { /* -------- PC用のスタイル(1000px以上)-------- */
  .grid {
    display: grid;
    align-content: center;
    flex-wrap: wrap;
  }
  .grid._grid2 {
    grid-template-columns: repeat(auto-fit, minmax(45%, 2fr));
  }
  .grid._grid3 {
    grid-template-columns: repeat(auto-fit, minmax(30%, 3fr));
  }
  .grid._grid4 {
    grid-template-columns: repeat(auto-fit, minmax(22%, 4fr));
  }
  .grid._grid5 {
    grid-template-columns: repeat(auto-fit, minmax(16%, 5fr));
  }
}
/* **************************************************************************************

 BOX（boxのスタイル）/component/_box/

************************************************************************************** */
/* **************************************************************************************

 COLOR（色のスタイル）/component/_color/

************************************************************************************** */
.color_blue {
  color: #385cf5 !important;
}
.color_blue-bg {
  background: #385cf5 !important;
}
.color_blue-bg_transparentize {
  background: #e6edff;
}
.color_navy {
  color: #003caa !important;
}
.color_navy-bg {
  background: #003caa !important;
}
.color_green {
  color: #00ad84 !important;
}
.color_green-bg {
  background: #0abedc !important;
}
.color_green-bg_transparentize {
  background: rgba(0, 173, 132, 0.08);
}
.color_green-light {
  color: #00e821;
}
.color_red {
  color: #ea5454 !important;
}
.color_red-bg {
  background: #ea5454 !important;
}
.color_red-bg_transparentize {
  background: rgba(234, 84, 84, 0.15);
}
.color_pink {
  color: #f69eff !important;
}
.color_purple {
  color: #9d00ef !important;
}
.color_yellow {
  color: #f2b436 !important;
}
.color_yellow-bg {
  background: #f2b436 !important;
}
.color_gray {
  color: #505050;
}
.color_gray-light {
  color: #c6c6c6;
}
.color_gray-light-bg {
  background: #f7f7f7 !important;
}
.color_white {
  color: #fff !important;
}
.color_white-bg {
  background: #fff !important;
}
.color_black {
  color: #000 !important;
}

.box {
  display: flex;
  justify-content: center;
}
.box_round {
  position: relative;
  border-radius: 20px;
  padding: 2rem;
  background: #fff;
}
.box_line {
  border: 1px solid #ccc;
}
.box_shadow {
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.1));
}

/* **************************************************************************************

 FONT（fontのスタイル）/component/_font/

************************************************************************************** */
.font {
  display: inline-block;
  padding: 0.5rem;
  margin: 0 auto;
  line-height: 1;
}
.font_xs {
  font-size: 0.7rem;
  line-height: 1.3;
  vertical-align: middle;
}
.font_s {
  font-size: clamp(0.7rem, 0.629rem + 0.35vw, 0.85rem);
  line-height: 1;
}
.font_m {
  font-size: 1rem;
}
.font_ml {
  font-size: 1.2rem;
}
.font_l {
  font-size: clamp(1.15rem, 1.103rem + 0.24vw, 1.25rem);
}
.font_ll {
  font-size: clamp(1.5rem, 1.265rem + 1.18vw, 2rem);
}
.font_xl {
  font-size: 2.5rem;
}

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

.under-line {
  text-decoration: underline;
}

.border_yellow {
  background: linear-gradient(transparent 80%, #FFFF00 70%);
}

.line-height_13 {
  line-height: 1.3;
}

.line-height_15 {
  line-height: 1.5;
}

.line-height_2 {
  line-height: 2;
}

.line-height_25 {
  line-height: 2.5;
}

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

.block {
  display: block;
}

.txt-center {
  text-align: center;
}

.txt-center-left {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-left-center {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.whitespace-no {
  white-space: nowrap;
}

@media print, screen and (max-width: 62.5em) { /* -------- SP用のスタイル(1000px以下)-------- */
  .txt-center-left {
    text-align: left;
  }
  .txt-left-center {
    text-align: center;
  }
  .whitespace-no {
    white-space: nowrap;
  }
}
/* =Webfont
--------------------------------------------------------------------------*/
@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansCJKjp-Regular.woff") format("woff"), url("../font/NotoSansCJKjp_Regular.eot") format("eot");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansCJKjp-Bold.woff") format("woff"), url("../font/NotoSansCJKjp_Bold.eot") format("eot");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 900;
  src: url("../font/NotoSansCJKjp-Black.woff") format("woff"), url("../font/NotoSansCJKjp_Black.eot") format("eot");
  font-display: swap;
}
html {
  font-family: "NotoSansCJKjp", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
}

/* =Webfont--icon
--------------------------------------------------------------------------*/
@font-face {
  font-family: "icomoon";
  src: url("../font/icomoon.eot?p70ojg");
  src: url("../font/icomoon.eot?p70ojg#iefix") format("embedded-opentype"), url("../font/icomoon.ttf?p70ojg") format("truetype"), url("../font/icomoon.woff?p70ojg") format("woff"), url("../font/icomoon.svg?p70ojg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-chevron-up:before {
  content: "\e945";
} /*--- 上　--- */
.icon-chevron-down:before {
  content: "\e944";
} /*--- 下　--- */
.icon-chevron-left:before {
  content: "\e943";
  vertical-align: middle;
} /*--- 左　--- */
.icon-chevron-right:before {
  content: "\e942";
  vertical-align: middle;
} /*--- 右　--- */
.icon-caret-up:before {
  content: "\e941";
} /*--- 矢印▲　--- */
.icon-caret-down:before {
  content: "\e940";
} /*--- 矢印▼　--- */
.icon-caret-left:before {
  content: "\e93f";
} /*--- 矢印◀︎　--- */
.icon-caret-right:before {
  content: "\e93e";
} /*--- 矢印▶︎　--- */
.icon-chevron-circle-up:before {
  content: "\e93d";
} /*--- 上^○　--- */
.icon-chevron-circle-down:before {
  content: "\e93c";
} /*--- 下○　--- */
.icon-chevron-circle-left:before {
  content: "\e93b";
} /*--- 左<○　--- */
.icon-chevron-circle-right:before {
  content: "\e93a";
} /*--- 右>○　--- */
.icon-chevron-circleB-up:before {
  content: "\e939";
} /*--- 上^○黒　--- */
.icon-chevron-circleB-down:before {
  content: "\e938";
} /*--- 下○黒　--- */
.icon-chevron-circleB-left:before {
  content: "\e937";
} /*--- 左<○黒　--- */
.icon-chevron-circleB-right:before {
  content: "\e936";
} /*--- 右>○黒　--- */
.icon-arrows-up-down:before {
  content: "\e935";
} /*--- 上下矢印　--- */
.icon-minus:before {
  content: "\e934";
} /*--- < - >　--- */
.icon-plus:before {
  content: "\e933";
} /*--- < + >　--- */
.icon-minus-circle:before {
  content: "\e932";
} /*--- (-)　--- */
.icon-plus-circle:before {
  content: "\e931";
} /*--- (+)　--- */
.icon-minus-square:before {
  content: "\e930";
} /*--- [-]　--- */
.icon-plus-square:before {
  content: "\e92f";
} /*--- [+]　--- */
.icon-ban:before {
  content: "\e92e";
} /*--- 禁止　--- */
.icon-search:before {
  content: "\e92d";
} /*--- 虫眼鏡　--- */
.icon-check:before {
  content: "\e92c";
} /*--- チェック　--- */
.icon-check-before:before {
  content: "\e92b";
} /*--- チェック前　--- */
.icon-check-after:before {
  content: "\e92a";
} /*--- チェック後-白　--- */
.icon-check-after02:before {
  content: "\e929";
} /*--- チェック後-黒　--- */
.icon-envelope00:before {
  content: "\e928";
} /*--- メール-白-空きあり　--- */
.icon-envelope01:before {
  content: "\e927";
} /*--- メール-白-空きなし　--- */
.icon-envelope02:before {
  content: "\e926";
} /*--- メール--○白　--- */
.icon-envelope03:before {
  content: "\e925";
} /*--- メール-黒　--- */
.icon-Xmark:before {
  content: "\e924";
  vertical-align: middle;
} /*--- X　--- */
.icon-question-circle:before {
  content: "\e923";
} /*--- はてなマーク-○　--- */
.icon-question-triangle:before {
  content: "\e922";
} /*--- はてなマーク-△　--- */
.icon-excl-triangle:before {
  content: "\e921";
} /*--- びっくりマーク-△　--- */
.icon-excl-circle:before {
  content: "\e920";
} /*--- びっくりマーク-○　--- */
.icon-user01:before {
  content: "\e91f";
} /*--- ユーザー白　--- */
.icon-user02:before {
  content: "\e91e";
} /*--- ユーザー黒　--- */
.icon-user-circle01:before {
  content: "\e91d";
} /*--- ユーザー-○白　--- */
.icon-user-circle02:before {
  content: "\e91a";
} /*--- ユーザー-●黒　--- */
.icon-PC:before {
  content: "\e919";
  vertical-align: middle;
} /*---PC　--- */
.icon-tablet:before {
  content: "\e918";
  vertical-align: middle;
} /*---タブレット　--- */
.icon-SP:before {
  content: "\e917";
  vertical-align: middle;
} /*---SP　--- */
.icon-reload:before {
  content: "\e916";
} /*--- 更新　--- */
.icon-upload:before {
  content: "\e915";
} /*--- アップロード　--- */
.icon-download:before {
  content: "\e914";
} /*--- ダウンロード　--- */
.icon-map-line:before {
  content: "\e913";
} /*--- 地図機能--線　--- */
.icon-map-polygon:before {
  content: "\e912";
} /*--- 地図機能--多角形　--- */
.icon-map-moji:before {
  content: "\e911";
} /*--- 地図機能--文字　--- */
.icon-map-moji-circle:before {
  content: "\e910";
} /*--- 地図機能--置き文字　--- */
.icon-pen:before {
  content: "\e90f";
} /*--- ペン　--- */
.icon-note-pen:before {
  content: "\e90e";
} /*--- ペン書き込み　--- */
.icon-schedule:before {
  content: "\e90d";
} /*--- スケジュール --- */
.icon-schedule-pen:before {
  content: "\e90c";
} /*--- スケジュールにペン　--- */
.icon-picture:before {
  content: "\e90b";
} /*--- ピクチャー画像　--- */
.icon-compare:before {
  content: "\e90a";
} /*--- 比較　--- */
.icon-detail:before {
  content: "\e909";
  position: relative;
  top: 2px;
} /*--- 詳細-絞り込み　--- */
.icon-flag:before {
  content: "\e908";
} /*--- 旗　--- */
.icon-cog:before {
  content: "\e907";
} /*--- 設定-白　--- */
.icon-cog02:before {
  content: "\e906";
} /*--- 設定-黒　--- */
.icon-trush:before {
  content: "\e905";
} /*--- ゴミ箱　--- */
.icon-Map02:before {
  content: "\e904";
  vertical-align: middle;
} /*--- Map　地図つき　--- */
.icon-Map01:before {
  content: "\e903";
} /*--- Map　--- */
.icon-PWD:before {
  content: "\e902";
} /*--- パスワード　--- */
.icon-company:before {
  content: "\e901";
} /*--- 企業コード　--- */
.icon-home:before {
  content: "\e900";
} /*--- ホーム　--- */
.ic-sm {
  font-size: 0.8em;
}

.ic-mm {
  font-size: 1.1em;
}

.ic-lg {
  font-size: 1.33em;
}

.ic-1x {
  font-size: 1.8em;
}

.ic-2x {
  font-size: 2em;
}

.ic-3x {
  font-size: 3em;
}

.ic-4x {
  font-size: 4em;
}

.ic-5x {
  font-size: 5em;
}

.ic-fw {
  padding-right: 0.3rem;
  text-align: center;
}

/* **************************************************************************************

 LINKS（linkのスタイル）/component/_link/

************************************************************************************** */
.link_alpha {
  transition: 0.3s;
}
.link_alpha:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.link_default {
  text-decoration: underline;
  transition: 0.3s;
}
.link_default:hover {
  color: #ea5454;
  transition: 0.3s;
}
.link_blue {
  color: #385cf5;
  text-decoration: underline;
  transition: 0.3s;
}
.link_blue:hover {
  color: #003caa;
  transition: 0.3s;
}

/* **************************************************************************************

 TABLE（テーブルのスタイル）/component/_table/)

************************************************************************************** */
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 15px;
  border: solid 1px #ccc;
  box-sizing: border-box;
  background: #fff;
}
.tbl th {
  background: #eee;
}
.tbl td.vcenter {
  vertical-align: middle;
}
.tbl td.bg-gray {
  background: #eee;
}

.tbl-line {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ccc;
}
.tbl-line th {
  border-top: 1px solid #ccc;
}
.tbl-line th, .tbl-line td {
  padding: 5px 10px;
  border-bottom: 1px solid #ccc;
}
.tbl-line tr:last-child th,
.tbl-line tr:last-child td {
  border-bottom: none;
  border-left: none;
}

.tbl-noLine {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.tbl-noLine thead {
  background: #e6edff;
}
.tbl-noLine th {
  border-top: 1px solid #ccc;
}
.tbl-noLine th, .tbl-noLine td {
  padding: 5px 10px;
}
.tbl-noLine th {
  text-align: center;
  color: #385cf5;
}
.tbl-noLine th:first-of-type, .tbl-noLine td:first-of-type {
  border-left: 1px solid #ccc;
}
.tbl-noLine th:last-of-type, .tbl-noLine td:last-of-type {
  border-right: 1px solid #ccc;
}
.tbl-noLine tr:last-child td {
  border-bottom: 1px solid #ccc;
}

.tbl-stripe tr:nth-child(even) td {
  background: rgb(255, 255, 255);
}

#tbl-hover {
  transition: 0.3s ease-in-out;
}
#tbl-hover tr:hover td {
  background-color: #e6edff;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.sticky-tbl {
  overflow-y: auto;
  height: 100%;
}
.sticky-tbl._280 {
  max-height: 280px;
}
.sticky-tbl._320 {
  max-height: 320px;
}
.sticky-tbl._460 {
  max-height: 460px;
}
.sticky-tbl table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  empty-cells: show;
}
.sticky-tbl table thead {
  z-index: 2;
  position: sticky;
  top: 0;
  background: #e6edff;
}
.sticky-tbl table th {
  border-top: 1px solid #ccc;
}
.sticky-tbl table th, .sticky-tbl table td {
  padding: 3px 10px;
  border-bottom: 1px solid #ccc;
}
.sticky-tbl table th {
  color: #385cf5;
}
.sticky-tbl table th:first-of-type, .sticky-tbl table td:first-of-type {
  border-left: 1px solid #ccc;
}
.sticky-tbl table th:last-of-type, .sticky-tbl table td:last-of-type {
  border-right: 1px solid #ccc;
}

.tbl-wrap { /*----- スクロールバー非表示-----*/
  overflow-x: scroll;
  width: 100%;
}
.tbl-wrap .tbl {
  width: 100%;
}
.tbl-wrap .tbl th,
.tbl-wrap .tbl td {
  padding: 15px;
  border: solid 1px #ccc;
  box-sizing: border-box;
  background: #fff;
}
.tbl-wrap .tbl th {
  background: #eee;
}
.tbl-wrap-y {
  overflow-y: scroll;
  width: 100%;
}
.tbl-wrap-y._right340 {
  overflow-y: auto;
  height: 100%;
  width: calc(100% + 5px);
}
.tbl-wrap-y._right340 table {
  width: calc(100% - 5px);
}
.tbl-wrap-map {
  overflow: hidden;
  width: 100%;
  height: 200px;
}

.tbl-wdth1 {
  width: 10px;
}

@media screen and (max-width: 62.5em) { /* -------- SP用のスタイル(1000px以下)-------- */
  .tbl {
    width: 100%;
  }
  .tbl th,
  .tbl td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .tbl tr:last-child {
    border-bottom: solid 1px #ccc;
  }
  .tbl-lineV .b-left {
    border-top: 1px solid #666;
    border-left: none;
    padding-left: 0;
  }
  .tbl-wrap .tbl {
    width: 100%;
  }
  .tbl-wrap .tbl th,
  .tbl-wrap .tbl td {
    display: table-cell;
  }
}
/* **************************************************************************************

 UL（ulのスタイル）/component/_ul/

************************************************************************************** */
.ul {
  display: block;
}
.ul li {
  text-indent: -1em;
  padding-left: 1em;
  padding-bottom: 1rem;
  line-height: 1.5;
}
.ul_default {
  padding: 1rem;
}
.ul_check li {
  padding-left: 1.5em;
  text-indent: -1.5em;
  padding-bottom: 1rem;
  line-height: 1.5;
}
.ul_check li::before {
  display: inline-block;
  position: relative;
  top: 5px;
  left: 15px;
  content: url("../imgs/check.svg");
  width: 100%;
  max-width: 25px;
}
.ul_number li {
  list-style: decimal;
  margin-left: 1rem;
  padding-bottom: 1rem;
  line-height: 1.5;
}
.ul_QA li {
  padding: 1rem 2rem;
  line-height: 1.7;
}
.ul_QA li:nth-child(odd) {
  background: rgba(0, 0, 0, 0.08);
}
.ul_QA li:nth-child(odd) p {
  position: relative;
  padding-left: 40px;
}
.ul_QA li:nth-child(odd) p::before {
  content: url("../imgs/Q.svg");
  width: 100%;
  max-width: 25px;
  position: absolute;
  left: 0;
  top: 0;
}
.ul_QA li:nth-child(even) {
  margin-bottom: 2rem;
}
.ul_QA li:nth-child(even) p {
  position: relative;
  padding-left: 40px;
}
.ul_QA li:nth-child(even) p::before {
  content: url("../imgs/A.svg");
  width: 100%;
  max-width: 25px;
  position: absolute;
  left: 0;
  top: 0;
}

/* **************************************************************************************

 BUTTON（ボタンのスタイル）/component/_btn/

************************************************************************************** */
.btn {
  text-align: center;
  word-break: keep-all;
  transition: 0.15s ease-in-out;
  cursor: pointer;
}
/*.btn {
  display: block;
  text-align: center;
  word-break: keep-all;
  transition: 0.15s ease-in-out;
  cursor: pointer;
}*/
.btn:hover {
  transition: 0.15s ease-in-out;
}
.btn._blue {
  color: #fff;
  background: #385cf5;
  border-radius: 6px;
}
.btn._blue:hover {
  background: #003caa;
}
.btn._blue-line {
  border: 2px solid #385cf5;
  background: #fff;
  color: #385cf5;
}
.btn._blue-line:hover {
  background: #385cf5;
  color: #fff;
}
.btn._red {
  display: flex;
  justify-content: center;
  color: #fff;
  background: #ea5454;
  border-radius: 6px;
}
.btn._red:hover {
  opacity: 0.7;
}
.btn._green {
  display: flex;
  justify-content: center;
  color: #fff;
  background: #00ad84;
  border-radius: 6px;
}
.btn._green:hover {
  opacity: 0.7;
}
.btn._white {
  background: #fff;
}
.btn._white:hover {
  background: #999;
  color: #fff;
}
.btn._white-line {
  color: #333;
  background: #fff;
  border: 2px solid #999;
}
.btn._white-line:hover {
  color: #385cf5;
  border: 2px solid #385cf5;
}
.btn._pdf {
  position: relative;
  padding: 0.5rem 1rem;
  border: 1px solid #666;
  border-left: 4px solid #666;
  background: #fff;
  color: inherit;
  font-weight: 300;
}
.btn._pdf ::after {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.3rem;
  content: "\e906";
  color: #666;
  font-family: "icomoon";
  font-size: 0.7rem;
  font-weight: 100;
}
.btn._pdf:hover {
  background: #666;
  color: #fff;
}
.btn._round {
  border-radius: 60px;
}
.btn._round6 {
  border-radius: 6px;
}
.btn._shadow {
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.1));
}
.btn._shadow-sharp {
  -webkit-filter: drop-shadow(10px 10px 0px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(10px 10px 0px rgba(0, 0, 0, 0.15));
}
.btn._w25 {
  width: 25px;
  height: 25px;
}
.btn._w50 {
  width: 50px;
}
.btn._w125 {
  width: 125px;
}
.btn._w150 {
  width: 150px;
}

.btn-img {
  display: block;
}
.btn-img:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.btn-txt._s {
  font-size: 14px;
}
.btn-txt._m {
  font-size: 16px;
}
.btn-txt._l {
  font-size: 20px;
}

.btn-mg {
  padding: 0.2rem;
}

.pluralBtn {
  height: 100%;
  display: block;
  padding: 0.1rem 0.25rem;
  color: #385cf5;
  background: #fff;
  border: 1px solid #385cf5;
  border-radius: 6px;
  font-size: 0.9rem;
  text-align: center;
  line-height: 2;
  word-break: keep-all;
  transition: 0.15s ease-in-out;
  cursor: pointer;
}
.pluralBtn:hover {
  background: #e6edff;
  color: #fff;
}

/* **************************************************************************************

 SELECT BOX（セレクトボックスのスタイル）/component/_select-box/

************************************************************************************** */
::-webkit-input-placeholder {
  color: #ccc;
}
:-ms-input-placeholder {
  color: #ccc;
}
::-ms-input-placeholder {
  color: #ccc;
}
::placeholder {
  color: #ccc;
}

:where(input, button, textarea, select) {
  line-height: 2;
  -webkit-appearance: none;
          appearance: none;
}

:where(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* -----------  全てチェック  ----------- */
.checks {
  display: none;
}

.checks-label {
  padding-left: 22px;
  position: relative;
}

.checks-label::after {
  position: absolute;
  top: 1px;
  left: 0;
  width: 30px;
  font-family: "icomoon" !important;
  display: inline-block;
  content: "\e92b";
  letter-spacing: 10px;
  color: #999;
  font-size: 1.2rem;
  line-height: 1;
}

/* チェック済み */
.checks:checked + .checks-label::after {
  content: "\e929";
  letter-spacing: 5px;
  color: #007fff;
}

.check-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid #ccc;
}

/* -----------  チェック  ----------- */
.one {
  display: none;
}

.check-one {
  padding-left: 22px;
  position: relative;
}

.check-one::after {
  position: absolute;
  top: -10px;
  left: 0;
  width: 30px;
  font-family: "icomoon" !important;
  display: inline-block;
  content: "\e92b";
  color: #999;
  font-size: 1.2rem;
}

/* チェック済み */
.one:checked + .check-one::after {
  position: absolute;
  top: -10px;
  left: 0;
  font-family: "icomoon" !important;
  display: inline-block;
  content: "\e929";
  letter-spacing: 5px;
  color: #007fff;
}

/* -----------  セレクトボックス  ----------- */
.select-wrap {
  overflow: hidden;
  text-align: center;
}
.select-wrap select {
  width: 100%;
  padding: 0 20px 0 10px;
  border: none;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
          appearance: none;
}
.select-wrap select ::-ms-expand {
  display: none;
}
.select-wrap.select-cont {
  position: relative;
  border: 1px solid #bbbbbb;
  border-radius: 6px;
  background: #ffffff;
  text-align: left;
}
.select-wrap.select-cont::before {
  position: absolute;
  top: 14px;
  right: 0.5em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #666666;
  pointer-events: none;
}
.select-wrap.select-cont._w150 {
  width: 150px;
}
.select-wrap.select-cont._w300 {
  width: 300px;
}
.select-wrap.select-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  text-align: left;
}
.select-wrap.select-box._w150 {
  width: 150px;
}
.select-wrap.select-box._w300 {
  width: 300px;
}
.select-wrap input, .select-wrap textarea {
  width: 100%;
  padding: 0 10px;
  font-size: 16px;
  border: 1px solid #bbbbbb;
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  text-align: left;
}
.select-wrap input:hover, .select-wrap textarea:hover {
  background-color: #eee;
}
.select-wrap input:focus, .select-wrap textarea:focus {
  background-color: #dee6fc;
  border: 1px solid #385cf5;
}
.select-wrap .forced-checkbox input {
  border: none;
}
.select-wrap .forced-checkbox input:hover {
  background: none;
}
.select-wrap .forced-checkbox input:focus {
  background: none;
  border: none;
}

/* -----------  テキストエリア  ----------- */
.text-area textarea {
  width: 100%;
  height: calc(9em + 22px);
  overflow: auto;
  max-width: 100%;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 6px;
  line-height: 1.5;
  text-align: left;
}
.text-area textarea:hover {
  background-color: #eee;
  border: 1px solid #bbb;
}
.text-area textarea:focus {
  background-color: #dee6fc;
  border: 1px solid #385cf5;
  box-shadow: none;
}
.text-area_100 {
  width: 100%;
  height: 100px;
  resize: none;
}

/* -----------  検索ボックス  ----------- */
/*フォーム全体を中央へ*/
.search_container {
  position: relative;
  height: 40px;
  padding: 0 10px;
  border-radius: 25px;
  border: 1px solid #ccc;
  background: #fff;
  overflow: hidden;
}
.search_container input[type=text] {
  position: relative;
  top: 0;
  left: 5px;
  width: 95%;
  height: 40px;
  margin: 0;
  border: none;
  font-size: 16px;
  text-align: left;
}
.search_container input[type=text]:focus {
  outline: 0;
  box-shadow: none;
}
.search_container input[type=submit] {
  position: absolute;
  width: 40px;
  height: 46px;
  right: 0px;
  top: -4px;
  padding-right: 4px;
  outline: none;
  border: none;
  color: #385cf5;
  font-family: "icomoon";
  content: "\e92d";
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.search_container input[type=submit]:hover {
  color: #fff;
  background: #385cf5;
  transition: 0.2s ease-in-out;
}

/* -----------  PWD自動生成  ----------- */
.pwd_container {
  position: relative;
  height: 40px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  overflow: hidden;
}
.pwd_container input[type=text] {
  position: relative;
  top: 0;
  width: 90%;
  margin: 0;
  border: none;
  font-size: 16px;
}
.pwd_container input[type=text]:focus {
  outline: 0;
}
.pwd_container input[type=submit] {
  position: absolute;
  width: 85px;
  height: 45px;
  right: 0px;
  top: -4px;
  outline: none;
  padding-left: 12px;
  border: none;
  background: #ddd;
  color: #666;
  cursor: pointer;
  font-family: "icomoon";
  transition: 0.2s ease-in-out;
}
.pwd_container input[type=submit]:hover {
  background: #ccc;
  transition: 0.2s ease-in-out;
}

.inputNoIcon {
  position: relative;
}
.inputNoIcon input[type=text] {
  padding: 0 10px;
}
.inputNoIcon input[type=password] {
  padding-left: 40px;
}
.inputNoIcon i {
  position: absolute;
  left: 0;
  top: 10px;
  padding: 9px 12px;
  color: #ccc;
  transition: 0.3s;
  font-weight: 600;
}

.checkbox {
  display: block;
}
.checkbox_ID input[type=checkbox] {
  display: inline-block;
  z-index: 1;
  position: relative;
  width: 150px;
  cursor: pointer;
}
.checkbox_ID input[type=checkbox]::after {
  display: inline-block;
  font-family: "icomoon" !important;
  content: "\e909";
  line-height: 1;
  font-size: 1.2rem;
}
.checkbox_ID input[type=checkbox]:checked:after {
  display: inline-block;
  font-family: "icomoon" !important;
  content: "\e907";
  color: #385cf5;
}
.checkbox_ID p {
  position: relative;
  left: -130px;
  display: inline-block;
}
.checkbox_check input[type=checkbox] {
  opacity: 1;
  visibility: inherit;
  position: relative;
  z-index: 1;
  width: 100%;
  display: inline-block;
  color: #666;
  text-align: center;
  cursor: pointer;
}
.checkbox_check input[type=checkbox]::after {
  display: inline-block;
  font-family: "icomoon" !important;
  content: "\e92b";
  font-size: 1.2rem;
}
.checkbox_check input[type=checkbox]:checked:after {
  display: inline-block;
  font-family: "icomoon" !important;
  content: "\e929";
  color: #385cf5;
}
.checkbox_check p {
  position: relative;
  left: -130px;
  display: inline-block;
}

/* -----------  プレースホルダーアイコン表示  ----------- */
.inputWithIcon {
  position: relative;
}

.inputWithIcon input[type=text] {
  padding-left: 25px;
}

.inputWithIcon i {
  position: absolute;
  left: 0;
  top: 7px;
  color: #aaa;
  transition: 0.3s;
  font-weight: 600;
}

/* -----------  検索条件タブ表示  ----------- */
.tab {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.tab-item + label {
  position: relative;
  align-items: center;
  display: flex;
  order: -1;
  gap: 5px;
  cursor: pointer;
  padding-right: 1rem;
  white-space: nowrap;
  text-align: center;
}
.tab-item + label::before {
  content: "";
  display: block;
  position: relative;
  left: 0;
  width: 15px;
  height: 15px;
  border: 2px solid #385cf5;
  border-radius: 50%;
}

.tab-content {
  width: 100%;
  padding: 0 1rem;
  display: none;
  overflow: hidden;
  color: #555;
}

.tab-item:checked + label::after {
  display: block;
  position: absolute;
  left: 4px;
  content: "";
  width: 7px;
  height: 7px;
  border: 2px solid #385cf5;
  background: #385cf5;
  border-radius: 50%;
}

.tab-item:checked + label + .tab-content {
  display: flex;
  padding: 0;
  color: #333;
}

/* -----------  CSVタブ表示  ----------- */
.file-button {
  width: 100%;
  max-width: 500px;
  cursor: pointer;
  border: 1px solid rgb(191, 194, 199);
  border-radius: 0.375rem;
  padding-right: 0.5rem;
  width: 24rem;
}

.file-button::-webkit-file-upload-button {
  padding: 0.5rem 1.5rem;
  margin-right: 1rem;
  color: #fff;
  background: #385cf5;
  cursor: pointer;
  border: none;
  border-right: 1px solid rgb(191, 194, 199);
  font-weight: 700;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.file-button::file-selector-button {
  padding: 0.5rem 1.5rem;
  margin-right: 1rem;
  color: #fff;
  background: #385cf5;
  cursor: pointer;
  border: none;
  border-right: 1px solid rgb(191, 194, 199);
  font-weight: 700;
  transition: 0.2s ease-in-out;
}
.file-button::-webkit-file-upload-button:hover {
  background: #003caa;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.file-button::file-selector-button:hover {
  background: #003caa;
  transition: 0.2s ease-in-out;
}

.block::-webkit-file-upload-button {
  display: block;
}

.block::file-selector-button {
  display: block;
}

.radio input[type=radio] {
  position: absolute;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  background: inherit;
  border-radius: 100%;
  border: 2px solid #aeaeae;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  top: 0.55rem;
  margin-right: 0.3rem;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #385cf5;
  box-shadow: inset 0 0 0 3px #fff;
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #385cf5;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.js-modal-open {
  position: absolute;
  right: 0;
  padding: 0 0.5rem;
}
.js-modal-open:hover {
  color: #385cf5;
}

/* **************************************************************************************

 ACCORDION（アコーディオンのスタイル）/component/_accordion/

************************************************************************************** */
.accordion-container {
  display: block;
}

summary {
  display: inline-block;
  cursor: pointer;
}

/* **************************************************************************************

 LIGHTBOX（ライトボックス、モーダルのスタイル）/component/_lightbox/

************************************************************************************** */
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 10px;
  text-align: center;
}
.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  vertical-align: middle;
  content: "";
}
.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 80%;
  max-width: 800px;
  padding: 30px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  vertical-align: middle;
}
.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  text-align: left;
}
.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
}
.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important;
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0.4s;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* -----オープン時はスクロール禁止----- */
html:has(.modal-wrapper:target) {
  overflow: hidden;
}

/* **************************************************************************************

 LINE（線のスタイル）/component/_line/

************************************************************************************** */
.line {
  border-bottom: 1px solid #ccc;
}

/* **************************************************************************************

 BADGE（バッジのスタイル）/component/_badge/

************************************************************************************** */
.badge_torihiki {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  padding: 0 0.2rem;
  color: #fff;
  background: #f2b436;
  border-radius: 4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.badge_mitei {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  padding: 0 0.2rem;
  color: #fff;
  background: #ea5454;
  border-radius: 4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.badge_sumi {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  padding: 0 0.2rem;
  color: #fff;
  background: #00ad84;
  border-radius: 4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.badge_aqua {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.5rem;
  background: #e6edff;
  border-radius: 4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.badge_aqua._w60 {
  width: 100%;
  max-width: 60px;
}
.badge_CSV-sumi {
  display: inline-block;
  padding: 0 0.5rem;
  color: #fff;
  background: #00ad84;
  border-radius: 4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.badge_CSV-mi {
  display: inline-block;
  padding: 0 0.5rem;
  color: #fff;
  background: #ccc;
  border-radius: 4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.badge_kengen01 {
  display: block;
  width: 50px;
  padding: 0 0.2rem;
  color: #666;
  background: #ddd;
  border-radius: 4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.badge_kengen02 {
  display: block;
  width: 50px;
  padding: 0 0.2rem;
  color: #666;
  background: #dbe5ff;
  border-radius: 4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.badge_kengen03 {
  display: block;
  width: 50px;
  padding: 0 0.2rem;
  color: #666;
  background: #fdd0d0;
  border-radius: 4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.badge_PC {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fac16c;
  color: #fac16c;
  background: #fff3e3;
  text-align: center;
  line-height: 25px;
}
.badge_SP {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #c6c6c6;
  color: #999;
  background: #f5f5f5;
  text-align: center;
  line-height: 23px;
}
.badge_tablet {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #6fc4bf;
  color: #6fc4bf;
  background: #daf7f5;
  text-align: center;
  line-height: 24px;
}

/* **************************************************************************************

 PAGE HEADER（ページヘッダ-のスタイル）/component/_page-header/

************************************************************************************** */
.page-header_ttl {
  height: 54px;
  display: flex;
  align-items: center;
  padding-left: 40px;
  border-bottom: 1px solid #cecece;
  color: #333;
  background: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

/* **************************************************************************************

 HEADER（ヘッダーのスタイル）/layout/_header/

************************************************************************************** */
.header {
  z-index: 999;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #cecece;
}
.header-logo {
  display: flex;
  flex-direction: column;
  margin-left: 25px;
  color: #000;
  font-size: 0.8rem;
  line-height: 1.5;
}
.header-logo img {
  height: 25px;
}
.header nav {
  display: flex;
}
.header-user {
  z-index: 999;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.header-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  color: #385cf5;
  font-size: 1.8rem;
  line-height: 1;
}
.header-mail:hover {
  transition: 0.3s;
  background: #e6edff;
}
.header .link {
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 15px;
  transition: 0.3s;
}
.header .link:hover {
  color: #385cf5;
}
.header .link:focus-within {
  color: #385cf5;
}
.header .link-hover::after {
  font-family: "icomoon";
  content: "\e944";
  color: #666;
  font-size: 10px;
  font-weight: 900;
}
.header .H-drop {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
  background-color: #e6edff;
  color: initial;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
}
.header .H-drop_list {
  display: flex;
  flex-direction: column;
}
.header .H-drop_link {
  padding: 10px 20px;
  transition: ease-in-out 0.15s;
}
.header .H-drop_item a {
  display: block;
}
.header .link:hover > .H-drop,
.header .link:focus-within > .H-drop {
  display: block;
}
.header .H-drop_link:hover,
.header .H-drop_link:focus {
  background: rgba(56, 92, 245, 0.5);
  transition: ease-in-out 0.15s;
}

/* **************************************************************************************

 MAIN（メインコンテンツのスタイル）/layout/_main/

************************************************************************************** */
.main_default {
  width: calc(100% - 80px);
  margin: 0 auto;
  line-height: 2;
}
.main_center {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
}
.main_center h1 {
  padding-bottom: 2rem;
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.main_center h2 {
  padding-bottom: 2rem;
  color: #000;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.content {
  position: relative;
  height: 100%;
  padding-bottom: 10px;
}
.content_right {
  position: relative;
  top: 22px;
  margin-left: 48px;
  transition: 0.5s;
}

/* **************************************************************************************

 NAVI（ナビのスタイル）/layout/_nav/

************************************************************************************** */
/* ===============================================
左ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  z-index: 10;
  position: fixed;
  left: 0;
  top: 50px;
  width: 49px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #003caa;
  padding: 0 10px;
  cursor: pointer;
}
.hamburger input[name=nav01-open] {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 1;
}
.hamburger input[name=nav01-open]:checked + .hamburger::before {
  display: none !important;
}
.hamburger input[name=nav01-open] .hamburger label::before {
  display: none !important;
}
.hamburger input[name=nav01-open] .hamburger label::after {
  width: 100%;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "";
  width: 30%;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s;
  top: 25px;
}

.hamburger span::before {
  top: -7px;
  width: 15px;
}

.hamburger span::after {
  top: 7px;
  width: 15px;
}

input[name=nav01-open]:checked + .hamburger {
  z-index: 10;
  position: fixed;
  left: 110px;
  top: 51px;
  height: 49px;
  padding: 0 25px;
  transition: 0.5s;
}
input[name=nav01-open]:checked + .hamburger span {
  background-color: transparent;
}
input[name=nav01-open]:checked + .hamburger span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 100%;
}
input[name=nav01-open]:checked + .hamburger span::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
  width: 100%;
}

input[name=nav01-open]:checked ~ .nav01 {
  left: 0;
  transition: 0.5s;
  overflow-y: auto;
}

#nav01-open:checked ~ .content_right {
  margin-left: 160px;
  transition: 0.5s;
}

/* ===============================================
左メニューのスタイリング
=============================================== */
.nav01 {
  position: fixed;
  width: 160px;
  height: 100%;
  top: 51px;
  left: -250px;
  padding: 49px 0 20px 0;
  color: #fff;
  background: #003caa;
  font-weight: 700;
  transition: all 0.5s;
}
.nav01-item a {
  display: block;
  padding: 5px 5px 5px 10px;
  transition: all 0.2s ease-in-out;
}
.nav01-item a:hover {
  color: #385cf5;
  background: #f7f7f7;
  transition: all 0.2s ease-in-out;
}
.nav01 details {
  height: 40px;
  padding: 0px;
  transition: 0.6s;
  color: #fff;
  background: #003caa;
}
.nav01 details[open] {
  height: auto;
}
.nav01 details[open] summary::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  color: #003caa;
}
.nav01 details[open] .child {
  display: flex;
  flex-direction: column;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}
.nav01 details[open] .child a {
  display: block;
  padding: 0.25rem;
  text-indent: 27px;
}
.nav01 details[open] .child a:hover {
  color: #385cf5;
  background: #f7f7f7;
  transition: ease-in-out 0.2s;
}
.nav01 details[open] .child a:focus {
  color: #385cf5;
  background: #f7f7f7;
  transition: ease-in-out 0.2s;
  -webkit-transform: none;
          transform: none;
}
.nav01 summary::-webkit-details-marker {
  display: none;
}
.nav01 summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 5px 5px 5px 10px;
  float: none;
}
.nav01 summary::after {
  -webkit-transform: translateY(-25%) rotate(45deg);
          transform: translateY(-25%) rotate(45deg);
  width: 9px;
  height: 9px;
  margin-left: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: inline-block;
  margin-left: auto;
  margin-right: 15px;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.current {
  background: #f7f7f7;
  color: #385cf5;
}
.current a {
  transition: 0.3s;
}
.current:hover {
  color: #003caa;
  background: #e6edff !important;
  transition: 0.3s;
}

/* ===============================================
右ハンバーガーボタンのスタイリング
=============================================== */
.hamburger-map {
  z-index: 999;
  right: 0;
  top: 100px;
  height: 40px;
  width: 40px;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.25));
  cursor: pointer;
}
.hamburger-map input[name=nav02-open] {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 1;
}
.hamburger-map input[name=nav02-open]:checked::before {
  display: none !important;
}
.hamburger-map input[name=nav02-open] .hamburger-map label::before {
  display: none !important;
}
.hamburger-map input[name=nav02-open] .hamburger-map label::after {
  width: 100%;
}

.hamburger-map span,
.hamburger-map span::before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "icomoon";
  content: "\e90e";
  color: #385cf5;
  font-size: 1.3rem;
}

input[name=nav02-open]:checked + .hamburger-map {
  z-index: 999;
  position: fixed;
  right: 0;
  top: 102px;
  padding: 0 25px;
  font-weight: 700;
  -webkit-filter: none;
          filter: none;
}
input[name=nav02-open]:checked + .hamburger-map span::before {
  font-family: "icomoon";
  content: "\e924";
  top: -8px;
  color: #666;
  font-size: 0.7rem;
}

input[name=nav02-open]:checked ~ .nav02 {
  right: 0;
  transition: 0.5s;
  overflow-y: auto;
}

/* ===============================================
右メニューのスタイリング
=============================================== */
.nav02 {
  z-index: 10;
  position: fixed;
  width: 220px;
  height: 100%;
  top: 100px;
  right: -230px;
  padding: 49px 0 20px 0;
  background: #fff;
  border-left: 1px solid #ccc;
  -webkit-filter: drop-shadow(0 10px 6px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 10px 6px rgba(0, 0, 0, 0.25));
  transition: all 0.5s;
}
.nav02-ttl {
  position: relative;
  top: -35px;
  left: 20px;
  font-weight: 700;
}
.nav02-list {
  position: relative;
  top: -20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.nav02-item {
  position: absolute;
  left: 0;
  display: block;
  padding: 15px;
  color: #333;
}
.nav02-result {
  position: relative;
  left: -15px;
  width: 120%;
  background: #eee;
  padding: 15px;
}
.nav02 select,
.nav02 ::picker(select) {
  -webkit-appearance: base-select;
          appearance: base-select;
}
.nav02 select:hover,
.nav02 select:focus {
  background: #ddd;
}
.nav02 details {
  height: 42px;
  transition: 0.6s;
  color: #666;
  background: #eee;
}
.nav02 details[open] {
  height: auto;
}
.nav02 details[open] summary::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  color: #003caa;
}
.nav02 details[open] .child {
  padding: 0.23rem;
  text-indent: 27px;
  display: block;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}
.nav02 details[open] .child:hover {
  color: #385cf5;
  background: #f7f7f7;
  transition: ease-in-out 0.2s;
}
.nav02 details[open] summary {
  color: #fff;
  background: #003caa;
}
.nav02 summary::-webkit-details-marker {
  display: none;
}
.nav02 summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  padding: 10px;
  height: 42px;
}
.nav02 summary:hover {
  background: #003caa;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.current {
  background: #f7f7f7;
  color: #385cf5;
}
.current a {
  transition: 0.3s;
}
.current:hover {
  color: #003caa;
  background: #e6edff !important;
  transition: 0.3s;
}

/* **************************************************************************************

 BREAD CRUMBS

************************************************************************************** */
.breadcrumbs {
  padding-bottom: 0.5rem;
}
.breadcrumbs li {
  display: inline;
  font-size: 0.9rem;
}
.breadcrumbs li a {
  text-decoration: underline;
  color: #385cf5;
}
.breadcrumbs li a:hover {
  color: #385cf5;
  transition: 0.3s;
}
.breadcrumbs li + li::before {
  position: relative;
  top: -2px;
  display: inline-block;
  padding: 0 0.3rem;
  content: "\e942";
  font-family: "icomoon";
  font-size: 0.5rem;
  font-weight: 900;
}
.breadcrumbs li + li:last-child {
  text-decoration: none;
}

/* **************************************************************************************

 FOOTER（フッターのスタイル）/layout/_footer/

************************************************************************************** */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  position: relative;
  background: #385cf5;
  overflow: hidden;
}
.footer::before {
  content: "";
  display: inline-block;
  background: url(../imgs/logo-footer.svg);
  background-repeat: no-repeat;
  width: 85%;
  height: 250px;
  position: absolute;
  z-index: 0;
  opacity: 0.5;
  bottom: -80px;
  right: -50px;
}

.footer-inner {
  padding: 0;
  color: #fff;
  width: 100%;
  z-index: 1;
}

.footer-wrap_SNS a {
  padding: 0 0.5rem;
}

@media print, screen and (min-width: 62.5em) { /* -------- PC用のスタイル(1000px以上)-------- */
  .footer {
    /*フッターが大きいため*/
    /*padding: 2rem 0;*/
  }
  .footer::before {
    content: "";
    width: 800px;
    height: 400px;
    position: absolute;
    bottom: -50px;
    right: 0;
  }
  .footer-inner {
    padding: 2rem 0;
    width: 100%;
    max-width: 1000px;
  }
  .footer-wrap_SNS {
    padding: 1rem 0;
    text-align: center;
  }
  .footer-wrap_SNS a {
    padding: 0 0.5rem;
  }
}