@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;
}

/* **************************************************************************************

 MAIN（メインコンテンツのスタイル）/layout/_main/

************************************************************************************** */
/* **************************************************************************************

 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;
}

.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;
}

/* **************************************************************************************

 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;
}

/* **************************************************************************************

 BOX（boxのスタイル）/component/_box/

************************************************************************************** */
.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));
}

/* **************************************************************************************

 BUTTON（ボタンのスタイル）/component/_btn/

************************************************************************************** */
.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._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;
}

/* **************************************************************************************

 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;
}

/* **************************************************************************************

 BUTTON（ボタンのスタイル）/component/_btn/

************************************************************************************** */
.login-mapIcon {
  position: absolute;
  top: -35px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  color: #385cf5;
}

input[type=text], input[type=password] {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  margin: 8px 0;
  outline: none;
  padding: 4px;
  box-sizing: border-box;
  transition: 0.3s;
  font-size: 18px;
}

label::after {
  content: "";
  clear: both;
  display: block;
}

.inputWithIcon {
  position: relative;
}
.inputWithIcon input[type=text] {
  padding-left: 40px;
}
.inputWithIcon input[type=password] {
  padding-left: 40px;
}
.inputWithIcon i {
  position: absolute;
  left: 0;
  top: 8px;
  padding: 9px 12px;
  color: #aaa;
  transition: 0.3s;
  font-weight: 600;
}

.ID {
  display: none;
}

.ID-label {
  padding-left: 28px;
  position: relative;
}

.ID-label::after {
  position: absolute;
  top: 0;
  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;
}

/* チェック済み */
.ID:checked + .ID-label::after {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "icomoon" !important;
  display: inline-block;
  content: "\e929";
  letter-spacing: 5px;
  color: #007fff;
}


/* 追加分 */
/* **************************************************************************************

 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;
}


.ic-fw {
    padding-right: 0.3rem;
    text-align: center;
}


/* =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-user01:before {
    content: "\e91f";
}
/*--- ユーザー白　--- */
.icon-user02:before {
    content: "\e91e";
}
/*--- ユーザー黒　--- */
.icon-envelope02:before {
    content: "\e926";
}
/*--- メール--○白　--- */

/* ===============================================
左メニューのスタイリング
=============================================== */
.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;
    }

/* **************************************************************************************

 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;
    }

