@charset "UTF-8";

/*
font-family: 'Noto Sans JP', sans-serif;
font-weight: 500
font-family: 'Work Sans', sans-serif;
font-weight: 400, 500, 600
*/

:root {
  --main-font: 'Noto Sans JP', sans-serif;
  --sub-font: 'Work Sans', 'Noto Sans JP', sans-serif;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  font-family: var(--main-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  font-feature-settings: 'palt';
  color: #fff;
  letter-spacing: -.03em;
  background: #fff;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
}

a {
  color: #465b69;
  text-decoration: none;
  transition: all .3s;
}

p {
  margin-bottom: 2em;
}

.en {
  font-family: var(--sub-font);
  letter-spacing: .05em;
}

.center {
  text-align: center;
}

.content {
  position: relative;
  padding: 80px 15px;
}

.content.nopb {
  padding-bottom: 0;
}

.page-header {
  position: fixed;
  z-index: 90000;
  width: 100%;
  height: 91px;
  background: #fff;
  border-bottom: 1px solid #e4e7e9;
}

.page-header .content {
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
}

.page-header-title {
  display: flex;
  flex: 1;
  height: 100%;
}

.page-header-title-logo {
  width: 125px;
}

.page-header-title-logo svg {
  display: block;
  width: 100%;
  height: auto;
  fill: #465b69;
}

.page-header-title-info {
  display: none;
}

.page-header-title-info p {
  margin-bottom: 0;
}

.page-header-menu {
  display: flex;
  align-items: center;
}

.page-header-menu-sns {
  display: flex;
  flex: 1;
}

.page-header-menu-instagram, .page-header-menu-facebook, .page-header-menu-cart {
  display: block;
  height: 24px;
  margin-left: 18px;
  fill: #465b69;
}

.page-header-menu-instagram svg, .page-header-menu-facebook svg, .page-header-menu-cart svg {
  width: auto;
  height: 100%;
}

.menu-active {
  height: 100%;
  overflow: hidden;
}

.menu-trigger {
  position: relative;
  right: 0;
  z-index: 99999;
  display: block;
  width: 22px;
  height: 17px;
  margin-left: 18px;
  cursor: pointer;
}

.menu-trigger span {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #465b69;
  transition: all .3s;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.page-header-menu-content-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 75px 0 0 52px;
  overflow: scroll;
  font-family: var(--sub-font);
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  background: #465b69;
  opacity: 0;
  transition: opacity .6s, transform .01s .6s;
  transform: translateX(100vw);
}

.menu-active .menu-trigger span:nth-of-type(1) {
  background: #fff;
  transform: rotate(45deg) translate(7px, 4.5px);
}

.menu-active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

.menu-active .menu-trigger span:nth-of-type(3) {
  background: #fff;
  transform: rotate(-45deg) translate(7px, -4.5px);
}

.menu-active .page-header-menu-content-menu {
  opacity: 1;
  transition: transform .01s, opacity .6s .01s;
  transform: translateX(0);
}

.page-header-menu-content-menu ul {
  padding-bottom: 110px;
}

.page-header-menu-content-menu a:link, .page-header-menu-content-menu a:visited {
  color: #fff;
}

.page-header-menu-content-menu li:nth-of-type(n+7) {
  position: relative;
  width: 50px;
  font-size: 9px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
}

.page-header-menu-content-menu li:nth-of-type(7) {
  top: 80px;
  left: 0;
}

.page-header-menu-content-menu li:nth-of-type(8) {
  top: 40px;
  left: 70px;
}

.page-header-menu-content-menu li:nth-of-type(9) {
  top: 2px;
  left: 140px;
}

.page-header-menu-content-menu svg {
  display: block;
  height: 24px;
  margin: auto;
  fill: #fff;
}

.page-header-menu-content-menu .copy {
  padding-right: 52px;
  padding-bottom: 50px;
  font-family: var(--sub-font);
  font-size: 9px;
  text-align: center;
  letter-spacing: 0;
}

.page-footer.section-gray .content {
  padding-top: 0;
}

.page-footer .copy {
  font-family: var(--sub-font);
  font-size: 11px;
  letter-spacing: 0;
}

.mv {
  background-repeat: no-repeat;
  border-top: 91px solid #fff;
}

.section-title {
  padding-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.mv .section-title {
  padding-top: 80px;
}

.mv-full {
  position: relative;
  width: 100vw;
  max-height: 100vh;
  background-position: center;
  background-size: cover;
}

.mv-full::before {
  display: block;
  padding-top: 53.03%;
  content: '';
}

.section-gray {
  background: #e4e7e9;
}

.section-caption {
  padding-bottom: 20px;
  font-size: 13px;
}

.img-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.img-list img {
  display: block;
  align-self: flex-start;
  width: calc(50% - 2.5px);
  height: auto;
  margin-bottom: 5px;
}

.img-list a:link, .img-list a:visited, .img-list a:focus, .img-list a:hover, .img-list a:active {
  display: block;
  width: calc(50% - 2.5px);
  margin-bottom: 5px;
}

.img-list a img {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.price_box {
  padding: 40px 29px;
  font-family: var(--sub-font);
  font-size: 14px;
  border: 1px solid #fff;
}

.price_box table {
  width: 100%;
}

.price_box caption {
  padding-bottom: 20px;
  text-align: left;
  letter-spacing: .05em;
}

.price_box-caption-small {
  font-size: 11px;
}

.price_box th, .price_box td {
  font-weight: 500;
  text-align: left;
}

.price_box thead th {
  font-size: 11px;
  text-decoration: underline;
  letter-spacing: .05em;
}

.price_box th {
  padding-bottom: .5em;
}

.price_box table + table caption {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #fff;
}

.price_box p {
  margin-top: 3em;
  margin-bottom: 0;
  font-size: 9px;
}

.price_box-time {
  margin-top: 1em;
  font-family: var(--sub-font);
  font-size: 11px;
}

.p {
  display: none;
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 18px;
    letter-spacing: .03em;
  }

  body {
    min-width: 920px;
  }

  a.op > * {
    transition: opacity .3s;
  }

  a.op:focus, a.op:hover, a.op:active, a.op:focus > *, a.op:hover > *, a.op:active > * {
    opacity: .7;
  }

  .m {
    display: none;
  }

  .p {
    display: block;
  }

  .content {
    max-width: 1260px;
    margin: auto;
  }

  .page-header {
    height: 104px;
  }

  .page-header-title-logo {
    width: 190px;
  }

  .page-header-title-info {
    display: block;
    margin-left: 28px;
    font-family: var(--sub-font);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
  }

  .page-header-menu-sns {
    margin-right: 80px;
  }

  .page-header-menu-instagram, .page-header-menu-facebook, .page-header-menu-cart {
    height: 25px;
    margin-left: 40px;
  }

  .menu-trigger {
    width: 36px;
    height: 26px;
  }

  .menu-trigger span {
    height: 2px;
  }

  .menu-trigger:hover span, .menu-trigger:active span, .menu-trigger:focus span {
    opacity: .7;
  }

  .page-header-menu-content-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .menu-active .menu-trigger span:nth-of-type(1) {
    transform: rotate(45deg) translate(7px, 10px);
  }

  .menu-active .menu-trigger span:nth-of-type(3) {
    transform: rotate(-45deg) translate(7px, -10px);
  }

  .page-header-menu-content-menu svg {
    height: 20px;
    transition: all .3s;
  }

  .page-header-menu-content-menu a:focus, .page-header-menu-content-menu a:hover, .page-header-menu-content-menu a:active, .page-header-menu-content-menu a:focus svg, .page-header-menu-content-menu a:hover svg, .page-header-menu-content-menu a:active svg {
    color: #6d97a3;
    fill: #6d97a3;
  }

  .page-header-menu-content-menu li:nth-of-type(n+7) {
    width: 60px;
    font-size: 12px;
    font-weight: 500;
  }

  .page-header-menu-content-menu li:nth-of-type(7) {
    top: 80px;
    left: 0;
  }

  .page-header-menu-content-menu li:nth-of-type(8) {
    top: 39px;
    left: 85px;
  }

  .page-header-menu-content-menu li:nth-of-type(9) {
    top: 2px;
    left: 170px;
  }

  .page-header-menu-content-menu .copy {
    font-size: 12px;
    text-align: left;
  }

  .page-header-menu-content-menu > div {
    width: 580px;
  }

  .page-footer .copy {
    font-size: 12px;
  }

  .mv {
    border-top-width: 104px;
  }

  .section-title {
    padding-bottom: 50px;
    font-size: 24px;
  }

  .section-caption {
    font-size: 17px;
  }

  .img-list img {
    width: calc(25% - 10px);
    margin-bottom: 14px;
  }

  .img-list a:link, .img-list a:visited, .img-list a:focus, .img-list a:hover, .img-list a:active {
    width: calc(25% - 10px);
    margin-bottom: 14px;
  }

  .price_box {
    padding: 60px;
    font-size: 18px;
    border-width: 2px;
  }

  .price_box caption {
    padding-bottom: 40px;
  }

  .price_box-caption-small {
    font-size: 15px;
  }

  .price_box th, .price_box td {
    padding: 10px 0;
  }

  .price_box thead th {
    font-size: 15px;
  }

  .price_box table + table caption {
    padding-top: 60px;
    margin-top: 50px;
    border-width: 2px;
  }

  .price_box p {
    font-size: 12px;
  }

  .price_box-time {
    font-size: 16px;
  }
}
