@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,200,300,400,500,600,700,800,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:100,200,300,400,500,600,700,800,900&display=swap");

@font-face {
  font-family: "DINC";
  src: url("../../fonts/DINCondensedC.woff2") format("woff2"),
    url("../../fonts/DINCondensedC.woff") format("woff");
}

:root {
  --black: #3e1d10;
  --blue: #0054a7;
  --darkblue: #043d75;
  --orange: #f39800;
  --yellow: #fedc5e;
  --water: #e6f3ff;
}

* {
  border: medium none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  list-style: none;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: var(--black);
  font-style: normal;
  box-sizing: border-box;
  line-height: 1.8em;
}

strong {
  font-weight: bold;
}
img {
  vertical-align: bottom;
}
table {
  border-collapse: collapse;
}

sup {
  font-size: 0.6em;
}

/* iOSでのデフォルトスタイルをリセット */
body {
  -webkit-text-size-adjust: 100%;
  background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0) 100%
    ),
    var(--blue);
}

body:has(header.navopen) {
  overflow-y: hidden;
}

input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

@media (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.nolink {
  pointer-events: none;
}

*::-webkit-scrollbar {
  width: 7px;
}
*::-webkit-scrollbar-track {
  background-color: #085563;
}
*::-webkit-scrollbar-thumb {
  background-color: #7ae4f7;
}

.scrollEffect {
  transition: 0.5s transform ease-out, 0.5s opacity ease-out;
  transform: translateY(50px);
  opacity: 0;
}

.scrollEffect.effectUp {
  transform: translateY(0px);
  opacity: 1;
}

header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
  padding-inline: 25px;
  z-index: 15;
  transition: 0.2s background-color ease-out;
}

header.bg_white {
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.09);
}

.headAixia__img {
  width: 85px;
}

.headLink {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}

.headLink__logo {
  width: 93px;
  margin-right: 25px;
  opacity: 0;
  position: relative;
  top: -3px;
  transition: 0.2s opacity ease-out;
}

header.bg_white .headLink__logo {
  opacity: 1;
}

.gnav {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}

.gnavLink {
  display: flex;
  flex-flow: wrap;
  height: 52px;
}

.gnavLink__content {
  padding-inline: 13px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  transition: 0.2s padding-inline ease-out;
}

.gnavLink__link {
  color: #fff;
  position: relative;
  padding-inline: 5px;
  transition: 0.2s color ease-out, 0.2s font-size ease-out;
}

.gnavSns {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  margin-left: 40px;
  transition: 0.2s margin-left ease-out;
}

.gnavSns__content:not(:first-child) {
  margin-left: 18px;
}

.gnavSns__link img {
  vertical-align: middle;
}

.gnavSns__insta {
  width: 28px;
}
.gnavSns__fb {
  width: 30px;
}
.gnavSns__x {
  width: 22px;
}

@media (min-width: 1121px) {
  .spBtn {
    display: none;
  }
  header.bg_white .gnavLink__content {
    padding-inline: 15px;
  }
  header.bg_white .gnavLink__link {
    color: var(--black);
    font-size: 14px;
  }
  .gnav {
    column-gap: 50px;
  }
  .gnavLink__link::after {
    content: "";
    display: block;
    width: 0px;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: 0.2s width ease-out;
    background-color: var(--black);
  }

  .gnavLink__link.current::after {
    width: 100%;
  }

  .bg_white .gnavLink__link.current,
  .bg_white .gnavLink__link:hover {
    color: #fff;
  }

  .gnavLink__link:hover::after {
    width: 100%;
  }
  header.bg_white .gnavSns {
    margin-left: 25px;
  }
}
@media (max-width: 1120px) {
  header {
    padding-right: 0px;
    justify-content: center;
    height: 52px;
    padding: 0;
  }
  header.navopen {
    background-color: #eef4f5;
  }
  header.navopen.bg_white {
    box-shadow: none;
  }
  .headAixia {
    position: absolute;
    left: 15px;
    top: 10px;
  }
  .headAixia__img {
    width: 50px;
  }
  .headLink__logo {
    opacity: 1;
    margin-right: 0px;
  }
  .gnav {
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: calc(100dvh - 52px);
    background-color: #eef4f5;
    flex-flow: column;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s opacity ease-out;
  }
  .gnav::after {
    content: "";
    display: block;
    width: 100%;
    height: 300px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: url(../images/dog.png) no-repeat center/contain;
  }
  .gnavLink {
    display: block;
    width: 100%;
    height: auto;
  }
  .gnavLink__content {
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .gnavLink__link {
    font-size: 18px;
    color: var(--black);
    display: block;
    padding: 15px;
    width: 100%;
    transition: 0.2s background-color ease-out;
  }
  .gnavLink__link::before {
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-right: 8px;
  }
  .gnavLink__link.current,
  .gnavLink__link:hover {
    background-color: #fff;
  }
  .gnav__cat {
    margin-top: 10px;
    align-self: self-end;
    display: inline-block;
    margin-right: 10px;
  }
  .gnav__cat::before {
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-size: 18px;
    font-weight: 600;
    color: #00afcc;
    margin-right: 8px;
  }
  .gnav__cat--img {
    width: 30vw;
    max-width: 130px;
  }
  .spBtn {
    width: 52px;
    height: 52px;
    background-color: var(--black);
    position: absolute;
    right: 0px;
    top: 0px;
    cursor: pointer;
    transition: 0.2s background-color ease-out;
  }
  .spBtn::before {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    left: 13px;
    top: 17px;
    background-color: #fff;
    box-shadow: 0px 8px 0px #fff;
    transition: 0.2s background-color ease-out, 0.2s box-shadow ease-out,
      0.2s transform ease-out;
  }
  .spBtn::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    left: 13px;
    bottom: 17px;
    background-color: #fff;
    transition: 0.2s background-color ease-out, 0.2s transform ease-out;
  }
  header.bg_white .spBtn,
  header.navopen .spBtn {
    background-color: transparent;
  }
  header.bg_white .spBtn::before,
  header.navopen .spBtn::before {
    background-color: var(--darkblue);
    box-shadow: 0px 8px 0px var(--darkblue);
  }
  header.bg_white .spBtn::after,
  header.navopen .spBtn::after {
    background-color: var(--darkblue);
  }
  header.navopen .spBtn::before {
    transform: rotate(45deg);
    box-shadow: 0px 8px 0px transparent;
    top: 25px;
  }
  header.navopen .spBtn::after {
    transform: rotate(-45deg);
    bottom: 25px;
  }
}

@media (max-height: 720px) {
  .gnav::after {
    height: calc(100dvh - 320px);
  }
}

.convFix {
  width: 168px;
  height: 54px;
  border-top-left-radius: 20px;
  background-color: #87cc00;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 10;
}

.convFix__img {
  width: 23px;
}

.convFix__txt {
  font-size: 15px;
  color: #fff;
}

.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__title {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-left: 45%;
  position: relative;
  z-index: 2;
}

.hero__title--img {
  max-width: 565px;
  width: 40vw;
  margin-bottom: 50px;
}

.hero__title--txt {
  color: #fff;
  font-size: 23px;
  letter-spacing: 0.15em;
  line-height: 2.4em;
  text-align: center;
}

.hero__title--txtYellow {
  color: var(--blue);
  font-size: 25px;
  letter-spacing: inherit;
  background-color: var(--orange);
  border-radius: 5px;
  line-height: 1em;
  padding: 5px 23px;
  display: inline-block;
  margin-inline: 8px;
}

.hero__dry {
  position: absolute;
  top: 10%;
  right: 2%;
  z-index: 2;
}

@keyframes scrollAnime {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero__scroll {
  position: fixed;
  bottom: 0px;
  left: 50%;
  height: 80px;
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  transition: 0.5s opacity ease-out;
}

.hero__scroll::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #fff;
  animation: scrollAnime 1.5s linear infinite;
}

.hero__scroll--txt {
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 10px;
  animation: scrollAnime 1.5s linear infinite;
}

.fadeOut .hero__scroll {
  opacity: 0;
}

.opening {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  z-index: 20;
  background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    var(--blue);
  transition: 0.8s opacity ease-out 3.2s, 0s visibility ease-out 4s,
    0.4s background-color ease-out 3.2s;
}

.openingImg {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  z-index: 21;
  transition: 0.8s opacity ease-out 3.2s, 0s visibility ease-out 4s;
}

.openingImg.dn {
  display: none;
}

body.loaded .opening {
  background-color: transparent;
}
body.loaded .opening,
body.loaded .openingImg {
  opacity: 0;
  visibility: hidden;
}

.opening__title {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-left: 45%;
  position: relative;
  z-index: 2;
}

.opening__title--img {
  max-width: 565px;
  width: 40vw;
  margin-bottom: 50px;
  opacity: 0;
  transition: 0.8s opacity ease-out 1.5s;
}

body.loaded .opening__title--img {
  opacity: 1;
}

.opening__title--txt {
  color: #fff;
  font-size: 23px;
  letter-spacing: 0.15em;
  line-height: 2.4em;
  text-align: center;
  opacity: 0;
  transition: 0.8s opacity ease-out 2s;
}

body.loaded .opening__title--txt {
  opacity: 1;
}

.opening__title--txtYellow {
  color: var(--blue);
  font-size: 25px;
  letter-spacing: inherit;
  background-color: var(--orange);
  border-radius: 5px;
  line-height: 1em;
  padding: 5px 23px;
  display: inline-block;
  margin-inline: 8px;
}

.opening__scroll {
  position: absolute;
  bottom: 0px;
  left: 50%;
  height: 80px;
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
}

.opening__scroll::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #fff;
}

.opening__scroll--txt {
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 10px;
}

.openingDish {
  position: absolute;
  left: 8%;
  top: 0px;
  width: 525px;
  z-index: 2;
  opacity: 0;
  transition: 0.8s opacity ease-out 0.4s;
}

body.loaded .openingDish {
  opacity: 1;
}

.openingCat {
  position: absolute;
  left: 12%;
  bottom: 0px;
  width: 380px;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s opacity ease-out 1s, 0.8s transform ease-out 1s;
}

body.loaded .openingCat {
  opacity: 1;
  transform: translateY(0px);
}

.topDish {
  position: fixed;
  left: 8%;
  top: 0px;
  width: 525px;
  z-index: 2;
  transition: 0.5s opacity ease-out, 0.5s transform ease-out;
}

.topCat {
  position: fixed;
  left: 12%;
  bottom: 0px;
  width: 380px;
  z-index: 2;
  transition: 0.5s opacity ease-out, 0.5s transform ease-out;
}

.fadeOut .topDish {
  opacity: 0;
  transform: translateY(-50px) scale(1.1);
}

.fadeOut .topCat {
  opacity: 0;
  transform: translateY(50px) scale(1.1);
}

@media (max-width: 1400px) {
  .hero__title--img,
  .opening__title--img {
    margin-bottom: 3.57vw;
  }
  .hero__title--txt,
  .opening__title--txt {
    font-size: 1.64vw;
  }
  .hero__title--txtYellow,
  .opening__title--txtYellow {
    font-size: 1.78vw;
    margin-inline: 0.571vw;
    padding: 0.357vw 1.64vw;
  }
  .topDish,
  .openingDish {
    width: 37.5vw;
  }
  .topCat,
  .openingCat {
    width: 27.14vw;
  }
  .hero__dry {
    width: 250px;
  }
}

@media (max-width: 767px) {
  .hero,
  .opening {
    justify-content: center;
  }
  .hero__title,
  .opening__title {
    margin-left: 0px;
  }
  @media (max-height: 780px) {
    .hero__title,
    .opening__title {
      top: -5vh;
    }
  }
  .hero__title--img,
  .opening__title--img {
    width: 306px;
    margin-bottom: 10px;
  }
  .hero__title--txt,
  .opening__title--txt {
    font-size: 13px;
  }
  .hero__title--txtYellow,
  .opening__title--txtYellow {
    font-size: 14px;
    margin-inline: 5px;
    padding: 3px 5px;
  }
  .topDish,
  .openingDish {
    max-width: 500px;
    width: 100%;
    left: calc(50% - 250px);
  }

  .topCat,
  .openingCat {
    max-width: 200px;
    width: 60%;
    left: calc(50% - 100px);
  }
  .hero__scroll {
    left: 20px;
  }
  .convFix {
    width: 55px;
  }
  .convFix__txt {
    display: none;
  }
}

@media (max-width: 510px) {
  .topDish,
  .openingDish {
    left: 0px;
  }
}

@media (max-width: 460px) {
  @media (max-height: 720px) {
    .hero__title,
    .opening__title {
      position: absolute;
      left: 16vw;
      top: 30vh;
    }
  }
  .hero__title--img,
  .opening__title--img {
    width: 66.52vw;
    margin-bottom: 2.17vw;
  }
  .hero__title--txt,
  .opening__title--txt {
    font-size: 2.82vw;
  }
  .hero__title--txtYellow,
  .opening__title--txtYellow {
    font-size: 3.04vw;
    margin-inline: 1.08vw;
    padding: 0.652vw 1.08vw;
  }
}

@media (max-width: 767px) and (max-height: 720px) {
  .openingDish,
  .topDish {
    max-width: none;
    width: 69.4dvh;
    left: calc(50% - 34.7dvh);
  }
  .openingCat,
  .topCat {
    width: auto;
    height: 35.97dvh;
    left: calc(50% - 14dvh);
  }
}

footer {
  background-color: #fff;
  padding: 0px 0px 50px;
}

.footSns {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.footSns__content:not(:first-child) {
  margin-left: 40px;
}

.footSns__imsta {
  width: 37px;
}

.footSns__fb {
  width: 37px;
}

.footSns__x {
  width: 35px;
}

.footLink {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.footLink__content:not(:first-child) {
  border-left: 1px solid #e3e3e3;
  margin-left: 26px;
  padding-left: 26px;
}

.footLink__link {
  font-size: 18px;
  letter-spacing: 0.05em;
}

.footLink__link::before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
  margin-right: 8px;
  position: relative;
  transition: all ease 0.1s;
}

.footLink__link:hover::before {
  right: -3px;
}

.footLink2 {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
  height: 80px;
  margin-bottom: 30px;
}

.footLink2__content {
  line-height: 1em;
}

.footLink2__content:not(:first-child) {
  border-left: 1px solid #fff;
  margin-left: 12px;
  padding-left: 12px;
}

.footLink2__link {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1em;
  vertical-align: top;
}

.footLink2__link:hover {
  text-decoration: underline;
}

.footBottom {
  max-width: 960px;
  width: 92%;
  margin-inline: auto;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
}

.footBottom__logo {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}

.footBottom__logo--img {
  width: 70px;
  margin-right: 10px;
}

.footBottom__logo--txt {
  font-size: 10px;
}

.footBottom__lineup {
  display: block;
  width: 210px;
  height: 30px;
  background-color: #ff0000;
  border-radius: 5px;
  font-size: 11px;
  color: #fff;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
  padding-inline: 10px;
}

.footBottom__lineup::after {
  content: "▶";
  color: #fff;
  font-size: 11px;
}

.footBottom__lineup:hover {
  background-color: #c50808;
}

.footBottom__copyright {
  font-size: 10px;
}

@media (max-width: 920px) {
  .footBottom {
    flex-flow: column;
  }
  .footBottom__logo {
    order: 1;
    margin-top: 10px;
  }
  .footBottom__copyright {
    margin-top: 10px;
    order: 2;
  }
}

@media (max-width: 767px) {
  footer {
    padding: 30px 0px;
  }
  .footSns__content:not(:first-child) {
    margin-left: 20px;
  }
  .footSns__content img {
    vertical-align: middle;
  }
  .footSns__imsta {
    width: 28px;
  }

  .footSns__fb {
    width: 30px;
  }

  .footSns__x {
    width: 22px;
  }
  .footLink {
    display: block;
    margin-bottom: 0px;
  }
  .footLink__content {
    border-top: 1px solid #e3e3e3;
  }
  .footLink__content:not(:first-child) {
    margin-left: 0px;
    padding-left: 0px;
  }
  .footLink__link {
    display: block;
    padding: 20px;
  }
  .footLink2__link {
    font-size: 12px;
  }
  .footBottom__logo--txt {
    font-size: 8px;
  }
  .footBottom__copyright {
    font-size: 8px;
  }
}

.about {
  padding: 100px 0px 30px;
  position: relative;
}

.about::after {
  content: url(../images/bg_01.svg);
  display: block;
  width: 100%;
  position: absolute;
  left: 0px;
  top: 200px;
}

.about__title {
  text-align: center;
  font-size: 40px;
  color: #fff;
  line-height: 1.5em;
  margin-bottom: 35px;
  text-shadow: 0px 1px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 2;
}

.about__title--yellow {
  font-size: inherit;
  color: var(--yellow);
  letter-spacing: inherit;
}

.about__title--ib {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.about__disc {
  font-size: 25px;
  letter-spacing: 0.05em;
  margin-bottom: 120px;
  text-align: center;
  color: #fff;
  text-shadow: 0px 1px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 2;
}

.about__disc--ib {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.aboutList {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  gap: 40px 16px;
}

.aboutList__content {
  max-width: 330px;
  margin-inline: 8px;
  background-color: #e4f9fc;
  box-shadow: 0px 3px 6px rgba(255, 255, 255, 0.16);
  padding: 30px 25px 10px;
  position: relative;
  opacity: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.aboutList__content.effectOn {
  opacity: 1;
}

@media (min-width: 768px) {
  .aboutList__content {
    transform: translateY(50px);
  }

  .aboutList__content.effectOn {
    transform: translateY(0px);
  }
}

@media (min-width: 1085px) {
  .aboutList__content:nth-of-type(3n + 1) {
    transition: 0.7s transform ease-out, 0.7s opacity ease-out;
  }
  .aboutList__content:nth-of-type(3n + 2) {
    transition: 0.7s transform ease-out 0.3s, 0.7s opacity ease-out 0.3s;
  }
  .aboutList__content:nth-of-type(3n + 3) {
    transition: 0.7s transform ease-out 0.6s, 0.7s opacity ease-out 0.6s;
  }
}
@media (max-width: 1080px) and (min-width: 768px) {
  .aboutList__content:nth-of-type(odd) {
    transition: 0.7s transform ease-out, 0.7s opacity ease-out;
  }
  .aboutList__content:nth-of-type(even) {
    transition: 0.7s transform ease-out 0.3s, 0.7s opacity ease-out 0.3s;
  }
}
@media (max-width: 767px) {
  .aboutList__content {
    transition: 0.7s transform ease-out, 0.7s opacity ease-out;
  }
  .aboutList__content:nth-of-type(odd) {
    transform: translateX(-50px);
  }
  .aboutList__content:nth-of-type(even) {
    transform: translateX(50px);
  }
  .aboutList__content.effectOn {
    transform: translateX(0px);
  }
}

.aboutList__case {
  position: absolute;
  top: -22px;
  left: 15px;
}

.aboutList__title {
  font-size: 20px;
  line-height: 1.5em;
  color: var(--darkblue);
  margin-bottom: 5px;
  width: 100%;
}

.aboutList__txt {
  font-size: 14px;
  line-height: 1.57em;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  flex-grow: 1;
}

.aboutList__img {
  display: block;
  margin: 0px auto 10px;
}

.aboutList__link {
  max-width: 226px;
  width: 100%;
  height: 44px;
  background-color: var(--darkblue);
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  margin-inline: auto;
  cursor: pointer;
  transition: 0.2s background-color ease-out;
}

.aboutList__link::after {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  margin-left: 8px;
}

.aboutList__link:hover {
  background-color: var(--deepDarkBlue);
}

@media (max-width: 767px) {
  .about::after {
    content: url(../images/bg_01_sp.svg);
  }
  .about__title {
    font-size: 24px;
  }
  .about__disc {
    font-size: 16px;
  }
  .aboutList {
    display: block;
    width: 100%;
  }
  .aboutList__content {
    margin-inline: 0px;
    background-color: transparent;
    width: 90%;
    max-width: none;
    cursor: pointer;
  }
  .aboutList__content:nth-of-type(odd) {
    padding: 30px 100px 0px 25px;
  }
  .aboutList__content:nth-of-type(even) {
    margin-left: 10%;
    padding: 30px 25px 0px 100px;
  }
  .aboutList__content:nth-of-type(n + 2) {
    margin-top: 70px;
  }
  .aboutList__content::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    width: 110%;
    height: 100%;
    background-color: var(--water);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    z-index: -1;
    transition: 0.2s background-color ease-out;
  }
  .aboutList__content:hover::before {
    background-color: #c4eff6;
  }
  .aboutList__content:nth-of-type(odd)::before {
    transform: skewX(-5deg);
    right: 0px;
  }
  .aboutList__content:nth-of-type(even)::before {
    transform: skewX(5deg);
    left: 0px;
  }
  .aboutList__title {
    width: 100%;
  }
  .aboutList__txt {
    margin-bottom: 20px;
  }
  .aboutList__img {
    position: absolute;
    top: 30px;
  }
  .aboutList__content:nth-of-type(odd) .aboutList__img {
    right: -30px;
  }
  .aboutList__content:nth-of-type(even) .aboutList__img {
    left: -30px;
  }
  .aboutList__link {
    position: relative;
    background-color: transparent;
  }
  .aboutList__link:hover {
    background-color: inherit;
  }
  .aboutList__link:hover::before {
    background-color: var(--deepDarkBlue);
  }
  .aboutList__content:nth-of-type(odd) .aboutList__link {
    margin: 0 0 0 -25px;
    margin-right: auto;
  }
  .aboutList__content:nth-of-type(even) .aboutList__link {
    margin: 0 -25px 0 0;
    margin-left: auto;
  }
  .aboutList__link,
  .aboutList__link:hover {
    background-color: none;
  }
  .aboutList__link::before {
    content: "";
    display: block;
    position: absolute;
    width: 110%;
    height: 100%;
    top: 0px;
    background-color: var(--darkblue);
    z-index: -1;
    transition: 0.2s background-color ease-out;
  }
  .aboutList__content:hover .aboutList__link::before {
    background-color: var(--deepDarkBlue);
  }
  .aboutList__content:nth-of-type(odd) .aboutList__link::before {
    right: 0px;
    transform: skewX(-5deg);
  }
  .aboutList__content:nth-of-type(even) .aboutList__link::before {
    left: 0px;
    transform: skewX(5deg);
  }
}

@media (max-width: 380px) {
  .aboutList__content:nth-of-type(odd) {
    padding-right: 80px;
  }
  .aboutList__content:nth-of-type(even) {
    padding-left: 80px;
  }
  .aboutList__title {
    font-size: 16px;
  }
  .aboutList__txt {
    font-size: 13px;
  }
  .aboutList__img {
    width: 100px;
  }
  .aboutList__link {
    font-size: 12px;
  }
  .aboutList__link::after {
    font-size: 12px;
    margin-left: 4px;
  }
}

.movie {
  padding-top: 50px;
  max-width: 1300px;
  width: 100%;
  margin: 50px auto 80px;
  position: relative;
}

.movie__wrap {
  max-width: 730px;
  width: 56%;
  margin: 0 auto;
}

.movie__youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie__youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.movie__circle--01 {
  position: absolute;
  top: 0px;
  left: 40px;
}
.movie__circle--02 {
  position: absolute;
  bottom: -10px;
  left: 10px;
}
.movie__circle--03 {
  position: absolute;
  top: 0px;
  right: 40px;
}
.movie__circle--04 {
  position: absolute;
  bottom: -10px;
  right: 10px;
}

@media (max-width: 1340px) {
  .movie {
    padding-top: 3.73vw;
  }
  .movie img {
    width: 16.86vw;
  }
}
@media (min-width: 768px) {
  .movieList {
    display: none;
  }
}
@media (max-width: 767px) {
  .movieList {
    width: 92%;
    margin: 0 auto 30px;
    padding-left: 20px;
  }
  .movieList__content {
    list-style: disc;
    color: #fff;
    font-size: 17px;
    letter-spacing: 0em;
  }
  .movieList__content:not(:first-child) {
    margin-top: 10px;
  }
  .movieList__content--yellow {
    font-size: 17px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0em;
    background-color: var(--yellow);
    padding-inline: 0.5em;
    margin-left: 0.3em;
    display: inline-block;
  }
  .movie img {
    display: none;
  }
  .movie__wrap {
    width: 92%;
  }
  .movie__border {
    display: flex;
    flex-flow: wrap;
    margin-top: 30px;
  }
  .movie__border::before {
    content: "";
    display: block;
    width: calc(50% - 15px);
    border-top: 1px solid #fff;
  }
  .movie__border::after {
    content: "";
    display: block;
    width: calc(50% - 15px);
    border-top: 1px solid #fff;
  }
  .movie__border--rotate {
    width: 30px;
    display: block;
    position: relative;
  }
  .movie__border--rotate::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: #fff;
    transform: rotate(45deg);
    position: absolute;
    left: -6px;
    top: 15px;
  }
}

@media (max-width: 410px) {
  .movieList {
    padding-left: 4.878vw;
  }
  .movieList__content {
    font-size: 4.146vw;
  }
  .movieList__content--yellow {
    font-size: 4.146vw;
  }
}

.tenItem {
  padding-bottom: 140px;
  position: relative;
}

.tenItem::after {
  content: url(../images/bg_02.svg);
  display: block;
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: -20px;
}

.tenItem__title {
  text-align: center;
  margin-bottom: 70px;
}

.tenItem__title--01 {
  color: #fff;
  font-size: 34px;
  line-height: 1.5em;
  display: block;
  margin-bottom: 15px;
}
.tenItem__title--01-ib {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  display: inline-block;
}
.tenItem__title--02 {
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.tenItem__title--02-number {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  font-family: "DINC";
  font-size: 52px;
  letter-spacing: -0.01em;
  background-color: var(--yellow);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin-inline: 10px;
}

.tenItem__title--type {
  width: 273px;
  height: 43px;
  border-radius: 24px;
  background: #006f81;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 20px auto;
}

.newrelease {
  position: absolute;
  left: -75px;
  top: -43px;
}

.tenItem__img {
  display: block;
  max-width: 92%;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.tenItem__link {
  max-width: 226px;
  width: 100%;
  height: 44px;
  background-color: white;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 14px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  transition: 0.2s background-color ease-out, 0.2s transform ease-out,
    0.2s opacity ease-out;
}

.tenItem__link::after {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-size: 16px;
  font-weight: 900;
  color: var(--blue);
  margin-left: 8px;
}

.tenItem__link:hover {
  background-color: var(--orange);
  color: #fff;
}

.tenItem__link:hover::after {
  color: #fff;
}

@media (max-width: 767px) {
  .tenItem::after {
    content: url(../images/bg_02_sp.svg);
  }
  .tenItem__title {
    margin-bottom: 40px;
  }
  .tenItem__title--01 {
    font-size: 24px;
  }
  .tenItem__title--02 {
    font-size: 20px;
  }
  .tenItem__title--02-number {
    width: 38px;
    height: 38px;
    font-size: 30px;
  }
  .tenItem__img {
    margin-bottom: 40px;
  }
  .tenItem__title--type {
    width: 200px;
    height: 40px;
    font-size: 16px;
  }

  .newrelease {
    left: -40px;
    top: -20px;
    width: 60px;
  }
}

.howto {
  background-color: var(--water);
  padding: 150px 0px 150px;
  position: relative;
}

.howto::before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background-color: var(--water);
  transform: skewY(2deg);
  position: absolute;
  top: -40px;
  left: 0px;
}

.howto__swiper {
  overflow-x: hidden;
  position: relative;
}

.swiper-pagination {
  bottom: 0px !important;
  z-index: 10;
}
.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  background-color: var(--blue);
}

@media (min-width: 768px) {
  .swiper-pagination {
    display: none;
  }
}

.subTitle {
  text-align: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-bottom: 70px;
}

.subTitle::after {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background-color: var(--blue);
  margin-top: 20px;
}

.subTitle__en {
  font-family: "DINC";
  font-size: 22px;
  line-height: 1em;
  margin-bottom: 10px;
}

.subTitle__jp {
  font-size: 35px;
  line-height: 1em;
}

.shop .subTitle__en,
.shop .subTitle__jp {
  color: #fff;
}

.shop .subTitle::after {
  background-color: var(--orange);
}

.howto__type {
  color: #006f81;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 60px;
}

.subTitle + .howto__type {
  margin-top: -40px;
}

.howto__dry {
  display: block;
  max-width: 92%;
  margin: 0 auto 60px;
}

.howtoList {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}

.howtoList__content {
  max-width: 382px;
  width: 33.3%;
  height: auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
  padding-inline: 10px;
  margin-right: 0px !important;
}

.howtoList__content + .howtoList__content {
  border-left: 1px dashed var(--black);
}

.howtoList__txt {
  line-height: 1.8em;
  text-align: center;
}
.howtoList__txt--bold {
  font-size: 25px;
  font-weight: 700;
  line-height: inherit;
}
.howtoList__txt--ib {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.howtoList__img {
  width: 60%;
  margin-top: 20px;
}

@media (max-width: 980px) {
  .howtoList__txt {
    font-size: 13px;
  }
  .howtoList__txt--bold {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .howto {
    padding: 70px 0;
  }
  .howto__swiper {
    padding-bottom: 80px;
  }
  .howtoList {
    width: 200vw;
  }
  .howtoList__content {
    max-width: none;
  }
  .subTitle {
    margin-bottom: 40px;
  }
  .subTitle__en {
    font-size: 20px;
  }
  .subTitle__jp {
    font-size: 30px;
  }
}

@media (max-width: 380px) {
  .subTitle__en {
    font-size: 18px;
  }
  .subTitle__jp {
    font-size: 22px;
  }
  .howtoList__txt {
    font-size: 11px;
  }
  .howtoList__txt--bold {
    font-size: 14px;
  }
}
.linkList {
  position: relative;
  z-index: 5;
}

.linkList__link {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  height: 330px;
  overflow: hidden;
  position: relative;
}

.linkList__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: 0.2s transform ease-out;
}

.linkList__content:nth-of-type(1) .linkList__link::before {
  background: url(../images/linkbg_01.jpg) no-repeat center/cover;
}
.linkList__content:nth-of-type(2) .linkList__link::before {
  background: url(../images/linkbg_02.jpg) no-repeat center/cover;
}
.linkList__content:nth-of-type(3) .linkList__link::before {
  background: url(../images/linkbg_03.jpg) no-repeat center/cover;
}

.linkList__link:hover::before {
  transform: scale(1.1);
}

.linkList__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.16);
}

.linkList__txt {
  width: 500px;
  height: 140px;
  padding-left: 32px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(43, 143, 159, 1) 0%,
    rgba(0, 111, 129, 1) 100%
  );
  position: relative;
  z-index: 2;
}

.linkList__txt--inner {
  border-left: 6px solid var(--blue);
  padding-left: 23px;
}

.linkList__txt--small {
  color: #fff;
  line-height: 1.4em;
}

.linkList__txt--large {
  font-size: 30px;
  color: #fff;
  line-height: 1.4em;
}

@media (max-width: 767px) {
  .linkList {
    padding: 0px 20px 70px;
    background-color: var(--water);
    position: relative;
  }
  .linkList::after {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background-color: var(--water);
    transform: skewY(-2deg);
    position: absolute;
    bottom: -40px;
    left: 0px;
  }
  .linkList__content:not(:first-child) {
    margin-top: 20px;
  }
  .linkList__link {
    height: 200px;
  }
  .linkList__content:nth-of-type(1) .linkList__link::before {
    background-position: right 20% center;
  }
  .linkList__txt {
    background: transparent;
    width: auto;
  }
  .linkList__txt--small {
    font-size: 12px;
  }
  .linkList__txt--large {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .linkList__txt {
    padding-left: 16px;
  }
  .linkList__txt--inner {
    padding-left: 12px;
  }
}
.shop {
  background-color: var(--blue);
  padding: 100px 0px;
}

.shopList {
  max-width: 830px;
  width: 92%;
  margin-inline: auto;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.shopList__txt {
  text-align: center;
  margin: -50px auto 30px;
  color: #fff;
}
.shopList::after {
  content: "";
  display: block;
  width: calc((100% - 30px) / 4);
}

.shopList__content {
  width: calc((100% - 30px) / 4);
  display: flex;
  flex-flow: wrap;
}

.shopList__content:nth-of-type(n + 5) {
  margin-top: 10px;
}

.shopList__link {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 15px;
  width: 100%;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  transition: opacity ease-out 0.1s;
}
.shopList__link:hover {
  opacity: 0.7;
}
.shopList__link.preparation {
  pointer-events: none;
  position: relative;
}
.shopList__link.preparation::after {
  content: "取り扱い予定";
  position: absolute;
}
.shopList__link.preparation img {
  opacity: 0.1;
}
.shopList__img {
  max-width: 100%;
}

@media (max-width: 767px) {
  .shopList {
    max-width: 500px;
  }
  .shopList__txt {
    font-size: 12px;
    margin: -30px auto 15px;
  }
  .shopList__content {
    width: calc((100% - 10px) / 2);
  }
  .shopList__content:nth-of-type(n + 3) {
    margin-top: 10px;
  }
}

.column {
  background-color: var(--water);
  padding: 140px 0px 380px;
  position: relative;
}

.column::before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background-color: var(--water);
  transform: skewY(2deg);
  position: absolute;
  top: -40px;
  left: 0px;
}

.columnList {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  max-width: 1090px;
  width: 92%;
  margin-inline: auto;
}

.columnList::before {
  content: "";
  display: block;
  width: 32%;
  order: 1;
}

.columnList::after {
  content: "";
  display: block;
  width: 32%;
  order: 1;
}

.columnList__content {
  width: 32%;
  display: flex;
  flex-flow: column;
  padding-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
}

.columnList__content:nth-of-type(3n + 1):last-child {
  border-bottom: none;
}
.columnList__content:nth-of-type(3n + 2):last-child {
  border-bottom: none;
}
.columnList__content:nth-of-type(3n + 1):nth-last-child(2) {
  border-bottom: none;
}
.columnList__content:nth-of-type(3n + 3):last-child {
  border-bottom: none;
}
.columnList__content:nth-of-type(3n + 2):nth-last-child(2) {
  border-bottom: none;
}
.columnList__content:nth-of-type(3n + 1):nth-last-child(3) {
  border-bottom: none;
}

.columnList__content:nth-of-type(n + 4) {
  margin-top: 50px;
}

.columnList__img {
  height: 150px;
  object-fit: cover;
  margin-bottom: 15px;
  background-color: #ccc;
}

.columnList__dl {
  margin-bottom: 30px;
  flex-grow: 1;
}

.columnList__title {
  margin-bottom: 15px;
  font-size: 18px;
}

.columnList__txt {
  font-size: 14px;
  font-weight: 300;
}

.columnList__link {
  max-width: 226px;
  width: 100%;
  height: 44px;
  background-color: var(--blue);
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-inline: auto;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: 0.2s background-color ease-out;
}

.columnList__link::after {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  position: absolute;
  right: 30px;
  top: clac(50% - 8px);
}

.columnList__link:hover {
  background-color: var(--darkblue);
}

.column__cat {
  position: absolute;
  bottom: 0px;
  left: calc(50% - 136px);
  max-width: 273px;
  width: 40%;
}

@media (max-width: 767px) {
  .columnList__content {
    width: 48%;
  }
  .columnList__content:nth-of-type(n + 3) {
    margin-top: 30px;
  }
}
@media (max-width: 680px) {
  .column {
    padding: 20.58vw 0 55.88vw;
  }
  .column__cat {
    left: 30%;
  }
}
@media (max-width: 480px) {
  .columnList__content {
    width: 100%;
  }
  .columnList__content:nth-of-type(n + 2) {
    margin-top: 30px;
  }
}

.modal {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100dvh;
  z-index: 20;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s opacity ease-out;
}

body.modalopen .modal {
  opacity: 1;
}

.modal__content {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  background-color: var(--water);
  padding: 25px 25px 40px;
  max-width: 580px;
  width: 90%;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.modal__close {
  position: absolute;
  right: -15px;
  top: -15px;
  color: var(--darkblue);
  font-size: 37px;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.modal__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55em;
  letter-spacing: 0.05em;
  color: var(--darkblue);
  margin-bottom: 10px;
}

.modal__title--ib {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  display: inline-block;
}

.modal__img {
  display: block;
  max-width: 200px;
  width: 70%;
  margin: 0 auto 10px;
}

.modal__img[src="images/product_03.png"] {
  max-width: 300px;
  width: 90%;
}
.modal__img[src="images/product_09.png"] {
  max-width: 370px;
  width: 90%;
  margin: 10px auto 20px;
}

.modal__txt {
  font-size: 14px;
  letter-spacing: 0.05em;
}

.modal__overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.67);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

@media (max-width: 767px) {
  .modal__title {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .modal__title {
    text-align: left;
  }
  .modal__title br {
    display: none;
  }
  .modal__title--ib {
    display: inline;
  }
}

@media (max-width: 375px) {
  .modal__title {
    font-size: 16px;
    line-height: 1.2em;
  }
  .modal__img {
    width: 55%;
  }
  .modal__txt {
    line-height: 1.4em;
  }
  .modal__close {
    right: -10px;
  }
}

.featureHero {
  position: relative;
}

.HeroSub {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 500px;
}

.featureHero .HeroSub {
  background: url(../images/feature_main_bg.jpg) no-repeat center/cover;
}

.HeroSub::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}
.featureHero .HeroSub::after {
  -webkit-backdrop-filter: blur(0.5vw);
  backdrop-filter: blur(0.5vw);
  background-color: rgba(0, 0, 0, 0.16);
}

.HeroSub__title {
  max-width: 1000px;
  width: calc(100% - 50px);
  position: relative;
  z-index: 2;
  border-left: 8px solid var(--blue);
  padding-left: 30px;
  margin-bottom: 25px;
}

.HeroSub__title--small {
  font-size: 25px;
  color: #fff;
  display: block;
  line-height: 1em;
  margin-bottom: 20px;
}
.HeroSub__title--large {
  font-size: 45px;
  color: #fff;
  display: block;
  line-height: 1em;
}

.HeroSub__title--large-ib {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  display: inline-block;
}

.pankuzu {
  max-width: 1000px;
  width: calc(100% - 50px);
  display: flex;
  flex-flow: wrap;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pankuzu__content {
  color: #fff;
  font-size: 14px;
}

.pankuzu__content:not(:first-child)::before {
  content: "　>　";
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.pankuzu__link {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.pankuzu__link:hover {
  text-decoration: underline;
}

.featureHeroList {
  height: 170px;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.featureHeroList::after {
  content: "";
  width: 100%;
  height: 110%;
  position: absolute;
  top: -20px;
  left: 0px;
  transform: skewY(-1deg);
  background: url(../images/featuremain_elem.svg) no-repeat left -50px top -150px,
    url(../images/featuremain_elem.svg) no-repeat right -70px top -80px,
    var(--blue);
}

.featureHeroList__content {
  margin-inline: 20px;
  z-index: 2;
}

.featureHeroList__img {
  position: relative;
  top: -70px;
}

.featureHero__img--01 {
  position: absolute;
  right: 100px;
  bottom: 0px;
  z-index: 2;
}
.featureHero__img--02 {
  position: absolute;
  right: 286px;
  bottom: 272px;
  z-index: 2;
}

@media (max-width: 1500px) {
  .featureHeroList {
    padding-left: calc(50% - 500px);
    padding-right: calc(50% - 20px);
    height: 330px;
  }
}

@media (max-width: 1000px) {
  .featureHeroList {
    height: 260px;
    padding-left: 4%;
    padding-right: calc(96% - 360px);
  }
  .featureHeroList__content {
    margin-inline: 10px;
  }
  .featureHeroList__img {
    width: 100px;
  }
  .featureHero__img--01 {
    width: 200px;
  }
  .featureHero__img--02 {
    width: 130px;
    right: 260px;
  }
}

@media (max-width: 800px) {
  .featureHero__img--01 {
    width: 180px;
    right: 50px;
  }
  .featureHero__img--02 {
    width: 110px;
    right: 190px;
    bottom: 230px;
  }
}

@media (min-width: 768px) {
  .featureHeroList__sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .HeroSub {
    height: 265px;
  }
  .HeroSub__title {
    border-left-width: 5px;
    padding-left: 20px;
  }
  .HeroSub__title--small {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .HeroSub__title--large {
    font-size: 29px;
    line-height: 1.2em;
    text-indent: -0.6em;
    margin-left: 0.6em;
  }
  .HeroSub__title--large-ib {
    margin-left: 0.6em;
  }
  .pankuzu {
    display: none;
  }
  .featureHeroList {
    display: none;
  }
  .featureHeroList__sp {
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: wrap;
    align-items: flex-start;
    justify-content: center;
    height: 500px;
  }
  .featureHeroList__sp::after {
    content: "";
    width: 100%;
    height: 110%;
    position: absolute;
    top: -20px;
    left: 0px;
    z-index: -1;
    transform: skewY(-3deg);
    background: url(../images/featuremain_elem.svg) no-repeat left -50px bottom 150px/200px
        auto,
      url(../images/featuremain_elem.svg) no-repeat right -70px top -80px/200px
        auto,
      url(../images/featuremain_elem.svg) no-repeat right -20px bottom -20px/250px
        auto,
      var(--blue);
  }
  .featureHeroList__sp--img {
    margin-top: -70px;
  }
  .featureHero__img--01 {
    width: 130px;
    bottom: 30px;
  }
  .featureHero__img--02 {
    bottom: 70px;
  }
}

@media (max-width: 580px) {
  .HeroSub {
    height: 400px;
    justify-content: flex-start;
  }
  .HeroSub__title {
    margin-top: 100px;
  }
}
@media (max-width: 480px) {
  .featureHero__img--01 {
    right: 20px;
  }
  .featureHero__img--02 {
    right: 160px;
  }
}

@media (max-width: 420px) {
  .featureHeroList__sp {
    height: 119.04vw;
  }
  .featureHeroList__sp--img {
    width: 76.66vw;
  }
  .featureHero__img--01 {
    width: 30.95vw;
    right: 4.76vw;
  }
  .featureHero__img--02 {
    width: 26.19vw;
    right: 38.09vw;
  }
}

.lineup {
  background: url(../images/bg_03.svg) no-repeat top 20% left 0px / 100% auto,
    url(../images/bg_04.svg) no-repeat top 50% left 0px / 100% auto,
    var(--water);
  position: relative;
  z-index: 2;
  padding: 70px 0px 200px;
}

.lineup::before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background-color: var(--water);
  transform: skewY(-2deg);
  position: absolute;
  top: -40px;
  left: 0px;
}

.lineupAnchor {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  padding-inline: 10px;
  gap: 12px 30px;
  margin-bottom: 15px;
}

.lineupAnchor:last-of-type {
  margin-bottom: 80px;
}

.lineupAnchor__link {
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 20px;
}

.lineupAnchor__link::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ab";
  font-size: 18px;
  font-weight: 600;
  margin-right: 6px;
  color: var(--orange);
}

.lineupAnchor__link:hover {
  text-decoration: underline;
}

.lineupDetail {
  max-width: 1000px;
  width: 92%;
  margin-inline: auto;
}

.lineupDetail + .lineupDetail {
  margin-top: 180px;
}

.lineupDetail__head {
  display: flex;
  flex-flow: wrap;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
}

.lineupDetail__head:has(.allergy) {
  flex-flow: column;
  align-items: flex-start;
}

.lineupDetail__title {
  display: flex;
  flex-flow: column;
  margin-top: -72px;
  padding-top: 72px;
}

.lineupDetail__title--large {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.4em;
  margin-bottom: 10px;
}

.lineupDetail__title--small {
  font-size: 18px;
  line-height: 1em;
}

.lineupDetail__component:not(.allergy) {
  display: flex;
  flex-flow: wrap;
  align-items: flex-end;
  margin-top: 20px;
}

.lineupDetail__component--wrap {
  display: flex;
  flex-flow: wrap;
}

.lineupDetail__component--wrap + .lineupDetail__component--wrap {
  margin-top: 10px;
}

.lineupDetail__component--name {
  width: 174px;
  font-size: 18px;
}

.lineupDetail__component--aside {
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-left: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.lineupDetail__component.allergy .lineupDetail__component--aside {
  margin-left: 174px;
}

.lineupDetail__inner {
  display: grid;
  grid-template-columns: 46% 2% 52%;
  grid-template-rows: auto 1fr;
}

.lineupDetail__dl {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.lineupDetail__subTitle {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.lineupDetail__subTitle--small {
  display: block;
  font-weight: 700;
  margin-top: -5px;
}

.lineupDetail__subTitle:not(:first-child) {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px dotted #c1c1c1;
}

.lineupDetail__list--content {
  letter-spacing: 0.05em;
  padding-left: 15px;
  position: relative;
}

.lineupDetail__list--content:not(:first-child) {
  margin-top: 20px;
}

.lineupDetail__list--content::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: var(--blue);
  position: absolute;
  left: 0px;
  top: 12px;
  border-radius: 50%;
}

.lineupDetail__content--img {
  margin-bottom: 20px;
  max-width: 100%;
}

.lineupDetail__illust--wrap {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.lineupDetail__illust {
  position: relative;
  display: flex;
  flex-flow: wrap;
  align-items: flex-end;
  justify-content: space-between;
}

.lineupDetail__illust.dry {
  padding-left: 60px;
}

.lineupDetail__illust.oneProduct {
  justify-content: center;
}

.lineupDetail__illust.oneProduct .lineupDetail__illust--img {
  margin-left: 10px;
}

.lineupDetail__illust--product {
  max-width: 66%;
}

.lineupDetail__illust.dry .lineupDetail__illust--product {
  max-width: none;
}

.lineupDetail__illust--img {
  width: 30%;
}
.lineupDetail__illust.oneProduct .lineupDetail__illust--product {
  width: 40%;
  max-width: 204px;
}
.lineupDetail__illust.oneProduct .lineupDetail__illust--img {
  width: 35%;
}

.lineupDetail__illust::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 90%;
  height: 100%;
  left: 5%;
  bottom: -10%;
  background-color: #c5e9ee;
  border-radius: 20px 50px 20px 50px;
}

.lineupDetail__illust.dry::after {
  bottom: 20px;
}

.lineupDetail__content--aside {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
}

.lineupDetail__content--aside-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lineupDetail__content--aside-txt {
  font-size: 14px;
  letter-spacing: 0.05em;
}

.lineupDetail__link {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  width: 230px;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
  color: #fff;
  line-height: 1em;
  transition: 0.2s background-color ease-out;
  margin-top: 30px;
}

.lineupDetail__link::after {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-left: 10px;
  position: relative;
  bottom: -1px;
}

.lineupDetail__link:hover {
  background-color: var(--darkblue);
}

@media (max-width: 1100px) {
  .dry .lineupDetail__illust--product {
    width: 38.27vw;
  }
}

@media (max-width: 767px) {
  .lineup {
    background: url(../images/bg_03_sp.svg) no-repeat top 20% left 0px / 100%
        auto,
      url(../images/bg_04_sp.svg) no-repeat top 50% left 0px / 100% auto,
      var(--water);
    padding: 10.9375vw 0px 20vw;
  }
  .lineupAnchor {
    gap: 0px 15px;
    margin-bottom: 0px;
  }
  .lineupAnchor__link {
    font-size: 14px;
  }
  .lineupAnchor__link::before {
    font-size: 14px;
  }
  .lineupDetail__content--img {
    display: block;
    margin-inline: auto;
    margin-bottom: 20px;
  }
  .lineupDetail {
    position: relative;
  }
  .lineupDetail + .lineupDetail {
    margin-top: 80px;
  }
  .lineupDetail__head {
    margin-bottom: 20px;
  }
  .lineupDetail__title--large {
    font-size: 28px;
    font-weight: 900;
  }
  .lineupDetail__title--small {
    font-size: 14px;
  }
  .lineupDetail__subTitle:not(:first-child) {
    margin-top: 15px;
    padding-top: 15px;
  }
  .lineupDetail__component {
    position: absolute;
    bottom: 110px;
    left: calc(50% - 205px);
    margin-left: 0px;
    flex-flow: column;
    align-items: center;
    width: 80%;
    max-width: 410px;
  }
  .lineupDetail__component:not(.allergy) {
    margin-left: 0px;
  }
  .lineupDetail__component.component4 {
    bottom: 100px;
  }
  .lineupDetail__component.allergy {
    bottom: 80px;
  }

  .lineupDetail__component--wrap + .lineupDetail__component--wrap {
    margin-top: 0px;
  }

  .lineupDetail__componentList {
    justify-content: space-between;
    width: 100%;
  }
  .lineupDetail__componentList--content {
    padding: 5px 5px 7px;
    width: 49%;
    display: flex;
    flex-flow: wrap;
    align-items: flex-end;
    justify-content: center;
  }
  .lineupDetail__componentList--content:not(:first-child) {
    margin-left: 0px;
  }
  .lineupDetail__componentList--content:nth-of-type(n + 3) {
    margin-top: 5px;
  }

  .lineupDetail__componentList--content.dry {
    width: 100%;
  }
  .lineupDetail__componentList--content-aside {
    position: relative;
    top: -0.7em;
  }
  .lineupDetail__component.allergy .lineupDetail__component--aside {
    margin-left: 0px;
  }
  .lineupDetail__inner {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .lineupDetail__dl {
    width: 100%;
  }
  .lineupDetail__subTitle {
    font-size: 18px;
  }
  .lineupDetail__list--content {
    font-size: 14px;
  }
  .lineupDetail__component--aside {
    width: 100%;
    margin-left: 0px;
    text-align: right;
  }
  .lineupDetail__illust--wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .lineupDetail__illust {
    max-width: 520px;
    width: 100%;
    margin-top: 40px;
  }
  .lineupDetail__illust::after {
    height: calc(110% + 90px);
    bottom: -90px;
  }
  .lineupDetail__illust.dry::after {
    height: calc(100% + 90px);
    bottom: -90px;
  }
  .lineupDetail__illust.component4::after {
    height: calc(110% + 120px);
    bottom: -120px;
  }
  .lineupDetail__illust.allergy::after {
    height: calc(110% + 205px);
    bottom: -205px;
  }
  .dry .lineupDetail__illust--product {
    width: auto;
  }

  .lineupDetail__link {
    margin-top: 130px;
  }
  .lineupDetail__head:has(.component4)
    + .lineupDetail__inner
    .lineupDetail__link {
    margin-top: 160px;
  }
  .lineupDetail__head:has(.allergy) + .lineupDetail__inner .lineupDetail__link {
    margin-top: 220px;
  }
}

@media (max-width: 580px) {
  .dry .lineupDetail__illust--product {
    width: 76.54vw;
  }
}
@media (max-width: 550px) {
  .lineupDetail__illust.dry {
    padding-left: 10.34vw;
  }
  .lineupDetail__component {
    left: 10%;
  }
}

@media (max-width: 430px) {
  .lineupDetail__component--name {
    font-size: 3.5vw;
  }
  .lineupDetail__componentList--content {
    font-size: 2.558vw;
  }
  .lineupDetail__componentList--content-large {
    font-size: 3.72vw;
  }
  .lineupDetail__component.component4 {
    bottom: 110px;
  }
  .lineupDetail__component.allergy {
    bottom: 22.6vw;
  }
  .lineupDetail__head:has(.allergy) + .lineupDetail__inner .lineupDetail__link {
    margin-top: 51.1vw;
  }
  .lineupDetail__illust.allergy::after {
    height: calc(110% + 47.6vw);
    bottom: -47.6vw;
  }
}

.storyHero .HeroSub {
  background: url(../images/story_main_bg.jpg) no-repeat center/cover;
}

.storyHero .HeroSub::after {
  -webkit-backdrop-filter: blur(0.3vw);
  backdrop-filter: blur(0.3vw);
  background-color: rgba(0, 0, 0, 0.16);
}

.storyIndex {
  padding: 40px 0px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.storyIndex::after {
  content: "";
  display: block;
  width: 100%;
  height: 120%;
  background-color: var(--blue);
  transform: skewY(-2deg);
  position: absolute;
  top: -40px;
  left: 0px;
}

.storyIndex__title {
  max-width: 740px;
  width: 92%;
  position: relative;
  margin-bottom: 10px;
  z-index: 2;
}

.storyIndex__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  border-top: 1px solid #92dee9;
  border-bottom: 1px solid #92dee9;
  position: absolute;
  left: 0px;
  top: calc(50% - 3px);
}

.storyIndex__title--txt {
  font-family: "DINC";
  font-size: 30px;
  background-color: var(--blue);
  padding-right: 10px;
  position: relative;
  z-index: 2;
}

.storyIndex__content {
  max-width: 740px;
  width: 92%;
  position: relative;
  z-index: 2;
}

.storyIndexList__content {
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.storyIndexList__content:not(:first-child) {
  margin-top: 15px;
}

.storyIndexList__number {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--black);
  font-family: "DINC";
  font-size: 22px;
  line-height: 1em;
  padding-left: 3px;
  color: #fff;
}

.storyIndexList__txt {
  font-size: 20px;
  color: #fff;
  width: calc(100% - 44px);
}

.storyIndexList__txt:hover {
  text-decoration: underline;
}

.story {
  background-color: var(--water);
  padding: 100px 0px 200px;
}

.story__title {
  max-width: 1000px;
  width: 92%;
  margin-inline: auto;
  margin-bottom: 50px;
  margin-top: -72px;
  padding-top: 72px;
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.story__title:not(:first-child) {
  margin-top: 150px;
}

.story__title--number {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--black);
  font-family: "DINC";
  font-size: 39px;
  line-height: 1em;
  padding-left: 4px;
  color: #fff;
}

.story__title--txt {
  font-size: 35px;
  font-weight: 700;
  width: calc(100% - 78px);
  line-height: 1.428em;
}

.storyDetail01 {
  width: calc(50% + 500px);
  margin-left: auto;
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.story__txt {
  font-size: 18px;
  letter-spacing: 0.05em;
}

.story__txt:not(:first-of-type) {
  margin-top: 30px;
}

.storyDetail01 .story__txt {
  width: 40%;
}

.storyDetail01__img {
  width: 56%;
}

.storyDetail01__img--img {
  width: 100%;
}

.storyDetail01__img--aside {
  text-align: center;
  font-size: 12px;
  margin-top: 5px;
}

.storyDetail02 {
  max-width: 1000px;
  width: 92%;
  margin-inline: auto;
}

.storyDetail02List {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.storyDetail02List__content {
  width: 32%;
  border-radius: 10px;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 12px 18px;
}

.storyDetail02List__title {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.storyDetail02List__list--content {
  letter-spacing: 0.05em;
  padding-left: 15px;
  position: relative;
}

.storyDetail02List__list--content::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: var(--blue);
  position: absolute;
  left: 0px;
  top: 12px;
  border-radius: 50%;
}

.storyDetail02List__aside {
  text-align: right;
  font-size: 18px;
}

.storyDetail03 {
  width: calc(50% + 500px);
  margin-right: auto;
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.storyDetail03 .story__txt {
  width: 40%;
}

.storyDetail03__img {
  width: 56%;
}

.storyDetail03__img--img {
  width: 100%;
}

.storyDetail03__img--aside {
  text-align: center;
  font-size: 12px;
  margin-top: 5px;
}

.storyDetail04-01 {
  width: calc(50% + 500px);
  margin-left: auto;
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.storyDetail04-02 {
  width: calc(50% + 500px);
  margin-right: auto;
  margin-top: 50px;
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.storyDetail04-03 {
  width: calc(50% + 500px);
  margin-left: auto;
  margin-top: 50px;
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.storyDetail04__dl {
  width: 62%;
}

.storyDetail04__title {
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}

.storyDetail04__title::before {
  content: "";
  width: 36px;
  height: 2px;
  background-color: var(--black);
  margin-top: 22px;
}

.storyDetail04__title--txt {
  display: block;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: calc(100% - 45px);
}

.storyDetail04__detail--large {
  font-size: 22px;
}

.storyDetail04__detail--large b {
  font-size: inherit;
  font-weight: 900;
}

.storyDetail04__img {
  width: 35%;
}

.storyDetail04__img--img {
  width: 100%;
}

.storyDetail04__img--aside {
  text-align: center;
  font-size: 12px;
  margin-top: 5px;
}

.storyDetail04__detail--link {
  width: 216px;
  height: 50px;
  background-color: #fff;
  border: 1px solid var(--blue);
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  color: var(--blue);
  margin-top: 50px;
  transition: 0.2s background-color ease-out, 0.2s color ease-out,
    0.5s transform ease-out, 0.5s opacity ease-out;
}

.storyDetail04__detail--link.is-sp {
  margin-inline: auto;
}

.storyDetail04__detail--link::after {
  font-family: "Font Awesome 5 Free";
  content: "\f2d2";
  font-size: 16px;
  font-weight: 400;
  margin-left: 6px;
  color: var(--blue);
  transition: 0.2s color ease-out;
}

.storyDetail04__detail--link:hover {
  color: #fff;
  background-color: var(--blue);
}

.storyDetail04__detail--link:hover::after {
  color: #fff;
}

@media (max-width: 1100px) {
  .storyDetail01,
  .storyDetail03,
  .storyDetail04-01,
  .storyDetail04-02,
  .storyDetail04-03 {
    width: 95%;
  }
}

@media (max-width: 767px) {
  .storyIndex__title--txt {
    font-size: 18px;
  }
  .storyIndex__title::after {
    height: 3px;
  }
  .storyIndexList__txt {
    font-size: 14px;
    width: calc(100% - 35px);
  }
  .storyIndexList__number {
    font-size: 14px;
    width: 25px;
    height: 25px;
    padding-left: 2px;
  }
  .story__title {
    margin-bottom: 20px;
  }
  .story__title:not(:first-child) {
    margin-top: 50px;
  }
  .story__title--txt {
    font-size: 20px;
    width: calc(100% - 50px);
  }
  .story__title--number {
    font-size: 21px;
    width: 35px;
    height: 35px;
  }
  .story__txt {
    font-size: 14px;
  }
  .storyDetail01 {
    width: 92%;
    margin-inline: auto;
    display: block;
  }
  .storyDetail01 .story__txt {
    width: 100%;
    margin-bottom: 20px;
  }
  .storyDetail01__img {
    width: 100%;
  }
  .storyDetail02List {
    display: block;
  }
  .storyDetail02List__content {
    width: 100%;
  }
  .storyDetail02List__content:not(:first-child) {
    margin-top: 20px;
  }
  .storyDetail02List__title {
    text-align: left;
    font-size: 16px;
  }
  .storyDetail02List__list--content {
    font-size: 14px;
  }
  .storyDetail02List__aside {
    font-size: 14px;
  }
  .storyDetail03 {
    flex-flow: column-reverse;
    width: 92%;
    margin-inline: auto;
  }
  .storyDetail03 .story__txt {
    width: 100%;
    margin-bottom: 20px;
  }
  .storyDetail03__img {
    width: 100%;
  }
  .storyDetail04__title::before {
    width: 30px;
    margin-top: 14px;
  }
  .storyDetail04__title--txt {
    width: calc(100% - 39px);
  }
  .storyDetail04-01 {
    width: 92%;
    margin-inline: auto;
    display: block;
  }
  .storyDetail04__dl {
    width: 100%;
  }
  .storyDetail04__title--txt {
    font-size: 16px;
  }
  .storyDetail04__img {
    margin-top: 20px;
    width: 100%;
  }
  .storyDetail04-02 {
    flex-flow: column-reverse;
    width: 92%;
    margin-inline: auto;
  }
  .storyDetail04-03 {
    width: 92%;
    margin-inline: auto;
    display: block;
  }
  .storyDetail04__detail--large {
    font-size: 16px;
  }
}

.snsHero .HeroSub {
  background: url(../images/sns_main_bg.jpg) no-repeat bottom/cover;
}

.snsHero .HeroSub::after {
  -webkit-backdrop-filter: blur(0.2vw);
  backdrop-filter: blur(0.2vw);
  background-color: rgba(255, 255, 255, 0.16);
}

.snsPost {
  padding-top: 150px;
  position: relative;
  z-index: 2;
}

.snsPost::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/snsPost_bg.svg) no-repeat center,
    linear-gradient(to bottom, #39d4ee 0%, #00afcc 100%);
  transform: skewY(-2deg);
  position: absolute;
  top: -40px;
  left: 0px;
}

.snsPost__title {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.snsPost__title--yellow {
  display: block;
  background-color: var(--yellow);
  color: var(--blue);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4em;
  padding: 0px 20px;
  letter-spacing: 0em;
}

.snsPost__title--yellow:not(:first-child) {
  margin-top: 15px;
}

.snsPost__title--txt {
  font-size: 28px;
  font-weight: 700;
  margin-top: 15px;
  letter-spacing: 0em;
  color: #fff;
}

.snsPost__illust {
  margin-top: 70px;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.snsPost__illust--txt {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  background-color: var(--blue);
  position: absolute;
  padding: 5px 10px;
  line-height: 1.4em;
}

.snsPost__illust--txt-01 {
  bottom: 300px;
  left: calc(50% - 500px);
  background-color: var(--yellow);
  color: var(--blue);
  font-weight: 700;
}

.snsPost__illust--txt-02 {
  bottom: 160px;
  left: calc(50% - 380px);
}

.snsPost__illust--txt-03 {
  bottom: 150px;
  right: calc(50% - 400px);
}
.snsPost__illust--txt-04 {
  bottom: 320px;
  right: calc(50% - 450px);
}

@media (max-width: 1000px) {
  .snsPost__illust--txt-01 {
    left: calc(50% - 360px);
  }
  .snsPost__illust--txt-02 {
    left: calc(50% - 360px);
  }
  .snsPost__illust--txt-03 {
    right: calc(50% - 360px);
  }
  .snsPost__illust--txt-04 {
    right: calc(50% - 360px);
  }
}

@media (max-width: 767px) {
  .snsPost {
    padding-top: 6.518vw;
  }
  .snsPost__title--yellow {
    font-size: 5.736vw;
  }
  .snsPost__title--yellow:not(:first-child) {
    margin-top: 2.607vw;
  }
  .snsPost__title--txt {
    font-size: 4.693vw;
    margin-top: 2.607vw;
  }
  .snsPost__illust {
    margin-top: 5.215vw;
    padding: 0 2.607vw;
  }
  .snsPost__illust--img {
    width: 88.52vw;
  }
  .snsPost__illust--txt {
    font-size: 3.389vw;
    padding: 0 1.3vw;
  }
  .snsPost__illust--txt-01 {
    left: 0px;
    bottom: 39.11vw;
  }
  .snsPost__illust--txt-02 {
    left: 0px;
    bottom: 20.86vw;
  }
  .snsPost__illust--txt-03 {
    right: 0px;
    bottom: 22.89vw;
  }
  .snsPost__illust--txt-04 {
    right: 0px;
    bottom: 46vw;
  }
}

.share {
  position: relative;
  z-index: 3;
  padding: 30px 0px 130px;
}

.share::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 150px);
  background: var(--water);
  transform: skewY(-2deg);
  position: absolute;
  top: -40px;
  left: 0px;
}

.share__txt {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.shareLink {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 80px;
  border-radius: 80px;
  background-color: #fff;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
/* マウスオーバー時 */

.shareLink a img {
  transition: 0.5s;
}
.shareLink a img:hover {
  transform: rotateX(360deg);
}
.shareLink__txt {
  letter-spacing: 0.05em;
  position: absolute;
  top: -15px;
  left: 0px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.shareLink__txt::before {
  content: "\\";
  margin-right: 5px;
}
.shareLink__txt::after {
  content: "/";
  margin-left: 5px;
}

.shareLink__txt.anime {
  top: -18px;
  font-size: 18px;
  background-image: linear-gradient(
    150deg,
    rgba(247, 166, 12, 1) 10%,
    rgba(255, 34, 87, 1) 40%,
    rgba(154, 39, 238, 1) 68%,
    rgba(35, 102, 247, 1) 90%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: anime 2s ease-out infinite;
  opacity: 1;
  font-weight: 900;
}
@keyframes anime {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }
}

.shareLink__insta {
  width: 42px;
}

.shareLink__fb {
  width: 44px;
  margin-left: 40px;
}

.shareLink__x {
  width: 32px;
  margin-left: 40px;
}

@media (max-width: 767px) {
  .share {
    padding-bottom: 70px;
  }
  .share__txt {
    width: 92%;
    margin-inline: auto;
    text-align: left;
    font-size: 16px;
  }
}

.package {
  position: relative;
  z-index: 4;
  padding: 170px 0px 130px;
  background: linear-gradient(to bottom, #00afcc 0%, #a7f1fe 100%);
  overflow: hidden;
}
@media (min-width: 768px) {
  .package {
    margin-bottom: 100px;
  }
}
.package::before {
  content: "";
  display: block;
  width: 140%;
  height: calc(100% + 300px);
  background: url(../images/package_bg.png);
  position: absolute;
  left: 0px;
  top: -70px;
  z-index: -1;
  transform: rotate(-2deg);
}

.package::after {
  content: "";
  display: block;
  width: 100%;
  height: 150px;
  background-color: var(--water);
  transform: skewY(2deg);
  position: absolute;
  top: -120px;
  left: 0px;
}

.package__title {
  max-width: 1000px;
  width: 92%;
  margin-inline: auto;
  display: flex;
  flex-flow: wrap;
}

.package__title--txt {
  background-color: var(--black);
  font-size: 30px;
  color: #fff;
  padding: 3px 0px;
}

.package__title--txt > span {
  font-size: 80%;
  color: inherit;
}

.package__title--txt:nth-of-type(1) {
  padding-left: 15px;
}
.package__title--txt:nth-of-type(3) {
  padding-left: 15px;
  padding-right: 15px;
}

.package__cat {
  width: 320px;
  position: absolute;
  right: calc(50% - 600px);
  bottom: 0px;
  z-index: 3;
}

@media (max-width: 767px) {
  .package {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 100px 0 340px;
  }
  .package::before {
    background-size: 1200px auto;
  }
  .package::after {
    transform: skewY(5deg);
  }
  .package__title--txt {
    font-size: 22px;
  }
  .package__cat {
    width: 240px;
    right: calc(50% - 120px);
  }
  .package + .linkList {
    padding-top: 40px;
  }
  .package + .linkList::before {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background-color: var(--water);
    transform: skewY(5deg);
    position: absolute;
    top: -50px;
    left: 0px;
  }
}

@media (max-width: 520px) {
  .package__title--txt {
    font-size: 4.23vw;
  }
  .package__title--txt:nth-of-type(1) {
    padding-left: 2.88vw;
  }
  .package__title--txt:nth-of-type(3) {
    padding-left: 2.88vw;
    padding-right: 2.88vw;
  }
}

.onayami {
  position: relative;
  z-index: 2;
}

.onayami__title {
  text-align: center;
  margin-bottom: 30px;
}

.onayami__title--img {
  max-width: 80%;
}

.onayamiBox {
  max-width: 1060px;
  width: 92%;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -72px;
  padding-top: 72px;
}

.onayamiBox + .onayamiBox {
  margin-top: 38px;
  padding-top: 72px;
}

.onayamiBox__left {
  width: 44%;
}

.onayami__tag {
  border-radius: 10px;
  background: #f39800;
  width: 140px;
  height: 35px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  letter-spacing: 0.7px;
}

.onayami__tag--number {
  font-family: "DINC";
  font-size: 18px;
  letter-spacing: 0.9px;
  font-weight: 400;
  color: inherit;
  display: inline-block;
  margin-left: 0.5em;
  line-height: 1em;
}

.onayamiBox__title {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 40px;
}

.onayamiBox__title--ib {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  display: inline-block;
}

.onayamiBox__img {
  max-width: 92%;
  margin-left: 4%;
  display: block;
}

.onayamiBox__right {
  width: 54%;
  display: flex;
  flex-flow: column;
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
}

.onayamiBox__right--disc {
  font-size: 20px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0em;
}

.onayamiBox__right--disc-ib {
  font-size: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
}

.onayamiBox__right--productName {
  color: var(--blue);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.onayamiBox__right--txt {
  font-size: 15px;
  margin-bottom: 30px;
  color: #000;
  line-height: 1.2em;
}

.onayamiBox .tenItem__link {
  background-color: var(--blue);
  color: #fff;
  margin-top: 30px;
}

.onayamiBox .tenItem__link::after {
  color: #fff;
}
.onayamiBox .tenItem__link:hover {
  background-color: var(--darkblue);
}

.onayamiBox__list {
  margin-bottom: 20px;
}

.onayamiBox__list--content {
  font-size: 15px;
  line-height: 1.2em;
  text-indent: -1.5em;
  margin-left: 1.5em;
  color: #000;
}

@media (max-width: 520px) {
  .onayamiBox__list--content br.dn {
    display: none;
  }
}

.onayamiBox__list--content::before {
  content: "● ";
}
.onayamiBox__list--aside {
  margin-bottom: 30px;
  display: inline;
}

.onayamiBox__list--asideList {
  margin-top: 5px;
}

.onayamiBox__list--asideList-content {
  font-size: 12px;
  line-height: 1.2em;
  color: #000;
  text-indent: -2em;
  margin-left: 2em;
}
.onayamiBox__component {
  max-width: 305px;
  margin-bottom: 30px;
}

.onayamiBox__componentList {
  display: flex;
  flex-flow: wrap;
  gap: 5px;
}

.onayamiBox__componentList--content {
  width: 150px;
  height: 33px;
  background-color: var(--black);
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.02em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.onayamiBox__componentList--content-large {
  font-size: 20px;
  font-weight: inherit;
  color: inherit;
  margin-inline: 3px;
  letter-spacing: inherit;
  line-height: 1em;
}

.onayamiBox__componentList--content-aside {
  font-weight: inherit;
  color: inherit;
  font-size: 10px;
  letter-spacing: inherit;
  line-height: 1em;
}

.onayamiBox__component--aside {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: right;
}

.featureList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 1000px) {
  .onayamiBox__title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .onayamiBox {
    flex-flow: column;
    align-items: center;
  }
  .onayamiBox__title {
    font-size: 26px;
    text-align: center;
  }
  .onayamiBox__left {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-bottom: 40px;
  }
  .onayamiBox__right {
    width: 100%;
    max-width: 600px;
  }
  .onayamiBox__right--disc {
    font-size: 18px;
    text-align: center;
  }
  .onayamiBox__right--productName {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .featureList {
    width: 500px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .featureList {
    gap: 5vw;
    width: 80vw;
  }
  .featureList__img {
    width: 21.16vw;
  }
}

@media (max-width: 420px) {
  .onayamiBox__right {
    padding: 20px;
  }
  .onayamiBox__right--txt {
    margin-bottom: 20px;
  }
  .onayamiBox__right--productName {
    font-size: 24px;
  }
  .onayamiBox .tenItem__link {
    margin-top: 20px;
  }
  .onayamiBox__component--name {
    font-size: 3.5vw;
  }
  .onayamiBox__componentList {
    gap: 4px;
  }
  .onayamiBox__componentList--content {
    font-size: 2.558vw;
    width: calc(50% - 2px);
  }
  .onayamiBox__componentList--content-large {
    font-size: 3.72vw;
  }
  .onayamiBox__component.component4 {
    bottom: 110px;
  }
  .onayamiBox__component.allergy {
    bottom: 22.6vw;
  }
  .onayamiBox__head:has(.allergy) + .onayamiBox__inner .onayamiBox__link {
    margin-top: 51.1vw;
  }
  .onayamiBox__illust.allergy::after {
    height: calc(110% + 47.6vw);
    bottom: -47.6vw;
  }
}
