/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
input, textarea, button, header {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  font-weight: 500;
  vertical-align: baseline;
  -webkit-text-size-adjust: 100%;
  max-height: 999999px;
  outline: none;
  box-sizing: border-box;
  background: none;
}

button:focus {
  outline: 0;
}

ol, ul {
  list-style: none;
}

a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
  text-decoration: none;
  outline: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  color: rgb(49, 30, 8);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  position: relative;
}
body.js-open {
  position: fixed;
}

a {
  font-weight: 500;
  color: rgb(51, 51, 51);
}

/* header */
.c-header {
  width: 100%;
  padding-left: 1.25rem;
  background-color: rgb(255, 255, 255);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 992px) {
  .c-header {
    padding-left: 1.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .c-header {
    padding-left: 2.8125rem;
  }
}

.c-header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media screen and (min-width: 992px) {
  .c-header__body {
    height: 100px;
  }
}

.c-header__logo {
  position: relative;
  z-index: 60;
}
.c-header__logo h1 {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  line-height: 1.4;
}
.c-header__logo h1 span {
  font-size: clamp(0.875rem, 0.653rem + 0.46vw, 1rem);
}
@media screen and (min-width: 992px) {
  .c-header__logo h1 {
    gap: 1.5625rem;
  }
}

.c-header__logo-link {
  display: flex;
  width: 80px;
  transition: 0.3s;
}
.c-header__logo-link:hover {
  opacity: 0.5;
}
@media screen and (min-width: 476px) {
  .c-header__logo-link {
    width: 90px;
  }
}
@media screen and (min-width: 992px) {
  .c-header__logo-link {
    width: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .c-header__logo-link {
    width: 120px;
  }
}

.c-nav {
  overflow-y: auto;
  display: none;
  width: 100%;
  height: 100vh;
  padding-top: 6.25rem;
  padding-right: 1.25rem;
  padding-bottom: 2.5rem;
  padding-left: 1.25rem;
  background-color: rgb(255, 249, 178);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 476px) {
  .c-nav {
    padding-top: 6.25rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-nav {
    padding-top: 9.375rem;
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 992px) {
  .c-nav {
    padding-top: 12.5rem;
    padding-bottom: 6.25rem;
  }
}

.c-nav__inner {
  width: 100%;
  padding-bottom: 1.875rem;
}

.c-nav__body {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  margin-bottom: 2.5rem;
  position: relative;
}

.c-nav__main {
  display: grid;
  gap: 0.3125rem;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-nav__main {
    gap: 0.625rem;
  }
}

.c-nav__link {
  display: block;
  width: 100%;
  padding-top: 0.3125rem;
  padding-right: 0.3125rem;
  padding-bottom: 0.3125rem;
  padding-left: 0.3125rem;
  font-size: clamp(1.25rem, 0.361rem + 1.85vw, 1.75rem);
  font-weight: bold;
  text-align: center;
  position: relative;
  transition: 0.3s;
  color: rgb(49, 30, 8);
}
.c-nav__link:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .c-nav__link {
    padding-top: 0.625rem;
    padding-right: 0.3125rem;
    padding-bottom: 0.625rem;
  }
}

.c-nav__deco01 {
  max-width: 80px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 476px) {
  .c-nav__deco01 {
    max-width: 110px;
  }
}
@media screen and (min-width: 992px) {
  .c-nav__deco01 {
    max-width: 147px;
  }
}

.c-nav__deco02 {
  max-width: 100px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 476px) {
  .c-nav__deco02 {
    max-width: 130px;
  }
}
@media screen and (min-width: 992px) {
  .c-nav__deco02 {
    max-width: 167px;
  }
}

.c-navenrty {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-navenrty {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 840px;
  }
}

.c-navenrty__button {
  display: grid;
  place-content: center;
  place-items: center;
  height: 60px;
  width: 100%;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 40px;
  background-color: rgb(255, 98, 0);
  box-shadow: 0px 8px 6px 0px rgba(108, 108, 108, 0.5);
  color: rgb(255, 255, 255);
  line-height: 1.4;
}
.c-navenrty__button:nth-of-type(2) {
  background-color: rgb(255, 177, 0);
}
@media screen and (min-width: 768px) {
  .c-navenrty__button {
    height: 70px;
  }
}
@media screen and (min-width: 992px) {
  .c-navenrty__button {
    height: 80px;
  }
}

.c-navenrty__button-jp {
  font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
  font-weight: bold;
}

.c-navenrty__button-en {
  font-family: "Lato", sans-serif;
  font-size: clamp(0.875rem, 0.653rem + 0.46vw, 1rem);
  font-weight: bold;
}

.c-header__menu {
  display: flex;
  height: 100%;
}

.c-entry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 55px;
  background-color: rgb(255, 255, 255);
  position: fixed;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-entry {
    width: 400px;
    height: 100%;
    position: relative;
    bottom: auto;
    left: auto;
  }
}
@media screen and (min-width: 992px) {
  .c-entry {
    width: 450px;
  }
}
@media screen and (min-width: 1200px) {
  .c-entry {
    width: 580px;
  }
}

.c-entry__button {
  display: grid;
  place-content: center;
  place-items: center;
  color: rgb(255, 255, 255);
  line-height: 1.6;
  background-color: rgb(255, 98, 0);
  transition: 0.3s;
}
.c-entry__button:nth-of-type(2) {
  background-color: rgb(255, 177, 0);
}
.c-entry__button:hover {
  opacity: 0.7;
}

.c-entry__button-jp {
  font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
  font-weight: bold;
}

.c-entry__button-en {
  font-family: "Lato", sans-serif;
  font-size: clamp(0.875rem, 0.653rem + 0.46vw, 1rem);
  font-weight: bold;
}

.c-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  aspect-ratio: 1/1;
  z-index: 60;
}

.c-hamburger__body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .c-hamburger__body {
    width: 60px;
    height: 48px;
  }
}

.c-hamburger__body::before {
  content: "";
  width: 50px;
  height: 3px;
  background-color: rgb(49, 30, 8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media screen and (min-width: 992px) {
  .c-hamburger__body::before {
    width: 60px;
    height: 4px;
  }
}

.js-open .c-hamburger__body::before {
  opacity: 0;
}

.c-hamburger__button {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  appearance: none;
  background: none;
  border: 0;
}

.c-hamburger__button::before,
.c-hamburger__button::after {
  content: "";
  width: 50px;
  height: 3px;
  background-color: rgb(49, 30, 8);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 992px) {
  .c-hamburger__button::before,
  .c-hamburger__button::after {
    width: 60px;
    height: 4px;
  }
}

.c-hamburger__button::before {
  top: 2px;
  transform-origin: left top;
}

.c-hamburger__button::after {
  bottom: 2px;
  transform-origin: left bottom;
}

.js-open .c-hamburger__button::before,
.js-open .c-hamburger__button::after {
  width: 53px;
  left: 7px;
}
@media screen and (min-width: 992px) {
  .js-open .c-hamburger__button::before,
  .js-open .c-hamburger__button::after {
    width: 63px;
  }
}

.js-open .c-hamburger__button::before {
  transform: rotate(40deg);
}

.js-open .c-hamburger__button::after {
  transform: rotate(-40deg);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* footer */
.c-footer {
  padding-top: 2.5rem;
  padding-right: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.25rem;
  background-color: rgb(255, 98, 0);
  position: relative;
}
@media screen and (min-width: 992px) {
  .c-footer {
    padding-top: 2.8125rem;
    padding-bottom: 2.1875rem;
  }
}

.c-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.c-footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  place-content: center;
  place-items: center;
  gap: 0.625rem;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .c-footer__nav {
    place-content: start;
    place-items: start;
    grid-template-columns: repeat(3, auto);
    gap: 3rem;
  }
}

.c-footer__nav-link {
  font-size: 0.75rem;
  font-weight: normal;
  color: rgb(255, 255, 255);
  text-decoration: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-footer__nav-link:hover {
    text-decoration: underline;
  }
  .c-footer__nav-link:not(:last-of-type)::after {
    content: "";
    width: 1px;
    height: 12px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
  }
}

.c-footer__copy {
  font-size: 0.625rem;
  font-weight: normal;
  color: rgb(255, 255, 255);
  text-align: center;
  position: relative;
  z-index: 20;
}

.c-footer__deco {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-99%);
}

.p-pagetop {
  width: 50px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-pagetop {
    width: 60px;
  }
}
@media screen and (min-width: 992px) {
  .p-pagetop {
    width: 75px;
  }
}

.p-pagetop__link {
  display: flex;
  transition: 0.3s;
}
.p-pagetop__link:hover {
  opacity: 0.7;
}

/* component */
.c-contentsheader {
  margin-bottom: 2.5rem;
}

.c-contentsheader__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: clamp(1.875rem, 0.764rem + 2.31vw, 2.5rem);
  font-weight: bold;
}
.c-contentsheader__text::after {
  content: "";
  width: 60px;
  height: 17px;
  background-image: url(../img/title-fig-01.png);
  background-position: center top;
  background-size: 100%;
  background-repeat: no-repeat;
}

.c-contentsheader__summary {
  padding-top: 2rem;
  text-align: center;
}

.c-button {
  display: grid;
  place-content: center;
  place-items: center;
  height: 60px;
  width: 100%;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 40px;
  background-color: rgb(255, 98, 0);
  box-shadow: 0px 8px 6px 0px rgba(108, 108, 108, 0.5);
  color: rgb(255, 255, 255);
  line-height: 1.4;
  position: relative;
  transition: 0.3s;
}
.c-button:nth-of-type(2) {
  background-color: rgb(255, 177, 0);
}
@media screen and (min-width: 768px) {
  .c-button {
    height: 70px;
  }
}
@media screen and (min-width: 992px) {
  .c-button {
    height: 80px;
  }
}
.c-button:hover {
  opacity: 0.7;
}

.c-button__text {
  font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
  font-weight: bold;
}

.p-hero {
  overflow: clip;
  background-color: rgb(255, 249, 178);
  position: relative;
}

.p-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-hero__inner {
    grid-template-columns: 42% 1fr;
  }
}

.p-hero__fig {
  order: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__fig {
    order: 0;
  }
}
.p-hero__fig img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-hero__copy {
  display: flex;
  align-items: center;
  order: 0;
  width: 100%;
  padding-top: 1.25rem;
  padding-right: 0.9375rem;
  padding-bottom: 1.25rem;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 476px) {
  .p-hero__copy {
    padding-top: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__copy {
    padding: 0;
    order: 1;
  }
}

.p-hero__copy-fig {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-hero__copy-fig {
    order: 1;
    width: 95%;
  }
}
@media screen and (min-width: 992px) {
  .p-hero__copy-fig {
    width: 85%;
  }
}
@media screen and (min-width: 1200px) {
  .p-hero__copy-fig {
    width: 79%;
  }
}

.p-hero__deco {
  width: 42%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(5%, 5%);
}
@media screen and (min-width: 768px) {
  .p-hero__deco {
    width: 19%;
    right: 0%;
    transform: translateY(-10%);
  }
}
@media screen and (min-width: 992px) {
  .p-hero__deco {
    right: 5%;
  }
}
@media screen and (min-width: 1200px) {
  .p-hero__deco {
    right: 9%;
  }
}

.p-intro {
  padding-top: 4.0625rem;
  padding-right: 1.25rem;
  padding-bottom: 3.125rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 476px) {
  .p-intro {
    padding-top: 5rem;
    padding-bottom: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-intro {
    padding-top: 6.25rem;
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-intro {
    padding-top: 7.5rem;
    padding-bottom: 6.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-intro {
    padding-top: 9.6875rem;
    padding-bottom: 7.8125rem;
  }
}

.p-intro__inner {
  max-width: 980px;
  margin: 0 auto;
}

.p-intro__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-intro__main {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.p-intro__fig {
  overflow: clip;
  border-radius: 32px;
}
.p-intro__fig img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-intro__detail p:not(:last-of-type) {
  margin-bottom: 1.4rem;
}

.p-shop {
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-shop {
    padding-bottom: 6.25rem;
  }
}
@media screen and (min-width: 992px) {
  .p-shop {
    padding-bottom: 7.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-shop {
    padding-bottom: 10.625rem;
  }
}

.p-shop__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  margin-bottom: 2.5rem;
  font-size: 20px;
  font-weight: bold;
  color: rgb(255, 98, 0);
  line-height: 1.4;
  text-align: center;
}
.p-shop__title::before, .p-shop__title::after {
  content: "";
  height: 90px;
  width: 5px;
  border-radius: 3px;
  background-color: rgb(255, 199, 165);
  position: relative;
  top: 2px;
}
.p-shop__title::before {
  rotate: -40deg;
}
.p-shop__title::after {
  rotate: 40deg;
}
@media screen and (min-width: 576px) {
  .p-shop__title {
    gap: 2.1875rem;
  }
  .p-shop__title::before, .p-shop__title::after {
    content: "";
    height: 70px;
  }
  .p-shop__title .spbr {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-shop__title {
    gap: 1.25rem;
    font-size: clamp(1.5rem, 1.056rem + 0.93vw, 1.75rem);
  }
  .p-shop__title::before, .p-shop__title::after {
    height: 40px;
    width: 6px;
  }
  .p-shop__title .tabbr {
    display: none;
  }
}

.p-shop__lineup {
  position: relative;
}
.p-shop__lineup .swiper-wrapper {
  transition-timing-function: linear;
}
.p-shop__lineup .swiper-pagination-horizontal.swiper-pagination {
  bottom: -50px;
}
.p-shop__lineup .swiper-pagination-horizontal .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(255, 118, 2);
  opacity: 1;
}
.p-shop__lineup .swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background-color: rgb(255, 118, 2);
}

.p-shop__bubble {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-shop__bubble {
    width: 96%;
  }
}

.p-shop__bubble-text {
  width: 100%;
  font-size: clamp(0.875rem, 0.764rem + 0.23vw, 0.938rem);
  line-height: 1.4;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-60%);
}

.p-shop__fig {
  overflow: clip;
  margin-bottom: 0.625rem;
  border-radius: 32px;
}

.p-shop__name {
  font-size: clamp(1rem, 0.778rem + 0.46vw, 1.125rem);
  font-weight: bold;
  text-align: center;
}

.p-features {
  overflow: clip;
  padding-top: 3.75rem;
  padding-right: 1.25rem;
  padding-bottom: 20%;
  padding-left: 1.25rem;
  background-color: rgb(255, 168, 46);
  background-image: url(../img/features-fig-11.jpg), url(../img/features-fig-12.jpg);
  background-position: center top, center bottom -1px;
  background-size: 45px, 100%;
  background-repeat: repeat-x, no-repeat;
}
@media screen and (min-width: 768px) {
  .p-features {
    padding-top: 6.25rem;
    padding-bottom: 10%;
    background-size: 75px, 100%;
  }
}

.p-features__inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.p-features__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.875rem;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-features__list {
    gap: 0;
    max-width: 100%;
    margin-bottom: 4.375rem;
  }
}

.p-features__box {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-features__box {
    width: 50%;
  }
}

.p-features__01 .p-features__fig {
  max-width: 350px;
  margin-top: -17%;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 476px) {
  .p-features__01 .p-features__fig {
    max-width: 100%;
    margin-top: -17%;
    padding-right: 2.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-features__01 .p-features__fig {
    padding-right: 2.8125rem;
  }
}

.p-features__02 {
  display: flex;
}
.p-features__02 .p-features__detail {
  order: 1;
}
.p-features__02 .p-features__fig {
  order: 0;
  max-width: 240px;
  margin-right: -3.75rem;
  padding-top: 3.75rem;
}
@media screen and (min-width: 476px) {
  .p-features__02 .p-features__fig {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-features__02 .p-features__fig {
    order: 0;
    margin-right: -3.75rem;
    padding-top: 3.75rem;
  }
}

.p-features__03 {
  display: flex;
  padding-left: 2rem;
}
.p-features__03 .p-features__fig {
  max-width: 230px;
  margin-left: -1.5625rem;
}
@media screen and (min-width: 476px) {
  .p-features__03 .p-features__fig {
    max-width: 253px;
    margin-left: -2.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-features__03 {
    padding-top: 3.75rem;
  }
}

.p-features__04 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-features__04 .p-features__detail {
  order: 1;
  margin-top: -4.375rem;
}
.p-features__04 .p-features__fig {
  order: 0;
  width: 280px;
}
@media screen and (min-width: 476px) {
  .p-features__04 .p-features__fig {
    order: 0;
    width: 77%;
  }
}
@media screen and (min-width: 768px) {
  .p-features__04 {
    margin-top: -2.5rem;
  }
}

.p-features__05 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin-top: 1.25rem;
}
.p-features__05 .p-features__detail {
  width: max-content;
}
.p-features__05 .p-features__fig {
  max-width: 240px;
  margin-left: -5.625rem;
}
@media screen and (min-width: 476px) {
  .p-features__05 .p-features__fig {
    max-width: 300px;
    margin-left: -4.375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-features__05 .p-features__fig {
    max-width: 360px;
    margin-left: -3.125rem;
  }
  .p-features__05 .p-features__detail {
    margin-left: -11%;
  }
}

.p-features__detail {
  position: relative;
  z-index: 10;
}

.p-features__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  padding-right: 0.625rem;
  font-weight: bold;
  background-color: rgb(192, 240, 103);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%);
}

.p-features__copy {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 476px) {
  .p-features__copy {
    font-size: clamp(2rem, 0.222rem + 3.7vw, 3rem);
  }
}

.p-features__copy-portrait {
  padding-top: 0.9375rem;
  writing-mode: vertical-rl;
  position: relative;
  left: -0.2em;
}

.p-features__deco01 {
  width: 60px;
  position: absolute;
  top: -0.625rem;
  left: -0.3125rem;
  transform: translateX(-100%);
}
@media screen and (min-width: 1200px) {
  .p-features__deco01 {
    width: 80px;
    position: absolute;
    top: -0.9375rem;
    left: -1.5625rem;
  }
}

.p-features__deco02 {
  width: 120px;
  position: absolute;
  bottom: -0.0625rem;
  left: 1.875rem;
  transform: translateX(-100%);
}
@media screen and (min-width: 1200px) {
  .p-features__deco02 {
    width: 142px;
    bottom: -0.9375rem;
    left: 1.5625rem;
  }
}

.p-features__deco03 {
  width: 160px;
  position: absolute;
  bottom: -0.9375rem;
  right: 2.8125rem;
  transform: translateX(50%);
}
@media screen and (min-width: 1200px) {
  .p-features__deco03 {
    width: 194px;
    bottom: -0.9375rem;
    right: 2.1875rem;
    transform: translateX(100%);
  }
}

.p-features__deco04 {
  width: 280px;
  position: absolute;
  bottom: -1.875rem;
  left: 50%;
  transform: translateX(-35%);
}
@media screen and (min-width: 1200px) {
  .p-features__deco04 {
    width: 390px;
    bottom: -2.5rem;
  }
}

.p-features__deco05 {
  width: 40px;
  position: absolute;
  bottom: 0rem;
  right: 0;
}
@media screen and (min-width: 1200px) {
  .p-features__deco05 {
    width: 75px;
    bottom: 2.1875rem;
  }
}

.p-features__button {
  max-width: 320px;
  margin: 0 auto;
}
.p-features__button .c-button {
  border: 2px solid rgb(255, 98, 0);
  background-color: rgb(255, 255, 255);
}
.p-features__button .c-button::after {
  content: "";
  width: 10px;
  height: 100%;
  background-image: url(../img/arrow-r-org.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 1.25rem;
}
.p-features__button .c-button__text {
  color: rgb(255, 98, 0);
}
@media screen and (min-width: 768px) {
  .p-features__button {
    max-width: 600px;
  }
  .p-features__button .c-button {
    border: 4px solid rgb(255, 98, 0);
  }
}
@media screen and (min-width: 768px) {
  .p-features__button .c-button::after {
    width: 12px;
    right: 1.875rem;
  }
}

.p-job {
  padding-top: 0rem;
  padding-right: 1.25rem;
  padding-bottom: 7.5rem;
  padding-left: 1.25rem;
}

.p-job__inner {
  max-width: 980px;
  margin: 0 auto;
}

.p-job__block {
  max-width: 450px;
  margin: 0 auto;
  padding-bottom: 3.125rem;
}
.p-job__block:not(:last-of-type) {
  margin-bottom: 2.5rem;
  border-bottom: 10px dotted rgb(255, 177, 0);
}
@media screen and (min-width: 768px) {
  .p-job__block {
    max-width: 100%;
  }
}

.p-job__subtitle {
  margin-bottom: 1.5625rem;
  font-size: clamp(1.375rem, 0.708rem + 1.39vw, 1.75rem);
  font-weight: bold;
  color: rgb(255, 98, 0);
  line-height: 1.4;
  text-align: center;
}
.p-job__subtitle span {
  font-size: 0.65em;
  font-weight: bold;
  color: rgb(49, 30, 8);
}
@media screen and (min-width: 768px) {
  .p-job__subtitle {
    margin-bottom: 2.1875rem;
  }
  .p-job__subtitle .spbr {
    display: none;
  }
}

.p-job__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5625rem;
}
.p-job__box:not(:last-of-type) {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-job__box {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.1875rem;
  }
  .p-job__box:not(:last-of-type) {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .p-job__box {
    gap: 3rem;
  }
}

.p-job__fig {
  overflow: clip;
  border-radius: 32px;
}
.p-job__fig img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-job__note {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.3125rem;
  font-weight: bold;
}
.p-job__note::before, .p-job__note::after {
  content: "";
  height: 20px;
  width: 1px;
  background-color: rgb(49, 30, 8);
  position: relative;
  top: 1px;
}
.p-job__note::before {
  rotate: -40deg;
}
.p-job__note::after {
  rotate: 40deg;
}

.p-job__subhead {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0.625rem;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 476px) {
  .p-job__subhead {
    grid-template-columns: 32px 1fr;
    margin-bottom: 0.9375rem;
  }
}
@media screen and (min-width: 992px) {
  .p-job__subhead {
    grid-template-columns: 38px 1fr;
    margin-bottom: 1.25rem;
  }
}

.p-job__subhead-num {
  display: grid;
  place-content: center;
  place-items: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: clamp(1rem, 0.778rem + 0.46vw, 1.125rem);
  font-weight: 500;
  color: rgb(255, 255, 255);
  background-color: rgb(255, 177, 0);
}

.p-job__subhead-text {
  padding-top: 0.05em;
  font-size: clamp(1.25rem, 0.806rem + 0.93vw, 1.5rem);
  font-weight: bold;
  line-height: 1.4;
}

.p-job__button {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 320px;
  margin: 0 auto;
}
.p-job__button .c-button {
  height: 55px;
}
.p-job__button .c-button:nth-of-type(2) {
  background-color: rgb(255, 98, 0);
}
.p-job__button .c-button__text {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-job__button {
    max-width: 660px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .p-job__button .c-button {
    height: 64px;
  }
}

.p-job__buttoin-single {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 1.25rem;
}
.p-job__buttoin-single .c-button {
  max-width: 320px;
  height: 55px;
}
.p-job__buttoin-single .c-button__text {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-job__buttoin-single {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 992px) {
  .p-job__buttoin-single .c-button {
    height: 64px;
  }
}

.p-voice {
  overflow-x: clip;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  background-image: url(../img/voice-fig-01.jpg);
  background-size: 375px;
  position: relative;
}

.p-voice__inner {
  max-width: 980px;
  margin: 0 auto;
}

.p-voice__main {
  margin-bottom: 8.75rem;
}

.p-voice__block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.p-voice__block:first-of-type {
  margin-bottom: 3.75rem;
  padding-bottom: 3.75rem;
  border-bottom: 8px dotted rgb(255, 255, 255);
}
.p-voice__block:first-of-type .p-voice__detail {
  order: 0;
}
.p-voice__block:first-of-type .p-voice__fig {
  order: 1;
}
.p-voice__block:nth-of-type(2) .p-voice__detail {
  order: 0;
}
.p-voice__block:nth-of-type(2) .p-voice__fig {
  order: 1;
  margin-right: -1.25rem;
}
@media screen and (min-width: 768px) {
  .p-voice__block:first-of-type {
    grid-template-columns: 1fr 50%;
    margin-bottom: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .p-voice__block:first-of-type .p-voice__detail {
    order: 1;
  }
  .p-voice__block:first-of-type .p-voice__fig {
    order: 0;
    padding-top: 1.25rem;
  }
  .p-voice__block:nth-of-type(2) {
    grid-template-columns: 50% 1fr;
  }
  .p-voice__block:nth-of-type(2) .p-voice__fig {
    padding-top: 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  .p-voice__block {
    gap: 3.75rem;
  }
  .p-voice__block:first-of-type {
    border-bottom: 10px dotted rgb(255, 255, 255);
  }
  .p-voice__block:nth-of-type(2) .p-voice__fig {
    margin-right: calc((980px - 100vw) / 2 - 15px);
  }
}
@media screen and (min-width: 1200px) {
  .p-voice__block {
    gap: 4.375rem;
  }
  .p-voice__block:first-of-type {
    grid-template-columns: 1fr 55%;
  }
  .p-voice__block:first-of-type .p-voice__fig {
    margin-left: calc((980px - 100vw) / 2 + 20px);
  }
  .p-voice__block:nth-of-type(2) {
    grid-template-columns: 55% 1fr;
  }
  .p-voice__block:nth-of-type(2) .p-voice__fig {
    margin-right: calc((980px - 100vw) / 2);
  }
}
@media screen and (min-width: 1400px) {
  .p-voice__block {
    gap: 5.625rem;
  }
  .p-voice__block:first-of-type {
    grid-template-columns: 1fr 60%;
  }
  .p-voice__block:nth-of-type(2) {
    grid-template-columns: 60% 1fr;
  }
}

.p-voice__info {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 0.625rem;
  align-items: center;
  margin-bottom: 2.25rem;
}

.p-voice__name {
  margin-bottom: 0.625rem;
  font-size: clamp(1.125rem, 0.903rem + 0.46vw, 1.25rem);
  font-weight: bold;
  line-height: 1.2;
}

.p-voice__data {
  line-height: 1.2;
}

.p-voice__faq-title {
  margin-bottom: 1.25rem;
  font-size: clamp(1.25rem, 1.028rem + 0.46vw, 1.375rem);
  font-weight: bold;
  color: rgb(255, 98, 0);
  line-height: 1.2;
}

.p-voice__faq-box:not(:last-of-type) {
  margin-bottom: 2rem;
}

.p-voice__faq-head {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.3125rem;
  margin-bottom: 1rem;
  font-weight: bold;
  line-height: 1.4;
}
.p-voice__faq-head::before {
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  background-color: rgb(255, 98, 0);
  border-radius: 50%;
  position: relative;
  top: 5px;
}

.p-message {
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
  padding-top: 1.25rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  background-color: rgb(255, 217, 126);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-message {
    padding-top: 1.25rem;
    padding-bottom: 3.75rem;
  }
}
@media screen and (min-width: 992px) {
  .p-message {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-message {
    padding-top: 6.25rem;
    padding-bottom: 6.875rem;
  }
}
@media screen and (min-width: 1400px) {
  .p-message {
    padding-top: 8.125rem;
    padding-bottom: 10.625rem;
  }
}

.p-message__main {
  display: grid;
  grid-template-columns: 1fr;
  place-content: center;
  place-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 15;
}
@media screen and (min-width: 768px) {
  .p-message__main {
    grid-template-columns: 1fr;
    place-content: start;
    place-items: start;
    justify-content: end;
    width: 60%;
    max-width: 100%;
    margin: 0;
    margin-left: auto;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .p-message__main {
    grid-template-columns: 170px minmax(auto, 550px);
    gap: 2.5rem;
    align-items: center;
    width: auto;
    max-width: 980px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .p-message__main {
    grid-template-columns: 198px minmax(auto, 550px);
    gap: 3.75rem;
  }
}

.p-message__fig {
  width: 140px;
}
@media screen and (min-width: 992px) {
  .p-message__fig {
    width: 100%;
  }
}

.p-message__title {
  font-size: clamp(1.5rem, -0.278rem + 3.7vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 0.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-message__title {
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .p-message__title {
    margin-bottom: 1.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-message__title {
    margin-bottom: 1.5rem;
  }
}

.p-message__summary {
  font-weight: bold;
}

.p-message__deco01 {
  width: 350px;
  margin-left: -1.25rem;
  z-index: 10;
}
@media screen and (min-width: 476px) {
  .p-message__deco01 {
    width: 450px;
  }
}
@media screen and (min-width: 768px) {
  .p-message__deco01 {
    width: 39%;
    max-width: 720px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.p-message__deco02 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-99%);
}

.p-message__deco03 {
  width: 100px;
  position: absolute;
  top: 1.25rem;
  right: 5%;
  z-index: 10;
}
@media screen and (min-width: 992px) {
  .p-message__deco03 {
    top: -0.625rem;
    width: 100px;
    right: 5%;
  }
}
@media screen and (min-width: 1200px) {
  .p-message__deco03 {
    width: 120px;
    right: 10%;
  }
}
@media screen and (min-width: 1400px) {
  .p-message__deco03 {
    width: 142px;
    right: 15%;
  }
}

.p-message__deco04 {
  width: 80px;
  position: absolute;
  right: 5%;
  bottom: 1.875rem;
}
@media screen and (min-width: 992px) {
  .p-message__deco04 {
    width: 80px;
    right: 5%;
    bottom: 1.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-message__deco04 {
    width: 100px;
    right: 10%;
    bottom: 3.75rem;
  }
}
@media screen and (min-width: 1400px) {
  .p-message__deco04 {
    width: 120px;
    right: 15%;
    bottom: 6.25rem;
  }
}

.p-voice__deco {
  width: 322px;
  height: 140px;
  position: absolute;
  top: -2.1875rem;
  left: 50%;
  transform: translateX(-50%);
  clip-path: ellipse(49% 49% at 50% 50%);
  background-image: url(../img/voice-fig-01.jpg);
  background-size: 375px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-voice__deco {
    width: 450px;
    height: 250px;
    top: -3.125rem;
  }
}
@media screen and (min-width: 992px) {
  .p-voice__deco {
    width: 562px;
    height: 364px;
    top: -4.6875rem;
  }
}

.p-search {
  padding-top: 2.5rem;
  padding-right: 1.25rem;
  padding-bottom: 12%;
  padding-left: 1.25rem;
  background-image: url(../img/search-fig-10.jpg);
  background-size: 18px;
}
@media screen and (min-width: 992px) {
  .p-search {
    padding-top: 5rem;
  }
}

.p-search__inner {
  max-width: 980px;
  margin: 0 auto;
}

.p-search__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media screen and (min-width: 576px) {
  .p-search__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-search__list {
    gap: 1.5625rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .p-search__list {
    gap: 2.5rem 2.875rem;
  }
}

.p-search__link {
  overflow: clip;
  padding-bottom: 1rem;
  border-radius: 24px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 8px 0px rgba(108, 108, 108, 0.5);
  transition: 0.3s;
}
.p-search__link:hover {
  opacity: 0.7;
}

.p-search__fig {
  margin-bottom: 0.625rem;
}

.p-search__name {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  font-size: clamp(1rem, 0.778rem + 0.46vw, 1.125rem);
  font-weight: bold;
  color: rgb(255, 98, 0);
  text-align: center;
}
@media screen and (min-width: 992px) {
  .p-search__name {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.p-search__add {
  display: flex;
  justify-content: center;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 992px) {
  .p-search__add {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.l-modal .modal_inner {
  margin: 1.25rem;
  background: none;
}

.p-modal__inner {
  max-width: 980px;
  padding-top: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.25rem;
  border-radius: 32px;
  background-color: rgb(255, 255, 255);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-modal__inner {
    padding-top: 3rem;
    padding-right: 2.5rem;
    padding-bottom: 3rem;
    padding-left: 2.5rem;
  }
}

.p-modal__body {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.p-modalfeatures__box {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-modalfeatures__box {
    grid-template-columns: 46.5% 1fr;
    gap: 2rem;
  }
}

.p-modalfeatures__fig {
  position: relative;
}

.p-modalfeatures__num {
  display: grid;
  place-content: center;
  place-items: center;
  width: 84px;
  height: 30px;
  padding-right: 0.625rem;
  font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
  color: rgb(255, 255, 255);
  background-color: rgb(255, 98, 0);
  position: absolute;
  top: 1rem;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%);
}

.p-modalfeatures__title {
  margin-bottom: 1rem;
  font-size: clamp(1.375rem, 0.708rem + 1.39vw, 1.75rem);
  font-weight: bold;
  line-height: 1.4;
}
.p-modalfeatures__title span {
  font-weight: bold;
  color: rgb(255, 98, 0);
}

.p-modalmenu__closeicon-button {
  display: grid;
  grid-template-columns: auto 14px;
  place-content: center;
  place-items: center;
  gap: 0.625rem;
  width: 115px;
  height: 35px;
  margin: 0 auto;
  color: rgb(255, 255, 255);
  border-radius: 20px;
  background-color: rgb(255, 98, 0);
  transition: 0.3s;
}
.p-modalmenu__closeicon-button:hover {
  opacity: 0.7;
}

.p-modalclose {
  position: absolute;
  top: 0.9375rem;
  right: 0.9375rem;
}

.p-modalclose__button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgb(255, 98, 0);
  transition: 0.3s;
}
.p-modalclose__button:hover {
  opacity: 0.7;
}
.p-modalclose__button img {
  width: 14px;
}
@media screen and (min-width: 768px) {
  .p-modalclose__button {
    width: 38px;
    height: 38px;
  }
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
  filter: blur(15px);
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
    filter: blur(15px);
  }
  20% {
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.delay01 {
  animation-delay: 0.1s;
}

.delay02 {
  animation-delay: 0.45s;
}

.delay03 {
  animation-delay: 0.7s;
}

.delay04 {
  animation-delay: 0.95s;
}

.delay05 {
  animation-delay: 1.2s;
}

.delay06 {
  animation-delay: 1.45s;
}

.delay07 {
  animation-delay: 1.7s;
}

.delay08 {
  animation-delay: 1.95s;
}

.fadeinTrigger01 {
  opacity: 0;
}

.fadeinIn01 {
  animation-delay: 0.2s;
  animation-name: fadeIn01;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeIn01 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slideTrigger01 {
  opacity: 0;
}

.slideIn01 {
  animation-name: slideIn01;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideIn01 {
  0% {
    transform: translateY(5rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
}
.slideTrigger02 {
  opacity: 0;
}

.slideIn02 {
  animation-name: slideIn02;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideIn02 {
  0% {
    transform: translateX(-5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.slideTrigger03 {
  opacity: 0;
}

.slideIn03 {
  animation-name: slideIn03;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideIn03 {
  0% {
    transform: translateX(5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}