@charset "UTF-8";
:root {
  --sans: "Noto Sans JP", sans-serif;
  --serif: "Noto Serif JP", serif;
  --outfit: "Outfit", sans-serif;
}

* {
  font-family: var(--sans);
  color: #333;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #231815;
}

a {
  transition: 0.4s;
}
a:hover {
  opacity: 0.6;
  transition: 0.4s;
}

img {
  vertical-align: bottom;
}

.sp_only {
  display: none;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
/* ----- main ----- */
.secInner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

body.fixed,
body.fixed main {
  height: 100%;
  overflow: hidden;
}

.burgerBtn {
  display: block;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 100;
  transition: 0.3s;
  display: none;
}
.burgerBtn:before, .burgerBtn:after {
  content: "";
  width: 55px;
  height: 55px;
  transition: 0.3s;
  position: absolute;
  left: 0;
  top: 0;
}
.burgerBtn:before {
  background: url(../img/common/btn-burger.png) center/contain no-repeat;
  z-index: 2;
}
.burgerBtn:after {
  background: url(../img/common/btn-burger-close.png) center/contain no-repeat;
  z-index: 1;
}
.burgerBtn.active:before {
  opacity: 0;
}
@media screen and (max-width: 820px) {
  .burgerBtn {
    display: block;
  }
}

.burgerMenu {
  max-width: 100%;
  width: 100%;
  height: calc(100% - 55px);
  border-radius: 25px 25px 0 0;
  background-color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  z-index: 99;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}
.burgerMenu .burgerHead {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  padding: 20px 0;
  background-color: #ededed;
  border-radius: 25px 25px 0 0;
}
.burgerMenu .burgerNav li {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: left;
  color: #000;
  position: relative;
}
.burgerMenu .burgerNav li a {
  display: block;
  padding: 15px 30px;
}
.burgerMenu .burgerNav li:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  display: block;
  position: absolute;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  right: 30px;
}
.burgerMenu .burgerNav li:nth-of-type(n+2) {
  border-top: 1px solid #ededed;
}
.burgerMenu.active {
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}

#header {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#header .headerInner {
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .headerInner .logo {
  max-width: 200px;
}
#header .headerInner .navWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .headerInner .navWrap li {
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
}
#header .headerInner .navWrap li a:hover {
  color: #027657;
  opacity: 1;
}
#header .headerInner .navWrap li:nth-of-type(n+2) {
  margin-left: 60px;
}
#header .headerInner .navWrap li:nth-of-type(n+2):before {
  content: "・";
  font-size: 2.2rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: -30px;
}
#header .headerInner .navWrap li.btn {
  font-size: 1.6rem;
  margin-left: 40px;
  color: #fff;
  background-color: #027657;
  border-radius: 999px;
}
#header .headerInner .navWrap li.btn a {
  padding: 7px 20px;
  display: block;
}
#header .headerInner .navWrap li.btn a:hover {
  color: #fff;
  opacity: 0.6;
}
#header .headerInner .navWrap li.btn img {
  width: 20px;
  vertical-align: middle;
  padding-bottom: 5px;
  margin-left: 15px;
}
#header .headerInner .navWrap li.btn:before {
  content: none;
}
#header .headerInner .cartBtn {
  display: none;
}
@media screen and (max-width: 1024px) {
  #header .headerInner .navWrap li {
    font-size: 1.6rem;
  }
  #header .headerInner .navWrap li:nth-of-type(n+2) {
    margin-left: 40px;
  }
  #header .headerInner .navWrap li:nth-of-type(n+2):before {
    content: "・";
    font-size: 2rem;
    left: -20px;
  }
  #header .headerInner .navWrap li.btn {
    font-size: 1.4rem;
    margin-left: 30px;
    padding: 10px 20px;
  }
  #header .headerInner .navWrap li.btn img {
    width: 15px;
    padding-bottom: 2px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 820px) {
  #header .headerInner {
    padding: 0;
    padding-left: 20px;
  }
  #header .headerInner .logo {
    max-width: 160px;
    padding: 10px 0;
  }
  #header .headerInner .logo img {
    vertical-align: middle;
  }
  #header .headerInner .navWrap {
    display: none;
  }
  #header .headerInner .cartBtn {
    display: block;
    max-width: 55px;
    width: 100%;
    margin-left: auto;
  }
}

#footer {
  background-color: #000;
}
#footer .footerInner {
  max-width: 1240px;
  width: 100%;
  padding: 70px 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#footer .footerInner .left {
  width: 40%;
}
#footer .footerInner .left .logo {
  max-width: 300px;
  width: 100%;
  display: block;
}
#footer .footerInner .right {
  max-width: 540px;
  width: 60%;
}
#footer .footerInner .right .btnWrap {
  max-width: 240px;
  width: 100%;
  margin-left: auto;
  margin-bottom: 40px;
}
#footer .footerInner .right .btnWrap .btn {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
  background-color: #fff;
  border-radius: 999px;
  display: block;
}
#footer .footerInner .right .btnWrap .btn img {
  width: 18px;
  vertical-align: middle;
  padding-bottom: 4px;
  margin-left: 15px;
}
#footer .footerInner .right .btnWrap .btn:first-of-type {
  margin-bottom: 20px;
}
#footer .footerInner .right .iconWrap {
  max-width: 180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-bottom: 50px;
}
#footer .footerInner .right .iconWrap .icon {
  width: 24%;
  display: block;
}
#footer .footerInner .right .navWrap {
  max-width: 440px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
}
#footer .footerInner .right .navWrap a {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  display: block;
}
@media screen and (max-width: 767px) {
  #footer .footerInner {
    padding: 50px 20px 30px;
    flex-direction: column;
  }
  #footer .footerInner .left {
    width: 100%;
    margin-bottom: 0;
  }
  #footer .footerInner .left .logo {
    max-width: 270px;
    margin-bottom: 10px;
    margin: 0 auto;
    display: none;
  }
  #footer .footerInner .right {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #footer .footerInner .right .btnWrap {
    max-width: 100%;
    margin-left: auto;
    margin-bottom: 30px;
    order: 2;
  }
  #footer .footerInner .right .btnWrap .btn {
    font-size: 1.8rem;
    padding: 10px 0;
    margin: 0 auto;
    max-width: 250px;
  }
  #footer .footerInner .right .btnWrap .btn img {
    width: 18px;
    vertical-align: middle;
    padding-bottom: 4px;
    margin-left: 15px;
  }
  #footer .footerInner .right .btnWrap .btn:first-of-type {
    margin-bottom: 20px;
  }
  #footer .footerInner .right .iconWrap {
    max-width: 150px;
    margin: 0 auto;
    order: 3;
  }
  #footer .footerInner .right .navWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    order: 1;
    margin-bottom: 30px;
    width: 90%;
  }
  #footer .footerInner .right .navWrap a {
    font-size: 1.6rem;
    text-align: left;
  }
}