@charset "UTF-8";
/* -------------------------------
	default
-------------------------------- */
:root {
  --app-h: 100vh;
  --app-w: 100vw;
  --app-lh-base: 1.75;
}

@supports (height: 100dvh) {
  :root {
    --app-h: 100dvh;
    --app-w: 100dvw;
  }
}
html {
  font-size: 100%;
  /* 16px */
}
@media print, screen and (min-width: 992px) {
  html {
    font-size: 100%;
    /* 16px */
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  line-height: var(--app-lh-base);
  letter-spacing: 0.1em;
}

.fs-en, .telphone {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.05em;
}

/* -------------------------------
	ローディング
-------------------------------- */
.loader {
  display: none;
}

/* -------------------------------
	見出しタグ調整
-------------------------------- */
h1, .h1 {
  font-size: 1.9rem;
  /* 30px相当 */
}

h2, .h2 {
  font-size: 1.69rem;
  /* 27px相当 */
}

h3, .h3 {
  font-size: 1.5rem;
  /* 24px相当 */
}

h4, .h4 {
  font-size: 1.33rem;
  /* 21px相当 */
}

h5, .h5 {
  font-size: 1.19rem;
  /* 19px相当 */
}

h6, .h6 {
  font-size: 1.05rem;
  /* 17px相当 */
}

@media screen and (min-width: 768px) {
  h1, .h1 {
    font-size: 2.21rem;
    /* 35px相当 */
  }

  h2, .h2 {
    font-size: 1.97rem;
    /* 32px相当 */
  }

  h3, .h3 {
    font-size: 1.75rem;
    /* 28px相当 */
  }

  h4, .h4 {
    font-size: 1.56rem;
    /* 25px相当 */
  }

  h5, .h5 {
    font-size: 1.38rem;
    /* 22px相当 */
  }

  h6, .h6 {
    font-size: 1.23rem;
    /* 20px相当 */
  }
}
@media screen and (min-width: 992px) {
  h1, .h1 {
    font-size: 2.37rem;
    /* 38px相当 */
  }

  h2, .h2 {
    font-size: 2.11rem;
    /* 34px相当 */
  }

  h3, .h3 {
    font-size: 1.88rem;
    /* 30px相当 */
  }

  h4, .h4 {
    font-size: 1.67rem;
    /* 27px相当 */
  }

  h5, .h5 {
    font-size: 1.48rem;
    /* 24px相当 */
  }

  h6, .h6 {
    font-size: 1.32rem;
    /* 21px相当 */
  }
}
@media screen and (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.53rem;
    /* 40px相当 */
  }

  h2, .h2 {
    font-size: 2.25rem;
    /* 36px相当 */
  }

  h3, .h3 {
    font-size: 2rem;
    /* 32px相当 */
  }

  h4, .h4 {
    font-size: 1.78rem;
    /* 28px相当 */
  }

  h5, .h5 {
    font-size: 1.58rem;
    /* 25px相当 */
  }

  h6, .h6 {
    font-size: 1.4rem;
    /* 22px相当 */
  }
}
h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

p, ol, ul, dl, table {
  margin-bottom: calc(var(--app-lh-base) * 1rem);
}
p + h3, p + h4, p + h5, p + h6, ol + h3, ol + h4, ol + h5, ol + h6, ul + h3, ul + h4, ul + h5, ul + h6, dl + h3, dl + h4, dl + h5, dl + h6, table + h3, table + h4, table + h5, table + h6 {
  margin-top: calc(var(--app-lh-base) * 2rem);
}
p:last-child, ol:last-child, ul:last-child, dl:last-child, table:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  padding-left: 1.5em;
}

ol {
  padding-left: 2em;
}

a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

/* -------------------------------
	header
-------------------------------- */
/* 基本サイズ */
#header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
@media print, screen and (min-width: 1200px) {
  #header .container-fluid {
    padding: 0 30px;
  }
}
@media print {
  #header {
    position: absolute;
  }
}

/* ---  --- */
.row-head {
  display: flex;
  align-items: center;
  height: 50px;
}
@media print, screen and (min-width: 992px) {
  .row-head {
    height: 120px;
  }
}
.row-head .logo h1 {
  font-size: 1rem;
  line-height: normal;
  padding: 0;
  margin: 0;
}
.row-head .logo h1 img {
  height: 40px;
}
@media print, screen and (min-width: 992px) {
  .row-head .logo {
    flex: 0 0 20%;
  }
  .row-head .logo h1 img {
    height: auto;
  }
}
.row-head .head_contents {
  display: none;
}
@media print, screen and (min-width: 1200px) {
  .row-head .head_contents {
    display: flex;
    flex: 0 0 80%;
    height: 100%;
  }
}

.head_contents_left {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-left: auto;
}
.head_contents_left > * {
  flex: 1 1 0;
}

.head_tel_list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
  padding: 10px 20px;
  border-radius: 0 0 10px 10px;
  background-color: #f2f2f2;
}

.head_tel_dl {
  color: #0190d3;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 10px;
}
.head_tel_dl > dt, .head_tel_dl > dd {
  padding: 0;
  margin: 0;
}
.head_tel_dl > dt {
  font-weight: 500;
  font-size: clamp(12px, calc(12px + 3 * (100vw - 1200px) / 400), 15px);
  letter-spacing: normal;
  height: 2.26667em;
  padding: 0 1em;
  display: grid;
  place-items: center;
  border-radius: 0.33334em;
  background-color: #fff;
}
.head_tel_dl > dd .telphone {
  font-size: clamp(16px, calc(16px + 8 * (100vw - 1200px) / 400), 24px);
  margin-right: 0.5em;
}
.head_tel_dl > dd .telphone img {
  width: 0.75em;
  margin-right: 0.25em;
}
.head_tel_dl > dd .txt {
  color: #737373;
  font-size: 10px;
  margin-bottom: 0.25em;
}
.head_tel_dl > dd .txt br {
  display: none;
}
@media print, screen and (min-width: 1600px) {
  .head_tel_dl > dd {
    display: flex;
    align-items: flex-end;
  }
  .head_tel_dl > dd .txt {
    display: block;
  }
  .head_tel_dl > dd .txt br {
    display: block;
  }
}

.head_contents_right {
  display: grid;
  place-items: center;
  padding-left: clamp(20px, calc(20px + 20 * (100vw - 1200px) / 400), 40px);
}

.head_mail .btn {
  font-size: clamp(13px, calc(13px + 3 * (100vw - 1200px) / 400), 16px);
  padding: 1.65625em 1.825em;
  width: 13.75em;
}

/* スマホ用電話番号 */
/* -------------------------------
	メインメニュー
-------------------------------- */
#gNavi {
  display: none;
}
@media print, screen and (min-width: 1200px) {
  #gNavi {
    display: block;
  }
}

.list-gnav {
  font-size: clamp(14px, calc(14px + 2 * (100vw - 1200px) / 400), 16px);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 0 2em;
  height: 100%;
}
.list-gnav > li > button {
  display: none;
}
.list-gnav > li .parent-link {
  display: none;
}
.list-gnav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-gnav a {
  text-decoration: none;
}
.list-gnav > li > a {
  color: #222;
  line-height: 1.5;
  display: grid;
  place-items: center;
  height: 100%;
  position: relative;
  transition: color .3s ease;
}
.list-gnav > li > a:hover, .list-gnav > li.active > a {
  color: #0190d3;
}
.list-gnav > li.active > a {
  font-weight: 700;
}

/* サブメニュー */
.list-gnav > li:has(> div) > a {
  padding-right: 1em;
  position: relative;
}
.list-gnav > li:has(> div) > a::after {
  content: "\2b";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -.5em;
  transform: scale(0.6875);
}

.list-gnav > li:has(> .child) {
  position: relative;
}
.list-gnav > li:has(> .child) > .child {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  padding-top: 10px;
  display: none;
}
.list-gnav > li:has(> .child) > .child > ul {
  font-size: 0.875em;
  min-width: 100%;
  white-space: nowrap;
  padding: 1.25em 2em;
  border-radius: 8px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.list-gnav > li:has(> .child) > .child > ul > li {
  border-bottom: dashed 1px #efefef;
}
.list-gnav > li:has(> .child) > .child > ul > li:last-child {
  border-bottom: none;
}
.list-gnav > li:has(> .child) > .child > ul > li > a {
  color: #222;
  font-weight: 500;
  display: block;
  padding: 0.75em 0.75em;
  transition: color .3s ease;
}
.list-gnav > li:has(> .child) > .child > ul > li.active > a, .list-gnav > li:has(> .child) > .child > ul > li > a:hover {
  color: #0190d3;
}

/* アニメーション */
/**/
.list-gnav > li:has(> .mega_child) > .mega_child {
  position: absolute;
  left: 0;
  width: 100%;
  padding: clamp(30px, calc(30px + 30 * (100vw - 1200px) / 400), 60px) 0;
  background-color: #fff;
  display: none;
}
.list-gnav > li:has(> .mega_child) > .mega_child .mega_child_ttl {
  position: absolute;
  left: 0;
  top: 0;
}
.list-gnav > li:has(> .mega_child) > .mega_child .mega_child_ttl .ttl {
  font-size: clamp(16px, calc(16px + 4 * (100vw - 1200px) / 400), 20px);
  padding-top: clamp(50px, calc(50px + 30 * (100vw - 1200px) / 400), 80px);
  padding-left: clamp(20px, calc(20px + 30 * (100vw - 1200px) / 400), 50px);
}
.list-gnav > li:has(> .mega_child) > .mega_child .mega_child_ttl .ttl > .fs-jp {
  font-weight: 500;
  font-size: 1.5em;
  display: block;
}
.list-gnav > li:has(> .mega_child) > .mega_child .mega_child_ttl .ttl > .fs-en {
  color: #0190d3;
  font-weight: 500;
  font-size: 0.875em;
  text-transform: uppercase;
  display: block;
}
.list-gnav > li:has(> .mega_child) > .mega_child .mega_child_content > ul {
  list-style: none;
  display: flex;
  gap: clamp(15px, calc(15px + 15 * (100vw - 1200px) / 400), 30px);
  justify-content: center;
}
.list-gnav > li:has(> .mega_child) > .mega_child .mega_child_content > ul > li {
  flex: 0 0 clamp(150px, calc(150px + 50 * (100vw - 1200px) / 400), 200px);
}

.mega_child_figure > .image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  background-color: #CAEEFE;
  overflow: hidden;
}
.mega_child_figure > .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}
.mega_child_figure figcaption {
  font-size: clamp(14px, calc(14px + 2 * (100vw - 1200px) / 400), 16px);
  letter-spacing: 0.05em;
  margin-top: .5em;
}
.mega_child_figure figcaption .txt {
  font-weight: 500;
}
.mega_child_figure figcaption .arrow {
  color: #0190d3;
  font-weight: 700;
  font-size: 0.875em;
  text-align: right;
  margin-top: .5em;
  transition: letter-spacing 0.3s ease;
}
.mega_child_figure:hover > .image img {
  opacity: 0.65;
}
.mega_child_figure:hover figcaption .arrow {
  letter-spacing: 0.2em;
}

li.active > a > .mega_child_figure .image {
  border: solid 3px #0190d3;
}
li.active > a > .mega_child_figure figcaption .txt {
  color: #0190d3;
}

/* -------------------------------
	main
-------------------------------- */
/* -------------------------------
	main title
-------------------------------- */
.main_ttl {
  height: 180px;
  display: flex;
  align-items: center;
  margin-top: 50px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.main_ttl > .bg {
  position: absolute;
  inset: 0 0 0 15px;
  z-index: -1;
  border-radius: 10px 0 0 10px;
  background-color: #ccc;
  pointer-events: none;
  overflow: hidden;
}
.main_ttl > .bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width: 768px) {
  .main_ttl {
    height: 230px;
  }
}
@media print, screen and (min-width: 992px) {
  .main_ttl {
    margin-top: 120px;
    height: clamp(230px, calc(230px + 120 * (100vw - 992px) / 608), 350px);
  }
}
@media print, screen and (min-width: 1200px) {
  .main_ttl > .bg {
    inset: 0 0 0 30px;
    border-radius: 20px 0 0 20px;
  }
}
.main_ttl h2 {
  color: #fff;
  line-height: 1.5;
  margin: 0;
  padding-left: 30px;
}
.main_ttl h2 > .fs-en {
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  display: block;
  padding-left: 1.75em;
  margin-bottom: 0.5em;
  position: relative;
}
.main_ttl h2 > .fs-en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1em;
  height: 2px;
  margin-top: -1px;
  background-color: currentColor;
}
.main_ttl h2 > .fs-jp {
  font-size: 23px;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .main_ttl h2 > .fs-en {
    font-size: 16px;
  }
  .main_ttl h2 > .fs-jp {
    font-size: 30px;
  }
}
@media print, screen and (min-width: 992px) {
  .main_ttl h2 > .fs-en {
    font-size: clamp(16px, calc(16px + 4 * (100vw - 992px) / 608), 20px);
  }
  .main_ttl h2 > .fs-jp {
    font-size: clamp(30px, calc(30px + 15 * (100vw - 992px) / 608), 45px);
  }
}

.page_head_bg {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 90px;
  z-index: -1;
  pointer-events: none;
}
@media print, screen and (min-width: 768px) {
  .page_head_bg {
    height: 115px;
  }
}
@media print, screen and (min-width: 992px) {
  .page_head_bg {
    height: clamp(115px, calc(115px + 60 * (100vw - 992px) / 608), 175px);
  }
}

/* -------------------------------
	pagetop
-------------------------------- */
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 10;
}
#pagetop > a {
  color: #fff;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.5;
  text-decoration: none;
  display: block;
  text-decoration: none;
  width: 11.42857em;
  padding: 0.25em 1.7857em;
  border-radius: 10em;
  border: solid 1px #fff;
  transition: all 0.3s ease;
}
#pagetop > a::after {
  content: "\f062";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 1.7857em;
  margin-top: -.5em;
}
#pagetop > a:hover {
  color: #0190d3;
  background-color: #fff;
}
@media print, screen and (min-width: 992px) {
  #pagetop > a {
    font-size: clamp(10px, calc(10px + 4 * (100vw - 992px) / 608), 14px);
  }
}
#pagetop.is-active {
  opacity: 1;
  visibility: visible;
}

/* -------------------------------
	スクロールバー
-------------------------------- */
div, .scrollbar {
  scrollbar-color: #111 #eeeeee;
  scrollbar-width: thin;
}
div::-webkit-scrollbar, .scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
div::-webkit-scrollbar-track, .scrollbar::-webkit-scrollbar-track {
  background: #eeeeee;
}
div::-webkit-scrollbar-thumb, .scrollbar::-webkit-scrollbar-thumb {
  background: #111;
}

/* -------------------------------
	サイドメニュー
-------------------------------- */
#sidebar {
  position: fixed;
  inset: 0;
  padding-top: 50px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  overflow-y: auto;
  z-index: 9900;
}
@media print, screen and (min-width: 992px) {
  #sidebar {
    padding-top: 120px;
  }
}
.side-open #sidebar {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0px, 0);
}
@media print, screen and (min-width: 1200px) {
  #sidebar {
    display: none !important;
  }
}
#sidebar .inner {
  padding: 30px;
}

/**/
.sidebar_navi {
  --col:1;
  --gap:10px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
@media screen and (min-width: 768px) {
  .sidebar_navi {
    --col:2;
    --gap:30px;
  }
}
@media screen and (min-width: 992px) {
  .sidebar_navi {
    --col:3;
    --gap:30px;
  }
}
.sidebar_navi > .sidebar_navi_col {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
.sidebar_navi > .sidebar_navi_col > ul {
  font-size: 16px;
  list-style: none;
  padding: 15px;
  margin: 0 auto;
  height: 100%;
  border-radius: 5px;
  border: solid 1px #ccc;
  background-color: #fff;
}
.sidebar_navi > .sidebar_navi_col > ul > li button {
  display: none;
}
.sidebar_navi > .sidebar_navi_col > ul > li > strong, .sidebar_navi > .sidebar_navi_col > ul > li > a {
  color: #222;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5em;
}
.sidebar_navi > .sidebar_navi_col > ul > li > a {
  transition: opacity 0.3s ease;
  position: relative;
}
.sidebar_navi > .sidebar_navi_col > ul > li > a::after {
  content: "\f138";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.875em;
  line-height: 1;
  margin-top: -.5em;
  position: absolute;
  right: 0;
  top: 50%;
}
.sidebar_navi > .sidebar_navi_col > ul > li > .a:hover, .sidebar_navi > .sidebar_navi_col > ul > li.active > a {
  color: #0190d3;
}
.sidebar_navi > .sidebar_navi_col > ul > li > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar_navi > .sidebar_navi_col > ul > li > ul > li {
  padding-left: 1em;
  margin-bottom: 0.25em;
  position: relative;
}
.sidebar_navi > .sidebar_navi_col > ul > li > ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.5em;
  height: 1px;
  background-color: #222;
}
.sidebar_navi > .sidebar_navi_col > ul > li > ul > li:last-child {
  margin-bottom: 0;
}
.sidebar_navi > .sidebar_navi_col > ul > li > ul > li > a {
  color: #222;
  font-size: 15px;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
}
.sidebar_navi > .sidebar_navi_col > ul > li > ul > li > .a:hover, .sidebar_navi > .sidebar_navi_col > ul > li > ul > li.active > a {
  color: #0190d3;
}

.sidebar_tel {
  margin-top: 50px;
}

.sidebar_tel_list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: #f2f2f2;
}
@media screen and (min-width: 768px) {
  .sidebar_tel_list {
    grid-template-columns: auto auto;
    gap: clamp(20px, calc(20px + 30 * (100vw - 768px) / 432), 50px);
  }
}

.sidebar_tel_dl {
  color: #0190d3;
  white-space: nowrap;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 10px;
}
.sidebar_tel_dl > dt, .sidebar_tel_dl > dd {
  padding: 0;
  margin: 0;
}
.sidebar_tel_dl > dt {
  font-weight: 500;
  font-size: 13px;
  padding: 0 0.75em;
  display: grid;
  place-items: center;
  flex: 0 0 7em;
  border-radius: 0.33334em;
  background-color: #fff;
}
.sidebar_tel_dl > dd {
  flex: 0 0 100%;
  text-align: center;
}
.sidebar_tel_dl > dd .telphone {
  font-size: 20px;
}
.sidebar_tel_dl > dd .telphone img {
  width: 0.75em;
  margin-right: 0.25em;
}
.sidebar_tel_dl > dd .txt {
  color: #737373;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .sidebar_tel_dl > dd .telphone {
    font-size: clamp(20px, calc(20px + 10 * (100vw - 768px) / 432), 30px);
  }
}

/* -------------------------------
	半透明
-------------------------------- */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 20;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: white;
}
@media screen and (min-width: 1200px) {
  .overlay {
    display: none;
  }
}

/* -------------------------------
	三本線
-------------------------------- */
.menuWrapper {
  font-size: 50px;
  position: fixed;
  right: 0;
  top: 0;
  width: 1em;
  height: 1em;
  transform: translate3d(0, 0, 0);
  z-index: 9999;
}
@media print, screen and (min-width: 992px) {
  .menuWrapper {
    font-size: 80px;
    right: 20px;
    top: 20px;
  }
}
@media print, screen and (min-width: 1200px) {
  .menuWrapper {
    display: none;
  }
}

#menuButton {
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 50% 0 0 50%;
  background-color: #0190d3;
}
@media print, screen and (min-width: 992px) {
  #menuButton {
    border-radius: 50%;
  }
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -0.1em;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0.5em;
  height: 2px;
  margin: auto;
  background: #fff;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #fff;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -0.14em);
  content: "";
}
#menuButton:after {
  z-index: 2;
  transform: translate(0, 0.14em);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  bottom: 1em;
  width: 100%;
  color: #fff;
  font-size: 0.14em;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  display: block;
}

/* アニメーション */
#menuButton span {
  opacity: 1;
  transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
}
.side-open #menuButton span {
  opacity: 0;
  transition: opacity 150ms;
}
.side-open #menuButton::before {
  transform: rotate(45deg);
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
}

/* -------------------------------
	footer
-------------------------------- */
#footer {
  color: #fff;
  padding-top: clamp(50px, 7.5vw, 150px);
  padding-bottom: clamp(50px, 7.5vw, 100px);
  background: url("../images/common/footer_bg.jpg") no-repeat center center/cover;
  page-break-inside: avoid;
}

.footer_content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.footer_content h2 {
  font-size: 1rem;
}
.footer_content h2, .footer_content p {
  text-align: center;
}
.footer_content p {
  font-size: 15px;
}
.footer_content p a {
  color: #fff;
  text-decoration: none;
}
@media print, screen and (min-width: 992px) {
  .footer_content h2, .footer_content p {
    text-align: left;
  }
}

.f_navi {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .f_navi {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  .f_navi > .f_navi_col > ul {
    font-size: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .f_navi > .f_navi_col > ul > li > strong, .f_navi > .f_navi_col > ul > li > a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5em;
  }
  .f_navi > .f_navi_col > ul > li > a {
    transition: opacity 0.3s ease;
    display: block;
    padding-right: 1.2em;
    position: relative;
  }
  .f_navi > .f_navi_col > ul > li > a i {
    transform: scale(0.75);
    transform-origin: right center;
    position: absolute;
    right: 0;
    top: 50%;
    line-height: 1;
    margin-top: -.5em;
  }
  .f_navi > .f_navi_col > ul > li > a:hover {
    opacity: 0.65;
  }
  .f_navi > .f_navi_col > ul > li > ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .f_navi > .f_navi_col > ul > li > ul > li {
    padding-left: 1.2em;
    margin-bottom: 0.5em;
    position: relative;
  }
  .f_navi > .f_navi_col > ul > li > ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.66667em;
    height: 1px;
    background-color: #fff;
  }
  .f_navi > .f_navi_col > ul > li > ul > li:last-child {
    margin-bottom: 0;
  }
  .f_navi > .f_navi_col > ul > li > ul > li > a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
  }
  .f_navi > .f_navi_col > ul > li > ul > li > a:hover {
    opacity: 0.65;
  }
}
@media print, screen and (min-width: 1500px) {
  .f_navi {
    justify-content: flex-end;
  }
}

.copyright {
  font-size: 12px;
  text-align: center;
  margin-top: auto;
  padding-top: 30px;
}
@media print, screen and (min-width: 992px) {
  .copyright {
    text-align: right;
  }
}

/* 印刷用 */
@page {
  margin: 10mm 4mm 10mm 4mm;
}
@media print {
  body {
    min-width: 1500px !important;
  }

  .container {
    min-width: 1200px !important;
  }

  .container-fluid-xl {
    min-width: 1500px !important;
  }

  .row {
    overflow: visible !important;
  }

  [class^="col"], [class*=" col"], [class^="col-"], [class*=" col-"] {
    page-break-inside: avoid;
  }

  #pagetop {
    opacity: 0;
    visibility: hidden;
  }

  .page-break {
    page-break-inside: avoid;
    page-break-after: avoid;
  }
}
/* firefox　ハック */
@-moz-document url-prefix() {
  @page {
    margin: auto;
  }
}

/*# sourceMappingURL=screen.css.map */
