﻿@charset "utf-8";

/* Header ヘッダー
----------------------------------------------- */
.header {
  position: relative;
  z-index: 9999;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header__inner {
  position: relative;
  margin: 0 auto;
  max-width: 1600px;
}
.headerLogo {
  position: absolute;
  top: 12px;
  left: 1em;
  z-index: 1;
  margin: 0;
  line-height: 1;
}
.headerLogo__link {
  text-decoration: none;
}
.headerLogo__img {
  width: auto;
  height: 43px;
}
@media screen and (max-width: 991px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    height: 65px;
  }
}
@media screen and (min-width: 992px) {
  .header__inner {
    height: 100px;
  }
  .headerLogo {
    top: 20px;
    left: var(--s-inner-padding);
  }
  .headerLogo__img {
    height: 60px;
  }
}
/* Toggle トグル
----------------------------------------------- */
.toggle {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 9999;
  width: 65px;
  height: 65px;
  background: #ff9421;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.toggle .toggleBtn {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 22px;
  border: none;
  margin-top: calc((65px - 22px) / 2);
  background: none;
  transition: all 0.3s ease-out;
}
.toggle .toggleBtn span {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease-out;
}
.toggle .toggleBtn span:nth-of-type(1) {
  top: 0;
}
.toggle .toggleBtn span:nth-of-type(2) {
  top: 10px;
}
.toggle .toggleBtn span:nth-of-type(3) {
  bottom: 0;
}
.toggle.active .toggleBtn span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.toggle.active .toggleBtn span:nth-of-type(2) {
  opacity: 0;
}
.toggle.active .toggleBtn span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}
/* Navigation ナビゲーション
----------------------------------------------- */
/*　スマホナビ　*/
.spNav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 100vw;
  max-width: 420px;
  height: 100vh;
  padding: 100px 2em 100px;
  overflow-y: scroll;
  /*background: rgba(255, 255, 255, 0.8);*/
  background: #eff3ef;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translateX(100vw);
  transition: all 0.5s ease-out;
}
.spNav.active {
  transform: translateX(0%);
}
.spNav__nav {
  background: #fff;
  border-radius: 10px;
  padding: 1em;
}
.spNav__list {
  width: 90%;
  max-width: 300px;
  margin: 0 auto;
}
.spNav__list li {
  margin-bottom: 0;
  border-top: solid 1px var(--color-border);
}
.spNav__list > li:first-child {
  border-top: none;
}
.spNav__list li a,
.spNav__list li span {
  position: relative;
  display: block;
  color: var(--color-text);
  text-decoration: none;
  background: url(../images/common/icon-arrow01.png) no-repeat right 1.1em;
  background-size: 1em;
}
.spNav__list li span {
  background-image: url(../images/common/icon-arrow-u01.png);
}
.spNav__list > li > a,
.spNav__list > li > span {
  padding: 0.8em 1em 0.8em 0.2em;
}
.spNav__list > li > a strong,
.spNav__list > li > span strong {
  font-weight: 400;
}
.spNav__list .sub-menu {
  width: 97%;
  padding: 0;
  margin: 0 0 0 3%;
}
.spNav__list .sub-menu li a {
  padding: 0.6em 1em 0.6em 1.2em;
  background-position: right 0.9em;
  font-size: 0.9em;
}
.spNav__list .sub-menu li a::before {
  position: absolute;
  top: 1.4em;
  left: 0.2em;
  content: "";
  display: block;
  width: 0.5em;
  height: 1px;
  background: var(--color-border);
}
.spNav__btn {
  margin-top: 1em;
  text-align: center;
}
.spNav__btn__tel {
  margin-top: 0.5em;
}
.spNav__sns {
  display: flex;
  justify-content: center;
  gap: 0.5em;
}
.spNav__sns li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 5px;
  background: var(--color-main);
  line-height: 1;
  letter-spacing: 0;
}
.spNav__sns li a img {
  height: 1.5em;
}
/*　パソコンナビ　*/
.pcNav {
  clear: both;
  width: 100%;
  height: 100%;
  position: relative;
}
.pcNav__nav {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0.3em 1em 0.8em 1.5em;
}
.pcNav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pcNav__list > li {
  position: relative;
}
.pcNav__list li a,
.pcNav__list li span {
  position: relative;
  display: block;
  color: var(--color-text);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.pcNav__list li a strong,
.pcNav__list li span strong {
  font-weight: 600;
}
.pcNav__list > li > a,
.pcNav__list > li > span {
  margin: 0.5em 0;
  padding: 0em 1em;
  font-size: 0.95em;
}
.pcNav__list > li > a:hover,
.pcNav__list > li > span:hover {
  color: var(--color-sub);
}
.pcNav__list > li > a::before,
.pcNav__list > li > span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pcNav__list > li:hover > a::before,
.pcNav__list > li:hover > span::before {
  transform: scaleX(1);
}
.pcNav__list > li:has(.sub-menu) > a::before,
.pcNav__list > li:has(.sub-menu) > span::before {
  display: none;
}
.pcNav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
}
.pcNav__list > li:hover > .sub-menu {
  display: block;
}
.pcNav__list .sub-menu li {
  position: relative;
  margin: 0;
}
.pcNav__list .sub-menu li a {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.8em 1em 0.8em 1.2em;
  font-size: 0.9em;
  border-bottom: solid 1px var(--color-border);
}
.pcNav__list .sub-menu li:last-child a {
  border: none;
}
.pcNav__list .sub-menu li:hover > a {
  background-color: var(--color-main-light);
}
.pcNav__list .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  display: none;
  z-index: 1001;
}
.pcNav__list .sub-menu li:hover .sub-menu {
  display: block;
}
.pcNav__btn {
  position: absolute;
  top: 29px;
  right: 1.2em;
  clear: both;
  display: flex;
  gap: 0.6em;
}
.pcNav__btn div {
  height: 42px;
}
.pcNav__btn div a img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .pcNav,
  .pcNav__btn {
    display: none;
  }
  .pcNav__list li a,
  .pcNav__list li span {
    font-size: 0.8em;
  }
}
@media screen and (min-width: 992px) {
  .toggle,
  .spNav {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .pcNav__list > li > a,
  .pcNav__list > li > span {
    padding: 0em 1.2em;
  }
}
/* パンくず
----------------------------------*/
#breadcrumb {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1em 5% 1.2em;
  overflow: auto;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.8);
}
#breadcrumb ul {
  max-width: 1240px;
  margin: 0 auto;
}
#breadcrumb ul li {
  font-size: 0.9em;
  display: inline-block;
  margin: 0 0.2em 0 0;
  background: url(../images/common/icon-arrow03.png) no-repeat left 0.4em;
  background-size: 1em;
  padding: 0 0 0 1em;
}
#breadcrumb ul li.home {
  background: none;
  padding-left: 0;
}
#breadcrumb ul li a {
  color: #888;
  display: block;
  text-decoration: none;
}
#breadcrumb ul li a:hover {
  color: #aaa;
}
#breadcrumb br {
  display: none;
}
@media screen and (min-width: 768px) {
  #breadcrumb {
    padding: 1.5em 60px;
  }
}
/* コンテンツエリア
----------------------------------------------- */
@media screen and (max-width: 991px) {
  .wrapper {
    padding-top: 65px;
  }
}
:root {
  --s-inner-top: 3em;
  --s-inner-bottom: 3em;
  --s-inner-padding: 5vw;
}
.post {
  margin: 0 0 var(--s-inner-bottom);
  padding: var(--s-inner-top) 0 0;
}
.container {
  position: relative;
  z-index: 8;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-left: var(--s-inner-padding);
  padding-right: var(--s-inner-padding);
}
.container.is_narrow {
  max-width: 860px;
}
.section {
  position: relative;
}
.section.-MT {
  margin-top: var(--s-inner-top);
}
.section.-MB {
  margin-bottom: var(--s-inner-bottom);
}
.section.-PT {
  padding-top: var(--s-inner-top);
}
.section.-PB {
  padding-bottom: var(--s-inner-bottom);
}
@media screen and (min-width: 768px) {
  :root {
    --s-inner-top: 4em;
    --s-inner-bottom: 4em;
    --s-inner-padding: 2.5em;
  }
}
/* Pagetop ページトップ
----------------------------------------------- */
.pagetop {
  position: fixed;
  bottom: 100px;
  right: 10px;
  z-index: 999;
  width: 70px;
  transition: all 0.3s ease-out;
}
.pagetop a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .pagetop {
    bottom: 40px;
    right: 40px;
    width: 80px;
  }
}
/* Footer フッター
----------------------------------------------- */
.footer {
  position: relative;
  background: #eff3ef;
}
.footer__inner {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding-top: var(--s-inner-top);
  padding-bottom: var(--s-inner-bottom);
  padding-left: clamp(1rem, var(--s-inner-padding), 5rem);
  padding-right: clamp(1rem, var(--s-inner-padding), 5rem);
}
/* Footer Add */
.footerAdd__logo {
  margin: 0 auto 1.5em;
}
.footerAdd__logo img {
  width: 240px;
}
.footerAdd p.footerAdd__text {
  margin-bottom: 1em;
  line-height: 1.8;
  color: var(--color-main-dark);
  font-size: 0.9em;
}
.footerAdd p.footerAdd__text a {
  color: var(--color-main-dark);
  text-decoration: none;
}
.footerAdd p.footerAdd__text a:hover {
  text-decoration: underline;
}
/* Footer Nav */
.footerNav h3 {
  margin: 0 0 0.7em;
  padding-left: 1.5em;
  background: url(../images/common/icon-diamond02.png) no-repeat left top 0.25em;
  background-size: 1.2em;
  font-weight: 700;
  font-size: 0.9em;
}
.footerNav__list {
  border-top: solid 1px #31562d30;
}
.footerNav__list li a,
.footerNav__list li span {
  position: relative;
  display: block;
  padding: 0.6em 2em 0.6em 0.2em;
  border-bottom: solid 1px #31562d30;
  background: url(../images/common/icon-arrow03.png) no-repeat right center;
  background-size: 1em;
  color: var(--color-main-dark);
  text-decoration: none;
  font-size: 0.9em;
  transition: all 0.3s ease-out;
}
.footerNav__list > li > a strong,
.footerNav__list > li > span strong {
  font-weight: 400;
}
.footerNav__list li a:hover {
  opacity: 0.5;
}
/* Footer SNS */
.footerNav__sns {
  display: flex;
  gap: 0.5em;
}
.footerNav__sns li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 5px;
  background: var(--color-main-dark);
  line-height: 1;
  letter-spacing: 0;
  transition: all 0.3s ease-out;
}
.footerNav__sns li a:hover {
  opacity: 0.5;
}
.footerNav__sns li a img {
  height: 1.2em;
}
@media screen and (max-width: 991px) {
  .footerAdd__logo {
    text-align: center;
  }
  .footerAdd p.footerAdd__text {
    text-align: center;
  }
  .footerNav__sns {
    justify-content: center;
  }
  .footerNav h3 {
    margin-top: 2em;
  }
}
@media screen and (min-width: 768px) {
  .footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
  }
  .footer01 {
    width: 100%;
  }
  .footer02,
  .footer03 {
    width: 48.5%;
  }
}
@media screen and (min-width: 992px) {
  .footer01 {
    width: 34%;
    text-align: left;
  }
  .footer02,
  .footer03 {
    width: 30%;
  }
  .footerAdd__logo img {
    width: 260px;
  }
}
.copyright {
  clear: both;
  margin: 0;
  padding: 15px 0.5em 95px;
  text-align: center;
  font-size: 0.7em;
  background-color: #4c7956;
  color: #fff;
}
.copyright a {
  color: #fff;
  text-decoration: none;
}
.copyright a:hover {
  text-decoration: underline;
}
.spFixed {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 10px 15px;
  z-index: 999;
  background: #fff;
  border-top: solid 2px #a2caa8;
}
.spFixed__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.spFixed__list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #ff9421;
  border-radius: 5px;
}
.spFixed__list li:last-child a {
  background: #8fbf55;
}
.spFixed__list li a img {
  width: auto;
  height: 60px;
}
@media screen and (min-width: 992px) {
  .copyright {
    padding: 20px 0.5em;
  }
  .spFixed {
    display: none;
  }
}
