@charset "UTF-8";
/*
====>> サイトの共通パーツに関するデフォルトスタイリング <<====

・このファイルはベースのスタイルに加え、サイト(案件)毎にスタイルを記述していく
・ヘッダー、ナビゲーション、フッター、パンくずなどの各ページに対して1つのパーツをスタイルするファイル

*/
/*
====>> サイトの基準値になる値を持つファイル <<====

・このファイルはベースのスタイルになるので、原則オーバーライド(上書き)はしない事
・幅の値等をここに記載
・ただし、基本設定に加えてサイトに応じて新たなプロパティ追加が必要な場合はここに記述する

*/
/*		基本設定：幅
-----------------------------------------------------*/
:root {
  --w-liquid: 100%;
  --w-solid-base: 1100px;
  --w-solid-wide: 1280px;
  --w-solid-short: 980px;
  --w-2column-main: 700px;
  --w-2column-aside: 290px;
  --w-3column-main: 640px;
  --w-3column-right: 150px;
  --w-3column-left: 150px;
}

@media screen and (max-width: 767px) {
  :root {
    --w-liquid: 92%;
    --w-solid-base: 92%;
    --w-solid-wide: 92%;
    --w-solid-short: 92%;
    --w-2column-main: 92%;
    --w-2column-aside: 92%;
    --w-3column-main: 92%%;
    --w-3column-right: 92%;
    --w-3column-left: 92%;
  }
}
/*  END Break Point  */
/*		基本設定：フォント
-----------------------------------------------------*/
:root {
  --base-sans-serif:"Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  --base-serif:"游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/*		基本設定：カラー
-----------------------------------------------------*/
:root {
  --color-base: #0069B3;
  --color-white: #fff;
  --color-black: #333;
  --color-gray:#999;
  --color-red: #f00;
  --color-blue: #0069B3;
}

/*		新規追加設定：カラー
-----------------------------------------------------*/
:root {
  --color-black:#222;
  --color-green: #10AB81;
  --color-paleorange: #FFBC61;
  --color-orange:#F67D2D;
  --color-base: var(--color-green);
}

/*		新規追加設定：フォント
-----------------------------------------------------*/
:root {
  --base-sans-serif: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

/*
====>> 動きや表示の状態を表すデフォルトスタイリング <<====

・このファイルはベースのスタイルになるので、原則オーバーライド(上書き)はしない事
・サイトのパーツ等のスタイルを格納するファイル

*/
/*		線
-----------------------------------------------------*/
.is-border_wrap {
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid currentColor;
}

.is-border {
  box-sizing: border-box;
  border: 1px solid currentColor;
}

/*		リストスタイル
-----------------------------------------------------*/
.c-list.is-dotted {
  padding: 20px;
  list-style-type: disc;
}
.c-list.is-dotted li {
  padding: 20px 20px 20px 0;
}

.c-list.is-number {
  padding: 20px;
  list-style: decimal;
}
.c-list.is-number li {
  padding: 20px 20px 20px 0;
}

/*		ディスプレイ
-----------------------------------------------------*/
.is-flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .is-flex {
    flex-direction: column;
  }
}
.is-hide {
  display: none;
}

.is-show {
  opacity: 1;
  visibility: visible;
}

/*		カラー指定
-----------------------------------------------------*/
.is-text-black {
  color: var(--color-black);
}

.is-text-gray {
  color: var(--color-gray);
}

/*		テキスト装飾
-----------------------------------------------------*/
.is-strong {
  font-weight: bold;
}

/*		位置
-----------------------------------------------------*/
.is-left {
  text-align: left;
}

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

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

/*		スクロール制御
-----------------------------------------------------*/
.is-scroll_off {
  overflow: hidden;
}

.is-scroll_on {
  overflow: auto;
}

/*
====>> サイトのレイアウトに関わるデフォルトスタイリング <<====

・このファイルはベースのスタイルになるので、原則オーバーライド(上書き)はしない事
・共通パーツの大まかレイアウトやサイトの幅に関するスタイルを格納

*/
/*		コンテンツタイプと幅
-----------------------------------------------------*/
.l-wrapper {
  width: 100%;
  max-width: 100%;
  max-width: 100vw;
  max-width: 100dvw;
  overflow: hidden;
}

.l-container_short {
  width: var(--w-liquid);
  max-width: var(--w-solid-short);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-container_short {
    padding: 0 20px;
  }
}

.l-container {
  width: var(--w-liquid);
  max-width: var(--w-solid-base);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-container {
    padding: 0 20px;
  }
}
.l-container > .l-inner {
  width: 100%;
  max-width: var(--w-solid-short);
  margin: 0 auto;
  padding: 0 20px;
}

.l-container_wide {
  width: var(--w-liquid);
  max-width: var(--w-solid-wide);
  margin: auto;
}
@media screen and (min-width: 768px) {
  .l-container_wide {
    padding: 0 20px;
  }
}
.l-container_wide > .l-inner {
  width: 100%;
  max-width: var(--w-solid-short);
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .l-container_short {
    padding: 0;
  }
  .l-container {
    padding: 0;
  }
  .l-container > .l-inner {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .l-container_wide {
    padding: 0;
  }
  .l-container_wide > .l-inner {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
.l-container.l-2column {
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.l-container.l-2column .l-main {
  width: 100%;
  max-width: var(--w-2column-main);
  margin: auto;
}

.l-container.l-2column .l-aside {
  width: 100%;
  max-width: var(--w-2column-aside);
  margin: auto;
}

.l-container.l-3column {
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.l-container.l-3column .l-main {
  width: 100%;
  max-width: var(--w-3column-main);
  margin: auto;
}

.l-container.l-3column .l-aside-right {
  width: 100%;
  max-width: var(--w-3column-right);
  margin: auto;
}

.l-container.l-3column .l-aside-left {
  width: 100%;
  max-width: var(--w-3column-left);
  margin: auto;
}

.l-inner {
  max-width: var(--w-solid-wide);
  margin: auto;
}

/*
====>> 再利用可能なパーツのデフォルトスタイリング <<====

・このファイルはベースのスタイルになるので、原則オーバーライド(上書き)はしない事
・タグに依存しないベースのコンポーネントパーツ
・単体、あるいはパーツ単位で独立した仕様のスタイル

*/
/*		見出し
-----------------------------------------------------*/
.c-title_l {
  font-size: 36px;
}

.c-title_m {
  font-size: 28px;
}

.c-title_s {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .c-title_l {
    font-size: 20px;
  }
  .c-title_m {
    font-size: 18px;
  }
  .c-title_s {
    font-size: 16px;
  }
}
/*		リスト
-----------------------------------------------------*/
.c-list li {
  padding: 20px;
  box-sizing: border-box;
}

ul.c-list_plain > li {
  position: relative;
  padding-left: 20px;
}
ul.c-list_plain > li::before {
  content: "・";
  position: absolute;
  left: 0;
  font-size: inherit;
}

ol.c-list_plain > li {
  counter-increment: mycounter;
}
ol.c-list_plain > li::before {
  content: counter(mycounter, decimal-leading-zero) ".";
  display: inline-block;
  font-size: inherit;
  margin-right: 0.3em;
}

/*		ボタン
-----------------------------------------------------*/
.c-btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px 5%;
  flex-wrap: wrap;
}

.c-link_btn {
  position: relative;
  color: #fff;
  background: var(--color-black);
  border: 2px solid var(--color-black);
  padding: 10px 40px;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}
.c-link_btn ::file-selector-button {
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.c-link_btn.is-arrow::after, .c-link_btn.is-arrow_under::after {
  content: "▶";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-size: 10px;
  line-height: 0;
  transition: all 0.2s ease-in-out;
}
.c-link_btn.is-arrow_under::after {
  transform: rotate(90deg);
}
@media (hover: hover) {
  .c-link_btn:hover {
    background-color: #fff;
    opacity: 1;
    color: var(--color-black);
    text-decoration: none;
  }
  .c-link_btn:hover::after {
    color: currentColor;
  }
}
@media (hover: hover) {
  .c-link_btn.is-arrow:hover::after {
    right: 4%;
  }
}

.c-link_btn_arrow {
  position: relative;
  border: 1px solid var(--color-border-pale);
  padding: 10px 40px;
  display: inline-block;
  color: var(--theme-main);
}
.c-link_btn_arrow:after {
  content: "→";
  position: absolute;
  top: auto;
  right: 5%;
}
@media (hover: hover) {
  .c-link_btn_arrow:after:hover {
    right: -5%;
  }
}
@media (hover: hover) {
  .c-link_btn_arrow:hover {
    opacity: 1;
    color: var(--theme-main);
    text-decoration: none;
  }
}

.c-news_list li {
  display: flex;
  border-bottom: dashed 1px #333;
}
.c-news_list li a {
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (hover: hover) {
  .c-news_list li a:hover {
    color: blue;
    color: var(--color-blue);
    color: var(--color-base);
  }
}
.c-news_list li .c-news_cat {
  min-width: 120px;
  font-size: 12px;
  text-align: center;
  border: 1px solid currentColor;
  border-radius: 6px;
}

@media screen and (max-width: 767px) {
  /*SP以下 表示*/
  .c-news_list li a {
    flex-wrap: wrap;
  }
  .c-news_list li a p {
    width: 100%;
  }
}
/*END SP以下 表示*/
/*		パンくずリスト
-----------------------------------------------------*/
.c-breadcrumb {
  width: var(--w-liquid);
  padding: 5px 0;
  box-sizing: border-box;
}
.c-breadcrumb ol, .c-breadcrumb ul,
.c-breadcrumb .c-breadcrumb-list {
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 5px;
  padding: 4px 6px;
  background-color: #efefef;
  overflow-y: none;
}
.c-breadcrumb ol li, .c-breadcrumb ul li,
.c-breadcrumb .c-breadcrumb-list li {
  color: var(--color-font-base);
  font-size: 13px;
}
.c-breadcrumb ol li:not(:last-child):after, .c-breadcrumb ul li:not(:last-child):after,
.c-breadcrumb .c-breadcrumb-list li:not(:last-child):after {
  content: ">";
  display: inline-block;
  margin: 0 -1px 0 1px;
}
.c-breadcrumb ol li a, .c-breadcrumb ul li a,
.c-breadcrumb .c-breadcrumb-list li a {
  color: var(--color-font-base);
  display: inline-block;
  font-size: 13px;
}
@media (hover: hover) {
  .c-breadcrumb ol li a:hover, .c-breadcrumb ul li a:hover,
  .c-breadcrumb .c-breadcrumb-list li a:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .c-breadcrumb li,
  .c-breadcrumb li a {
    font-size: 12px;
  }
}
/*  END Break Point  */
/*		ページャー
-----------------------------------------------------*/
/* 複数ページタイプ */
.c-pagination,
.wp-pagenavi {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 10px;
  width: -moz-max-content;
  margin: 30px auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-pagination .c-pagination,
  .c-pagination .wp-pagenavi,
  .wp-pagenavi .c-pagination,
  .wp-pagenavi .wp-pagenavi {
    gap: 10px;
  }
}
.c-pagination .c-pagination_prev,
.c-pagination .c-pagination_page,
.c-pagination .c-pagination_next,
.c-pagination .c-pagination_first,
.c-pagination .c-pagination_last,
.c-pagination .previouspostslink,
.c-pagination .prev,
.c-pagination .nextpostslink,
.c-pagination .next,
.c-pagination .page,
.c-pagination .page-numbers,
.c-pagination .is-current,
.c-pagination .current,
.c-pagination .first,
.c-pagination .last,
.wp-pagenavi .c-pagination_prev,
.wp-pagenavi .c-pagination_page,
.wp-pagenavi .c-pagination_next,
.wp-pagenavi .c-pagination_first,
.wp-pagenavi .c-pagination_last,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .prev,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .next,
.wp-pagenavi .page,
.wp-pagenavi .page-numbers,
.wp-pagenavi .is-current,
.wp-pagenavi .current,
.wp-pagenavi .first,
.wp-pagenavi .last {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 5px;
  min-width: 50px;
  min-height: 50px;
  padding: 3px 5px;
  border: 1px solid currentColor;
  color: var(--color-base);
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination .c-pagination_prev,
  .c-pagination .c-pagination_page,
  .c-pagination .c-pagination_next,
  .c-pagination .c-pagination_first,
  .c-pagination .c-pagination_last,
  .c-pagination .previouspostslink,
  .c-pagination .prev,
  .c-pagination .nextpostslink,
  .c-pagination .next,
  .c-pagination .page,
  .c-pagination .page-numbers,
  .c-pagination .is-current,
  .c-pagination .current,
  .c-pagination .first,
  .c-pagination .last,
  .wp-pagenavi .c-pagination_prev,
  .wp-pagenavi .c-pagination_page,
  .wp-pagenavi .c-pagination_next,
  .wp-pagenavi .c-pagination_first,
  .wp-pagenavi .c-pagination_last,
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .prev,
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .next,
  .wp-pagenavi .page,
  .wp-pagenavi .page-numbers,
  .wp-pagenavi .is-current,
  .wp-pagenavi .current,
  .wp-pagenavi .first,
  .wp-pagenavi .last {
    min-width: 38px;
    min-height: 38px;
  }
}
@media (hover: hover) {
  .c-pagination .c-pagination_prev:hover,
  .c-pagination .c-pagination_page:hover,
  .c-pagination .c-pagination_next:hover,
  .c-pagination .c-pagination_first:hover,
  .c-pagination .c-pagination_last:hover,
  .c-pagination .previouspostslink:hover,
  .c-pagination .prev:hover,
  .c-pagination .nextpostslink:hover,
  .c-pagination .next:hover,
  .c-pagination .page:hover,
  .c-pagination .page-numbers:hover,
  .c-pagination .is-current:hover,
  .c-pagination .current:hover,
  .c-pagination .first:hover,
  .c-pagination .last:hover,
  .wp-pagenavi .c-pagination_prev:hover,
  .wp-pagenavi .c-pagination_page:hover,
  .wp-pagenavi .c-pagination_next:hover,
  .wp-pagenavi .c-pagination_first:hover,
  .wp-pagenavi .c-pagination_last:hover,
  .wp-pagenavi .previouspostslink:hover,
  .wp-pagenavi .prev:hover,
  .wp-pagenavi .nextpostslink:hover,
  .wp-pagenavi .next:hover,
  .wp-pagenavi .page:hover,
  .wp-pagenavi .page-numbers:hover,
  .wp-pagenavi .is-current:hover,
  .wp-pagenavi .current:hover,
  .wp-pagenavi .first:hover,
  .wp-pagenavi .last:hover {
    opacity: 0.7;
    color: #fff;
    background-color: var(--color-base);
  }
}
.c-pagination .page-numbers.dots,
.c-pagination .extend,
.wp-pagenavi .page-numbers.dots,
.wp-pagenavi .extend {
  border: none;
  pointer-events: none;
}
.c-pagination .is-current,
.c-pagination .current,
.wp-pagenavi .is-current,
.wp-pagenavi .current {
  color: #fff;
  background-color: var(--color-base);
}
@media (hover: hover) {
  .c-pagination .is-current:hover,
  .c-pagination .current:hover,
  .wp-pagenavi .is-current:hover,
  .wp-pagenavi .current:hover {
    opacity: 1;
  }
}
.c-pagination .previouspostslink,
.c-pagination .prev,
.c-pagination .nextpostslink,
.c-pagination .next,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .prev,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .next {
  position: relative;
  overflow: hidden;
  text-indent: -999%;
}
.c-pagination .previouspostslink::before,
.c-pagination .prev::before,
.c-pagination .nextpostslink::before,
.c-pagination .next::before,
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .prev::before,
.wp-pagenavi .nextpostslink::before,
.wp-pagenavi .next::before {
  content: "";
  display: block;
  width: 0.89em;
  height: 0.89em;
  border-top: solid 2px;
  position: absolute;
  transform-origin: center;
  color: inherit;
  transition: 0.3s ease;
}
.c-pagination .previouspostslink::before,
.c-pagination .prev::before,
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .prev::before {
  border-left: solid 2px;
  top: 50%;
  left: 37%;
  transform: rotate(-45deg);
  transform-origin: top left;
}
.c-pagination .nextpostslink::before,
.c-pagination .next::before,
.wp-pagenavi .nextpostslink::before,
.wp-pagenavi .next::before {
  border-right: solid 2px;
  top: 50%;
  right: 37%;
  transform: rotate(45deg);
  transform-origin: top right;
}
.c-pagination .c-pagination_first,
.c-pagination .c-pagination_last,
.wp-pagenavi .c-pagination_first,
.wp-pagenavi .c-pagination_last {
  width: -moz-max-content;
  width: max-content;
}

/* 前後ページナビゲーション */
.c-pagination_adjacent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 540px;
  margin: 0 auto;
  margin-top: 60px;
}
.c-pagination_adjacent .c-pagination_prev,
.c-pagination_adjacent .c-pagination_next {
  min-width: 80px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  letter-spacing: 0.06em;
  transition: 0.3s ease;
}
.c-pagination_adjacent .c-pagination_prev {
  justify-content: flex-start;
}
.c-pagination_adjacent .c-pagination_next {
  justify-content: flex-end;
}
.c-pagination_adjacent .c-pagination_prev::before,
.c-pagination_adjacent .c-pagination_next::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: solid 2px;
  border-right: solid 2px;
  transform-origin: center;
  color: inherit;
  transition: 0.3s ease;
}
.c-pagination_adjacent .c-pagination_prev::before {
  position: relative;
  left: 0;
  transform: rotate(-135deg);
  transition: 0.3s ease;
}
.c-pagination_adjacent .c-pagination_next::after {
  position: relative;
  right: 0;
  transform: rotate(45deg);
  transition: 0.3s ease;
}
.c-pagination_adjacent .c-pagination_back {
  justify-content: center;
  font-weight: bold;
  text-align: center;
  min-width: 80px;
}
@media (hover: hover) {
  .c-pagination_adjacent .c-pagination_prev:hover,
  .c-pagination_adjacent .c-pagination_next:hover,
  .c-pagination_adjacent .c-pagination_back:hover {
    color: var(--color-base);
  }
}
@media (hover: hover) {
  .c-pagination_adjacent .c-pagination_prev:hover::before {
    left: -5px;
  }
}
@media (hover: hover) {
  .c-pagination_adjacent .c-pagination_next:hover::after {
    right: -5px;
  }
}
.c-pagination_adjacent .c-pagination_empty {
  min-width: 100px;
}

/*		詳細
--------------------------*/
.c-pagination_single {
  margin-top: 40px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.c-pagination_single .c-pagination_prev {
  text-align: left;
}
.c-pagination_single .c-pagination_back {
  text-align: center;
}
.c-pagination_single .c-pagination_next {
  text-align: right;
}

/*		テーブル
-----------------------------------------------------*/
.c-table_plain {
  width: 100%;
}
.c-table_plain th {
  background: #efefef;
  width: 20%;
  padding: 20px;
  border-bottom: solid 1px #ccc;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}
.c-table_plain td {
  padding: 20px 30px;
  border-bottom: solid 1px #ccc;
}

@media screen and (max-width: 767px) {
  .c-table_plain thead, .c-table_plain tbody, .c-table_plain tfoot, .c-table_plain tr {
    display: block;
    width: 100%;
  }
  .c-table_plain th, .c-table_plain td {
    width: 100%;
    padding: 20px;
    display: block;
  }
}
.c-table_two_tone {
  width: 100%;
}
.c-table_two_tone th {
  width: 30%;
  padding: 20px;
  border-bottom: solid 1px var(--color-border-pale);
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}
.c-table_two_tone tr:nth-child(2n) > th {
  background: var(--color-base);
  width: 30%;
  padding: 20px;
  border-bottom: solid 1px var(--color-border-pale);
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}
.c-table_two_tone td {
  width: 70%;
  padding: 20px 30px;
  border-bottom: solid 1px var(--color-border-pale);
}
.c-table_two_tone tr:nth-child(2n) > td {
  background: var(--color-base);
  width: 70%;
  padding: 20px 30px;
  border-bottom: solid 1px var(--color-border-pale);
}

@media screen and (max-width: 767px) {
  .table_two_tone th,
  table.two_tone td {
    width: 100%;
    padding: 20px 0px;
    display: block;
  }
}
/*		googlemap
-----------------------------------------------------*/
.c-gmap {
  position: relative;
  aspect-ratio: 100/75; /* 比率を4:3に固定 */
  overflow: hidden;
}
.c-gmap iframe, .c-gmap object, .c-gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*		movie  iframeのwidthとheightは削除すること！
-----------------------------------------------------*/
.c-movie {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* 比率を16:9に固定 */
  overflow: hidden;
}
.c-movie iframe, .c-movie object, .c-movie embed, .c-movie video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*		定義リスト
-----------------------------------------------------*/
.c-dl-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 2%;
}
.c-dl-flex dt {
  float: left;
  font-weight: bold;
  width: 80px;
}
.c-dl-flex dd {
  width: calc(98% - 80px);
}

/*		アコーディオンコンテンツ .scratch.jsに記述あり
-----------------------------------------------------*/
summary::-webkit-details-marker {
  display: none;
}

details::details-content {
  content-visibility: unset;
  display: block grid;
}
@media (prefers-reduced-motion: no-preference) {
  details::details-content {
    transition-duration: 300ms;
    transition-property: grid-template-rows;
  }
}
details:not([open])::details-content {
  grid-template-rows: 0fr;
}
details[open]::details-content {
  grid-template-rows: 1fr;
}

.c-accordion {
  list-style: none;
  /*アコーディオンで現れるエリア*/
}
.c-accordion_label {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  text-align: left;
  padding: 20px 50px 20px 20px;
  transition: all 0.5s ease;
  list-style-type: none;
  /*　is-openというクラスがついたら形状変化　*/
}
.c-accordion_label::before, .c-accordion_label::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
  transition: all 0.2s linear;
}
.c-accordion_label::before {
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(0deg);
}
.c-accordion_label::after {
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(90deg);
}
.c-accordion[open] .c-accordion_label::before, .c-accordion[open] .c-accordion_label::after {
  transform: rotate(0);
}
.c-accordion[open] .c-accordion_label::after {
  opacity: 0;
}
.c-accordion_box {
  overflow: hidden;
}
.c-accordion_box .l-inner {
  padding: 0 20px 20px;
}

/*		GLIDカード
-----------------------------------------------------*/
.c-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px 2%;
  margin-left: auto;
  margin-right: auto;
}
.c-card-grid_item {
  display: grid;
  grid-row: span 4;
  gap: 6.5px;
  grid-template-rows: subgrid;
}
.c-card-grid_item > a {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  gap: inherit;
}
.c-card-grid_image {
  width: 100%;
  text-align: center;
}
.c-card-grid_title {
  font-size: 24px;
}
.c-card-grid_title, .c-card-grid_text {
  margin-top: 20px;
  text-align: justify;
}
.c-card-grid.c-card_2 {
  grid-template-columns: repeat(auto-fit, minmax(435px, 1fr));
}
@media screen and (max-width: 767px) {
  .c-card-grid.c-card_2 {
    grid-template-columns: none;
  }
}
.c-card-grid.c-card_3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
@media (max-width: 500px) {
  .c-card-grid.c-card_3 {
    grid-template-columns: none;
  }
}
.c-card-grid.c-card_4 {
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
}
@media (max-width: 400px) {
  .c-card-grid.c-card_4 {
    grid-template-columns: none;
  }
}
.c-card-grid.c-card_5 {
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
}
@media (max-width: 300px) {
  .c-card-grid.c-card_5 {
    grid-template-columns: none;
  }
}
.c-card-grid.c-card_6 {
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
}
@media (max-width: 200px) {
  .c-card-grid.c-card_6 {
    grid-template-columns: none;
  }
}
.c-card-grid.c-card_7 {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}
@media (max-width: 200px) {
  .c-card-grid.c-card_7 {
    grid-template-columns: none;
  }
}
.c-card-grid.c-card_8 {
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
}
@media (max-width: 150px) {
  .c-card-grid.c-card_8 {
    grid-template-columns: none;
  }
}

/* END .c-card-grid */
@media screen and (max-width: 767px) {
  .c-card-grid_title {
    font-size: 20px;
  }
  .c-card-grid_title, .c-card-grid_text {
    margin-top: 15px;
  }
}
/*  END Break Point  */
/*		FLEXカード
-----------------------------------------------------*/
.c-card-flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px 3%;
  /* END c-card_2 */
  /* END c-card_3 */
  /* END c-card_4 */
  /* END c-card_5 */
  /* END c-card_6 */
  /* END c-card_7 */
  /* END c-card_8 */
}
.c-card-flex.c-card_2 .c-card-flex_item {
  width: 48.5%;
}
.c-card-flex.c-card_3 .c-card-flex_item {
  width: 31.3333333333%;
}
@media screen and (max-width: 767px) {
  .c-card-flex.c-card_3 .c-card-flex_item {
    width: 100%;
  }
}
.c-card-flex.c-card_4 .c-card-flex_item {
  width: 22.75%;
}
@media screen and (max-width: 767px) {
  .c-card-flex.c-card_4 .c-card-flex_item {
    width: 48.5%;
  }
}
.c-card-flex.c-card_5 .c-card-flex_item {
  width: 17.6%;
}
@media screen and (max-width: 767px) {
  .c-card-flex.c-card_5 .c-card-flex_item {
    width: 100%;
  }
}
.c-card-flex.c-card_6 .c-card-flex_item {
  width: 14.1666666667%;
}
@media screen and (max-width: 767px) {
  .c-card-flex.c-card_6 .c-card-flex_item {
    width: 48.5%;
  }
}
.c-card-flex.c-card_7 .c-card-flex_item {
  width: 11.7142857143%;
}
@media screen and (max-width: 767px) {
  .c-card-flex.c-card_7 .c-card-flex_item {
    width: 100%;
  }
}
.c-card-flex.c-card_8 .c-card-flex_item {
  width: 9.875%;
}
@media screen and (max-width: 767px) {
  .c-card-flex.c-card_8 .c-card-flex_item {
    width: 48.5%;
  }
}
.c-card-flex_image {
  width: 100%;
  text-align: center;
}
.c-card-flex_title {
  font-size: 24px;
}
.c-card-flex_title, .c-card-flex_text {
  margin-top: 20px;
  text-align: justify;
}

/* END .c-card_flex */
@media screen and (max-width: 833px) {
  .c-card-flex {
    flex-direction: row;
  }
  .c-card-flex.c-card_2 .c-card-flex_item, .c-card-flex.c-card_3 .c-card-flex_item, .c-card-flex.c-card_4 .c-card-flex_item, .c-card-flex.c-card_5 .c-card-flex_item, .c-card-flex.c-card_6 .c-card-flex_item, .c-card-flex.c-card_7 .c-card-flex_item, .c-card-flex.c-card_8 .c-card-flex_item {
    width: 45%;
  }
}
/*  END Break Point  */
@media screen and (max-width: 767px) {
  .c-card-flex {
    flex-direction: column;
  }
  .c-card-flex.c-card_2 .c-card-flex_item,
  .c-card-flex .c-card_3 .c-card-flex_item,
  .c-card-flex .c-card_4 .c-card-flex_item,
  .c-card-flex .c-card_5 .c-card-flex_item,
  .c-card-flex .c-card_6 .c-card-flex_item,
  .c-card-flex .c-card_7 .c-card-flex_item,
  .c-card-flex .c-card_8 .c-card-flex_item {
    width: 100%;
  }
}
/*  END Break Point  */
/*		ユニットコンテンツ
-----------------------------------------------------*/
.c-unit {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px 4%;
}
@media screen and (max-width: 767px) {
  .c-unit {
    flex-direction: column;
  }
}
.c-unit > * {
  flex: 1;
}
.c-unit + .c-unit {
  margin-top: 30px;
}
.c-unit.is-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-unit.is-reverse {
    flex-direction: column;
  }
}

.c-media {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 3%;
}
@media screen and (max-width: 767px) {
  .c-media {
    flex-direction: column;
  }
}
.c-media.is-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-media.is-reverse {
    flex-direction: column;
  }
}
.c-media_image {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-media_image {
    width: 100%;
  }
}
.c-media_content {
  flex: 1 1 400px;
}
@media screen and (max-width: 767px) {
  .c-media_content {
    flex: 1;
    width: 100%;
  }
}
.c-media_content_title {
  font-size: 24px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .c-media_content_title {
    font-size: 18px;
  }
}
.c-media_content_text {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .c-media_content_text {
    font-size: 14px;
  }
}

/*		独自追加
-----------------------------------------------------*/
/* @font-face {
  font-family: "MPLUSRounded-bold-subset";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/MPLUSRounded-bold-subset.woff2") format("woff2"), url("../fonts/MPLUSRounded-bold-subset.woff") format("woff"), url("../fonts/MPLUSRounded-bold-subset.ttf") format("truetype");
} */
/* .font-mplus {
  font-family: var(--mplus-font);
  transform: var(--Jaggy-clear);
  font-weight: bold;
} */
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.l-header_language {
  border-radius: 100px;
  color: var(--color-black);
  background: #fff;
  width: 152px;
  font-size: 12px;
  margin-left: auto;
  border: 1px solid #dbdbdb;
}

@media screen and (max-width: 1599px) {
  .l-header_language {
    top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-header_language {
    min-width: 95px;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 40%;
    font-size: 10px;
    top: 27.5px;
    right: 90px;
  }
}
.l-header_language span {
  padding: 8px 25px 8px 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  z-index: 3;
}

.l-header_language span::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  bottom: 3px;
  right: 13px;
  margin: auto;
  transform: rotate(45deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: 0.3s;
}

.l-header_language span.is-open + ul {
  top: 50%;
  opacity: 1;
  pointer-events: auto;
}

.l-header_language span.is-open::after {
  transform: rotate(-135deg);
}

.l-header_language ul {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  padding: 2em 1em 0.5em;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  overflow: hidden;
  background: #828487;
  border-bottom-right-radius: 1.5em;
  border-bottom-left-radius: 1.5em;
}

.l-header_language ul li a {
  display: block;
  padding: 5px;
  position: relative;
}

.l-header_language ul li a:hover::after {
  right: 5px;
}

.c-title_l {
  font-family: var(--base-sans-serif) !important;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.75;
  color: var(--color-black);
  padding: 0;
  margin-bottom: 60px;
  box-sizing: border-box;
}

.c-title_m {
  font-family: var(--base-sans-serif) !important;
  position: relative;
  min-height: 100px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04rem;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  padding: 20px 60px;
  margin: 0 auto 65px;
  background-color: #10ab81;
  border-radius: 100px;
  box-sizing: border-box;
}
.c-title_m span {
  font-size: 22px;
}
.c-title_m::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 26px;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #10ab81;
}

.c-btn_01 {
  display: flex;
  align-items: center;
  min-width: 360px;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 60px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 20px 30px;
  background-color: var(--color-orange);
  border-radius: 100px;
  box-sizing: border-box;
  position: relative;
}
.c-btn_01::after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: url(../img/common/icon_arrow_02.svg) no-repeat center center/contain;
}
.c-btn_01.is-external::after {
  width: 36px;
  background: url(../img/common/icon_external.svg) no-repeat center center/contain;
}
.c-btn_01.is-small {
  min-width: 260px;
}

.c-slide_navi {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin-top: 30px;
}
.c-slide_dots ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: 15px;
}
.c-slide_dots ul li button {
  width: 13px;
  aspect-ratio: 1;
  background-color: #ddd;
}
.c-slide_dots ul li.slick-active button {
  width: 17px;
  background-color: var(--color-green);
}
.c-slide_arrow {
  display: block;
  width: 80px;
  aspect-ratio: 1;
  background: url(../img/common/icon_arrow_03.svg) no-repeat center center/contain;
  cursor: pointer;
}
.c-slide_arrow_prev {
  transform: rotate(180deg);
}

/*		基本設定
-----------------------------------------------------*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-tb {
    display: none !important;
  }
}
input {
  font-size: 16px;
}

textarea {
  font-size: 16px;
  resize: vertical;
}

/* フォーカスが当たった時の青枠を表示しない */
*:focus {
  outline: none;
}

::-moz-selection {
  /*ハイライトカラー指定*/
  color: #fff;
  background: cyan;
  background: var(--color-base);
}

::selection {
  /*ハイライトカラー指定*/
  color: #fff;
  background: cyan;
  background: var(--color-base);
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
figure {
  /*safariのoverflow不具合対策*/
  will-change: transform;
}

/* Padding Classes */
.p-0 {
  padding: 0;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.p-40 {
  padding: 40px;
}

.p-50 {
  padding: 50px;
}

.p-80 {
  padding: 80px;
}

.p-100 {
  padding: 100px;
}

.pt-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

/* Margin Classes */
.m-0 {
  margin: 0;
}

.m-10 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-20 {
  margin: 20px;
}

.m-30 {
  margin: 30px;
}

.m-40 {
  margin: 40px;
}

.m-50 {
  margin: 50px;
}

.m-80 {
  margin: 80px;
}

.m-100 {
  margin: 100px;
}

.mt-0 {
  margin-top: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-100 {
  margin-bottom: 100px;
}

/*==========フェードイン==========*/
.js-scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

.js-scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*		ヘッダー
-----------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: var(--w-liquid);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: transparent;
  padding: 0;
  margin: 0;
}
.l-header .l-container_fluid {
  max-width: var(--w-solid-base);
  display: flex;
  align-items: center;
}
.l-header_logo {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-right: auto;
  padding: 20px 0 0 60px;
}
.l-header_logo a {
  display: flex;
  align-items: center;
  gap: 16px;
}
.l-header h1 a {
  width: 218px;
  height: 105px;
  background: none;
}
.l-header .l-inner {
  width: 100%;
  display: flex;
  margin: 0;
  padding: 0;
}

/* END &.l-header */
@media screen and (max-width: 1023px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 5px 0;
    display: flex;
    align-items: center;
    min-height: 60px;
    /* END #header */
  }
  .l-header .l-container,
  .l-header .l-container_wide {
    gap: 10px;
    padding: 0 70px 0 10px;
  }
  .l-header_logo {
    max-width: 150px;
    flex-shrink: 0;
    font-size: 5vw;
  }
  .l-header_logo * {
    font-size: 3vw;
  }
}
/*		グローバルナビゲーション
-----------------------------------------------------*/
.l-header_nav {
  position: absolute;
  top: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 8px 40px 8px 30px;
  background-color: #fbf9ed;
  border-bottom-left-radius: 30px;
  /* END & ul */
}
.l-header_nav .l-nav_logo {
  display: none;
  color: var(--color-black);
}
.l-header_nav > ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 43px;
}
.l-header_nav > ul > li {
  position: relative;
  font-family: var(--mplus-font);
  transform: var(--Jaggy-clear);
  text-align: center;
  color: var(--color-black);
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.l-header_nav > ul > li span {
  display: block;
  cursor: pointer;
}
.l-header_nav > ul > li a {
  display: block;
  color: var(--color-black);
  line-height: 1.3;
}
@media (hover: hover) {
  .l-header_nav > ul > li a:hover {
    color: var(--color-base);
  }
}
.l-header_nav_submenu {
  min-width: 191px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  padding-top: 30px;
}
.l-header_nav_submenu ul {
  width: 100%;
  padding: 20px 24px;
  background-color: #fbf9ed;
  border-radius: 15px;
}
.l-header_nav_submenu ul li a {
  position: relative;
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.l-header_nav_submenu ul li a::after {
  content: "";
  display: inline-block;
  width: 5.4px;
  height: 9.3px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/common/icon_arrow_01.svg) no-repeat center center/100% auto;
  transition: all 0.2s linear;
}
.l-header_nav > ul > li > span:hover + .l-header_nav_submenu {
  display: block;
}
.l-header_nav .l-header_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  color: #fff;
  background-color: #333;
  background-color: var(--color-base);
  border: 2px solid transparent;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
}
@media (hover: hover) {
  .l-header_nav .l-header_btn:hover {
    color: #333;
    color: var(--color-base);
    border-color: currentColor;
    background-color: #fff;
  }
  .l-header_nav .l-header_btn:hover::after {
    transform: translateY(3px);
  }
}

/* END .l-nav */
@media screen and (max-width: 1023px) {
  #global-nav.l-nav {
    flex-flow: column nowrap;
    position: absolute;
    top: 60px;
    left: 100%;
    z-index: 900;
    width: 100%;
    width: 100%;
    width: 100dvw;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    padding: 20px 0 50px;
    opacity: 0;
    background-color: var(--color-blue);
    transition: all 0.1s linear;
  }
  #global-nav.l-nav.is-show {
    left: 0;
    opacity: 1;
  }
  #global-nav.l-nav.is-flex {
    flex-direction: column;
  }
  #global-nav.l-nav.is-flex ul {
    width: 100%;
    margin: auto;
    flex-direction: column;
    gap: 0;
  }
  #global-nav.l-nav.is-flex ul li {
    text-align: left;
    max-width: 600px;
    width: 90%;
    padding: 30px 0;
    border-bottom: 1px solid #fff;
  }
  #global-nav.l-nav.is-flex ul li a {
    position: relative;
    color: #fff;
    letter-spacing: 0.08em;
    padding: 0 20px;
    transition: all 0.2s linear;
  }
  #global-nav.l-nav.is-flex ul li a::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 16.5px;
    position: absolute;
    top: calc(50% - 8.25px);
    right: 3%;
    background: url(../img/common/global-nav_arrow.svg) no-repeat center center/100% auto;
    transition: all 0.2s linear;
  }
}
@media screen and (max-width: 1023px) and (hover: hover) {
  #global-nav.l-nav.is-flex ul li a:hover {
    color: var(--color-gold);
  }
  #global-nav.l-nav.is-flex ul li a:hover::after {
    right: 2%;
  }
}
@media screen and (max-width: 1023px) {
  #global-nav.l-nav.is-flex ul li span {
    display: inline-block;
  }
  #global-nav.l-nav.is-flex .l-header_btn {
    width: 100%;
    max-width: 245px;
    margin: 20px 0;
    color: var(--color-black);
    background-color: #fff;
  }
}
/*  END Break Point  */
/*		メニューボタン
-----------------------------------------------------*/
.l-header_toggle {
  display: none;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  background-color: #333;
  background-color: var(--color-base);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  padding: 10px 5px 5px;
  box-sizing: border-box;
  transition: all 0.2s linear;
  cursor: pointer;
}
.l-header_toggle > span {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  padding: 0;
  line-height: 1;
  margin: 10px auto;
  background-color: #fff;
  border-radius: 100px;
  transition: all 0.3s linear;
}
.l-header_toggle > span::before, .l-header_toggle > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: var(--color-pink);
  border-radius: 100px;
  transition: all 0.3s ease;
  transform-origin: center center;
}
.l-header_toggle > span::before {
  transform: translate(-50%, -50%) translateY(-8px);
}
.l-header_toggle > span::after {
  transform: translate(-50%, -50%) translateY(8px);
}
.l-header_toggle > p {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.l-header_toggle.is-active > span {
  background-color: transparent;
}
.l-header_toggle.is-active > span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header_toggle.is-active > span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 1023px) {
  .l-header_toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/*  END Break Point  */
/*		ページタイトル
-----------------------------------------------------*/
#page-title {
  margin-top: 10px;
  padding: 60px 0 0;
  box-sizing: border-box;
}
#page-title > section h2 {
  font-size: 80px;
  font-weight: normal;
  color: var(--color-font-base);
}

/*  END #page-title  */
@media screen and (max-width: 767px) {
  #page-title {
    padding: 30px 10px;
  }
  #page-title > section h2 {
    font-size: 40px;
  }
  /*  END #page-title  */
}
/*  END Break Point  */
/*		ページトップ
-----------------------------------------------------*/
#page_top {
  position: fixed;
  bottom: 2%;
  right: 3%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  /*  END & > a  */
}
#page_top > a {
  background: #000;
  width: auto;
  height: auto;
  padding: 12px 20px;
  color: var(--color-theme-base);
  font-weight: bold;
}
@media (hover: hover) {
  #page_top > a:hover {
    text-decoration: none;
  }
}

/*  END #page_top  */
/*		フッター
-----------------------------------------------------*/
.l-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 50px;
  background: #F8F3DC;
}
.l-footer .l-container {
  width: var(--w-liquid);
}
.l-footer_logo {
  margin-bottom: 20px;
}
.l-footer_info {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.l-footer_info b {
  display: block;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 20;
}
.l-footer .c-copyright {
  margin-top: 40px;
  background-color: var(--color-orange);
}
.l-footer .c-copyright_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #fff;
  padding-block: 20px;
}

/*  END #footer  */
@media screen and (max-width: 767px) {
  #footer.l-footer {
    padding: 20px 0;
  }
  #footer.l-footer .c-copyright .c-copyright__txt {
    font-size: 14px;
  }
  /*  END #footer  */
}
/*  END Break Point  */