@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;
  line-height: var(--app-lh-base);
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

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

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

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

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

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

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

  h6, .h6 {
    font-size: 1.14rem;
    /* 18px相当 */
  }
}
@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: 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 {
  --row-head-h: 50px;
  width: 100%;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
@media print {
  #header {
    position: absolute;
  }
}
#header .container-fluid {
  padding-left: clamp(15px, 3vw, 60px);
  padding-right: 0;
}

/* ---  --- */
.row-head {
  display: flex;
  align-items: center;
  height: var(--row-head-h);
}
@media print, screen and (min-width: 1200px) {
  .row-head {
    --row-head-h: 80px;
  }
}
.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 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;
    justify-content: flex-end;
    flex: 0 0 80%;
  }
}

.head_tel {
  font-size: min(calc(15px + 5 * (100vw - 1200px) / 500), 20px);
  flex: 0 0 auto;
  height: var(--row-head-h);
  padding: 0 1.2em;
  display: grid;
  place-items: center;
  background-color: #a3b18a;
}
.head_tel .telphone {
  color: #fff;
}

.head_mail {
  font-size: min(calc(10px + 2 * (100vw - 1200px) / 500), 12px);
  flex: 0 0 8.33334em;
  height: var(--row-head-h);
}
.head_mail > a {
  color: #fff;
  font-size: 1em;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  transition: background 0.3s ease;
  background-color: #345e46;
}
.head_mail > a .in {
  display: block;
}
.head_mail > a i {
  font-size: 2.66667em;
  letter-spacing: normal;
  line-height: 1;
  display: block;
  margin: 0 auto 0.15625em;
}
.head_mail > a:hover {
  background-color: #ce000f;
}

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

.list-gnav {
  font-size: min(calc(12px + 4 * (100vw - 1200px) / 500), 16px);
  letter-spacing: normal;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0 1.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;
  text-align: center;
  display: grid;
  place-items: center;
  height: var(--row-head-h);
  position: relative;
  transition: color 0.3s ease;
}
.list-gnav > li > a:hover, .list-gnav > li.active > a {
  color: #345e46;
}
.list-gnav > li.active > a {
  font-weight: 700;
}

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

.list-gnav > li > div {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  white-space: nowrap;
  padding-top: 5px;
}
.list-gnav > li > div > ul {
  list-style: none;
  padding: 20px 30px;
  margin: 0;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.list-gnav > li > div > ul > li {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: dashed 1px #E1E1E1;
}
.list-gnav > li > div > ul > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.list-gnav > li > div > ul > li > a {
  display: block;
  padding-right: 2em;
  position: relative;
  transition: color 0.3s ease;
}
.list-gnav > li > div > ul > li > a::before {
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75em;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -.5em;
}
.list-gnav > li > div > ul > li > a:hover, .list-gnav > li > div > ul > li.active > a {
  color: #345e46;
}
.list-gnav > li > div > ul > li.active > a {
  font-weight: 700;
}

/* -------------------------------
	main
-------------------------------- */
/* -------------------------------
	main title
-------------------------------- */
.main_ttl {
  text-align: center;
  height: min(calc(150px + 150 * (100vw - 320px) / 1180), 300px);
  display: flex;
  align-items: center;
  margin-top: 50px;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 992px) {
  .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;
}
.main_ttl h2 {
  color: var(--primary);
  font-size: min(calc(20px + 18 * (100vw - 375px) / 1125), 38px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.5em 1.25em;
  margin: 0;
  display: inline-grid;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.85);
}

/* -------------------------------
	パンくず
-------------------------------- */
.breadcrumb_wrap {
  padding: 6px 0;
  position: absolute;
  left: 0;
  z-index: 10;
  width: 100%;
  display: none;
}
@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: 20px;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 10;
}
#pagetop.is-active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  #pagetop {
    right: 0;
    bottom: 0;
  }
  #pagetop img {
    width: 40px;
  }
}

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

/* -------------------------------
	サイドメニュー
-------------------------------- */
#sidebar {
  position: fixed;
  top: 0px;
  bottom: 0;
  right: calc(0px - min(100vw, 320px));
  width: min(100vw, 320px);
  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 {
  font-size: 15px;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  letter-spacing: 0.1em;
  width: 100%;
  padding: 20px 15px;
}
#sidebar .list-sidenav > li {
  text-align: left;
  border-bottom: solid 1px #ccc;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  position: relative;
}
#sidebar .list-sidenav > li > a {
  color: #222;
  font-weight: 500;
  line-height: 1.5;
  display: block;
  padding: 0.65em 2em 0.65em 0;
  position: relative;
}
#sidebar .list-sidenav > li > a:after {
  content: "\f105";
  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: #345e46;
}
#sidebar .list-sidenav > li > ul {
  list-style: none;
  padding: 0 0 0.25em;
  margin: 0;
}

/* 
 * 下層メニュー
 */
#sidebar .list-sidenav > li {
  position: relative;
}
#sidebar .list-sidenav > li > ul {
  background-color: #fff;
}
#sidebar .list-sidenav > li > ul > li {
  position: relative;
  border-bottom: dotted 1px #efefef;
}
#sidebar .list-sidenav > li > ul > li:last-child {
  border-bottom: none;
}
#sidebar .list-sidenav > li > ul > li > a {
  color: #222;
  line-height: 1.5;
  padding: 0.5em 0em 0.5em 1.5em;
  display: block;
  background-color: #fff;
  position: relative;
}
#sidebar .list-sidenav > li > ul > li > a:before {
  content: "\f0da";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75em;
  line-height: 1;
  position: absolute;
  left: 0.5em;
  top: 50%;
  margin-top: -.4em;
}
#sidebar .list-sidenav > li > ul > li.active > a, #sidebar .list-sidenav > li > 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: 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-color: #F5F3EE;
  page-break-inside: avoid;
}
#footer h2 {
  font-size: 1rem;
  text-align: center;
  margin: 0;
}
#footer h2 img {
  width: 200px;
}
@media print, screen and (min-width: 768px) {
  #footer h2 img {
    width: auto;
  }
}

.footer_content {
  padding: min(calc(40px + 40 * (100vw - 375px) / 1125), 80px) 0;
}

.foot_nav {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .foot_nav {
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    gap: 0 2em;
    margin-top: 1.5rem;
  }
  .foot_nav .foot_nav_col > ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .foot_nav .foot_nav_col > ul > li {
    margin-bottom: 1em;
  }
  .foot_nav .foot_nav_col > ul > li:last-child {
    margin-bottom: 0;
  }
  .foot_nav .foot_nav_col > ul > li > a {
    color: #222;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .foot_nav .foot_nav_col > ul > li > a:hover {
    color: #a3b18a;
  }
  .foot_nav .foot_nav_col > ul > li > ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .foot_nav .foot_nav_col > ul > li > ul > li {
    margin-top: 1em;
    padding-left: 1.25em;
    position: relative;
  }
  .foot_nav .foot_nav_col > ul > li > ul > li::before {
    content: "-";
    position: absolute;
    left: 0;
  }
  .foot_nav .foot_nav_col > ul > li > ul > li > a {
    color: #222;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .foot_nav .foot_nav_col > ul > li > ul > li > a:hover {
    color: #a3b18a;
  }
}
@media print, screen and (min-width: 992px) {
  .foot_nav {
    font-size: min(calc(12px + 4 * (100vw - 992px) / 508), 16px);
    margin-top: 0;
    justify-content: space-between;
  }
}

.copyright {
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  padding: 0 15px;
  width: 100%;
  height: 50px;
  display: grid;
  place-items: center;
  background-color: #345e46;
}

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