@charset "UTF-8";
html {
  font-size: 1.25vw;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

html,
body {
  overflow-x: hidden;
}

#wpadminbar {
  display: none;
}

a[href^='tel:'] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^='tel:'] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}
.br_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br_sp {
    display: block;
  }
}
.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 11.71875vw;
}
@media screen and (max-width: 768px) {
  .header {
    height: 25.641025641vw;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 0 3.125vw 0 3.90625vw;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 5.1282051282vw;
  }
}

.header__name {
  display: flex;
  align-items: center;
  margin-right: auto;
  height: inherit;
}

.header__name img {
  width: 100%;
  width: 3.984375vw;
}
@media screen and (max-width: 768px) {
  .header__name img {
    width: 10.2564102564vw;
  }
}

.header__nav {
  height: inherit;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
}

.arrow {
  display: inline-block;
  width: 0.546875vw;
  height: 0.546875vw;
  margin-left: 0.78125vw;
  border-bottom: solid 0.15625vw #000;
  border-right: solid 0.15625vw #000;
  transform: rotate(45deg);
  margin-top: -0.15625vw;
}

.header__item:not(:first-child) {
  margin-left: max(2.34375vw, 30px);
}

.header__link {
  font-size: max(1.09375vw, 14px);
  font-weight: 700;
  line-height: 1.4285714286;
  display: flex;
  align-items: center;
  color: #000;
  height: inherit;
}

.header__item--has-dropdown {
  position: relative;
}
.header__item--has-dropdown:hover .dropdown {
  display: block;
}

.dropdown {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  top: 7.8125vw;
  left: min(-7.03125vw, -90px);
  background-color: #fff;
  border-radius: 1.5625vw;
  padding: 0.390625vw 1.5625vw;
  width: max(21.875vw, 280px);
  z-index: 999;
  pointer-events: none;
  box-shadow: 0px 0px 1.5625vw rgba(0, 0, 0, 0.2);
}

.dropdown::before {
  position: absolute;
  content: '';
  width: 0.9375vw;
  height: 0.9375vw;
  border-radius: 50%;
  background-color: #ff8e48;
  top: -0.390625vw;
  left: 50%;
  transform: translateX(-50%);
}

.header__item--has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown__item {
  width: 100%;
  padding: 0.78125vw 0;
}

.dropdown__item + .dropdown__item {
  border-top: 0.078125vw solid #ededed;
}

.dropdown__link {
  font-size: max(1.25vw, 16px);
  font-weight: 700;
  display: block;
  color: #000;
  text-decoration: none;
}
.dropdown__link:hover {
  opacity: 0.6;
  transition: opacity 0.3s;
}

.dropdown__link .size-change {
  font-size: max(0.9375vw, 12px);
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 9.4871794872vw;
  right: 5.1282051282vw;
  width: 7.1794871795vw;
  height: 5.641025641vw;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 0.5128205128vw;
  transition: transform 0.3s;
  background-color: #000;
}

.hamburger span:first-child {
  top: 0;
  width: 6.1538461538vw;
}

.hamburger span:nth-child(2) {
  top: 2.5641025641vw;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  height: 0.5128205128vw;
}

.hamburger span:nth-child(3) {
  top: 5.1282051282vw;
  width: 5.641025641vw;
}

.hamburger.is-active span:first-child {
  top: 3.3333333333vw;
  transform: rotate(-45deg);
  width: 7.6923076923vw;
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 3.3333333333vw;
  transform: rotate(45deg);
  width: 7.6923076923vw;
}

.drawer-menu {
  position: fixed;
  z-index: 5000;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 5000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-menu.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-menu__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: inherit;
  max-width: 71.7948717949vw;
  margin: 0 auto;
  padding-top: 25.8974358974vw;
  padding-bottom: 17.6923076923vw;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.drawer-menu__inner::-webkit-scrollbar {
  display: none;
}

.drawer-menu__items {
  display: flex;
  flex-direction: column;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 10.2564102564vw;
}

.drawer-menu__link {
  font-size: 24px;
  font-size: 6.1538461538vw;
  font-weight: 700;
  color: #000;
}

.story-items {
  margin-top: -2.8205128205vw;
}

.story-item {
  padding: 4.6153846154vw 0;
  border-top: 0.2564102564vw solid #ededed;
  border-bottom: 0.2564102564vw solid #ededed;
}

.story-item:first-child {
  border-top: unset;
}

.story-item__link {
  font-size: 4.6153846154vw;
  font-weight: 700;
  color: #000;
}

.drawer-menu .size-change {
  font-size: 3.5897435897vw;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 360px) {
  .drawer-menu .size-change {
    display: block;
  }
}

.fv-wrapper {
  position: relative;
}

.fv {
  position: relative;
  margin-top: 11.71875vw;
}
@media screen and (max-width: 768px) {
  .fv {
    margin-top: 41.0256410256vw;
  }
}

.fv-design01 {
  position: absolute;
  top: -9.6875vw;
  left: -1.484375vw;
  width: 34.84375vw;
}
@media screen and (max-width: 768px) {
  .fv-design01 {
    top: -3.5897435897vw;
    left: -18.9743589744vw;
    width: 55.3846153846vw;
    transform: rotate(15deg);
  }
}

.fv-design02 {
  position: absolute;
  top: -19.921875vw;
  right: -7.265625vw;
  width: 32.734375vw;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .fv-design02 {
    top: -61.5384615385vw;
    right: -29.7435897436vw;
    width: 65.3846153846vw;
  }
}

.fv__inner {
  position: relative;
  z-index: 1;
  padding-top: 2.34375vw;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    padding-top: unset;
  }
}

.fv__title {
  font-size: 4.6875vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3333333333;
  text-align: center;
  padding: 0 1.953125vw;
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 7.6923076923vw;
    line-height: 1.5;
  }
}

.fv__logo {
  width: 39.0625vw;
  height: 39.0625vw;
  background-image: url(../../assets/img//bg_fv-logo.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.578125vw auto 0;
}
@media screen and (max-width: 768px) {
  .fv__logo {
    width: 115.3846153846vw;
    height: 115.3846153846vw;
    margin: 19.4871794872vw auto 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.fv-logo__img {
  width: 10.390625vw;
}
@media screen and (max-width: 768px) {
  .fv-logo__img {
    width: 34.1025641026vw;
  }
}

.fv-icon {
  position: absolute;
  left: 1.5625vw;
  bottom: 7.421875vw;
}
@media screen and (max-width: 768px) {
  .fv-icon {
    display: none;
    left: 2.5641025641vw;
    bottom: 4.358974359vw;
    z-index: 100;
  }
}

.fv-icon img {
  width: 3.90625vw;
}
@media screen and (max-width: 768px) {
  .fv-icon img {
    width: 12.8205128205vw;
  }
}

.lineup {
  margin-top: 9.609375vw;
  padding-left: 10.625vw;
}
@media screen and (max-width: 768px) {
  .lineup {
    margin-top: 11.7948717949vw;
    padding-left: unset;
  }
}

.lineup__inner {
  position: relative;
  display: flex;
}
@media screen and (max-width: 768px) {
  .lineup__inner {
    display: block;
  }
}

.lineup-contents__wrap {
  max-width: 37.5vw;
}
@media screen and (max-width: 768px) {
  .lineup-contents__wrap {
    padding: 0 5.1282051282vw;
    max-width: unset;
  }
}

.lineup__title {
  font-size: 4.6875vw;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .lineup__title {
    font-size: 9.2307692308vw;
    line-height: 1.6666666667;
  }
}

.lineup__text {
  font-size: max(1.40625vw, 16px);
  font-weight: 400;
  line-height: 2;
  margin-top: 6.25vw;
}
@media screen and (max-width: 768px) {
  .lineup__text {
    font-size: max(3.5897435897vw, 14px);
    line-height: 2;
    margin-top: 6.9230769231vw;
  }
}

.lineup-btn {
  display: flex;
  align-items: center;
  font-size: max(1.25vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 4.5;
  width: max(17.96875vw, 230px);
  height: max(4.6875vw, 60px);
  background-image: url(../../assets/img//bg_lineup-btn.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: max(5.9375vw, 76px);
  color: #000;
  padding-left: max(1.796875vw, 23px);
}
@media screen and (max-width: 768px) {
  .lineup-btn {
    font-size: max(3.5897435897vw, 14px);
    line-height: 5.1428571429;
    width: max(46.1538461538vw, 180px);
    height: max(12.8205128205vw, 50px);
    background-image: url(../../assets/img//sp_bg_lineup-btn.png);
    margin-top: max(9.4871794872vw, 37px);
    padding-left: max(3.8461538462vw, 6px);
  }
}

.lineup__img {
  position: absolute;
  top: 5.546875vw;
  right: -4.140625vw;
  width: 41.953125vw;
}
@media screen and (max-width: 768px) {
  .lineup__img {
    position: relative;
    top: 12.3076923077vw;
    left: -13.0769230769vw;
    width: 134.6153846154vw;
    max-width: none;
  }
}

.story01 {
  position: relative;
  margin-top: 21.875vw;
}
@media screen and (max-width: 768px) {
  .story01 {
    margin-top: 51.5384615385vw;
  }
}

.story01-design {
  position: absolute;
  top: -15.625vw;
  left: -13.28125vw;
  width: 53.125vw;
}
@media screen and (max-width: 768px) {
  .story01-design {
    top: -30.7692307692vw;
    left: -39.2307692308vw;
    width: 102.5641025641vw;
    max-width: unset;
  }
}

.story01__inner {
  position: relative;
  z-index: 20;
}

.section-title__wrap {
  position: relative;
  z-index: 30;
}

.story01-contents__wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .story01-contents__wrap {
    display: block;
  }
}

.story01-img01 {
  width: 42.1875vw;
  margin-top: 9.21875vw;
}
@media screen and (max-width: 768px) {
  .story01-img01 {
    width: 71.7948717949vw;
    margin-top: 10.2564102564vw;
  }
}

.story01-text__wrap {
  margin-top: -12.890625vw;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .story01-text__wrap {
    margin-top: 10.2564102564vw;
    padding: 0 5.1282051282vw;
  }
}

.story01-img02 {
  width: 46.875vw;
}
@media screen and (max-width: 768px) {
  .story01-img02 {
    width: 88.4615384615vw;
    margin-left: auto;
    margin-top: 12.0512820513vw;
  }
}

.story01__text {
  font-size: max(1.40625vw, 16px);
  font-weight: 400;
  line-height: 2;
  margin-top: 9.375vw;
  width: 42.96875vw;
}
@media screen and (max-width: 768px) {
  .story01__text {
    font-size: max(3.5897435897vw, 14px);
    line-height: 2;
    margin-top: min(-1.2820512821vw, -5px);
    width: unset;
  }
}

.story01-btn {
  margin-top: 5.78125vw;
  margin-left: auto;
  right: 7.8125vw;
  padding-right: max(0.703125vw, 9px);
}
@media screen and (max-width: 768px) {
  .story01-btn {
    right: 0;
    margin-top: max(9.2307692308vw, 36px);
  }
}

.story02 {
  position: relative;
  margin-top: 20.078125vw;
}
@media screen and (max-width: 768px) {
  .story02 {
    margin-top: 20.5128205128vw;
  }
}

.story02-design {
  position: absolute;
  top: -9.375vw;
  left: 50%;
  transform: translateX(-50%);
  width: 42.1875vw;
  height: 42.1875vw;
}
@media screen and (max-width: 768px) {
  .story02-design {
    top: 0;
    width: 115.3846153846vw;
    height: 115.3846153846vw;
    max-width: none;
  }
}

.story02_inner {
  position: relative;
}

.story02 .section-title__wrap {
  text-align: center;
  margin-left: -7.8125vw;
}
@media screen and (max-width: 768px) {
  .story02 .section-title__wrap {
    margin-left: unset;
    padding-left: unset;
  }
}

@media screen and (max-width: 768px) {
  .story02 .section-title__label {
    padding-top: 18.4615384615vw;
  }
}

@media screen and (max-width: 768px) {
  .story02 .section-title {
    line-height: 1.4;
  }
}

.story02__img {
  width: 87.5vw;
  margin: 0 auto;
  margin-top: -4.140625vw;
}
@media screen and (max-width: 768px) {
  .story02__img {
    width: 100%;
    margin-top: 11.2820512821vw;
  }
}

.story02__text {
  position: relative;
  bottom: 46.875vw;
  width: 53.125vw;
  font-size: max(1.40625vw, 16px);
  font-weight: 400;
  line-height: 2;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .story02__text {
    font-size: max(3.5897435897vw, 14px);
    line-height: 2;
    bottom: 0;
    width: 100%;
    padding: 0 5.1282051282vw;
    margin-top: 9.4871794872vw;
    max-width: 100%;
  }
}

.story02-btn.btn {
  position: absolute;
  bottom: 11.5625vw;
  right: 3.125vw;
  background-image: url(../../assets/img//bg_story02-btn.png);
  padding-right: 1.171875vw;
}
@media screen and (max-width: 768px) {
  .story02-btn.btn {
    background-image: url(../../assets/img//sp_bg_story02-btn.png);
    bottom: -21.7948717949vw;
    right: 0;
    margin-right: 5.1282051282vw;
    padding-right: 2.3076923077vw;
  }
}

.story03 {
  margin-top: 11.328125vw;
}
@media screen and (max-width: 768px) {
  .story03 {
    margin-top: 42.3076923077vw;
  }
}

.story03__inner {
  position: relative;
}

.story03-heading__contents {
  width: 78.90625vw;
  padding: 6.25vw 17.96875vw 6.25vw 0;
  background-color: #172841;
  border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 768px) {
  .story03-heading__contents {
    width: 94.8717948718vw;
    padding: 8.7179487179vw 5.1282051282vw;
  }
}

.story03 .section-title__wrap {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .story03 .section-title__wrap {
    padding-left: unset;
  }
}

.story03__text {
  font-size: max(1.40625vw, 16px);
  font-weight: 400;
  line-height: 2;
  width: 53.125vw;
  margin-left: 7.8125vw;
  margin-top: 3.59375vw;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .story03__text {
    font-size: max(3.5897435897vw, 14px);
    line-height: 2;
    margin-top: 10.5128205128vw;
    margin-left: unset;
    width: unset;
  }
}

.story03-btn.btn {
  position: relative;
  left: 7.8125vw;
  color: #fff;
  background-image: url(../../assets/img//bg_story03-btn.png);
  margin-top: 3.125vw;
  padding-right: 1.171875vw;
}
@media screen and (max-width: 768px) {
  .story03-btn.btn {
    background-image: url(../../assets/img//sp_bg_story03-btn.png);
    left: 5.1282051282vw;
    padding-right: 2.3076923077vw;
    margin-top: 10.2564102564vw;
  }
}

.story03-bottom__contents {
  width: 78.90625vw;
  height: 35.078125vw;
  background-color: #172841;
  border-radius: 1.5625vw 0 0 1.5625vw;
  margin-left: auto;
  margin-top: 5.546875vw;
}
@media screen and (max-width: 768px) {
  .story03-bottom__contents {
    width: 79.4871794872vw;
    height: 63.8461538462vw;
    margin-top: 38.4615384615vw;
  }
}

.story03__img {
  position: absolute;
  width: 50vw;
  right: 7.8125vw;
  bottom: 7.8125vw;
}
@media screen and (max-width: 768px) {
  .story03__img {
    width: 89.7435897436vw;
    left: 50%;
    bottom: 25.1282051282vw;
    transform: translateX(-50%);
  }
}

.news {
  position: relative;
  margin-top: 23.90625vw;
  margin-bottom: 12.5vw;
}
@media screen and (max-width: 768px) {
  .news {
    margin-top: 18.4615384615vw;
    margin-bottom: 41.2820512821vw;
  }
}

.news-design {
  position: absolute;
  top: -0.859375vw;
  left: -5.3125vw;
  width: 52.96875vw;
}
@media screen and (max-width: 768px) {
  .news-design {
    max-width: unset;
    width: 99.4871794872vw;
    left: -23.0769230769vw;
    top: 0.7692307692vw;
  }
}

.news__inner {
  position: relative;
  max-width: 66.40625vw;
  margin: 0 auto;
  z-index: 30;
  padding-left: 1.953125vw;
  padding-right: 1.953125vw;
}
@media screen and (max-width: 768px) {
  .news__inner {
    max-width: unset;
    padding: 0 5.1282051282vw;
  }
}

.news .section-title__wrap {
  text-align: center;
  padding-left: unset;
}

.news .section-title__label {
  font-size: 1.5625vw;
  letter-spacing: 0.05em;
  line-height: 2.1;
}
@media screen and (max-width: 768px) {
  .news .section-title__label {
    font-size: 5.3846153846vw;
    line-height: 2;
  }
}

.news .section-title {
  font-size: 4.6875vw;
}
@media screen and (max-width: 768px) {
  .news .section-title {
    font-size: 12.3076923077vw;
    letter-spacing: 0.03em;
  }
}

.news-items {
  max-width: 62.5vw;
  margin: 0 auto;
  padding-top: 3.125vw;
}
@media screen and (max-width: 768px) {
  .news-items {
    max-width: unset;
    padding-top: 10.5128205128vw;
  }
}

.news-item {
  padding: 1.5625vw 0;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .news-item {
    padding: 3.8461538462vw 0;
  }
}

.news-item:first-child {
  border-top: 1px solid #000;
}

.news-item__inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .news-item__inner {
    display: block;
  }
}

.news__date {
  font-size: 1.40625vw;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.01em;
  line-height: 2;
  color: #000;
  padding-right: 1.5625vw;
}
@media screen and (max-width: 768px) {
  .news__date {
    font-size: 3.5897435897vw;
    line-height: 1;
    display: flex;
  }
}

.news-item__contents {
  max-width: 48.4375vw;
  /* margin-left: auto; */
}
@media screen and (max-width: 768px) {
  .news-item__contents {
    max-width: unset;
  }
}

@media screen and (max-width: 768px) {
  .sp-heading {
    display: flex;
  }
}

.news__title {
  font-size: max(1.875vw, 20px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 768px) {
  .news__title {
    font-size: 5.3846153846vw;
    margin-left: 5.1282051282vw;
  }
}

.news__text {
  font-size: max(1.09375vw, 14px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: #000;
  margin-top: 0.78125vw;
}
@media screen and (max-width: 768px) {
  .news__text {
    font-size: max(3.5897435897vw, 14px);
    margin-top: 3.8461538462vw;
  }
}

.news-btn.btn {
  background-image: url(../../assets/img//bg_news-btn.png);
  margin-top: 2.734375vw;
  margin-left: auto;
  padding-right: 1.171875vw;
}
@media screen and (max-width: 768px) {
  .news-btn.btn {
    margin-top: 10.2564102564vw;
    padding-right: 2.3076923077vw;
    background-image: url(../../assets/img//sp_bg_news-btn.png);
  }
}

.footer {
  position: relative;
  background-color: #f7f7f7;
  height: 4.6875vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer {
    height: 15.3846153846vw;
  }
}

.copyright {
  font-size: max(0.9375vw, 10px);
  font-weight: 400;
  font-family: 'Barlow', sans-serif;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 10px;
  }
}
.footer-cloudy-link {
  position: fixed;
  right: 1.5625vw;
  bottom: 2.96875vw;
  z-index: 100000;
}
.footer-cloudy-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-cloudy-bird {
  width: 3.90625vw;
}
@media screen and (max-width: 768px) {
  .footer-cloudy-bird {
    width: 12.8205128205vw;
    height: 18.2051282051vw;
    right: 2.5641025641vw;
    bottom: 24.1025641026vw;
  }
}
.footer-cloudy-copy {
  font-size: 9px;
  color: #000;
}

.brewing {
  margin-top: 11.71875vw;
}
@media screen and (max-width: 768px) {
  .brewing {
    margin-top: 25.641025641vw;
  }
}

#brewing .story01-design {
  top: -0.78125vw;
  left: -14.21875vw;
  width: 54.0625vw;
}
@media screen and (max-width: 768px) {
  #brewing .story01-design {
    top: 0;
  }
}

#brewing .section-title__wrap {
  margin-top: 15.625vw;
}
@media screen and (max-width: 768px) {
  #brewing .section-title__wrap {
    margin-top: 34.1025641026vw;
  }
}

.rice {
  position: relative;
  margin-top: 7.1875vw;
}
@media screen and (max-width: 768px) {
  .rice {
    margin-top: 12.0512820513vw;
  }
}

.rice__inner {
  position: relative;
  z-index: 20;
}

.rice__title {
  position: absolute;
  top: 26.953125vw;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10.828125vw;
}
@media screen and (max-width: 768px) {
  .rice__title {
    width: 23.6923076923vw;
    top: 30.7692307692vw;
  }
}

.rice__img {
  width: 84.375vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .rice__img {
    width: 89.7435897436vw;
    border-radius: 5.1282051282vw;
  }
}

.rice-text__wrap {
  margin-top: 5.9375vw;
  margin-left: 7.8125vw;
}
@media screen and (max-width: 768px) {
  .rice-text__wrap {
    margin-top: 9.7435897436vw;
    margin-left: unset;
    padding: 0 5.1282051282vw;
  }
}

.rice__text {
  font-size: max(1.40625vw, 16px);
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .rice__text {
    font-size: max(3.5897435897vw, 14px);
    line-height: 2;
  }
}

.rice__text + .rice__text {
  margin-top: 2.734375vw;
}
@media screen and (max-width: 768px) {
  .rice__text + .rice__text {
    margin-top: 7.1794871795vw;
  }
}

.brewing-design02 {
  position: absolute;
  right: -5.078125vw;
  bottom: -0.21875vw;
  width: 55.46875vw;
  height: 55.46875vw;
}
@media screen and (max-width: 768px) {
  .brewing-design02 {
    width: 76.9230769231vw;
    height: 76.9230769231vw;
    bottom: 76.9230769231vw;
    right: -12.8205128205vw;
  }
}

.water {
  position: relative;
  margin-top: 12.5vw;
}
@media screen and (max-width: 768px) {
  .water {
    margin-top: 29.4871794872vw;
  }
}

.water__inner {
  position: relative;
  z-index: 20;
}

.water-title__heading {
  display: flex;
  align-items: center;
}
.brewing_water-img {
  width: 93.75vw;
  margin-left: -25vw;
}
@media screen and (max-width: 768px) {
  .brewing_water-img {
    width: 164.1025641026vw;
    height: 109.4871794872vw;
    margin-left: -17.9487179487vw;
    border-radius: 5.1282051282vw;
  }
}

.water__title {
  width: 10.9921875vw;
  margin-left: 9.7265625vw;
}
@media screen and (max-width: 768px) {
  .water__title {
    position: absolute;
    width: 32.9615384615vw;
    margin-left: 61.5384615385vw;
    margin-top: -6.4102564103vw;
  }
}

.water-text__wrap {
  width: 50vw;
  margin-top: 5.9375vw;
  margin-right: 6.25vw;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .water-text__wrap {
    width: unset;
    margin-top: 9.7435897436vw;
    margin-left: unset;
    margin-right: unset;
    padding: 0 5.1282051282vw;
  }
}

.water__text {
  font-size: max(1.40625vw, 16px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .water__text {
    font-size: max(3.5641025641vw, 13.9px);
  }
}

.water__text + .water__text {
  margin-top: 2.734375vw;
}
@media screen and (max-width: 768px) {
  .water__text + .water__text {
    margin-top: 7.1794871795vw;
  }
}

.brewing-design03 {
  position: absolute;
  width: 34.375vw;
  bottom: 5.46875vw;
  left: -2.34375vw;
}
@media screen and (max-width: 768px) {
  .brewing-design03 {
    width: 84.6153846154vw;
    bottom: 28.2051282051vw;
    left: -30.7692307692vw;
  }
}

.artistry {
  position: relative;
  margin-top: 12.5vw;
  padding-bottom: 12.5vw;
}
@media screen and (max-width: 768px) {
  .artistry {
    margin-top: 19.7435897436vw;
    padding-bottom: 20.5128205128vw;
  }
}

.artistry__inner {
  position: relative;
  z-index: 20;
}

.artistry__title {
  position: absolute;
  top: 7.8125vw;
  left: 50%;
  transform: translateX(-50%);
  width: 15.35234375vw;
}
@media screen and (max-width: 768px) {
  .artistry__title {
    width: 50.3871794872vw;
    top: 11.5384615385vw;
  }
}

.artistry__img {
  width: 85.9375vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .artistry__img {
    width: 89.7435897436vw;
  }
}

.artistry-text__wrap {
  width: 50vw;
  margin-top: 5.46875vw;
  margin-left: 7.8125vw;
}
@media screen and (max-width: 768px) {
  .artistry-text__wrap {
    width: unset;
    margin-top: 8.9743589744vw;
    margin-left: unset;
    padding: 0 5.1282051282vw;
  }
}

.artistry__text {
  font-size: max(1.40625vw, 16px);
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .artistry__text {
    font-size: max(3.5897435897vw, 14px);
  }
}

.artistry__text + .artistry__text {
  margin-top: 2.734375vw;
}
@media screen and (max-width: 768px) {
  .artistry__text + .artistry__text {
    margin-top: 7.1794871795vw;
  }
}

.brewing-design04 {
  position: absolute;
  bottom: 32.03125vw;
  right: -12.5vw;
  width: 45.3125vw;
}
@media screen and (max-width: 768px) {
  .brewing-design04 {
    bottom: 97.4358974359vw;
    right: -20.5128205128vw;
    width: 92.3076923077vw;
  }
}

#rice.rice {
  position: relative;
  margin-top: 10.3125vw;
  margin-bottom: 14.0625vw;
}
@media screen and (max-width: 768px) {
  #rice.rice {
    margin-top: 33.8461538462vw;
  }
}

#rice .story02-design.rice-design01 {
  width: 55.46875vw;
  height: 55.46875vw;
  top: -0.390625vw;
}
@media screen and (max-width: 768px) {
  #rice .story02-design.rice-design01 {
    width: 89.7435897436vw;
    height: 89.7435897436vw;
    top: -7.6923076923vw;
  }
}

#rice .rice__inner {
  padding-top: 3.125vw;
}
@media screen and (max-width: 768px) {
  #rice .rice__inner {
    padding-top: unset;
  }
}

#rice .section-title__wrap {
  display: inline-block;
  text-align: center;
  margin-left: 14.84375vw;
}
@media screen and (max-width: 768px) {
  #rice .section-title__wrap {
    margin-left: unset;
    padding-left: 6.4102564103vw;
  }
}

@media screen and (max-width: 768px) {
  #rice .section-title {
    font-size: 12.3076923077vw;
  }
}

#rice .story02__img {
  width: 84.375vw;
  margin-top: 3.90625vw;
}
@media screen and (max-width: 768px) {
  #rice .story02__img {
    width: 100%;
    margin-top: 10.7692307692vw;
  }
}

#rice .rice__caption {
  font-size: max(0.9375vw, 12px);
  font-weight: 700;
  margin-top: 0.78125vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #rice .rice__caption {
    font-size: max(2.5641025641vw, 10px);
    margin-top: 2.5641025641vw;
  }
}

#rice .rice-text__wrap {
  width: 55.46875vw;
  padding-top: 5.859375vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #rice .rice-text__wrap {
    width: 100%;
    padding: 0 5.1282051282vw;
    margin-top: 8.2051282051vw;
  }
}

#rice .rice__text {
  font-size: max(1.40625vw, 16px);
}
@media screen and (max-width: 768px) {
  #rice .rice__text {
    font-size: max(3.5897435897vw, 14px);
  }
}

#rice .rice__text + .rice__text {
  margin-top: 2.734375vw;
}
@media screen and (max-width: 768px) {
  #rice .rice__text + .rice__text {
    margin-top: 7.6923076923vw;
  }
}

.rice-design02 {
  position: absolute;
  right: -4.765625vw;
  bottom: 23.59375vw;
  width: 40.625vw;
}
@media screen and (max-width: 768px) {
  .rice-design02 {
    right: -17.9487179487vw;
    bottom: 133.3333333333vw;
    width: 89.7897435897vw;
  }
}

.rice-design03 {
  position: absolute;
  left: -4.6875vw;
  bottom: -15.625vw;
  width: 33.59375vw;
}
@media screen and (max-width: 768px) {
  .rice-design03 {
    left: -25.641025641vw;
    bottom: -25.641025641vw;
    width: 84.6153846154vw;
    transform: rotate(60deg);
  }
}

.history-page {
  background-color: #172841;
}

.history-page .header__name img {
  filter: brightness(0) invert(1);
}

.history-page .header__link {
  color: #fff;
}

.history-page .arrow {
  border-bottom: solid 0.15625vw #fff;
  border-right: solid 0.15625vw #fff;
}

.history-page .hamburger span {
  background-color: #fff;
}

.history-page .hamburger.is-active span {
  background-color: #000;
}

#history.history {
  margin-top: 11.71875vw;
  color: #fff;
  padding-bottom: 12.5vw;
}
@media screen and (max-width: 768px) {
  #history.history {
    margin-top: 25.641025641vw;
    padding-bottom: 20.5128205128vw;
  }
}

#history .history__inner {
  padding-top: 3.90625vw;
}
@media screen and (max-width: 768px) {
  #history .history__inner {
    padding-top: 7.1794871795vw;
  }
}

#history .section-title__wrap {
  padding-left: unset;
}

#history .section-title__label {
  text-align: center;
  font-family: 'EB Garamond', serif;
}
@media screen and (max-width: 768px) {
  #history .section-title__label {
    font-size: 5.3846153846vw;
  }
}

#history .section-title {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #history .section-title {
    font-size: 13.3333333333vw;
  }
}

#history .history-text__wrap {
  padding-top: 6.5625vw;
  width: 56.25vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #history .history-text__wrap {
    margin-top: 7.6923076923vw;
    width: 100%;
    padding: 0 5.1282051282vw;
  }
}

#history .history__text {
  font-size: max(1.25vw, 14px);
  font-weight: 400;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.25em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #history .history__text {
    font-size: max(3.5897435897vw, 14px);
    line-height: 2;
  }
}

#history .history__text + .history__text {
  margin-top: 2.34375vw;
}
@media screen and (max-width: 768px) {
  #history .history__text + .history__text {
    margin-top: 7.6923076923vw;
  }
}

#history .story03__img.history__img01 {
  position: unset;
  padding-top: 6.640625vw;
  width: 84.375vw;
  margin: 0 auto;
  transform: unset;
}
@media screen and (max-width: 768px) {
  #history .story03__img.history__img01 {
    padding-top: 9.2307692308vw;
    width: 89.7435897436vw;
    border-radius: 20px;
  }
}

#history .history-text_wrap.wrap02 {
  padding-top: 5.234375vw;
  width: 56.328125vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #history .history-text_wrap.wrap02 {
    width: 100%;
    padding: 8.2051282051vw 5.1282051282vw 0;
  }
}

#history .history__img02 {
  width: 84.375vw;
  margin: 0 auto;
  padding-top: 6.25vw;
}
@media screen and (max-width: 768px) {
  #history .history__img02 {
    width: 89.7435897436vw;
    padding-top: 9.2307692308vw;
  }
}

#history .history-text_wrap.wrap03 {
  width: 56.328125vw;
  margin-top: 6.25vw;
}
@media screen and (max-width: 768px) {
  #history .history-text_wrap.wrap03 {
    width: 100%;
    margin-top: 10.2564102564vw;
    padding: 0 5.1282051282vw;
  }
}

#history .history-btn__wrap {
  padding-top: 5.78125vw;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #history .history-btn__wrap {
    padding-top: 18.4615384615vw;
  }
}

#history .history-btn {
  font-size: max(1.09375vw, 14px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 5.1428571429;
  border: 0.234375vw solid #fff;
  color: #fff;
  padding: max(1.5625vw, 20px) max(2.1875vw, 28px) max(1.5625vw, 20px)
    max(2.265625vw, 28px);
}
@media screen and (max-width: 768px) {
  #history .history-btn {
    border: 0.7692307692vw solid #fff;
  }
}

.history-page .footer {
  background-color: #2f3e54;
}

.history-page .copyright {
  color: #fff;
}

#products.products {
  position: relative;
  margin-top: 12.65625vw;
  padding-bottom: 12.5vw;
}
@media screen and (max-width: 768px) {
  #products.products {
    margin-top: 35.3846153846vw;
    padding-bottom: 20.5128205128vw;
  }
}

#products .line {
  position: absolute;
  width: 63vw;
  top: -11.71875vw;
  right: 3.75vw;
}
@media screen and (max-width: 768px) {
  #products .line {
    width: 83.3333333333vw;
    right: 6.1025641026vw;
    top: -33.3333333333vw;
  }
}

#products .products__inner {
  position: relative;
}

#limited.limited {
  position: relative;
}

#limited .limited-design {
  position: absolute;
  pointer-events: none;
  width: 53.828125vw;
  top: -13.046875vw;
  left: 3.125vw;
}
@media screen and (max-width: 768px) {
  #limited .limited-design {
    max-width: unset;
    width: 103.0769230769vw;
    top: -32.8205128205vw;
    left: 6.9230769231vw;
  }
}

#limited .limited__inner {
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  #limited .limited__inner {
    display: block;
  }
}

#limited .limited__title {
  font-size: 4.6875vw;
  font-weight: 300;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.2em;
  line-height: 1.6;
  margin-left: 3.125vw;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #limited .limited__title {
    font-size: 12.3076923077vw;
    line-height: 1.5;
    margin-left: 5.1282051282vw;
  }
}

#limited .items {
  position: relative;
  display: flex;
  justify-content: end;
  width: 100%;
}

#limited .item {
  width: 12.890625vw;
}
@media screen and (max-width: 768px) {
  #limited .item {
    width: 25.641025641vw;
  }
}

#limited .item:first-child {
  width: 29.21875vw;
  margin-top: 7.03125vw;
}
@media screen and (max-width: 768px) {
  #limited .item:first-child {
    position: absolute;
    width: 59.4871794872vw;
    top: 58.7179487179vw;
    left: 5.1282051282vw;
    margin-top: unset;
  }
}

#limited .item:nth-child(2) {
  margin-top: -0.78125vw;
  margin-right: 4.84375vw;
}
@media screen and (max-width: 768px) {
  #limited .item:nth-child(2) {
    margin-right: 6.6666666667vw;
    margin-top: 11.2820512821vw;
  }
}

#limited .item:last-child {
  margin-top: -1.328125vw;
  margin-right: 12.734375vw;
}
@media screen and (max-width: 768px) {
  #limited .item:last-child {
    margin-top: 11.2820512821vw;
    margin-right: 3.0769230769vw;
  }
}

#limited .item__link {
  position: relative;
  color: #000;
  display: flex;
}

#limited .item-img {
  width: 9.296875vw;
}
@media screen and (max-width: 768px) {
  #limited .item-img {
    width: 15.3846153846vw;
  }
}

#limited .item:first-child .item-img {
  width: 26.875vw;
}
@media screen and (max-width: 768px) {
  #limited .item:first-child .item-img {
    width: 59.4871794872vw;
  }
}

#limited .item-name__wrap {
  margin-top: 1.09375vw;
  margin-left: 2.03125vw;
}
@media screen and (max-width: 768px) {
  #limited .item-name__wrap {
    width: 3.5897435897vw;
    margin-left: 3.5897435897vw;
  }
}

#limited .item:first-child .item-name__wrap {
  margin-left: -22.265625vw;
  margin-top: 34.21875vw;
  width: 1.40625vw;
}
@media screen and (max-width: 768px) {
  #limited .item:first-child .item-name__wrap {
    margin-top: 45.3846153846vw;
    margin-left: -53.8461538462vw;
    width: 3.5897435897vw;
  }
}

#limited .item-name {
  font-size: 1.40625vw;
  font-weight: 400;
  line-height: 1.3333333333;
  letter-spacing: 0.4em;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
  display: inline-block;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #limited .item-name {
    font-size: 3.5897435897vw;
    line-height: 1.2857142857;
    letter-spacing: 0.25em;
    right: -9.2307692308vw;
    top: 1.2820512821vw;
  }
}

#limited .product-btn__wrap {
  position: relative;
  z-index: 10;
  margin-top: -4.453125vw;
  margin-left: 6.25vw;
}
@media screen and (max-width: 768px) {
  #limited .product-btn__wrap {
    margin-top: 112.8205128205vw;
    display: flex;
    justify-content: center;
    margin-left: unset;
  }
}

#limited .product-btn {
  font-size: 1.09375vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
  padding: 1.5625vw 1.40625vw;
  border: 0.234375vw solid #000;
}
@media screen and (max-width: 768px) {
  #limited .product-btn {
    font-size: 3.5897435897vw;
    padding: 5.1282051282vw 4.6153846154vw;
    border: 0.7692307692vw solid #000;
  }
}

#season-limited.season-limited {
  position: relative;
  margin-top: 10.625vw;
}
@media screen and (max-width: 768px) {
  #season-limited.season-limited {
    margin-top: 118.9743589744vw;
  }
}

#season-limited .season-limited_design01 {
  position: absolute;
  width: 40.625vw;
  top: -6.8125vw;
  right: -3.5625vw;
}
@media screen and (max-width: 768px) {
  #season-limited .season-limited_design01 {
    width: 86.1538461538vw;
    top: -84.1025641026vw;
    right: -11.7948717949vw;
  }
}

#season-limited .season-limited_design02 {
  position: absolute;
  width: 35.390625vw;
  top: 29.609375vw;
  left: -4.53125vw;
}

#season-limited .season-limited_design03 {
  position: absolute;
  width: 45.234375vw;
  top: 44.140625vw;
  right: -11.09375vw;
}
@media screen and (max-width: 768px) {
  #season-limited .season-limited_design03 {
    max-width: unset;
    top: 203.8461538462vw;
    right: -20.7692307692vw;
    width: 111.7948717949vw;
  }
}

#season-limited .season-limited__title {
  font-size: 3.75vw;
  font-weight: 300;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-left: 6.25vw;
}
@media screen and (max-width: 768px) {
  #season-limited .season-limited__title {
    font-size: 8.2051282051vw;
    line-height: 1.6875;
    margin-left: 5.1282051282vw;
  }
}

#season-limited .items {
  display: flex;
  position: relative;
}

#season-limited .item:first-child {
  position: absolute;
  top: -28.75vw;
  right: 6.65625vw;
}
@media screen and (max-width: 768px) {
  #season-limited .item:first-child {
    top: -147.6923076923vw;
    right: 8.4615384615vw;
  }
}

#season-limited .item:nth-child(2) {
  position: absolute;
  top: 6.171875vw;
  left: 10.3125vw;
}
@media screen and (max-width: 768px) {
  #season-limited .item:nth-child(2) {
    top: 13.0769230769vw;
    left: 5.1282051282vw;
  }
}

#season-limited .item:nth-child(3) {
  position: absolute;
  top: 13.4375vw;
  left: 25.859375vw;
}
@media screen and (max-width: 768px) {
  #season-limited .item:nth-child(3) {
    top: 23.3333333333vw;
    left: 31.7948717949vw;
  }
}

#season-limited .item:nth-child(4) {
  position: absolute;
  top: 18.75vw;
  left: 39.140625vw;
}
@media screen and (max-width: 768px) {
  #season-limited .item:nth-child(4) {
    top: 37.6923076923vw;
    left: 53.0769230769vw;
  }
}

#season-limited .item:nth-child(5) {
  position: absolute;
  top: 22.265625vw;
  left: 56.25vw;
}
@media screen and (max-width: 768px) {
  #season-limited .item:nth-child(5) {
    top: 51.0256410256vw;
    left: 78.2051282051vw;
  }
}

#season-limited .item:last-child {
  margin-top: -1.953125vw;
  margin-right: 7.9609375vw;
  margin-left: auto;
  width: 23.28125vw;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  #season-limited .item:last-child {
    margin-top: 106.6666666667vw;
    margin-right: 12.8205128205vw;
    width: 61.0256410256vw;
  }
}

#season-limited .item__link {
  color: #000;
}

#season-limited .item:first-child .item__link {
  position: relative;
}

#season-limited .item:last-child .item__link {
  position: relative;
}

#season-limited .item-img {
  width: 6.25vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #season-limited .item-img {
    width: 15.3846153846vw;
  }
}

#season-limited .item:first-child .item-img {
  width: 18.515625vw;
}
@media screen and (max-width: 768px) {
  #season-limited .item:first-child .item-img {
    width: 40.2564102564vw;
  }
}

#season-limited .item:last-child .item-img {
  width: 18.515625vw;
  margin-top: -40.859375vw;
  margin-left: 5.625vw;
}
@media screen and (max-width: 768px) {
  #season-limited .item:last-child .item-img {
    width: 41.2820512821vw;
    margin-top: -62.8205128205vw;
    margin-left: 23.5897435897vw;
  }
}

#season-limited .item:first-child .item-name__wrap {
  margin-top: -43.828125vw;
  margin-left: -6.875vw;
}
@media screen and (max-width: 768px) {
  #season-limited .item:first-child .item-name__wrap {
    margin-top: -86.4102564103vw;
    margin-left: -44.6153846154vw;
  }
}

#season-limited .item:last-child .item-name__wrap {
  margin-top: 41.40625vw;
  margin-right: 17.578125vw;
}
@media screen and (max-width: 768px) {
  #season-limited .item:last-child .item-name__wrap {
    margin-top: 24.358974359vw;
    margin-right: 46.4102564103vw;
  }
}

#season-limited .item-name {
  margin-top: 1.171875vw;
  font-size: 1.40625vw;
  font-weight: 400;
  line-height: 1.3333333333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #season-limited .item-name {
    margin-top: 5.1282051282vw;
    font-size: 3.5897435897vw;
    line-height: 1.5;
  }
}

#season-limited .item:last-child .item-name {
  margin-right: -14.375vw;
}
@media screen and (max-width: 768px) {
  #season-limited .item:last-child .item-name {
    margin-top: 0.7692307692vw;
    margin-right: -33.8461538462vw;
  }
}

#season-limited .item:first-child .item-name,
#season-limited .item:last-child .item__title {
  font-size: 4.6875vw;
  font-weight: 300;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.2em;
  line-height: 1.4;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
  display: block;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 768px) {
  #season-limited .item:first-child .item-name,
  #season-limited .item:last-child .item__title {
    font-size: 12.3076923077vw;
    line-height: 1.5;
    letter-spacing: 0.5em;
  }
}

#season-limited .item:last-child .item__title {
  white-space: nowrap;
}
#season-limited .item__title {
  font-size: 4.6875vw;
  letter-spacing: 0.2em;
  line-height: 1.4;
}

#season-general.season-general {
  position: relative;
  margin-top: 19.609375vw;
}
@media screen and (max-width: 768px) {
  #season-general.season-general {
    margin-top: 39.7435897436vw;
  }
}

#season-general .season-general_design {
  position: absolute;
  width: 56.25vw;
  left: 50%;
  transform: translateX(-50%);
  top: -11.484375vw;
}
@media screen and (max-width: 768px) {
  #season-general .season-general_design {
    max-width: unset;
    width: 169.2307692308vw;
    top: 11.2820512821vw;
  }
}

#season-general .season-general__inner {
  position: relative;
  z-index: 100;
}

#season-general .season-general__title {
  font-size: 3.75vw;
  font-weight: 300;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #season-general .season-general__title {
    font-size: 8.2051282051vw;
    line-height: 1.6875;
  }
}

#season-general .items {
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #season-general .items {
    flex-wrap: wrap;
    margin-top: 11.0256410256vw;
    margin-left: 3.8461538462vw;
  }
}

#season-general .item + .item {
  margin-left: 3.8125vw;
}
@media screen and (max-width: 768px) {
  #season-general .item + .item {
    margin-left: 7.6923076923vw;
  }
}

#season-general .item:first-child {
  margin-top: -7.8125vw;
}
@media screen and (max-width: 768px) {
  #season-general .item:first-child {
    position: absolute;
    margin-top: unset;
    left: 3.0769230769vw;
  }
}

#season-general .item:nth-child(2) {
  margin-top: 4.84375vw;
}
@media screen and (max-width: 768px) {
  #season-general .item:nth-child(2) {
    position: absolute;
    margin-top: unset;
    left: 25.641025641vw;
  }
}

#season-general .item:nth-child(3) {
  margin-top: 16.40625vw;
}
@media screen and (max-width: 768px) {
  #season-general .item:nth-child(3) {
    margin-top: unset;
    position: absolute;
    right: 6.9230769231vw;
  }
}

#season-general .item:nth-child(4) {
  margin-top: 4.84375vw;
}
@media screen and (max-width: 768px) {
  #season-general .item:nth-child(4) {
    position: absolute;
    margin-top: unset;
    top: 78.9743589744vw;
    left: 8.2051282051vw;
  }
}

#season-general .item:last-child {
  margin-top: -7.8125vw;
}
@media screen and (max-width: 768px) {
  #season-general .item:last-child {
    margin-top: unset;
    position: absolute;
    top: 78.9743589744vw;
    right: 21.5384615385vw;
  }
}

#season-general .item-img {
  width: 6.25vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #season-general .item-img {
    width: 12.8205128205vw;
  }
}

#season-general .item-name {
  font-size: 1.40625vw;
  font-weight: 400;
  line-height: 1.3333333333;
  text-align: center;
  color: #000;
  margin-top: 1.5625vw;
}
@media screen and (max-width: 768px) {
  #season-general .item-name {
    font-size: 3.5897435897vw;
    line-height: 1.5;
    margin-top: 5.1282051282vw;
  }
}

#olive.olive {
  position: relative;
  margin-top: 8.125vw;
}
@media screen and (max-width: 768px) {
  #olive.olive {
    margin-top: 180vw;
  }
}

#olive .olive-design {
  position: absolute;
  width: 99.375vw;
  top: -12.96875vw;
  left: -17.109375vw;
}
@media screen and (max-width: 768px) {
  #olive .olive-design {
    max-width: unset;
    width: 171.0256410256vw;
    top: 121.0256410256vw;
    left: -44.1025641026vw;
  }
}

#olive .olive__inner {
  position: relative;
  z-index: 100;
}

#olive .olive__title {
  font-size: 7.03125vw;
  font-weight: 300;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.2em;
  line-height: 1.3333333333;
  text-align: right;
  margin-right: 6.25vw;
}
@media screen and (max-width: 768px) {
  #olive .olive__title {
    font-size: 15.3846153846vw;
    line-height: 1.3333333333;
    margin-right: 5.1282051282vw;
  }
}

#olive .olive-btn__wrap {
  margin-top: 5.234375vw;
  display: flex;
  justify-content: end;
  margin-right: 6.25vw;
}
@media screen and (max-width: 768px) {
  #olive .olive-btn__wrap {
    margin-top: 7.6923076923vw;
    margin-right: 5.1282051282vw;
  }
}

#olive .olive-btn {
  font-size: 1.09375vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1.5625vw 2.1875vw;
  border: 0.234375vw solid #000;
  color: #000;
}
@media screen and (max-width: 768px) {
  #olive .olive-btn {
    font-size: 3.5897435897vw;
    padding: 5.1282051282vw 7.1794871795vw;
    border: 0.7692307692vw solid #000;
  }
}

#olive .items {
  position: relative;
  display: flex;
  justify-content: end;
  margin-top: 7.03125vw;
  margin-right: 3.25vw;
}
@media screen and (max-width: 768px) {
  #olive .items {
    margin-top: 164.6153846154vw;
    margin-right: unset;
  }
}

#olive .item:first-child {
  position: absolute;
  top: -51.5625vw;
  left: 12.5vw;
}
@media screen and (max-width: 768px) {
  #olive .item:first-child {
    top: -156.4102564103vw;
    left: 18.4615384615vw;
  }
}

@media screen and (max-width: 768px) {
  #olive .item:nth-child(2) {
    position: absolute;
    left: 14.6153846154vw;
    top: -2.0512820513vw;
  }
}

@media screen and (max-width: 768px) {
  #olive .item:nth-child(3) {
    position: absolute;
    left: 50.5128205128vw;
    top: -2.0512820513vw;
  }
}

#olive .item:nth-child(4) {
  margin-top: -0.78125vw;
}
@media screen and (max-width: 768px) {
  #olive .item:nth-child(4) {
    position: absolute;
    left: 14.6153846154vw;
    top: 72.8205128205vw;
  }
}

@media screen and (max-width: 768px) {
  #olive .item:last-child {
    position: absolute;
    left: 50.5128205128vw;
    top: 73.5897435897vw;
  }
}

#olive .item + .item {
  margin-left: 2.5vw;
}

#olive .item-img {
  width: 6.25vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #olive .item-img {
    width: 12.8205128205vw;
  }
}

#olive .item:first-child .item-img {
  width: 27.34375vw;
}
@media screen and (max-width: 768px) {
  #olive .item:first-child .item-img {
    width: 61.7948717949vw;
  }
}

#olive .item-name {
  margin-top: 1.5625vw;
  font-size: 1.40625vw;
  font-weight: 400;
  line-height: 1.3333333333;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  #olive .item-name {
    font-size: 3.5897435897vw;
    line-height: 1.5;
    margin-top: 5.1282051282vw;
  }
}

#olive .item:first-child .item-name {
  margin-left: 1.796875vw;
  margin-top: 3.125vw;
  line-height: 1.7777777778;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  #olive .item:first-child .item-name {
    letter-spacing: unset;
    margin-top: 2.5641025641vw;
    line-height: unset;
  }
}

#nora.nora {
  position: relative;
  margin-top: 11.09375vw;
}
@media screen and (max-width: 768px) {
  #nora.nora {
    margin-top: 167.4358974359vw;
  }
}

#nora .nora-design {
  position: absolute;
  width: 53.828125vw;
  top: 1.953125vw;
  right: -1.5625vw;
}
@media screen and (max-width: 768px) {
  #nora .nora-design {
    max-width: unset;
    width: 125.1282051282vw;
    top: 30.7692307692vw;
    right: -33.3333333333vw;
  }
}

#nora .nora__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #nora .nora__inner {
    display: block;
  }
}

#nora .nora__title {
  font-size: 9.375vw;
  font-weight: 300;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-left: 11.71875vw;
  margin-top: 26.71875vw;
}
@media screen and (max-width: 768px) {
  #nora .nora__title {
    font-size: 18.4615384615vw;
    font-weight: 400;
    line-height: 1.1111111111;
    margin-top: unset;
    margin-left: unset;
    text-align: center;
  }
}

#nora .item {
  margin-right: 20.0625vw;
}

#nora .item-img {
  width: 27.1875vw;
}
@media screen and (max-width: 768px) {
  #nora .item-img {
    width: 62.0512820513vw;
    margin-left: 19.7435897436vw;
    margin-top: 6.6666666667vw;
  }
}

#nora .item-name {
  font-size: 1.40625vw;
  font-weight: 400;
  line-height: 1.3333333333;
  text-align: center;
  color: #000;
  margin-left: 11.484375vw;
  margin-top: 1.171875vw;
}
@media screen and (max-width: 768px) {
  #nora .item-name {
    font-size: 3.5897435897vw;
    line-height: 1.5;
    margin-left: 7.6923076923vw;
    margin-top: -13.0769230769vw;
    text-align: left;
  }
}

#region.region {
  position: relative;
  margin-top: 38.75vw;
}
@media screen and (max-width: 768px) {
  #region.region {
    margin-top: 71.5384615385vw;
  }
}

#region .region-design {
  position: absolute;
  width: 75vw;
  left: 50%;
  transform: translateX(-50%);
  top: -24.6875vw;
}
@media screen and (max-width: 768px) {
  #region .region-design {
    max-width: unset;
    width: 153.8461538462vw;
    top: -32.5641025641vw;
  }
}

#region .region__inner {
  position: relative;
  z-index: 100;
}

#region .title__wrap {
  text-align: center;
}

#region .region__title {
  font-size: 15.625vw;
  font-weight: 300;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.7em;
  margin-right: -11.171875vw;
}
@media screen and (max-width: 768px) {
  #region .region__title {
    font-size: 35.8974358974vw;
    letter-spacing: 0.72em;
    line-height: 1.1428571429;
    white-space: nowrap;
    margin-right: unset;
    margin-left: -12.8205128205vw;
  }
}

@media screen and (max-width: 768px) {
  #region .region__title .space {
    margin-left: 12.8205128205vw;
  }
}

#region .subtitle {
  font-size: 2.8125vw;
  font-weight: 300;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.2em;
  text-align: right;
  margin-right: 3.28125vw;
  margin-top: -0.390625vw;
}
@media screen and (max-width: 768px) {
  #region .subtitle {
    font-size: 4.6153846154vw;
    text-align: left;
    margin-left: 2.5641025641vw;
    margin-top: 2.0512820513vw;
  }
}

@media screen and (max-width: 768px) {
  #region .subtitle .space {
    margin-left: 43.5897435897vw;
  }
}

#region .region-btn__wrap {
  margin-top: 25.859375vw;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #region .region-btn__wrap {
    margin-top: 39.4871794872vw;
  }
}

#region .region-btn {
  font-size: 1.09375vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1.5625vw 1.796875vw;
  color: #000;
  border: 0.234375vw solid #000;
}
@media screen and (max-width: 768px) {
  #region .region-btn {
    font-size: 3.5897435897vw;
    padding: 5.1282051282vw 5.8974358974vw;
    border: 0.7692307692vw solid #000;
  }
}

#region .items {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 7.890625vw;
}
@media screen and (max-width: 768px) {
  #region .items {
    margin-top: 18.7179487179vw;
  }
}

#region .item:first-child {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -81.796875vw;
}
@media screen and (max-width: 768px) {
  #region .item:first-child {
    top: -183.3333333333vw;
  }
}

#region .item:nth-child(3) {
  margin-left: 2.8125vw;
}
@media screen and (max-width: 768px) {
  #region .item:nth-child(3) {
    margin-left: 10.2564102564vw;
  }
}

#region .item:last-child {
  margin-left: 2.578125vw;
  margin-top: -1.5625vw;
}
@media screen and (max-width: 768px) {
  #region .item:last-child {
    margin-left: 10.2564102564vw;
  }
}

#region .item-img {
  width: 4.84375vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #region .item-img {
    width: 10.2564102564vw;
  }
}

#region .item:first-child .item-img {
  width: 14.0625vw;
}
@media screen and (max-width: 768px) {
  #region .item:first-child .item-img {
    width: 30.7692307692vw;
  }
}

#region .item:last-child .item-img {
  width: 17.4vw;
}
@media screen and (max-width: 768px) {
  #region .item:last-child .item-img {
    width: 35.8205128205vw;
  }
}

#region .item-name {
  font-size: 1.40625vw;
  font-weight: 400;
  line-height: 1.3333333333;
  color: #000;
  margin-top: 1.5625vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #region .item-name {
    font-size: 3.5897435897vw;
    line-height: 1.5;
    margin-top: 5.1282051282vw;
  }
}

#region .item:first-child .item-name {
  margin-top: 3.90625vw;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  #region .item:first-child .item-name {
    margin-top: 3.8461538462vw;
  }
}

#product-archive.product-archive {
  margin-top: 11.71875vw;
}
@media screen and (max-width: 768px) {
  #product-archive.product-archive {
    margin-top: 25.641025641vw;
  }
}

#product-archive .product-archive__inner {
  padding-top: 3.90625vw;
  max-width: 87.5vw;
  margin: 0 auto;
  padding-bottom: 12.5vw;
}
@media screen and (max-width: 768px) {
  #product-archive .product-archive__inner {
    max-width: unset;
    padding: 5.1282051282vw 5.1282051282vw 20.5128205128vw;
  }
}

#product-archive .section-title__wrap {
  padding-left: unset;
}

#product-archive .section-title {
  font-size: 3.75vw;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #product-archive .section-title {
    font-size: 9.2307692308vw;
    letter-spacing: 0.01em;
  }
}

#product-archive .product-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 6.25vw;
  gap: 6.25vw 3.90625vw;
}
@media screen and (max-width: 768px) {
  #product-archive .product-list {
    margin-top: 20.5128205128vw;
    gap: 10.2564102564vw 5.1282051282vw;
  }
}

#product-archive .product-item {
  width: 26.5625vw;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #product-archive .product-item {
    width: 41.0256410256vw;
  }
}

#product-archive .product-item__link {
  color: #000;
}

#product-archive .product-item__img {
  width: 100%;
  height: 30vw;
  object-fit: contain;
  background-color: #fafafa;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  #product-archive .product-item__img {
    width: 41.0256410256vw;
    height: 67.9487179487vw;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

#product-archive .product-item__title {
  margin-top: 1.5625vw;
  font-size: 1.875vw;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3333333333;
}
@media screen and (max-width: 768px) {
  #product-archive .product-item__title {
    margin-top: 3.8461538462vw;
    font-size: max(1.40625vw, 16px);
    line-height: 1.7777777778;
  }
}

#product-archive .product-item__text {
  margin-top: 0.78125vw;
  font-size: max(1.09375vw, 14px);
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #product-archive .product-item__text {
    margin-top: 2.5641025641vw;
    font-size: max(3.0769230769vw, 12px);
    line-height: 2;
  }
}

.product-item__tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5625vw;
  -moz-column-gap: 1.171875vw;
  column-gap: 1.171875vw;
  row-gap: 1.171875vw;
}
@media screen and (max-width: 768px) {
  .product-item__tags {
    margin-top: 5.1282051282vw;
    -moz-column-gap: 2.5641025641vw;
    column-gap: 2.5641025641vw;
    row-gap: 2.5641025641vw;
  }
}

.tag {
  font-size: 1.09375vw;
  font-weight: 700;
  line-height: 2.2857142857;
  background-color: #f7f7f7;
  min-width: 7.03125vw;
  height: 2.34375vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.625vw;
  white-space: nowrap;
}
.tag a {
  color: #000;
}
@media screen and (max-width: 768px) {
  .tag {
    font-size: 3.0769230769vw;
    line-height: 2.6666666667;
    min-width: 15.3846153846vw;
    height: 7.6923076923vw;
    border-radius: 2.0512820513vw;
  }
}

#product-details.product-details {
  margin-top: 11.71875vw;
  padding-bottom: 9.375vw;
}
@media screen and (max-width: 768px) {
  #product-details.product-details {
    margin-top: 25.641025641vw;
    padding-bottom: 20.5128205128vw;
  }
}

#product-details .product-details__inner {
  display: flex;
  padding-top: 3.125vw;
  padding-left: 6.25vw;
  padding-right: 4.6875vw;
}
@media screen and (max-width: 768px) {
  #product-details .product-details__inner {
    display: block;
    padding-top: 5.1282051282vw;
    padding-left: 5.1282051282vw;
    padding-right: 5.1282051282vw;
  }
}

#product-details .product-item__img {
  width: 40.625vw;
  height: 42.1875vw;
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #product-details .product-item__img {
    width: 100%;
    height: 101.7948717949vw;
  }
}

#product-details .product-item__img img {
  width: 29.6875vw;
  height: 90%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  #product-details .product-item__img img {
    width: 76.9230769231vw;
  }
}

#product-details .product-details__content {
  margin-left: 6.25vw;
}
@media screen and (max-width: 768px) {
  #product-details .product-details__content {
    margin-left: unset;
  }
}

#product-details .product-item__title {
  font-size: 3.75vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #product-details .product-item__title {
    font-size: 8.2051282051vw;
    margin-top: 3.8461538462vw;
  }
}

#product-details .product-item__price {
  margin-top: 1.5625vw;
}
@media screen and (max-width: 768px) {
  #product-details .product-item__price {
    margin-top: 5.1282051282vw;
  }
}

#product-details .product-item__price p {
  font-size: max(1.875vw, 20px);
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #product-details .product-item__price p {
    font-size: max(4.6153846154vw, 16px);
    line-height: 1.5;
  }
}

#product-details .product-item__text {
  width: 42.1875vw;
  margin-top: 0.546875vw;
  font-size: max(1.40625vw, 16px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #product-details .product-item__text {
    width: 100%;
    margin-top: 2.0512820513vw;
    font-size: max(3.0769230769vw, 12px);
    line-height: 2;
  }
}

.tags__wrap {
  margin-top: 0.78125vw;
}
@media screen and (max-width: 768px) {
  .tags__wrap {
    margin-top: 4.1025641026vw;
  }
}

.tags__title {
  font-size: max(1.09375vw, 14px);
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .tags__title {
    font-size: max(3.5897435897vw, 14px);
  }
}

#product-details .product-item__tags {
  display: flex;
  margin-top: 0.859375vw;
}
@media screen and (max-width: 768px) {
  #product-details .product-item__tags {
    margin-top: 2.5641025641vw;
  }
}

#product-details .product-item__spec {
  margin-top: 3.125vw;
}
@media screen and (max-width: 768px) {
  #product-details .product-item__spec {
    margin-top: 9.2307692308vw;
  }
}

#product-details .product-item__spec div {
  display: flex;
}

#product-details .product-item__spec dt {
  width: 12.65625vw;
  font-size: max(1.09375vw, 14px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #product-details .product-item__spec dt {
    width: 35.8974358974vw;
    font-size: max(3.0769230769vw, 12px);
    line-height: 2;
  }
}

#product-details .product-item__spec dd {
  width: 28.125vw;
  margin-left: 1.5625vw;
  font-size: max(1.09375vw, 14px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #product-details .product-item__spec dd {
    width: 48.7179487179vw;
    font-size: max(3.0769230769vw, 12px);
    line-height: 2;
    margin-left: 5.1282051282vw;
  }
}

#product-details .product-details__back {
  margin-top: 2.34375vw;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #product-details .product-details__back {
    margin-top: 8.2051282051vw;
  }
}

#product-details .product-details__btn {
  font-size: 1.09375vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
  border: 0.234375vw solid #000;
  padding: 1.5625vw 2.890625vw;
}
@media screen and (max-width: 768px) {
  #product-details .product-details__btn {
    font-size: 3.5897435897vw;
    border: 0.7692307692vw solid #000;
    padding: 5.1282051282vw 9.4871794872vw;
  }
}

#shops.shops {
  margin-top: 11.328125vw;
}
@media screen and (max-width: 768px) {
  #shops.shops {
    margin-top: 29.7435897436vw;
  }
}

#shops .shops__inner {
  max-width: 87.5vw;
  margin: 0 auto;
  padding-bottom: 12.5vw;
}
@media screen and (max-width: 768px) {
  #shops .shops__inner {
    max-width: unset;
    padding-bottom: 20.5128205128vw;
    padding-left: 5.1282051282vw;
    padding-right: 5.1282051282vw;
  }
}

#shops .section-title {
  font-size: 4.6875vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3333333333;
}
@media screen and (max-width: 768px) {
  #shops .section-title {
    font-size: 9.2307692308vw;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
}

#shops .shops__text {
  margin-top: 3.359375vw;
  font-size: 1.875vw;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #shops .shops__text {
    margin-top: 4.1025641026vw;
    font-size: max(3.0769230769vw, 12px);
    line-height: 2;
  }
}

#shops .prefectures__wrap {
  margin-top: 6.25vw;
}
@media screen and (max-width: 768px) {
  #shops .prefectures__wrap {
    margin-top: 20.5128205128vw;
  }
}

#shops .prefectures {
  font-size: 2.8125vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #shops .prefectures {
    font-size: 6.1538461538vw;
    line-height: 1.3333333333;
  }
}

#shops .shops-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.125vw 3.90625vw;
  margin-top: 3.125vw;
}
@media screen and (max-width: 768px) {
  #shops .shops-list {
    display: block;
    gap: unset;
  }
}

#shops .shops-item {
  width: 26.5625vw;
}
@media screen and (max-width: 768px) {
  #shops .shops-item {
    width: 100%;
    margin-top: 4.6153846154vw;
  }
}

@media screen and (max-width: 768px) {
  #shops .shops-item + .shops-item {
    margin-top: 7.6923076923vw;
  }
}

#shops .shop-name {
  font-size: 1.875vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3333333333;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #shops .shop-name {
    font-size: max(4.6153846154vw, 16px);
    line-height: 1.7777777778;
  }
}

#shops .shop-address {
  margin-top: 0.78125vw;
  font-size: 1.09375vw;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #shops .shop-address {
    margin-top: 1.0256410256vw;
    font-size: max(3.5897435897vw, 14px);
    line-height: 2;
  }
}
#shops .shop-link {
  margin-top: 0.78125vw;
  font-size: 1.09375vw;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 768px) {
  #shops .shop-link {
    margin-top: 1.0256410256vw;
    font-size: max(3.5897435897vw, 14px);
    line-height: 2;
  }
}

#shops .shop-maps {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 17/11;
  margin-top: 1.5625vw;
}
@media screen and (max-width: 768px) {
  #shops .shop-maps {
    margin-top: 5.1282051282vw;
  }
}

#shops .shop-maps iframe {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 17/11;
}

#cloudy.cloudy {
  position: relative;
}

#cloudy .cloudy-bird_left {
  position: absolute;
  width: 14.0625vw;
  top: 38.59375vw;
  left: -6.25vw;
}
@media screen and (max-width: 768px) {
  #cloudy .cloudy-bird_left {
    width: 25.641025641vw;
    top: 128.2051282051vw;
    left: -10.2564102564vw;
  }
}

#cloudy .cloudy-bird_right {
  position: absolute;
  width: 14.0625vw;
  top: 38.59375vw;
  right: -6.25vw;
  transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
  #cloudy .cloudy-bird_right {
    width: 25.641025641vw;
    top: 128.2051282051vw;
    right: -10.2564102564vw;
  }
}

.cloudy-page .header__name img {
  filter: brightness(0) invert(1);
}

.cloudy-page .header__link {
  color: #fff;
}

.cloudy-page .arrow {
  border-bottom: solid 0.15625vw #fff;
  border-right: solid 0.15625vw #fff;
}

.cloudy-page .hamburger span {
  background-color: #fff;
}

.cloudy-page .hamburger.is-active span {
  background-color: #000;
}

#cloudy .cloudy__inner {
  background-color: #878c2f;
  padding-bottom: 9.375vw;
}
@media screen and (max-width: 768px) {
  #cloudy .cloudy__inner {
    padding-bottom: 18.4615384615vw;
  }
}

#cloudy .cloudy__mv {
  height: 54.609375vw;
  background-image: url(../../assets/img//cloudy-mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #cloudy .cloudy__mv {
    height: 158.9743589744vw;
    background-image: url(../../assets/img//sp_cloudy-mv.jpg);
  }
}

#cloudy .cloudy-title {
  font-size: 6.25vw;
  font-weight: 400;
  font-family: 'Shippori Mincho', serif;
  letter-spacing: 0.1em;
  line-height: 1.125;
  color: #fff;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
  display: block;
  white-space: nowrap;
  margin: 0 auto;
  padding-top: 9.765625vw;
  text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 768px) {
  #cloudy .cloudy-title {
    font-size: 20.5128205128vw;
    padding-top: 32.0512820513vw;
  }
}

#cloudy .contents {
  margin-top: 6.5625vw;
}
@media screen and (max-width: 768px) {
  #cloudy .contents {
    margin-top: 40.7692307692vw;
  }
}

#cloudy .heading {
  font-size: 4.6875vw;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #cloudy .heading {
    font-size: 6.6666666667vw;
    line-height: 1.8461538462;
  }
}

#cloudy .item-img {
  width: 9.375vw;
  margin: 0 auto;
  padding-top: 6.25vw;
}
@media screen and (max-width: 768px) {
  #cloudy .item-img {
    width: 22.0512820513vw;
    padding-top: 6.1538461538vw;
  }
}

#cloudy .text__wrap {
  padding-top: 5.234375vw;
  width: 62.5vw;
  margin: 0 auto;
  font-size: 1.875vw;
  font-weight: 700;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #cloudy .text__wrap {
    padding: 7.6923076923vw 5.1282051282vw 0;
    width: 100%;
    font-size: 4.6153846154vw;
    line-height: 2;
  }
}

#cloudy .text + .text {
  margin-top: 3.90625vw;
}
@media screen and (max-width: 768px) {
  #cloudy .text + .text {
    margin-top: 9.2307692308vw;
  }
}

#cloudy .cloudy-list {
  margin-top: 3.90625vw;
}
@media screen and (max-width: 768px) {
  #cloudy .cloudy-list {
    margin-top: 9.2307692308vw;
  }
}

#cloudy .text.last {
  margin-top: 3.90625vw;
}
@media screen and (max-width: 768px) {
  #cloudy .text.last {
    margin-top: 9.2307692308vw;
  }
}

#cloudy .cooking__wrap {
  margin-top: 11.484375vw;
}
@media screen and (max-width: 768px) {
  #cloudy .cooking__wrap {
    margin-top: 19.4871794872vw;
  }
}

#cloudy .cooking__inner {
  max-width: 93.75vw;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 1.5625vw;
  padding: 4.6875vw 6.25vw;
}
@media screen and (max-width: 768px) {
  #cloudy .cooking__inner {
    max-width: 94.8717948718vw;
    border-radius: 5.1282051282vw;
    padding: 8.7179487179vw 5.1282051282vw 10.2564102564vw;
  }
}

#cloudy .cooking__heading {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #cloudy .cooking__heading {
    display: block;
  }
}

#cloudy .cooking-title {
  font-size: 4.6875vw;
  font-weight: 700;
  line-height: 1.5;
  color: #878c2f;
}
@media screen and (max-width: 768px) {
  #cloudy .cooking-title {
    font-size: 11.5384615385vw;
    line-height: 1.6;
  }
}

#cloudy .cooking__text {
  width: 40.625vw;
  font-size: 1.40625vw;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #cloudy .cooking__text {
    width: 100%;
    font-size: 3.5897435897vw;
    line-height: 2;
    margin-top: 2.0512820513vw;
  }
}

#cloudy .cooking-img01 {
  margin-top: 6.796875vw;
}
@media screen and (max-width: 768px) {
  #cloudy .cooking-img01 {
    margin-top: 9.2307692308vw;
  }
}

#cloudy .cooking-extra {
  margin-top: 5.234375vw;
  font-size: 3.75vw;
  font-weight: 700;
  line-height: 1.875;
  color: #878c2f;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #cloudy .cooking-extra {
    margin-top: 10.2564102564vw;
    font-size: 9.2307692308vw;
    line-height: 1.5;
  }
}

#cloudy .extra__items {
  display: flex;
  flex-wrap: wrap;
  gap: 6.25vw;
  margin-top: 5.234375vw;
  padding-bottom: 1.5625vw;
}
@media screen and (max-width: 768px) {
  #cloudy .extra__items {
    display: block;
    gap: 10.2564102564vw;
    margin-top: 10.2564102564vw;
    padding-bottom: unset;
  }
}

#cloudy .extra__item {
  width: 37.5vw;
}
@media screen and (max-width: 768px) {
  #cloudy .extra__item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #cloudy .extra__item + .extra__item {
    margin-top: 10.2564102564vw;
  }
}

#cloudy .cooking-name {
  margin-top: 1.5625vw;
  font-size: 1.875vw;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #cloudy .cooking-name {
    margin-top: 5.1282051282vw;
    font-size: 4.6153846154vw;
    line-height: 1.3333333333;
  }
}

#cloudy .media {
  margin-top: 9.375vw;
}
@media screen and (max-width: 768px) {
  #cloudy .media {
    margin-top: 19.4871794872vw;
  }
}

#cloudy .media-title {
  font-size: 2.8125vw;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.3333333333;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #cloudy .media-title {
    font-size: 6.1538461538vw;
    line-height: 2;
  }
}

#cloudy .media__items {
  max-width: 56.25vw;
  margin: 0 auto;
  margin-top: 3.125vw;
}
@media screen and (max-width: 768px) {
  #cloudy .media__items {
    max-width: 89.7435897436vw;
    margin-top: 8.2051282051vw;
  }
}

#cloudy .media__item {
  padding: 3.125vw 0;
}
@media screen and (max-width: 768px) {
  #cloudy .media__item {
    padding: 4.1025641026vw 0;
  }
}

#cloudy .media__item + .media__item {
  border-top: 0.078125vw solid #fff;
}
@media screen and (max-width: 768px) {
  #cloudy .media__item + .media__item {
    border-top: 0.2564102564vw solid #fff;
  }
}

#cloudy .media__item:first-child {
  border-top: 0.078125vw solid #fff;
}
@media screen and (max-width: 768px) {
  #cloudy .media__item:first-child {
    border-top: 0.2564102564vw solid #fff;
  }
}

#cloudy .media__item:last-child {
  border-bottom: 0.078125vw solid #fff;
}
@media screen and (max-width: 768px) {
  #cloudy .media__item:last-child {
    border-bottom: 0.2564102564vw solid #fff;
  }
}

#cloudy .media-item__heading {
  font-size: 1.40625vw;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.7777777778;
  color: #fff;
  display: inline;
  border-bottom: 0.078125vw solid #fff;
  background: #fff;
  background: linear-gradient(transparent 99%, #ffffff 0%);
}
@media screen and (max-width: 768px) {
  #cloudy .media-item__heading {
    font-size: 4.6153846154vw;
    line-height: 1.7777777778;
    border-bottom: 0.2564102564vw solid #fff;
  }
}

#cloudy .media-item__text {
  font-size: 1.09375vw;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.7142857143;
  margin-top: 0.78125vw;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #cloudy .media-item__text {
    font-size: 3.5897435897vw;
    line-height: 1.7142857143;
    margin-top: 4.1025641026vw;
  }
}

#cloudy .cloudy-product__wrap {
  display: flex;
  justify-content: center;
  margin-top: 12.5vw;
}
@media screen and (max-width: 768px) {
  #cloudy .cloudy-product__wrap {
    display: block;
    margin-top: 20.5128205128vw;
  }
}

#cloudy .cloudy-product__img {
  width: 35.15625vw;
  height: 45.3125vw;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #cloudy .cloudy-product__img {
    width: 89.7435897436vw;
    height: 101.7948717949vw;
    margin: 0 auto;
  }
}

#cloudy .cloudy-product__img img {
  width: 9.375vw;
}
@media screen and (max-width: 768px) {
  #cloudy .cloudy-product__img img {
    width: 22.0512820513vw;
  }
}

#cloudy .cloudy-product__contents {
  width: 37.5vw;
  margin-left: 7.03125vw;
}
@media screen and (max-width: 768px) {
  #cloudy .cloudy-product__contents {
    width: 89.7435897436vw;
    margin-left: unset;
    margin: 0 auto;
    padding-top: 10.2564102564vw;
  }
}

#cloudy .cloudy-product__name {
  font-size: 2.5vw;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #cloudy .cloudy-product__name {
    font-size: 8.2051282051vw;
    line-height: 1.5;
  }
}

#cloudy .product-item__price {
  margin-top: 2.109375vw;
  font-size: 1.875vw;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #cloudy .product-item__price {
    margin-top: 4.1025641026vw;
    font-size: 4.6153846154vw;
    line-height: 2;
  }
}

#cloudy .product-item__price .item01 .space {
  margin-left: 3.90625vw;
}
@media screen and (max-width: 768px) {
  #cloudy .product-item__price .item01 .space {
    margin-left: 8.7179487179vw;
  }
}

#cloudy .product-item__price .item02 .space {
  margin-left: 3.125vw;
}
@media screen and (max-width: 768px) {
  #cloudy .product-item__price .item02 .space {
    margin-left: 5.8974358974vw;
  }
}

#cloudy .cloudy__list {
  margin-top: 2.109375vw;
}
@media screen and (max-width: 768px) {
  #cloudy .cloudy__list {
    margin-top: 3.0769230769vw;
  }
}

#cloudy .cloudy__item {
  font-size: 1.40625vw;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #cloudy .cloudy__item {
    font-size: 3.5897435897vw;
    line-height: 2;
  }
}

.cloudy-page .footer {
  background-color: #9b9e55;
}

.cloudy-page .copyright {
  color: #fff;
}

#olive-page.olive-page {
  margin-top: 11.71875vw;
}
@media screen and (max-width: 768px) {
  #olive-page.olive-page {
    margin-top: 25.641025641vw;
  }
}

#olive-page .olive-page__inner {
  padding-bottom: 9.375vw;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-page__inner {
    padding-bottom: 18.4615384615vw;
  }
}

#olive-page .olive-page__mv {
  width: 93.75vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-page__mv {
    width: 94.8717948718vw;
  }
}

#olive-page .olive-heading__wrap {
  display: flex;
  margin-top: 9.765625vw;
  margin-left: 9.375vw;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-heading__wrap {
    display: block;
    margin-top: 10.2564102564vw;
    margin-left: unset;
    padding: 0 5.1282051282vw;
  }
}

#olive-page .olive-content__title {
  font-size: 4.6875vw;
  font-weight: 700;
  line-height: 1.5;
  color: #c7c42d;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-content__title {
    font-size: 7.6923076923vw;
    line-height: 1.6;
  }
}

#olive-page .olive-content__text {
  font-size: 1.875vw;
  font-weight: 700;
  line-height: 2;
  color: #c7c42d;
  margin-top: 4.6875vw;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-content__text {
    font-size: 4.6153846154vw;
    line-height: 2;
    margin-top: 8.2051282051vw;
  }
}

#olive-page .item-img {
  width: 12.5vw;
  margin-left: 10.9375vw;
  margin-top: -2.1875vw;
}
@media screen and (max-width: 768px) {
  #olive-page .item-img {
    width: 25.641025641vw;
    margin-left: unset;
    padding-top: 8.2051282051vw;
    margin: 0 auto;
  }
}

#olive-page .olive-cooking__wrap {
  margin-top: 8.59375vw;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-cooking__wrap {
    margin-top: 20.5128205128vw;
  }
}

#olive-page .olive-cooking__inner {
  max-width: 93.75vw;
  margin: 0 auto;
  background-color: #c7c42d;
  border-radius: 1.5625vw;
  padding: 4.6875vw 6.25vw 6.25vw;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-cooking__inner {
    max-width: 94.8717948718vw;
    border-radius: 5.1282051282vw;
    padding: 8.7179487179vw 5.1282051282vw 10.2564102564vw;
  }
}

#olive-page .olive-cooking__title {
  font-size: 4.6875vw;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-cooking__title {
    font-size: 11.5384615385vw;
    line-height: 1.6;
  }
}

#olive-page .olive-cooking__text {
  font-size: 1.40625vw;
  font-weight: 700;
  line-height: 2;
  color: #fff;
  text-align: center;
  margin-top: 3.125vw;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-cooking__text {
    font-size: 3.5897435897vw;
    line-height: 2;
    margin-top: 7.1794871795vw;
  }
}

#olive-page .cooking__wrap {
  margin-top: 3.59375vw;
}
@media screen and (max-width: 768px) {
  #olive-page .cooking__wrap {
    margin-top: 9.2307692308vw;
  }
}

#olive-page .olive-cooking__img {
  width: 65.625vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-cooking__img {
    width: 100%;
  }
}

#olive-page .cooking__name {
  font-size: 1.875vw;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 3.125vw;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #olive-page .cooking__name {
    font-size: 4.6153846154vw;
    line-height: 1.5555555556;
    margin-top: 9.2307692308vw;
  }
}

#olive-page .label {
  font-size: 1.40625vw;
  font-weight: 700;
  line-height: 2;
  display: block;
}
@media screen and (max-width: 768px) {
  #olive-page .label {
    font-size: 3.5897435897vw;
    line-height: 2;
  }
}

#olive-page .analysis__wrap {
  margin-top: 6.25vw;
}
@media screen and (max-width: 768px) {
  #olive-page .analysis__wrap {
    margin-top: 19.4871794872vw;
  }
}

#olive-page .contents01__wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  #olive-page .contents01__wrap {
    display: block;
  }
}

#olive-page .text__wrap {
  width: 37.5vw;
}
@media screen and (max-width: 768px) {
  #olive-page .text__wrap {
    width: 100%;
  }
}

#olive-page .contents01__title {
  font-size: 2.5vw;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #olive-page .contents01__title {
    font-size: 8.2051282051vw;
    line-height: 1.5;
  }
}

#olive-page .scent {
  font-size: 1.40625vw;
  font-weight: 700;
  line-height: 2;
  color: #fff;
  margin-top: 2.109375vw;
}
@media screen and (max-width: 768px) {
  #olive-page .scent {
    font-size: 4.6153846154vw;
    line-height: 2;
    margin-top: 3.0769230769vw;
  }
}

#olive-page .contents__text {
  font-size: 1.09375vw;
  font-weight: 700;
  line-height: 2;
  color: #fff;
  margin-top: 2.109375vw;
}
@media screen and (max-width: 768px) {
  #olive-page .contents__text {
    font-size: 3.5897435897vw;
    line-height: 2;
    margin-top: 3.0769230769vw;
  }
}

#olive-page .contents02__wrap .contents__text.first-item {
  margin-top: unset;
}

@media screen and (max-width: 768px) {
  #olive-page .contents02__wrap .contents__text.second-item {
    margin-top: 7.4358974359vw;
  }
}

#olive-page .contents01-img {
  width: 39.0625vw;
  margin-left: 4.6875vw;
}
@media screen and (max-width: 768px) {
  #olive-page .contents01-img {
    width: 100%;
    margin-left: unset;
    margin-top: 10.2564102564vw;
  }
}

#olive-page .contents02__wrap {
  display: flex;
  margin-top: 3.125vw;
}
@media screen and (max-width: 768px) {
  #olive-page .contents02__wrap {
    display: block;
    margin-top: 18.4615384615vw;
  }
}

#olive-page .contents02-img {
  width: 39.0625vw;
  margin-left: 4.6875vw;
}
@media screen and (max-width: 768px) {
  #olive-page .contents02-img {
    width: 100%;
    margin-left: unset;
    margin-top: 9.2307692308vw;
  }
}

#olive-page .olive-origin {
  margin-top: 12.5vw;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-origin {
    margin-top: 20.5128205128vw;
    padding: 0 5.1282051282vw;
  }
}

#olive-page .olive-origin__title {
  font-size: 4.6875vw;
  font-weight: 700;
  line-height: 1.5;
  color: #c7c32d;
  margin-left: 33.75vw;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-origin__title {
    font-size: 7.6923076923vw;
    line-height: 1.6;
    margin-left: unset;
    text-align: center;
  }
}

#olive-page .olive-origin__text {
  font-size: 1.40625vw;
  font-weight: 700;
  line-height: 2;
  color: #c7c32d;
  width: 50vw;
  margin: 0 auto;
  margin-top: 2.109375vw;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-origin__text {
    font-size: 4.6153846154vw;
    line-height: 2;
    margin-top: 8.2051282051vw;
    width: 100%;
  }
}

#olive-page .olive-origin__img {
  padding-top: 6.25vw;
  width: 81.25vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-origin__img {
    padding-top: 8.2051282051vw;
    width: 89.7435897436vw;
  }
}

#olive-page .olive-product__wrap {
  display: flex;
  margin-top: 12.5vw;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-product__wrap {
    display: block;
    margin-top: 20.5128205128vw;
  }
}

#olive-page .olive-product__img {
  width: 35.15625vw;
  height: 45.3125vw;
  background-color: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-product__img {
    width: 89.7435897436vw;
    height: 101.7948717949vw;
    margin: 0 auto;
  }
}

#olive-page .olive-product__img img {
  width: 9.375vw;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-product__img img {
    width: 22.0512820513vw;
  }
}

#olive-page .olive-product__contents {
  width: 37.5vw;
  margin-left: 7.03125vw;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-product__contents {
    width: 89.7435897436vw;
    margin-left: unset;
    margin: 0 auto;
    padding-top: 10.2564102564vw;
  }
}

#olive-page .olive-product__name {
  font-size: 2.5vw;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.5;
  color: #c7c42d;
}
@media screen and (max-width: 768px) {
  #olive-page .olive-product__name {
    font-size: 8.2051282051vw;
    line-height: 1.5;
  }
}

#olive-page .product-item__price {
  font-size: 1.875vw;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 2;
  margin-top: 2.109375vw;
}
@media screen and (max-width: 768px) {
  #olive-page .product-item__price {
    font-size: 4.6153846154vw;
    line-height: 2;
    margin-top: 4.1025641026vw;
  }
}

#olive-page .space {
  margin-left: 3.90625vw;
}
@media screen and (max-width: 768px) {
  #olive-page .space {
    margin-left: 8.7179487179vw;
  }
}

#olive-page .olive__list {
  margin-top: 2.109375vw;
}
@media screen and (max-width: 768px) {
  #olive-page .olive__list {
    margin-top: 5.3846153846vw;
  }
}

#olive-page .olive__item {
  font-size: 1.40625vw;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #olive-page .olive__item {
    font-size: 3.5897435897vw;
    line-height: 2;
  }
}

#olive-page .olive__item .space {
  margin-left: 7.1875vw;
}
@media screen and (max-width: 768px) {
  #olive-page .olive__item .space {
    margin-left: 17.1794871795vw;
  }
}

.olive-page .footer {
  background-color: #c7c32d;
}

.olive-page .copyright {
  color: #fff;
}

#ooseto.ooseto {
  margin-top: 11.71875vw;
  padding-bottom: 9.375vw;
}
@media screen and (max-width: 768px) {
  #ooseto.ooseto {
    margin-top: 25.641025641vw;
    padding-bottom: 20.5128205128vw;
  }
}

#ooseto .mv__wrap {
  position: relative;
  max-width: 93.75vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #ooseto .mv__wrap {
    max-width: 94.8717948718vw;
  }
}

@media screen and (max-width: 768px) {
  #ooseto .ooseto__mv {
    margin-top: 5.8974358974vw;
  }
}

#ooseto .mv-title {
  position: absolute;
  top: 5.15625vw;
  left: 6.25vw;
  font-size: 7.03125vw;
  font-weight: 700;
  text-align: center;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #ooseto .mv-title {
    position: unset;
    color: #2042a5;
    font-size: 12.3076923077vw;
  }
}

#ooseto .mv-title .size {
  font-size: 4.6875vw;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #ooseto .mv-title .size {
    font-size: 9.2307692308vw;
    line-height: 1.6666666667;
  }
}

#ooseto .mv-title .font {
  font-family: 'EB Garamond', serif;
  font-weight: 500;
  font-style: italic;
}

#ooseto .ooseto-heading__wrap {
  margin-top: 8.125vw;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto-heading__wrap {
    margin-top: 10.2564102564vw;
  }
}

#ooseto .ooseto-heading__title {
  font-size: 7.03125vw;
  font-weight: 700;
  line-height: 1.3333333333;
  text-align: center;
  color: #1ab9f4;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto-heading__title {
    font-size: 13.8461538462vw;
    line-height: 1.3333333333;
  }
}

#ooseto .ooseto-heading__title .size {
  font-size: 4.6875vw;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto-heading__title .size {
    font-size: 7.6923076923vw;
  }
}

#ooseto .ooseto-heading__text {
  width: 62.5vw;
  margin: 0 auto;
  font-size: 1.875vw;
  font-weight: 700;
  line-height: 2;
  margin-top: 3.125vw;
  color: #1ab9f4;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto-heading__text {
    width: 100%;
    padding: 0 5.1282051282vw;
    margin-top: 4.1025641026vw;
    font-size: 4.6153846154vw;
    line-height: 2;
  }
}

#ooseto .ooseto-contents__wrapper {
  margin-top: 11.484375vw;
  display: flex;
  margin-left: 9.765625vw;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto-contents__wrapper {
    margin-top: 18.4615384615vw;
    display: block;
    margin-left: unset;
    padding: 0 5.1282051282vw;
  }
}

#ooseto .ooseto-contents__wrap {
  width: 50vw;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto-contents__wrap {
    width: 100%;
  }
}

#ooseto .ooseto-contents__title {
  font-size: 4.6875vw;
  font-weight: 700;
  line-height: 1.5;
  color: #1ab9f4;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto-contents__title {
    font-size: 7.6923076923vw;
    line-height: 1.6;
  }
}

#ooseto .ooseto-contents__text {
  font-size: 1.40625vw;
  font-weight: 700;
  line-height: 2;
  margin-top: 3.125vw;
  color: #1ab9f4;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto-contents__text {
    font-size: 4.6153846154vw;
    line-height: 2;
    margin-top: 8.2051282051vw;
  }
}

@media screen and (max-width: 768px) {
  #ooseto .ooseto-contents__text + .ooseto-contents__text {
    margin-top: 8.9743589744vw;
  }
}

#ooseto .ooseto-contents_img {
  width: 12.5vw;
  margin-left: 10.9375vw;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto-contents_img {
    width: 25.641025641vw;
    margin-left: unset;
    padding-top: 10.2564102564vw;
    margin: 0 auto;
  }
}

#ooseto .pairing {
  margin-top: 8.671875vw;
}
@media screen and (max-width: 768px) {
  #ooseto .pairing {
    margin-top: 18.2051282051vw;
  }
}

#ooseto .pairing__inner {
  padding: 4.6875vw 6.25vw 6.25vw;
  background-color: #2042a5;
  border-radius: 1.5625vw;
  max-width: 93.75vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #ooseto .pairing__inner {
    padding: 8.7179487179vw 5.1282051282vw 10.2564102564vw;
    border-radius: 5.1282051282vw;
    max-width: 94.8717948718vw;
  }
}

#ooseto .pairing__title {
  font-size: 4.6875vw;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #ooseto .pairing__title {
    font-size: 11.5384615385vw;
    line-height: 1.6;
  }
}

#ooseto .pairing__text {
  font-size: 1.40625vw;
  font-weight: 700;
  line-height: 2;
  color: #fff;
  text-align: center;
  margin-top: 3.125vw;
}
@media screen and (max-width: 768px) {
  #ooseto .pairing__text {
    font-size: 3.5897435897vw;
    line-height: 2;
    margin-top: 7.1794871795vw;
  }
}

#ooseto .tab {
  margin-top: 5.234375vw;
  display: flex;
}
@media screen and (max-width: 768px) {
  #ooseto .tab {
    display: block;
    margin-top: 10.2564102564vw;
  }
}

#ooseto .tab__list {
  width: 28.125vw;
  padding-bottom: 3.203125vw;
}
@media screen and (max-width: 768px) {
  #ooseto .tab__list {
    width: 100%;
  }
}

#ooseto .tab__button {
  font-size: 1.40625vw;
  font-weight: 700;
  width: 28.125vw;
  height: 4.6875vw;
  border: 0.078125vw solid #fff;
  border-radius: 2.34375vw;
  color: #fff;
  text-align: left;
  padding: 0 1.5625vw;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #ooseto .tab__button {
    font-size: 4.1025641026vw;
    width: 100%;
    height: 15.3846153846vw;
    border: 0.2564102564vw solid #fff;
    border-radius: 7.6923076923vw;
    padding: 0 3.8461538462vw;
  }
}

#ooseto .tab__button .size {
  font-size: 1.09375vw;
  font-weight: 700;
  line-height: 3.4285714286;
  display: inline-block;
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  #ooseto .tab__button .size {
    font-size: 3.5897435897vw;
    line-height: 3.4285714286;
  }
}

#ooseto .tab__button + .tab__button {
  margin-top: 1.5625vw;
}
@media screen and (max-width: 768px) {
  #ooseto .tab__button + .tab__button {
    margin-top: 5.1282051282vw;
  }
}

#ooseto .tab__button.is-active {
  background-color: #fff;
  color: #2042a5;
}

#ooseto .tab__content {
  width: 46.875vw;
  margin-left: 6.25vw;
  background-color: #fff;
  padding: 3.125vw;
  border-radius: 1.5625vw;
  display: none;
}
@media screen and (max-width: 768px) {
  #ooseto .tab__content {
    margin-top: 6.1538461538vw;
    width: 100%;
    padding: 6.1538461538vw 3.8461538462vw 5.1282051282vw;
    border-radius: 5.1282051282vw;
    margin-left: unset;
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  #ooseto .tab__content + .tab__content {
    margin-top: 9.4871794872vw;
  }
}

#ooseto .tab__content.is-active {
  display: block;
}

#ooseto .tab__name {
  font-size: 2.5vw;
  font-weight: 700;
  line-height: 1.5;
  color: #2042a5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #ooseto .tab__name {
    font-size: 8.2051282051vw;
    line-height: 1.125;
  }
}

#ooseto .tab__name .size {
  font-size: 1.40625vw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #ooseto .tab__name .size {
    font-size: 4.6153846154vw;
  }
}

#ooseto .tab__name .size.sp {
  font-size: 2.5vw;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #ooseto .tab__name .size.sp {
    font-size: 4.6153846154vw;
  }
}

#ooseto .tab__img {
  width: 40.625vw;
  margin: 0 auto;
  margin-top: 3.125vw;
}
@media screen and (max-width: 768px) {
  #ooseto .tab__img {
    width: 76.9230769231vw;
    margin-top: 6.9230769231vw;
  }
}

#ooseto .tab__caption {
  margin-top: 1.5625vw;
  font-size: 1.25vw;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #ooseto .tab__caption {
    margin-top: 5.1282051282vw;
    font-size: 3.5897435897vw;
  }
}

#ooseto .ooseto-product__wrap {
  padding-top: 12.5vw;
  display: flex;
  justify-content: center;
  max-width: 79.6875vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto-product__wrap {
    max-width: unset;
    padding: 20.5128205128vw 5.1282051282vw 0;
    display: block;
  }
}

#ooseto .ooseto-product__img {
  width: 35.15625vw;
  height: 45.3125vw;
  background-color: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto-product__img {
    width: 89.7435897436vw;
    height: 101.7948717949vw;
  }
}

#ooseto .ooseto-product__img img {
  width: 9.375vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto-product__img img {
    width: 21.5384615385vw;
  }
}

#ooseto .ooseto-product__contents {
  width: 37.5vw;
  margin-left: 7.03125vw;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto-product__contents {
    width: 100%;
    margin-left: unset;
    margin-top: 10.2564102564vw;
  }
}

#ooseto .ooseto-product__name {
  font-size: 2.5vw;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.5;
  color: #1ab9f4;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto-product__name {
    font-size: 8.2051282051vw;
    line-height: 1.5;
  }
}

#ooseto .product-item__price {
  font-size: 1.875vw;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 2;
  margin-top: 2.96875vw;
}
@media screen and (max-width: 768px) {
  #ooseto .product-item__price {
    font-size: 4.6153846154vw;
    line-height: 2;
    margin-top: 3.0769230769vw;
  }
}

#ooseto .space {
  margin-left: 3.75vw;
}
@media screen and (max-width: 768px) {
  #ooseto .space {
    margin-left: 9.2307692308vw;
  }
}

#ooseto .ooseto__list {
  margin-top: 2.109375vw;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto__list {
    margin-top: 5.3846153846vw;
  }
}

#ooseto .ooseto__item {
  font-size: 1.40625vw;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #ooseto .ooseto__item {
    font-size: 3.5897435897vw;
    line-height: 2;
  }
}

.ooseto-page .footer {
  background-color: #1ab9f4;
}

.ooseto-page .copyright {
  color: #fff;
}

#company.company {
  margin-top: 11.71875vw;
  padding-bottom: 11.71875vw;
}
@media screen and (max-width: 768px) {
  #company.company {
    margin-top: 25.641025641vw;
    padding-bottom: 20.5128205128vw;
  }
}

#company .company__inner {
  padding-top: 1.171875vw;
}
@media screen and (max-width: 768px) {
  #company .company__inner {
    padding-top: 5.1282051282vw;
  }
}

#company .company-title {
  font-size: 3.75vw;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 2.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #company .company-title {
    font-size: 9.2307692308vw;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
}

#company .company__mv {
  padding-top: 4.21875vw;
  width: 81.25vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #company .company__mv {
    padding-top: 10.2564102564vw;
    width: 89.7435897436vw;
  }
}

#company .company-sub {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #company .company-sub {
    margin-top: 40px;
  }
}

#company .company-sub_en {
  font-size: 18px;
  color: #fc496b;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
  font-family: 'Barlow', sans-serif;
}
@media screen and (max-width: 768px) {
  #company .company-sub_en {
    font-size: 14px;
  }
}

#company .company-sub_jp {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #company .company-sub_jp {
    font-size: 24px;
  }
}

#company .company-data__wrap {
  padding-top: 6.25vw;
}
@media screen and (max-width: 768px) {
  #company .company-data__wrap {
    padding-top: 10.2564102564vw;
  }
}

#company .company-data__wrap dl {
  width: 100%;
  max-width: 62.5vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #company .company-data__wrap dl {
    max-width: unset;
    padding: 0 5.1282051282vw;
  }
}

#company .company-data__wrap .row {
  display: flex;
  padding: 2.109375vw 4.84375vw 2.109375vw 3.125vw;
}
@media screen and (max-width: 768px) {
  #company .company-data__wrap .row {
    padding: 5.641025641vw 5.1282051282vw 4.6153846154vw 5.1282051282vw;
  }
}

#company .company-data__wrap .row.margin {
  padding: 1.953125vw 4.84375vw 1.953125vw 3.125vw;
}
@media screen and (max-width: 768px) {
  #company .company-data__wrap .row.margin {
    padding: 5.1282051282vw 5.1282051282vw 5.3846153846vw 5.1282051282vw;
  }
}

#company .company-data__wrap .row:nth-child(odd) {
  background-color: #f7f7f7;
}

#company .company-data__wrap dt {
  font-size: 1.40625vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7777777778;
  text-align: left;
  display: flex;
  align-items: flex-start;
  width: 10.9375vw;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #company .company-data__wrap dt {
    font-size: 3.5897435897vw;
    line-height: 2;
    width: 25.641025641vw;
  }
}

#company .company-data__wrap dd {
  font-size: 1.40625vw;
  font-weight: 400;
  line-height: 1.7777777778;
  width: 43.59375vw;
}
@media screen and (max-width: 768px) {
  #company .company-data__wrap dd {
    font-size: 3.5897435897vw;
    line-height: 2;
    width: 53.8461538462vw;
  }
}

#company .company-data__wrap .row.margin .br {
  margin-left: 4.140625vw;
}

.award__wrap {
  display: flex;
  justify-content: center;
  margin-top: 6.25vw;
}
@media screen and (max-width: 768px) {
  .award__wrap {
    display: block;
    margin-top: 19.7435897436vw;
  }
}

.award-title {
  font-size: 3.75vw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .award-title {
    font-size: 9.2307692308vw;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: center;
  }
}

.award-table__inner {
  margin-left: 2.8125vw;
}
@media screen and (max-width: 768px) {
  .award-table__inner {
    margin-left: unset;
  }
}

.award__wrap dl {
  max-width: 48.4375vw;
}
@media screen and (max-width: 768px) {
  .award__wrap dl {
    max-width: unset;
    padding: 0 5.1282051282vw;
    margin-top: 10.2564102564vw;
  }
}

.award__wrap .row {
  display: flex;
  padding: 1.09375vw 3.125vw 1.09375vw 1.5625vw;
}
@media screen and (max-width: 768px) {
  .award__wrap .row {
    display: block;
    padding: 3.5897435897vw 5.1282051282vw 5.1282051282vw;
  }
}

.award__wrap .row:nth-child(odd) {
  background-color: #f7f7f7;
}

.award__wrap dt {
  width: 12.5vw;
  font-size: 1.09375vw;
  font-weight: 700;
  line-height: 1.7142857143;
}
@media screen and (max-width: 768px) {
  .award__wrap dt {
    width: unset;
    font-size: 3.5897435897vw;
    line-height: 1.7142857143;
  }
}

.award__wrap dd {
  max-width: 31.25vw;
  font-size: 1.09375vw;
  font-weight: 400;
  line-height: 1.7142857143;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .award__wrap dd {
    max-width: unset;
    font-size: 3.5897435897vw;
    line-height: 1.7142857143;
    margin-top: 2.5641025641vw;
  }
}

.history-data__wrap {
  display: flex;
  justify-content: center;
  margin-top: 6.25vw;
}
@media screen and (max-width: 768px) {
  .history-data__wrap {
    display: block;
    text-align: center;
    margin-top: 20.5128205128vw;
  }
}

.history-data__title {
  font-size: 3.75vw;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .history-data__title {
    font-size: 9.2307692308vw;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
}

.history-data__table {
  margin-left: 4.765625vw;
}
@media screen and (max-width: 768px) {
  .history-data__table {
    margin-left: unset;
    margin-top: 10.2564102564vw;
  }
}

.history-data__wrap dl {
  max-width: 48.4375vw;
}
@media screen and (max-width: 768px) {
  .history-data__wrap dl {
    max-width: unset;
    padding: 0 5.1282051282vw;
  }
}

.history-data__wrap .row {
  display: flex;
  padding: 0.859375vw 2.109375vw 0.859375vw 3.125vw;
}
@media screen and (max-width: 768px) {
  .history-data__wrap .row {
    padding: 3.8461538462vw 5.1282051282vw 4.6153846154vw 5.1282051282vw;
  }
}

.history-data__wrap .row:nth-child(odd) {
  background-color: #f7f7f7;
}

.history-data__wrap dt {
  width: 10.9375vw;
  font-size: 1.09375vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .history-data__wrap dt {
    width: 15.3846153846vw;
    font-size: 3.5897435897vw;
    line-height: 1.7142857143;
    letter-spacing: unset;
    text-align: left;
  }
}

.history-data__wrap dd {
  width: 32.265625vw;
  font-size: 1.09375vw;
  font-weight: 400;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .history-data__wrap dd {
    width: 64.1025641026vw;
    font-size: 3.5897435897vw;
    line-height: 1.7142857143;
    text-align: left;
  }
}

.history-data__wrap dd + dd {
  margin-top: 1.171875vw;
}

.fate__wrap {
  display: flex;
  justify-content: center;
  margin-top: 6.25vw;
}
@media screen and (max-width: 768px) {
  .fate__wrap {
    margin-top: 20.5128205128vw;
    display: block;
  }
}

.fate__title {
  font-size: 3.75vw;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .fate__title {
    font-size: 9.2307692308vw;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: center;
  }
}

.fate__table {
  margin-left: 5.78125vw;
}
@media screen and (max-width: 768px) {
  .fate__table {
    margin-left: unset;
    margin-top: 10.2564102564vw;
  }
}

.fate__wrap dl {
  max-width: 48.4375vw;
}
@media screen and (max-width: 768px) {
  .fate__wrap dl {
    max-width: unset;
    padding: 0 5.1282051282vw;
  }
}

.fate__wrap .row {
  display: flex;
  padding: 0.78125vw 1.5625vw;
}
@media screen and (max-width: 768px) {
  .fate__wrap .row {
    display: block;
    padding: 3.8461538462vw 5.1282051282vw;
  }
}

.fate__wrap .row:nth-child(odd) {
  background-color: #f7f7f7;
}

.fate__wrap dt {
  width: 15.625vw;
  font-size: 1.09375vw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .fate__wrap dt {
    width: unset;
    font-size: 3.5897435897vw;
    line-height: 1.7142857143;
  }
}

.fate__wrap dd {
  width: 32.265625vw;
  font-size: 1.09375vw;
  font-weight: 400;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .fate__wrap dd {
    width: unset;
    font-size: 3.5897435897vw;
    line-height: 1.7142857143;
    margin-top: 1.5384615385vw;
  }
}

.fate__wrap .fate__link {
  color: #000;
}

#news-page.news-page {
  margin-top: 11.71875vw;
  padding-bottom: 11.328125vw;
}
@media screen and (max-width: 768px) {
  #news-page.news-page {
    margin-top: 25.641025641vw;
    padding-bottom: 17.9487179487vw;
  }
}

#news-page .news-page__inner {
  padding-top: 1.09375vw;
}
@media screen and (max-width: 768px) {
  #news-page .news-page__inner {
    padding-top: 5.1282051282vw;
  }
}

#news-page .news-page__title {
  font-size: 3.75vw;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 2.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #news-page .news-page__title {
    font-size: 9.2307692308vw;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
}

#news-page .news-items {
  padding-top: 4.0625vw;
}
@media screen and (max-width: 768px) {
  #news-page .news-items {
    padding-top: 10.2564102564vw;
    padding-left: 5.1282051282vw;
    padding-right: 5.1282051282vw;
  }
}

#news-page .news__date {
  letter-spacing: 0.025em;
}

#news-page .news-item__contents {
  margin-left: 4.6875vw;
}
@media screen and (max-width: 768px) {
  #news-page .news-item__contents {
    margin-left: unset;
  }
}

.pagination {
  margin-top: 4.6875vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 10.2564102564vw;
  }
}

.pagination__list {
  display: inline-flex;
  gap: 1.171875vw;
}
@media screen and (max-width: 768px) {
  .pagination__list {
    gap: 3.8461538462vw;
  }
}

.pagination__link {
  display: inline-block;
  width: 1.5625vw;
  height: 2.890625vw;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.025em;
  color: #000;
  font-weight: bold;
  font-size: 1.40625vw;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
}
@media screen and (max-width: 768px) {
  .pagination__link {
    font-size: 4.6153846154vw;
    width: 5.1282051282vw;
    height: 8.2051282051vw;
  }
}

.pagination__link.is-current {
  border-bottom: 0.390625vw solid #fba1b3;
}
@media screen and (max-width: 768px) {
  .pagination__link.is-current {
    border-bottom: 1.2820512821vw solid #fba1b3;
  }
}

#news-detail.news-detail {
  margin-top: 11.71875vw;
  padding-bottom: 12.5vw;
}
@media screen and (max-width: 768px) {
  #news-detail.news-detail {
    margin-top: 25.641025641vw;
    padding-bottom: 20.5128205128vw;
  }
}

#news-detail .news.inner {
  padding-top: 2.96875vw;
  max-width: 62.5vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #news-detail .news.inner {
    padding-top: 3.0769230769vw;
    max-width: unset;
    padding-left: 5.1282051282vw;
    padding-right: 5.1282051282vw;
  }
}

#news-detail .news__date {
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  #news-detail .news__date {
    line-height: 2.5714285714;
  }
}

#news-detail .news__title {
  margin-top: -1.40625vw;
  font-size: 3.75vw;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #news-detail .news__title {
    margin-top: 0.5128205128vw;
    font-size: 9.2307692308vw;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-left: unset;
  }
}

#news-detail .news-article__img {
  margin-top: 1.09375vw;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #news-detail .news-article__img {
    margin-top: 10.2564102564vw;
  }
}

#news-detail .news-text__wrap {
  margin-top: 3.125vw;
}
@media screen and (max-width: 768px) {
  #news-detail .news-text__wrap {
    margin-top: 9.2307692308vw;
  }
}

#news-detail .news__text {
  letter-spacing: 0.025em;
  line-height: 1.7142857143;
}

#news-detail .news__text + .news__text {
  margin-top: 1.953125vw;
}
@media screen and (max-width: 768px) {
  #news-detail .news__text + .news__text {
    margin-top: 5.8974358974vw;
  }
}

#news-detail .news__nav {
  margin-top: 3.125vw;
  border-top: 0.078125vw solid #a8a8a8;
  padding-top: 3.125vw;
  display: flex;
  justify-content: center;
  font-size: 1.09375vw;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
}
@media screen and (max-width: 768px) {
  #news-detail .news__nav {
    margin-top: 10.2564102564vw;
    border-top: 0.2564102564vw solid #a8a8a8;
    padding-top: 5.1282051282vw;
    font-size: 3.5897435897vw;
  }
}

#news-detail .news__prev {
  position: relative;
  color: #000;
  padding-left: 1.328125vw;
}
@media screen and (max-width: 768px) {
  #news-detail .news__prev {
    padding-left: 3.8461538462vw;
  }
}

#news-detail .news__prev::before {
  position: absolute;
  content: '';
  background-image: url(../../assets/img//prev-icon.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.390625vw;
  height: 0.78125vw;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  #news-detail .news__prev::before {
    width: 1.2820512821vw;
    height: 2.5641025641vw;
  }
}

#news-detail .news__back {
  color: #000;
  margin-left: -2.8125vw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #news-detail .news__back {
    margin-left: -8.7179487179vw;
  }
}

#news-detail .news__next {
  position: relative;
  color: #000;
  padding-right: 1.328125vw;
}
@media screen and (max-width: 768px) {
  #news-detail .news__next {
    padding-right: 3.8461538462vw;
  }
}

#news-detail .news__next::before {
  position: absolute;
  content: '';
  background-image: url(../../assets/img//next-icon.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.390625vw;
  height: 0.78125vw;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 768px) {
  #news-detail .news__next::before {
    width: 1.2820512821vw;
    height: 2.5641025641vw;
  }
}

#news-detail .sign {
  position: relative;
  top: -0.15625vw;
}

.contact {
  margin-top: 11.71875vw;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-top: 25.641025641vw;
  }
}

.contact__inner {
  padding-top: 1.09375vw;
  padding-bottom: 12.5vw;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding-top: 5.1282051282vw;
    padding-bottom: 20.5128205128vw;
  }
}

.contact__title {
  font-size: 3.75vw;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 2.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 9.2307692308vw;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
}

.form {
  max-width: 62.5vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .form {
    max-width: unset;
    padding: 0 5.1282051282vw;
  }
}

.form__list {
  margin-top: 4.21875vw;
}
@media screen and (max-width: 768px) {
  .form__list {
    margin-top: 5.641025641vw;
  }
}

.form__field + .form__field,
.form__acceptance {
  margin-top: 2.109375vw;
}
@media screen and (max-width: 768px) {
  .form__field + .form__field,
  .form__acceptance {
    margin-top: 6.1538461538vw;
  }
}

.form__field.acceptance {
  margin-top: unset;
}

.form__label {
  font-size: 1.40625vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7777777778;
}
@media screen and (max-width: 768px) {
  .form__label {
    font-size: 3.5897435897vw;
    line-height: 2.2857142857;
  }
}

.form__required {
  color: #ff0000;
  font-size: 1.40625vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7777777778;
  margin-left: 0.390625vw;
}
@media screen and (max-width: 768px) {
  .form__required {
    font-size: 3.5897435897vw;
    line-height: 2.2857142857;
    margin-left: 1.2820512821vw;
  }
}

.form__input,
.form__select,
.form__textarea {
  font-size: 1.40625vw;
  font-weight: 400;
  width: 100%;
  padding: 1.328125vw 1.5625vw;
  border-radius: 0.3125vw;
  background-color: #f7f7f7;
}
@media screen and (max-width: 768px) {
  .form__input,
  .form__select,
  .form__textarea {
    font-size: 3.5897435897vw;
    padding: 5.1282051282vw;
    border-radius: 1.0256410256vw;
  }
}

.form__textarea {
  height: 25vw;
  padding: 3.125vw;
  resize: none;
}
@media screen and (max-width: 768px) {
  .form__textarea {
    height: 89.7435897436vw;
    padding: 5.1282051282vw;
  }
}

.form__data-wrap {
  margin-top: 0.78125vw;
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}
@media screen and (max-width: 768px) {
  .form__data-wrap {
    margin-top: 2.5641025641vw;
    gap: 5.1282051282vw;
  }
}

.form__data-group-row {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}
@media screen and (max-width: 768px) {
  .form__data-group-row {
    flex-direction: row;
    align-items: flex-end;
    gap: 5.1282051282vw;
  }
  .form__data-group-row .form__data-group {
    flex: 1;
  }
  .form__data-group-row .form__input--zip {
    max-width: 25.641025641vw;
  }
  .form__data-group-row .prefectures {
    max-width: 39.7435897436vw;
  }
}

.form__data-group {
  display: flex;
  align-items: center;
}
.form__data-group .form__zip-text {
  margin-right: 1.328125vw;
  font-size: 1.40625vw;
  font-family: 'Barlow', sans-serif;
}
@media screen and (max-width: 768px) {
  .form__data-group .form__zip-text {
    font-size: 4.6153846154vw;
    margin-right: 3.0769230769vw;
  }
}
.form__data-group .form__input--zip {
  max-width: 9.375vw;
}
@media screen and (max-width: 768px) {
  .form__data-group .form__input--zip {
    max-width: 25.641025641vw;
  }
}
.form__data-group select,
.form__data-group input {
  flex: 1;
}

.form__data-group.prefectures {
  position: relative;
  max-width: 12.109375vw;
}
@media screen and (max-width: 768px) {
  .form__data-group.prefectures {
    max-width: 39.7435897436vw;
    margin-right: 15.3846153846vw;
  }
}

.form__data-group.prefectures::after {
  position: absolute;
  top: 46%;
  right: 4.5625vw;
  width: 0.625vw;
  height: 0.625vw;
  content: '';
  transform: translateY(-50%) rotate(135deg);
  border-top: solid 0.15625vw #000;
  border-right: solid 0.15625vw #000;
}
@media screen and (max-width: 768px) {
  .form__data-group.prefectures::after {
    right: 11.1282051282vw;
    width: 2.0512820513vw;
    height: 2.0512820513vw;
    border-top: solid 0.5128205128vw #000;
    border-right: solid 0.5128205128vw #000;
  }
}

.form__select {
  padding-right: 35px;
}

.form__data,
.form__data-select,
.form__data-check {
  margin-top: 0.78125vw;
}
@media screen and (max-width: 768px) {
  .form__data,
  .form__data-select,
  .form__data-check {
    margin-top: 2.5641025641vw;
  }
}

.choices__inner {
  border: unset;
  padding: unset;
}

.choices__list--single {
  padding: 1.328125vw 1.5625vw;
}
@media screen and (max-width: 768px) {
  .choices__list--single {
    padding: 4.6153846154vw 5.1282051282vw;
  }
}

.choices[data-type*='select-one'] {
  width: 100%;
}

.choices[data-type*='select-one']::after {
  position: unset;
  display: none;
}

.choices__list--single .choices__item {
  font-size: 1.40625vw;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .choices__list--single .choices__item {
    font-size: 4.1025641026vw;
  }
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name='privacy'] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 2.34375vw;
  font-size: 1.09375vw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control-wrap[data-name='privacy'] .wpcf7-list-item-label {
    font-size: 3.5897435897vw;
    padding-left: 7.6923076923vw;
  }
}

.wpcf7-form-control-wrap[data-name='privacy'] .wpcf7-list-item-label::before {
  position: absolute;
  top: 0.546875vw;
  left: 0;
  width: 1.5625vw;
  height: 1.5625vw;
  content: '';
  border: 0.078125vw solid #000;
  border-radius: 0.3125vw;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control-wrap[data-name='privacy'] .wpcf7-list-item-label::before {
    top: 1.7948717949vw;
    width: 5.1282051282vw;
    height: 5.1282051282vw;
    border: 0.2564102564vw solid #000;
    border-radius: 1.0256410256vw;
  }
}

.wpcf7-form-control-wrap[data-name='privacy'] .wpcf7-list-item-label::after {
  position: absolute;
  top: 1.09375vw;
  left: 0.390625vw;
  width: 0.78125vw;
  height: 0.390625vw;
  content: '';
  transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 0.15625vw solid #000;
  border-left: 0.15625vw solid #000;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control-wrap[data-name='privacy'] .wpcf7-list-item-label::after {
    top: 3.5897435897vw;
    left: 1.2820512821vw;
    width: 2.5641025641vw;
    height: 1.2820512821vw;
    border-bottom: 0.5128205128vw solid #000;
    border-left: 0.5128205128vw solid #000;
  }
}

.form__checkbox:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.underline {
  border-bottom: 0.078125vw solid #000;
  color: #000;
}
@media screen and (max-width: 768px) {
  .underline {
    border-bottom: 0.2564102564vw solid #000;
  }
}

.form__submit-button {
  margin-top: 3.125vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form__submit-button {
    margin-top: 10.2564102564vw;
  }
}

.form__submit-input {
  display: inline-block;
  width: 14.0625vw;
  padding: 16px 20px;
  transition: opacity 0.3s;
  color: #000;
  border: 0.234375vw solid #000;
  font-size: 1.09375vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.form__submit-input:hover {
  transition: opacity 0.3s;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .form__submit-input {
    width: 46.1538461538vw;
    padding: 4.1025641026vw 15.3846153846vw;
    border: 0.7692307692vw solid #000;
    font-size: 3.5897435897vw;
  }
}

.form--submitted input:invalid,
.form--submitted textarea:invalid,
.form--submitted select:invalid {
  border: 0.078125vw solid #ff0000;
  background-color: #ffe5e5;
}
@media screen and (max-width: 768px) {
  .form--submitted input:invalid,
  .form--submitted textarea:invalid,
  .form--submitted select:invalid {
    border: 0.2564102564vw solid #ff0000;
  }
}

.form__error-message {
  display: none;
  margin-top: 0.390625vw;
  font-size: 0.859375vw;
  letter-spacing: 0.1em;
  color: #ff0000;
}
@media screen and (max-width: 768px) {
  .form__error-message {
    margin-top: 2.5641025641vw;
    font-size: 2.8205128205vw;
  }
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: max(1.25vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 4.5;
  color: #000;
  width: max(14.0625vw, 180px);
  height: max(4.6875vw, 60px);
  background-image: url(../../assets/img//bg_story01-btn.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: max(3.5897435897vw, 14px);
    line-height: 5.1428571429;
    width: max(35.8974358974vw, 140px);
    height: max(12.8205128205vw, 50px);
    background-image: url(../../assets/img//sp_bg_story01-btn.png);
  }
}

.section-title__wrap {
  padding-left: 7.8125vw;
}
@media screen and (max-width: 768px) {
  .section-title__wrap {
    padding-left: 5.1282051282vw;
  }
}

.section-title__label {
  font-size: 2.1875vw;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .section-title__label {
    font-size: 5.3846153846vw;
    line-height: 2;
  }
}

.section-title {
  font-size: 7.8125vw;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 11.5384615385vw;
    line-height: 1.3541666667;
    letter-spacing: 0.07em;
  }
}

.no-scroll {
  height: 100%;
  overflow: hidden;
}

@media (max-width: 1024px) and (min-width: 769px) {
  br.responsive-br {
    display: none;
  }
}
@media (max-width: 360px) {
  br.responsive-br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.age-confirm_overlay {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100001;
  display: none;
}
.age-confirm_img {
  display: block;
  width: 51px;
  height: 73px;
  margin: 40px auto 77px;
}
.age-confirm-modal {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.age-yes {
  font-size: 48px;
  font-weight: 700;
  width: 180px;
  background-color: #fc496b;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  padding: 53px 0;
  border-radius: 50%;
}
.age-no {
  font-size: 48px;
  font-weight: 700;
  width: 180px;
  background-color: #fc496b;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  padding: 53px 0;
  border-radius: 50%;
}
.age-confirm_pink {
  font-size: 18px;
  text-align: center;
  color: #fc496b;
  font-weight: bold;
  margin-bottom: 20px;
}
.age-confirm_en {
  font-size: 72px;
  font-family: 'Barlow', sans-serif;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
.age-confirm_bird {
  position: absolute;
  width: 50px;
  height: 71px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 42px;
}
@media screen and (max-width: 768px) {
  .age-confirm_img {
    margin: 30px auto 40px;
  }
  .age-yes {
    font-size: 8.205128205128204vw;
    width: 30.76923076923077vw;
    height: 30.76923076923077vw;
    padding: 0;
  }
  .age-no {
    font-size: 8.205128205128204vw;
    width: 30.76923076923077vw;
    height: 30.76923076923077vw;
    padding: 0;
  }
  .age-confirm_pink {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .age-confirm_en {
    font-size: 15.384615384615385vw;
    margin-bottom: 40px;
  }
}
