﻿@charset "utf-8";

/* Header ヘッダー
----------------------------------------------- */
.header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 80px;
  /*background: rgba(255, 255, 255, 0.95);*/
  border-bottom: solid 1px #eee;
}
.headerLogo {
  position: absolute;
  top: 22px;
  left: 20px;
  z-index: 1;
  margin: 0;
  line-height: 1;
}
.headerLogo__link {
  text-decoration: none;
}
.headerLogo__img {
  height: 40px;
}
@media screen and (min-width: 768px) {
  .header {
    position: relative;
    height: 200px;
  }
  .frontpage .header {
    height: 140px;
  }
  .headerLogo {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .headerLogo__img {
    height: 50px;
  }
}
/* Toggle トグル
----------------------------------------------- */
.toggle {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  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: 9px;
  background: none;
  transition: all 0.3s ease-out;
}
.toggle .toggleBtn span {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  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;
  font-size: 0.9em;
  padding: 80px 0 100px;
  overflow-y: scroll;
  /*background: rgba(255, 255, 255, 0.8);*/
  background: #fafafa;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translateX(100vw);
  transition: all 0.5s ease-out;
}
.spNav.active {
  transform: translateX(0%);
}
.spNav__list {
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
}
.spNav__list li {
  margin-bottom: 0;
  border-bottom: solid 1px #ddd;
}
.spNav__list li a,
.spNav__list li span {
  position: relative;
  display: block;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration: none;
}
.spNav__list > li > a,
.spNav__list > li > span {
  padding: 9px 2px 10px;
}
.spNav__list li a > span {
  display: inline-block;
  margin-left: 15px;
  opacity: 0.5;
  font-size: 12px;
}
.spNav__list > li > a strong,
.spNav__list > li > span strong {
  font-weight: 400;
  letter-spacing: 2px;
}
.spNav__list .sub-menu {
  width: 96%;
  padding: 0;
  margin: 0.4em 0 0.4em 4%;
}
.spNav__list .sub-menu li {
  margin-bottom: 3px;
}
.spNav__list .sub-menu li a {
  padding: 2px 0 2px 13px;
  font-size: 0.9rem;
}
.spNav__list .sub-menu li a::before {
  position: absolute;
  top: 15px;
  left: 0;
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #bbb;
}
.spNav__sns {
  margin-top: 30px;
}
.spNav__sns ul {
  display: flex;
  justify-content: center;
}
.spNav__sns ul li a {
  display: block;
  margin: 0 10px;
}
.spNav__sns ul li a img {
  height: 24px;
}
/*　パソコンナビ　*/
.pcNav {
  clear: both;
}
.pcNav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 118px;
}
.frontpage .pcNav__list {
  padding-top: 45px;
}
.pcNav__list > li {
  position: relative;
  margin: 0;
  transition: all 0.3s ease-out;
}
.pcNav__list li a,
.pcNav__list li span {
  position: relative;
  display: block;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1.7;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.pcNav__list li a strong,
.pcNav__list li span strong {
  font-weight: 400;
}
.pcNav__list li a > span {
  display: block;
  opacity: 0.5;
  font-size: 12px;
}
.pcNav__list > li > a,
.pcNav__list > li > span {
  padding: 5px 0px;
}
.pcNav__list > li:hover > a,
.pcNav__list > li:hover > span {
  color: #aaa;
}
.pcNav__list .sub-menu {
  position: absolute;
  top: 0;
  right: -251px;
  display: none;
  background: #fff;
  border-left: solid 1px #000;
}
.pcNav__list .sub-menu::before {
  position: absolute;
  top: 14px;
  left: -7px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid #000000;
  border-left: 0;
}
.pcNav__list > li:hover > .sub-menu {
  display: block;
}
.pcNav__list > li:hover > .sub-menu > li:hover > .sub-menu {
  display: block;
}
.pcNav__list > li:hover > .sub-menu > li:hover > .sub-menu > li:hover > .sub-menu {
  display: block;
}
.pcNav__list .sub-menu li {
  position: relative;
  margin: 0;
}
.pcNav__list .sub-menu li a {
  width: 250px;
  margin: 0;
  padding: 12px 20px 8px;
  font-size: 0.8rem;
  transition: all 0.3s ease-out;
  border-bottom: solid 1px #fff;
}
.pcNav__list .sub-menu li:last-child a {
  border: none;
}
.pcNav__list .sub-menu li:hover > a {
  color: #aaa;
}
.pcNav__sns {
  margin-top: 30px;
  margin-left: -60px;
}
.pcNav__sns ul {
  display: flex;
  justify-content: center;
}
.pcNav__sns ul li a {
  display: block;
  margin: 0 4px;
  transition: all 0.3s ease-out;
}
.pcNav__sns ul li a:hover {
  opacity: 0.7;
}
.pcNav__sns ul li a img {
  width: 20px;
}
@media screen and (max-width: 767px) {
  .pcNav {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .toggle,
  .spBtn {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .pcNav__list {
    gap: 30px;
  }
}
/* パンくず
----------------------------------*/
#breadcrumb {
  width: 100%;
  padding: 10px 30px;
  overflow: auto;
  white-space: nowrap;
}
#breadcrumb ul li {
  font-size: 0.7em;
  display: inline-block;
  margin: 0 6px 0 0;
  background: url(../images/common/icon_arrow02.png) no-repeat left 6.8px;
  background-size: 8px;
  padding: 0 0 0 14px;
}
#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;
}
@media screen and (min-width: 768px) {
  #breadcrumb {
    padding: 10px 60px;
  }
  #breadcrumb ul li {
    background-position: left 8px;
  }
}
@media screen and (min-width: 992px) {
  #breadcrumb {
    margin-left: 240px;
    padding: 10px 50px;
  }
}
/* コンテンツエリア
----------------------------------------------- */
:root {
  --s-inner-top: 4em;
  --s-inner-bottom: 4em;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
.post {
  margin: 0 0 var(--s-inner-bottom);
  padding: var(--s-inner-top) 0 0;
  background: #fff;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 8%;
  padding-right: 8%;
}
.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: 6em;
    --s-inner-bottom: 6em;
  }
  .container {
    max-width: 1100px;
    padding-left: 60px;
    padding-right: 60px;
  }
  .container.is_narrow {
    max-width: 860px;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --s-inner-top: 8em;
    --s-inner-bottom: 8em;
  }
}
/* アイキャッチ
----------------------------------------------- */
#eyecatch {
  margin: 0 auto 0px;
  text-align: center;
}
#eyecatch img {
  margin: 0 auto 20px;
  height: auto;
}
/* Pagetop ページトップ
----------------------------------------------- */
.pagetop {
  margin-top: 2rem;
  text-align: center;
}
.pagetop a img {
  width: 60px;
}
/* Footer フッター
----------------------------------------------- */
.footer {
  margin: 0;
}
.footer__inner {
  position: relative;
  margin: 0 auto;
  padding-top: 3rem;
  padding-bottom: 2rem;
  padding-left: clamp(1rem, var(--s-inner-padding), 5rem);
  padding-right: clamp(1rem, var(--s-inner-padding), 5rem);
}
/* フッターアドレス */
.footerAdd p {
  margin-bottom: 1.2rem;
  text-align: center;
  line-height: 1.8;
}
/* フッターナビ */
.footerNav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 1rem;
}
.footerNav__list li {
  margin-bottom: 0;
}
.footerNav__list li a,
.footerNav__list li span {
  position: relative;
  display: block;
  color: var(--color-text);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-decoration: none;
}
.footerNav__list li a:hover {
  text-decoration: underline;
}
.footerNav__list > li > a,
.footerNav__list > li > span {
  padding: 5px 0px;
}
.footerNav__list > li > a strong,
.footerNav__list > li > span strong {
  font-weight: 400;
}
/* フッターSNS */
.footerSns {
  margin: 1.7rem 0 2.5rem;
}
.footerSns ul {
  display: flex;
  justify-content: center;
}
.footerSns ul li a {
  display: block;
  margin: 0 10px;
}
.footerSns ul li a img {
  height: 25px;
}
/* フッターバナー */
.footerBnr {
  margin: 2.5rem 0;
}
.footerBnr ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.footerBnr ul li a {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 10px;
  transition: all 0.3s ease-out;
}
.footerBnr ul li a:hover {
  background-color: #ddd;
}
.footerBnr ul li a img {
  width: 100px;
}
/* フッターロゴ */
.footerLogo {
  margin-top: 2.5rem;
  text-align: center;
}
.footerLogo a img {
  width: 180px;
}
/* コピーライト */
.copyright {
  clear: both;
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 1px;
}
.copyright a {
  color: var(--color-text);
  text-decoration: none;
}
.copyright a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 1100px;
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  .footerInfo {
    display: flex;
    justify-content: space-between;
  }
  .footerAdd {
    width: calc(100% - 280px);
  }
  .footerAdd p {
    text-align: left;
  }
  .footerSns {
    margin-top: 0;
    width: 240px;
  }
  .footerBnr {
    margin: 0.5rem 0 1.5rem;
  }
  .footerBnr ul {
    justify-content: flex-start;
  }
  .footerBnr ul li a img {
    width: 120px;
  }
  .footerNav__list {
    justify-content: flex-start;
  }
  .copyright {
    position: absolute;
    bottom: 2em;
    right: 3em;
  }
}
