@charset "UTF-8";

* {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #3c3c3c;
}
html,
body {
  margin: 0px;
  padding: 0px;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

strong {
  font-weight: bold;
  font-size: 1.2em;
}

.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
@media all and (max-width: 750px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
/* -----------------------------------------------

header

----------------------------------------------- */
header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 10;
}
header .header_bg {
  background: url("../image/common/header-bg.png") bottom right/200% repeat;
}
header .top {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px 70px;
  display: grid;
  grid-template-columns: 658px 182px 40px;
  justify-content: space-between;
  align-items: start;
  z-index: 10;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  header .top .logo a:hover {
    opacity: 0.6;
  }
}
header .top .store {
  background: #fff;
  border-radius: 20px;
  font-size: 13px;
  text-align: center;
}
header .top .store a {
  position: relative;
  display: block;
  padding: 5px 30px 5px 10px;
  text-decoration: none;
  color: #00b2be;
  font-weight: bold;
}
header .top .store a::after{
  content: '';
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-top: solid 1px #00b2be;
  border-right: solid 1px #00b2be;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 16px;
}
header .top .primary_navigation {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  align-items: flex-end;
  gap: 30px;
  transition: 0.4s;
}
header .top .primary_navigation li {
  text-align: center;
  transition: 0.4s;
}
header .top .primary_navigation li a {
  text-decoration: none;
  cursor: pointer;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  header .top .primary_navigation li a:hover {
    opacity: 0.6;
  }
}
header .top .primary_navigation .close_menu {
  display: none;
  transition: 0.4s;
}
header .top .primary_navigation.open .hamburger_menu {
  display: none;
}
header .top .primary_navigation.open .close_menu {
  display: block;
}
header nav .global_navigation {
  margin: 10px auto 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  justify-content: left;
  position: relative;
  width: 80%;
}
header nav .global_navigation > li > a {
  display: block;
  padding: 30px 30px 30px 0;
  text-decoration: none;
  cursor: pointer;
}
header nav .global_navigation > li > a > span {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 4px;
  position: relative;
  color: #00b2be;
  font-family: "futura-pt", sans-serif;
}
header nav .global_navigation > li > a > span {
  padding: 0px 25px 0px 5px;
}
header nav .global_navigation > li > a > span::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: 0%;
  height: 2px;
  background-color: #00b2be;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  header nav .global_navigation > li > a:hover > span::before {
    width: calc(100% + 10px);
  }
}
@media (hover: hover) and (pointer: fine) {
  header nav .global_navigation > li.more.open > a > span::before {
    width: calc(100% + 10px);
  }
}
header nav .global_navigation > li > a > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotateZ(-45deg);
  width: 6px;
  height: 6px;
  border-right: 1px solid #00b2be;
  border-bottom: 1px solid #00b2be;
  transition: 0.4s;
}
header nav .global_navigation > li.more.goods_list > .detail ul {
  max-width: 1100px;
  margin: auto;
  padding: 0px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 10px));
  gap: 15px;
}
header nav .global_navigation > li.more.goods_list > .detail ul li a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-decoration: none;
}
header nav .global_navigation > li.more.goods_list > .detail ul li a div {
  font-weight: bold;
}
@media (hover: hover) and (pointer: fine) {
  header nav .global_navigation > li.more.goods_list > .detail ul li a:hover {
    opacity: 0.6;
  }
}
header nav .global_navigation > li.more.goods_list > .detail ul li a img {
  margin-right: 15px;
  width: 26%;
}
@media all and (max-width: 900px) {
  header nav .global_navigation > li > a {
    padding: 20px;
  }
}
header nav .global_navigation > li.more.goods_list > .detail ul li a span {
  color: #00b2be;
  font-family: "futura-pt", sans-serif;
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
}
header nav .contact {
  margin: 10px auto 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  justify-content: left;
  position: relative;
  width: 80%;
}
header nav .contact a {
  display: block;
  padding: 30px 30px 30px 0;
  text-decoration: none;
  cursor: pointer;
}
header nav .contact a span {
  font-family: "futura-pt", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  color: #00b2be;
}
header nav {
  position: absolute;
  top: 85px;
  left: 0px;
  width: 100%;
  height: calc(100vh - 55px);
  height: calc(100dvh - 55px);
  padding: 30px 15px 100px;
  box-sizing: border-box;
  background-color: #ffffff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
  z-index: -1;
}
header nav .store_sp {
  display: none;
}
@media all and (max-width: 960px) {
  header .top {
    grid-template-columns: 54% 182px 40px;
  }
}
@media all and (max-width: 750px) {
  header .header_bg {
    background: url(../image/common/header-bg_sp.png) bottom left / 140% repeat;
    z-index: 3;
  }
  header .top {
    width: 90%;
    max-width: 678px;
    grid-template-columns: 70% 5%;
    padding: 4.4% 0 12.4%;
    position: relative;
    z-index: 1;
    margin: auto;
  }
  header .top .logo {
    width: 100%;
  }
  header .top .store {
    display: none;
  }
  header .top .primary_navigation li a span {
    font-size: 8.5px;
  }
  header nav {
    top: 65%;
  }
  header nav .global_navigation {
    flex-direction: column;
    margin-top: 2%;
    width: 94%;
  }
  header nav .global_navigation > li > a {
    padding: 15px 0px;
  }
  header nav .global_navigation > li > a > span {
    display: inline-block;
    padding: 0px !important;
    font-size: min(60px, 8vw);
  }
  header nav .global_navigation > li:not(.more) > a > span::before {
    display: none;
  }
  header nav .global_navigation > li > a > span::after {
    top: 50%;
    right: -20%;
    width: min(16px, 2.2vw);
    height: min(16px, 2.2vw);
  }
  header nav .global_navigation > li:not(.more) > a > span::after {
    top: 54%;
    right: -20%;
    width: min(16px, 2.2vw);
    height: min(16px, 2.2vw);
  }
  header nav .global_navigation > li.more.goods_list > .detail ul {
    display: block;
    padding-bottom: 55px;
  }
  header nav .global_navigation > li.more.goods_list > .detail ul li a {
    display: grid;
    grid-template-columns: 24% 70%;
    align-items: center;
    justify-content: space-between;
    font-size: min(31px, 4.2vw);
  }
  header nav .global_navigation > li.more.goods_list > .detail ul li a img {
    margin: 0px 0px 10px 0px;
    width: 100%;
  }
  header nav .global_navigation > li.more.goods_list > .detail ul li a span {
    font-size: min(22px, 3vw);
  }
  header nav .contact {
    width: 94%;
  }
  header nav .contact a span {
    font-size: min(30px, 4vw);
  }
  header nav .store_sp {
    display: block;
    background: #fff;
    padding: 1% 3% 1% 1%;
    border: 1px solid #00b2be;
    border-radius: 100px;
    font-size: min(32px, 4.3vw);
    text-align: center;
    width: 53.9%;
    margin: 5% auto 10%;
  }
  header nav .store_sp a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #00b2be;
  }
  header nav .store_sp a::after{
    content: "";
    width: min(10px, 1.4vw);
    height: min(10px, 1.4vw);
    margin-top: 0;
    border-top: solid 1px #00b2be;
    border-right: solid 1px #00b2be;
    transform: rotate(45deg);
    position: absolute;
    top: 40%;
    right: -7%;
  }
}

/* -----------------------------------------------

article

----------------------------------------------- */
article {
  padding-top: 50px;
}
article section {
  max-width: 1300px;
  margin: auto;
}
article.underpage section {
  padding: 0px 20px;
}
article.underpage .pankuzu ul {
  margin: 0px;
  padding: 20px 0px 70px;
  list-style: none;
  display: flex;
  align-items: center;
}
article.underpage .pankuzu ul li {
  font-size: 15px;
}
article.underpage .pankuzu ul li + li {
  margin-left: 1em;
  padding-left: 1.3em;
  position: relative;
}
article.underpage .pankuzu ul li + li::before {
  content: ">";
  display: block;
  position: absolute;
  top: 0%;
  left: 0px;
  font-size: inherit;
}
article.underpage .pankuzu ul li a {
  letter-spacing: 0.05em;
  text-decoration: none;
}
article.underpage .pankuzu ul li a:hover {
  text-decoration: underline;
}
article.underpage h2 {
  margin: 0px 0px 30px 0px;
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #01377F;
  border-bottom: 2px solid #01377F;
}
@media all and (max-width: 750px) {
  article {
    max-width: 750px;
    padding-top: 15%;
  }
  article.underpage section {
    padding: 0px 15px;
  }
  article.underpage .pankuzu ul {
    padding: 10px 0px 35px;
  }
  article.underpage .pankuzu ul li {
    font-size: 10px;
  }
  article.underpage h2 {
    margin: 0px 0px 15px 0px;
    padding-bottom: 5px;
    font-size: 15px;
  }
}

/* -----------------------------------------------

footer

----------------------------------------------- */
footer {
  padding-top: 80px;
  background: url("../image/common/footer-bg.png") top left/contain repeat-x;
}
footer .wrap {
  padding: 30px 0px;
  background-color: #00b2be;
}
footer .wrap .top {
  text-align: center;
  margin: 80px auto 100px;
}
footer .wrap p {
  margin: 10px 0px 0px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #ffffff;
}
footer .wrap .copyright {
  margin: 5px 0px 0px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #ffffff;
}
footer .wrap .contact {
  margin: 10px auto 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  justify-content: center;
  position: relative;
  width: 80%;
}
footer .wrap .contact a {
  display: block;
  padding: 30px;
  text-decoration: none;
  cursor: pointer;
}
footer .wrap .contact a span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  color: #fff;
  font-family: "futura-pt", sans-serif;
}
@media all and (max-width: 750px) {
  footer {
    padding-top: 5%;
  }
  footer .wrap {
    padding: 3% 0;
  }
  footer .wrap .top {
    margin: 20% auto;
  }
  footer .wrap .top .logo {
    width: 71.2%;
    margin: 8% auto 0;
  }
  footer .wrap .top .logo img {
    width: 100%;
  }
  footer .wrap .contact a {
    padding: 5%;
  }
  footer .wrap p {
    margin: 2% 0 0;
    font-size: 8px;
  }
  footer .wrap .copyright {
    font-size: 8px;
  }
}
























