:root {
  --shippori-font-set: "Shippori Mincho", serif;
  --en-font-set: "EB Garamond", serif;
  --text-font-14: max(1.4rem, 0.98vw);
  --text-font-16: max(1.6rem, 1.11vw);
  --hamberger-size: 60px;
}

* {
  margin: 0;
  padding: 0;
  letter-spacing: 0.08em;
  box-sizing: border-box;
}

html, body {
  font-size: 62.5%;
  font-family: 'Noto Serif JP', serif;
  color: #1c1c1c;
  background-color: #ffffff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header {
  position: relative;
}

ul, ol {
  list-style: none;
}

h2, h3 {
  font-family: var(--shippori-font-set);
  font-weight: normal;
}

p {
  font-size: max(1.4rem, 1.11vw);
}

img {
  vertical-align: bottom;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.only-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }

  .only-sp {
    display: block;
  }
}

/* menu */
.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: calc(60 / 1440 * 100%);
  min-width: 60px;
  height: auto;
  aspect-ratio: 1 / 1;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.3s;
}

.hamburger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(40 / 60 * 100%);
  height: 2px;
}

.hamburger__line::before,
.hamburger__line::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #adadad;
  transition: transform 0.4s ease, top 0.4s ease;
}

.hamburger__line::before {
  top: -7px;
}

.hamburger__line::after {
  top: 7px;
}

.hamburger.active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.hamburger[aria-expanded="true"] + #nav-menu {
  display: block;
}

#nav-menu {
  display: none;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(250 / 1440 * 100%);
  min-width: 250px;
  height: 100svh;
  background-color: #1c1c1c;
  box-shadow: 2px 0 4px rgba(0,0,0,.1);
  transform: translateX(100%);
  transition: transform .4s;
  z-index: 110;
}

.nav.active {
  transform: translateX(0);
}

.nav__list {
  width: calc(150 / 250 * 100%);
  margin: 0 auto;
  padding: calc(100 / 250 * 100%) 0 0;
}

.nav__item {
  font-size: var(--text-font-16);
  margin-bottom: calc(20 / 150 * 100%);
}

.nav__link {
  color: #fff;
  text-decoration: none;
}

.nav__jp {
  display: block;
  font-family: var(--shippori-font-set);
}

.nav__en {
  display: block;
  color: #84BBFF;
  font-family: var(--en-font-set);
  font-size: var(--text-font-14);
}

.nav__item__instagram {
  font-size: max(2.8rem, 1.94vw)!important;
}

/* loading */
.loading {
  position: fixed;
  z-index: 1000;
  background-color: #1c1c1c;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 1s ease;
}

.loading.fadeout {
  opacity: 0;
  pointer-events: none;
}

.loading__inner {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  animation: fadeInOnly 1s ease-out forwards;
}

#loading.fadeout .loading__inner {
  animation: fadeOutOnly 1s ease-out forwards;
}

@keyframes fadeInOnly {
  to {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.loading__inner__catch {
  letter-spacing: -1em;
}

.loading__inner__catch span {
  letter-spacing: 0;
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.loading__inner__catch span:nth-child(1) {
  animation-delay: 0.1s;
}
.loading__inner__catch span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading__inner__catch span:nth-child(3) {
  animation-delay: 0.3s;
}
.loading__inner__catch span:nth-child(4) {
  animation-delay: 0.4s;
}
.loading__inner__catch span:nth-child(5) {
  animation-delay: 0.5s;
}
.loading__inner__catch span:nth-child(6) {
  animation-delay: 0.6s;
}
.loading__inner__catch span:nth-child(7) {
  animation-delay: 0.7s;
}
.loading__inner__catch span:nth-child(8) {
  animation-delay: 0.8s;
}
.loading__inner__catch span:nth-child(9) {
  animation-delay: 0.9s;
}
.loading__inner__catch span:nth-child(10) {
  animation-delay: 1.0s;
}
.loading__inner__catch span:nth-child(11) {
  animation-delay: 1.1s;
}
.loading__inner__catch span:nth-child(12) {
  animation-delay: 1.2s;
}
.loading__inner__catch span:nth-child(13) {
  animation-delay: 1.3s;
}
.loading__inner__catch span:nth-child(14) {
  animation-delay: 1.4s;
}
.loading__inner__catch span:nth-child(15) {
  animation-delay: 1.5s;
}
.loading__inner__catch span:nth-child(16) {
  animation-delay: 1.6s;
}
.loading__inner__catch span:nth-child(17) {
  animation-delay: 1.7s;
}
.loading__inner__catch span:nth-child(18) {
  animation-delay: 1.8s;
}
.loading__inner__catch span:nth-child(19) {
  animation-delay: 1.9s;
}
.loading__inner__catch span:nth-child(20) {
  animation-delay: 2.0s;
}
.loading__inner__catch span:nth-child(21) {
  animation-delay: 2.1s;
}
.loading__inner__catch span:nth-child(22) {
  animation-delay: 2.2s;
}

/* mv */
.mv {
  position: relative;
}

.mv__inner {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(0, -50%);
  z-index: 100;
}

.loading__inner__logo,
.mv__inner__logo {
  width: 7.5vw;
  text-align: center;
  margin-bottom: 5%;
}

.loading__inner__catch,
.mv__inner__catch {
  color: #fff;
  font-family: var(--shippori-font-set);
  font-size: 2.5vw;
  font-weight: 400;
  font-style: normal;
}

.mv__inner__catch {
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.5);
}

.mv__btn {
  display: inline-block;
  width: 24vw;
  min-width: 225px;
  position: absolute;
  bottom: 5%;
  right: 0;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.mv__btn a {
  color: #fff;
  font-size: 1.5vw;
  font-weight: 400;
  background-color: #094a81;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-decoration: none;
  padding: calc(20 / 340 * 100%) calc(25 / 340 * 100%);
}

.mv__btn a:after {
  content: '';
  width: 0.8vw;
  height: 0.8vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: calc(20 / 340 * 100%);
}

@media screen and (max-width: 767px) {
  .loading__inner,
  .mv__inner {
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .loading__inner__logo,
  .mv__inner__logo {
    width: 100px;
    margin-bottom: 20px;
  }

  .loading__inner__catch,
  .mv__inner__catch {
    font-size: 2.4rem;
  }

  .mv__btn {
    left: 50%;
    transform: translateX(-50%);
  }

  .mv__btn a {
    font-size: 1.4rem;
  }

  .mv__btn a:after {
    width: 8px;
    height: 8px;
  }
}

.mv__video-wrapper {
  width: 100%;
  height: 100svh;
  object-fit: cover;
  background-image: url('assets/img/img_firstview.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.mv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 共通 */
.section__ttl {
  font-size: max(24px, 2.6vw);
  text-align: center;
}

.section__copy {
  font-size: max(1.4rem, 1.66vw);
  text-align: center;
  line-height: 2;
  margin-bottom: calc(60 / 1440 * 100%);
}

.section__btn {
  width: 24vw;
  min-width: 225px;
  position: relative;
  margin: 0 auto;
}

.section__btn > a {
  color: #fff;
  font-size: 1.5vw;
  font-weight: 400;
  background-color: #1c1c1c;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-decoration: none;
  padding: calc(20 / 340 * 100%) calc(25 / 340 * 100%);
}

.section__btn a:after {
  content: '';
  width: 0.8vw;
  height: 0.8vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: calc(20 / 340 * 100%);
}

.section__btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .section__copy {
    text-align: left;
  }

  .section__btn a {
    font-size: 1.4rem;
  }

  .section__btn a:after {
    width: 8px;
    height: 8px;
  }
}

/* 3つの体験 */
.section--experience {
  background-color: #F4F4F4;
  padding: calc(120 / 1440 * 100%) 0 calc(160 / 1440 * 100%);
}

.section__ttl--experience {
  margin-bottom: calc(120 / 1440* 100%)
}

.section__ttl--experience > span {
  font-size: 2.2vw;
  font-style: normal;
}

.section--experience__list > li {
  display: flex;
  margin-bottom: calc(120 / 1440 * 100%);
}

.section--experience__list > li:first-child,
.section--experience__list > li:last-child {
  flex-direction: row-reverse;
}

.section--experience__detail {
  width: 50%;
  align-self: flex-end;
  padding: 0 calc(70 / 1440 * 100%);
}

.section--experience__detail__ttl {
  display: flex;
  flex-direction: column;
  font-size: 2.5vw;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  margin: 0 auto;
}

.section--experience__detail__ttl--01 > span:last-child {
  margin-top: 3.24em;
}

.section--experience__detail__ttl--02 > span:last-child {
  margin-top: 2.16em;
}

.section--experience__detail__ttl--03 > span:last-child {
  margin-top: 4.32em;
}

.section--experience__detail__txt__number {
  margin-bottom: calc(20 / 720 * 100%);
}

.section--experience__detail__txt__number--01 {
  width: calc(103 / 720 * 100%);
}

.section--experience__detail__txt__number--02 {
  width: calc(109 / 720 * 100%);
}

.section--experience__detail__txt__number--03 {
  width: calc(105 / 720 * 100%);
}

.section--experience__detail__txt__number > img {
  width: calc(103 / 580 * 100%);
}

.section--experience__detail__txt > p {
  line-height: 2.5;
}

.section--experience__img {
  width: 50%;
}

.section--experience__img > img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .section--experience {
    padding: 60px 0 80px;
  }

  .section__ttl--experience {
    margin-bottom: 60px;
  }

  .section__ttl--experience > span {
    font-size: 1.6rem;
  }

  .section--experience__list > li {
    display: block;
    margin-bottom: 80px;
  }

  .section--experience__list > li:last-child {
    margin-bottom: 10%;
  }

  .section--experience__detail {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
  }

  .section--experience__detail__ttl {
    font-size: 2.0rem;
  }

  .section--experience__detail__txt__number {
    width: 50px;
    margin-bottom: 10px;
  }

  .section--experience__img {
    width: 90%;
  }

  .section--experience__img--02 {
    margin-left: auto;
  }
}

/* 塩をつくる人 */
.section--maker {
  background-image: url('assets/img/bg_maker.webp');
  background-attachment: fixed;
  background-size: cover;
  color: white;
  padding: calc(120 / 1440 * 100%) 0;
}

.section--maker__name {
  font-size: max(1.6rem, 2.3vw);
  text-align: center;
  margin-bottom: calc(20 / 1440 * 100%);
}

.section--maker__name > span {
  font-size: max(1.2rem, 1.6vw);  
  font-family: var(--en-font-set);
  font-style: normal;
  margin-right: calc(10 / 1440 * 100%);
}

.section--maker__img-person {
  display: block;
  width: 40%;
  margin: 0 auto calc(120 / 1440 * 100%);
}

.section--maker__img-person > img {
  width: 100%;
  aspect-ratio: 487 / 732;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.section--maker__story {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin-bottom: calc(40 / 1440 * 100%);
}

.section--maker__story--01,
.section--maker__story--03 {
  flex-direction: row-reverse;
}

.section--maker__story__txt,
.section--maker__story__txt-box > p {
  font-size: var(--text-font-16);
  line-height: 2;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.5);
}

.section--maker__story__txt {
  line-height: 2;
  align-self: center;
}

.section--maker__story__txt-box {
  align-self: center;
}

.section--maker__story__txt-box > p:first-child {
  margin-bottom: 1em;
}

.section--maker__story__img > img {
  width: 100%;
}

.section--maker__story__img--01 {
  width: calc(442 / 1440 * 100%);
  margin-right: calc(80 / 1440 * 100%);
}

.section--maker__story__img--01 > img {
  aspect-ratio: 1 / 1;
  height: auto;
}

.section--maker__story__img--02 {
  width: calc(482 / 1440 * 100%);
  margin-left: calc(80 / 1440 * 100%);
}

.section--maker__story__img-box {
  width: calc(670 / 1440 * 100%);
  height: auto;
  aspect-ratio: 670 / 578;
  margin-right: calc(80 / 1440 * 100%);
  position: relative;
}

.section--maker__story__img--03 {
  width: calc(397 / 670 * 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.section--maker__story__img--04 {
  width: calc(436 / 670 * 100%);
  position: absolute;
  bottom: 0;
  right: 0;
}

.section--maker__story--04 {
  margin-bottom: calc(120 / 1440 * 100%);
}

.section--maker__story__img--05 {
  width: calc(534 / 1440 * 100%);
  margin-left: calc(80 / 1440 * 100%);
}

.section--maker__story__img--05 > img {
  aspect-ratio: 534 / 326;
  height: auto;
}

/* いくつもの挑戦 */
.section--maker__other__ttl {
  font-size: max(1.8rem, 2vw);
  text-align: center;
  margin-bottom: calc(30 / 1440 * 100%);
}

.section--maker__other__catch {
  font-size: max(1.6rem, 1.6vw);
  line-height: 2;
  text-align: center;
  margin-bottom: calc(60 / 1440 * 100%);
}

.section--maker__other__list {
  display: flex;
  justify-content: center;
  gap: calc(30 / 1400 * 100%);
  padding: 0 calc(30 / 1400 * 100%);
  margin: 0 auto;
}

.section--maker__other__list > li {
  width: calc(500 / 1440 * 100%);
  background-color: #F4F4F4;
  padding: calc(30 / 1400* 100%);
}

.section--maker__other__list__ttl {
  color: #1c1c1c;
  font-size: max(1.6rem, 1.6vw);
  text-align: center;
  margin-bottom: calc(28 / 440 * 100%);
}

.section--maker__other__list__img {
  margin-bottom: calc(28 / 440 * 100%);
}

.section--maker__other__list__img > img {
  width: 100%;
  aspect-ratio: 420 / 320;
  height: auto;
}

.section--maker__other__list__txt {
  color: #1c1c1c;
  font-size: var(--text-font-14);
  margin-bottom: calc(28 / 440 * 100%);
}

.section--maker__other__list__btn {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.section--maker__other__list__btn {
  width: calc(350 / 440 * 100%);
  color: #fff;
  font-size: var(--text-font-14);
  font-weight: 400;
  text-align: center;
  background-color: #1c1c1c;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-decoration: none;
  padding: 10px 25px;
  margin: 0 auto;
}

.section--maker__other__list__btn:hover {
  opacity: 0.7;
}

.section--maker__other__list__btn:after {
  content: '';
  width: 0.8vw;
  height: 0.8vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: calc(20 / 340 * 100%);
}

@media screen and (max-width: 1440px) {
  .section--maker__other__list > li {
    width: calc(675 / 1380 * 100%);
    max-width: 500px;
  }
}

@media screen and (max-width: 767px) {
  .section--maker {
    padding: 70px 0;
  }

  .section--maker__name {
    font-size: 1.6rem;
    margin: 10px 0;
  }

  .section--maker__name > span {
    font-size: 1.2rem;
    margin-right: 10px;
  }

  .section__copy {
    width: 100%;
    max-width: 455px;
    padding: 0 20px;
    margin: 0 auto 40px;
  }

  .section--maker__img-person {
    width: 50%;
    margin-bottom: 70px;
  }

  .section--maker__story {
    display: block;
  }

  .section--maker__story--02,
  .section--maker__story--04 {
    width: 80%;
    max-width: 482px;
    padding: 0;
    margin-right: 20px;
    margin-left: auto;
  }

  .section--maker__story--03 {
    width: 100%;
    max-width: 482px;
  }

  .section--maker__story--04 {
    margin-bottom: 70px;
  }

  .section--maker__story__txt,
  .section--maker__story__txt-box > p {
    font-size: 1.4rem;
  }

  .section--maker__story__txt,
  .section--maker__story__txt-box {
    margin-bottom: 20px;
  }

  .section--maker__story__img {
    margin: 0;
  }

  .section--maker__story__img--01,
  .section--maker__story__img--03,
  .section--maker__story__img--04 {
    width: 60%;
  }

  .section--maker__story__img--02,
  .section--maker__story__img-box,
  .section--maker__story__img--05 {
    width: 100%;
  }

  .section--maker__other__list {
    display: block;
    padding: 0 20px ;
  }

  .section--maker__other__list > li {
    width: 100%;
    padding: 20px;
    margin: 0 auto;
  }
  .section--maker__other__list > li:first-child {
    margin-bottom: 30px;
  }
  .section--maker__other__list__ttl {
    margin-bottom: 18px;
  }

  .section--maker__other__list__img {
    margin-bottom: 18px;
  }
  .section--maker__other__list__txt {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .section--maker__other__list__btn:after {
    width: 8px;
    height: 8px;
  }
}

.section--island {
  background-image: url(assets/img/bg_map.png);
  background-size: 60%;
  background-repeat: no-repeat;
  padding: calc(110 / 1440 * 100%) 0 calc(150 / 1440 * 100%);
}
.section--island__top {
  width: 50%;
  padding: 0 20px;
  margin-left: auto;
}
.section__ttl--island,
.section__copy--island {
  text-align: left;
}
.section__ttl--island {
  margin-bottom: calc(40 / 600 * 100%);
}

.section--island__bottom {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: calc(80 / 1440 * 100%);
}

.section--island__bottom__img,
.section--island__bottom__txt {
  width: 50%;
}

.section--island__top__txt {
  margin-bottom: calc(60 / 600 * 100%);
}

.section--island__top__txt > p,
.section--island__bottom__txt > p {
  font-size: var(--text-font-16);
  line-height: 2.4;
}

.section--island__top__txt > p:first-child,
.section--island__bottom__txt > p:first-child {
  margin-bottom: 1em;
}

.section--island__bottom__img > img {
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 430;
}

.section--island__bottom__txt {
  display: grid;
  place-content: center;
  padding: 0 20px;
}

.section--island__bottom__txt > p > span {
  font-style: normal;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .section--island {
    background: none;
    padding: 0 0 70px;
  }

  .section--island__top {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .section--island__top__ttl {
    width: 100%;
    height: auto;
    aspect-ratio: 888 / 685;
    background-image: url(assets/img/bg_map_sp.png);
    background-size: 90%;
    background-repeat: no-repeat;
    padding: 10% 20px 0;
  }

  .section--island__top__txt {
    padding: 0 20px;
  }

  .section__copy--island {
    font-size: 1.6rem;
    padding: 0;
    margin: 0 0 30%;
  }

  .section--island__top__txt > p,
  .section--island__bottom__txt > p {
    font-size: 1.4rem;
  }

  .section--island__bottom {
    display: block;
  }

  .section--island__bottom__img,
  .section--island__bottom__txt {
    width: 100%;
    margin-bottom: 10%;
  }
}

/* 見学カレンダ ー*/
.section--reserve {
  padding-bottom: calc(80 / 1440 * 100%);
}

.section__ttl--reserve {
  margin-bottom: calc(40 / 1440 * 100%);
}

.section--reserve__calendar,
.section--reserve__detail,
.section--reserve__map {
  width: calc(900 / 1440 * 100%);
  padding: 0 20px;
  margin: 0 auto calc(50 / 1440 * 100%);
}

.section--reserve__calendar > p {
  font-size: max(1.4rem, 1.11vw);
  text-align: center;
  line-height: 2;
  margin-bottom: calc(20 / 1440 * 100%);
}

.section--reserve__calendar > p > span {
  font-style: normal;
  font-weight: 600;
}

.section--reserve__content {
  padding: 0;
}

.section--reserve__map > iframe {
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-font-16);
}

tr {
  border-bottom: 1px solid #e0e0e0;
}

td {
  padding: 1vw 1.4vw;
  vertical-align: top;
  line-height: 1.6;
}

.label {
  width: calc(250 / 860 * 100%);
}

.small-text {
  font-size: max(1.3rem, 0.90vw);
  margin-top: 8px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .section--reserve__calendar, 
  .section--reserve__detail,
  .section--reserve__map {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .section--reserve {
    padding: 0 10px 70px;
  }

  .section__copy--reserve {
    padding: 0;
  }

  .section--reserve__calendar,
  .section--reserve__detail,
  .section--reserve__map {
    padding: 0;
    margin-bottom: 30px;
  }

  .section--reserve__calendar > p {
    max-width: 455px;
    text-align: left;
    margin: 0 auto 20px;
  }

  tr {
    display: block;
    margin-bottom: 0;
  }
  
  td {
    display: block;
    padding: 12px 16px;
    border: none;
  }
  
  .label {
    width: 100%;
    font-weight: 600;
    font-size: 1.5rem;
    color: #333;
    padding-bottom: 8px;
    margin: 0;
  }
  
  .value {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 16px;
    font-size: 1.4rem;
  }
  
  .note {
    font-size: 1.2rem;
    margin-top: 12px;
  }
}

/* オンラインショップ */
.section--shop {
  background-image: url(assets/img/bg_shop.webp);
  background-size: cover;
  background-position-x: center;
  background-position-y: bottom;
  padding: calc(100 / 1440 * 100%) calc(150 / 1440 * 100%);
  position: relative;
  overflow: hidden;
}

.section--shop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, white 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.section__ttl--shop {
  margin-bottom: calc(50 / 1140 * 100%);
}

.section__ttl--shop,
.section__copy--shop {
  text-align: left;
}

.section--shop__btn {
  width: 24vw;
  min-width: 225px;
  color: #1c1c1c;
  font-size: 1.5vw;
  font-weight: 400;
  background-color: #fff;
  border: 1px solid #1c1c1c;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-decoration: none;
  padding: 2%;
}

@media (max-width: 767px) {
  .section--shop {
    background-image: url(assets/img/bg_shop_sp.webp);
    background-size: contain;
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
    padding: calc(50 / 750 * 100%) 0 calc(430 / 750 * 100%);
  }

  .section--shop::before {
    background: none;
  }

  .section__ttl--shop {
    text-align: center;
  }

  .section__copy--shop {
    text-align: center;
    padding: 0;
  }

  .section--shop__btn {
    width: 225px;
    font-size: 14px;
    padding: 12px 25px;
    margin: 0 auto;
  }

  .section--shop__btn:after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
  }
}

/* footer */
.footer {
  color: #fff;
  background-color: #1e1e1e;
  padding: calc(30 / 1440 * 100%) calc(50 / 1440 * 100%);
  position: relative;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
}

.footer__inner__left {
  display: flex;
  gap: 3.5vw;
}
.footer__logo > img {
  width: 13.8vw;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer__contact__address {
  font-size: max(1.3rem, 1.3vw);
  font-style: normal;
}

.footer__instagram {
  color: #fff;
}

.fa-instagram {
  font-size: 1.94vw;
  margin-top: 10px;
}

.footer__inner__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer__copyright {
  font-size: max(1.1rem, 0.76vw);
}

#page_top {
  width: 4vw;
  height: auto;
  aspect-ratio: 1 / 1 ;
  background-color: #9F9F9F;
  border-radius: 50%;
  margin-left: auto;
  position: relative;
}

#page_top::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 1.7vw;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

@media (max-width: 767px) {
  .footer {
    padding: 20px;
  }

  .footer__inner,
  .footer__inner__left {
    display: block;
  }

  .footer__inner {
    text-align: center;
  }

  .footer__logo {
    margin-bottom: 10px;
  }

  .footer__logo > img {
    width: 120px;
  }

  .footer__contact {
    margin-bottom: 10px;
  }

  .fa-instagram {
    font-size: 2.8rem;
  }
  
  #page_top {
    width: 40px;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  #page_top::before {
    font-size: 2.0rem;
  }
}
