﻿@charset "utf-8";

/* Header ヘッダー
----------------------------------------------- */
.header {
  position: relative;
  width: 100%;
  height: 120px;
}
.header::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 250px;
  background: url(../images/contents/bg_header.png) no-repeat top right;
  background-size: 1000px auto;
}
.header__inner {
  position: relative;
  margin: 0 auto;
}
.headerLogo {
  position: absolute;
  top: 25px;
  left: 1.5em;
  z-index: 1;
  margin: 0;
  line-height: 1;
}
.headerLogo__link {
  text-decoration: none;
}
.headerLogo__img {
  width: 60px;
}
@media screen and (min-width: 992px) {
  .header {
    height: 200px;
  }
  .headerLogo {
    top: 40px;
    left: var(--s-inner-padding);
  }
  .headerLogo__img {
    width: 100px;
  }
  .header::before {
    height: calc(100vw / 4);
    background-size: contain;
  }
}
/* Toggle トグル
----------------------------------------------- */
.toggle {
  position: fixed;
  top: 20px;
  right: 10px;
  z-index: 9999;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.toggle .toggleBtn img {
  width: 60px;
  transition: all 0.3s ease-out;
}
.toggle .toggleBtn span {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-main);
  transition: all 0.3s ease-out;
}
.cartBtn {
  position: fixed;
  top: 20px;
  right: 70px;
  z-index: 9999;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.cartBtn img {
  width: 60px;
}
/* Navigation ナビゲーション
----------------------------------------------- */
/*　スマホナビ　*/
.spNav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 100vw;
  max-width: 420px;
  height: 100vh;
  padding: 100px 2em 160px;
  overflow-y: scroll;
  /*background: rgba(255, 255, 255, 0.8);*/
  background: #eaf6f9;
  -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: 2em;
  text-align: center;
}
.spNav__sns {
  display: flex;
  justify-content: center;
  gap: 0.5em;
}
.spNav__sns li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 50px;
  border-radius: 5px;
  background: var(--color-btn);
  line-height: 1;
  letter-spacing: 0;
}
.spNav__sns li a img {
  height: 1.5em;
}
.spNav__lang {
  position: absolute;
  top: 3em;
  left: 2em;
  display: flex;
  justify-content: center;
  gap: 0.5em;
}
.spNav__lang li {
  width: 80px;
}
/*　パソコンナビ　*/
.pcNav {
  clear: both;
}
.pcNav__nav {
  position: absolute;
  top: 6em;
  right: 0;
  background: #fff;
  border-radius: 100px 0 0 100px;
  padding: 0.8em 1em 0.8em 1.5em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: calc(100% - 180px);
  max-width: 1120px;
}
.pcNav__list {
  display: flex;
  flex-wrap: wrap;
}
.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.15em 0;
  padding: 0em 1em;
  border-right: solid 1px var(--color-sub);
}
.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: 1.6em;
  right: 1.2em;
  clear: both;
  display: flex;
  gap: 0.6em;
}
.pcNav__btn div {
  height: 46px;
}
.pcNav__btn div a img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .pcNav {
    display: none;
  }
  .pcNav__list li a,
  .pcNav__list li span {
    font-size: 0.8em;
  }
}
@media screen and (min-width: 992px) {
  .toggle,
  .spNav,
  .cartBtn {
    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_arrow02.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;
}
@media screen and (min-width: 768px) {
  #breadcrumb {
    padding: 1.5em 60px;
  }
}
/* コンテンツエリア
----------------------------------------------- */
.wrapper {
  position: relative;
  z-index: 1;
}
:root {
  --s-inner-top: 4em;
  --s-inner-bottom: 4em;
  --s-inner-padding: 8%;
}
.post {
  margin: 0 0 var(--s-inner-bottom);
  padding: var(--s-inner-top) 0 0;
}
.container {
  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: 7em;
    --s-inner-bottom: 7em;
    --s-inner-padding: 2.5em;
  }
}
/* Pagetop ページトップ
----------------------------------------------- */
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 999;
  transition: all 0.3s ease-out;
}
.pagetop a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
/* 画像のページトップ */
.pagetop {
  width: 70px;
}
/* 丸くなっているページトップ */
/*
 .pagetop {
  width: clamp(60px, 8vw, 80px);
  height: clamp(60px, 8vw, 80px);
  background: var(--color-main);
  border-radius: 50%;
  transition: all 0.3s ease-out;
}
.pagetop a {
  width: 100%;
  height: 100%;
}
.pagetop a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(30px, 4vw, 40px);
  height: clamp(30px, 4vw, 40px);
}
.pagetop:hover {
  background: var(--color-main-dark);
}
  */
@media screen and (min-width: 992px) {
  .pagetop {
    bottom: 40px;
    right: 40px;
  }
  /* 画像のページトップ */
  .pagetop {
    width: 120px;
  }
}
/* Footer フッター
----------------------------------------------- */
.footer {
  position: relative;
  margin: 20vw 0 0;
  background: url(../images/contents/bg_footer.png) repeat top center;
  background-size: 1000px;
}
.footer__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: var(--s-inner-top);
  padding-left: clamp(1rem, var(--s-inner-padding), 5rem);
  padding-right: clamp(1rem, var(--s-inner-padding), 5rem);
}
.footerAdd__logo {
  margin: 0 auto 1.5em;
  text-align: center;
}
.footerAdd__logo img {
  width: 100px;
}
.footerAdd__box {
  margin-bottom: 1.5em;
  background-color: #fff;
  padding: 1em 1.5em;
  border-radius: 10px;
  box-shadow: 5px 5px 0 #c3d3e0;
}
.footerAdd p.footerAdd__title {
  margin-bottom: 0.3em;
  color: var(--color-main);
  font-size: 1.2em;
  font-weight: 700;
}
.footerAdd p.footerAdd__text {
  margin-bottom: 1.2em;
  line-height: 1.8;
  text-align: center;
}
.footerAdd p.footerAdd__text a {
  color: var(--color-text);
  text-decoration: none;
}
.footerAdd p.footerAdd__text a:hover {
  text-decoration: underline;
}
.footer::before {
  content: "";
  position: absolute;
  top: -35vw;
  left: 0;
  width: 100%;
  height: calc(100vw / 2);
  background: url(../images/contents/bg_footer2.png) no-repeat bottom center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .footerNav__list {
    margin-top: 2em;
    border-top: solid 1px var(--color-sub-dark);
  }
  .footerNav__list li a,
  .footerNav__list li span {
    position: relative;
    display: block;
    color: var(--color-text);
    font-size: 0.9em;
    text-decoration: none;
    padding: 0.6em 2em 0.6em 0.2em;
    background: url(../images/common/icon_arrow03.png) no-repeat right center;
    background-size: 1em;
    border-bottom: solid 1px var(--color-sub-dark);
    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;
  }
}
@media screen and (min-width: 768px) {
  .footer {
    background-size: cover;
  }
  .footerNav__list {
    margin-top: 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5em;
  }
  .footerNav__list li a,
  .footerNav__list li span {
    color: var(--color-text);
    font-size: 0.9em;
    text-decoration: none;
    padding: 0.6em 1em;
    transition: all 0.3s ease-out;
  }
  .footerNav__list > li > a strong,
  .footerNav__list > li > span strong {
    font-weight: 400;
  }
  .footerNav__list li a:hover {
    text-decoration: underline;
  }
}
.footerNav__sns {
  margin-top: 2em;
  display: flex;
  justify-content: center;
  gap: 1em;
}
.footerNav__sns li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 1.2em 1.2em;
  background: var(--color-sub-dark);
  color: #fff;
  font-size: 0.8em;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.footerNav__sns li a:hover {
  background: var(--color-main-dark);
}
.copyright {
  clear: both;
  margin: 0;
  padding: 3.5em 0;
  text-align: center;
  font-size: 0.7em;
}
.copyright a {
  color: var(--color-text);
  text-decoration: none;
}
.copyright a:hover {
  text-decoration: underline;
}
