@charset "UTF-8";
/* ------------------------------
	設定
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://use.typekit.net/aux4ezg.css");
@media screen and (max-width: 999px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .sp-only {
    display: none !important;
  }
}

:root {
  --c-txt: #373737;
  --c-txt-gray: #868686;
  --c-bg: #FFF;
  --c-accent: #123C5D;
  --c-accent02: #d6d3ca;
  --c-sub-bg: #F5F2EF;
}

/* --------------------
	contents
-------------------- */
html {
  scroll-behavior: smooth;
}

#contents {
  background-color: var(--c-bg);
  color: var(--c-txt);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.5;
  -webkit-font-smoothing: antialiased;
  font-size: 3.2vw;
}
@media screen and (min-width: 1000px) {
  #contents {
    font-size: 1.015625vw;
  }
}
#contents img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------
		head
-------------------- */
.head {
  width: 100%;
  background-color: var(--c-bg);
}
.head .mv {
  position: relative;
}
@media screen and (min-width: 1000px) {
  .head .mv {
    display: flex;
  }
}
.head .mv__img {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1000px) {
  .head .mv__img {
    width: 50%;
  }
}
.head .ttl_main {
  position: absolute;
  bottom: 6%;
  left: 6%;
  width: 52.2666666667vw;
  filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.5));
}
@media screen and (min-width: 1000px) {
  .head .ttl_main {
    width: 22.1875vw;
  }
}
.head .ttl_sub {
  position: absolute;
  top: 16%;
  right: 7%;
  width: 8.5333333333vw;
  filter: drop-shadow(0 0 20px rgb(0, 0, 0));
}
@media screen and (min-width: 1000px) {
  .head .ttl_sub {
    top: 6%;
    width: 3.515625vw;
  }
}
.head .mv__bg {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--c-sub-bg);
}
@media screen and (min-width: 1000px) {
  .head .mv__bg {
    width: 50%;
  }
}
.head .lead {
  width: 68%;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.5;
  -webkit-font-smoothing: antialiased;
  font-size: 3.2vw;
  color: var(--c-txt);
  padding: 13.3333333333vw 0;
}
@media screen and (min-width: 1000px) {
  .head .lead {
    width: 62%;
    font-size: 0.9375vw;
  }
}
.head .lead p {
  padding-bottom: 8vw;
  text-align: justify;
}
@media screen and (min-width: 1000px) {
  .head .lead p {
    padding-bottom: 6.09375vw;
  }
}
.head .lead .logo {
  width: 17.3333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .head .lead .logo {
    width: 6.640625vw;
    margin: 0;
  }
}
.head .sec-list ul {
  width: 78%;
  margin: 18.6666666667vw auto 26.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .head .sec-list ul {
    display: flex;
    justify-content: center;
    -moz-column-gap: 2.34375vw;
         column-gap: 2.34375vw;
    flex-wrap: wrap;
    margin: 7.8125vw auto 15.625vw;
  }
}
.head .sec-list ul li {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .head .sec-list ul li {
    width: 31.25vw;
    margin-bottom: 1.5625vw;
  }
}
.head .sec-list ul a {
  position: relative;
  display: block;
  text-align: center;
  line-height: 5;
  border: 1px solid var(--c-txt-gray);
  transition: all 0.5s ease 0s;
}
.head .sec-list ul a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.6666666667vw;
  margin: auto;
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  border-top: 1px solid var(--c-txt-gray);
  border-right: 1px solid var(--c-txt-gray);
  transform: rotate(45deg);
  box-sizing: border-box;
}
@media screen and (min-width: 1000px) {
  .head .sec-list ul a::after {
    right: 0.78125vw;
    width: 0.625vw;
    height: 0.625vw;
  }
}
@media screen and (min-width: 1000px) {
  .head .sec-list ul a:hover {
    opacity: 0.6;
  }
}

/* --------------------
		navi
-------------------- */
#contents .nav {
  position: relative;
}

#contents nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--c-sub-bg);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  z-index: 100;
}

#contents nav.is-open {
  opacity: 1;
  visibility: visible;
}

.nav__flex {
  width: 80vw;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 1000px) {
  .nav__flex {
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 1.953125vw;
    width: 62.5vw;
    min-width: 750px;
    height: 100vh;
  }
}
.nav__flex .nav-list {
  margin-bottom: 4vw;
}
.nav__flex .nav-list:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1000px) {
  .nav__flex .nav-list {
    margin-bottom: 0;
    width: 50%;
  }
}
.nav__flex .nav-list a {
  font-family: "span-compressed", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 3.2vw;
  display: flex;
  -moz-column-gap: 4.8vw;
       column-gap: 4.8vw;
  align-items: center;
  color: var(--c-txt);
  transition: all 0.3s ease;
}
@media screen and (min-width: 1000px) {
  .nav__flex .nav-list a:hover {
    opacity: 0.5;
  }
}
.nav__flex .nav-list a img {
  width: 16vw !important;
  flex-shrink: 0;
}
@media screen and (min-width: 1000px) {
  .nav__flex .nav-list a {
    justify-content: flex-start;
    font-size: clamp(12px, 0.9375vw, 16px);
    -moz-column-gap: 1.40625vw;
         column-gap: 1.40625vw;
  }
  .nav__flex .nav-list a > div,
  .nav__flex .nav-list a > span:first-of-type {
    flex-grow: 1;
  }
  .nav__flex .nav-list a img {
    width: 4.6875vw !important;
    min-width: 60px;
  }
}
.nav__flex .nav-list a .number {
  font-family: "span-compressed", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  line-height: 2;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .nav__flex .nav-list a .number {
    font-size: max(9px, 0.78125vw);
  }
}
.nav__flex .nav-list a span {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.5;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  display: block;
}
.nav__flex .nav-list a span:nth-of-type(n+2) {
  margin-left: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .nav__flex .nav-list a span {
    display: inline;
  }
  .nav__flex .nav-list a span:nth-of-type(n+2) {
    margin-left: 0;
  }
}

#contents .hamburger {
  position: fixed;
  top: 5.3333333333vw;
  right: 5.3333333333vw;
  width: 6.6666666667vw;
  height: 4.8vw;
  z-index: 100;
}

@media screen and (min-width: 1000px) {
  #contents .hamburger {
    top: 3.515625vw;
    right: 3.515625vw;
    width: 40px;
    height: 29px;
  }
}
#contents .hamburger__trigger {
  display: block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  width: 6.6666666667vw;
  height: 4.8vw;
  mix-blend-mode: multiply;
}

@media screen and (min-width: 1000px) {
  #contents .hamburger__trigger {
    width: 40px;
    height: 29px;
  }
}
#contents .hamburger__trigger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--c-txt-gray);
}

#contents .hamburger__trigger span:nth-of-type(1) {
  top: 0;
}

#contents .hamburger__trigger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.25s 0.25s;
  opacity: 1;
}

#contents .hamburger__trigger span:nth-of-type(3) {
  bottom: 0;
}

#contents .hamburger__trigger.is-active span:nth-of-type(1) {
  transform: translateY(2.2666666667vw) rotate(-45deg);
  background-color: var(--c-txt-gray);
}

@media screen and (min-width: 1000px) {
  #contents .hamburger__trigger.is-active span:nth-of-type(1) {
    transform: translateY(14px) rotate(-45deg);
  }
}
#contents .hamburger__trigger.is-active span:nth-of-type(2) {
  opacity: 0;
}

#contents .hamburger__trigger.is-active span:nth-of-type(3) {
  transform: translateY(-2.2666666667vw) rotate(45deg);
  background-color: var(--c-txt-gray);
}

@media screen and (min-width: 1000px) {
  #contents .hamburger__trigger.is-active span:nth-of-type(3) {
    transform: translateY(-14px) rotate(45deg);
  }
}
#contents body.is-open {
  height: 100vh;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

/* --------------------
		section
-------------------- */
section {
  margin-bottom: 26.6666666667vw;
}
@media screen and (min-width: 1000px) {
  section {
    margin-bottom: 15.625vw;
  }
}
section h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.5;
  -webkit-font-smoothing: antialiased;
  font-size: 4.8vw;
  line-height: 1.5;
  margin-left: 5.3333333333vw;
  color: var(--c-accent);
}
@media screen and (min-width: 1000px) {
  section h2 {
    width: 76.875vw;
    margin: 0 auto;
    font-size: 1.875vw;
  }
}
section h2 .number {
  font-family: "span-compressed", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  line-height: 2;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  section h2 .number {
    font-size: 1.09375vw;
  }
}
section h2 span {
  display: block;
}
section h2 span:nth-of-type(n+2) {
  margin-left: 4vw;
}
@media screen and (min-width: 1000px) {
  section h2 span {
    display: inline;
  }
  section h2 span:nth-of-type(n+2) {
    margin-left: 0;
  }
}

.sec-top {
  position: relative;
  margin: 0 auto 10.6666666667vw;
  padding: 5.3333333333vw 0;
}
@media screen and (min-width: 1000px) {
  .sec-top {
    margin-bottom: 4.6875vw;
    padding: 2.34375vw 0;
  }
}

.sec-top-flex {
  display: flex;
}

.flex-img {
  width: 50%;
}

.sec-item {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .sec-item {
    margin-bottom: 5.46875vw;
  }
}
.sec-item:last-child {
  margin-bottom: 0;
}

.slide__inner p {
  width: 96%;
  margin: 2.6666666667vw auto 0;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .slide__inner p {
    margin-top: 0.78125vw;
    font-size: 0.78125vw;
  }
}

.item-wrap a {
  display: block;
  transition: all 0.8s ease;
}
@media screen and (min-width: 1000px) {
  .item-wrap a:hover {
    opacity: 0.6;
  }
}

.swiper-container {
  margin: 0 auto 10.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .swiper-container {
    position: relative;
    width: 76.875vw;
    margin: 0 auto 2.34375vw;
  }
}

.swiper-container .swiper-button-prev {
  left: -40px;
  top: 40%;
  transform: translateY(-50%);
}

.swiper-container .swiper-button-next {
  right: -40px;
  top: 40%;
  transform: translateY(-50%);
}

.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-color: var(--c-txt-gray);
  --swiper-navigation-size: 18px;
}

@media (max-width: 999px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}
.more {
  margin: 0 auto;
}

.more a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  width: 53.3333333333vw;
  padding: 0 0 4vw;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-family: "span-compressed", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 1000px) {
  .more a {
    width: 15.625vw;
    padding: 0 0 1.171875vw;
    font-size: 1.171875vw;
  }
}

.more a:before {
  position: absolute;
  bottom: 0px;
  left: 50%;
  content: "";
  width: 100%;
  height: 1px;
  background: #A4A4A4;
  transform: translateX(-50%);
}

.more a:after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.more a:hover {
  opacity: 0.7;
}

.more a:hover:after {
  transform: scale(1, 1);
}

/* --------------------
		aside
-------------------- */
aside {
  background-color: var(--c-sub-bg);
}

.aside__wrap {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 40vw 0 40vw;
}
@media screen and (min-width: 1000px) {
  .aside__wrap {
    width: 600px;
    margin: 0 auto;
    padding: 15.625vw 0 15.625vw;
    margin: 0 auto;
  }
}
.aside__wrap a {
  transition: all 1s ease;
}
.aside__wrap a:hover {
  opacity: 0.5;
}

@media screen and (min-width: 1000px) {
  .aside__inner {
    overflow: hidden;
  }
}
.aside__inner .aside__ttl {
  font-family: "span-compressed", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 5.8666666667vw;
  margin-bottom: 5.3333333333vw;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .aside__inner .aside__ttl {
    font-size: 1.875vw;
    margin-bottom: 20px;
  }
}
.aside__inner p {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.5;
  -webkit-font-smoothing: antialiased;
  font-size: max(12px, 3.2vw);
  margin-bottom: 13.3333333333vw;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .aside__inner p {
    font-size: max(12px, 0.9375vw);
    margin-bottom: 3.90625vw;
  }
}
.aside__inner:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #EFEFEF;
  margin: 100px auto;
}
.aside__inner .aside__btn {
  margin: 0 auto;
  text-align: center;
}
.aside__inner .aside__btn li {
  font-size: max(12px, 3.2vw);
  line-height: 2;
}
@media screen and (min-width: 1000px) {
  .aside__inner .aside__btn li {
    font-size: max(12px, 0.9375vw);
  }
}
.aside__inner .aside__btn li a {
  position: relative;
  display: block;
  border: 1px solid var(--c-txt);
  background-color: var(--c-txt);
  color: #fff;
  padding: 17px;
  transition: all 1s ease;
}
.aside__inner .aside__btn li a:hover {
  border: 1px solid var(--c-txt);
  background-color: var(--c-sub-bg);
  color: var(--c-txt);
}
.aside__inner .staff-styling__img {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .aside__inner .staff-styling__img {
    margin-bottom: 50px;
  }
}

.feature .swiper-wrapper .swiper-slide {
  display: flex;
  width: 60vw;
  margin-right: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .feature .swiper-wrapper .swiper-slide {
    width: 225px;
    margin-right: 10px;
  }
}

.sns {
  display: flex;
  justify-content: center;
}
.sns__x {
  width: 6.6666666667vw;
  margin-right: 6.9333333333vw;
}
@media screen and (min-width: 1000px) {
  .sns__x {
    width: 1.953125vw;
    margin-right: 2.03125vw;
  }
}
.sns__insta {
  width: 6.9333333333vw;
}
@media screen and (min-width: 1000px) {
  .sns__insta {
    width: 2.03125vw;
  }
}

/* --------------------
		footer
-------------------- */
.footer {
  padding: 16vw 0;
  background-color: var(--c-txt);
}
@media screen and (min-width: 1000px) {
  .footer {
    padding: 3.90625vw 0;
  }
}
.footer img {
  width: 100%;
  height: auto;
}
.footer__logo {
  width: 29.3333333333vw;
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 1000px) {
  .footer__logo {
    width: min(130px, 10.15625vw);
    margin: 0 auto 1.25vw;
  }
}
.footer__logo a {
  display: block;
}
@media screen and (min-width: 1000px) {
  .footer__logo a {
    transition: all 0.5s ease;
  }
  .footer__logo a:hover {
    opacity: 0.5;
  }
}
.footer__copyright {
  text-align: center;
  color: #fff;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.9333333333vw;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 1000px) {
  .footer__copyright {
    font-size: min(13px, 1.015625vw);
  }
}

/* --------------------
	animation
-------------------- */
.fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 1.6s ease 0.3s;
}

.fadein-active {
  opacity: 1;
  visibility: visible;
}

.scale {
  overflow: hidden;
}
.scale img {
  transform: scale(1.1);
  transition: all 1.4s ease;
}

.scale-active {
  overflow: hidden;
}
.scale-active img {
  transform: scale(1);
}/*# sourceMappingURL=260918_onlinestore-m_recommend_style.css.map */