@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: 16px;
}
@media print, screen and (min-width: 992px) {
  html {
    font-size: min(calc(16px + 2 * (100vw - 375px) / 1225), 18px);
  }
}

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

.fs-en, .telphone {
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: normal;
}

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

/* -------------------------------
	見出しタグ調整
-------------------------------- */
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.81rem;
    /* 45px相当 */
  }

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

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

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

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

  h6, .h6 {
    font-size: 1.56rem;
    /* 25px相当 */
  }
}
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: rgba(0, 0, 0, 0.35);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
@media print {
  #header {
    position: absolute;
  }
}
#header .container-fluid {
  padding: 0;
}
@media print, screen and (min-width: 992px) {
  #header {
    background-color: rgba(0, 0, 0, 0);
  }
}

/* ---  --- */
.row-head {
  display: flex;
  align-items: center;
  height: 50px;
}
@media print, screen and (min-width: 992px) {
  .row-head {
    height: 120px;
  }
}
.row-head .logo {
  padding-left: clamp(15px, 2.5vw, 40px);
  padding-right: clamp(30px, 3.75vw, 60px);
}
.row-head .logo h1 {
  font-size: 1rem;
  line-height: normal;
  padding: 0;
  margin: 0;
}
.row-head .logo h1 a {
  display: inline-grid;
  position: relative;
  z-index: 0;
}
.row-head .logo h1 a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/home/logo_be.png") no-repeat center center/contain;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.row-head .logo h1 img {
  height: 20px;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 992px) {
  .row-head .logo {
    flex: 0 0 32%;
  }
  .row-head .logo h1 img {
    height: auto;
  }
}
.row-head .head_contents {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .row-head .head_contents {
    display: block;
    flex: 0 0 min(68%, 1000px);
    max-width: 1000px;
    margin-left: auto;
  }
}

.head_column {
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 min(calc(20px + 20 * (100vw - 992px) / 808), 40px);
  background-color: #08285e;
}
.head_column dl {
  color: #fff;
  font-size: min(calc(12px + 4 * (100vw - 992px) / 808), 16px);
  margin: 0;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 1em;
}
.head_column dl > dt, .head_column dl > dd {
  margin: 0;
}
.head_column dl > dt {
  padding: 0.35em 0.5em;
  background-color: #db0a40;
}
.head_column .telphone {
  color: #fff;
  font-size: min(calc(18px + 14 * (100vw - 992px) / 808), 32px);
  margin-left: auto;
}
.head_column .telphone img {
  width: auto;
  height: 0.71875em;
  margin-right: 0.15em;
}

@media screen and (min-width: 992px) {
  .fixed-nav .row-head .logo > h1 > a::before {
    opacity: 1;
    visibility: visible;
  }
  .fixed-nav .row-head .logo > h1 img {
    opacity: 0;
  }
}
/* スマホ用電話番号 */
/* -------------------------------
	メインメニュー
-------------------------------- */
#gNavi {
  display: none;
}
@media print, screen and (min-width: 992px) {
  #gNavi {
    display: block;
    height: 60px;
    padding: 0 min(calc(20px + 20 * (100vw - 992px) / 808), 40px);
    border-radius: 0 0 0 8px;
    background-color: #fff;
  }
}

.list-gnav {
  font-size: min(calc(13px + 5 * (100vw - 992px) / 808), 18px);
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0 0.5em;
}
.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 {
  line-height: 1.5;
  display: grid;
  place-items: center;
  height: 60px;
  transition: color .3s ease;
}
.list-gnav > li > a:hover, .list-gnav > li.active > a {
  color: #db0a40;
}

/* サブメニュー */
.list-gnav > li > ul, .list-gnav > li > div {
  display: none;
}
.list-gnav > li:has(> ul, > div) > a {
  padding-right: 1em;
  position: relative;
}
.list-gnav > li:has(> ul, > div) > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.72223em;
  height: 0.61112em;
  background-color: #828070;
  transform: translateY(-50%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.list-gnav > li:has(> ul, > div) {
  position: relative;
}
.list-gnav > li:has(> ul, > div) > ul {
  font-size: 0.94445em;
  position: absolute;
  left: 50%;
  min-width: 100%;
  padding: 0.75em 0;
  margin: 0;
  white-space: nowrap;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transform: translateX(-50%);
}
.list-gnav > li:has(> ul, > div) > ul > li {
  border-bottom: solid 1px #efefef;
}
.list-gnav > li:has(> ul, > div) > ul > li:last-child {
  border-bottom: none;
}
.list-gnav > li:has(> ul, > div) > ul > li > a {
  display: block;
  padding: 0.75em 2em;
  transition: color .3s ease;
}
.list-gnav > li:has(> ul, > div) > ul > li > a:hover, .list-gnav > li:has(> ul, > div) > ul > li.active > a {
  color: #db0a40;
}

/* -------------------------------
	main
-------------------------------- */
.page-contents {
  overflow: hidden;
}

/* -------------------------------
	main title
-------------------------------- */
.main_ttl {
  height: min(calc(200px + 300 * (100vw - 375px) / 1225), 500px);
  padding-top: 50px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 992px) {
  .main_ttl {
    padding-top: 120px;
  }
}
.main_ttl > .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.main_ttl > .bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_ttl h2 {
  --color: #08285e;
  --border: #fff;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
.main_ttl h2 > .fs-en {
  color: var(--color);
  font-size: min(calc(40px + 80 * (100vw - 375px) / 1225), 120px);
  line-height: 1;
  display: block;
  text-shadow: -1px -1px 0 var(--border), -1px 1px 0 var(--border), 1px -1px 0 var(--border), 1px 1px 0 var(--border);
}
.main_ttl h2 > .fs-jp {
  color: #fff;
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1225), 24px);
  display: block;
  margin-top: 0.5em;
}

/* -------------------------------
	パンくず
-------------------------------- */
.breadcrumb_wrap {
  padding: 6px 0;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10;
}
.breadcrumb_wrap .panlist {
  color: #0d0d0d;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  overflow-y: hidden;
  overflow-x: auto;
}
.breadcrumb_wrap .panlist > li {
  display: flex;
  align-items: center;
}
.breadcrumb_wrap .panlist > li > a {
  color: #db0a40;
  white-space: nowrap;
}
.breadcrumb_wrap .panlist > li.active > a {
  color: #0d0d0d;
  text-decoration: none;
  pointer-events: none;
}
.breadcrumb_wrap .panlist > li + li:before {
  content: ">";
  letter-spacing: normal;
  display: block;
  padding: 0 0.5em;
}
@media (max-width: 767px) {
  .breadcrumb_wrap {
    display: none;
  }
}

/* -------------------------------
	pagetop
-------------------------------- */
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 10;
}
#pagetop.is-active {
  opacity: 1;
  visibility: visible;
}
#pagetop img {
  width: min(calc(25px + 35 * (100vw - 768px) / 1032), 60px);
}
@media (max-width: 767px) {
  #pagetop {
    right: 0;
    bottom: 0;
  }
  #pagetop img {
    width: 40px;
  }
}

/* -------------------------------
	スクロールバー
-------------------------------- */
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;
  top: 0px;
  bottom: 0;
  right: -280px;
  width: 280px;
  text-align: left;
  padding-top: 50px;
  background-color: #fff;
  transition: transform 0.5s ease;
  overflow-y: auto;
  z-index: 9900;
}
.side-open #sidebar {
  transform: translate3d(-100%, 0, 0);
}
@media print, screen and (min-width: 992px) {
  #sidebar {
    display: none !important;
  }
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .list-sidenav {
  width: 100%;
}
#sidebar .list-sidenav > li {
  text-align: left;
  border-bottom: solid 1px #ccc;
  position: relative;
}
#sidebar .list-sidenav > li > a {
  color: #0d0d0d;
  line-height: 1.5;
  display: block;
  padding: 0.95em 2em 0.95em 1em;
  position: relative;
}
#sidebar .list-sidenav > li > a::after {
  content: "\f061";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8125em;
  line-height: 1;
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -.5em;
}
#sidebar .list-sidenav > li.active > a, #sidebar .list-sidenav > li > a:hover {
  color: #db0a40;
}

/*
 * 下層メニュー用ボタン
 */
#sidebar .list-sidenav > li .toggle-submenu {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(1.5em + 0.55em + 0.55em);
  height: calc(1.5em + 0.55em + 0.55em);
  border: none;
  outline: none;
  background-color: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#sidebar .list-sidenav > li .toggle-submenu:before, #sidebar .list-sidenav > li .toggle-submenu:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 14px;
  height: 2px;
  margin: auto;
  background: #fff;
  transition: transform 0.3s ease;
}
#sidebar .list-sidenav > li .toggle-submenu:after {
  transform: rotate(90deg);
}
#sidebar .list-sidenav > li.is-open > .toggle-submenu:before {
  transform: rotate(360deg);
}
#sidebar .list-sidenav > li.is-open > .toggle-submenu:after {
  transform: rotate(0deg);
}

/* 
 * 下層メニュー
 */
#sidebar .list-sidenav li > ul {
  display: none;
}

#sidebar .list-sidenav > ul {
  position: relative;
}
#sidebar .list-sidenav > ul > a:after {
  display: none;
}
#sidebar .list-sidenav > ul > ul {
  background-color: #fff;
}
#sidebar .list-sidenav > ul > ul > li {
  position: relative;
}
#sidebar .list-sidenav > ul > ul > li > a {
  color: #333;
  font-size: 0.875em;
  line-height: 1.5;
  padding: 0.65em 2em 0.65em 1.3em;
  display: block;
  background-color: #fff;
  position: relative;
}
#sidebar .list-sidenav > ul > ul > li > a:before {
  content: "\f0da";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 50%;
  margin-top: -.5em;
}
#sidebar .list-sidenav > ul > ul > li.active > a, #sidebar .list-sidenav > ul > ul > li > a:hover {
  background-color: #ddd;
}

/* -------------------------------
	半透明
-------------------------------- */
.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: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 992px) {
  .overlay {
    display: none;
  }
}

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

#menuButton {
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 3px;
  margin: auto;
  background: #fff;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #fff;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -9px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  transform: translate(0, 9px);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  color: #fff;
  font-size: 10px;
  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: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px);
  padding-bottom: min(calc(50px + 20 * (100vw - 375px) / 1225), 70px);
  background-color: #08285e;
  page-break-inside: avoid;
}

.footer_content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.footer_content h2 {
  font-size: 1rem;
  padding: 0 20px;
}
.footer_content h2, .footer_content p {
  text-align: center;
}
.footer_content p {
  font-weight: 400;
  font-size: 0.88888rem;
  letter-spacing: 0.06em;
}
.footer_content p a {
  color: #fff;
}
.footer_content p a:hover {
  opacity: 0.65;
}
@media print, screen and (min-width: 992px) {
  .footer_content h2, .footer_content p {
    text-align: left;
  }
  .footer_content h2 {
    padding: 0;
  }
}

.foot_tel_list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  .foot_tel_list {
    display: flex;
    justify-content: center;
  }
  .foot_tel_list > li + li:before {
    content: "/";
    margin: 0 0.5em;
  }
}
@media print, screen and (min-width: 992px) {
  .foot_tel_list {
    text-align: left;
    justify-content: flex-start;
  }
}

.f_navi {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .f_navi {
    display: block;
    margin: 30px 0;
  }
  .f_navi .f_navi_col {
    margin-bottom: 20px;
  }
  .f_navi .f_navi_col:last-child {
    margin: 0;
  }
  .f_navi .f_navi_col > ul {
    font-size: 0.88888rem;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 0 1em;
  }
  .f_navi .f_navi_col > ul > li > a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  .f_navi .f_navi_col > ul > li > a:hover {
    opacity: 0.65;
  }
}
@media print, screen and (min-width: 992px) {
  .f_navi {
    margin: 0;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: flex-end;
    gap: 0 100px;
  }
  .f_navi .f_navi_col {
    margin: 0;
  }
  .f_navi .f_navi_col > ul {
    display: block;
  }
  .f_navi .f_navi_col > ul > li {
    margin-bottom: 0.5em;
  }
  .f_navi .f_navi_col > ul > li:last-child {
    margin-bottom: 0;
  }
}

.foot_en {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .foot_en {
    color: #08285e;
    font-size: 20px;
    line-height: 0.75;
    letter-spacing: 0.02em;
    text-align: center;
    text-shadow: -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 1px 1px 0 #fff;
    display: block;
    margin-bottom: 1rem;
    position: relative;
    z-index: 0;
  }
}
@media print, screen and (min-width: 992px) {
  .foot_en {
    font-size: min(calc(20px + 20 * (100vw - 992px) / 608), 40px);
    text-align: right;
    margin: 0;
  }
}

.copyright {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
}

/* 印刷用 */
@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 */
