@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; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
  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)) {
  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;
}

:where(input) {
  margin-right: 0.25rem;
}

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

BASE

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

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

/* =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%;
}

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

 VIMAGE（ヒーローヘッダーのスタイル）/page/home/_vimage/

************************************************************************************** */
.vimage {
  position: relative;
  width: 100%;
  padding: 1.5rem 1.5rem 0;
}
.vimage .no-webp .vimage { /* No-WebP for Legacy Browser */
  background-image: url("../imgs/header.jpg");
}

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

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

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

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

************************************************************************************** */
.color_blue {
  color: #0080ff !important;
}
.color_blue-bg {
  background: #0080ff !important;
}
.color_blue-bg_transparentize {
  background: #e6edff;
}
.color_navy {
  color: #001866 !important;
}
.color_navy-bg {
  background: 1d43b1 !important;
}
.color_green {
  color: #00a527 !important;
}
.color_green-bg {
  background: #00a527 !important;
}
.color_green-bg_transparentize {
  background: rgba(0, 165, 39, 0.08);
}
.color_green-light {
  color: #1abd76;
}
.color_green-light-bg {
  background: #1abd76 !important;
}
.color_green-light-bg_transparentize {
  background: rgba(22, 147, 93, 0.08);
}
.color_red {
  color: #ff0000 !important;
}
.color_red-bg {
  background: #ff0000 !important;
}
.color_red-bg_transparentize {
  background: rgba(255, 0, 0, 0.15);
}
.color_purple {
  color: #a01664 !important;
}
.color_yellow {
  color: #fff146 !important;
}
.color_yellow-bg {
  background: #fff146 !important;
}
.color_orange {
  color: #ff6700 !important;
}
.color_gray {
  color: #666;
}
.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% - 160px);
  margin: 0 auto;
}
.main_right {
  width: 100%;
  position: relative;
  background: url(../imgs/bg-right.png);
  background-size: 216px;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: -1;
}
.main_right_wrap {
  position: relative;
}
.main_right_wrap img {
  position: absolute;
  width: 500px;
  right: 0;
  top: 5rem;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .main_right_wrap img {
    top: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .main_right_wrap img {
    position: relative;
    top: 0;
    margin: 0 auto;
  }
}
.main_right .txtBG {
  z-index: 1;
  display: inline;
  padding: 0.25rem 0.1rem;
  background: #fff;
  color:#000;
  line-height: 2.5;
  -webit-box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  word-break: break-all;
}
.main_right .right_wrap-left {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 1fr;
}
@media screen and (max-width: 767px) {
  .main_right .right_wrap-left {
    grid-template-columns: 1fr;
  }
}
.main_left {
  width: 100%;
  position: relative;
  background: url(../imgs/bg-left.png);
  background-size: 216px;
  background-position: left top;
  background-repeat: no-repeat;
  z-index: 0;
}
.main_left h3 {
  font-family: century-gothic, sans-serif;
}

.history {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.history img {
  width: 20%;
}
.history div {
  width: 10rem;
}

.SNS {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.SNS::after {
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  margin-top: -100px;
  margin-bottom: -100px;
  background-color: #fff146;
}

@media screen and (max-width: 62.5em) { /* -------- SP用のスタイル(1000px以下)-------- */
  .main_default {
    width: calc(100% - 2rem);
  }
  .main_right {
    width: 100%;
  }
  .history img {
    width: 50%;
  }
}
/* **************************************************************************************

 GNAVI（グローバルナビのスタイル）/project/_gnav/

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

 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;
}
.mlr-0 {
  margin-left: 0rem !important;
  margin-right: 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;
}
.plr-0 {
  padding-left: 0rem !important;
  padding-right: 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;
}
.mlr-1 {
  margin-left: 1rem !important;
  margin-right: 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;
}
.plr-1 {
  padding-left: 1rem !important;
  padding-right: 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;
}
.mlr-2 {
  margin-left: 2rem !important;
  margin-right: 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;
}
.plr-2 {
  padding-left: 2rem !important;
  padding-right: 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;
}
.mlr-3 {
  margin-left: 3rem !important;
  margin-right: 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;
}
.plr-3 {
  padding-left: 3rem !important;
  padding-right: 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;
}
.mlr-4 {
  margin-left: 4rem !important;
  margin-right: 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;
}
.plr-4 {
  padding-left: 4rem !important;
  padding-right: 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;
}
.mlr-5 {
  margin-left: 5rem !important;
  margin-right: 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;
}
.plr-5 {
  padding-left: 5rem !important;
  padding-right: 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;
}
.mlr-025 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}
.mg-025 {
  margin: 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;
}
.mlr-05 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.mg-05 {
  margin: 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;
}
.pd-025 {
  padding: 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;
}
.pd-05 {
  padding: 0.5rem !important;
}

.logo-area {
  position: relative;
  top: -5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -7rem;
}
.logo-area_wrap {
  z-index: 1;
  position: relative;
  bottom: 10px;
}
.logo-area_wrap::before {
  content: "";
  display: block;
  width: 15rem;
  height: 15rem;
  background: #fff;
  border-radius: 50%;
}
.logo-area_logo {
  position: relative;
  top: -12rem;
  width: 70%;
  margin: 0 auto;
}
.logo-area_moji {
  z-index: 1;
  position: relative;
  top: -10rem;
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .logo-area_moji {
    width: 100%;
  }
}

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

 BREAD CRUMBS

************************************************************************************** */
.breadcrumbs {
  padding-bottom: 0.5rem;
}
.breadcrumbs li {
  display: inline;
  font-size: 0.9rem;
}
.breadcrumbs li a {
  text-decoration: underline;
  color: #0080ff;
}
.breadcrumbs li a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.breadcrumbs li + li::before {
  position: relative;
  top: -2px;
  display: inline-block;
  padding: 0 0.3rem;
  content: "\e90d";
  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: row;
  align-items: center;
  justify-content: center;
}
.footer_info {
  padding-right: 5rem;
}
.footer_logo {
  width: 250px;
}
.footer_contactBtn {
  position: relative;
  z-index: 10;
  margin: 50px;
  padding: 20px;
  width: 100%;
  display: block;
  color: #fff;
  background: #000;
  border: 1px solid black;
  text-align: center;
  text-decoration: none;
  word-break: keep-all;
  transition: 0.15s ease-in-out;
  cursor: pointer;
}
.footer_contactBtn::after {
  content: "";
  position: absolute;
  top: 5px;
  right: -7px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid #000;
}
.footer_contactBtn:hover {
  background: #666;
  transition: 0.15s ease-in-out;
}
.footer_contactBtn span::after {
  display: block;
  position: absolute;
  right: 10px;
  top: 0;
  background: url(../imgs/RUGBY-DAY.svg) no-repeat center center;
  background-size: contain;
  color: #fff;
  padding-left: 10px;
}
.footer_policy {
  display: flex;
  flex-direction: row;
  justify-items: center;
  align-items: center;
  gap: 20px;
}
.footer_policy a {
  font-size: 0.8rem;
  transition: all 0.2s;
}
.footer_policy a::before {
  position: relative;
  bottom: 0.1rem;
  padding-right: 0.2rem;
  font-family: "icomoon";
  content: "\e90d";
  font-size: 0.5rem;
}
.footer_policy a:hover {
  text-decoration: underline;
  color: #0080ff;
  transition: all 0.2s;
}
.footer_copyright {
  font-size: 0.75rem;
  color: #666;
}
.footer_link {
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  font-size: 0.8rem;
}
.footer_link li {
  padding-bottom: 0.5rem;
}
.footer_link a {
  transition: all 0.2s;
}
.footer_link a:hover {
  text-decoration: underline;
  color: #0080ff;
  transition: all 0.2s;
}

/* -----------  PAGETOP（TOPへ戻るのスタイル）  ----------- */
#pagetop {
  position: fixed;
  bottom: 120px;
  right: 20px;
  z-index: 11;
}
#pagetop a {
  display: block;
  z-index: 999;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 0.5em;
  background-image: linear-gradient(160deg, #00ff6b, #22d3ee 80%);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  padding-top: 25px;
}
#pagetop a:hover {
  opacity: 0.8;
  transition: 0.3s;
}
#pagetop i {
  font-size: 2.2em;
}

.icon-gotop::before {
  content: "\e90e";
  font-family: "icomoon";
  font-weight: 900;
  display: inline-block;
}

@media screen and (max-width: 62.5em) { /* -------- SP用のスタイル(1000px以下)-------- */
  #pagetop {
    display: none !important;
  }
  .footer {
    flex-direction: column;
  }
  .footer_info {
    padding: 0 0 3rem 0;
  }
  .footer_link {
    gap: 0;
  }
}
/* **************************************************************************************

 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));
}
.box_pre {
  color: #ff6700;
  border: 3px solid #ff6700;
}
.box_elementary {
  color: #77c9d8;
  border: 3px solid #77c9d8;
}
.box_junior {
  color: #72bb2d;
  border: 3px solid #72bb2d;
}
.box_highschool {
  color: #e24793;
  border: 3px solid #e24793;
}
/* **************************************************************************************

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

************************************************************************************** */
.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  word-break: keep-all;
  transition: 0.15s ease-in-out;
}
.btn:hover {
  transition: 0.15s ease-in-out;
}
.btn._blue {
  color: #fff;
  background: #0080ff;
  border-radius: 6px;
  padding: 0.8rem;
}
.btn._blue:hover {
  background: #001866;
}
.btn._blue-line {
  border: 2px solid #0080ff;
  background: #fff;
  color: #0080ff;
}
.btn._blue-line:hover {
  background: #0080ff;
  color: #fff;
}
.btn._red {
  display: flex;
  justify-content: center;
  color: #fff;
  background: #ff0000;
  border-radius: 6px;
}
.btn._red:hover {
  opacity: 0.7;
}
.btn._green {
  color: #fff;
  background: #1abd76;
  border-radius: 6px;
  padding: 0.8rem;
}
.btn._green:hover {
  background: #00a527;
}
.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: #0080ff;
  border: 2px solid #0080ff;
}
.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;
}

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

 FLEX /component/_flex/

************************************************************************************** */
.flex {
  display: flex;
  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;
  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;
  flex-direction: column;
  align-items: center;
}
.flex_center_column._gap30 {
  grid-gap: 30px;
}
.flex_center_row {
  display: flex;
  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;
  flex-direction: column;
  justify-content: flex-start;
}
.flex_start._gap15 {
  grid-gap: 15px;
}
.flex_start._gap30 {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;
}
.flex_end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.flex_end._gap30 {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;
}
.flex_between {
  display: flex;
  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;
}

@media screen and (min-width: 62.5em) {
  .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;
  }
}
/* **************************************************************************************

 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;
}

.italic {
  font-style: italic;
}

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

.under-line02 {
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #000;
}

.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;
}

.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;
  }
}
/* =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?ra47zk");
  src: url("../font/icomoon.eot?ra47zk#iefix") format("embedded-opentype"), url("../font/icomoon.ttf?ra47zk") format("truetype"), url("../font/icomoon.woff?ra47zk") format("woff"), url("../font/icomoon.svg?ra47zk#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: "\e90e";
} /*--- 上　--- */
.icon-chevron-down:before {
  content: "\e90b";
} /*--- 下　--- */
.icon-chevron-left:before {
  content: "\e90c";
} /*--- 左　--- */
.icon-chevron-right:before {
  content: "\e90d";
} /*--- 右　--- */
.icon-caret:before {
  content: "\e906";
} /*--- 矢印▲　--- */
.icon-caret:before {
  content: "\e903";
} /*--- 矢印▼　--- */
.icon-caret:before {
  content: "\e904";
} /*--- 矢印◀︎　--- */
.icon-caret:before {
  content: "\e905";
} /*--- 矢印▶︎　--- */
.icon-minus:before {
  content: "\e922";
} /*--- [-]　--- */
.icon-plus:before {
  content: "\e913";
} /*--- [+]　--- */
.icon-search:before {
  content: "\e92c";
} /*--- 虫眼鏡　--- */
.icon-check-before:before {
  content: "\e90a";
} /*--- チェック　--- */
.icon-check-before:before {
  content: "\e909";
} /*--- チェック前　--- */
.icon-check-after:before {
  content: "\e907";
} /*--- チェック後-白　--- */
.icon-check-after02:before {
  content: "\e908";
} /*--- チェック後-黒　--- */
.icon-envelope00:before {
  content: "\e91b";
} /*--- メール-白-空きあり　--- */
.icon-envelope01:before {
  content: "\e91a";
} /*--- メール-白-空きなし　--- */
.icon-envelope02:before {
  content: "\e919";
} /*--- メール--○白　--- */
.icon-envelope03:before {
  content: "\e900";
} /*--- メール-黒　--- */
.icon-Xmark:before {
  content: "\e932";
  vertical-align: middle;
} /*--- X　--- */
.icon-question-circle:before {
  content: "\e929";
} /*--- はてなマーク-○　--- */
.icon-question-triangle:before {
  content: "\e928";
} /*--- はてなマーク-△　--- */
.icon-excl-triangle:before {
  content: "\e917";
} /*--- びっくりマーク-△　--- */
.icon-excl-circle:before {
  content: "\e916";
} /*--- びっくりマーク-○　--- */
.icon-user01:before {
  content: "\e901";
} /*--- ユーザー白　--- */
.icon-user01:before {
  content: "\e902";
} /*--- ユーザー黒　--- */
.icon-user-circle01:before {
  content: "\e931";
} /*--- ユーザー-○白　--- */
.icon-user-circle02:before {
  content: "\e933";
} /*--- ユーザー-●黒　--- */
.icon-close:before {
  content: "\e932";
} /*--- 閉じる-X　--- */
.icon-PC:before {
  content: "\e926";
  vertical-align: middle;
} /*---PC　--- */
.icon-tablet:before {
  content: "\e92e";
  vertical-align: middle;
} /*---タブレット　--- */
.icon-SP:before {
  content: "\e92d";
  vertical-align: middle;
} /*---SP　--- */
.icon-reload:before {
  content: "\e92a";
} /*--- 更新　--- */
.icon-upload:before {
  content: "\e930";
} /*--- アップロード　--- */
.icon-download:before {
  content: "\e915";
} /*--- ダウンロード　--- */
.icon-note:before {
  content: "\e924";
} /*--- ノート書き込み　--- */
.icon-pen:before {
  content: "\e927";
} /*--- ペン　--- */
.icon-schedule:before {
  content: "\e92b";
} /*--- スケジュール --- */
.icon-note-pen:before {
  content: "\e923";
} /*--- スケジュールにペン　--- */
.icon-flag:before {
  content: "\e918";
} /*--- 旗　--- */
.icon-cog:before {
  content: "\e90f";
} /*--- 設定-白　--- */
.icon-cog02:before {
  content: "\e910";
} /*--- 設定-黒　--- */
.icon-trush:before {
  content: "\e92f";
} /*--- ゴミ箱　--- */
.icon-company:before {
  content: "\e911";
} /*--- 会社　--- */
.icon-Map01:before {
  content: "\e920";
} /*--- Map　--- */
.icon-PWD:before {
  content: "\e925";
  vertical-align: middle;
} /*--- パスワード　--- */
.icon-company:before {
  content: "\e911";
  vertical-align: middle;
} /*--- 企業コード　--- */
.ic-ss {
  font-size: 0.6em;
}

.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;
}

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

 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));
  }
}
/* **************************************************************************************

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

************************************************************************************** */
.line_top {
  border-top: 1px solid #ccc;
}
.line_bottom {
  border-bottom: 1px solid #ccc;
}
.line_tb {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.line_colorful:before {
  position: relative;
  width: 100%;
  height: 5px;
  display: block;
  content: "";
  background: linear-gradient(to right, #5746ff 0%, #5746ff 10%, #42f91c 10%, #42f91c 20%, #f842a1 20%, #f842a1 30%, #fdef2b 30%, #fdef2b 40%, #ba44ff 40%, #fdef2b 40%, #ba44ff 40%, #ba44ff 50%, #43f8ff 50%, #43f8ff 50%, #43f8ff 50%, #43f8ff 50%, #43f8ff 60%, #43f8ff 60%, #f842a1 60%, #f842a1 70%, #fdef2b 70%, #fdef2b 80%, #5746ff 80%, #5746ff 90%, #42f91c 90%, #42f91c 100%);
}

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

 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: #ff0000;
  transition: 0.3s;
}
.link_blue {
  color: #0080ff;
  text-decoration: underline;
  transition: 0.3s;
}
.link_blue:hover {
  color: #001866;
  transition: 0.3s;
}

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

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

************************************************************************************** */
.heading {
  align-items: center;
  display: flex;
  justify-content: center;
}
.heading:before, .heading::after {
  background-color: #000;
  border-radius: 5px;
  content: "";
  height: 3px;
  width: 40px;
}
.heading span {
  background: linear-gradient(transparent 70%, #fff146 50%);
}
.heading::before {
  margin-right: 10px;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.heading::after {
  margin-left: 10px;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

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

 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;
}

:where(:focus-visible) {
  outline: none;
  box-shadow: 0 0 5px rgba(23, 162, 255, 0.5);
}

/* -----------  セレクトボックス  ----------- */
.select-wrap {
  overflow: hidden;
  text-align: center;
}
.select-wrap select {
  width: 100%;
  height: 100%;
  padding: 0 15px 0 10px;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  vertical-align: inherit;
}
.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.7em;
  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;
  padding: 0 10px;
  border: 1px solid #bbbbbb;
  border-radius: 6px;
  background: #ffffff;
  text-align: left;
}
.select-wrap.select-box input[type=text] {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  border: none;
  font-size: 16px;
}
.select-wrap.select-box input[type=text]:focus {
  outline: 0;
}
.select-wrap.select-box._w150 {
  width: 150px;
}
.select-wrap.select-box._w300 {
  width: 300px;
}

/* -----------  テキストエリア  ----------- */
.text-area {
  width: 100%;
  height: calc(9em + 22px);
  padding: 10px;
  border: 1px solid #bbbbbb;
  border-radius: 6px;
  background: #fff;
  line-height: 1.5;
  text-align: left;
}
.text-area textarea {
  overflow: auto;
  max-width: 100%;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
}

.checkbox {
  display: 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: "\e909";
  line-height: 1;
  font-size: 1.2rem;
}
.checkbox_check input[type=checkbox]:checked:after {
  display: inline-block;
  font-family: "icomoon" !important;
  content: "\e907";
  color: #0080ff;
}
.checkbox_check p {
  position: relative;
  left: -130px;
  display: inline-block;
}

/************************************
** お問い合わせフォームの入力
************************************/
.wpcf7 .screen-reader-response {
  display: none;
}

.wpcf7-response-output {
  display: none;
}

.wpcf7-select {
  margin: 10px 10px 0 0;
  padding: 8px 15px;
  border: 1px solid #d0d5d8;
  border-radius: 3px;
  background-color: #eff1f5;
  font-size: inherit;
}

#cf-tbl table {
  width: 100%;
  border-collapse: collapse;
  border: solid #CCC;
  border-width: 1px;
  color: #444;
}

#cf-tbl table tr th,
#cf-tbl table tr td {
  padding: 0.5em;
  text-align: left;
  vertical-align: top;
  border: 1px solid #CCC;
  vertical-align: middle;
}

#cf-tbl table tr th {
  width: 35%;
  background: #eee;
  color: #000;
}

@media (max-width: 62.5em) { /* スマホ---------------------------------------------------1000px以下 */
  #cf-tbl table,
  #cf-tbl table tbody,
  #cf-tbl table tr,
  #cf-tbl table tr th,
  #cf-tbl table tr td {
    display: block;
  }
  #cf-tbl table {
    border-width: 0 0 1px 0;
  }
  #cf-tbl table tr th,
  #cf-tbl table tr td {
    width: 100%;
    padding: 3% 5%;
  }
  #cf-tbl table tr td {
    border-width: 0px 1px 0px 1px;
  }
}
/*「必須」文字デザイン*/
.required {
  margin-right: 5px;
  padding: 5px;
  font-size: 0.8em;
  background: #ff0000;
  color: #fff;
  font-weight: 700;
  border-radius: 3px;
}

/*「任意」文字デザイン*/
.optional {
  margin-right: 5px;
  padding: 5px;
  font-size: 0.8em;
  font-weight: 700;
  background: #999;
  color: #fff;
  border-radius: 3px;
}

/* 入力項目を見やすく */
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  margin: 10px 10px 0 0;
  padding: 8px 15px;
  border: 1px solid #d0d5d8;
  border-radius: 3px;
  background: #eff1f5;
  font-size: inherit;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  height: 200px;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999;
  background: #eff1f5 !important;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999;
  background: #eff1f5 !important;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #999;
  background: #eff1f5 !important;
}

input::placeholder, textarea::placeholder {
  color: #999;
  background: #eff1f5 !important;
}

input:-ms-input-placeholder {
  background: #eff1f5 !important;
}

input:placeholder-shown {
  background: #eff1f5 !important;
}

/* 「送信する」ボタン */
input.wpcf7-submit {
  display: block;
  padding: 15px;
  width: 400px;
  background: #0080ff;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  margin: 2rem auto;
  cursor: pointer;
}

@media (max-width: 62.5em) { /* スマホ---------------------------------------------------1000px以下 */
  input.wpcf7-submit {
    width: 250px;
  }
}
input.wpcf7-submit:hover {
  background-color: #1f6ab3;
  transition: 0.3s ease-in-out;
}

/* エラーメッセージを見やすく */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
  color: red;
  font-weight: 600;
}

/* プライバシーポリシーに同意 */
input.accept-wp {
  -webkit-appearance: auto;
          appearance: auto;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-acceptance {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  background: #fff;
  color: #000;
  font-weight: inherit;
}

.wpcf7-list-item-label {
  font-size: 18px;
}

.accept-wp {
  vertical-align: middle;
}

/* エラーメッセージの上部を消去 */
div.screen-reader-response {
  display: none;
}

.wpcf7 input[type=file] {
  cursor: pointer;
}

.wpcf7 input[type=file]:disabled {
  cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 input[type=url],
.wpcf7 input[type=email],
.wpcf7 input[type=tel] {
  direction: ltr;
}

.wpcf7-reflection > output {
  display: list-item;
  list-style: none;
}

.wpcf7-reflection > output[hidden] {
  display: none;
}

.wpcf7-spinner {
  display: none !important;
}

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

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

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

.tbl-line {
  width: 100%;
  border-collapse: collapse;
}
.tbl-line th,
.tbl-line td {
  padding: 1rem;
  border-bottom: solid 1px #ccc;
  box-sizing: border-box;
}
.tbl-line td.vtop {
  vertical-align: top;
}
.tbl-line td.bg-gray {
  background: #eee;
}

.tbl-wrap { /*----- スクロールバー非表示-----*/
  overflow-x: scroll;
  width: 100%;
  border-collapse: collapse;
}
.tbl-wrap_250 {
  overflow: auto;
  height: 250px;
}

.tbl-scr {
  width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
}
.tbl-scr th,
.tbl-scr td {
  padding: 5px 10px;
  border: solid 1px #ccc;
  box-sizing: border-box;
}
.tbl-scr th {
  background: #eee;
}
.tbl-scr tr:last-child {
  border-bottom: solid 1px #ccc;
}
.tbl-scr td.vcenter {
  vertical-align: middle;
}
.tbl-scr td.bg-gray {
  background: #eee;
}

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

 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_number li {
  margin-left: 2rem;
  padding-left: 0.5em;
  padding-bottom: 1rem;
  list-style: decimal;
  line-height: 1.7;
}

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

 TIMELINE（timelineのスタイル）/component/_timeline/

************************************************************************************** */
.timeline {
  list-style: none;
  padding: 20px 100px;
  position: relative;
  top: 100px;
}
.timeline::before {
  position: absolute;
  top: 0;
  bottom: 100px;
  left: 50%;
  width: 3px;
  content: " ";
  background: #eee;
  margin-left: -1.5px;
  margin-bottom: 5rem;
}
.timeline li:nth-child(2) {
  margin-top: 0;
}
.timeline li:nth-child(9) {
  position: relative;
  top: -50px;
}
.timeline li:nth-child(10) {
  position: relative;
  top: -50px;
}
.timeline li:nth-child(12) {
  position: relative;
  top: 25px;
}

.tldate {
  display: block;
  width: 150px;
  background: #fff;
  border-radius: 50px;
  margin: 0 auto;
  padding: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-top: -50px;
}
.tldate-blue {
  color: #0080ff;
  border: 3px solid #0080ff;
}
.tldate-green {
  color: #00a527;
  border: 3px solid #00a527;
}
.tldate-navy {
  color: #001866;
  border: 3px solid #001866;
}
.tldate-red {
  color: #ff0000;
  border: 3px solid #ff0000;
}
.tldate-gray {
  color: #666;
  background: #eee;
  border: 3px solid #666;
}
.tldate-black {
  color: #000;
  border: 3px solid #000;
}
.tldate-purple {
  color: #a01664;
  border: 3px solid #a01664;
}
.tldate-orange {
  color: #ff6700;
  border: 3px solid #ff6700;
}

.timeline li {
  position: relative;
  margin-top: -25px;
  /** timeline panels **/
}
.timeline li::before, .timeline li::after {
  content: " ";
  display: table;
}
.timeline li::after {
  clear: both;
}
.timeline li::before, .timeline li::after {
  content: " ";
  display: table;
}
.timeline li .timeline-panel {
  width: 40%;
  float: left;
  background: #fff;
  border: 1px solid #d4d4d4;
  padding: 20px;
  position: relative;
  top: -70px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  /** panel arrows **/
}
.timeline li .timeline-panel::before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  content: " ";
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
}
.timeline li .timeline-panel::after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " ";
}
.timeline li .timeline-panel .noarrow::before, .timeline li .timeline-panel .noarrow::after {
  top: 0;
  right: 0;
  display: none;
  border: 0;
}

.timeline li.timeline-inverted .timeline-panel {
  float: right;
}
.timeline li.timeline-inverted .timeline-panel::before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}
.timeline li.timeline-inverted .timeline-panel::after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.timeline li.timeline-center {
  width: 300px;
  display: block;
  margin: 0 auto;
  margin-top: -20px;
  background: #ccc;
  text-align: center;
}

/** timeline content **/
.tl-heading {
  text-align: center;
}
.tl-heading h4 {
  margin: 0;
  color: #000;
  font-weight: 700;
}

.tl-body {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media screen and (max-width: 62.5em) { /* -------- SP用のスタイル(1000px以下)-------- */
  .timeline {
    padding: 20px;
  }
  .timeline::before {
    left: 25px;
  }
  .timeline li {
    margin-bottom: 25px;
  }
  .timeline li:nth-child(2) {
    position: relative;
    top: -25px;
  }
  .timeline li:nth-child(9) {
    position: relative;
    top: -50px;
  }
  .timeline li:nth-child(10) {
    position: relative;
    top: -75px;
  }
  .timeline li:nth-child(12) {
    position: relative;
    top: 0;
  }
  .timeline li .timeline-panel {
    width: 80%;
    margin: 70px 60px 0 0;
  }
  .timeline li .tldate {
    position: relative;
    top: -20px;
    left: -10px;
    margin: 0;
  }
  .timeline li .timeline-panel {
    float: right;
    width: 85%;
    margin: 80px 15px 0 0;
  }
  .timeline li .timeline-panel::before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }
  .timeline li .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
  .timeline li.timeline-center {
    width: 100%;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #000;
    color: #eee;
  }
 .txtBG{
	 color:#000;
	}
}