@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: 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: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
}

/* -------------------------------
	ローディング
-------------------------------- */
.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 {
  --header-h: 50px;
  width: 100%;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
@media print, screen and (min-width: 1200px) {
  #header {
    --header-h: 80px;
  }
}
@media print {
  #header {
    position: absolute;
  }
}
#header .container-fluid {
  padding: 0;
}

/**/
@media screen and (min-width: 1200px) {
  #header {
    transition: transform 0.3s ease;
  }

  .fixed-nav #header {
    transform: translateY(-100%);
  }
}
/* ---  --- */
.row-head {
  display: flex;
  align-items: center;
  height: var(--header-h);
}
.row-head .logo {
  padding-left: clamp(15px, 2vw, 40px);
}
.row-head .logo h1 {
  font-size: 1rem;
  line-height: normal;
  padding: 0;
  margin: 0;
}
.row-head .logo h1 img {
  height: 30px;
}
@media print, screen and (min-width: 1200px) {
  .row-head .logo {
    flex: 0 0 min(24vw, 480px);
    padding-right: 15px;
  }
  .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;
    justify-content: flex-end;
    flex: 1 1 0;
  }
}

.head_column {
  flex: 1 1 0;
  display: flex;
  flex-wrap: wrap;
  padding: 0 min(calc(20px + 30 * (100vw - 992px) / 928), 50px);
}
.head_column #gNavi, .head_column .head_tel {
  flex: 0 0 100%;
  height: calc(var(--header-h) / 2);
  display: grid;
  align-items: center;
}
.head_column #gNavi {
  order: 2;
}
.head_column .head_tel {
  order: 1;
}
@media print, screen and (min-width: 1500px) {
  .head_column {
    flex-wrap: nowrap;
  }
  .head_column #gNavi, .head_column .head_tel {
    height: var(--header-h);
  }
  .head_column #gNavi {
    flex: 1 1 0;
    order: 1;
    padding-right: min(calc(20px + 30 * (100vw - 992px) / 928), 50px);
  }
  .head_column .head_tel {
    flex: 0 0 auto;
    order: 2;
  }
}

.list-gnav {
  font-size: min(calc(14px + 2 * (100vw - 992px) / 508), 16px);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 1em;
}
@media print, screen and (min-width: 1500px) {
  .list-gnav {
    font-size: min(calc(14px + 2 * (100vw - 1500px) / 300), 16px);
  }
}
.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: block;
  position: relative;
}
.list-gnav > li > a:after {
  content: '';
  position: absolute;
  top: calc(50% - 1em);
  left: calc(50% - 3px);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: scale(0);
  background-color: #ff6b2b;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.list-gnav > li > a:hover:after, .list-gnav > li.active > a:after {
  transform: scale(1);
  visibility: visible;
}

.head_tel {
  padding: 0;
  height: calc(var(--header-h) / 2);
}
.head_tel .telphone {
  font-size: min(calc(20px + 12 * (100vw - 1200px) / 500), 32px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.head_tel .telphone i {
  color: #0350bf;
  font-size: 0.625em;
  line-height: 2;
  letter-spacing: normal;
  text-align: center;
  width: 2em;
  height: 2em;
  margin-right: 0.5em;
  border: solid 1px #0350bf;
}
@media print, screen and (min-width: 1500px) {
  .head_tel .telphone {
    font-size: min(calc(22px + 10 * (100vw - 1500px) / 300), 32px);
  }
}

.head_nav {
  font-size: min(calc(13px + 5 * (100vw - 1200px) / 500), 18px);
  flex: 0 0 20em;
}
@media print, screen and (min-width: 1500px) {
  .head_nav {
    font-size: min(calc(14px + 4 * (100vw - 1500px) / 300), 18px);
  }
}
.head_nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.head_nav > ul > li .btn {
  color: #fff;
  font-weight: 700;
  font-size: 1em;
  display: grid;
  place-items: center;
  height: var(--header-h);
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: #000;
}
.head_nav > ul > li .btn > .in {
  display: block;
}
.head_nav > ul > li .btn > .in i {
  font-size: 1.33334em;
  display: block;
  margin: 0 auto 0.15em;
}
.head_nav > ul > li .head_btn_contact {
  background-color: #0350bf;
}
.head_nav > ul > li .head_btn_contact:hover {
  background-color: #023B8F;
}
.head_nav > ul > li .head_btn_accident {
  background-color: #ff6b2b;
}
.head_nav > ul > li .head_btn_accident:hover {
  background-color: #E84600;
}

/* スマホ用電話番号 */
/* -------------------------------
	main
-------------------------------- */
/* -------------------------------
	main title
-------------------------------- */
.main_ttl {
  height: min(calc(180px + 180 * (100vw - 375px) / 1025), 360px);
  display: flex;
  align-items: flex-end;
  margin-top: 50px;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 768px) {
  .main_ttl {
    margin-top: 80px;
  }
}
.main_ttl > .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #fff;
  pointer-events: none;
}
.main_ttl > .bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.main_ttl h2 {
  line-height: 1.5;
  text-align: center;
  margin: 0;
  padding-bottom: 20px;
}
.main_ttl h2 > .fs-en {
  color: #0350bf;
  font-size: min(calc(15px + 15 * (100vw - 375px) / 1025), 30px);
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, white 50%, white 95%, rgba(255, 255, 255, 0) 95%, rgba(255, 255, 255, 0) 100%);
}
.main_ttl h2 > .fs-jp {
  font-size: min(calc(23px + 37 * (100vw - 375px) / 1025), 60px);
  line-height: normal;
  text-align: center;
  display: block;
  text-shadow: -1px -1px 0 #fff,-1px 1px 0 #fff,1px -1px 0 #fff,1px 1px 0 #fff;
}

/* -------------------------------
	パンくず
-------------------------------- */
.breadcrumb_wrap {
  display: none;
  letter-spacing: normal;
  padding: 6px 0;
  position: absolute;
  left: 0;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .breadcrumb_wrap {
    display: block;
  }
}
.breadcrumb_wrap .panlist {
  color: #777;
  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: #777;
  white-space: nowrap;
}
.breadcrumb_wrap .panlist > li.active > a {
  color: #aaa;
  text-decoration: none;
  pointer-events: none;
}
.breadcrumb_wrap .panlist > li + li:before {
  content: ">";
  letter-spacing: normal;
  display: block;
  padding: 0 0.5em;
}

/* -------------------------------
	pagetop
-------------------------------- */
#pagetop {
  position: fixed;
  right: 10px;
  bottom: 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 10;
}
#pagetop img {
  width: 40px;
}
#pagetop.is-active {
  opacity: 1;
  visibility: visible;
}
@media print, screen and (min-width: 768px) {
  #pagetop {
    bottom: 20px;
    right: 20px;
  }
}
@media print, screen and (min-width: 1200px) {
  #pagetop {
    right: 20px;
    bottom: 80px;
  }
}

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

/* -------------------------------
	サイドメニュー
-------------------------------- */
#sidebar {
  position: fixed;
  top: 0px;
  bottom: 0;
  right: -280px;
  width: 280px;
  padding-top: 50px;
  text-align: left;
  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: 1200px) {
  #sidebar {
    display: none !important;
  }
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .list-sidenav {
  width: 100%;
  border-top: solid 1px #ccc;
}
#sidebar .list-sidenav > li {
  text-align: left;
  border-bottom: solid 1px #ccc;
  position: relative;
}
#sidebar .list-sidenav > li > a {
  color: #000;
  line-height: 1.5;
  display: block;
  padding: 0.9em 2em 0.9em 1em;
  position: relative;
}
#sidebar .list-sidenav > li > a:after {
  content: "\f061";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  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: #000;
  background-color: #efefef;
}

/**/
.side_nav {
  font-size: 16px;
  flex: 0 0 100%;
}
.side_nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.side_nav > ul > li .btn {
  color: #fff;
  font-weight: 700;
  font-size: 1em;
  display: grid;
  place-items: center;
  height: 80px;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: #000;
}
.side_nav > ul > li .btn > .in {
  display: block;
}
.side_nav > ul > li .btn > .in i {
  font-size: 1.33334em;
  display: block;
  margin: 0 auto 0.15em;
}
.side_nav > ul > li .side_btn_contact {
  background-color: #0350bf;
}
.side_nav > ul > li .side_btn_contact:hover {
  background-color: #023B8F;
}
.side_nav > ul > li .side_btn_accident {
  background-color: #ff6b2b;
}
.side_nav > ul > li .side_btn_accident:hover {
  background-color: #E84600;
}

/**/
.side_tel {
  padding: 30px 0;
  height: calc(var(--header-h) / 2);
}
.side_tel .telphone {
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.side_tel .telphone i {
  color: #0350bf;
  font-size: 0.625em;
  line-height: 2;
  letter-spacing: normal;
  text-align: center;
  width: 2em;
  height: 2em;
  margin-right: 0.5em;
  border: solid 1px #0350bf;
}

/* -------------------------------
	半透明
-------------------------------- */
.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: 1200px) {
  .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: 1200px) {
  .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: #000;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #000;
}
#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: #000;
  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 {
  background: url("../images/common/footer_bg.jpg") no-repeat center center/cover;
  page-break-inside: avoid;
}
#footer .container-fluid {
  max-width: 1800px;
  padding: 0 clamp(15px, 5.55555vw, 100px);
}

.footer_content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(50px, 10vw, 200px) 0;
}
.footer_content h2 img {
  width: 260px;
}
.footer_content h2, .footer_content p {
  text-align: center;
}
.footer_content p {
  font-size: 15px;
}
@media print, screen and (min-width: 768px) {
  .footer_content h2 img {
    width: auto;
  }
}
@media print, screen and (min-width: 1200px) {
  .footer_content h2, .footer_content p {
    text-align: left;
  }
}

.foot_navi {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .foot_navi {
    display: block;
  }
}
.foot_navi > ul {
  font-size: min(calc(12px + 4 * (100vw - 768px) / 1032), 16px);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 2.22223vw, 40px);
}
.foot_navi > ul > li {
  flex: 0 0 17.5em;
  border-bottom: solid 1px #ccc;
}
.foot_navi > ul > li > a {
  color: #000;
  text-decoration: none;
  padding: 1em 0;
  display: block;
  position: relative;
  transition: opacity 0.3s ease;
}
.foot_navi > ul > li > a > i {
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -.5em;
}
.foot_navi > ul > li > a:hover {
  opacity: 0.65;
}
@media print, screen and (min-width: 1200px) {
  .foot_navi > ul {
    justify-content: flex-end;
  }
}

.footer_bottom {
  padding: 20px 0;
  border-top: solid 1px #cccccc;
}

.foot_nav_pdf {
  margin-bottom: 20px;
}
.foot_nav_pdf > ul {
  font-size: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 2em;
}
.foot_nav_pdf > ul > li > a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.foot_nav_pdf > ul > li > a:hover {
  color: #ff0000;
}
@media print, screen and (min-width: 1200px) {
  .foot_nav_pdf {
    margin-bottom: 0;
  }
  .foot_nav_pdf > ul {
    justify-content: flex-start;
  }
}

.copyright {
  font-size: 11px;
  text-align: center;
  letter-spacing: normal;
}
@media print, screen and (min-width: 1200px) {
  .copyright {
    font-size: 14px;
    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 */
