@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html {
  scroll-padding-top: 3.75rem;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
    scroll-padding-top: 5.5rem;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media screen and (hover: hover) and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

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

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

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

textarea {
  resize: vertical;
}

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

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

select::-ms-expand {
  display: none;
}

.l-inner {
  max-width: 37.5rem;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.test {
  font-size: 1.25rem;
  background-color: #111;
  color: #fff;
}

.p-about-wrap {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  overflow: hidden;
  background: #a7e9ff;
}
@media screen and (min-width: 768px) {
  .p-about-wrap {
    padding-bottom: 6.25rem;
  }
}
@media (max-width: 350px) {
  .p-about-wrap {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.p-about {
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  border: 0.125rem solid #0d265a;
  border-radius: 0.3125rem;
  background: #fff8d6;
  box-shadow: 0 0.5rem 0 #0d265a;
  color: #0d265a;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding: 3.75rem;
    border-width: 0.1875rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.625rem 0 #0d265a;
  }
}
@media (max-width: 350px) {
  .p-about {
    transform: none;
  }
}

.p-about__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about__content {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
  }
}

.p-about__copy {
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about__copy {
    flex: 1 1 0;
    align-items: flex-start;
    gap: 2rem;
    width: auto;
    max-width: none;
    min-width: 0;
  }
}

.p-about__title {
  max-width: 18.8125rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    margin-left: initial;
    margin-right: initial;
    max-width: 29.25rem;
  }
}

.p-about__title img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-about__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about__body {
    gap: 1rem;
  }
}

.p-about__lead {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #ff9000;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-about__lead {
    display: block;
    font-size: 1.875rem;
  }
}

.p-about__text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    font-size: 1rem;
  }
}

.p-about__text p {
  margin: 0;
}

.p-about__text p + p {
  margin-top: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-about__text p + p {
    margin-top: 1.5rem;
  }
}

.p-about__text br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about__text br {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .p-about__lead span {
    display: inline;
  }
}

.p-about__visual {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.625rem;
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-about__visual {
    flex: none;
    flex-direction: column;
    gap: 1rem;
    width: 21.875rem;
  }
}

.p-about__visual picture {
  display: block;
  flex: 1 1 auto;
  width: auto;
  max-width: min(18.375rem, 100% - 1.625rem);
  overflow: hidden;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-about__visual picture {
    flex: none;
    width: 21.875rem;
    max-width: none;
    height: 28.75rem;
  }
}

.p-about__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 36%;
}
@media screen and (min-width: 768px) {
  .p-about__photo {
    height: 100%;
    aspect-ratio: auto;
  }
}

.p-about__name {
  margin: 0;
  color: #0d265a;
  writing-mode: vertical-rl;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-about__name {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
    writing-mode: horizontal-tb;
    font-size: 1rem;
  }
}

.p-about__name-person {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-about__name-person {
    font-size: 1.25rem;
  }
}

.p-area {
  background: #a7e9ff;
  color: #0d265a;
  padding-top: 3.75rem;
}

.p-area .l-inner {
  display: grid;
}

.p-area__content {
  position: relative;
  z-index: 2;
  grid-area: 1/1;
  align-self: start;
  margin-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-area__content {
    align-self: center;
    margin-left: 4.75%;
  }
}

.p-area__title {
  max-width: 11.75rem;
}
@media screen and (min-width: 768px) {
  .p-area__title {
    max-width: 18.25rem;
  }
}

.p-area__title img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-area__text {
  width: 17.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-area__text {
    width: auto;
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.p-area__text--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-area__text--pc {
    display: block;
  }
}

.p-area__text--sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-area__text--sp {
    display: none;
  }
}

.p-area__text--sp br {
  display: block;
}

.p-area__map {
  position: relative;
  z-index: 1;
  grid-area: 1/1;
  align-self: start;
  width: calc(100% + 1.875rem);
  aspect-ratio: 400/307;
  margin-top: 5.5rem;
  margin-left: -0.9375rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-area__map {
    width: 75.6667%;
    aspect-ratio: 908/539;
    margin-top: 0;
    margin-left: 24.3333%;
    overflow: visible;
  }
}

.p-area__map img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-area__map .p-area__map-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-area__map .p-area__map-pc {
    display: block;
    width: 100%;
  }
}

.p-area__map .p-area__map-sp {
  position: absolute;
  top: 0.19%;
  left: 3.08%;
  width: 92.62%;
  aspect-ratio: 370.48/374.31;
}
@media screen and (min-width: 768px) {
  .p-area__map .p-area__map-sp {
    display: none;
  }
}

.p-area__map .p-area__highlight-sp {
  position: absolute;
  top: 34.87%;
  left: 55.07%;
  width: 40.75%;
  aspect-ratio: 163/162.56;
}
@media screen and (min-width: 768px) {
  .p-area__map .p-area__highlight-sp {
    display: none;
  }
}

.p-cases-machines {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  overflow: hidden;
  background-color: #fff8d6;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 5px, transparent 5.5px);
  background-size: 24px 24px;
  color: #0d265a;
}
@media screen and (min-width: 768px) {
  .p-cases-machines {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}
@media (max-width: 350px) {
  .p-cases-machines {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.p-cases-machines > .l-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-cases-machines > .l-inner {
    gap: 5rem;
  }
}

.p-cases-machines__title {
  max-width: 9.375rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-cases-machines__title {
    max-width: 14.5625rem;
  }
}

.p-cases-machines__title img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-cases {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (max-width: 350px) {
  .p-cases {
    margin-bottom: 0;
  }
}

.p-cases__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-cases__list {
    gap: 1.5rem;
    margin-top: 3rem;
  }
}

.p-cases__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem;
  border: 0.125rem solid #0d265a;
  border-radius: 0.3125rem;
  background: #fff;
  box-shadow: 0 0.5rem 0 #0d265a;
}
@media screen and (min-width: 768px) {
  .p-cases__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    border-width: 0.1875rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.625rem 0 #0d265a;
  }
}

.p-cases__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-cases__content {
    flex: 1 1 0;
    gap: 1rem;
    min-width: 0;
  }
}

.p-cases__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-cases__meta {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

.p-cases__category {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4.875rem;
  padding: 0.3125rem 0.9375rem;
  border-radius: 2.5rem;
  background: #fff196;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-cases__category {
    min-width: 6.875rem;
    font-size: 1.125rem;
  }
}

.p-cases__location {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-cases__location {
    font-size: 1rem;
  }
}

.p-cases__item-title {
  margin: 0;
  color: #ff9000;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-cases__item-title {
    font-size: 1.875rem;
  }
}

.p-cases__text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-cases__text {
    font-size: 1rem;
  }
}

.p-cases__visual {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-cases__visual {
    flex: 0 0 31.25rem;
  }
}

.p-cases__visual picture {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 320/192;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-cases__visual picture {
    width: 31.25rem;
    max-width: none;
    aspect-ratio: 500/300;
  }
}

.p-cases__visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.3125rem;
  object-fit: cover;
  object-position: center 55%;
}
@media screen and (min-width: 768px) {
  .p-cases__visual img {
    border-radius: 0.625rem;
  }
}

.p-cases__caption {
  color: #b0b0b0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-cases__caption {
    font-size: 0.875rem;
  }
}

.u-case-pc {
  display: none;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .u-case-pc {
    display: inline;
  }
}

.u-case-sp {
  display: inline;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .u-case-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .p-cases__item--reverse {
    flex-direction: row-reverse;
  }
}

.p-consultation {
  position: relative;
  padding-bottom: 0.625rem;
  background: linear-gradient(#a7e9ff 0 50.14%, transparent 50.14% 100%), #fff8d6;
  color: #0d265a;
}
@media screen and (min-width: 768px) {
  .p-consultation {
    padding-bottom: 0.9375rem;
    background: linear-gradient(#a7e9ff 0 50%, transparent 50% 100%), #fff8d6;
  }
}

.p-consultation::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 49.86%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 5px, transparent 5.5px);
  background-size: 24px 24px;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-consultation::after {
    height: 50%;
  }
}

.p-consultation--blue {
  background: linear-gradient(to bottom, #dff6fe 0 50.14%, #a7e9ff 50.14% 100%);
}
@media screen and (min-width: 768px) {
  .p-consultation--blue {
    background: linear-gradient(to bottom, #dff6fe 0 50%, #a7e9ff 50% 100%);
  }
}

.p-consultation--blue::after {
  display: none;
}

.p-consultation--final {
  background: linear-gradient(to bottom, #fff8d6 0 50.14%, #fff 50.14% 100%);
}
@media screen and (min-width: 768px) {
  .p-consultation--final {
    background: linear-gradient(to bottom, #fff8d6 0 50%, #fff 50% 100%);
  }
}

.p-consultation--final::after {
  display: none;
}

.p-consultation--dots-top::after {
  display: block;
  top: 0;
  bottom: auto;
  height: 50.14%;
}
@media screen and (min-width: 768px) {
  .p-consultation--dots-top::after {
    height: 50%;
  }
}

.p-consultation__card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 22.5rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1.875rem 1.0625rem 1.0625rem;
  border: 0.1875rem solid #fff;
  border-radius: 0.3125rem;
  background: #ff9000;
  box-shadow: 0 0.625rem 0 #0d265a;
}
@media screen and (min-width: 768px) {
  .p-consultation__card {
    flex-direction: column;
    gap: 1.5rem;
    max-width: initial;
    margin-right: initial;
    margin-left: initial;
    padding: 2.5rem 5.0625rem;
    border-width: 0.3125rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.9375rem 0 #0d265a;
  }
}
@media (max-width: 350px) {
  .p-consultation__card {
    margin-left: 0;
  }
}

.p-consultation__machine,
.p-consultation__staff {
  position: absolute;
  z-index: 2;
  margin: 0;
}

.p-consultation__machine {
  top: 3.5rem;
  left: 0.375rem;
  width: 5rem;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .p-consultation__machine {
    top: 1.125rem;
    left: 11.375rem;
    width: 8.75rem;
  }
}

.p-consultation__staff {
  top: 2.625rem;
  right: -0.6875rem;
  width: 6.8125rem;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .p-consultation__staff {
    top: -2.8125rem;
    right: 9.9375rem;
    width: 12.6875rem;
  }
}

.p-consultation__machine picture,
.p-consultation__machine img,
.p-consultation__staff picture,
.p-consultation__staff img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-consultation__machine img,
.p-consultation__staff img {
  object-fit: contain;
}

.p-consultation__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4375rem;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-consultation__lead {
    gap: 0.5rem;
    width: 100%;
    max-width: 43.9375rem;
    font-size: 2rem;
  }
}

.p-consultation__lead-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-consultation__lead-main {
    flex-direction: row;
    align-items: flex-end;
    gap: 0.5rem;
  }
}

.p-consultation__lead-main figure {
  position: relative;
  width: 10.75rem;
  aspect-ratio: 524/155;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-consultation__lead-main figure {
    width: 11.9375rem;
  }
}

.p-consultation__lead-main figure picture,
.p-consultation__lead-main figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-consultation__lead p {
  margin: 0;
}

.p-consultation__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 20rem;
}
@media screen and (min-width: 768px) {
  .p-consultation__actions {
    flex-direction: row;
    gap: 1.25rem;
    max-width: 63.8125rem;
  }
}

.p-consultation__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  border: 0.125rem solid #0d265a;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-consultation__actions a {
    flex: 1 1 0;
    gap: 0.5rem;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    border-width: 0.1875rem;
    border-radius: 0.625rem;
    height: 8.125rem;
  }
}

.p-consultation__actions > a > img {
  display: block;
  flex: 0 0 3.125rem;
  width: 3.125rem;
  height: auto;
  aspect-ratio: 1;
  padding: 0.3125rem;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-consultation__actions > a > img {
    flex-basis: 4.375rem;
    width: 4.375rem;
    padding: 0.4375rem;
  }
}
@media (max-width: 350px) {
  .p-consultation__actions > a > img {
    flex-basis: 2.75rem;
    width: 2.75rem;
  }
}

.p-consultation__phone {
  background: #fff;
  color: #ff9000;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .p-consultation__phone {
    height: initial;
  }
}

.p-consultation__phone > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  white-space: nowrap;
}

.p-consultation__phone strong {
  font-family: "Ubuntu", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-consultation__phone strong {
    font-size: 2.875rem;
  }
}

.p-consultation__phone small {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-consultation__phone small {
    font-size: 1rem;
  }
}
@media (max-width: 350px) {
  .p-consultation__phone small {
    font-size: 0.625rem;
  }
}

.p-consultation__mail {
  background: #ffdd00;
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.3;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .p-consultation__mail {
    height: initial;
    font-size: min(2rem, 2.2222222222vw);
  }
}

.p-consultation__mail-icon {
  flex: 0 0 3.125rem;
  width: 3.125rem;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .p-consultation__mail-icon {
    flex-basis: 4.375rem;
    width: 4.375rem;
  }
}

.p-consultation__mail-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-contact {
  padding-top: 4rem;
  padding-bottom: 4.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-top: 6rem;
    padding-bottom: 7.5rem;
  }
}

.p-contact::before {
  position: absolute;
  content: "";
  background: url(../images/common/contact_left.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15.3125rem;
  height: auto;
  aspect-ratio: 460/307;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-contact::before {
    width: 28.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact::after {
    position: absolute;
    content: "";
    background: url(../images/common/contact_right.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 24.1875rem;
    height: auto;
    aspect-ratio: 387/205;
    object-fit: cover;
    top: 0;
    right: 0;
    z-index: -1;
  }
}

.p-contact__content {
  max-width: 67.5rem;
  margin-left: auto;
  margin-right: auto;
}

.p-contact__title-wrapper {
  text-align: center;
}

.p-contact__title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 2.25rem;
  }
}

.p-contact__box {
  background-color: #fff;
  border: 0.1875rem solid #f6ab00;
  padding: 1.75rem 1.25rem 4rem;
  border-radius: 1.875rem;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__box {
    border-radius: 3.75rem;
    margin-top: 5.25rem;
    padding-top: initial;
    padding-left: 8.75rem;
    padding-right: 8.75rem;
    padding-bottom: 3.5rem;
  }
}

.p-contact__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  justify-content: center;
  margin-top: -3.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__tabs {
    margin-top: -2rem;
    gap: 3rem;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-contact__tab {
  width: 100%;
  max-width: 17.5rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.4375rem;
  border: 0;
  background-color: #bdbdbd;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  cursor: pointer;
  font-size: 1.125rem;
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__tab {
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
  }
}

.p-contact__tab.is-active {
  background-color: #f6ab00;
}

.p-contact__note {
  margin-top: 1.5rem;
  color: #e5005a;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__note {
    font-size: 1rem;
    margin-top: 5rem;
  }
}

.p-contact__note--inquiry {
  color: #111;
}

.p-contact__panels {
  margin-top: 2.5rem;
}

.p-contact__honey {
  position: absolute;
  left: -100vw;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.p-contact__form {
  display: grid;
  margin-top: 2.5rem;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    gap: 3.5rem;
  }
}

.p-contact__fields {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__fields {
    gap: 1.875rem;
  }
}

.p-contact__field {
  display: grid;
  grid-template-columns: 11.5rem 1fr;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__field {
    grid-template-columns: 11.5rem 1fr;
  }
}
@media (max-width: 767px) {
  .p-contact__field {
    grid-template-columns: 1fr;
    gap: 0.625rem;
    align-items: start;
  }
}

.p-contact__field--address {
  align-items: start;
}

@media screen and (min-width: 768px) {
  .p-contact__field--address .p-contact__label-row {
    padding-top: 0.5rem;
  }
}

.p-contact__field--short .p-contact__input--short {
  max-width: 11.25rem;
}
@media (max-width: 767px) {
  .p-contact__field--short .p-contact__input--short {
    max-width: 100%;
  }
}

.p-contact__label {
  color: #393e4c;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.7;
}

.p-contact__label-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.p-contact__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 1.0625rem;
  background-color: #f6ab00;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.7;
  border-radius: 0.125rem;
}

.p-contact__required--alert {
  background-color: #e5005a;
}

.p-contact__input {
  width: 100%;
  height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid #bdbdbd;
  border-radius: 0.125rem;
  background-color: #fff;
  font-size: 1rem;
}

.p-contact__textarea {
  width: 100%;
  min-height: 7.5rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid #bdbdbd;
  border-radius: 0.125rem;
  background-color: #fff;
  font-size: 1rem;
  resize: vertical;
}

.p-contact__textarea--lg {
  min-height: 9.375rem;
}

.p-contact__textarea::placeholder {
  color: #cccccc;
}

.p-contact__input::placeholder {
  color: #cccccc;
}

.p-contact__address {
  display: grid;
  gap: 0.5rem;
}

.p-contact__zip {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  align-items: center;
  gap: 0.5rem;
  max-width: 11.25rem;
}
@media (max-width: 767px) {
  .p-contact__zip {
    max-width: 100%;
  }
}

.p-contact__zip-mark {
  font-size: 1rem;
  line-height: 1.485;
}

.p-contact__agreements {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-contact__agreements {
    gap: 1rem;
  }
}

.mt16 {
  margin-top: 1rem;
}

.mt56 {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .mt56 {
    margin-top: 3.5rem;
  }
}

.p-contact__agree {
  display: grid;
  justify-items: start;
}

.p-contact__check {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__check {
    align-items: center;
  }
}

.p-contact__checkbox {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.p-contact__check-box {
  border: 0.125rem solid #bdbdbd;
  border-radius: 0.125rem;
  background-color: #fff;
  display: grid;
  place-items: center;
  min-width: 1.3125rem;
  min-height: 1.3125rem;
  max-width: 1.3125rem;
  max-height: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__check-box {
    width: 1.5625rem;
    height: 1.5625rem;
    max-width: 1.5625rem;
    max-height: 1.5625rem;
  }
}

.p-contact__checkbox:checked + .p-contact__check-box::after {
  content: "";
  width: 0.875rem;
  height: 0.5rem;
  border-left: 0.1875rem solid #005d97;
  border-bottom: 0.1875rem solid #005d97;
  transform: rotate(-45deg);
  margin-top: -0.125rem;
}

.p-contact__check-label {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact__check-label {
    font-size: 1.25rem;
  }
}

.p-contact__agree-text {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .p-contact__agree-text {
    font-size: 0.9375rem;
  }
}

.p-contact__policy {
  width: 100%;
  border: 1px solid #bdbdbd;
  border-radius: 0.125rem;
  background-color: #fff;
  height: 6.25rem;
  overflow: auto;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  padding-bottom: 0.9375rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__policy {
    padding-top: 0.75rem;
    padding-bottom: 1.5rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.p-contact__policy-text {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  white-space: pre-line;
}

.p-contact__fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-inline-size: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  align-items: start;
  grid-column: 1/-1;
}
@media screen and (min-width: 768px) {
  .p-contact__fieldset {
    grid-template-columns: 11.5rem 1fr;
    gap: 1.875rem;
    align-items: center;
  }
}

.p-contact__fieldset > legend {
  padding: 0;
  margin: 0;
  float: none;
}

.p-contact__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-contact__choices {
    justify-content: flex-start;
  }
}

.p-contact__choice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  width: fit-content;
}

.p-contact__radio {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.p-contact__choice-box {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #bdbdbd;
  border-radius: 0.125rem;
  background-color: #fff;
  display: grid;
  place-items: center;
}

.p-contact__radio:checked + .p-contact__choice-box::after {
  content: "";
  width: 0.75rem;
  height: 0.4375rem;
  border-left: 0.1875rem solid #005d97;
  border-bottom: 0.1875rem solid #005d97;
  transform: rotate(-45deg);
  margin-top: -0.125rem;
}

.p-contact__choice-label {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.485;
  color: #111111;
}

.p-contact__submit {
  width: 100%;
  max-width: 25rem;
  height: 4.375rem;
  margin-left: auto;
  margin-right: auto;
  border: 0;
  background-color: #f6ab00;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  margin-top: 1.5rem;
}

.p-contact__submit:disabled {
  background-color: #bdbdbd;
  cursor: not-allowed;
}

.p-contact__submit-text {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.16;
}

.p-contact__submit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.875rem;
  height: 1.875rem;
  right: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__submit-icon {
    width: 2.1875rem;
    height: 2.1875rem;
    right: 2.5rem;
  }
}

.p-contact__submit-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-contact__submit-note {
  margin-top: 0.75rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #005d97;
}
@media screen and (min-width: 768px) {
  .p-contact__submit-note {
    font-size: 1rem;
  }
}

.p-faq {
  overflow: hidden;
  background-color: #fff8d6;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 5px, transparent 5.5px);
  background-position: 6px 6px;
  background-size: 24px 24px;
  color: #0d265a;
}

.p-faq__inner {
  width: 100%;
  margin-inline: auto;
  padding: 3.75rem 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-faq__inner {
    max-width: 75rem;
    padding: 6.25rem;
  }
}
@media (max-width: 350px) {
  .p-faq__inner {
    margin-left: 0;
    transform: none;
  }
}

.p-faq__title {
  max-width: 14.0625rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-faq__title {
    max-width: 21.875rem;
  }
}

.p-faq__title img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-faq__list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__list {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

.p-faq__item {
  position: relative;
  padding: 1.71875rem 1.125rem;
  border: 0.125rem solid #0d265a;
  border-radius: 0.3125rem;
  background: #fff;
  box-shadow: 0 0.5rem 0 #0d265a;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-faq__item {
    padding: 2.3125rem 2.5rem;
    border-width: 0.1875rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.625rem 0 #0d265a;
  }
}

.p-faq__summary {
  display: grid;
  grid-template-columns: 2.5rem 1fr 1.125rem;
  align-items: center;
  gap: 1.125rem;
  margin: 0;
  cursor: pointer;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-faq__summary {
    grid-template-columns: 3.125rem 1fr 1.5625rem;
    gap: 1.25rem;
  }
}

.p-faq__summary::-webkit-details-marker {
  display: none;
}

.p-faq__q {
  display: grid;
  width: 2.5rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: #0d265a;
  color: #fff;
  font-family: Ubuntu, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-faq__q {
    width: 3.125rem;
    font-size: 1.375rem;
  }
}

.p-faq__question {
  color: #ff9000;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-faq__question {
    font-size: 1.5rem;
  }
}

.p-faq__question--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-faq__question--pc {
    display: inline;
  }
}

.p-faq__toggle {
  position: relative;
  width: 1.125rem;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .p-faq__toggle {
    width: 1.5625rem;
  }
}

.p-faq__toggle::before,
.p-faq__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.125rem;
  height: 0.1875rem;
  background: #0d265a;
  content: "";
  transform: translate(-50%, -50%);
}

.p-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.p-faq__item[open] .p-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.p-faq__answer {
  margin: 1.125rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-faq__answer {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.p-faq__summary:focus-visible {
  outline: 0.1875rem solid #ffdd00;
  outline-offset: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .p-faq__question--sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .p-faq__toggle,
  .p-faq__toggle::before,
  .p-faq__toggle::after {
    width: 1.5625rem;
  }
}

.p-flow {
  padding-top: 3.75rem;
  overflow-x: clip;
  overflow-y: visible;
  background: #a7e9ff;
  color: #0d265a;
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding-top: 6.25rem;
  }
}
@media (max-width: 350px) {
  .p-flow {
    padding-top: 3rem;
  }
}

.p-flow .p-vending__inner {
  width: 100%;
  max-width: 22.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-flow .p-vending__inner {
    max-width: 75rem;
  }
}
@media (max-width: 350px) {
  .p-flow .p-vending__inner {
    margin-inline: auto;
    transform: none;
  }
}

.p-flow__title {
  max-width: 11.75rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-flow__title {
    max-width: 18.25rem;
  }
}

.p-flow__title img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-flow__list {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    margin-top: 2.5rem;
  }
}

.p-flow__list::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0.75rem;
  background: #fff;
  content: "";
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-flow__list::before {
    width: 1.25rem;
  }
}

.p-flow__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1.125rem;
  border: 0.125rem solid #0d265a;
  border-radius: 0.3125rem;
  background: #fff;
  box-shadow: 0 0.5rem 0 #0d265a;
}

.p-flow__item:not(:last-child) {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}

.p-flow__item:not(:last-child)::after {
  content: none;
}

.p-flow__image {
  flex: none;
  width: 100%;
  max-width: 20rem;
  aspect-ratio: 320/172;
  margin: 0;
  overflow: hidden;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-flow__image {
    flex: 0 0 31.25rem;
    width: 31.25rem;
    max-width: none;
    aspect-ratio: 500/268;
    border-radius: 0.625rem 0 0 0.625rem;
  }
}

.p-flow__image picture,
.p-flow__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-flow__image img {
  object-fit: cover;
  object-position: center 70%;
}

.p-flow__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-flow__body {
    flex: 1 1 0;
    width: auto;
  }
}

.p-flow__step,
.p-flow__heading,
.p-flow__text {
  margin: 0;
}

.p-flow__step {
  color: #ff9000;
  font-family: "Ubuntu", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-flow__step {
    font-size: 1.625rem;
  }
}

.p-flow__heading {
  margin-top: 0.25rem;
  color: #ff9000;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-flow__heading {
    margin-top: 0.5rem;
    font-size: 1.875rem;
  }
}

.p-flow__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-flow__text {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.p-flow__actions {
  display: flex;
  flex-direction: column;
  gap: 0.719875rem;
  width: 100%;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-flow__actions {
    flex-direction: row;
    gap: 0.719875rem;
    width: 100%;
    margin-top: 1rem;
  }
}

.p-flow__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 100%;
  padding: 0.625rem 1.4375rem;
  border-radius: 0.3125rem;
  color: #0d265a;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-flow__action {
    width: 18rem;
    padding-top: min(1.0625rem, 1.1805555556vw);
    padding-bottom: min(1.0625rem, 1.1805555556vw);
    padding-left: min(1.4375rem, 1.5972222222vw);
    padding-right: min(1.4375rem, 1.5972222222vw);
    border: 0.1875rem solid #0d265a;
  }
}

.p-flow__phone-icon,
.p-flow__mail-icon {
  display: flex;
  flex: 0 0 2.5rem;
  align-items: center;
  justify-content: center;
  width: min(2.5rem, 2.7777777778vw);
  aspect-ratio: 1;
}

.p-flow__phone-icon img {
  display: block;
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.p-flow__mail-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-flow__action--phone {
  border: 3px solid #0d265a;
  background: #fff;
  color: #ff9000;
  font-family: "Ubuntu", sans-serif;
  font-size: 1.625rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-flow__action--phone {
    font-size: 1.625rem;
  }
}

.p-flow__action--mail {
  border: 3px solid #0d265a;
  background: #ffdd00;
  font-size: 1.125rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-flow__action--mail {
    font-size: min(1.125rem, 1.25vw);
  }
}

@media screen and (min-width: 768px) {
  .p-flow__item,
  .p-flow__item:nth-child(n) {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 2.5rem;
    border-width: 0.1875rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.625rem 0 #0d265a;
  }
}

.p-hero {
  position: relative;
  overflow-x: clip;
  background: #a7e9ff;
  color: #0d265a;
}

.p-hero > .l-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-hero > .l-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 92.3611111111vw;
    padding-top: 9.0277777778vw;
    padding-right: 1.7361111111vw;
    padding-bottom: 6.9444444444vw;
    padding-left: 1.7361111111vw;
  }
}

.p-hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 25rem;
  background: url(../images/vending/hero_bg_sp.webp);
  aspect-ratio: 400/200;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-hero::before {
    aspect-ratio: 1;
    background: url(../images/vending/hero_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 55.5555555556vw;
  }
}

.p-hero__left {
  position: relative;
  z-index: 3;
  opacity: 0;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-hero__left {
    width: 100%;
    flex: 0 0 48.8888888889vw;
    margin-left: 0;
  }
}

.p-hero__area {
  display: flex;
  align-items: stretch;
  width: fit-content;
  padding: 0.3125rem 2.0625rem 0.3125rem 1.75rem;
  background: #ff9000;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.875rem) 50%, 100% 100%, 0 100%, 0.875rem 50%);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-hero__area {
    padding: 0.625vw 4.1666666667vw 0.625vw 3.4722222222vw;
    clip-path: polygon(0 0, 100% 0, calc(100% - 1.7361111111vw) 50%, 100% 100%, 0 100%, 1.7361111111vw 50%);
    font-size: 2.7777777778vw;
    line-height: 1.3;
  }
}
@media (max-width: 374px) {
  .p-hero__area {
    font-size: 1.1875rem;
  }
}

.p-hero__message {
  width: 17.4375rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-hero__message {
    width: 34.7222222222vw;
    margin-top: 2.7777777778vw;
  }
}

.p-hero__support {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.4375rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-hero__support {
    gap: 1.1111111111vw;
    font-size: 2.9166666667vw;
  }
}

.p-hero__support-line {
  display: block;
  white-space: nowrap;
}

.p-hero__support-line:first-child {
  display: flex;
  align-items: flex-end;
}

.p-hero__support-line:first-child strong,
.p-hero__support-line:first-child small {
  display: block;
  flex: none;
}

.p-hero__support small {
  font-size: 0.875rem;
  font-weight: inherit;
}
@media screen and (min-width: 768px) {
  .p-hero__support small {
    font-size: 1.8055555556vw;
  }
}

.p-hero__title {
  position: relative;
  width: 17.0225rem;
  aspect-ratio: 272.36/43;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-hero__title {
    width: 33.8888888889vw;
    aspect-ratio: 488/78;
    margin-top: 1.3888888889vw;
  }
}

.p-hero__title picture,
.p-hero__title img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 17.0225rem;
  height: 3.1875rem;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .p-hero__title picture,
  .p-hero__title img {
    width: 33.8888888889vw;
    height: 6.25vw;
  }
}

.p-hero__brand {
  position: relative;
  width: 17.4375rem;
  aspect-ratio: 500/131;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-hero__brand {
    width: 34.7222222222vw;
    margin-top: 2.0833333333vw;
  }
}

.p-hero__brand img {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-hero__brand-shadow {
  z-index: 0;
  transform: scale(1.048, 1.18);
}

.p-hero__brand-main {
  z-index: 1;
}

.p-hero__badge {
  position: absolute;
  z-index: 4;
  top: 3.0625rem;
  left: 15.9375rem;
  width: clamp(5rem, 25vw, 6.25rem);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .p-hero__badge {
    top: 7.6388888889vw;
    left: 33.3333333333vw;
    right: auto;
    width: 11.25vw;
  }
}

.p-hero__badge img,
.p-hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-hero__badge img {
  object-fit: contain;
}

.p-hero__characters {
  position: absolute;
  z-index: 4;
  top: 11.0625rem;
  left: 17.5rem;
  width: 5.0625rem;
  aspect-ratio: 200/202;
}
@media screen and (min-width: 768px) {
  .p-hero__characters {
    top: 20.0694444444vw;
    left: 36.1111111111vw;
    right: auto;
    width: 13.8888888889vw;
  }
}

.p-hero__characters picture,
.p-hero__characters img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-hero__characters img {
  object-fit: contain;
}

.p-hero__categories {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.25rem;
  gap: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-hero__categories {
    width: 44.9305555556vw;
    margin-top: 2.7777777778vw;
    justify-content: flex-start;
    gap: 0.5555555556vw;
  }
}

.p-hero__categories li {
  padding: 0.4375rem 0.75rem 0.5rem;
  border: 0.125rem solid #fff;
  border-radius: 1.875rem;
  background: #fff196;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-hero__categories li {
    padding: 0.9027777778vw 1.3888888889vw 1.0416666667vw;
    border-width: 0.2083333333vw;
    border-radius: 2.0833333333vw;
    font-size: 1.8055555556vw;
  }
}
@media (max-width: 374px) {
  .p-hero__categories li {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.75rem;
  }
}

.p-hero__right {
  position: relative;
  z-index: 1;
  flex: none;
  align-self: flex-start;
  margin-top: 1rem;
  margin-left: 0.3125rem;
  margin-right: calc(50% - 50vw);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-hero__right {
    flex: 1 1 0;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-right: calc(50% - 50vw);
  }
}
@media (max-width: 374px) {
  .p-hero__right {
    width: calc(100% + 1.125rem);
    margin-left: -0.1875rem;
  }
}

.p-hero__ribbon {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0.625rem;
  width: 2.1875rem;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-hero__ribbon {
    right: 2.0833333333vw;
    width: 3.4722222222vw;
  }
}

.p-hero__ribbon picture,
.p-hero__ribbon img {
  display: block;
  width: 100%;
  height: auto;
}

.p-hero__photo {
  width: 100%;
  aspect-ratio: 380/325;
  overflow: hidden;
  border-radius: 3.4375rem 0 0 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-hero__photo {
    aspect-ratio: 663/567;
    border-radius: 3.4722222222vw 0 0 3.4722222222vw;
  }
}

.p-hero__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-machines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100vw;
  scroll-margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-machines {
    gap: 2.7777777778vw;
    scroll-margin-top: 5.5rem;
  }
}

.p-machines__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-machines__heading {
    gap: 1.6666666667vw;
    padding-right: 1.7361111111vw;
    padding-left: 1.7361111111vw;
  }
}

.p-machines__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-machines__title {
    font-size: 3.1944444444vw;
  }
}

.p-machines__lead {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-machines__lead {
    font-size: 1.1111111111vw;
    text-align: center;
  }
}

.p-machines__heading br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-machines__heading br {
    display: block;
  }
}

.p-machines__viewport {
  position: relative;
  width: 100vw;
  padding-bottom: 0.5rem;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .p-machines__viewport {
    padding-bottom: 0.6944444444vw;
  }
}

.p-machines__track {
  display: flex;
  align-items: stretch;
  height: auto;
}

.p-machines__slide {
  position: relative;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: calc(100vw - 3.75rem);
  max-width: 21.25rem;
  height: auto;
  padding: 1.25rem;
  border-radius: 0.625rem;
  background: #fff;
  box-shadow: 0 0.5rem 0 #0d265a;
}
@media screen and (min-width: 768px) {
  .p-machines__slide {
    flex-direction: row;
    gap: 2.2222222222vw;
    width: 55.5555555556vw;
    max-width: none;
    padding: 2.7777777778vw;
    border-radius: 0.6944444444vw;
    box-shadow: 0 0.5555555556vw 0 #0d265a;
  }
}

.p-machines__image {
  width: 10rem;
  aspect-ratio: 160/229;
  margin: 0;
  overflow: hidden;
  border-radius: 0.3125rem;
  background: #fff196;
}
@media screen and (min-width: 768px) {
  .p-machines__image {
    flex: 0 0 16.6666666667vw;
    width: 16.6666666667vw;
    aspect-ratio: 240/344;
    border-radius: 0.6944444444vw;
  }
}

.p-machines__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-machines__ribbon {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 2.5rem;
  padding: 1.25rem 0.625rem 1.75rem;
  background: #ff9000;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 0.75rem), 0 100%);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .p-machines__ribbon {
    width: 2.7777777778vw;
    padding: 1.3888888889vw 0.6944444444vw 1.9444444444vw;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 0.8333333333vw), 0 100%);
    font-size: 1.3888888889vw;
  }
}

.p-machines__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-machines__body {
    flex: 1 1 0;
    width: auto;
  }
}

.p-machines__tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-machines__tags {
    gap: 0.5555555556vw;
  }
}
@media (max-width: 350px) {
  .p-machines__tags {
    gap: 0.25rem;
  }
}

.p-machines__tags span {
  flex-shrink: 0;
  padding: 0.5rem 0.9375rem;
  border-radius: 2.5rem;
  background: #fff196;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 350px) {
  .p-machines__tags span {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-machines__tags span {
    padding: 0.5555555556vw 1.3888888889vw;
    border-radius: 2.7777777778vw;
    font-size: 1.3888888889vw;
  }
}

.p-machines__tags small {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 350px) {
  .p-machines__tags small {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-machines__tags small {
    font-size: 1.1111111111vw;
  }
}

.p-machines__name,
.p-machines__installation,
.p-machines__temperature,
.p-machines__maker,
.p-machines__description {
  margin: 0;
}

.p-machines__name {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-machines__name {
    margin-top: 0.5555555556vw;
    font-size: 2.0833333333vw;
  }
}

.p-machines__installation {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-machines__installation {
    margin-top: 0.5555555556vw;
    font-size: 1.25vw;
  }
}

.p-machines__temperature {
  color: #ff9000;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-machines__temperature {
    font-size: 1.3888888889vw;
  }
}

.p-machines__specs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-machines__specs {
    flex-direction: row;
    align-items: center;
    gap: 1.1111111111vw;
    margin-top: 0.5555555556vw;
    white-space: nowrap;
  }
}

.p-machines__maker {
  margin-top: 0.5rem;
  color: #b0b0b0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-machines__maker {
    margin-top: 0;
    font-size: 0.9722222222vw;
  }
}

.p-machines__description {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-machines__description {
    margin-top: 1.1111111111vw;
    font-size: 1.1111111111vw;
  }
}

.p-machines__controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-machines__controls {
    gap: 1.6666666667vw;
  }
}

.p-machines__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.875rem;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: #0d265a;
  color: #fff;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-machines__arrow {
    min-width: 2.7777777778vw;
  }
}

.p-machines__arrow::before {
  width: 0.5625rem;
  aspect-ratio: 1;
  border-top: 0.125rem solid currentColor;
  border-left: 0.125rem solid currentColor;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-machines__arrow::before {
    width: 0.8333333333vw;
    border-width: 0.2083333333vw;
  }
}

.p-machines__arrow--prev::before {
  margin-left: 0.1875rem;
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .p-machines__arrow--prev::before {
    margin-left: 0.2083333333vw;
  }
}

.p-machines__arrow--next::before {
  margin-left: -0.1875rem;
  transform: rotate(135deg);
}
@media screen and (min-width: 768px) {
  .p-machines__arrow--next::before {
    margin-left: -0.2083333333vw;
  }
}

.p-machines__dots {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-machines__dots {
    gap: 1.25vw;
  }
}

.p-machines__dot {
  width: 0.5rem;
  aspect-ratio: 1;
  padding: 0;
  border: 0.0625rem solid #0d265a;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-machines__dot {
    width: 0.6944444444vw;
    border-width: 0.0694444444vw;
  }
}

.p-machines__dot.is-active {
  background: #0d265a;
}

.p-mv {
  position: relative;
  background: #F5FBFE;
  padding-top: 7rem;
  padding-bottom: 6.3125rem;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-mv {
    padding-top: 8.8125rem;
    padding-bottom: 6.375rem;
  }
}

.p-mv::before {
  position: absolute;
  content: "";
  background: url(../images/common/mv_left.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 431/274;
  object-fit: cover;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 23.4375rem;
}
@media screen and (min-width: 768px) {
  .p-mv::before {
    width: 26.9375rem;
  }
}

.p-mv::after {
  position: absolute;
  content: "";
  background: url(../images/common/mv_right.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 23.4375rem;
  height: auto;
  aspect-ratio: 755/329;
  object-fit: cover;
  top: 0;
  right: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-mv::after {
    width: 47.1875rem;
  }
}

.p-mv__img {
  max-width: 75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .p-mv__img::before {
    position: absolute;
    content: "";
    background: url(../images/common/mv_right_icon.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 10.375rem;
    height: auto;
    aspect-ratio: 166/223;
    object-fit: cover;
    top: 15rem;
    right: -8.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-mv__img::after {
    position: absolute;
    content: "";
    background: url(../images/common/mv_left_icon.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 10.875rem;
    height: auto;
    aspect-ratio: 174/204;
    object-fit: cover;
    top: 0rem;
    left: -8.125rem;
  }
}

.p-mv__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-problems {
  position: relative;
  overflow: hidden;
  padding-top: 3.75rem;
  background-color: #fff8d6;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 5px, transparent 5.5px);
  background-position: 0 0;
  background-size: 24px 24px;
}
@media screen and (min-width: 768px) {
  .p-problems {
    padding-top: 0;
  }
}

.p-problems > .l-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-problems > .l-inner {
    padding-bottom: 13.75rem;
  }
}

.p-problems::before,
.p-problems__blue {
  position: absolute;
  inset: 0;
  content: "";
}

.p-problems::before {
  z-index: 0;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 83.45%, 50% 93.05%, 0 83.45%);
}
@media screen and (min-width: 768px) {
  .p-problems::before {
    clip-path: polygon(0 0, 100% 0, 100% 72.95%, 50% 89.68%, 0 72.95%);
  }
}

.p-problems__blue {
  z-index: 1;
  top: -1px;
  background: linear-gradient(180deg, #a7e9ff 0%, #4cb8e8 100%);
  clip-path: polygon(0 0, 100% 0, 100% 82.75%, 50% 91.65%, 0 82.75%);
}
@media screen and (min-width: 768px) {
  .p-problems__blue {
    clip-path: polygon(0 0, 100% 0, 100% 70.34%, 50% 87.07%, 0 70.34%);
  }
}

.p-problems__content {
  position: relative;
}

.p-problems__visual {
  width: min(100%, 22.5625rem);
  aspect-ratio: 361/639;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-problems__visual {
    width: 100%;
    max-width: 75rem;
    aspect-ratio: 1200/626;
  }
}

.p-problems__visual picture,
.p-problems__visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-problems__visual img {
  object-fit: contain;
}

.p-reasons {
  position: relative;
  margin-top: 6.25rem;
  padding-bottom: 3.75rem;
  background: #a7e9ff;
  color: #0d265a;
}
@media screen and (min-width: 768px) {
  .p-reasons {
    padding-bottom: 6.25rem;
  }
}
@media (max-width: 350px) {
  .p-reasons {
    margin-top: 5rem;
  }
}

.p-reasons::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 6.25rem;
  background-color: #fff8d6;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 5px, transparent 5.5px);
  background-size: 24px 24px;
  content: "";
}
@media (max-width: 350px) {
  .p-reasons::before {
    height: 5rem;
  }
}

.p-reasons__character {
  position: absolute;
  z-index: 2;
  top: -3.8125rem;
  left: 50%;
  width: 5.75rem;
  aspect-ratio: 92/105;
  margin: 0;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-reasons__character {
    top: 4.9375rem;
    left: 7.8125rem;
    width: min(11.125rem, 12.3611111111vw);
    aspect-ratio: 178/203;
    transform: none;
  }
}
@media (max-width: 350px) {
  .p-reasons__character {
    top: -3.0625rem;
  }
}

.p-reasons__character img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-reasons__inner {
  position: relative;
  width: 100%;
  max-width: 22.5rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-reasons__inner {
    max-width: 75rem;
    padding-top: 6.25rem;
  }
}
@media (max-width: 350px) {
  .p-reasons__inner {
    padding-top: 3rem;
  }
}

.p-reasons__title {
  margin-left: auto;
  max-width: 21.0625rem;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-reasons__title {
    max-width: 32.5625rem;
  }
}

.p-reasons__title img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-reasons__brand {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-reasons__brand {
    gap: 0.75rem;
  }
}

.p-reasons__brand img {
  display: block;
  width: 11.25rem;
  height: auto;
  object-fit: cover;
  object-position: center center;
}
@media screen and (min-width: 768px) {
  .p-reasons__brand img {
    width: 16.75rem;
  }
}

.p-reasons__brand-suffix {
  padding-bottom: 0.0625rem;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-reasons__brand-suffix {
    font-size: 2.625rem;
  }
}

.p-reasons__title-main {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: baseline;
  color: #0d265a;
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  white-space: nowrap;
  -webkit-text-stroke: 0.3125rem #fff;
  paint-order: stroke fill;
}
@media screen and (min-width: 768px) {
  .p-reasons__title-main {
    font-size: 3.5rem;
    -webkit-text-stroke-width: 0.4375rem;
  }
}
@media (max-width: 399px) {
  .p-reasons__title-main {
    font-size: 2.0625rem;
  }
}
@media (max-width: 350px) {
  .p-reasons__title-main {
    font-size: 1.8125rem;
  }
}

.p-reasons__title-main::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1.125rem;
  background: #ffdd00;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-reasons__title-main::after {
    height: 1.875rem;
  }
}

.p-reasons__title-number {
  color: #ff9000;
  font-family: "Ubuntu", sans-serif;
  font-size: 3.625rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-reasons__title-number {
    font-size: 5.375rem;
  }
}
@media (max-width: 399px) {
  .p-reasons__title-number {
    font-size: 3.3125rem;
  }
}
@media (max-width: 350px) {
  .p-reasons__title-number {
    font-size: 2.9375rem;
  }
}

.p-reasons__title-main em {
  color: #ff9000;
  font-style: normal;
}

.p-reasons__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-reasons__list {
    flex-direction: row;
    gap: 0.9375rem;
    margin-top: 1rem;
  }
}

.p-reasons__closing {
  width: 100%;
  max-width: 21.0625rem;
  margin: 1.375rem auto 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-reasons__closing {
    max-width: 52.375rem;
    margin: 2rem auto 1rem;
  }
}

.p-reasons__closing picture,
.p-reasons__closing img {
  display: block;
  width: 100%;
  height: auto;
}

.p-reasons__item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-reasons__item {
    flex: 1 1 0;
    min-width: 0;
  }
}

.p-reasons__item + .p-reasons__item {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-reasons__item + .p-reasons__item {
    margin-top: 0;
  }
}

.p-reasons__number {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  left: 1.25rem;
  width: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .p-reasons__number {
    width: 2.875rem;
  }
}

.p-reasons__number img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-reasons__item:nth-child(3) .p-reasons__number {
  left: 1rem;
}

.p-reasons__card {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 1.625rem;
  padding: 1.25rem;
  border: 0.125rem solid #0d265a;
  border-radius: 0.3125rem;
  background: #fff;
  box-shadow: 0 0.5rem 0 #0d265a;
}
@media screen and (min-width: 768px) {
  .p-reasons__card {
    padding: 1.875rem;
    border-width: 0.1875rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.625rem 0 #0d265a;
  }
}

.p-reasons__icon {
  display: block;
  flex: none;
  width: 4.375rem;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-reasons__icon {
    width: 5rem;
  }
}

.p-reasons__item:nth-child(2) .p-reasons__icon {
  width: 6.0625rem;
}
@media screen and (min-width: 768px) {
  .p-reasons__item:nth-child(2) .p-reasons__icon {
    width: 6.9375rem;
  }
}

.p-reasons__card-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 20rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-reasons__card-copy {
    max-width: 20.625rem;
    margin-top: 1rem;
  }
}

.p-reasons__card-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  color: #ff9000;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.p-reasons__card-kicker {
  font-size: 1.125rem;
  font-weight: inherit;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-reasons__card-kicker {
    font-size: 1.25rem;
  }
}

.p-reasons__card-heading {
  font-size: 1.75rem;
  font-weight: inherit;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-reasons__card-heading {
    font-size: 1.875rem;
  }
}

.p-reasons__card-text {
  width: 100%;
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-reasons__card-text {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reasons__item,
  .p-reasons__item:nth-child(n) {
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-reasons__number,
  .p-reasons__item:nth-child(3) .p-reasons__number {
    left: 0.75rem;
    font-size: 2.5rem;
    -webkit-text-stroke-width: 0.375rem;
  }
}

@media (max-width: 350px) {
  .p-reasons__character {
    transform: scale(0.8);
    transform-origin: top center;
  }
}

@media (max-width: 350px) {
  .p-reasons__inner {
    transform: none;
  }
}

.p-service-range {
  position: relative;
  padding-bottom: 0;
  overflow-x: clip;
  overflow-y: visible;
  background-color: #fff8d6;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 5px, transparent 5.5px);
  background-size: 24px 24px;
  color: #0d265a;
}
@media screen and (min-width: 768px) {
  .p-service-range {
    padding-bottom: 0;
  }
}

.p-service-range__comparison {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 22.5rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-service-range__comparison {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    max-width: 67.5rem;
    margin-top: 2.5rem;
  }
}

.p-service-range__legacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 20rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-service-range__legacy {
    gap: 1rem;
    width: 15.6875rem;
    margin: 0;
    padding-top: 2.0625rem;
  }
}

.p-service-range__label,
.p-service-range__ours-label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-service-range__label,
  .p-service-range__ours-label {
    font-size: 1.125rem;
  }
}

.p-service-range__label {
  gap: 0.625rem;
}

.p-service-range__label span,
.p-service-range__ours-label i {
  display: block;
  width: 1.125rem;
  aspect-ratio: 18/14;
  background: #0d265a;
  clip-path: polygon(8% 0, 92% 0, 100% 10%, 58% 92%, 42% 92%, 0 10%);
}
@media screen and (min-width: 768px) {
  .p-service-range__label span,
  .p-service-range__ours-label i {
    width: 1.25rem;
  }
}

.p-service-range__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0.125rem solid #0d265a;
  border-radius: 0.625rem;
  background: #fff;
  box-shadow: 0 0.5rem 0 #0d265a;
}
@media screen and (min-width: 768px) {
  .p-service-range__card {
    border-width: 0.1875rem;
    box-shadow: 0 0.625rem 0 #0d265a;
  }
}

.p-service-range__card--legacy {
  width: 100%;
  max-width: 20rem;
}
@media screen and (min-width: 768px) {
  .p-service-range__card--legacy {
    width: 15.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-service-range__card--legacy .p-service-range__card-list {
    padding-bottom: 6.875rem;
  }
}

.p-service-range__card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  margin: 0;
  background: #a7e9ff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-service-range__card-title {
    padding-top: 0.75rem;
    padding-bottom: 0.625rem;
    font-size: 1.75rem;
  }
}

.p-service-range__card-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: max-content;
  max-width: 100%;
  align-self: center;
  margin-top: 0;
  margin-left: 0;
  padding: 0.9375rem 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  list-style: none;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-service-range__card-list {
    padding: 1.25rem 1.875rem;
    font-size: 1.25rem;
  }
}

.p-service-range__card-list li::before {
  content: "・";
}

.p-service-range__ours {
  position: relative;
  width: 100%;
  max-width: 22.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-range__ours {
    max-width: 49.0625rem;
  }
}

.p-service-range__ours-label {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 1.4375rem;
  gap: 0.3125rem;
  width: calc(100% - 2.875rem);
  max-width: 19.625rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  background: linear-gradient(#fff8d6 50%, #fff 50%);
}
@media screen and (min-width: 768px) {
  .p-service-range__ours-label {
    left: 16.25rem;
    width: 20.3125rem;
    max-width: none;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.p-service-range__ours-label img {
  display: block;
  width: 8.375rem;
  height: auto;
  aspect-ratio: 134/35;
  object-fit: contain;
}

.p-service-range__ours-label span {
  color: #ff9000;
  font-size: 1.25rem;
  transform: translateY(0.1875rem);
}
@media screen and (min-width: 768px) {
  .p-service-range__ours-label span {
    font-size: 1.375rem;
    transform: translateY(0.125rem);
  }
}

.p-service-range__ours-label i {
  position: absolute;
  top: 50%;
  right: 0.3125rem;
  transform: translateY(-50%);
}

.p-service-range__ours-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 1.0625rem;
  padding: 2.5rem 1.0625rem 1.0625rem;
  border: 0.1875rem dashed #ff9000;
  border-radius: 0.625rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-service-range__ours-box {
    flex-direction: row;
    padding: 1.875rem 2.5rem;
    border-radius: 1.25rem;
  }
}

.p-service-range__ours-card {
  width: 100%;
  max-width: 20rem;
  flex: 0 0 auto;
}
@media screen and (min-width: 768px) {
  .p-service-range__ours-card {
    max-width: 20.75rem;
  }
}

.p-service-range__ours-card .p-service-range__card-list {
  align-items: flex-start;
  padding-left: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-service-range__ours-card .p-service-range__card-list {
    padding-left: 1.875rem;
  }
}

.p-service-range__ours-card .p-service-range__card-list li:nth-child(n+3) {
  color: #ff9000;
}

.p-service-range__plus {
  position: relative;
  display: block;
  width: 2.1875rem;
  aspect-ratio: 1;
  margin-top: 1rem;
  border-radius: 50%;
  background: #0d265a;
}
@media screen and (min-width: 768px) {
  .p-service-range__plus {
    flex: 0 0 auto;
    width: 2.8125rem;
    margin-top: 0;
    margin-left: 1.5rem;
  }
}

.p-service-range__plus::before,
.p-service-range__plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.4375rem;
  height: 0.1875rem;
  background: #fff;
  content: "";
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-service-range__plus::before,
  .p-service-range__plus::after {
    width: 1.8125rem;
    height: 0.25rem;
  }
}

.p-service-range__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-service-range__support {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 20rem;
  aspect-ratio: 320/230;
  margin-top: 0.5rem;
  padding-top: 3.1875rem;
  border-radius: 50%;
  background: #ff9000;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-service-range__support {
    flex: 0 0 auto;
    width: 17.5rem;
    max-width: none;
    aspect-ratio: 1;
    margin-top: 0;
    margin-left: 1.5rem;
    padding-top: 4.125rem;
  }
}

.p-service-range__support > p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-service-range__support > p {
    font-size: 1.625rem;
  }
}

.p-service-range__support > p::before,
.p-service-range__support > p::after {
  display: block;
  flex: none;
  width: 0.125rem;
  height: 1.375rem;
  background: currentColor;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-service-range__support > p::before,
  .p-service-range__support > p::after {
    height: 1.625rem;
  }
}

.p-service-range__support > p::before {
  transform: rotate(-25deg);
}

.p-service-range__support > p::after {
  transform: rotate(25deg);
}

.p-service-range__support ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 14.375rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.p-service-range__support li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 0.75rem;
  border-radius: 2.5rem;
  background: #fff;
  color: #ff9000;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-service-range__support li {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 1.375rem;
  }
}

.p-service-range__gallery {
  width: 100vw;
  margin-top: 3.75rem;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-service-range__gallery {
    margin-top: 5rem;
  }
}

.p-service-range__gallery-track {
  --service-range-gallery-distance: -50%;
  display: flex;
  width: max-content;
  animation: service-range-gallery-loop 70s linear infinite;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .p-service-range__gallery-track {
    animation-duration: 90s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-service-range__gallery-track {
    animation-play-state: paused;
  }
}

.p-service-range__gallery-group {
  display: flex;
  flex: none;
  gap: 1.5rem;
  padding-right: 1.5rem;
}

.p-service-range__gallery-item {
  flex: 0 0 18.75rem;
  width: 18.75rem;
  min-width: 0;
  aspect-ratio: 300/217;
  margin: 0;
  overflow: hidden;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-service-range__gallery-item {
    flex-basis: 25rem;
    width: 25rem;
    aspect-ratio: 400/290;
    border-radius: 0.625rem;
  }
}

.p-service-range__gallery-picture,
.p-service-range__gallery-image {
  display: block;
  width: 100%;
  height: 100%;
}

.p-service-range__gallery-image {
  object-fit: cover;
  object-position: center 60%;
}

@keyframes service-range-gallery-loop {
  to {
    transform: translate3d(var(--service-range-gallery-distance), 0, 0);
  }
}
.p-service-range__products {
  position: relative;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-service-range__products {
    margin-top: 5rem;
  }
}

.p-service-range__products-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 22.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-range__products-title {
    max-width: 40.5625rem;
  }
}

.p-service-range__products-title img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-service-range__product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin: 1.5rem 0 0;
  padding: 0;
  overflow: hidden;
  border: 0.125rem solid #0d265a;
  border-radius: 0.3125rem;
  background: #fff;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-service-range__product-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 2.5rem;
    margin-right: auto;
    margin-left: auto;
    border-width: 0.1875rem;
    border-radius: 0.625rem;
  }
}

.p-service-range__product-list li {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.9375rem 0.875rem;
  border-right: 0.125rem solid #0d265a;
  border-bottom: 0.125rem solid #0d265a;
}
@media screen and (min-width: 768px) {
  .p-service-range__product-list li {
    flex-direction: column;
    padding: 1.5625rem 1.25rem;
    border-right-width: 0.1875rem;
    border-bottom-width: 0.1875rem;
  }
}
@media (max-width: 350px) {
  .p-service-range__product-list li {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}

.p-service-range__product-list li:nth-child(2n) {
  border-right: 0;
}
@media screen and (min-width: 768px) {
  .p-service-range__product-list li:nth-child(2n) {
    border-right: 0.1875rem solid #0d265a;
  }
}

.p-service-range__product-list li:nth-last-child(-n+2) {
  border-bottom: 0;
}

.p-service-range__product-list img {
  display: block;
  width: 3.4375rem;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-service-range__product-list img {
    width: 5.625rem;
  }
}
@media (max-width: 350px) {
  .p-service-range__product-list img {
    width: 2.8125rem;
  }
}

.p-service-range__product-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.4375rem;
  padding: 0.5rem;
  margin-left: 0.625rem;
  border-radius: 1.875rem;
  background: #ffec85;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-service-range__product-list span {
    width: 12.5rem;
    padding-top: 0.4375rem;
    padding-bottom: 0.4375rem;
    margin-top: 0.75rem;
    margin-left: 0;
    font-size: 1.25rem;
  }
}
@media (max-width: 350px) {
  .p-service-range__product-list span {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    padding-right: 0.25rem;
    padding-left: 0.25rem;
    margin-left: 0.3125rem;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-service-range__product-list li:nth-child(5n) {
    border-right: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-service-range__product-list li:nth-last-child(-n+5) {
    border-bottom: 0;
  }
}

.p-service-range__icon {
  min-width: 0.9375rem;
  min-height: 0.9375rem;
}

.p-service-range__icon--ours {
  margin-top: 0.25rem;
  margin-left: 0.375rem;
}

.p-solution {
  position: relative;
  color: #0d265a;
  overflow-x: clip;
}

.p-solution__content {
  position: relative;
  max-width: 23.125rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-solution__content {
    max-width: initial;
    margin-left: initial;
    margin-right: initial;
  }
}

.p-solution__title {
  max-width: 14.8125rem;
}
@media screen and (min-width: 768px) {
  .p-solution__title {
    max-width: 43.9375rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-solution__title img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-solution__brand-line {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-solution__brand-line {
    gap: 0.75rem;
  }
}
@media (max-width: 399px) {
  .p-solution__brand-line {
    gap: 2vw;
  }
}

.p-solution__brand-line img {
  display: block;
  width: 11.25rem;
  height: auto;
  aspect-ratio: 180/47;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-solution__brand-line img {
    width: 16.75rem;
    aspect-ratio: 268/70;
  }
}
@media (max-width: 399px) {
  .p-solution__brand-line img {
    width: 45vw;
  }
}

.p-solution__brand-line > span {
  padding-bottom: 0.0625rem;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-solution__brand-line > span {
    padding-bottom: 0.125rem;
    font-size: 2.625rem;
  }
}
@media (max-width: 399px) {
  .p-solution__brand-line > span {
    padding-bottom: 0.25vw;
    font-size: 6vw;
  }
}

.p-solution__introduction {
  margin-top: 1rem;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  white-space: nowrap;
  display: block;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-solution__introduction {
    font-size: 2.875rem;
    margin-top: 2rem;
  }
}

.p-solution__answer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 0.25rem;
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  white-space: nowrap;
  -webkit-text-stroke: 0.25rem #fff;
  paint-order: stroke fill;
}
@media screen and (min-width: 768px) {
  .p-solution__answer {
    flex-direction: row;
    justify-content: center;
    margin-top: 0;
    font-size: 3.5rem;
    -webkit-text-stroke-width: 0.375rem;
  }
}
@media (max-width: 399px) {
  .p-solution__answer {
    margin-top: 1vw;
    font-size: 9vw;
    -webkit-text-stroke-width: 1vw;
  }
}

.p-solution__answer > span {
  position: relative;
  z-index: 0;
  display: block;
  color: #ff9000;
  line-height: 1.3;
}

.p-solution__answer > span::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1.125rem;
  background: #ffdd00;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-solution__answer > span::after {
    bottom: -0.625rem;
    height: 1.875rem;
  }
}
@media (max-width: 399px) {
  .p-solution__answer > span::after {
    height: 4.5vw;
  }
}

.p-solution__answer em {
  color: #ff9000;
  font-style: normal;
}

.p-solution__answer > span:last-child {
  color: #0d265a;
}

.p-solution__character {
  position: absolute;
  right: -1rem;
  width: 9.0625rem;
  z-index: 2;
  top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-solution__character {
    top: -2.5rem;
    width: 15.625rem;
  }
}

.p-solution__character img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-support {
  overflow: hidden;
  background: #dff6fe;
  color: #0d265a;
}

.p-support__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  width: 100%;
  margin-inline: auto;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-support__inner {
    gap: 5rem;
    width: 100%;
    padding: 6.25rem 0;
  }
}
@media (max-width: 350px) {
  .p-support__inner {
    margin-left: 0;
    transform: none;
  }
}

.p-support__pack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-support__pack {
    align-items: center;
    gap: 3.125rem;
    width: 100%;
  }
}

.p-support__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-support__heading {
    align-items: center;
    gap: 1rem;
  }
}

.p-support__caption,
.p-support__benefit-text,
.p-support__notes,
.p-support__options-title,
.p-support__option-title,
.p-support__option-text {
  margin: 0;
}

.p-support__title {
  max-width: 14.0625rem;
}
@media screen and (min-width: 768px) {
  .p-support__title {
    max-width: 43.9375rem;
    text-align: center;
  }
}

.p-support__title-lead {
  font-size: clamp(1.5625rem, 8vw, 1.875rem);
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-support__title-lead {
    font-size: 2.875rem;
  }
}

.p-support__title-main {
  max-width: 14.0625rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-support__title-main {
    max-width: 43.9375rem;
  }
}

.p-support__title-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-support__caption {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-support__caption {
    font-size: 1rem;
    text-align: center;
  }
}

.p-support__character {
  position: absolute;
  z-index: 2;
  top: 4.125rem;
  right: -0.5rem;
  width: 7.5rem;
  aspect-ratio: 1;
  margin: 0;
  isolation: isolate;
}
@media screen and (min-width: 768px) {
  .p-support__character {
    top: -2.375rem;
    right: calc(50% - 34.375rem);
    width: 11.625rem;
  }
}

.p-support__character::after {
  position: absolute;
  z-index: -1;
  right: 0.75rem;
  bottom: 0;
  width: 6.3125rem;
  aspect-ratio: 101/30;
  border-radius: 50%;
  background: #49b8dc;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-support__character::after {
    right: 1.125rem;
    width: 9.375rem;
    aspect-ratio: 150/45;
  }
}

.p-support__character picture,
.p-support__character img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-support__character img {
  object-fit: contain;
}

.p-support__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 0.625rem;
  width: 100%;
  margin-top: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .p-support__benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.8125rem;
    margin-top: 0;
  }
}

.p-support__benefit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.4375rem 0;
  border: 0.125rem solid #0d265a;
  border-radius: 0.3125rem;
  background: #fff8d6;
  box-shadow: 0 0.375rem 0 #0d265a;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-support__benefit {
    padding: 1.65625rem;
    border-width: 0.1875rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.5rem 0 #0d265a;
  }
}

.p-support__benefit-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-support__benefit-text {
    font-size: 1.75rem;
  }
}
@media (max-width: 350px) {
  .p-support__benefit-text {
    font-size: 1.15625rem;
  }
}

.p-support__benefit-emphasis {
  color: #ff9000;
  font-weight: 700;
}

.p-support__benefit-note {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-support__benefit-note {
    top: 0.5rem;
    right: 0.75rem;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-support__benefit--repair {
    flex-direction: column;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
}

@media screen and (min-width: 768px) {
  .p-support__benefit--repair .p-support__benefit-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 3rem 0 2.625rem;
    border: 0.1875rem solid #0d265a;
    border-radius: 0.625rem;
    background: #fff8d6;
    box-shadow: 0 0.5rem 0 #0d265a;
  }
}

.p-support__benefit-line {
  display: block;
}

.p-support__benefit .p-support__average {
  position: absolute;
  z-index: 1;
  top: -2.5625rem;
  left: 0.625rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 9.6875rem;
  max-width: calc(100% - 1rem);
  aspect-ratio: 155/64.5917;
  padding: 0.5rem 0.625rem 1rem;
  border: 0;
  background-color: transparent;
  background-image: url("../images/vending/support-average-bubble.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-support__benefit .p-support__average {
    top: -3.75rem;
    left: 2.625rem;
    width: 11.625rem;
    max-width: none;
    aspect-ratio: auto;
    padding: 1.25rem 0.625rem 1.5625rem;
    border-width: 0.1875rem;
    border-style: solid;
    border-color: #0d265a;
    border-radius: 0.625rem;
    background-color: #fff;
    background-image: none;
    font-size: 1rem;
  }
}
@media (max-width: 350px) {
  .p-support__benefit .p-support__average {
    font-size: 0.6875rem;
  }
}

.p-support__average::after {
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  width: 1.0625rem;
  height: 1.0625rem;
  content: none;
}
@media screen and (min-width: 768px) {
  .p-support__average::after {
    bottom: -0.8125rem;
    width: 1.375rem;
    height: 1.375rem;
    border-width: 0.1875rem;
    border-right-style: solid;
    border-right-color: #0d265a;
    border-bottom-style: solid;
    border-bottom-color: #0d265a;
    background: #fff;
    content: "";
    transform: translateX(-50%) rotate(45deg);
  }
}

.p-support__notes {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-support__notes {
    display: block;
    width: 100%;
    margin-top: -1rem;
    font-size: 0.875rem;
    text-align: center;
  }
}

.p-support__options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-support__options {
    gap: 2rem;
    width: 100%;
  }
}

.p-support__options-title {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-support__options-title {
    font-size: 2.875rem;
  }
}

.p-support__option-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-support__option-list {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.25rem;
  }
}

.p-support__option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  min-width: 0;
  padding: 1.25rem;
  border-radius: 0.3125rem;
  background: #fff;
  box-shadow: 0 0.5rem 0 #0d265a;
}
@media screen and (min-width: 768px) {
  .p-support__option {
    flex: 1 1 0;
    gap: 1.5rem;
    padding: 1.875rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.625rem 0 #0d265a;
  }
}

.p-support__option-image {
  position: relative;
  flex: 0 0 5.625rem;
  width: 5.625rem;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-support__option-image {
    flex-basis: 13.75rem;
    width: 13.75rem;
    border-radius: 0.625rem;
  }
}

.p-support__option-image picture,
.p-support__option-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-support__option-image img {
  object-fit: cover;
}

.p-support__option--cashless .p-support__option-image img, .p-support__option--wrapping .p-support__option-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-support__option-content {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  margin-top: 0;
}

.p-support__option-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-support__option-title {
    font-size: min(1.875rem, 2.0833333333vw);
  }
}

.p-support__option-text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-support__option-text {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-support__notes span::after {
    content: "　";
  }
}

@media screen and (min-width: 768px) {
  .p-support__notes span:last-child {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
}

.p-vending-footer {
  position: relative;
  z-index: 2;
  padding-top: 2.5rem;
  padding-bottom: 1.25rem;
  overflow: hidden;
  background: #fff;
  color: #0d265a;
}
@media screen and (min-width: 768px) {
  .p-vending-footer {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }
}

.p-vending-footer > .l-inner {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-vending-footer > .l-inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}

.p-vending-footer__layout {
  display: flex;
  flex-direction: column;
}

.p-vending-footer__body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-vending-footer__body {
    flex-wrap: nowrap;
    align-items: center;
  }
}

.p-vending-footer__logo {
  display: block;
  width: 13.125rem;
  aspect-ratio: 210/65;
}
@media screen and (min-width: 768px) {
  .p-vending-footer__logo {
    width: 18.9375rem;
    aspect-ratio: 303/108;
  }
}

.p-vending-footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-vending-footer__info {
  order: 2;
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-vending-footer__info {
    order: 1;
    flex: 0 0 18.9375rem;
    margin-top: 0;
    margin-right: 11.25rem;
  }
}

.p-vending-footer__address {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-vending-footer__address {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-vending-footer__address-line {
    white-space: nowrap;
  }
}

.p-vending-footer__corporate {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: 1rem;
  color: #0d265a;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-vending-footer__corporate {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.p-vending-footer__external-icon {
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-vending-footer__external-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-vending-footer__top {
  position: fixed;
  z-index: 20;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4.375rem;
  aspect-ratio: 1;
  border-radius: 9999px;
  background: #0d265a;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}
@media screen and (min-width: 768px) {
  .p-vending-footer__top {
    right: 6.9444444444vw;
    bottom: 6.25rem;
    width: 6.9444444444vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-vending-footer__top {
    transition-duration: 0.01ms;
  }
}

.p-vending-footer__top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .p-vending-footer__top.is-footer-position {
    position: absolute;
    top: 2.5rem;
    right: 1.25rem;
    bottom: auto;
  }
}

.p-vending-footer__top-arrow {
  display: block;
  width: 1rem;
  height: 0.625rem;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-vending-footer__top-arrow {
    width: 1.4375rem;
    height: 0.9375rem;
  }
}

.p-vending-footer__top-label {
  margin-top: 0.5rem;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-vending-footer__top-label {
    font-size: 1.25rem;
  }
}

.p-vending-footer__copyright {
  align-self: center;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-vending-footer__copyright {
    margin-top: 3.75rem;
    font-size: 0.875rem;
  }
}

.p-vending-footer__logo:focus-visible,
.p-vending-footer__corporate:focus-visible,
.p-vending-footer__top:focus-visible {
  outline: 0.1875rem solid #ffdd00;
  outline-offset: 0.25rem;
}

body.is-drawer-open {
  overflow: hidden;
}

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

.p-vending-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 3.75rem;
  color: #0d265a;
}
@media screen and (min-width: 768px) {
  .p-vending-header {
    height: 5.5rem;
    padding-left: 2.5rem;
    padding-right: 1.875rem;
  }
}

.p-vending-header__logo {
  position: relative;
  z-index: 20;
  display: block;
  width: 8.375rem;
  height: 2.1875rem;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-vending-header__logo {
    width: 11.9375rem;
    height: 3.125rem;
    margin-left: 0;
  }
}

.p-vending-header__logo picture,
.p-vending-header__logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-vending-header__logo img {
  object-fit: contain;
}

.p-vending-header__nav {
  position: fixed;
  z-index: 19;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100dvh;
  padding: 8.125rem 1.25rem 2.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  background-color: #a7e9ff;
  transition: none;
}
@media screen and (min-width: 768px) {
  .p-vending-header__nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    background: transparent;
    box-shadow: none;
    gap: 1.5rem;
  }
  .p-vending-header__nav::before, .p-vending-header__nav::after {
    content: none;
  }
}

.p-vending-header__nav::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 25rem;
  height: auto;
  aspect-ratio: 400/200;
  pointer-events: none;
  object-fit: cover;
  background: url(../images/vending/hero_bg_sp.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-vending-header__nav::before {
    display: none;
  }
}

.p-vending-header__nav::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 400/200;
  pointer-events: none;
  object-fit: cover;
  background: url(../images/vending/hero_bg_sp2.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-vending-header__nav::after {
    display: none;
  }
}

.p-vending-header__nav.is-open {
  visibility: visible;
  opacity: 1;
}

.p-vending-header__nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-vending-header__nav-links {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.p-vending-header__nav-links a {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-vending-header__nav-links a {
    padding: 0;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
  }
}

.p-vending-header__nav-links a + a {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-vending-header__nav-links a + a {
    margin-top: 0;
  }
}

.p-vending-header__contact {
  display: none;
  border: 0.1875rem solid #0d265a;
  border-radius: 1.875rem;
  background: #ffdd00;
  box-shadow: 0 0.1875rem 0 #0d265a;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-vending-header__contact {
    display: block;
    padding: 0.9375rem 1.25rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    white-space: nowrap;
  }
}

.p-vending-header__drawer-actions {
  display: flex;
  flex-direction: column;
  width: min(100%, 20rem);
  margin-top: 2.5rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-vending-header__drawer-actions {
    display: none;
  }
}

.p-vending-header__drawer-actions > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8125rem 1.25rem;
  border: 0.125rem solid #0d265a;
  border-radius: 0.3125rem;
}

.p-vending-header__drawer-actions > a + a {
  margin-top: 0.5rem;
}

.p-vending-header__drawer-phone {
  background: #fff;
  color: #ff9000;
}

.p-vending-header__drawer-phone-icon,
.p-vending-header__drawer-mail-icon {
  display: flex;
  flex: 0 0 3.125rem;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  aspect-ratio: 1;
}
@media (max-width: 350px) {
  .p-vending-header__drawer-phone-icon,
  .p-vending-header__drawer-mail-icon {
    flex-basis: 2.5rem;
    width: 2.5rem;
  }
}

.p-vending-header__drawer-phone-icon img {
  display: block;
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.p-vending-header__drawer-mail-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-vending-header__drawer-phone > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0.5rem;
  white-space: nowrap;
}

.p-vending-header__drawer-phone strong {
  font-family: "Ubuntu", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (max-width: 350px) {
  .p-vending-header__drawer-phone strong {
    font-size: 1.75rem;
  }
}

.p-vending-header__drawer-phone small {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (max-width: 350px) {
  .p-vending-header__drawer-phone small {
    font-size: 0.625rem;
  }
}

.p-vending-header__drawer-mail {
  background: #ffdd00;
  color: #0d265a;
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (max-width: 350px) {
  .p-vending-header__drawer-mail {
    font-size: 1.25rem;
  }
}

.p-vending-header__drawer-mail > span {
  margin-left: 0.5rem;
  white-space: nowrap;
}

.p-vending-header__menu {
  position: relative;
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.375rem;
  height: 3.75rem;
  padding: 0;
  border: 0;
  border-bottom-left-radius: 0.625rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-vending-header__menu {
    display: none;
  }
}

.p-vending-header__menu-icon {
  position: relative;
  display: block;
  width: 1.875rem;
  aspect-ratio: 30/22;
}

.p-vending-header__menu-line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 0.1875rem;
  border-radius: 0.1875rem;
  background: #0d265a;
  transform-origin: center;
  transition: top 0.42s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.2s ease, transform 0.42s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (prefers-reduced-motion: reduce) {
  .p-vending-header__menu-line {
    transition-duration: 0.01ms;
  }
}

.p-vending-header__menu-line--top {
  top: 0;
}

.p-vending-header__menu-line--middle {
  top: calc(50% - 0.09375rem);
}

.p-vending-header__menu-line--bottom {
  top: calc(100% - 0.1875rem);
}

.p-vending-header__menu[aria-expanded=true] .p-vending-header__menu-line--top {
  top: calc(50% - 0.09375rem);
  transform: rotate(45deg);
}

.p-vending-header__menu[aria-expanded=true] .p-vending-header__menu-line--middle {
  opacity: 0;
  transform: scaleX(0);
}

.p-vending-header__menu[aria-expanded=true] .p-vending-header__menu-line--bottom {
  top: calc(50% - 0.09375rem);
  transform: rotate(-45deg);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #0d265a;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.p-vending {
  overflow: hidden;
}

.p-vending img {
  display: block;
  max-width: 100%;
}

.p-vending__inner {
  margin-left: auto;
  margin-right: auto;
}

.p-vending__title {
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 10px;
  border-bottom: 30px solid #ffdd00;
  color: #0d265a;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 0.77;
  -webkit-text-stroke: 6px #fff;
  paint-order: stroke fill;
}
@media (max-width: 900px) {
  .p-vending__title {
    border-bottom-width: 18px;
    font-size: clamp(30px, 8vw, 40px);
  }
}

.p-vending__title--left {
  margin-left: 0;
}
