@charset 'UTF-8';

:root {
  --white: #fff;
  --white2: #fff9f6;
  --black: #000;
  --darkgray: #222;
  --orange: #ee7841;
  --orange2: #feefe3;
  --header-height: 0;
  /* --wave-h: clamp(4rem, 8vw, 8.4rem); */
  --wave-h: 4rem;
}

@font-face {
  font-family: print;
  font-weight: 400;
  src: url("PrintBold.woff2") format("woff2");
}

/******************************
* Common
******************************/

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  position: relative;
  overflow-x: hidden;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

.menu-active {
  scroll-behavior: auto;
}

body {
  padding-top: 0;
  overflow-x: hidden;
  font-family: Nunito, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  font-feature-settings: 'palt' 1;
  line-height: 1;
  color: var(--black);
  letter-spacing: 0.05em;
  background: var(--white);
}

p {
  line-height: 2.1;
}

* + p {
  margin-top: 1em;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

a {
  color: var(--orange);
  text-decoration: none;
}

.br8 {
  display: none;
}

.br13 {
  display: none;
}

.contents {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

.header-bg {
  /* background: #fff; */
}

.header-contents {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 1.2rem;
}

.logo {
  position: absolute;
  top: 2.2rem;
  left: 2.2rem;
  z-index: 9999;
  width: 32%;
  transition: all 0.3s;
}

.small-header .logo {
  top: 0.5rem;
  left: 2rem;
  max-width: 12rem;
  transform: scale(43.75%);
  transform-origin: 0% 0%;
}

.logo-svg {
  display: inline-block;
  width: 100%;
}

.header-links {
  flex: 0 1 25.641%;
  max-width: 20rem;
  aspect-ratio: 200 / 40;
  margin: 0 0 0 auto;
}

.header-links-list {
  display: flex;
  height: 100%;
}

.header-links-item {
  flex: 1;
  text-align: center;
}

.header-links-item-link {
  color: var(--darkgray);
}

.header-icon-svg {
  display: inline-block;
  height: 100%;
}

.header-menu {
  position: relative;
  flex: 0 0 6.41%;
  max-width: 5rem;
  aspect-ratio: 50 / 33;
}

.menu-trigger {
  position: relative;
  z-index: 9999;
  width: 100%;
  height: 100%;
}

.menu-trigger-bar {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 20%;
  background: var(--orange);
  border: 0.1rem solid var(--black);
  border-radius: 20rem;
  transition: all 0.3s;
}

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

.menu-trigger-bar:nth-of-type(2) {
  top: 40%;
}

.menu-trigger-bar:nth-of-type(3) {
  top: 80%;
}

.menu-active .menu-trigger-bar:nth-of-type(1) {
  transform: rotate(30deg) translate(6%, 190%);
}

.menu-active .menu-trigger-bar:nth-of-type(2) {
  background: transparent;
  border: transparent;
}

.menu-active .menu-trigger-bar:nth-of-type(3) {
  transform: rotate(-30deg) translate(6%, -190%);
}

.header-menu-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background: -5% -8% / 43% url("./menu-bg.png");
  opacity: 0;
  transition: opacity 0.6s, transform 0.01s 0.6s;
  transform: translateX(100dvw);
}

.menu-active .header-menu-inner {
  opacity: 1;
  transition: transform 0.01s, opacity 0.6s 0.01s;
  transform: translateX(0);
}

.header-menu-list {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: calc(2rem + 80%);
  /* max-height: calc(100dvh - 27rem); */
  padding: 0 1rem 7rem;
  margin: auto auto 5rem;
  overflow: auto;
}

.header-menu-item {
  position: relative;
}

.header-menu-item::after {
  display: block;
  width: 100%;
  height: 0.2rem;
  content: '';
  background: repeating-linear-gradient(to right, var(--black) 0 0.6rem, transparent 0.6rem 1.4rem);
}

.header-menu-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 2.6rem 0 1.4rem;
  font-size: 1.1rem;
  color: var(--black);
}

.header-menu-link::before {
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2rem;
}

.header-menu-link-home::before {
  content: "Home"
}

.header-menu-link-about::before {
  content: "About"
}

.header-menu-link-products::before {
  content: "Lineup"
}

.header-menu-link-news::before {
  content: "News"
}

.header-menu-link-contact::before {
  content: "Contact"
}

.header-menu-item-shop {
  padding-top: 4rem;
}

.header-menu-link-shop {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  font-size: 1.4rem;
  color: var(--black);
  border: 0.1rem solid var(--black);
  border-radius: 3rem;
}

.footer {
  max-width: 80rem;
  padding-top: 18rem;
  padding-bottom: 3.5rem;
  margin: auto;
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  justify-content: space-between;
  padding: 0 2rem;
}

.footer-logo {
  width: calc(55% - 1.2rem);
}

.footer-logo1 {
  display: block;
  width: 75%;
  max-width: 15rem;
}

.footer-logo2 {
  width: 100%;
  max-width: 18rem;
  margin-top: 2.6rem;
}

.footer-pagetop {
  width: calc(45% - 1.2rem);
  text-align: right;
}

.pagetop-img {
  width: 12%;
  max-width: 2rem;
}

.footer-sns {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer-sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  color: var(--black);
  border: 0.1rem solid var(--black);
  border-radius: 50%;
}

.footer-sns-svg {
  width: 50%;
}

.footer-shop {
  flex: 1;
  max-width: 30rem;
}

.footer-shop-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  color: var(--black);
  border: 0.1rem solid var(--black);
  border-radius: 4rem;
}

.footer-shop-link-span {
  display: block;
  flex: 1;
  text-align: center;
}

.footer-shop-link::after {
  display: inline-block;
  width: 1.9rem;
  height: 1.9rem;
  content: '';
  background: var(--black);
  mask: url("./ico-cart.svg") center / contain no-repeat;
  transition: background 0.3s;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-copyright-link {
  color: var(--black);
  text-decoration: underline;
}

.footer-copyright-copyright {
  font-size: 1rem;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100dvw;
  height: 100dvh;
  font-size: 1.6rem;
  line-height: 4;
  background: center url("./loading-bg.png");
  opacity: 0;
  transition: opacity 0.6s, transform 0.01s 0.6s;
  transform: translateX(100dvw);
}

.is-loading .loading {
  opacity: 1;
  transform: translateX(0);
}

.loading-logo {
  width: 35%;
  text-align: center;
}

.body {
  padding-top: var(--header-height);
}

.sec-title {
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 5.4rem;
}

.wave-bg-mask {
  -webkit-mask: linear-gradient(#fff 0 0) top / 100% calc(100% - var(--wave-h)) no-repeat, url("./bg-wave-mask.svg") bottom center / auto var(--wave-h) repeat-x;
  mask: linear-gradient(#fff 0 0) top / 100% calc(100% - var(--wave-h)) no-repeat, url("./bg-wave-mask.svg") bottom center / auto var(--wave-h) repeat-x;
}

.wave-bg-mask-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--wave-h);
  pointer-events: none;
  background: url("./bg-wave-stroke.svg") bottom center / auto 100% repeat-x;
}

.page-title-wrapper {
  position: relative;
  z-index: 99;
  padding-right: 6.41%;
  padding-bottom: 2%
}

.page-title {
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 5.4rem;
  color: var(--orange);
  text-align: right;
  -webkit-text-stroke: 0.15rem var(--black);
  paint-order: stroke fill;
}

.modal {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.modal-content {
  position: absolute;
  top: 4.8rem;
  left: -1rem;
  z-index: 1;
  width: calc(100% + 2rem);
  padding: 1rem 2.5rem;
  font-size: 1.4rem;
  pointer-events: none;
  background: #de911d;
  border: 0.1rem solid var(--black);
  border-radius: 0.4rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.is-open + .modal-content {
  pointer-events: auto;
  opacity: 1;
}

.modal-item {
  padding: 0.8em 0;
  border-bottom: 0.1rem solid var(--black);
}

.modal-item:last-child {
  padding-bottom: 0.4em;
  border: none;
}

.modal-link {
  color: var(--white);
}

@media screen and (width >= 800px) {
  html {
    scroll-padding-top: 13rem;
  }

  body {
    padding-top: 0;
    font-size: 1.6rem;
  }

  a {
    transition: all 0.3s;
  }

  a:hover, a:focus-visible {
    color: var(--black);
  }

  .br-8 {
    display: none;
  }

  .br8 {
    display: block;
  }

  .header-contents {
    gap: 0.5rem;
    padding: 2.5rem 3rem;
  }

  .logo {
    top: 7rem;
    left: 7.5rem;
    width: 15.4%;
  }

  .small-header .logo {
    top: 10%;
    left: 3.5rem;
    transform: scale(64.935%);
  }

  .header-links-item-link:hover, .header-links-item-link:focus-visible {
    color: var(--orange);
  }

  .header-menu {
    max-width: 4.4rem;
  }

  .menu-trigger {
    cursor: pointer;
  }

  .header-menu-inner {
    background-position: center 14rem;
    background-size: 30rem;
  }

  .header-menu-list {
    top: 20rem;
    bottom: auto;
    left: -30rem;
    width: 45rem;
    overflow: visible;
  }

  .header-menu-link {
    padding-top: 4rem;
    font-size: 1.4rem;
    transition: color 0.3s;
  }

  .header-menu-link:hover, .header-menu-link:focus-visible {
    color: var(--orange);
  }

  .header-menu-link::before {
    font-size: 3.6rem;
    font-weight: normal;
  }

  .header-menu-item-shop {
    position: absolute;
    right: -30rem;
    bottom: 0;
    padding-top: 0;
  }

  .header-menu-link-shop {
    padding: 2rem 1rem 2rem 4rem;
    font-size: 1.8rem;
    border-radius: 4rem;
  }

  .header-menu-link-shop::after {
    display: inline-block;
    width: 3.7rem;
    height: 3.7rem;
    padding-left: 5rem;
    content: '';
    background: var(--black);
    mask: url("./ico-cart.svg") center / contain no-repeat;
    transition: background 0.3s;
  }

  .header-menu-link-shop:hover, .header-menu-link-shop:focus-visible {
    color: var(--white);
    background: var(--orange);
  }

  .header-menu-link-shop:hover::after, .header-menu-link-shop:focus-visible::after {
    background: var(--white);
  }

  .sec-title {
    font-size: 7.2rem;
  }

  .wave-bg-mask-line {
    display: none;
  }

  .page-title-wrapper {
    padding-top: 2%;
    padding-right: 0;
  }

  .page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25rem;
    font-size: 9.6rem;
    text-align: center;
    background: 92.375% 0 / 7.1rem auto url("./text01.png") no-repeat;
  }

  .modal-content {
    top: 8.5rem;
    padding: 0.8rem 1.8rem 1.4rem;
    font-size: 1.5rem;
    border-radius: 0.6rem;
  }

  .modal-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
  }

  .modal-item {
    padding: 1em 0;
    border-bottom: 0.1rem solid var(--black);
  }

  .modal-item:last-child {
    padding-bottom: 0.4em;
    border: none;
  }

  .modal-link {
    color: var(--white);
  }
}

@media screen and (width >= 1300px) {
  .br13 {
    display: block;
  }

  .br-13 {
    display: none;
  }

  .footer {
    max-width: none;
    padding-top: 10rem;
  }

  .footer-layout {
    width: 83%;
    margin: auto;
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 40rem;
  }

  .footer-logo1 {
    width: 33.5%;
    max-width: none;
  }

  .footer-logo2 {
    width: 38%;
    max-width: none;
    margin-top: 5%;
  }

  .footer-pagetop {
    height: 40rem;
  }

  .pagetop-img {
    width: 4%;
    max-width: none;
  }

  .footer-sns {
    justify-content: flex-start;
    width: 37%;
    padding-top: 2%;
  }

  .footer-sns-link {
    width: 8rem;
    height: 8rem;
  }

  .footer-sns-svg {
    width: 40%;
  }

  .footer-shop-link {
    max-width: 28rem;
    padding: 2.3rem 3rem;
    font-size: 1.8rem;
    border-radius: 6rem;
  }

  .footer-shop-link-span {
    text-align: left;
  }

  .footer-shop-link::after {
    width: 3rem;
    height: 3rem;
  }

  .footer-copyright {
    flex: 1;
    flex-direction: column;
    gap: 10%;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .footer-sns-link:hover, .footer-sns-link:focus-visible, .footer-shop-link:hover, .footer-shop-link:focus-visible {
    color: var(--white);
    background: var(--orange);
  }

  .footer-shop-link:hover::after, .footer-shop-link:focus-visible::after {
    background: var(--white);
  }

  .footer-copyright-link:hover, .footer-copyright-link:focus-visible {
    color: var(--orange);
  }

  .loading {
    font-size: 2.4rem;
  }

  .loading-logo {
    width: 16%;
  }
}

/******************************
* Index
******************************/

.index .kv {
  container-type: inline-size;
  position: relative;
  aspect-ratio: 390 / 800;
}

.index .kv-mask {
  position: absolute;
  top: 11%;
  right: 5%;
  width: 135%;
  aspect-ratio: 974 / 872;
  overflow: hidden;
  clip-path: url("#kv-mask");
}

.index .swiper {
  width: 100%;
  height: 100%;
}

.index .slide-media {
  width: 100%;
}

.index .slide-img {
  position: relative;
  left: 15%;
  width: 100%;
  transform: scale(1.05);
}

.index .swiper-slide-active .slide-img {
  animation: kv-zoom 5s ease forwards;
}

.index .kv01 {
  position: absolute;
  top: 2%;
  right: 10%;
  width: 12%;
}

.index .kv-text {
  position: absolute;
  top: 75%;
  left: 7.6%;
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2.6cqw;
  line-height: 1.4;
  letter-spacing: 0.07em;
}

.index .kv02 {
  position: absolute;
  top: 84%;
  left: 8%;
  width: 3.07%;
}

.index .sec02 {
  position: relative;
  z-index: 3;
}

.index .sec02-contents {
  padding: 0 9%;
}

.index .sec02-title {
  margin-bottom: 2em;
}

.index .sec02-title-img {
  width: 46.875%;
}

.index .sec02-text {
  position: relative;
}

.index .sec02-readmore {
  position: relative;
  aspect-ratio: 320 / 570;
  margin-top: 4rem;
}

.index .shape01 {
  position: absolute;
  top: -13%;
  right: -20%;
  width: 50.313%;
  aspect-ratio: 162 / 124;
  background: center / contain url("../index/shape01.png") no-repeat;
}

.index .shape02 {
  position: absolute;
  top: 38%;
  left: -24%;
  width: 57.949%;
  aspect-ratio: 453 / 295;
  background: center / contain url("../index/shape02.png") no-repeat;
}

.index .shape03 {
  position: absolute;
  top: 0;
  right: -15%;
  width: 70.313%;
  aspect-ratio: 449 / 596;
  background: center / contain url("../index/shape03.png") no-repeat;
}

.index .sec02-img01 {
  position: absolute;
  top: 66%;
  left: -17%;
  width: 104.688%;
  aspect-ratio: 335 / 227;
  overflow: hidden;
  clip-path: url("#mask01");
}

.index .img01 {
  width: 100%;
}

.index .readmore-link {
  position: relative;
  padding: 0.7rem 4rem 0.7rem 2rem;
  font-size: 1.1rem;
  color: var(--black);
  border: 0.1rem solid var(--black);
  border-radius: 2rem;
}

.index .readmore-link::after {
  position: absolute;
  inset: 0 0.7rem 0 auto;
  display: block;
  width: 2.6rem;
  height: 1.9rem;
  margin: auto;
  content: '';
  background: center / 100% auto url("../index/arrow.png") no-repeat;
}

.index .readmore-link-big {
  padding: 1rem 5rem 1rem 3rem;
}

.index .readmore-link-big::after {
  inset: 0 1rem 0 auto;
}

.index .external-link {
  position: relative;
  padding: 1rem 1.2rem;
  font-size: 1.2rem;
  color: var(--black);
  text-align: center;
  border: 0.1rem solid var(--black);
  border-radius: 2rem;
}

.index .external-link::after {
  display: inline-block;
  width: 1.3rem;
  height: 1.1rem;
  margin: auto;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  background: center / 100% auto url("../index/btn-mark01.png") no-repeat;
}

.index .sec03 {
  position: relative;
  z-index: 2;
  margin-top: -22%;
}

.index .sec03-bg {
  padding-top: 38%;
  background: var(--orange2) top center / 100% auto url("./bg01.svg") no-repeat;
}

.index .sec03-contents {
  padding: 0 7% 35%;
}

.index .sec03-grid-item {
  padding-top: 15%;
}

.index .sec03-grid-item:first-child {
  padding-top: 10%;
}

.index .sec03-item-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.index .sec03-item-image {
  order: 1;
  width: 80.299%;
  aspect-ratio: 540 / 448;
}

.index .sec03-item-image-mask02 {
  clip-path: url("#mask02");
}

.index .sec03-item-image-mask03 {
  clip-path: url("#mask03");
}

.index .sec03-item-image-image {
  width: 100%;
}

.index .sec03-item-text {
  order: 2;
  width: 19%;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.index .sec03-item-text-p {
  margin-left: auto;
  font-weight: 500;
  line-height: 1.6;
  writing-mode: vertical-rl;
}

.index .sec03-item-name {
  order: 3;
  width: 100%;
  padding: 5% 0 0 6%;
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2.8rem;
}

.index .sec03-item-name-text {
  line-height: 1.1;
}

.index .sec03-item-button {
  position: relative;
  order: 4;
  width: 100%;
  padding: 5% 0;
  text-align: right;
}

.index .sec03-item-button::before {
  position: absolute;
  inset: 0 auto 0 5%;
  width: calc(95% - 15rem);
  height: 0.1rem;
  margin: auto;
  content: '';
  background: repeating-linear-gradient(to right, #000 0 0.4rem, transparent 0.4rem 1rem);
}

.index .sec03-image {
  position: absolute;
  bottom: -6.5%;
  left: 2%;
  width: 57.692%;
}

.index .sec04 {
  position: relative;
  z-index: 1;
}

.index .sec04-bg {
  background: -7% 9% / 40% url("./bg02.png");
}

.index .sec04-contents {
  padding: 30% 7% 20%;
  color: var(--white2);
}

.index .sec04-title {
  margin-top: -10%;
  margin-bottom: 10%;
  color: var(--white2);
  text-align: right;
  -webkit-text-stroke: 0.15rem var(--black);
  paint-order: stroke fill;
}

.index .sec04-news-wrapper {
  max-width: 71.5rem;
}

.index .sec04-news {
  padding-bottom: 2rem;
  margin: 0 auto 2rem;
  border-bottom: 0.1rem solid var(--white2);
}

.index .sec04-news-title {
  padding-bottom: 0.8em;
  font-size: 1.6rem;
  font-weight: 600;
}

.index .sec04-news-body {
  font-size: 1.2rem;
}

.index .sec04-news-body * {
  line-height: 2;
}

.index .sec04-news-date {
  padding-top: 0.8em;
  font-size: 1rem;
  text-align: right;
}

.index .sec04-readmore {
  padding-top: 2rem;
  margin: auto;
  text-align: right;
}

.index .sec04-readmore-link {
  background: var(--orange2);
}

.index .sec05 {
  position: relative;
  margin-top: calc(var(--wave-h) * -1);
}

.index .sec05-bg {
  padding-top: calc(var(--wave-h));
  background: #de911d;
}

.index .sec05-contents {
  padding: 12% 3.85%;
}

.index .sec05-title {
  padding-bottom: 1.6rem;
  padding-left: 3.85%;
  color: var(--white);
}

.index .sec05-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.index .sec05-shop {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3.5rem 3rem;
  background: var(--orange2);
  border: 0.1rem solid var(--black);
  border-radius: 0.4rem;
}

.index .sec05-shop-title {
  padding-bottom: 0.5em;
  font-size: 1.8rem;
  font-weight: 600;
}

.index .sec05-shop-address {
  font-style: normal;
  line-height: 1.8;
}

.index .sec05-shop-map {
  width: 100%;
  aspect-ratio: 57 / 37;
}

.index .sec05-shop-gmap {
  width: 100%;
  height: 100%;
  filter:grayscale(100%);
  border: none;
}

.index .sec05-shop-button {
  text-align: center;
}

.index .sec06-contents {
  padding: 12.308% 9.365% 15.385%;
}

.index .sec06-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem
}

.index .sec06-layout-block {
  display: flex;
  gap: 3rem;
}

.index .sec06-image {
  width: 33.105%;
}

.index .sec06-image-image {
  width: 100%;
}

.index .sec06-text {
  flex: 1;
  font-size: 1.2rem;
}

.index .sec06-title {
  font-size: 3.6rem;
  line-height: 1;
}

.index .sec06-external-button {
  padding-top: 15%;
}

.index .sec06-external-link {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.index .sec06-soon {
  display: inline-block;
  padding: 0.2rem 0.3rem;
  font-size: 1rem;
  line-height: 1;
  color: var(--orange);
  border: 0.1rem solid var(--orange);
  border-radius: 0.2rem;
}

.index .sec07-contents {
  padding: 0 9.487% 15%;
}

.index .sec07-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.2em;
  font-size: 3.6rem;
}

.index .sec07-title-instagram {
  font-family: Nunito, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.index .sec07-title-instagram-link {
  display: flex;
  gap: 0.6em;
  align-items: center;
  color: var(--black);
}

.index .sec07-title-instagram-icon {
  width: 1.4rem;
}

.index .sec07-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.1rem;
}

.index .sec07-block:nth-of-type(n + 5) {
  display: none;
}

.index .sec07-block-image {
  display: block;
  width: 100%;
}

.index .sec08-contents {
  padding: 0 3.85%;
}

.index .sec08-box {
  --cut: 24px;

  position: relative;
  margin: auto;
  clip-path: polygon( var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut) );
  background: var(--black);
}

.index .sec08-box-inner {
  min-height: 200px;
  padding: 2rem;
  margin: 0.1rem;
  clip-path: inherit;
  background: url("./bg03.png") top center / 32% auto;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.index .sec08-box-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 4% 9% 14%;
}

.index .sec08-box-layout-block {
  display: flex;
  flex: 1 0 100%;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}

.index .sec08-box-layout-block-text {
  font-size: 1.4rem;
  color: var(--white);
}

.index .sec08-title {
  font-size: 3.6rem;
}

.index .sec08-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
}

.index .sec08-readmore {
  text-align: center;
}

.index .sec08-readmore-link {
  display: inline-block;
  min-width: 21rem;
  padding: 1.2rem 1.2rem 1.2rem 0;
  font-size: 1.2rem;
  text-align: center;
  background: var(--orange2);
}

@media screen and (width >= 800px) {
  .index .kv {
    aspect-ratio: 160 / 115;
  }

  .index .kv-mask {
    top: 0;
    right: 0;
    left: 0;
    width: 66%;
    aspect-ratio: 974 / 872;
    margin: auto;
  }

  .index .slide-img {
    left: 0;
  }

  .index .kv01 {
    top: 1%;
    right: 8%;
    width: 4.75%;
  }

  .index .kv-text {
    top: 60%;
    left: 4%;
    font-size: 1.6rem;
    line-height: 1.3;
    letter-spacing: 0.05em;
    transform: rotate(90deg);
  }

  .index .kv02 {
    top: 65%;
    right: 8%;
    left: auto;
    width: 1.473%;
  }

  .index .sec02-contents {
    padding: 10% 0 0;
  }

  .index .sec02-title-img {
    width: 55.897%;
  }

  .index .sec02-text {
    width: 26.087%;
    min-width: 30rem;
    max-width: 40rem;
    margin-left: 40%;
  }

  .index .sec02-readmore {
    margin-top: 6rem;
  }

  .index .shape01 {
    top: 18%;
    right: -100%;
    width: 83.333%;
  }

  .index .shape02 {
    top: 3%;
    left: -150%;
    width: 118.205%;
  }

  .index .shape03 {
    top: -85%;
    right: auto;
    left: -120%;
    width: 100.256%;
  }

  .index .sec02-img01 {
    top: 26%;
    width: 150.256%;
  }

  .index .readmore-link {
    padding: 1.1rem 5rem 1.1rem 2rem;
    font-size: 1.6rem;
    border-radius: 3rem;
    transition: all 0.3s;
  }

  .index .readmore-link::after {
    inset: 0 1rem 0 auto;
    width: 3.1rem;
    height: 2.3rem;
  }

  .index .readmore-link-big {
    padding: 1.4rem 9rem 1.4rem 8rem;
  }

  .index .readmore-link-big::after {
    inset: 0 1.1rem 0 auto;
    width: 3.8rem;
    height: 2.8rem;
  }

  .index .external-link {
    padding: 1.1rem 3rem;
    font-size: 1.6rem;
    border-radius: 3rem;
    transition: all 0.3s;
  }

  .index .external-link::after {
    width: 2.34rem;
    height: 1.98rem;
  }

  .index .readmore-link:hover, .index .readmore-link:focus-visible {
    color: var(--white);
    background: var(--orange);
  }

  .index .sec03-title {
    padding-left: 2.408%;
  }

  .index .sec03-bg {
    padding-top: 20%;
  }

  .index .sec03-contents {
    padding: 0 3% 10%;
  }

  .index .sec03-layout {
    display: grid;
    grid-template-columns: 50% 50%;
  }

  .index .sec03-grid-item {
    padding-top: 10%;
  }

  .index .sec03-grid-item:first-child {
    padding-top: 10%;
  }

  .index .sec03-item-layout {
    width: 82.5%;
    height: 100%;
    margin: auto;
  }

  .index .sec03-item-text {
    font-size: 1.4rem;
  }

  .index .sec03-item-name {
    font-size: 3.6rem;
  }

  .index .sec03-readmore-link {
    font-size: 1.3rem
  }

  .index .sec03-readmore-link::after {
    inset: 0 1.2rem 0 auto;
    width: 3.1rem;
    height: 2.3rem;
  }

  .index .sec03-image {
    bottom: -4%;
    left: 2%;
    width: 40%;
  }

  .index .sec03-grid-item05 {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
  }

  .index .sec04-bg {
    background-size: 22%;
  }

  .index .sec04-contents {
    padding: 10% 7% 20%;
  }

  .index .sec04-title {
    margin-top: 0;
    margin-bottom: 5%;
  }

  .index .sec04-news {
    padding-bottom: 3rem;
    margin: 0 auto 3rem;
  }

  .index .sec04-news-title {
    font-size: 2.4rem;
  }

  .index .sec04-news-body {
    font-size: 1.6rem;
  }

  .index .sec04-news-date {
    font-size: 1.4rem;
  }

  .index .sec05-bg {
    background: center / cover url("../index/shop-bg.jpg") no-repeat;
  }

  .index .sec05-contents {
    padding: 8% 3.85% 12%;
  }

  .index .sec05-title {
    width: 80.131%;
    min-width: 70rem;
    max-width: 120rem;
    padding-bottom: 2.5rem;
    padding-left: 0;
    margin: auto
  }

  .index .sec05-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 80.131%;
    min-width: 70rem;
    max-width: 120rem;
    margin: auto;
  }

  .index .sec05-shop {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 3rem;
    padding: 0;
    background: var(--orange2);
    border: 0.1rem solid var(--black);
    border-radius: 0.4rem;
  }

  .index .sec05-shop-text {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    padding: 6rem 0 6rem 6rem;
  }

  .index .sec05-shop-title {
    padding-bottom: 0.5em;
    font-size: 1.8rem;
    font-weight: 600;
  }

  .index .sec05-shop-address {
    font-style: normal;
    line-height: 1.8;
  }

  .index .sec05-shop-map {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    width: 100%;
    aspect-ratio: auto;
  }

  .index .sec05-shop-gmap {
    width: 100%;
    height: 100%;
    filter:grayscale(100%);
    border: none;
  }

  .index .sec05-shop-button {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    padding: 6rem 0 6rem 6rem;
    text-align: left;
  }

  .index .sec06-contents {
    padding-right: 5%;
    padding-bottom: 15%;
    padding-left: 5%;
  }

  .index .sec06-layout {
    gap: 4rem;
  }

  .index .sec06-layout-block {
    flex: 0 1 calc(50% - 2rem);
    gap: 5rem;
  }

  .index .sec06-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 6%;
    font-size: 1.4rem;
  }

  .index .sec06-image {
    width: 30.026%;
  }

  .index .sec06-external-link {
    padding: 0.7rem 2rem;
  }

  .index .index .sec06-soon {
    font-size: 1.2rem;
  }

  .index .sec07-contents {
    padding: 0 8.696% 10%;
  }

  .index .sec07-title {
    padding-bottom: 0.9em;
    font-size: 5.8rem;
  }

  .index .sec07-title-instagram {
    font-size: 1.6rem;
  }

  .index .sec07-title-instagram-icon {
    width: 2.8rem;
  }

  .index .sec07-layout {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .index .sec07-block:nth-of-type(n + 5) {
    display: block;
  }

  .index .sec07-title-instagram-link {
    transition: color 0.3s;
  }

  .index .sec07-title-instagram-link:hover, .index .sec07-title-instagram-link:focus-visible {
    color: var(--orange);
  }

  .index .sec07-block-link .sec07-block-image {
    transition: transform 0.3s;
  }

  .index .sec07-block-link:hover .sec07-block-image, .index .sec07-block-link:focus-visible .sec07-block-image {
    transform: scale(1.03);
  }

  .index .sec08-contents {
    padding: 0 4.281%;
  }

  .index .sec08-box {
    --cut: 56px;
  }

  .index .sec08-box-layout {
    gap: 15%;
    padding: 4% 7% 8%;
  }

  .index .sec08-box-layout-block {
    flex: 0 1 40%;
    gap: 4rem;
  }

  .index .sec08-box-layout-block:nth-of-type(2) {
    flex: 0 1 30%;
  }

  .index .sec08-title {
    font-size: 5.8rem;
  }

  .index .sec08-subtitle {
    font-size: 2rem;
  }

  .index .sec08-readmore {
    text-align: left;
  }
}

@media screen and (width >= 1300px) {
  .index .sec02-text {
    margin-left: 47.826%;
  }

  .index .shape01 {
    right: -116%;
  }

  .index .shape02 {
    left: -216%;
  }

  .index .shape03 {
    top: -74%;
    left: -134%;
  }

  .index .sec03-contents {
    padding: 0 10.836% 10%;
  }

  .index .sec03-item-layout {
    height: auto;
    margin: 0;
  }

  .index .sec03-item-name {
    flex: 1;
    padding: 5% 0 0;
  }

  .index .sec03-item-button {
    display: flex;
    align-items: flex-end;
    width: 15rem;
    padding: 0;
  }

  .index .sec03-item-button::before {
    content: none;
  }

  .index .sec03-grid-item01 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }

  .index .sec03-grid-item02 {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }

  .index .sec03-grid-item03 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }

  .index .sec03-grid-item04 {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }

  .index .sec03-grid-item01 .sec03-item-layout {
    margin-top: -20%;
    margin-left: auto;
  }

  .index .sec03-grid-item01 .sec03-item-image {
    order: 2;
  }

  .index .sec03-grid-item01 .sec03-item-text {
    order: 1;
  }

  .index .sec03-grid-item01 .sec03-item-text-p {
    margin-right: auto;
    margin-left: 0;
  }

  .index .sec03-grid-item02 .sec03-item-image {
    order: 2;
  }

  .index .sec03-grid-item02 .sec03-item-text {
    order: 1;
  }

  .index .sec03-grid-item02 .sec03-item-text-p {
    margin-right: auto;
    margin-left: 0;
  }

  .index .sec03-grid-item03 .sec03-item-layout {
    margin-top: -13%;
    margin-left: auto;
  }

  .index .sec03-grid-item05 .sec03-item-image {
    order: 2;
  }

  .index .sec03-grid-item05 .sec03-item-text {
    order: 1;
  }

  .index .sec03-grid-item05 .sec03-item-layout {
    margin-left: auto;
  }

  .index .sec03-grid-item05 .sec03-item-text-p {
    margin-right: auto;
    margin-left: 0;
  }

  .index .sec03-image {
    bottom: -4%;
    left: 2%;
    width: 35.318%;
  }

  .index .sec04-contents {
    padding: 15% 7% 20%;
  }

  .index .sec04-layout {
    display: grid;
    grid-template-rows: 10rem 1fr;
    grid-template-columns: 1fr 20rem;
  }

  .index .sec04-title {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    margin-top: -1rem;
    margin-bottom: 0;
    line-height: 1;
  }

  .index .sec04-news-wrapper {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
  }

  .index .sec04-news:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  .index .sec04-readmore {
    display: flex;
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    align-items: flex-end;
    height: 100%;
  }

  .index .sec04-readmore-link::after {
    inset: 0 0.7rem 0 auto;
    width: 3.1rem;
    height: 2.3rem;
  }

  .index .sec06-contents {
    padding-right: 9.365%;
    padding-left: 9.365%;
  }

  .index .sec06-layout {
    gap: 14rem;
  }

  .index .sec06-layout-block {
    flex: 0 1 calc(50% - 7rem);
  }

  .index .sec06-title {
    font-size: 5.8rem;
  }

  .index .sec08-box-inner {
    background-position: 50% -120%;
    background-size: 24% auto;
  }

  .index .sec08-box-layout {
    gap: 20%;
    padding: 4% 14.7% 6%;
  }

  .index .sec08-readmore-link {
    width: 26rem;
    min-width: none;
    padding: 1.4rem 1.4rem 1.4rem 0;
  }
}

/******************************
* About
******************************/

.about .sec01 {
  position: relative;
  z-index: 3;
}

.about .sec01-img01-mask {
  aspect-ratio: 335 / 227;
  overflow: hidden;
  clip-path: url("#mask01");
}

.about .sec01-block {
  position: relative;
}

.about .sec01-text01 {
  box-sizing: content-box;
  max-width: 33rem;
  padding: 80% 9.487% 0;
  margin: auto;
}

.about .sec01-title {
  margin-bottom: 3rem;
  font-size: 3.6rem;
}

.about .sec01-subtitle-image {
  width: 9.9rem;
}

.about .sec01-img01 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 108.126%;
  aspect-ratio: 732 / 496;
  transform: translateX(-50%);
}

.about .sec01-img01-image {
  position: relative;
  left: 50%;
  display: block;
  width: 97%;
  margin-top: -18%;
  transform: translateX(-50%);
}

.about .sec01-text02 {
  box-sizing: content-box;
  max-width: 33rem;
  padding: 90% 9.487% 0;
  margin: auto;
}

.about .sec01-img02 {
  position: absolute;
  top: 5%;
  left: -5%;
  width: 50%;
  aspect-ratio: 394 / 519;
}

.about .sec01-img02-image {
  width: 100%;
}

.about .sec01-img03 {
  position: absolute;
  top: 25%;
  right: -25%;
  width: 57.949%;
  aspect-ratio: 453 / 295;
}

.about .sec01-img03-image {
  width: 100%;
}

.about .sec01-text03 {
  box-sizing: content-box;
  max-width: 33rem;
  padding: 60% 9.487% 15%;
  margin: auto;
}

.about .sec01-img04 {
  position: absolute;
  top: 17%;
  left: -15%;
  width: 41.41%;
  aspect-ratio: 323 / 248;
}

.about .sec01-img04-image {
  width: 100%;
}

.about .sec01-img05 {
  position: absolute;
  top: -1%;
  right: -15%;
  width: 77.051%;
  aspect-ratio: 601 / 385;
}

.about .sec01-img05-image {
  width: 100%;
}

.about .sec01-img06 {
  position: absolute;
  right: -5%;
  bottom: -33%;
  width: 34.487%;
  aspect-ratio: 269 / 363;
}

.about .sec01-img06-image {
  width: 100%;
}

.about .sec02-bg {
  padding-top: 38%;
  padding-bottom: 20%;
  background: var(--orange2) top center / 100% auto url("./bg01.svg") no-repeat;
}

.about .sec02 {
  position: relative;
  z-index: 2;
}

.about .sec02-contents {
  padding: 0 8.974%;
}

.about .sec02-title {
  position: absolute;
  top: -4%;
  left: 8.974%;
  margin-left: auto;
  font-size: 1.8rem;
  font-weight: 600;
  writing-mode: vertical-rl;
}

.about .sec02-layout {
  max-width: 130rem;
  margin: 0 auto;
}

.about .sec02-block {
  padding-top: 14.103%;
}

.about .sec02-block:first-child {
  padding-top: 2%;
}

.about .sec02-block-number {
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 3.6rem;
  color: var(--orange);
  text-align: center;
  -webkit-text-stroke: 0.15rem var(--black);
  paint-order: stroke fill;
}

.about .sec02-block-image {
  padding: 2.5rem 0 3.5rem;
}

.about .sec02-block-image-mask02 {
  width: 84.68%;
  aspect-ratio: 538 / 432;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask02");
}

.about .sec02-block-image-image {
  width: 100%;
}

.about .sec02-block-text {
  font-size: 1.3rem;
}

.about .sec02-block-text > * {
  max-width: 54rem;
}

.about .sec02-block-text-title {
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
}

.about .sec02-block-image-mask03 {
  width: 84.68%;
  aspect-ratio: 540 / 448;
  margin: 0 0 0 auto;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask03");
}

.about .sec02-block-image-mask04 {
  width: 84.68%;
  aspect-ratio: 540 / 462;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask04");
}

.about .sec03 {
  position: relative;
  z-index: 1;
  margin-top: calc(var(--wave-h) * -1);
}

.about .sec03-contents {
  padding: calc(var(--wave-h) + 6.923%) 3.846% 6.923%;
  background: url("./bg03.png") top center / 32% auto;
}

.about .sec03-box {
  --cut: 27px;

  position: relative;
  padding: 0.1rem;
  margin: auto;
  clip-path: polygon( var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut) );
  background: var(--black);
}

.about .sec03-box::before {
  --cut: 26px;

  position: absolute;
  inset: 0.1rem;
  clip-path: polygon( var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut) );
  pointer-events: none;
  content: "";
  background: var(--orange2);
}

.about .sec03-box::after {
  --cut: 24.5px;

  position: absolute;
  inset: 0.5rem;
  clip-path: polygon( var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut) );
  content: "";
  background: var(--black);
}

.about .sec03-box-inner {
  --cut: 24px;

  position: relative;
  z-index: 1;
  min-height: 200px;
  padding: 15.517% 12.069%;
  margin: 0.5rem;
  clip-path: polygon( var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut) );
  background: var(--orange2);
}

.about .sec03-block-image-mask03 {
  width: 91.762%;
  aspect-ratio: 540 / 448;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask03");
}

.about .sec03-block-image-image {
  position: relative;
  left: 50%;
  width: 108%;
  transform: translateX(-50%);
}

.about .sec03-title {
  padding-top: 20%;
  font-size: 1.8rem;
  font-weight: 600;
}

.about .sec03-title::before {
  display: block;
  padding-bottom: 8%;
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.2rem;
  content: "Illustration";
}

@media screen and (width >= 800px) {
  .about .sec01-text01 {
    max-width: none;
    padding: 0 7%;
    margin: 0;
  }

  .about .sec01-title {
    font-size: 7.2rem;
  }

  .about .sec01-subtitle-image {
    width: 15.3rem;
  }

  .about .sec01-img01 {
    top: 18%;
    right: 1%;
    left: auto;
    width: 40%;
    transform: none;
  }

  .about .sec01-img01-image {
    width: 100%;
  }

  .about .sec01-text02 {
    max-width: none;
    padding: 15.518% 7% 0 30%;
    margin: 0;
  }

  .about .sec01-img02 {
    top: 28%;
    left: -2%;
    width: 26.355%;
  }

  .about .sec01-img03 {
    top: 0;
    right: -4%;
    width: 21.739%;
  }

  .about .sec01-text03 {
    max-width: none;
    padding: 16.656% 14% 10%;
    margin: 0;
  }

  .about .sec01-img04 {
    top: -3%;
    left: -9%;
    width: 17.525%;
  }

  .about .sec01-img05 {
    top: 15%;
    right: -5%;
    width: 39.264%;
  }

  .about .sec01-img06 {
    right: 8%;
    bottom: -55%;
    width: 17.391%;
  }

  .about .sec02-bg {
    padding-top: 20%;
  }

  .about .sec02-contents {
    padding: 0 4%;
  }

  .about .sec02-title {
    position: static;
    margin-left: 5.443%;
    font-size: 3.2rem;
    writing-mode: horizontal-tb;
  }

  .about .sec02-block {
    position: relative;
    display: flex;
    gap: 3rem;
    padding-top: 12rem;
  }

  .about .sec02-block:first-child {
    padding-top: 8rem;
  }

  .about .sec02-block-number {
    position: absolute;
    top: 10rem;
    left: 0;
    order: 2;
    width: 4rem;
    font-size: 4rem;
  }

  .about .sec02-block-image {
    order: 1;
    width: 45%;
    padding: 4rem 0 0;
  }

  .about .sec02-block-image-mask02 {
    width: 82.31%;
    margin: 0;
  }

  .about .sec02-block-text {
    flex: 1;
    order: 3;
    font-size: 1.6rem;
  }

  .about .sec02-block-text-title {
    font-size: 2rem;
    text-align: left;
  }

  .about .sec02-block-image-mask03 {
    width: 82.13%;
    margin: 0 0 0 auto;
  }

  .about .sec02-block-image-mask04 {
    width: 88.628%;
    margin: 0;
  }

  .about .sec02-block:nth-of-type(2) .sec02-block-number {
    left: 60%;
    order: 1;
    width: calc(4rem + 4%);
    padding-left: 4%;
  }

  .about .sec02-block:nth-of-type(2) .sec02-block-image {
    order: 3;
  }

  .about .sec02-block:nth-of-type(2) .sec02-block-text {
    order: 2;
  }

  .about .sec03-contents {
    padding: calc(var(--wave-h) + 6.154%) 8.562% 6.154%;
    background-position: 50% -5%;
    background-size: 22% auto;
  }

  .about .sec03-box {
    --cut: 62px;
  }

  .about .sec03-box::before {
    --cut: 61.5px;
  }

  .about .sec03-box::after {
    --cut: 56.5px;

    inset: 1rem;
  }

  .about .sec03-box-inner {
    --cut: 56px;

    padding: 4% 5%;
    margin: 1rem;
  }

  .about .sec03-layout {
    display: flex;
    gap: 10.691%;
    align-items: center;
    justify-content: space-between;
  }

  .about .sec03-block-image {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    order: 2;
  }

  .about .sec03-block-image-mask03 {
    width: 94.78%;
  }

  .about .sec03-block-text {
    order: 1;
    width: 55%;
    font-size: 1.4rem;
  }

  .about .sec03-title {
    padding-top: 0;
    font-size: 2.8rem;
  }

  .about .sec03-title::before {
    padding-bottom: 4%;
    font-size: 2rem;
  }
}

@media screen and (width >= 1300px) {
  .about .sec01-text01 {
    padding: 0 13.043%;
  }

  .about .sec01-img01 {
    width: 48.963%;
    max-width: 80rem;
  }

  .about .sec01-text02 {
    padding: 15.518% 13.043% 0 47.559%;
  }

  .about .sec01-img02 {
    left: 10%;
    max-width: 45rem;
  }

  .about .sec01-img03 {
    top: 15%;
  }

  .about .sec01-img04 {
    top: 18%;
  }

  .about .sec01-img05 {
    right: 7%;
    max-width: 65rem
  }

  .about .sec01-img06 {
    right: 8%;
    bottom: -68%;
    max-width: 30rem;
  }

  .about .sec02-contents {
    padding: 0 8.829%;
  }

  .about .sec02-block {
    padding-top: 11.21%;
  }

  .about .sec02-block:first-child {
    padding-top: 8%;
  }

  .about .sec02-block-number {
    position: static;
    top: 14%;
  }

  .about .sec02-block-image {
    padding: 0;
  }

  .about .sec02-block-text {
    padding-top: 5rem;
  }

  .about .sec03-box-inner {
    padding: 6.058% 9.935%;
  }

  .about .sec03-block-text {
    width: 46.777%;
  }
}

/******************************
* Item List
******************************/

.sec-itemlist {
  z-index: 1;
  margin-top: calc(var(--wave-h) * -1);
}

.sec-itemlist-bg {
  background: var(--orange2);
}

.sec-itemlist-contents {
  padding: calc(var(--wave-h) + 15.385%) 9.615% 15.385%;
}

.sec-itemlist-title {
  padding-bottom: 1em;
  font-size: 2.5rem;
  text-align: center;
}

.sec-itemlist-layout {
  display: grid;
  grid-template-columns: 45.382% 45.382%;
  gap: 3rem 9.236%;
}

.sec-itemlist-block {
  display: flex;
  flex-direction: column;
  max-width: 26rem;
  margin: 0 auto;
}

.sec-itemlist-block-image-image {
  width: 100%;
}

.sec-itemlist-block-text {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}

.sec-itemlist-block-text-count {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  padding-top: 1rem;
  font-size: 1.1rem;
  color: var(--orange);
}

@media screen and (width >= 800px) {
  .sec-itemlist-contents {
    padding: calc(var(--wave-h) + 10.033%) 5% 10.033%;
  }

  .sec-itemlist-title {
    padding-bottom: 0;
    font-size: 2.4rem;
  }

  .sec-itemlist-layout {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6rem 5%;
    padding-top: 9.114%;
  }

  .sec-itemlist-block-text {
    font-size: 1.8rem;
  }

  .sec-itemlist-block-text-count {
    font-size: 1.4rem;
  }

  .sec-itemlist-block-link {
    color: var(--black);
    transition: color 0.3s;
  }

  .sec-itemlist-block-link:hover, .sec-itemlist-block-link:focus-visible {
    color: var(--orange);
  }
}

@media screen and (width >= 1300px) {
  .sec-itemlist-contents {
    padding: calc(var(--wave-h) + 10.033%) 13.11% 10.033%;
  }

  .sec-itemlist-layout {
    gap: 6rem 14.687%;
  }
}

/******************************
* Items
******************************/

  .sec02-block-title-vertical {
    display: none;
  }

  @media screen and (width >= 800px) {
  .sec02-layout .sec02-block .sec02-block-feature-circle {
    top: 1.6rem;
  }

  .sec02-layout .sec02-block .sec02-block-feature-octagon {
    top: 3.6rem;
  }

  .sec02-block-title-x {
    position: relative;
    left: 0.11em;
  }

  .sec02-block-title-vertical {
    display: block;
  }

  .sec02-block-title-horizontal {
    display: none;
  }
}

/******************************
* Lineup Biscuit
******************************/

.item01 .sec01 {
  position: relative;
  z-index: 3;
}

.item01 .sec01-bg {
  background: var(--white);
}

.item01 .sec01-image-mask05 {
  width: 84.359%;
  max-width: 84.7rem;
  aspect-ratio: 658 / 488;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask05");
}

.item01 .sec01-image-image {
  width: 101%;
}

.item01 .sec01-text {
  padding: 12.564% 9.49%;
}

.item01 .sec01-title {
  padding-bottom: 0.2em;
  font-size: 3.6rem;
  line-height: 1;
}

.item01 .sec01-title-jp {
  display: block;
  padding-top: 1em;
  font-size: 2rem;
  font-weight: 600;
}

.item01 .sec02 {
  position: relative;
  z-index: 2;
  margin-top: calc(var(--wave-h) * -1);
}

.item01 .sec02-bg {
  background: -7% 9% / 40% url("./bg02.png");
}

.item01 .sec02-contents {
  padding: calc(var(--wave-h) + 6.41%) 3.846% 10%;
}

.item01 .sec02-box {
  padding: 10.335%;
  background: var(--orange2);
  border: 0.1rem solid var(--black);
  border-radius: 0.4rem;
}

.item01 .sec02-block-text {
  padding-top: 8%;
  font-size: 1.3rem;
}

.item01 .sec02-title {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.item01 .sec02-layout {
  padding-bottom: 16.667%;
}

.item01 .sec-title + .sec02-layout {
  margin-top: -15%;
}

.item01 .sec02-block-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.7em;
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
}

.item01 .sec02-block-feature-feature {
  font-size: 1.2rem;
}

.item01 .sec02-block-feature-number {
  padding-left: 0.3em;
  font-size: 3.6rem;
  color: var(--orange);
  -webkit-text-stroke: 0.15rem var(--black);
  paint-order: stroke fill;
  -webkit-font-smoothing: antialiased;
}

.item01 .sec02-block-image-mask02 {
  width: 98.587%;
  max-width: 40rem;
  aspect-ratio: 538 / 432;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask02")
}

.item01 .sec02-block-image-image {
  width: 101%;
}

.item01 .sec02-block-title {
  padding-top: 11.64%;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
}

.item01 .sec02-block-image-mask03 {
  width: 98.587%;
  max-width: 40rem;
  aspect-ratio: 540 / 448;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask03");
}

.item01 .sec02-block-image-mask04 {
  width: 98.587%;
  max-width: 40rem;
  aspect-ratio: 540 / 462;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask04");
}

@media screen and (width >= 800px) {
  .item01 .sec01 {
    margin-top: -6rem;
  }

  .item01 .sec01-image-mask05 {
    width: 65%;
  }

  .item01 .sec01-text {
    padding: 4.816% 12.308% 9.365%;
    text-align: center;
  }

  .item01 .sec01-title {
    font-size: 7.2rem;
  }

  .item01 .sec01-title-jp {
    font-size: 2.4rem;
  }

  .item01 .sec02-bg {
    background-position: 36.5% 39.5%;
    background-size: 21%;
  }

  .item01 .sec02-contents {
    padding: calc(var(--wave-h) + 9.365%) 4% 10%;
  }

  .item01 .sec02-box {
    padding: 8.879% 9% 0;
    border-radius: 0.8rem;
  }

  .item01 .sec02-block-text {
    padding: 7% 5% 0;
    font-size: 1.6rem;
  }

  .item01 .sec02-title {
    font-size: 3.2rem;
    font-weight: 500;
    text-align: center;
    writing-mode: horizontal-tb;
  }

  .item01 .sec02-layout {
    display: grid;
    grid-template-columns: 1fr 62% 1fr;
  }

  .item01 .sec-title + .sec02-layout {
    margin-top: 11%;
  }

  .item01 .sec02-block-feature {
    position: relative;
    top: 1.4rem;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 0;
  }

  .item01 .sec02-block-feature-feature {
    font-size: 2rem;
    letter-spacing: 0.06em;
    transform: rotate(90deg);
  }

  .item01 .sec02-block-feature-number {
    padding-top: 4%;
    padding-left: 0;
    font-size: 7.2rem;
  }

  .item01 .sec02-block-image-mask02 {
    width: 81.684%;
    max-width: none;
  }

  .item01 .sec02-block-title {
    height: auto;
    padding-top: 0;
    font-size: 2.4rem;
    line-height: 1.45;
    text-align: left;
    letter-spacing: 0.15em;
    white-space: nowrap;
    writing-mode: vertical-rl;
  }

  .item01 .sec02-block-image-mask03 {
    width: 78.082%;
    max-width: none;
  }

  .item01 .sec02-block-image-mask04 {
    width: 78.082%;
    max-width: none;
  }

  .item01 .sec02-layout .sec02-block:nth-of-type(1) {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }

  .item01 .sec02-layout .sec02-block:nth-of-type(2) {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }

  .item01 .sec02-layout .sec02-block:nth-of-type(3) {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
  }

  .item01 .sec02-layout .sec02-block:nth-of-type(4) {
    grid-row: 2 / 3;
    grid-column: 1 / 4;
  }
}

@media screen and (width >= 1300px) {
  .item01 .sec02-contents {
    padding: calc(var(--wave-h) + 9.365%) 8.562% 10%;
  }

  .item01 .sec02-box {
    padding: 8.879% 13.559% 0;
  }

  .item01 .sec02-block-title {
    /* height: 100%; */
    font-size: 2.8rem;
  }
}

/******************************
* Lineup Biscuit Sandwich
******************************/

.item02 .sec01 {
  position: relative;
  z-index: 3;
}

.item02 .sec01-bg {
  background: var(--white);
}

.item02 .sec01-image-mask02 {
  width: 84.359%;
  max-width: 84.7rem;
  aspect-ratio: 538 / 432;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask02");
}

.item02 .sec01-image-image {
  width: 100%;
}

.item02 .sec01-text {
  padding: 12.564% 9.49%;
}

.item02 .sec01-title {
  padding-bottom: 0.2em;
  font-size: 3.6rem;
  line-height: 1;
}

.item02 .sec01-title-jp {
  display: block;
  padding-top: 1em;
  font-size: 2rem;
  font-weight: 600;
}

.item02 .sec02 {
  position: relative;
  z-index: 2;
  margin-top: calc(var(--wave-h) * -1);
}

.item02 .sec02-bg {
  background: -7% 9% / 40% url("./bg02.png");
}

.item02 .sec02-contents {
  padding: calc(var(--wave-h) + 6.41%) 3.846% 10%;
}

.item02 .sec02-box {
  padding: 10.335%;
  background: var(--orange2);
  border: 0.1rem solid var(--black);
  border-radius: 0.4rem;
}

.item02 .sec02-block-text {
  padding-top: 8%;
  font-size: 1.3rem;
}

.item02 .sec02-title {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  writing-mode: vertical-rl;
}

.item02 .sec02-layout { /* stylelint-disable-line no-descending-specificity */
  padding-bottom: 16.667%;
}

.item02 .sec-title + .sec02-layout {
  margin-top: -15%;
}

.item02 .sec02-block-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.7em;
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
}

.item02 .sec02-block-feature-feature {
  font-size: 1.2rem;
  font-weight: 600;
}

.item02 .sec02-block-feature-number {
  padding-left: 0.3em;
  font-size: 3.6rem;
  color: var(--orange);
  -webkit-text-stroke: 0.15rem var(--black);
  paint-order: stroke fill;
}

.item02 .sec02-block-image-mask02 {
  width: 98.587%;
  max-width: 40rem;
  aspect-ratio: 538 / 432;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask02")
}

.item02 .sec02-block-image-image {
  width: 101%;
}

.item02 .sec02-block-title {
  padding-top: 11.64%;
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
}

.item02 .sec02-block-image-mask03 {
  width: 98.587%;
  max-width: 40rem;
  aspect-ratio: 540 / 448;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask03");
}

.item02 .sec02-block-image-mask04 {
  width: 98.587%;
  max-width: 40rem;
  aspect-ratio: 540 / 462;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask04");
}

@media screen and (width >= 800px) {
  .item02 .sec01 {
    margin-top: -6rem;
  }

  .item02 .sec01-image-mask05 {
    width: 65%;
  }

  .item02 .sec01-text {
    padding: 4.816% 12.308% 9.365%;
    text-align: center;
  }

  .item02 .sec01-title {
    font-size: 7.2rem;
  }

  .item02 .sec01-title-jp {
    font-size: 2.4rem;
  }

  .item02 .sec02-bg {
    background-position: 36.5% 39.5%;
    background-size: 21%;
  }

  .item02 .sec02-contents {
    padding: calc(var(--wave-h) + 9.365%) 4% 10%;
  }

  .item02 .sec02-box {
    padding: 8.879% 9% 0;
    border-radius: 0.8rem;
  }

  .item02 .sec02-block-text {
    padding: 7% 5% 0;
    font-size: 1.6rem;
  }

  .item02 .sec02-title {
    font-size: 3.2rem;
    text-align: center;
    writing-mode: horizontal-tb;
  }

  .item02 .sec02-layout {
    display: grid;
    grid-template-columns: 1fr 64.778% 1fr;
  }

  .item02 .sec-title + .sec02-layout {
    margin-top: 11%;
  }

  .item02 .sec02-block-feature {
    position: relative;
    top: 1.4rem;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 0;
  }

  .item02 .sec02-block-feature-feature {
    font-size: 2rem;
    transform: rotate(90deg);
  }

  .item02 .sec02-block-feature-number {
    padding-top: 4%;
    padding-left: 0;
    font-size: 7.2rem;
  }

  .item02 .sec02-block-image-mask02 {
    width: 78.082%;
    max-width: none;
  }

  .item02 .sec02-block-title {
    height: auto;
    padding-top: 0;
    font-size: 2.4rem;
    line-height: 1.45;
    text-align: left;
    letter-spacing: 0.15em;
    white-space: nowrap;
    writing-mode: vertical-rl;
  }

  .item02 .sec02-block-image-mask03 {
    width: 78.082%;
    max-width: none;
  }

  .item02 .sec02-block-image-mask04 {
    width: 78.082%;
    max-width: none;
  }

  .item02 .sec02-layout .sec02-block:nth-of-type(1) {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }

  .item02 .sec02-layout .sec02-block:nth-of-type(2) {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }

  .item02 .sec02-layout .sec02-block:nth-of-type(3) {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
  }

  .item02 .sec02-layout .sec02-block:nth-of-type(4) {
    grid-row: 2 / 3;
    grid-column: 1 / 4;
  }
}

@media screen and (width >= 1300px) {
  .item02 .sec02-contents {
    padding: calc(var(--wave-h) + 9.365%) 8.562% 10%;
  }

  .item02 .sec02-box {
    padding: 8.879% 13.559% 0;
  }

  .item02 .sec02-block-title {
    /* height: 100%; */
    font-size: 2.8rem;
  }
}

/******************************
* Lineup Fuwa-Fufu Cake
******************************/

.item03 .sec01 {
  position: relative;
  z-index: 3;
}

.item03 .sec01-bg {
  background: var(--white);
}

.item03 .sec01-image-mask05 {
  width: 84.359%;
  max-width: 84.7rem;
  aspect-ratio: 658 / 488;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask05");
}

.item03 .sec01-image-image {
  width: 101%;
}

.item03 .sec01-text {
  padding: 12.564% 9.49%;
}

.item03 .sec01-title {
  padding-bottom: 0.2em;
  font-size: 3.6rem;
  line-height: 1;
}

.item03 .sec01-title-jp {
  display: block;
  padding-top: 1em;
  font-size: 2rem;
  font-weight: 600;
}

.item03 .sec02 {
  position: relative;
  z-index: 2;
  margin-top: calc(var(--wave-h) * -1);
}

.item03 .sec02-bg {
  background: -7% 9% / 40% url("./bg02.png");
}

.item03 .sec02-contents {
  padding: calc(var(--wave-h) + 6.41%) 3.846% 10%;
}

.item03 .sec02-box {
  padding: 10.335%;
  background: var(--orange2);
  border: 0.1rem solid var(--black);
  border-radius: 0.4rem;
}

.item03 .sec02-block-text {
  padding-top: 8%;
  font-size: 1.3rem;
}

.item03 .sec02-title {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  writing-mode: vertical-rl;
}

.item03 .sec02-layout { /* stylelint-disable-line no-descending-specificity */
  padding-bottom: 16.667%;
}

.item03 .sec-title + .sec02-layout {
  margin-top: -15%;
}

.item03 .sec02-block-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1rem;
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
}

.item03 .sec02-block-feature-feature {
  font-size: 1.2rem;
  font-weight: 600;
}

.item03 .sec02-block-feature-number {
  padding-left: 0.3em;
  font-size: 3.6rem;
  color: var(--orange);
  -webkit-text-stroke: 0.15rem var(--black);
  paint-order: stroke fill;
}

.item03 .sec02-block-image-mask02 {
  width: 98.587%;
  max-width: 40rem;
  aspect-ratio: 538 / 432;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask02")
}

.item03 .sec02-block-image-image {
  width: 101%;
}

.item03 .sec02-block-title {
  padding-top: 11.64%;
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
}

.item03 .sec02-block-title2 {
  padding-bottom: 1.7em;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.15em;
}

.item03 .sec02-block-title2-border {
  display: inline-block;
  padding-bottom: 0.6em;
  border-bottom: 0.2rem solid var(--orange);
}

.item03 .sec02-block-image-mask03 {
  width: 98.587%;
  max-width: 40rem;
  aspect-ratio: 540 / 448;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask03");
}

.item03 .sec02-block-image-mask04 {
  width: 98.587%;
  max-width: 40rem;
  aspect-ratio: 540 / 462;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask04");
}

@media screen and (width >= 800px) {
  .item03 .sec01 {
    margin-top: -6rem;
  }

  .item03 .sec01-image-mask05 {
    width: 65%;
  }

  .item03 .sec01-text {
    padding: 4.816% 12.308% 9.365%;
    text-align: center;
  }

  .item03 .sec01-title {
    font-size: 7.2rem;
  }

  .item03 .sec01-title-jp {
    font-size: 2.4rem;
  }

  .item03 .sec02-bg {
    background-position: 36.5% 39.5%;
    background-size: 21%;
  }

  .item03 .sec02-contents {
    padding: calc(var(--wave-h) + 9.365%) 4% 10%;
  }

  .item03 .sec02-box {
    padding: 8.879% 9% 0;
    border-radius: 0.8rem;
  }

  .item03 .sec02-block-text {
    padding: 7% 5% 0;
    font-size: 1.6rem;
  }

  .item03 .sec02-title {
    font-size: 3.2rem;
    text-align: center;
    writing-mode: horizontal-tb;
  }

  .item03 .sec02-layout {
    display: grid;
    grid-template-columns: 1fr 64.778% 1fr;
  }

  .item03 .sec-title + .sec02-layout {
    margin-top: 11%;
  }

  .item03 .sec02-block-feature {
    position: relative;
    top: 1.4rem;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 0;
  }

  .item03 .sec02-block-feature-feature {
    font-size: 2rem;
    transform: rotate(90deg);
  }

  .item03 .sec02-block-feature-number {
    padding-top: 4%;
    padding-left: 0;
    font-size: 7.2rem;
  }

  .item03 .sec02-block-image-mask02 {
    width: 78.082%;
    max-width: none;
  }

  .item03 .sec02-block-title {
    height: auto;
    padding-top: 0;
    font-size: 2.4rem;
    line-height: 1.45;
    text-align: left;
    letter-spacing: 0.15em;
    white-space: nowrap;
    writing-mode: vertical-rl;
  }

  .item03 .sec02-block-title2 {
    padding-bottom: 2em;
    font-size: 2.4rem;
  }

  .item03 .sec02-block-image-mask03 {
    width: 78.082%;
    max-width: none;
  }

  .item03 .sec02-block-image-mask04 {
    width: 78.082%;
    max-width: none;
  }

  .item03 .sec02-layout .sec02-block:nth-of-type(1) {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }

  .item03 .sec02-layout .sec02-block:nth-of-type(2) {
    grid-row: 1 / 2;
    grid-column: 1 / 4;
  }

  .item03 .sec02-layout .sec02-block:nth-of-type(3) {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }

  .item03 .sec02-layout .sec02-block:nth-of-type(4) {
    grid-row: 2 / 3;
    grid-column: 3 / 4;
  }

  .item03 .sec02-layout .sec02-block:nth-of-type(5) {
    grid-row: 3 / 4;
    grid-column: 1 / 4;
  }
}

@media screen and (width >= 1300px) {
  .item03 .sec02-contents {
    padding: calc(var(--wave-h) + 9.365%) 8.562% 10%;
  }

  .item03 .sec02-box {
    padding: 8.879% 13.559% 0;
  }

  .item03 .sec02-block-title {
    /* height: 100%; */
    font-size: 2.8rem;
  }
}

/******************************
* Lineup Cookies
******************************/

.item04 .sec01 {
  position: relative;
  z-index: 3;
}

.item04 .sec01-bg {
  background: var(--white);
}

.item04 .sec01-image-mask02 {
  width: 84.359%;
  max-width: 84.7rem;
  aspect-ratio: 538 / 432;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask02");
}

.item04 .sec01-image-image {
  width: 100%;
}

.item04 .sec01-text {
  padding: 12.564% 9.49%;
}

.item04 .sec01-title {
  padding-bottom: 0.2em;
  font-size: 3.6rem;
  line-height: 1;
}

.item04 .sec01-title-jp {
  display: block;
  padding-top: 1em;
  font-size: 2rem;
  font-weight: 600;
}

.item04 .sec02 {
  position: relative;
  z-index: 2;
  margin-top: calc(var(--wave-h) * -1);
}

.item04 .sec02-bg {
  background: -7% 9% / 40% url("./bg02.png");
}

.item04 .sec02-contents {
  padding: calc(var(--wave-h) + 6.41%) 3.846% 10%;
}

.item04 .sec02-box {
  padding: 10.335%;
  background: var(--orange2);
  border: 0.1rem solid var(--black);
  border-radius: 0.4rem;
}

.item04 .sec02-block-text {
  padding-top: 8%;
  font-size: 1.3rem;
}

.item04 .sec02-title {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  writing-mode: vertical-rl;
}

.item04 .sec02-layout { /* stylelint-disable-line no-descending-specificity */
  padding-bottom: 16.667%;
}

.item04 .sec-title + .sec02-layout {
  margin-top: -15%;
}

.item04 .sec02-block-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1rem;
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
}

.item04 .sec02-block-feature-feature {
  font-size: 1.2rem;
  font-weight: 600;
}

.item04 .sec02-block-feature-number {
  padding-left: 0.3em;
  font-size: 3.6rem;
  color: var(--orange);
  -webkit-text-stroke: 0.15rem var(--black);
  paint-order: stroke fill;
}

.item04 .sec02-block-image-mask02 {
  width: 98.587%;
  max-width: 40rem;
  aspect-ratio: 538 / 432;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask02")
}

.item04 .sec02-block-image-image {
  width: 101%;
}

.item04 .sec02-block-title {
  padding-top: 11.64%;
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
}

.item04 .sec02-block-title2 {
  padding-bottom: 1.7em;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.15em;
}

.item04 .sec02-block-title2-border {
  display: inline-block;
  padding-bottom: 0.6em;
  border-bottom: 0.2rem solid var(--orange);
}

.item04 .sec02-block-image-mask03 {
  width: 98.587%;
  max-width: 40rem;
  aspect-ratio: 540 / 448;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask03");
}

.item04 .sec02-block-image-mask04 {
  width: 98.587%;
  max-width: 40rem;
  aspect-ratio: 540 / 462;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask04");
}

@media screen and (width >= 800px) {
  .item04 .sec01 {
    margin-top: -6rem;
  }

  .item04 .sec01-image-mask05 {
    width: 65%;
  }

  .item04 .sec01-text {
    padding: 4.816% 12.308% 9.365%;
    text-align: center;
  }

  .item04 .sec01-title {
    font-size: 7.2rem;
  }

  .item04 .sec01-title-jp {
    font-size: 2.4rem;
  }

  .item04 .sec02-bg {
    background-position: 36.5% 39.5%;
    background-size: 21%;
  }

  .item04 .sec02-contents {
    padding: calc(var(--wave-h) + 9.365%) 4% 10%;
  }

  .item04 .sec02-box {
    padding: 8.879% 9% 0;
    border-radius: 0.8rem;
  }

  .item04 .sec02-block-text {
    padding: 7% 5% 0;
    font-size: 1.6rem;
  }

  .item04 .sec02-title {
    font-size: 3.2rem;
    text-align: center;
    writing-mode: horizontal-tb;
  }

  .item04 .sec02-layout {
    display: grid;
    grid-template-columns: 1fr 64.778% 1fr;
  }

  .item04 .sec-title + .sec02-layout {
    margin-top: 11%;
  }

  .item04 .sec02-block-feature {
    position: relative;
    top: 1.4rem;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 0;
  }

  .item04 .sec02-block-feature-feature {
    font-size: 2rem;
    transform: rotate(90deg);
  }

  .item04 .sec02-block-feature-number {
    padding-top: 4%;
    padding-left: 0;
    font-size: 7.2rem;
  }

  .item04 .sec02-block-image-mask02 {
    width: 78.082%;
    max-width: none;
  }

  .item04 .sec02-block-title {
    height: auto;
    padding-top: 0;
    font-size: 2.4rem;
    line-height: 1.45;
    text-align: left;
    letter-spacing: 0.15em;
    white-space: nowrap;
    writing-mode: vertical-rl;
  }

  .item04 .sec02-block-title2 {
    padding-bottom: 2em;
    font-size: 2.4rem;
  }

  .item04 .sec02-block-image-mask03 {
    width: 78.082%;
    max-width: none;
  }

  .item04 .sec02-block-image-mask04 {
    width: 78.082%;
    max-width: none;
  }

  .item04 .sec02-layout .sec02-block:nth-of-type(1) {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }

  .item04 .sec02-layout .sec02-block:nth-of-type(2) {
    grid-row: 1 / 2;
    grid-column: 1 / 4;
  }

  .item04 .sec02-layout .sec02-block:nth-of-type(3) {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }

  .item04 .sec02-layout .sec02-block:nth-of-type(4) {
    grid-row: 2 / 3;
    grid-column: 3 / 4;
  }

  .item04 .sec02-layout .sec02-block:nth-of-type(5) {
    grid-row: 3 / 4;
    grid-column: 1 / 4;
  }
}

@media screen and (width >= 1300px) {
  .item04 .sec02-contents {
    padding: calc(var(--wave-h) + 9.365%) 8.562% 10%;
  }

  .item04 .sec02-box {
    padding: 8.879% 13.559% 0;
  }

  .item04 .sec02-block-title {
    /* height: 100%; */
    font-size: 2.8rem;
  }
}

/******************************
* Lineup Baked Goods & Cakes
******************************/

.item05 .sec01 {
  position: relative;
  z-index: 3;
}

.item05 .sec01-image-mask02 {
  width: 84.359%;
  max-width: 84.7rem;
  aspect-ratio: 538 / 432;
  margin: auto;
  overflow: hidden;
  clip-path: url("#mask02");
}

.item05 .sec01-text {
  padding-top: 3%;
}

.item05 .sec01-title {
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 3.6rem;
  line-height: 0.9;
  text-align: center;
}

.item05 .sec01-title-jp {
  display: block;
  padding-top: 0.7em;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
}

.item05 .sec01-image {
  padding-top: 10.256%;
}

.item05 .sec01-image-image {
  width: 100%;
}

.item05 .sec02 {
  margin-top: -35%;
}

.item05 .sec02-bg {
  padding-top: 45%;
  background: var(--orange2);
}

.item05 .sec02-contents {
  padding: 0 15.385%;
}

.item05 .sec02-title {
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 3.6rem;
  text-align: center;
}

.item05 .sec02-title-jp {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
}

.item05 .sec02-layout { /* stylelint-disable-line no-descending-specificity */
  padding-top: 4%;
}

.item05 .sec02-block { /* stylelint-disable-line no-descending-specificity */
  padding-bottom: 15%;
  font-size: 1.3rem;
}

.item05 .sec02-block-image {
  width: 100%;
}

.item05 .sec02-block-title {
  padding-top: 15%;
  font-size: 1.6rem;
  font-weight: 600;
}

.item05 .sec03 {
  padding-top: 10%;
}

.item05 .sec04-contents {
  padding: 0 3.846%
}

.item05 .sec04-box {
  --cut: 24px;

  position: relative;
  margin: auto;
  clip-path: polygon( var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut) );
  background: var(--black);
}

.item05 .sec04-box-inner {
  min-height: 200px;
  padding: 3rem;
  margin: 0.1rem;
  clip-path: inherit;
  background: url("./bg03.png") top center / 32% auto;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.item05 .sec04-box-block {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

.item05 .sec04-instagram-link {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
  color: var(--white);
}

.item05 .sec04-instagram-text {
  border-bottom: 0.1rem solid var(--white);
}

.item05 .sec04-instagram-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  color: var(--black);
  background: var(--orange2);
  border-radius: 50%;
}

.item05 .sec04-instagram-icon-svg {
  width: 38%;
}

@media screen and (width >= 800px) {
  .item05 .sec01 {
    margin-top: -6rem;
  }

  .item05 .sec01-image {
    padding-top: 0;
  }

  .item05 .sec01-image-mask05 {
    width: 65%;
  }

  .item05 .sec01-text {
    padding: 0 12.308% 5rem;
    text-align: center;
  }

  .item05 .sec01-title {
    font-size: 7.2rem;
  }

  .item05 .sec01-title-jp {
    padding-top: 1.5em;
    font-size: 2.4rem;
  }

  .item05 .sec02 {
    margin-top: -23%;
  }

  .item05 .sec02-bg {
    padding-top: 27%;
  }

  .item05 .sec02-contents {
    padding: 0 8% 12.04%;
  }

  .item05 .sec02-title {
    font-size: 7.2rem;
  }

  .item05 .sec02-title-jp {
    padding-top: 0.5em;
    font-size: 2.4rem;
  }

  .item05 .sec02-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2% 10%;
    padding-top: 6%
  }

  .item05 .sec02-block {
    font-size: 1.4rem;
  }

  .item05 .sec02-block-title {
    padding-top: 6%;
    font-size: 2rem;
  }

  .item05 .sec02-block-link {
    color: var(--black);
    transition: color 0.3s;
  }

  .item05 .sec02-block-link:hover, .item05 .sec02-block-link:focus-visible {
    color: var(--orange);
  }

  .item05 .sec04-box {
    --cut: 56px;
  }

  .item05 .sec04-box-block {
    display: flex;
    gap: 10%;
    align-items: center;
    justify-content: space-between;
    padding: 9% 10%;
    font-size: 2rem;
    text-align: center;
  }

  .item05 .sec04-instagram {
    margin-top: 0;
    font-size: 2.4rem;
  }

  .item05 .sec04-instagram-icon {
    width: 8rem;
    height: 8rem;
    transition: all 0.3s;
  }

  .item05 .sec04-instagram-icon-svg {
    width: 40%;
  }

  .item05 .sec04-instagram:hover .sec04-instagram-icon, .item05 .sec04-instagram:focus-visible .sec04-instagram-icon {
    color: var(--white);
    background: var(--orange);
  }
}

@media screen and (width >= 1300px) {
  .item05 .sec02-contents {
    padding: 0 19.532% 12.04%;
  }

  .item05 .sec02-layout {
    gap: 2% 14.27%;
  }

  .item05 .sec04-box-inner {
    background-position: 50% -120%;
    background-size: 24% auto;
  }
}

/******************************
* News
******************************/

.news .sec0 {
  position: relative;
  z-index: 1;
  margin-top: calc(var(--wave-h) * -1);
}

.news .sec0-bg {
  height: var(--wave-h);
  background: var(--white);
}

.news .sec01 {
  margin-top: calc(var(--wave-h) * -1);
}

.news .sec01-bg {
  padding-top: var(--wave-h);
  background: -7% 9% / 40% url("./bg02.png");
}

.news .sec01-contents {
  padding: 6% 3.846%
}

.news .sec01-box {
  max-width: 86rem;
  padding: 9.487%;
  margin: auto;
  background: var(--orange2);
  border: 0.1rem solid var(--black);
  border-radius: 0.6rem;
}

.news .sec01-topic {
  position: relative;
  padding-bottom: 7%;
  margin-bottom: 7%;
}

.news .sec01-topic::after {
  position: absolute;
  inset: auto auto 0;
  width: 100%;
  height: 0.1rem;
  margin: auto;
  content: '';
  background: repeating-linear-gradient(to right, #000 0 0.4rem, transparent 0.4rem 1rem);
}

.news .sec01-topic:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.news .sec01-topic:last-child::after {
  content: none;
}

.news .sec01-topic-title {
  padding-bottom: 0.5em;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--orange);
}

.news .sec01-topic-body {
  font-size: 1.2rem;
}

.news .sec01-topic-date {
  padding-top: 1em;
  font-size: 1rem;
  text-align: right;
}

.news .sec01-readmore {
  padding-top: 7%;
  text-align: center;
}

.news .sec01-readmore-link {
  display: inline-block;
  padding: 0.9rem 5rem;
  font-size: 1.2rem;
  color: var(--black);
  background: var(--orange2);
  border: 0.1rem solid var(--black);
  border-radius: 2rem;
}

@media screen and (width >= 800px) {
  .news .sec01-bg {
    background-size: 22%;
  }

  .news .sec01-contents {
    padding: 9.365% 3.846%
  }

  .news .sec01-box {
    padding: 4.783%;
  }

  .news .sec01-topic {
    position: relative;
    padding-bottom: 4%;
  }

  .news .sec01-topic-title {
    font-size: 2.4rem;
  }

  .news .sec01-topic-body {
    font-size: 1.6rem;
  }

  .news .sec01-topic-date {
    font-size: 1.4rem;
  }

  .news .sec01-readmore {
    padding-top: 5%;
  }

  .news .sec01-readmore-link {
    padding: 1.8rem 8rem;
    font-size: 1.4rem;
    border-radius: 4rem;
    transform: all 0.3s;
  }

  .news .sec01-readmore-link:hover, .news .sec01-readmore-link:focus-visible {
    color: var(--white);
    background: var(--orange);
  }
}

/******************************
* Contact
******************************/

.contact .sec01 {
  position: relative;
  z-index: 1;
  padding-top: var(--wave-h);
  margin-top: calc(var(--wave-h) * -1);
}

.contact .sec01-bg {
  background: var(--white);
}

.contact .sec01-attention {
  width: 84.615%;
  padding: 6%;
  margin: auto;
  font-size: 1.2rem;
  text-align: center;
  border: 0.1rem solid var(--orange);
  border-radius: 0.4rem
}

.contact .sec01-attention-p {
  line-height: 1.6;
}

.contact .sec01-attention-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--orange);
}

.contact .sec01-layout {
  padding: 12.821% 7%;
}

.contact .sec01-block-title {
  position: relative;
  padding-top: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.contact .sec01-block-title-phone::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  color: var(--orange);
  content: "Tel";
  -webkit-text-stroke: 0.15rem var(--black);
  paint-order: stroke fill;
}

.contact .sec01-block-phone {
  padding-left: 2rem;
  margin-top: 0.5em;
  font-size: 2rem;
  line-height: 1.4;
  background: 0% 76% / 1.7rem 1.8rem url("../contact/ico-phone.png") no-repeat;
}

.contact .sec01-block-phone-span {
  display: block;
  font-size: 1rem;
}

.contact .sec01-block-p {
  margin-top: 0.3rem;
  font-size: 1.2rem;
  line-height: 1.4;
}

.contact .sec01-block:first-child {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 0.1rem solid var(--black);
}

.contact .sec01-block-email-list {
  padding-top: 1.2em;
}

.contact .sec01-block-title-email {
  padding-bottom: 1em;
}

.contact .sec01-block-title-email::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  color: var(--orange);
  content: "Mail";
  -webkit-text-stroke: 0.15rem var(--black);
  paint-order: stroke fill;
}

.contact .sec01-block-email-item {
  padding-left: 1em;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  text-indent: -1em;
  letter-spacing: 0.07em;
}

.contact .sec01-block-email-item::before {
  content: "※";
}

.contact .sec02 {
  margin-top: calc(var(--wave-h) * -1);
}

.contact .sec02-1 {
  margin-top: 5%;
}

.contact .sec02-bg {
  padding-top: var(--wave-h);
  background: -7% 9% / 22% url("./bg02.png");
}

.contact .sec02-contents {
  padding: 6% 3.846%
}

.contact .sec02-form-message {
  display: none;
}

.contact .sec02-box {
  max-width: 110rem;
  padding: 9.487%;
  margin: auto;
  background: var(--white);
  border: 0.1rem solid var(--black);
  border-radius: 0.6rem;
}

.contact .form-label {
  display: grid;
  padding-bottom: 1.5em;
}

.contact .form-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.7em;
  font-size: 1.2rem;
}

.contact .form-req {
  display: inline-block;
  padding: 0.4rem 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  border-radius: 0.4rem;
}

.contact .wpcf7-text, .contact .wpcf7-textarea {
  width: 100%;
  padding: 0.5rem;
  appearance: none;
  background: #f5f5f5;
  border: 0.1rem solid #ccc;
  border-radius: 0.4rem;
  outline: none;
  box-shadow: none;
}

.contact .wpcf7-textarea {
  aspect-ratio: 29 / 16;
  resize: none;
}

.contact .privacy {
  font-size: 1.2rem;
  text-align: center;
}

.contact .submit {
  text-align: center;
}

.contact .wpcf7-submit {
  position: relative;
  padding: 0.7rem 8rem;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 1em;
  background: var(--orange) 93% 50% / 2.6rem auto url("../contact/arrow.png") no-repeat;
  border: 0.1rem solid var(--black);
  border-radius: 2rem;
}

.contact .wpcf7-spinner {
  display: block;
  margin: auto;
}

.contact .wpcf7-not-valid-tip {
  padding-top: 0.7em;
}

.contact .complete {
  text-align: center;
}

.contact .link {
  position: relative;
  padding: 0.7rem 4rem 0.7rem 2rem;
  font-size: 1.1rem;
  color: var(--black);
  border: 0.1rem solid var(--black);
  border-radius: 2rem;
}

.contact .link::after {
  position: absolute;
  inset: 0 0.7rem 0 auto;
  display: block;
  width: 2.6rem;
  height: 1.9rem;
  margin: auto;
  content: '';
  background: center / 100% auto url("../index/arrow.png") no-repeat;
}

@media screen and (width >= 800px) {
  .contact .sec01-bg {
    background: var(--white);
  }

  .contact .sec01-attention {
    width: clamp(75rem, 73.913%, 110.5rem);
    padding: 3%;
    font-size: 1.4rem;
    border-radius: 0.6rem
  }

  .contact .sec01-attention-text {
    font-size: 1.8rem;
  }

  .contact .sec01-attention-text-span {
    display: inline-block;
    padding-bottom: 0.2em;
    border-bottom: 0.2rem solid var(--orange);
  }

  .contact .sec01-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8.027%;
    padding: 4% 12.977%;
  }

  .contact .sec01-block:nth-of-type(1) {
    order: 2;
  }

  .contact .sec01-block:nth-of-type(2) {
    order: 1;
  }

  .contact .sec01-block-title {
    padding-top: 11rem;
    font-size: 2.4rem;
  }

  .contact .sec01-block-title-phone::before {
    font-size: 7.2rem;
  }

  .contact .sec01-block-phone {
    padding-left: 3.8rem;
    font-size: 3.6rem;
    background-position: 0% 70%;
    background-size: 2.7rem 2.8rem;
  }

  .contact .sec01-block-phone-span {
    font-size: 1.2rem;
  }

  .contact .sec01-block-p {
    font-size: 1.6rem;
  }

  .contact .sec01-block:first-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  .contact .sec01-block-title-email {
    padding-bottom: 0.5em;
  }

  .contact .sec01-block-title-email::before {
    font-size: 7.2rem;
  }

  .contact .sec01-block-email-item {
    padding-bottom: 0.5em;
    font-size: 1.4rem;
  }

  .contact .sec02-bg {
    background-image: url("./bg03.png");
  }

  .contact .sec02-contents {
    padding: 9.365% 3.846%
  }

  .contact .sec02-form-message {
    display: block;
    padding-bottom: 2.5em;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white);
    text-align: center;
  }

  .contact .sec02-box {
    padding: 4.783%;
  }

  .contact .form-label {
    grid-template-columns: 35% 1fr;
    gap: 1em;
  }

  .contact .form-name {
    padding-bottom: 0;
    font-size: 1.8rem;
  }

  .contact .form-req {
    font-size: 1.1rem;
  }

  .contact .wpcf7-text, .contact .wpcf7-textarea {
    font-size: 1.8rem;
  }

  .contact .wpcf7-textarea {
    aspect-ratio: 29 / 16;
    resize: none;
  }

  .contact .privacy {
    font-size: 1.4rem;
  }

  .contact .wpcf7-submit {
    font-size: 1.4rem;
    border-radius: 3rem;
  }

  .contact .form-name-body {
    align-items: flex-start;
  }

  .contact .link {
    padding: 1.1rem 5rem 1.1rem 2rem;
    font-size: 1.6rem;
    border-radius: 3rem;
    transition: all 0.3s;
  }

  .contact .link::after {
    inset: 0 1rem 0 auto;
    width: 3.1rem;
    height: 2.3rem;
  }

  .contact .link:hover, .contact .link:focus-visible {
    color: var(--white);
    background: var(--orange);
  }
}

/******************************
* 404
******************************/

.p404 .page-title {
  font-size: 2rem;
}

.p404 .sec01-contents {
  padding: 7%;
}

.p404 .sec03-contents {
  padding: 0 7%;
}

.p404 .sec03-grid-item { /* stylelint-disable-line no-descending-specificity */
  padding-top: 15%;
}

.p404 .sec03-grid-item:first-child {
  padding-top: 10%;
}

.p404 .sec03-item-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p404 .sec03-item-image {
  order: 1;
  width: 80.299%;
  aspect-ratio: 540 / 448;
}

.p404 .sec03-item-image-mask02 {
  clip-path: url("#mask02");
}

.p404 .sec03-item-image-mask03 {
  clip-path: url("#mask03");
}

.p404 .sec03-item-image-image {
  width: 100%;
}

.p404 .sec03-item-text {
  order: 2;
  width: 19%;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.p404 .sec03-item-text-p {
  margin-left: auto;
  writing-mode: vertical-rl;
}

.p404 .sec03-item-name {
  order: 3;
  width: 100%;
  padding: 5% 0 0 6%;
  font-family: print, "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2.8rem;
}

.p404 .sec03-item-name-text {
  line-height: 1.1;
}

.p404 .sec03-item-button {
  position: relative;
  order: 4;
  width: 100%;
  padding: 5% 0;
  text-align: right;
}

.p404 .sec03-item-button::before {
  position: absolute;
  inset: 0 auto 0 5%;
  width: calc(95% - 15rem);
  height: 0.1rem;
  margin: auto;
  content: '';
  background: repeating-linear-gradient(to right, #000 0 0.4rem, transparent 0.4rem 1rem);
}

.p404 .sec03-image {
  position: absolute;
  bottom: -6.5%;
  left: 2%;
  width: 57.692%;
}

.p404 .readmore-link {
  position: relative;
  padding: 0.7rem 4rem 0.7rem 2rem;
  font-size: 1.1rem;
  color: var(--black);
  border: 0.1rem solid var(--black);
  border-radius: 2rem;
}

.p404 .readmore-link::after {
  position: absolute;
  inset: 0 0.7rem 0 auto;
  display: block;
  width: 2.6rem;
  height: 1.9rem;
  margin: auto;
  content: '';
  background: center / 100% auto url("../index/arrow.png") no-repeat;
}

@media screen and (width >= 800px) {
  .p404 .readmore-link {
    padding: 1.1rem 5rem 1.1rem 2rem;
    font-size: 1.6rem;
    border-radius: 3rem;
    transition: all 0.3s;
  }

  .p404 .readmore-link::after {
    inset: 0 1rem 0 auto;
    width: 3.1rem;
    height: 2.3rem;
  }

  .p404 .page-title {
    font-size: 3rem;
  }

  .p404 .sec03-contents {
    padding: 0 3% 10%;
  }

  .p404 .sec03-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    max-width: 100rem;
    margin: 0 auto;
  }

  .p404 .sec03-grid-item {
    padding-top: 10%;
  }

  .p404 .sec03-grid-item:first-child {
    padding-top: 10%;
  }

  .p404 .sec03-item-layout {
    width: 82.5%;
    height: 100%;
    margin: auto;
  }

  .p404 .sec03-item-text {
    font-size: 1.4rem;
  }

  .p404 .sec03-item-name {
    font-size: 3.6rem;
  }

  .p404 .sec03-readmore-link {
    font-size: 1.3rem
  }

  .p404 .sec03-readmore-link::after {
    inset: 0 1.2rem 0 auto;
    width: 3.1rem;
    height: 2.3rem;
  }

  .p404 .sec03-image {
    bottom: -4%;
    left: 2%;
    width: 40%;
  }

  .p404 .sec03-grid-item05 {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
  }

  .p404 .readmore-link:hover, .p404 .readmore-link:focus-visible {
    color: var(--white);
    background: var(--orange);
  }
}

@media screen and (width >= 1300px) {
  .p404 .sec01-contents {
    text-align: center;
  }
}

/******************************
* Animation
******************************/

@keyframes kv-zoom {
  0% {
    transform: scale(1.1);
  }

  70% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.05);
  }
}
