@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: inherit;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media (min-width: 1024px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 170%;
  letter-spacing: 0.5px;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

.inner {
  padding-inline: 15px;
  margin-inline: auto;
}
@media (min-width: 500px) {
  .inner {
    padding-inline: 20px;
  }
}
@media (min-width: 768px) {
  .inner {
    max-width: 1260px;
    padding-inline: 30px;
  }
}
@media (min-width: 1024px) {
  .inner {
    max-width: 1300px;
    padding-inline: 50px;
  }
}
@media (min-width: 1440px) {
  .inner {
    max-width: 1320px;
    padding-inline: 60px;
  }
}

.l-section {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .l-section {
    margin-top: 80px;
  }
}

.l-section--m {
  margin-top: 80px;
}
@media (min-width: 768px) {
  .l-section--m {
    margin-top: 100px;
  }
}

.l-section--l {
  margin-top: 100px;
}
@media (min-width: 768px) {
  .l-section--l {
    margin-top: 130px;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 500;
  height: 60px;
}
@media (min-width: 1024px) {
  .header {
    height: 80px;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}
@media (min-width: 1024px) {
  .header__inner {
    position: relative;
    align-items: center;
  }
}

.header__logo {
  width: 17.8571428571%;
  max-width: 300px;
  min-width: 200px;
  padding-inline: 15px;
}
.header__logo a {
  display: block;
}
.header__logo img {
  width: 100%;
}

.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
  }
}
@media (min-width: 1440px) {
  .header__nav {
    gap: 20px;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
}

.header__nav-link {
  position: relative;
}
.header__nav-link a,
.header__nav-link .nav-parent {
  display: block;
  height: 80px;
  line-height: 80px;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.3vw, 1.6rem);
  cursor: pointer;
}
.header__nav-link span img {
  width: 10px;
  margin-left: 5px;
}
.header__nav-link.is-active > a, .header__nav-link.is-active > .nav-parent {
  position: relative;
}
.header__nav-link.is-active > a::before, .header__nav-link.is-active > .nav-parent::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background: #133761;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .header__nav-link a,
  .header__nav-link .nav-parent {
    padding-inline: 7px;
    transition: all 0.4s;
  }
  .header__nav-link a:hover,
  .header__nav-link .nav-parent:hover {
    background-color: rgba(27, 65, 109, 0.0470588235);
  }
  .header__nav-link a img,
  .header__nav-link .nav-parent img {
    -webkit-filter: invert(28%) sepia(57%) saturate(6005%) hue-rotate(313deg) brightness(94%) contrast(91%);
    filter: invert(28%) sepia(57%) saturate(6005%) hue-rotate(313deg) brightness(94%) contrast(91%);
  }
}
@media (min-width: 1440px) {
  .header__nav-link a,
  .header__nav-link .nav-parent {
    padding-inline: 15px;
  }
}

.header__sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #fff;
  z-index: 100;
  display: none;
}
.header__sub-nav li {
  white-space: nowrap;
}
.header__sub-nav li a {
  display: block;
  height: auto;
  line-height: 1.5;
  padding: 10px 16px;
  font-weight: 500;
  color: #333;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.header__sub-nav li a:hover {
  background-color: rgba(27, 65, 109, 0.0470588235);
  color: #133761;
}

@media (min-width: 768px) {
  .header__nav-link:hover > .header__sub-nav,
  .header__nav-link:focus-within > .header__sub-nav {
    display: block;
  }
  .header__nav-link:hover > a,
  .header__nav-link:focus-within > a {
    background-color: rgba(27, 65, 109, 0.0470588235);
  }
}
.header__nav-buttons {
  display: flex;
  gap: 5px;
  align-items: center;
}
@media (min-width: 1440px) {
  .header__nav-buttons {
    gap: 9px;
    margin-right: 10px;
  }
}

.header__nav-button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: solid 1px #133761;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__nav-button img {
  width: 18px;
  height: 18px;
}
@media (min-width: 768px) {
  .header__nav-button {
    transition: opacity 0.4s;
  }
  .header__nav-button:hover {
    opacity: 0.8;
  }
}

.header__tel {
  text-align: right;
  color: #133761;
}
@media (min-width: 1440px) {
  .header__tel {
    margin-right: 15px;
  }
}

.header__tel-number {
  font-size: clamp(1.5rem, 1.8vw, 3rem);
  font-family: "Roboto", sans-serif;
  line-height: 1.3;
}
.header__tel-number img {
  width: 13px;
  margin-right: 4px;
  vertical-align: baseline;
}
.header__tel-number a {
  font-weight: 700;
}
@media (min-width: 1440px) {
  .header__tel-number img {
    width: 17px;
    margin-right: 7px;
  }
}

.header__tel-text {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: normal;
  line-height: 1;
  display: block;
}
@media (min-width: 1440px) {
  .header__tel-text {
    font-size: 1.4rem;
  }
}

.header__contact {
  background: #133761;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px;
  gap: 0.7rem;
  height: 100%;
  font-size: 1.5rem;
  border: 1px solid #133761;
}
.header__contact svg {
  fill: #fff;
}
@media (min-width: 768px) {
  .header__contact {
    transition: all 0.4s;
  }
  .header__contact svg {
    transition: all 0.4s;
  }
  .header__contact:hover {
    background: #fff;
    color: #133761;
  }
  .header__contact:hover svg {
    fill: #133761;
  }
}
@media (min-width: 1024px) {
  .header__contact {
    font-size: 1.4rem;
    gap: 0.5rem;
    padding: 16px;
  }
}
@media (min-width: 1440px) {
  .header__contact {
    padding: 30px;
    gap: 1.5rem;
    font-size: 1.7rem;
  }
}

.drawer-icon {
  position: relative;
  width: 60px;
  height: 60px;
  background: #133761;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 29px;
  transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 29px;
  transform: rotate(-45deg);
}
@media (min-width: 1024px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  width: 25px;
  height: 2px;
  position: absolute;
  background-color: #fff;
  transition: top 0.4s, transform 0.4s;
  left: 18px;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 22px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 29px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 36px;
}
@media (min-width: 1024px) {
  .drawer-icon__bar {
    display: none;
  }
}

.drawer {
  display: none;
}
.drawer.is-checked {
  display: block;
  position: fixed;
  width: 100%;
  max-width: 400px;
  height: calc(100svh - 60px);
  top: 60px;
  right: 0;
  background: #fff;
  padding-block: 30px 50px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}
.drawer__list li {
  width: 100%;
  border-bottom: 1px solid #bbb;
}

.drawer__link {
  position: relative;
  padding-left: 30px;
}
.drawer__link a,
.drawer__link .drawer__parent {
  padding: 10px 10px 14px;
  display: block;
  font-size: 1.6rem;
  width: 100%;
  text-align: left;
  font-weight: 500;
  color: #333;
}
.drawer__link .drawer__parent {
  padding: 10px 20px 14px 10px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer__link::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 20px;
  top: 23px;
  transform: translateY(-50%);
  background: #133761;
  border-radius: 50%;
}

.drawer__parent-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.drawer__parent-icon::before,
.drawer__parent-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translateY(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.drawer__parent-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.drawer__link--has-sub.is-open .drawer__parent-icon::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

.drawer__sub-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.drawer__sub-nav li:last-child {
  border-bottom: none;
}

.drawer__parent-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.drawer__link--has-sub.is-open .drawer__parent-icon {
  transform: rotate(180deg);
}

.drawer__buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.drawer__nav-button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: solid 1px #133761;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer__nav-button img {
  width: 23px;
  height: 23px;
}

.drawer__tel {
  color: #133761;
  width: 200px;
  margin-inline: auto;
  margin-top: 20px;
  text-align: center;
}

.drawer__tel-number {
  font-size: 2.4rem;
  font-family: "Roboto", sans-serif;
}
.drawer__tel-number img {
  width: 18px;
  margin-right: 4px;
}
.drawer__tel-number a {
  font-weight: 700;
}

.drawer__tel-text {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
}

.drawer__contact {
  text-align: center;
}
.drawer__contact a {
  background: #133761;
  color: #fff;
  font-weight: 500;
  padding: 15px 30px;
  margin-top: 20px;
  display: inline-block;
}
.drawer__contact a img {
  margin-right: 7px;
  width: 18px;
}

.brand {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .brand {
    padding-top: 130px;
  }
}
@media (min-width: 1440px) {
  .brand {
    padding-top: 160px;
  }
}
.brand--bg {
  background: #f9fafb;
}

.brand__heading::before {
  content: "BRAND";
}

.brand__swiper {
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .brand__swiper {
    margin-top: 57px;
  }
}
@media (min-width: 1440px) {
  .brand__swiper {
    margin-top: 67px;
  }
}

.brand__swiper-wrapper {
  transition-timing-function: linear !important;
}

.brand__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.brand__slide img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.contact {
  margin-top: 80px;
}
@media (min-width: 1024px) {
  .contact {
    margin-top: 120px;
  }
}

.contact__bg {
  background: url(../img/common/contact-bg.webp) no-repeat left center/cover;
  width: 100%;
  aspect-ratio: 1366/800;
}
@media (min-width: 768px) {
  .contact__bg {
    aspect-ratio: 1366/506;
  }
}
@media (min-width: 1024px) {
  .contact__bg {
    aspect-ratio: 1366/336;
  }
}

.contact__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.contact__inner {
  width: 100%;
}

.contact__heading-en {
  color: #fff;
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
  padding-left: 15px;
}
.contact__heading-en::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  left: 0;
  transform: translateY(-60%);
  background: #fff;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .contact__heading-en {
    font-size: 2.1rem;
  }
}

.contact__heading {
  color: #fff;
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 4rem);
  margin-top: 15px;
}

.contact__text {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 20px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .contact__text {
    font-size: 1.6rem;
    top: 25px;
  }
}
@media (min-width: 1440px) {
  .contact__text {
    font-size: 1.9rem;
  }
}

.contact__button-wrapper {
  margin-top: -10%;
}
@media (min-width: 768px) {
  .contact__button-wrapper {
    margin-top: -5%;
  }
}

.contact__button {
  display: flex;
  flex-direction: column;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .contact__button {
    flex-direction: row;
    aspect-ratio: 1200/300;
  }
}
@media (min-width: 1440px) {
  .contact__button {
    aspect-ratio: 1200/245;
  }
}

.contact__tel {
  background: #133761;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact__tel-text {
  border-radius: 49px;
  background: #f4f4f3;
  color: #133761;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 5px 43px;
}
.contact__tel-text img {
  width: 17px;
  height: 19.5px;
  margin-right: 10px;
}
@media (min-width: 1440px) {
  .contact__tel-text {
    font-size: 1.9rem;
    padding: 10px 43px;
  }
}

.contact__tel-number {
  margin-top: 22px;
}
.contact__tel-number span,
.contact__tel-number a {
  color: #fff;
  font-weight: 700;
  font-size: clamp(2.3rem, 3.6vw, 4rem);
}

.contact__tel-time {
  color: #fff;
  font-size: 1.5rem;
  margin-top: 10px;
}
@media (min-width: 1440px) {
  .contact__tel-time {
    font-size: 1.8rem;
  }
}

.contact__mail {
  background: #ecf2fa;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact__mail img {
  width: 39px;
  height: 29px;
}
@media (min-width: 768px) {
  .contact__mail {
    transition: background-color 0.4s;
  }
  .contact__mail:hover {
    background-color: #fff;
  }
}

.contact__mail-text {
  margin-top: 17px;
  color: #133761;
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 1440px) {
  .contact__mail-text {
    font-size: 2.5rem;
  }
}

.access {
  margin-top: 55px;
}
@media (min-width: 768px) {
  .access {
    margin-top: 85px;
  }
}

.access__heading-en {
  color: #133761;
  font-weight: 700;
  font-family: "Hind", sans-serif;
  font-size: 1.6rem;
  padding-left: 20px;
  position: relative;
}
.access__heading-en::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 0;
  top: 50%;
  transform: translateY(-70%);
  border-radius: 50%;
  background: #133761;
}
@media (min-width: 768px) {
  .access__heading-en {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .access__heading-en {
    font-size: 2.1rem;
  }
}

.access__heading {
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 152%;
}

.access__wrapper {
  border-radius: 20px;
  background: #133761;
  padding: 30px 15px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .access__wrapper {
    padding: 40px;
    border-radius: 30px;
  }
}
@media (min-width: 1024px) {
  .access__wrapper {
    padding: 40px 60px;
  }
}

.access__map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 768px) {
  .access__map-wrapper {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .access__map-content {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .access__map-content {
    flex: 3;
  }
}
@media (min-width: 1440px) {
  .access__map-content {
    flex: 1;
  }
}

.access__map-name {
  color: #fff;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  font-weight: 700;
  line-height: 152%;
}

.access__map-info {
  color: #fff;
  font-size: 1.4rem;
  margin-top: 22px;
}
@media (min-width: 768px) {
  .access__map-info {
    font-size: 1.5rem;
    line-height: 200%;
  }
}

.access__map-button {
  border-radius: 10px;
  border: 1px solid #595959;
  background: #fff;
  margin-top: 22px;
  display: inline-block;
  position: relative;
  text-align: center;
  width: 236px;
  line-height: 3.5;
  padding-right: 24px;
  transition: padding 0.4s ease;
}
.access__map-button::before, .access__map-button::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #133761;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 0;
}
.access__map-button::before {
  right: 24px;
  opacity: 1;
}
.access__map-button::after {
  left: 0px;
  opacity: 0;
}
@media (min-width: 768px) {
  .access__map-button {
    width: 276px;
  }
  .access__map-button:hover {
    padding-right: 0;
    padding-left: 20px;
  }
  .access__map-button:hover::before {
    transform: translate(150%, -50%);
    opacity: 0;
  }
  .access__map-button:hover::after {
    transform: translateX(33px) translateY(-50%);
    opacity: 1;
  }
}
.access__map-button span {
  color: #133761;
  font-weight: 700;
  font-size: 1.4rem;
}
@media (min-width: 1024px) {
  .access__map-button {
    font-size: 1.5rem;
  }
}

.access__map iframe {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .access__map {
    flex: 1;
  }
  .access__map iframe {
    border-radius: 15px;
  }
}
@media (min-width: 1024px) {
  .access__map {
    flex: 4;
  }
}
@media (min-width: 1440px) {
  .access__map {
    flex: 2;
  }
  .access__map iframe {
    aspect-ratio: 2/1;
  }
}

.access__line {
  background: #fff;
  height: 1px;
  width: 100%;
  margin-top: 33px;
  margin-bottom: 33px;
  display: block;
}

.banner {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .banner {
    margin-top: 50px;
  }
}

.banner__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .banner__wrapper {
    flex-direction: row;
    gap: 32px;
  }
}

.banner__item {
  flex: 1;
}
@media (min-width: 768px) {
  .banner__item {
    transition: opacity 0.4s;
  }
  .banner__item:hover {
    opacity: 0.7;
  }
}

.footer {
  margin-top: 58px;
}
@media (min-width: 768px) {
  .footer {
    margin-top: 70px;
  }
}
@media (min-width: 1024px) {
  .footer {
    margin-top: 83px;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 1024px) {
  .footer__inner {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
}

.footer__nav-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer__nav-wrapper {
    align-items: flex-end;
  }
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 768px) {
  .footer__nav-list {
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .footer__nav-list {
    gap: 16px;
  }
}
@media (min-width: 1440px) {
  .footer__nav-list {
    gap: 38px;
  }
}

.footer__nav-link {
  position: relative;
  border-bottom: 1px solid #bbb;
  padding-bottom: 5px;
  padding-top: 5px;
}
.footer__nav-link::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #133761;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer__nav-link a {
  font-weight: 500;
  position: relative;
  padding-left: 18px;
  font-size: 1.6rem;
  display: block;
}
@media (min-width: 768px) {
  .footer__nav-link {
    border-bottom: none;
  }
  .footer__nav-link a {
    transition: color 0.4s;
    padding-bottom: 0;
  }
  .footer__nav-link:hover a {
    color: #133761;
  }
}
@media (min-width: 1024px) {
  .footer__nav-link a {
    font-size: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .footer__nav-link a {
    font-size: 1.6rem;
  }
}

.footer__contact-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: 15px;
}
@media (min-width: 768px) {
  .footer__contact-wrapper {
    flex-direction: row;
    gap: 24px;
    align-items: flex-end;
  }
}

@media (min-width: 1024px) {
  .footer__tel {
    text-align: right;
  }
}

.footer__tel-number {
  display: flex;
  align-items: center;
}
.footer__tel-number a {
  color: #133761;
  font-size: clamp(2.2rem, 2.5vw, 2.7rem);
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
.footer__tel-number img {
  width: 18px;
  margin-right: 5px;
}

.footer__tel-text {
  font-size: 1.4rem;
  color: #133761;
}

.footer__contact {
  border-radius: 26px;
  border: 1px solid #133761;
  display: flex;
  gap: 19px;
  background: #fff;
  width: 209px;
  height: 53px;
  align-items: center;
  justify-content: center;
  color: #133761;
}
.footer__contact span {
  font-weight: 700;
}
.footer__contact svg {
  fill: #133761;
}
@media (min-width: 768px) {
  .footer__contact {
    transition: background-color 0.4s;
  }
  .footer__contact span {
    transition: color 0.4s;
  }
  .footer__contact svg {
    transition: fill 0.4s;
  }
  .footer__contact:hover {
    background-color: #133761;
  }
  .footer__contact:hover span {
    color: #fff;
  }
  .footer__contact:hover svg {
    fill: #fff;
  }
}

.footer__privacy-policy {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  margin-top: 24px;
  gap: 10px;
}
.footer__privacy-policy span {
  font-weight: 500;
}
.footer__privacy-policy img {
  width: 13px;
  margin-right: 6px;
}
@media (min-width: 768px) {
  .footer__privacy-policy {
    gap: 24px;
    flex-direction: row;
  }
  .footer__privacy-policy span {
    transition: opacity 0.4s;
  }
  .footer__privacy-policy a:hover span {
    opacity: 0.7;
  }
}

.footer__logo {
  width: 252px;
}

.footer__text {
  margin-top: 19px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
}
@media (min-width: 1024px) {
  .footer__text {
    font-size: 1.4rem;
  }
}
@media (min-width: 1440px) {
  .footer__text {
    font-size: 1.5rem;
  }
}

.footer__copyright {
  background: #133761;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 48px;
}

.floating-banner {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 100;
  max-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.floating-banner.is-show {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .floating-banner {
    max-width: 250px;
    display: block;
    transition: all 0.3s;
  }
  .floating-banner:hover {
    opacity: 0.8;
    transform: translateY(-3px);
  }
}

.main-body {
  margin-top: 60px;
}
@media (min-width: 1024px) {
  .main-body {
    margin-top: 80px;
  }
}

.c-breadcrumb {
  text-align: right;
  font-size: 1.3rem;
  color: #133761;
}
.c-breadcrumb .separator {
  margin-inline: 10px;
}
@media (min-width: 768px) {
  .c-breadcrumb {
    font-size: 1.4rem;
  }
  .c-breadcrumb a {
    transition: opacity 0.4s;
  }
  .c-breadcrumb a:hover {
    opacity: 0.7;
  }
}

.section-heading-en {
  color: #133761;
  position: relative;
  padding-left: 30px;
  font-size: 1.6rem;
  font-weight: 700;
}
.section-heading-en::before {
  position: absolute;
  content: "";
  background: url(../img/common/heading-icon.webp) no-repeat center center/contain;
  width: 22px;
  height: 9px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .section-heading-en {
    font-size: 1.8rem;
    padding-left: 38px;
  }
  .section-heading-en::before {
    width: 28px;
    height: 13px;
  }
}
.section-heading-en--orec {
  color: #007a59;
}
.section-heading-en--orec::before {
  background: url(../img/product/heading-icon-orec.webp) no-repeat center center/contain;
}
.section-heading-en--s {
  font-size: clamp(1.3rem, 1.6vw, 1.8rem);
  line-height: 1.5;
}

.section-heading {
  font-weight: 700;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.4;
}
.section-heading span {
  font-size: clamp(2.6rem, 3.5vw, 3.9rem);
  font-weight: 700;
  background: linear-gradient(transparent 70%, #e2ff3d 30%);
}
.section-heading--s {
  margin-top: 15px;
  font-size: clamp(2.2rem, 2.6vw, 3rem);
  line-height: 1.7;
}
@media (min-width: 768px) {
  .section-heading--s {
    margin-top: 20px;
  }
}
.section-heading--s span {
  font-size: clamp(2.2rem, 2.6vw, 3rem);
}

.deco-heading {
  position: relative;
  font-size: clamp(2.4rem, 3.4vw, 3.7rem);
  font-weight: 700;
  padding-left: 55px;
  color: #133761;
  font-family: "Hind", sans-serif;
  display: flex;
  align-items: center;
}
.deco-heading span {
  position: relative;
  z-index: 1;
}
.deco-heading::before {
  position: absolute;
  color: #f3f3f3;
  font-weight: 700;
  font-size: clamp(6rem, 10vw, 14rem);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.deco-heading::after {
  content: "";
  position: absolute;
  background: #133761;
  height: 1px;
  width: 39px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.c-heading-bar__wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.c-heading-bar__wrap::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 35%;
  background: #133761;
  height: 8px;
}
@media (min-width: 1024px) {
  .c-heading-bar__wrap::before {
    height: 12px;
    width: 25%;
  }
}
.c-heading-bar__wrap--orec::before {
  background: #007a59;
}
.c-heading-bar__wrap--white::before {
  background: #fff;
}
.c-heading-bar__wrap--none::before {
  content: none;
}

.c-heading-bar {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 700;
  color: #133761;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
  margin-top: 30px;
}
.c-heading-bar::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 4px;
  background: #133761;
  border-radius: 6px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .c-heading-bar {
    padding-left: 38px;
    margin-top: 60px;
  }
  .c-heading-bar::after {
    width: 22px;
    height: 6px;
  }
}
.c-heading-bar--orec {
  color: #007a59;
}
.c-heading-bar--orec::after {
  background: #007a59;
}
.c-heading-bar--white {
  color: #fff;
}
.c-heading-bar--white::after {
  background: #fff;
}

.c-heading-bar__text {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .c-heading-bar__text {
    font-size: 15px;
  }
}

.c-bg {
  background: #f9fafb;
}

.c-fv {
  position: relative;
  max-height: calc(80svh - 60px);
  aspect-ratio: 1/1;
  min-height: 300px;
  width: 100%;
  margin-bottom: 21%;
}
@media (min-width: 768px) {
  .c-fv {
    max-height: calc(65svh - 60px);
    margin-bottom: 50px;
    min-height: 500px;
  }
}
@media (min-width: 1024px) {
  .c-fv {
    max-height: calc(90svh - 80px);
    aspect-ratio: 2/1;
  }
}
@media (min-width: 1600px) {
  .c-fv {
    max-height: calc(88svh - 80px);
  }
}

.c-fv__image-wrap {
  width: 96vw;
  margin-left: 4vw;
  position: absolute;
  inset: 0;
}
@media (min-width: 768px) {
  .c-fv__image-wrap {
    width: 92vw;
    margin-left: 8vw;
  }
}
@media (min-width: 1024px) {
  .c-fv__image-wrap {
    width: 85vw;
    margin-left: 15vw;
  }
}

.c-fv__image {
  width: 100%;
  height: 100%;
  border-radius: 100px 0 0 40px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .c-fv__image {
    border-radius: 200px 0 0 60px;
  }
}
@media (min-width: 1024px) {
  .c-fv__image {
    border-radius: 240px 0 0 60px;
  }
}
.c-fv__image--right {
  -o-object-position: right;
  object-position: right;
}
.c-fv__image--top {
  -o-object-position: top;
  object-position: top;
}
.c-fv__image--40top {
  -o-object-position: 40% top;
  object-position: 40% top;
}

.c-fv__text-wrapper {
  position: absolute;
  z-index: 1;
  width: 98%;
  left: 0;
  bottom: -18%;
}
@media (min-width: 768px) {
  .c-fv__text-wrapper {
    bottom: -5%;
  }
}

.c-fv__text {
  width: 90%;
  max-width: 450px;
  margin-left: 10px;
  display: block;
}
@media (min-width: 768px) {
  .c-fv__text {
    width: 60%;
    margin-left: 5%;
    max-width: 600px;
  }
}
@media (min-width: 1600px) {
  .c-fv__text {
    max-width: 800px;
  }
}
.c-fv__text--s {
  max-width: 200px;
}
@media (min-width: 768px) {
  .c-fv__text--s {
    max-width: 270px;
  }
}
@media (min-width: 1024px) {
  .c-fv__text--s {
    max-width: 300px;
  }
}

.c-fv__deco {
  width: 90%;
  margin-left: 10px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .c-fv__deco {
    width: 90%;
    margin-top: 40px;
    margin-left: 2px;
  }
}
@media (min-width: 1024px) {
  .c-fv__deco {
    max-width: 1000px;
    margin-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-fv__deco {
    max-width: 1200px;
  }
}

.c-highlights {
  margin-top: -60px;
}

.c-highlight {
  background: #133761;
  border-radius: 30px;
  color: #fff;
  padding-top: 56px;
  padding-bottom: 69px;
}
@media (min-width: 768px) {
  .c-highlight {
    border-radius: 60px;
    padding-top: 66px;
  }
}

.c-highlight + .c-highlight--white {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .c-highlight + .c-highlight--white {
    margin-top: 60px;
  }
}
@media (min-width: 1024px) {
  .c-highlight + .c-highlight--white {
    margin-top: 85px;
  }
}

.c-highlight--white + .c-highlight {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .c-highlight--white + .c-highlight {
    margin-top: 60px;
  }
}
@media (min-width: 1024px) {
  .c-highlight--white + .c-highlight {
    margin-top: 85px;
  }
}

.c-highlights__heading-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .c-highlights__heading-wrapper {
    margin-top: 0;
  }
}

.c-highlights__heading-en {
  color: #fff;
  font-size: clamp(2.6rem, 3.6vw, 4.2rem);
  margin-right: 10px;
  line-height: 1;
  margin-bottom: 2px;
  flex-shrink: 0;
}
.c-highlights__heading-en::before {
  background: url(../img/common/heading-icon-white.webp) no-repeat center center/contain;
}
@media (min-width: 768px) {
  .c-highlights__heading-en {
    margin-right: 20px;
  }
}

.c-highlights__heading {
  font-size: 1.4rem;
  padding-left: 10px;
  border-left: 1px solid #fff;
  line-height: 1.2;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .c-highlights__heading {
    padding-left: 20px;
  }
}

.c-highlight__image {
  position: relative;
}
.c-highlight__image img {
  width: 90%;
  display: block;
  margin-inline: auto 0;
  border-radius: 20px;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .c-highlight__image img {
    border-radius: 62px;
    aspect-ratio: 20/11;
  }
}

.c-highlight__image--white img {
  margin-inline: 0 auto;
}

.c-highlight__heading-wrapper {
  position: absolute;
  left: 0;
  bottom: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 10px 14px;
  color: #133761;
  display: inline-flex;
  align-items: center;
  max-width: 95%;
  font-weight: 700;
}
.c-highlight__heading-wrapper span {
  font-size: clamp(2.8rem, 4vw, 4.1rem);
  margin-right: 10px;
  font-family: "KoHo", sans-serif;
  font-weight: 700;
}
@media (min-width: 768px) {
  .c-highlight__heading-wrapper {
    border-radius: 26px;
    padding: 17px 24px;
    bottom: 30px;
  }
  .c-highlight__heading-wrapper span {
    margin-right: 16px;
  }
}

.c-highlight__heading-wrapper--white {
  color: #fff;
  right: 0;
  left: auto;
  background: #133761;
}

.c-highlight__heading {
  font-size: clamp(1.7rem, 2.8vw, 3.1rem);
  line-height: 1.5;
}

.c-highlight__heading--num {
  font-size: clamp(1.7rem, 2.8vw, 3.1rem);
  line-height: 1.5;
  padding-left: 10px;
  border-left: 1px solid #133761;
}
@media (min-width: 768px) {
  .c-highlight__heading--num {
    padding-left: 16px;
  }
}

.c-highlight__heading--white {
  border-left: 1px solid #fff;
}

.c-highlight__text {
  font-size: 1.4rem;
  margin-top: 46px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .c-highlight__text {
    margin-top: 38px;
  }
}

.c-highlight__logo-wrapper {
  background: #fff;
  border-radius: 15px;
  padding: 28px 18px 18px;
  margin-top: 36px;
}

.c-highlight__logo {
  position: relative;
  padding: 40px 17px 20px;
  border: 1px solid #133761;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 16px;
  place-items: center;
}
.c-highlight__logo img {
  max-height: 40px;
}
@media (min-width: 768px) {
  .c-highlight__logo--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .c-highlight__logo img {
    max-height: 70px;
  }
}

.c-highlight__logo-heading {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
  color: #133761;
  background: #fff;
  padding-inline: 15px;
  white-space: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}

.c-highlight__list-wrapper {
  background: #fff;
  border-radius: 15px;
  padding: 28px 15px 18px;
  margin-top: 36px;
}
@media (min-width: 768px) {
  .c-highlight__list-wrapper {
    padding: 28px 18px 18px;
  }
}

.c-highlight__list {
  position: relative;
  padding: 40px 15px 20px;
  border: 1px solid #133761;
  border-radius: 10px;
  color: #133761;
}
.c-highlight__list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 10px;
}
.c-highlight__list ul li {
  font-weight: bold;
  position: relative;
  padding-left: 28px;
}
.c-highlight__list ul li::before {
  position: absolute;
  content: "";
  background: url(../img/product/after-service-check.webp) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .c-highlight__list {
    padding: 19px 17px;
  }
  .c-highlight__list ul {
    gap: 12px 20px;
  }
  .c-highlight__list ul li {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .c-highlight__list {
    padding: 29px 27px 20px;
  }
  .c-highlight__list ul {
    gap: 16px 40px;
  }
  .c-highlight__list ul li {
    font-size: 2.1rem;
    padding-left: 33px;
  }
  .c-highlight__list ul li::before {
    width: 26px;
    height: 26px;
  }
}
.c-highlight__list--orec {
  color: #007a59;
  border: 1px solid #007a59;
}
.c-highlight__list--orec ul li::before {
  background: url(../img/product/c-highlight-check-orec.webp) no-repeat center center/contain;
}

.c-highlight__list-heading {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  color: #133761;
  background: #fff;
  padding-inline: 15px;
  white-space: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}
.c-highlight__list-heading--orec {
  color: #007a59;
}

.c-highlight-points {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .c-highlight-points {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .c-highlight-points {
    gap: 22px;
  }
}

.c-highlight-point {
  flex: 1;
  border-radius: 15px;
  background: #fff;
  padding: 15px;
}
@media (min-width: 1024px) {
  .c-highlight-point {
    padding: 21px;
  }
}

.c-highlight-point__title {
  color: #133761;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  padding-left: 28px;
  position: relative;
}
.c-highlight-point__title::before {
  position: absolute;
  content: "";
  background: url(../img/product/after-service-check.webp) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .c-highlight-point__title {
    padding-left: 36px;
  }
  .c-highlight-point__title::before {
    width: 26px;
    height: 26px;
  }
}

.c-highlight-point__text {
  color: #133761;
  font-size: 14px;
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .c-highlight-point__text {
    font-size: 15px;
    margin-top: 12px;
  }
}

.c-highlight-services {
  margin-top: 36px;
}
@media (min-width: 768px) {
  .c-highlight-services {
    margin-top: 46px;
  }
}

.c-highlight-services__grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .c-highlight-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 31px 18px;
  }
}

.c-highlight-service {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 22px 15px 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1024px) {
  .c-highlight-service {
    border-radius: 22px;
    padding: 31px 28px 22px;
  }
}

.c-highlight-service__badge {
  position: absolute;
  top: -12px;
  left: 18px;
  display: inline-block;
  padding: 0px 12px;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 700;
  background: #f07a17;
  color: #fff;
  letter-spacing: 0.02em;
}

.c-highlight-service__title {
  font-size: 2rem;
  font-weight: 700;
  margin: 6px 0 10px;
  color: #133761;
}
@media (min-width: 1024px) {
  .c-highlight-service__title {
    font-size: 2.2rem;
  }
}

.c-highlight-service__lead {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0 0 10px;
  color: #333;
}

.c-highlight-service__desc {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0;
  color: #333;
  text-spacing-trim: trim-start;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .c-highlight-service__desc {
    flex-direction: row;
    gap: 5px;
  }
}

.c-highlight-service__desc-head {
  font-weight: 700;
  flex-shrink: 0;
}

.c-faq__items {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .c-faq__items {
    margin-top: 53px;
  }
}

.c-faq__item {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}
@media (min-width: 768px) {
  .c-faq__item {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.c-faq__q {
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  font-weight: 700;
  color: #133761;
  display: flex;
}
.c-faq__q span {
  font-family: "KoHo", sans-serif;
  font-size: clamp(2.5rem, 3.2vw, 3.5rem);
  display: inline-block;
  margin-right: 15px;
}
@media (min-width: 768px) {
  .c-faq__q span {
    margin-right: 25px;
  }
}

.c-faq__a {
  font-size: 1.4rem;
  display: flex;
  margin-top: 15px;
}
.c-faq__a span {
  color: #e84a3c;
  font-weight: 700;
  font-size: clamp(2.5rem, 3.2vw, 3.5rem);
  display: inline-block;
  margin-right: 15px;
  font-family: "KoHo", sans-serif;
}
@media (min-width: 768px) {
  .c-faq__a {
    margin-left: 46px;
    margin-top: 31px;
    font-size: 1.5rem;
  }
  .c-faq__a span {
    margin-right: 20px;
  }
}

.c-faq__a-text li {
  margin-left: 20px;
  list-style: disc;
}

.c-page-intro {
  margin-top: 30px;
}

.c-page-intro__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 768px) {
  .c-page-intro__wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 4.4444444444%;
  }
}

@media (min-width: 768px) {
  .c-page-intro__content {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .c-page-intro__content {
    flex: 11;
  }
}
@media (min-width: 1440px) {
  .c-page-intro__content {
    flex: 10;
  }
}
@media (min-width: 1024px) {
  .c-page-intro__content--s {
    flex: 8;
  }
}

.c-page-intro__heading-en {
  font-size: clamp(2.4rem, 3.6vw, 4.2rem);
  line-height: 1.5;
}

.c-page-intro__heading {
  margin-top: 20px;
  font-size: clamp(2rem, 2.5vw, 3rem);
}
.c-page-intro__heading span {
  font-size: clamp(2rem, 2.5vw, 3rem);
}
.c-page-intro__heading .c-page-intro-l {
  font-size: clamp(2.6rem, 3.5vw, 3.9rem);
}

.c-page-intro__sub-heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .c-page-intro__sub-heading {
    font-size: 1.8rem;
    margin-top: 35px;
  }
}

.c-page-intro__text {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .c-page-intro__text {
    margin-top: 25px;
  }
}
@media (min-width: 1024px) {
  .c-page-intro__text {
    margin-top: 39px;
    font-size: 1.5rem;
  }
}
.c-page-intro__text span {
  font-weight: 700;
  background: linear-gradient(transparent 70%, #ffdc50 40%);
}
.c-page-intro__text ul {
  margin-top: 1em;
  margin-bottom: 1em;
}
.c-page-intro__text ul li {
  list-style: disc;
  margin-left: 1.5em;
}

.c-page-intro__image {
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
}
.c-page-intro__image img {
  border-radius: 20px;
}
@media (min-width: 768px) {
  .c-page-intro__image {
    flex: 1;
    margin-top: 70px;
  }
}
@media (min-width: 1024px) {
  .c-page-intro__image {
    flex: 9;
  }
  .c-page-intro__image img {
    border-radius: 36px;
  }
}
@media (min-width: 1440px) {
  .c-page-intro__image {
    flex: 11;
  }
}

.c-page-intro__schema {
  background: #fff;
  border-radius: 36px;
  padding: 20px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
  max-width: 500px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-page-intro__schema {
    flex: 1;
    margin-top: 70px;
  }
}
@media (min-width: 1024px) {
  .c-page-intro__schema {
    flex: 11;
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  .c-page-intro__schema {
    padding: 30px 46px;
  }
}

.c-page-intro__list {
  margin-top: 24px;
  padding: 0;
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .c-page-intro__list {
    margin-top: 35px;
  }
}

.c-page-intro__list-item {
  position: relative;
  padding: 10px 15px 10px 30px;
  border: 2px solid #133761;
  border-radius: 14px;
  background: #fff;
  font-weight: 700;
  color: #133761;
}
.c-page-intro__list-item::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #133761;
}
@media (min-width: 768px) {
  .c-page-intro__list-item {
    padding: 10px 24px 10px 35px;
  }
  .c-page-intro__list-item::before {
    left: 15px;
    width: 10px;
    height: 10px;
  }
}

.c-staff-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 30px;
  gap: 20px;
}
@media (min-width: 768px) {
  .c-staff-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .c-staff-list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }
}
@media (min-width: 1440px) {
  .c-staff-list {
    gap: 30px;
  }
}

.c-staff-list__item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.c-staff-list__thumbnail {
  overflow: hidden;
}
.c-staff-list__thumbnail img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-clip-path: url(#staffClip);
  clip-path: url(#staffClip);
}

.c-staff-list__content {
  padding: 12px 20px 18px;
  border-radius: 8px;
  background: #f3f3f3;
  margin-top: 9px;
}

.c-staff-list__position {
  font-size: 1.4rem;
  color: #133761;
  font-weight: 700;
  margin-right: 10px;
}

.c-staff-list__name {
  font-weight: 700;
  font-size: 1.6rem;
  color: #133761;
  display: inline;
}
@media (min-width: 1440px) {
  .c-staff-list__name {
    font-size: 1.7rem;
  }
}

.c-staff-list__text {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 8px;
}

.c-news {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .c-news {
    padding-top: 50px;
  }
}
.c-news .is-active {
  position: relative;
  color: #ea9f13;
}
.c-news .is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: #ea9f13;
}
.c-news--top {
  padding-top: 0;
}

.c-news__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
@media (min-width: 768px) {
  .c-news__wrapper {
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .c-news__wrapper {
    padding-inline: 30px;
    gap: 56px;
  }
}
@media (min-width: 1440px) {
  .c-news__wrapper {
    padding-inline: 56px;
    gap: 60px;
  }
}

.c-news__heading {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  white-space: nowrap;
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 5.6rem);
  display: flex;
  align-items: center;
  color: #444;
}
.c-news__heading span {
  margin-top: 3px;
  margin-bottom: 3px;
}

.c-news__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .c-news__content {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .c-news__content {
    gap: 56px;
  }
}

.c-news__categories {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .c-news__categories {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .c-news__categories--row {
    flex-direction: row;
  }
}

.c-news__category-button {
  font-weight: 700;
  color: #444;
}
@media (min-width: 768px) {
  .c-news__category-button {
    transition: color 0.4s;
  }
  .c-news__category-button:hover {
    color: #ea9f13;
  }
}
@media (min-width: 1440px) {
  .c-news__category-button {
    font-size: 1.8rem;
  }
}

.c-news__list {
  margin-top: 30px;
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .c-news__list {
    margin-top: 50px;
  }
}
@media (min-width: 768px) {
  .c-news__list--top {
    margin-top: 0;
  }
}

.c-news__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-block: 30px;
  border-top: 1px solid #cfcfcf;
}
@media (min-width: 768px) {
  .c-news__item:hover .c-news__title {
    color: #ea9f13;
  }
}
@media (min-width: 1024px) {
  .c-news__item {
    flex-direction: row;
    padding-block: 45px;
  }
}
@media (min-width: 1440px) {
  .c-news__item {
    gap: 25px;
  }
}

.c-news__list li:last-child .c-news__item {
  border-bottom: 1px solid #cfcfcf;
}

.c-news__meta {
  display: flex;
  gap: 15px;
}
@media (min-width: 1440px) {
  .c-news__meta {
    gap: 25px;
  }
}

.c-news__category {
  border-radius: 13px;
  background: #ea9f13;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  width: 86px;
  line-height: 26px;
  height: 26px;
  display: inline-block;
  text-align: center;
}

.c-news__published {
  color: #666;
  font-family: "Hind", sans-serif;
  font-weight: 400;
}

.c-news__title {
  color: #5b5b5b;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .c-news__title {
    transition: color 0.4s;
  }
}

.c-news__button {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 25px;
}
.c-news__button span {
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .c-news__button {
    gap: 22px;
  }
  .c-news__button:hover .c-news__arrow {
    transform: scale(1.05);
  }
}
@media (min-width: 1024px) {
  .c-news__button {
    padding-inline: 30px;
    margin-top: 35px;
  }
}
@media (min-width: 1440px) {
  .c-news__button {
    padding-inline: 56px;
  }
  .c-news__button span {
    font-size: 1.7rem;
  }
}

.c-news__arrow {
  width: 40px;
  height: 40px;
  background: #444;
  border-radius: 50%;
  position: relative;
}
.c-news__arrow::before {
  position: absolute;
  content: "";
  background: url(../img/top/arrow.webp) no-repeat center center/contain;
  width: 5px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .c-news__arrow {
    transition: transform 0.4s;
  }
}
@media (min-width: 1024px) {
  .c-news__arrow {
    width: 50px;
    height: 50px;
  }
}

.c-news__empty {
  padding: 40px 0;
  border-bottom: 1px solid #cfcfcf;
  border-top: 1px solid #cfcfcf;
}
@media (min-width: 768px) {
  .c-news__empty {
    padding: 60px 0;
  }
}

.c-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  /* hover */
  /* current */
  /* prev next */
}
.c-pagination .page-numbers {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  transition: all 0.25s ease;
}
@media (min-width: 768px) {
  .c-pagination .page-numbers {
    padding: 0 14px;
    min-width: 44px;
    height: 44px;
  }
}
@media (min-width: 768px) {
  .c-pagination a.page-numbers:hover {
    opacity: 0.7;
  }
}
.c-pagination .current {
  background: #133761;
  color: #fff;
  border-color: #133761;
  pointer-events: none;
}
.c-pagination .prev,
.c-pagination .next {
  padding-inline: 18px;
  font-size: 1.3rem;
}

.c-entry {
  margin-top: 40px;
  /* ----------------
   ページャー
  ---------------- */
  /* ----------------
   画像・本文
  ---------------- */
  /* ----------------
   見出し
  ---------------- */
  /* ----------------
   リスト
  ---------------- */
  /* ----------------
   リンク
  ---------------- */
  /* ----------------
   表
  ---------------- */
  /* ----------------
   区切り線
  ---------------- */
}
@media (min-width: 768px) {
  .c-entry {
    margin-top: 70px;
  }
}
.c-entry .c-entry__header {
  margin-bottom: 16px;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .c-entry .c-entry__header {
    margin-bottom: 20px;
  }
}
.c-entry .c-entry__wrapper {
  background: #fff;
  border-radius: 15px;
  padding: 30px 15px 40px;
}
@media (min-width: 768px) {
  .c-entry .c-entry__wrapper {
    padding: 30px 30px 70px;
  }
}
@media (min-width: 1024px) {
  .c-entry .c-entry__wrapper {
    padding: 30px 80px 100px;
  }
}
.c-entry .c-entry__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
}
.c-entry .c-entry__meta {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 20px;
}
.c-entry .c-entry__terms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.c-entry .c-entry__term {
  display: block;
  font-size: 13px;
  padding: 4px 15px;
  background: #ea9f13;
  border-radius: 9999px;
  text-decoration: none;
  color: #fff;
  line-height: 1.3;
}
.c-entry .c-entry__term:hover {
  opacity: 0.7;
}
.c-entry .c-entry__date {
  display: block;
  font-size: 15px;
  color: #666;
  font-family: "Hind", sans-serif;
}
.c-entry .c-entry__thumb {
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .c-entry .c-entry__thumb {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
.c-entry .c-entry__thumb img {
  width: 100%;
  display: block;
  border-radius: 16px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .c-entry .c-entry__thumb img {
    border-radius: 24px;
  }
}
.c-entry .c-entry__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
  border-top: 1px solid #bdbdbd;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .c-entry .c-entry__pager {
    gap: 20px;
  }
}
.c-entry .c-entry__pager-prev,
.c-entry .c-entry__pager-next,
.c-entry .c-entry__pager-archive {
  padding: 12px 12px;
  text-decoration: none;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .c-entry .c-entry__pager-prev,
  .c-entry .c-entry__pager-next,
  .c-entry .c-entry__pager-archive {
    padding: 12px 24px;
  }
}
.c-entry .c-entry__pager-prev {
  border: 1px solid #bdbdbd;
  color: #333;
}
.c-entry .c-entry__pager-next {
  border: 1px solid #bdbdbd;
  color: #333;
}
.c-entry .c-entry__pager-archive {
  border: 1px solid #133761;
  background: #133761;
  color: #fff;
}
.c-entry .c-entry__pager-archive:hover {
  background: #222;
  color: #fff;
}
.c-entry .c-entry__content {
  margin-bottom: 80px;
  line-height: 1.9;
}
.c-entry .c-entry__content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 500px;
}
.c-entry .c-entry__content h2 + p img,
.c-entry .c-entry__content h3 + p img {
  padding-top: 1em;
}
.c-entry .c-entry__content .marker {
  background: linear-gradient(transparent 60%, #fcd575 0%);
}
.c-entry .c-entry__content .blog-card {
  border: 2px solid #ddd;
  padding: 10px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1.5em;
  width: 600px;
  max-width: 100%;
}
.c-entry .c-entry__content .blog-card p {
  margin-bottom: 0;
}
.c-entry .c-entry__content > h2:first-child {
  margin-top: 0;
}
.c-entry h2 {
  margin-top: 2.1em;
  margin-bottom: 0.8em;
  font-weight: 700;
  font-size: clamp(2rem, 2.7vw, 2.7rem);
  position: relative;
  background: #efefef;
  padding: 12px;
  line-height: 1.4;
}
.c-entry h2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  top: 0;
  background: #133761;
}
@media (min-width: 768px) {
  .c-entry h2 {
    padding: 16px 20px;
  }
}
.c-entry h3 {
  margin-top: 1.7em;
  margin-bottom: 0.6em;
  font-weight: 700;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  position: relative;
  padding-left: 16px;
  line-height: 1.4;
}
.c-entry h3::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
  background: #133761;
}
@media (min-width: 768px) {
  .c-entry h3 {
    padding-left: 20px;
  }
  .c-entry h3:before {
    width: 5px;
  }
}
.c-entry h4 {
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
  padding-top: 2px;
  padding-bottom: 2px;
}
.c-entry h4::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 3px;
  left: 0;
  top: 14px;
  background: #133761;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .c-entry h4 {
    padding-left: 27px;
  }
  .c-entry h4::before {
    width: 16px;
    height: 5px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.c-entry p {
  margin-bottom: 1em;
}
.c-entry ul,
.c-entry ol {
  margin: 1.5em 0;
}
.c-entry ul img,
.c-entry ol img {
  margin-top: 1em;
  margin-bottom: 1em;
}
.c-entry li {
  position: relative;
}
.c-entry ul li {
  margin-bottom: 0.5em;
  padding-left: 1em;
}
.c-entry ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #133761;
}
.c-entry ol {
  counter-reset: number;
}
.c-entry ol li {
  counter-increment: number;
  padding-left: 2em;
  margin-bottom: 1.5em;
}
.c-entry ol li::before {
  content: counter(number);
  position: absolute;
  left: 0;
  top: 3px;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #133761;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50%;
}
.c-entry a {
  color: #133761;
  text-decoration: underline;
}
.c-entry a:hover {
  opacity: 0.7;
}
.c-entry .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.c-entry .table-scroll table {
  border-collapse: collapse;
  width: 100%;
  min-width: 450px;
}
.c-entry table {
  max-width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow-x: auto;
}
@media (min-width: 768px) {
  .c-entry table {
    margin: 30px 0;
  }
}
.c-entry th,
.c-entry td {
  border: 1px solid #ddd;
  padding: 10px;
  vertical-align: middle;
}
.c-entry th {
  background: #f5f5f5;
  font-weight: 600;
  min-width: 85px;
}
@media (min-width: 768px) {
  .c-entry th,
  .c-entry td {
    padding: 12px 15px;
  }
}
.c-entry hr {
  margin: 50px 0;
  border: none;
  border-top: 1px solid #ddd;
}
.c-entry iframe {
  max-width: 100%;
}

.c-flow__steps {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .c-flow__steps {
    margin-top: 40px;
  }
}

.c-flow-step {
  background: #fff;
  border: 1.5px solid #133761;
  border-radius: 18px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media (min-width: 768px) {
  .c-flow-step {
    padding: 23px 28px;
    gap: 20px;
  }
}

.c-flow-step + .c-flow-step {
  margin-top: 40px;
}

.c-flow-step__number {
  width: 40px;
  height: 40px;
  background: #133761;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .c-flow-step__number {
    width: 48px;
    height: 48px;
  }
}

.c-flow-step__title {
  font-size: clamp(1.7rem, 2vw, 2rem);
  font-weight: 700;
  margin-bottom: 6px;
  color: #133761;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .c-flow-step__title {
    margin-top: 8px;
  }
}

.c-flow-step__text {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.7;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .c-flow-step__text {
    font-size: 1.5rem;
  }
}

.c-flow__arrow {
  width: 0;
  height: 0;
  margin: 10px auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid #133761;
  display: block;
}
@media (min-width: 1024px) {
  .c-flow__arrow {
    margin: 24px auto;
  }
}

.c-point-cards {
  margin-top: 28px;
  display: grid;
  gap: 26px;
}
@media (min-width: 768px) {
  .c-point-cards {
    margin-top: 48px;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-point-card {
  position: relative;
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 24px;
  padding: 28px 15px 15px;
}
@media (min-width: 1024px) {
  .c-point-card {
    padding: 31px 25px 25px;
    border-radius: 26px;
  }
}

.c-point-card__badge {
  position: absolute;
  top: -10px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 18px;
  border-radius: 999px;
  background: #133761;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .c-point-card__badge {
    top: -14px;
    height: 30px;
    font-size: 1.5rem;
    padding: 0 20px;
    left: 22px;
  }
}

.c-point-card__title {
  margin: 0;
  color: #133761;
  font-weight: 700;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .c-point-card__title {
    font-size: clamp(1.8rem, 1.5vw, 2.2rem);
  }
}

.c-point-card__icon {
  display: block;
  margin-right: 10px;
}

.c-point-card__text {
  margin-top: 10px;
  color: #333;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .c-point-card__text {
    margin-top: 12px;
  }
}

.c-section-cta {
  margin-top: 25px;
  text-align: center;
}
@media (min-width: 768px) {
  .c-section-cta {
    margin-top: 40px;
  }
}

.c-section-cta__text {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
}
@media (min-width: 768px) {
  .c-section-cta__text {
    text-align: center;
    font-size: 1.7rem;
  }
}
.c-section-cta__text span {
  color: #D82F2F;
}

.c-section-cta__button {
  margin-top: 24px;
  background: #133761;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 24px;
  gap: 0.7rem;
  font-size: 1.5rem;
  border: 1px solid #133761;
  border-radius: 9999px;
}
.c-section-cta__button svg {
  fill: #fff;
}
@media (min-width: 768px) {
  .c-section-cta__button {
    transition: all 0.4s;
  }
  .c-section-cta__button svg {
    transition: all 0.4s;
  }
  .c-section-cta__button:hover {
    background: #fff;
    color: #133761;
  }
  .c-section-cta__button:hover svg {
    fill: #133761;
  }
}
@media (min-width: 1024px) {
  .c-section-cta__button {
    padding: 18px 30px;
    gap: 1.5rem;
    font-size: 1.6rem;
  }
}

.p-top .fv {
  margin-bottom: 120px;
  position: relative;
  max-height: calc(75svh - 60px);
  width: 100%;
  aspect-ratio: 1/1;
  min-height: 300px;
}
@media (min-width: 768px) {
  .p-top .fv {
    max-height: calc(85svh - 60px);
    margin-bottom: 80px;
    min-height: 450px;
    aspect-ratio: 5/3;
  }
}
@media (min-width: 1024px) {
  .p-top .fv {
    max-height: calc(97svh - 80px);
    margin-bottom: 140px;
  }
}
.p-top .fv__swiper {
  width: 97%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  padding-bottom: 25px;
}
@media (min-width: 1024px) {
  .p-top .fv__swiper {
    width: 93%;
  }
}
.p-top .fv__swiper img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 30px 0 0 30px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .p-top .fv__swiper img {
    border-radius: 60px 0 0 60px;
  }
}
.p-top .fv__swiper-wrapper {
  width: 100%;
  height: 100%;
}
.p-top .fv__swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-top .fv__swiper-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  top: auto !important;
  bottom: 33px !important;
  transform: none;
  left: auto !important;
  right: 10px !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.p-top .fv__swiper-pagination .swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
  background: #ffffff !important;
  opacity: 1 !important;
  margin: 2px 0 !important;
}
.p-top .fv__swiper-pagination .swiper-pagination-bullet-active {
  background: #133761 !important;
}
@media (min-width: 768px) {
  .p-top .fv__swiper-pagination {
    flex-direction: row;
    bottom: 10px !important;
    transform: none;
  }
  .p-top .fv__swiper-pagination .swiper-pagination-bullet {
    width: 7px !important;
    height: 7px !important;
    margin: 0 3px !important;
    border: 1px solid #133761;
  }
}
@media (min-width: 1024px) {
  .p-top .fv__swiper-pagination {
    bottom: 0 !important;
  }
  .p-top .fv__swiper-pagination .swiper-pagination-bullet {
    width: 9px !important;
    height: 9px !important;
    margin: 0 4px !important;
  }
}
.p-top .fv__text-wrapper {
  position: absolute;
  z-index: 1;
  width: 98%;
  left: 0;
  bottom: -21%;
}
@media (min-width: 768px) {
  .p-top .fv__text-wrapper {
    bottom: -3%;
  }
}
@media (min-width: 1024px) {
  .p-top .fv__text-wrapper {
    bottom: -10%;
  }
}
@media (min-width: 1600px) {
  .p-top .fv__text-wrapper {
    bottom: -8%;
  }
}
.p-top .fv__text {
  width: 80%;
  max-width: 450px;
  margin-left: 9px;
}
@media (min-width: 768px) {
  .p-top .fv__text {
    width: 35%;
    max-width: 500px;
    margin-left: 15px;
  }
}
@media (min-width: 1024px) {
  .p-top .fv__text {
    max-width: 600px;
    margin-left: 4%;
  }
}
@media (min-width: 1600px) {
  .p-top .fv__text {
    width: 40%;
  }
}
.p-top .fv__deco {
  width: 80%;
  margin-left: 3px;
  min-width: 330px;
}
@media (min-width: 768px) {
  .p-top .fv__deco {
    width: 90%;
    max-width: 700px;
    margin-top: 30px;
    margin-left: 2px;
  }
}
@media (min-width: 1024px) {
  .p-top .fv__deco {
    max-width: 900px;
    margin-top: 40px;
  }
}
@media (min-width: 1440px) {
  .p-top .fv__deco {
    max-width: 1200px;
  }
}
.p-top .about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 768px) {
  .p-top .about__wrapper {
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .p-top .about__wrapper {
    gap: 5.1388888889%;
  }
}
@media (min-width: 768px) {
  .p-top .about__content {
    flex: 1;
  }
}
@media (min-width: 1440px) {
  .p-top .about__content {
    flex: 5;
  }
}
.p-top .about__heading {
  margin-top: 16px;
}
.p-top .about__text {
  margin-top: 16px;
}
.p-top .about__text span {
  font-weight: 700;
  background: linear-gradient(transparent 70%, #ffdc50 30%);
}
@media (min-width: 768px) {
  .p-top .about__text {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .p-top .about__text {
    font-size: 1.6rem;
    margin-top: 22px;
  }
}
.p-top .about__brand {
  background: #133761;
  border-radius: 9px;
  padding: 4px 8px 10px;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .p-top .about__brand {
    margin-top: 37px;
  }
}
.p-top .about__brand-heading {
  font-weight: 700;
  color: #fff;
  padding-left: 3px;
  font-size: 1.3rem;
  letter-spacing: normal;
}
@media (min-width: 1024px) {
  .p-top .about__brand-heading {
    letter-spacing: 0.7px;
    font-size: 1.6rem;
  }
}
.p-top .about__brand-logo {
  background: #fff;
  border-radius: 9px;
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 15px 20px 10px;
  gap: 15px 40px;
  margin-top: 5px;
}
.p-top .about__button {
  margin-top: 20px;
}
.p-top .about__button a {
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .p-top .about__button {
    margin-top: 32px;
  }
  .p-top .about__button a {
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .p-top .about__button {
    margin-top: 52px;
  }
}
.p-top .button a {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .p-top .button a {
    gap: 15px;
  }
  .p-top .button:hover .button-text::before {
    -webkit-animation: underlineSlide 0.5s ease forwards;
    animation: underlineSlide 0.5s ease forwards;
  }
  .p-top .button:hover .button-arrow {
    transform: scale(1.1);
  }
}
@media (min-width: 1024px) {
  .p-top .button a {
    gap: 20px;
  }
}
.p-top .button-text {
  position: relative;
  padding: 6px 4px;
  font-size: 1.6rem;
  font-weight: 700;
}
.p-top .button-text::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #133761;
  left: 0;
  bottom: 0;
  transform: scaleX(1);
  transform-origin: left;
  transition: none;
}
@media (min-width: 1024px) {
  .p-top .button-text {
    font-size: 1.7rem;
  }
}
.p-top .button-arrow {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #133761;
  display: inline-block;
}
.p-top .button-arrow::before {
  position: absolute;
  content: "";
  background: url(../img/common/arrow.webp) no-repeat center center/contain;
  width: 7px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .p-top .button-arrow {
    transition: transform 0.4s;
  }
}
@media (min-width: 1024px) {
  .p-top .button-arrow {
    width: 66px;
    height: 66px;
  }
}
@-webkit-keyframes underlineSlide {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }
  20% {
    transform: scaleX(0);
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes underlineSlide {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }
  20% {
    transform: scaleX(0);
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
.p-top .about__image-wrapper {
  position: relative;
  aspect-ratio: 608/599;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .p-top .about__image-wrapper {
    flex: 1;
    margin-top: 30px;
  }
}
@media (min-width: 1440px) {
  .p-top .about__image-wrapper {
    flex: 6;
  }
}
.p-top .about__image-deco {
  position: absolute;
  z-index: -1;
  width: 59.8684210526%;
  top: 20%;
  left: 0;
}
.p-top .about__image-01 {
  position: absolute;
  border-radius: 22px;
  width: 80.0986842105%;
  top: 0;
  right: 0;
}
.p-top .about__image-02 {
  position: absolute;
  z-index: 1;
  border-radius: 20px;
  width: 52.4671052632%;
  left: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .p-top .about__image-02 {
    left: 10%;
  }
}
.p-top .top__swiper-wrapper {
  transition-timing-function: linear !important;
}
.p-top .top__slide {
  aspect-ratio: 6/5;
}
.p-top .top__slide img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-top .pickup__heading-wrapper {
  display: inline-block;
  position: relative;
}
.p-top .pickup__heading-wrapper::after {
  position: absolute;
  content: "";
  background: #133761;
  width: 100%;
  height: 8px;
  left: 0;
  top: 0px;
}
@media (min-width: 1024px) {
  .p-top .pickup__heading-wrapper::after {
    height: 12px;
    top: 0;
  }
}
.p-top .pickup__heading {
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 700;
  position: relative;
  padding-left: 36px;
  color: #133761;
  line-height: 1;
  margin-top: 29px;
}
.p-top .pickup__heading::before {
  position: absolute;
  content: "";
  background: url(../img/common/heading-icon.webp) no-repeat center center/contain;
  width: 28px;
  height: 13px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .p-top .pickup__heading {
    margin-top: 49px;
  }
}
.p-top .pickup__button {
  margin-top: 20px;
  text-align: right;
}
.p-top .pickup__button a {
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .p-top .pickup__button {
    margin-top: 0;
    text-align: left;
  }
  .p-top .pickup__button a {
    justify-content: flex-start;
  }
}
.p-top .more-button a {
  font-weight: 700;
  font-size: 1.7rem;
  position: relative;
  padding-bottom: 5px;
}
.p-top .more-button a::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #133761;
  left: 0;
  bottom: 0;
  transform: scaleX(1);
  transform-origin: left;
  transition: none;
}
@media (min-width: 768px) {
  .p-top .more-button a:hover::before {
    -webkit-animation: underlineSlide 0.5s ease forwards;
    animation: underlineSlide 0.5s ease forwards;
  }
}
.p-top .pickup__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 30px;
  border-top: 1px solid #e9e9e9;
  border-left: 1px solid #e9e9e9;
}
@media (min-width: 768px) {
  .p-top .pickup__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .p-top .pickup__list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }
}
.p-top .pickup__item {
  display: flex;
  flex-direction: column;
  position: relative;
  border-bottom: 1px solid #e9e9e9;
  border-right: 1px solid #e9e9e9;
}
@media (min-width: 768px) {
  .p-top .pickup__item:hover .pickup__thumbnail img {
    transform: scale(1.05);
  }
  .p-top .pickup__item:hover .pickup__content-wrapper {
    opacity: 0.8;
  }
}
.p-top .pickup__content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding: 15px 12px 25px;
}
@media (min-width: 768px) {
  .p-top .pickup__content-wrapper {
    transition: opacity 0.4s;
  }
}
@media (min-width: 1024px) {
  .p-top .pickup__content-wrapper {
    padding: 21px 12px 40px;
  }
}
.p-top .pickup__content-bottom {
  margin-top: auto;
}
.p-top .pickup__thumbnail {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.p-top .pickup__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .p-top .pickup__thumbnail img {
    transition: transform 0.4s;
  }
}
.p-top .pickup__title {
  font-weight: 900;
  font-size: 1.7rem;
  color: #133761;
}
@media (min-width: 1440px) {
  .p-top .pickup__title {
    font-size: 2rem;
  }
}
.p-top .pickup__content {
  font-size: 1.3rem;
  margin-top: 5px;
}
.p-top .pickup__categories {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-top .pickup__categories {
    margin-top: 27px;
  }
}
.p-top .pickup__term {
  border: 1px solid #133761;
  font-size: 1.3rem;
  padding: 0 6px;
  color: #133761;
  min-width: 100px;
  line-height: 1.8;
  text-align: center;
  display: inline-block;
}
@media (min-width: 768px) {
  .p-top .pickup__term {
    padding: 0 10px;
  }
}
.p-top .product {
  position: relative;
  padding-top: 50px;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .p-top .product {
    padding-top: 50px;
    margin-top: 80px;
  }
}
.p-top .product__heading-wrapper {
  display: flex;
  justify-content: space-between;
}
.p-top .product__heading::before {
  content: "PRODUCT";
}
.p-top .product__button-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}
.p-top .product__swiper-button-wrapper {
  position: relative;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.p-top .product__swiper-button-prev,
.p-top .product__swiper-button-next {
  display: none;
}
.p-top .product__swiper-button-prev::after,
.p-top .product__swiper-button-next::after {
  content: none;
}
@media (min-width: 768px) {
  .p-top .product__swiper-button-prev,
  .p-top .product__swiper-button-next {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    background: #133761;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
  }
}
@media (min-width: 768px) and (min-width: 1440px) {
  .p-top .product__swiper-button-prev,
  .p-top .product__swiper-button-next {
    width: 66px;
    height: 66px;
  }
}
.p-top .product__swiper-button-prev {
  transition: transform 0.4s;
}
.p-top .product__swiper-button-prev::before {
  background: url(../img/top/arrow-prev.webp) no-repeat center center/contain;
  position: absolute;
  content: "";
  width: 7px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (min-width: 768px) {
  .p-top .product__swiper-button-prev:hover {
    transform: scale(1.1);
  }
}
.p-top .product__swiper-button-next {
  transition: transform 0.4s;
}
.p-top .product__swiper-button-next::before {
  background: url(../img/top/arrow-next.webp) no-repeat center center/contain;
  position: absolute;
  content: "";
  width: 7px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (min-width: 768px) {
  .p-top .product__swiper-button-next:hover {
    transform: scale(1.1);
  }
}
.p-top .product__swiper {
  padding-top: 80px;
  position: relative;
  padding-left: 15px;
}
@media (min-width: 500px) {
  .p-top .product__swiper {
    padding-left: 20px;
  }
}
@media (min-width: 768px) {
  .p-top .product__swiper {
    padding-left: 30px;
    padding-top: 100px;
  }
}
@media (min-width: 1024px) {
  .p-top .product__swiper {
    padding-left: 5%;
    margin-top: 20px;
  }
}
@media (min-width: 1440px) {
  .p-top .product__swiper {
    padding-left: 10%;
  }
}
@media (min-width: 1600px) {
  .p-top .product__swiper {
    padding-left: 18%;
  }
}
.p-top .product-swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-top .product__item {
  position: relative;
  border-radius: 24px;
  display: block;
}
@media (min-width: 768px) {
  .p-top .product__item {
    transition: opacity 0.4s;
  }
  .p-top .product__item:hover {
    opacity: 0.8;
  }
  .p-top .product__item:hover .product__item-arrow {
    transform: scale(1.07);
  }
}
.p-top .product__item-inner {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  aspect-ratio: 373/331;
  border-radius: 24px;
}
.p-top .product__item-01 .product__item-inner {
  background: url(../img/top/product-bg-01.webp) no-repeat center center/cover;
}
.p-top .product__item-02 .product__item-inner {
  background: url(../img/top/product-bg-02.webp) no-repeat center center/cover;
}
.p-top .product__item-03 .product__item-inner {
  background: url(../img/top/product-bg-03.webp) no-repeat center center/cover;
}
.p-top .product__item-04 .product__item-inner {
  background: url(../img/top/product-bg-04.webp) no-repeat center center/cover;
}
.p-top .product__item-05 .product__item-inner {
  background: url(../img/top/product-bg-05.webp) no-repeat center center/cover;
}
.p-top .product__item-06 .product__item-inner {
  background: url(../img/top/product-bg-06.webp) no-repeat center center/cover;
}
.p-top .product__item-image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.p-top .product__item-image img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.p-top .product__item-image-01 {
  top: -50px;
  width: 78%;
}
@media (min-width: 768px) {
  .p-top .product__item-image-01 {
    width: 290px;
    top: -20%;
  }
}
@media (min-width: 1440px) {
  .p-top .product__item-image-01 {
    width: 317px;
  }
}
.p-top .product__item-image-02 {
  top: -50px;
  width: 76%;
}
@media (min-width: 768px) {
  .p-top .product__item-image-02 {
    width: 280px;
    top: -18%;
  }
}
@media (min-width: 1440px) {
  .p-top .product__item-image-02 {
    width: 300px;
  }
}
.p-top .product__item-image-03 {
  top: -30px;
  width: 70%;
}
@media (min-width: 768px) {
  .p-top .product__item-image-03 {
    width: 250px;
    top: -14%;
  }
}
@media (min-width: 1440px) {
  .p-top .product__item-image-03 {
    width: 270px;
  }
}
.p-top .product__item-image-04 {
  top: -50px;
  width: 60%;
}
@media (min-width: 768px) {
  .p-top .product__item-image-04 {
    width: 210px;
    top: -20%;
  }
}
@media (min-width: 1440px) {
  .p-top .product__item-image-04 {
    width: 230px;
  }
}
.p-top .product__item-image-05 {
  top: -50px;
  width: 50%;
}
@media (min-width: 768px) {
  .p-top .product__item-image-05 {
    width: 200px;
    top: -20%;
  }
}
@media (min-width: 1440px) {
  .p-top .product__item-image-05 {
    width: 220px;
  }
}
.p-top .product__item-image-06 {
  top: -50px;
  width: 60%;
}
@media (min-width: 768px) {
  .p-top .product__item-image-06 {
    width: 215px;
    top: -18%;
  }
}
@media (min-width: 1440px) {
  .p-top .product__item-image-06 {
    width: 240px;
  }
}
.p-top .product__item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.p-top .product__item-title {
  font-size: clamp(1.7rem, 2.3vw, 2.6rem);
  color: #fff;
  font-weight: 700;
  padding-inline: 14px;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .p-top .product__item-title {
    font-size: clamp(2.2rem, 2.3vw, 2.6rem);
    padding-inline: 19px;
    margin-bottom: 10px;
  }
}
.p-top .product__item-text {
  margin-top: -30px;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 14px 20px;
  font-size: 1.3rem;
  line-height: 1.4;
  gap: 5px;
  border-radius: 0 0 24px 24px;
}
.p-top .product__item-text p {
  color: #fff;
  font-weight: 400;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .p-top .product__item-text {
    margin-top: -20px;
    line-height: 1.8;
    font-size: 1.4rem;
    padding: 30px 19px 30px;
  }
}
@media (min-width: 1440px) {
  .p-top .product__item-text {
    font-size: 1.6rem;
  }
}
.p-top .product__item-arrow {
  position: relative;
  flex-shrink: 0;
  border: 1px solid #fff;
  width: 30px;
  height: 30px;
  background: transparent;
  right: 0;
  top: 50%;
  border-radius: 50%;
}
.p-top .product__item-arrow::after {
  position: absolute;
  content: "";
  background: url(../img/top/arrow.webp) no-repeat center center/contain;
  width: 7px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .p-top .product__item-arrow {
    width: 46px;
    height: 46px;
    transition: transform 0.4s;
  }
}
.p-top .shop__heading::before {
  content: "SHOP INFO";
}
.p-top .shop__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 120px;
  gap: 14px;
}
@media (min-width: 768px) {
  .p-top .shop__wrapper {
    flex-direction: row;
    margin-top: 50px;
  }
}
.p-top .shop__item {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 373/331;
  border-radius: 24px;
  display: block;
  overflow: hidden;
}
.p-top .shop__item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 60%;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.7) 0%, rgba(52, 52, 52, 0.7) 75.5%, rgba(57, 57, 57, 0) 100%);
  transition: opacity 0.4s ease;
}
@media (min-width: 768px) {
  .p-top .shop__item {
    transition: opacity 0.4s;
  }
  .p-top .shop__item::before {
    height: 50%;
  }
  .p-top .shop__item:hover::before {
    opacity: 0.3;
  }
  .p-top .shop__item:hover .shop__item-arrow {
    transform: scale(1.07);
  }
}
.p-top .shop__item-01 {
  background: url(../img/top/shop-01.webp) no-repeat center center/cover;
}
.p-top .shop__item-02 {
  background: url(../img/top/shop-02.webp) no-repeat center center/cover;
}
.p-top .shop__item-content {
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-top .shop__item-heading {
  color: #fff;
  position: relative;
  z-index: 1;
  padding-inline: 15px;
  font-weight: 700;
  font-size: clamp(2rem, 2.8vw, 3rem);
}
@media (min-width: 1024px) {
  .p-top .shop__item-heading {
    padding-inline: 30px;
  }
}
.p-top .shop__item-text {
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 15px 15px 30px;
  font-size: 1.3rem;
  display: flex;
  gap: 20px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-top .shop__item-text {
    font-size: 1.5rem;
    gap: 25px;
    line-height: 1.7;
    padding: 20px 30px 30px;
  }
}
.p-top .shop__item-arrow {
  position: relative;
  flex-shrink: 0;
  border: 1px solid #fff;
  width: 30px;
  height: 30px;
  background: transparent;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  margin-top: 30px;
}
.p-top .shop__item-arrow::after {
  position: absolute;
  content: "";
  background: url(../img/top/arrow.webp) no-repeat center center/contain;
  width: 7px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
  .p-top .shop__item-arrow {
    width: 46px;
    height: 46px;
    transition: transform 0.4s;
  }
}
.p-top .shop__item-deco {
  position: absolute;
  right: 5px;
  bottom: 100%;
  display: flex;
  align-items: center;
}
.p-top .shop__item-deco img {
  width: 100px;
}
@media (min-width: 1024px) {
  .p-top .shop__item-deco img {
    width: 150px;
  }
}
.p-top .shop__item-deco-text span {
  background: linear-gradient(transparent 50%, #e2ff3d 50%);
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
}
@media (min-width: 1440px) {
  .p-top .shop__item-deco-text span {
    font-size: 1.7rem;
  }
}
.p-top .staff__heading-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-top .staff__heading::before {
  content: "STAFF";
}
.p-top .staff__button {
  margin-top: 20px;
  text-align: right;
}
.p-top .staff__button a {
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .p-top .staff__button {
    margin-top: 0;
    text-align: left;
  }
  .p-top .staff__button a {
    justify-self: flex-start;
  }
}
.p-top .recruit__heading::before {
  content: "RECRUITING";
}
.p-top .recruit__wrapper {
  background: url(../img/top/recruit.webp) no-repeat center center/cover;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}
.p-top .recruit__wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(46, 46, 46, 0.42);
}
@media (min-width: 1024px) {
  .p-top .recruit__wrapper {
    margin-top: 40px;
  }
}
.p-top .recruit__content {
  color: #fff;
  text-align: center;
  padding: 50px 15px 40px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-top .recruit__content {
    padding: 80px 30px 60px;
  }
}
.p-top .recruit__content-heading {
  font-weight: 700;
  display: block;
}
.p-top .recruit__content-heading-en {
  font-weight: 700;
  font-size: clamp(4rem, 6vw, 6.3rem);
  display: block;
  font-family: "Hind", sans-serif;
  line-height: 1.6;
}
.p-top .recruit__content-message {
  font-weight: 700;
  font-size: clamp(2rem, 2.5vw, 3rem);
}
.p-top .recruit__content-text {
  margin-top: 20px;
  font-weight: 400;
}
.p-top .recruit__content-button {
  margin-top: 38px;
  border-radius: 27px;
  border: 1px solid #fff;
  box-shadow: 0px 6.5px 6.5px 0px rgba(0, 0, 0, 0.25);
  width: 176px;
  line-height: 2;
  font-family: "Hind", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
  padding-right: 10px;
  position: relative;
  overflow: hidden;
  color: #fff;
  z-index: 1;
  transition: padding 0.4s ease;
}
.p-top .recruit__content-button::before, .p-top .recruit__content-button::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 0;
}
.p-top .recruit__content-button::before {
  right: 13px;
  opacity: 1;
}
.p-top .recruit__content-button::after {
  left: -20px;
  opacity: 0;
}
@media (min-width: 768px) {
  .p-top .recruit__content-button:hover {
    padding-right: 0;
    padding-left: 10px;
  }
  .p-top .recruit__content-button:hover::before {
    transform: translate(150%, -50%);
    opacity: 0;
  }
  .p-top .recruit__content-button:hover::after {
    transform: translateX(33px) translateY(-50%);
    opacity: 1;
  }
}

.p-service .message {
  margin-top: 30px;
}
.p-service .message__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 768px) {
  .p-service .message__wrapper {
    flex-direction: row;
    align-items: flex-end;
  }
}
@media (min-width: 1440px) {
  .p-service .message__wrapper {
    gap: 4.4444444444%;
  }
}
@media (min-width: 1024px) {
  .p-service .message__content {
    flex: 10;
  }
}
.p-service .message__heading-en {
  font-size: clamp(2.4rem, 3.6vw, 4.2rem);
  line-height: 1.5;
}
.p-service .message__heading {
  margin-top: 20px;
  font-size: clamp(2rem, 2.5vw, 3.2rem);
}
.p-service .message__text {
  margin-top: 20px;
}
.p-service .message__text span {
  font-weight: 700;
  background: linear-gradient(transparent 70%, #ffdc50 40%);
}
@media (min-width: 768px) {
  .p-service .message__text {
    font-size: 1.5rem;
    margin-top: 25px;
  }
}
@media (min-width: 1024px) {
  .p-service .message__text {
    margin-top: 39px;
  }
}
@media (min-width: 1440px) {
  .p-service .message__text {
    font-size: 1.6rem;
  }
}
.p-service .message__schema {
  background: #fff;
  border-radius: 36px;
  padding: 20px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
  max-width: 500px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .p-service .message__schema {
    flex: 11;
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  .p-service .message__schema {
    padding: 30px 46px;
  }
}
.p-service .image {
  margin-top: 60px;
  overflow: hidden;
  padding-bottom: 120px;
}
.p-service .image img {
  width: auto;
  max-height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 80vw;
}
@media (min-width: 768px) {
  .p-service .image {
    margin-top: 80px;
    padding-bottom: 130px;
  }
  .p-service .image img {
    height: auto;
    max-height: none;
  }
}
@media (min-width: 1440px) {
  .p-service .image {
    margin-top: 138px;
    padding-bottom: 160px;
  }
}

/*-----------------
取扱製品共通
------------------*/
.p-product .fv {
  position: relative;
  max-height: calc(40svh - 60px);
  position: relative;
  min-height: 250px;
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: 65px;
}
@media (min-width: 768px) {
  .p-product .fv {
    max-height: calc(60svh - 60px);
    min-height: 400px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .p-product .fv {
    max-height: calc(80svh - 60px);
    min-height: 500px;
    aspect-ratio: 10/4;
  }
}
.p-product .fv__image-wrap {
  position: absolute;
  inset: 0;
  width: 96vw;
  margin-left: 4vw;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .p-product .fv__image-wrap {
    width: 90vw;
    margin-left: 10vw;
  }
}
@media (min-width: 1024px) {
  .p-product .fv__image-wrap {
    width: 75vw;
    margin-left: 25vw;
  }
}
.p-product .fv__image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 100px 0 0 40px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .p-product .fv__image {
    border-radius: 200px 0 0 60px;
  }
}
@media (min-width: 1024px) {
  .p-product .fv__image {
    border-radius: 240px 0 0 60px;
  }
}
.p-product .fv__image--right {
  -o-object-position: right;
  object-position: right;
}
.p-product .fv__image--left {
  -o-object-position: left;
  object-position: left;
}
.p-product .fv__deco-wrapper {
  position: absolute;
  z-index: 1;
  width: 98%;
  left: 0;
  bottom: -45px;
}
@media (min-width: 768px) {
  .p-product .fv__deco-wrapper {
    bottom: -3%;
  }
}
@media (min-width: 1024px) {
  .p-product .fv__deco-wrapper {
    bottom: 0;
  }
}
.p-product .fv__heading-wrapper {
  margin-left: 10px;
}
@media (min-width: 768px) {
  .p-product .fv__heading-wrapper {
    margin-left: 5%;
  }
}
.p-product .fv__heading-en {
  border-radius: 10px 10px 0 0;
  background: #fff;
  padding: 10px 15px 0 10px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-product .fv__heading-en span {
  position: relative;
  font-weight: 700;
  font-size: 1.3rem;
  padding-left: 15px;
}
.p-product .fv__heading-en span::before {
  position: absolute;
  content: "";
  width: 11px;
  height: 1px;
  background: #333;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .p-product .fv__heading-en {
    padding: 20px 50px 5px 30px;
    border-radius: 17px 17px 0 0;
  }
  .p-product .fv__heading-en span {
    font-size: 1.7rem;
  }
}
.p-product .fv__heading {
  font-size: 3rem;
  border-radius: 0 10px 10px 10px;
  font-weight: 700;
  color: #133761;
  padding-top: 12px;
  background: #fff;
  padding: 10px 15px 10px 10px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 150px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .p-product .fv__heading {
    padding: 20px 50px 20px 30px;
    border-radius: 0 17px 17px 17px;
    min-width: 250px;
    font-size: 4rem;
  }
}
@media (min-width: 1024px) {
  .p-product .fv__heading {
    font-size: 5rem;
  }
}
.p-product .fv__heading--automower {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .p-product .fv__heading--automower {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .p-product .fv__heading--automower {
    font-size: 4.5rem;
  }
}
.p-product .fv__deco {
  width: 90%;
  margin-left: 10px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .p-product .fv__deco {
    width: 90%;
    margin-top: 40px;
    margin-left: 2px;
  }
}
@media (min-width: 1024px) {
  .p-product .fv__deco {
    max-width: 1000px;
    margin-top: 30px;
  }
}
@media (min-width: 1440px) {
  .p-product .fv__deco {
    max-width: 1200px;
  }
}
.p-product .about {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .p-product .about {
    margin-top: 30px;
  }
}
.p-product .about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 768px) {
  .p-product .about__wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (min-width: 1440px) {
  .p-product .about__wrapper {
    gap: 4.4444444444%;
  }
}
@media (min-width: 768px) {
  .p-product .about__content {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .p-product .about__content {
    flex: 11;
  }
}
@media (min-width: 1440px) {
  .p-product .about__content {
    flex: 10;
  }
}
.p-product .about__heading-en {
  font-size: clamp(1.3rem, 1.6vw, 1.8rem);
  line-height: 1.5;
}
.p-product .about__heading {
  margin-top: 15px;
}
.p-product .about__heading span {
  font-size: clamp(2.2rem, 2.6vw, 3rem);
}
@media (min-width: 768px) {
  .p-product .about__heading {
    margin-top: 20px;
  }
}
.p-product .about__heading-red {
  color: #e84a3c;
}
.p-product .about__text {
  margin-top: 20px;
}
.p-product .about__text span {
  font-weight: 700;
  background: linear-gradient(transparent 70%, #ffdc50 40%);
}
@media (min-width: 768px) {
  .p-product .about__text {
    font-size: 1.5rem;
    margin-top: 25px;
  }
}
@media (min-width: 1024px) {
  .p-product .about__text {
    margin-top: 39px;
  }
}
@media (min-width: 1440px) {
  .p-product .about__text {
    font-size: 1.6rem;
  }
}
.p-product .about__list {
  margin-top: 20px;
}
.p-product .about__list li {
  list-style: disc;
  margin-left: 20px;
}
@media (min-width: 768px) {
  .p-product .about__list {
    font-size: 1.5rem;
    margin-top: 25px;
  }
}
@media (min-width: 1024px) {
  .p-product .about__list {
    margin-top: 39px;
  }
}
.p-product .about__image {
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}
.p-product .about__image img {
  border-radius: 20px;
}
@media (min-width: 768px) {
  .p-product .about__image {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .p-product .about__image {
    flex: 9;
    border-radius: 36px;
  }
  .p-product .about__image img {
    border-radius: 36px;
  }
}
@media (min-width: 1440px) {
  .p-product .about__image {
    flex: 11;
  }
}
.p-product .about__image--none {
  box-shadow: none;
}
.p-product .about__brand {
  background: #133761;
  border-radius: 9px;
  padding: 5px 8px 10px;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .p-product .about__brand {
    margin-top: 37px;
  }
}
.p-product .about__brand-heading {
  font-weight: 700;
  color: #fff;
  padding-left: 3px;
  font-size: 1.3rem;
  letter-spacing: normal;
}
@media (min-width: 1024px) {
  .p-product .about__brand-heading {
    letter-spacing: 0.7px;
    font-size: 1.6rem;
  }
}
.p-product .about__brand-logo {
  background: #fff;
  border-radius: 9px;
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 15px 20px 10px;
  gap: 10px 20px;
  margin-top: 5px;
  align-items: center;
}
@media (min-width: 1024px) {
  .p-product .about__brand-logo {
    gap: 10px 50px;
  }
}
.p-product .about__brand-logo--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 15px 15px 10px;
}
@media (min-width: 1024px) {
  .p-product .about__brand-logo--4 {
    gap: 10px 30px;
    padding: 15px 20px 10px;
  }
}
.p-product .about__brand-logo img {
  max-height: 60px;
  display: block;
  margin-inline: auto;
}
.p-product .about__items {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: 30px;
}
@media (min-width: 768px) {
  .p-product .about__items {
    flex-direction: row;
    margin-top: 50px;
    gap: 15px;
  }
}
@media (min-width: 1024px) {
  .p-product .about__items {
    margin-top: 80px;
    gap: 23px;
  }
}
.p-product .about__item {
  flex: 1;
}
.p-product .about__item img {
  border-radius: 16px;
  aspect-ratio: 371/249;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  display: block;
}
.p-product .about__item-heading {
  font-size: 1.7rem;
  font-weight: 700;
  color: #133761;
  margin-top: 7px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-product .about__item-heading {
    margin-top: 13px;
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-product .about__item-heading {
    font-size: 1.9rem;
  }
}
.p-product .about__item-heading-sub {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  margin-top: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ea9f13;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .p-product .about__item-heading-sub {
    font-size: 1.7rem;
  }
}
@media (min-width: 1024px) {
  .p-product .about__item-heading-sub {
    font-size: 2.2rem;
    margin-top: 25px;
    padding-bottom: 21px;
    margin-bottom: 20px;
  }
}
.p-product .about__item-shadow {
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.05);
}
.p-product .about__item-text {
  font-size: 1.4rem;
  margin-top: 7px;
}
@media (min-width: 768px) {
  .p-product .about__item-text {
    font-size: 1.5rem;
  }
}
.p-product .suggestion {
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-product .suggestion--snow-blower {
    padding-bottom: 150px;
  }
}
.p-product .suggestion__heading-wrapper {
  text-align: center;
}
.p-product .suggestion__heading-deco {
  width: 53px;
}
.p-product .suggestion__heading {
  font-size: clamp(2rem, 2.7vw, 3rem);
  font-weight: 700;
  vertical-align: baseline;
  margin-top: 20px;
  line-height: 1.5;
}
.p-product .suggestion__heading span {
  color: #e4782b;
}
.p-product .suggestion__heading img {
  display: inline;
  width: 200px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .p-product .suggestion__heading {
    line-height: 1.2;
  }
  .p-product .suggestion__heading img {
    width: 242px;
  }
}
.p-product .suggestion__text {
  text-align: left;
  max-width: 950px;
  margin-inline: auto;
  margin-top: 20px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-product .suggestion__text {
    text-align: center;
  }
}
.p-product .suggestion__block {
  display: flex;
  flex-direction: column;
  gap: 50px;
  border-radius: 33px;
  background: #fff;
  border: 2px dashed #133761;
  padding: 15px;
  align-items: flex-start;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .p-product .suggestion__block {
    padding: 20px;
    margin-top: 45px;
    gap: 30px;
    flex-direction: row;
  }
}
@media (min-width: 1440px) {
  .p-product .suggestion__block {
    gap: 50px;
    padding: 60px 40px 50px;
  }
}
.p-product .suggestion__block + .suggestion__block {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .p-product .suggestion__block + .suggestion__block {
    margin-top: 40px;
  }
}
@media (min-width: 1024px) {
  .p-product .suggestion__block + .suggestion__block {
    margin-top: 60px;
  }
}
.p-product .suggestion__block-heading-wrapper {
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: #fff9f4;
  padding: 15px;
  border-radius: 19px;
  text-align: center;
  justify-content: center;
  width: 100%;
  align-self: stretch;
}
.p-product .suggestion__block-heading-wrapper img {
  max-width: 180px;
  display: block;
  margin-inline: auto;
}
.p-product .suggestion__block-heading-wrapper--blue {
  background: #f5faff;
}
@media (min-width: 768px) {
  .p-product .suggestion__block-heading-wrapper {
    flex-direction: column;
    text-align: center;
    flex: 2;
    flex-shrink: 0;
    padding: 30px 20px 30px;
  }
}
@media (min-width: 1024px) {
  .p-product .suggestion__block-heading-wrapper {
    padding: 30px 50px 30px;
    flex: 1;
  }
  .p-product .suggestion__block-heading-wrapper img {
    max-width: 100%;
    max-height: 350px;
  }
}
.p-product .suggestion__block-heading {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-product .suggestion__block-heading span {
  color: #e4782b;
}
@media (min-width: 768px) {
  .p-product .block-content {
    flex: 3;
  }
}
@media (min-width: 1024px) {
  .p-product .block-content {
    flex: 2;
  }
}
.p-product .block-content__list {
  background: #f9fafb;
  border-radius: 19px;
  font-weight: 700;
  padding: 20px 15px 15px;
  position: relative;
}
@media (min-width: 768px) {
  .p-product .block-content__list {
    padding: 28px 20px 20px;
    margin-top: 20px;
  }
}
@media (min-width: 1440px) {
  .p-product .block-content__list ul li {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.p-product .block-content__list-heading {
  background: #133761;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 6px 16px;
  border-radius: 9999px;
  color: #fff;
  display: inline-block;
  position: absolute;
  left: 25px;
  top: -20px;
}
@media (min-width: 768px) {
  .p-product .block-content__list-heading {
    font-size: 1.7rem;
  }
}
.p-product .block-content__arrow {
  text-align: center;
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .p-product .block-content__arrow {
    margin-top: 22px;
  }
}
.p-product .block-content__product-name {
  margin-top: 10px;
  background: #133761;
  font-weight: 700;
  font-size: 1.7rem;
  padding: 15px 18px;
  border-radius: 9999px;
  color: #fff;
  display: block;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-product .block-content__product-name {
    margin-top: 22px;
    font-size: 2rem;
  }
}
@media (min-width: 1440px) {
  .p-product .block-content__product-name {
    font-size: 2.2rem;
  }
}
.p-product .block-content__product {
  background: #f9fafb;
  border-radius: 19px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
  align-items: center;
  margin-top: 15px;
}
.p-product .block-content__product img {
  font-style: 0;
  border-radius: 15px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.05);
}
.p-product .block-content__product p {
  flex-grow: 1;
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  .p-product .block-content__product {
    flex-direction: row;
    padding: 19px 25px;
    gap: 25px;
  }
  .p-product .block-content__product img {
    width: 45%;
  }
}
.p-product .after-service--orec {
  background: #007a59;
}
.p-product .after-service__message--orec {
  color: #007a59;
}
.p-product .after-service__list--orec {
  color: #007a59;
  border: 1px solid #007a59;
}
.p-product .after-service__list--orec ul li::before {
  background: url(../img/product/after-service-check-orec.webp) no-repeat center center/contain;
}
.p-product .after-service__list-heading--orec {
  color: #007a59;
}
.p-product .product-list__heading {
  color: #133761;
  position: relative;
  padding-left: 30px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 700;
}
.p-product .product-list__heading::before {
  position: absolute;
  content: "";
  background: url(../img/common/heading-icon.webp) no-repeat center center/contain;
  width: 22px;
  height: 9px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .p-product .product-list__heading {
    padding-left: 42px;
  }
  .p-product .product-list__heading::before {
    width: 28px;
    height: 13px;
  }
}
.p-product .product-list__heading--orec {
  color: #007a59;
}
.p-product .product-list__heading--orec::before {
  background: url(../img/product/heading-icon-orec.webp) no-repeat center center/contain;
}
.p-product .product-list__text {
  margin-top: 20px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .p-product .product-list__text {
    font-size: 1.5rem;
    margin-top: 30px;
  }
}
.p-product .product-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px 15px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-product .product-cards {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 38px;
  }
}
@media (min-width: 1024px) {
  .p-product .product-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 25px;
  }
}
.p-product .product-card {
  background: #f9fafb;
  border-radius: 20px;
  padding: 18px;
}
@media (min-width: 768px) {
  .p-product .product-card {
    border-radius: 32px;
    padding: 20px 30px 28px;
    transition: all 0.4s;
  }
  .p-product .product-card:hover:where(a) {
    opacity: 0.7;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 1024px) {
  .p-product .product-card {
    padding: 15px 15px 25px;
  }
}
@media (min-width: 1440px) {
  .p-product .product-card {
    padding: 20px 30px 28px;
  }
}
.p-product .product-card--orec {
  background: #fff;
}
.p-product .product-card__thumb {
  overflow: hidden;
  aspect-ratio: 3/2;
}
.p-product .product-card__thumb img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .p-product .product-card__thumb img {
    border-radius: 32px;
  }
}
.p-product .product-card__logo {
  text-align: center;
  margin-top: 10px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 15px;
}
.p-product .product-card__logo img {
  width: 200px;
}
.p-product .product-card__body {
  margin-top: 15px;
}
.p-product .product-card__category {
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 1440px) {
  .p-product .product-card__category {
    font-size: 1.6rem;
  }
}
.p-product .product-card__title {
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  font-weight: 700;
  margin-top: 5px;
}
@media (min-width: 1024px) {
  .p-product .product-card__title {
    margin-top: 10px;
    font-size: 2.5rem;
  }
}
@media (min-width: 1440px) {
  .p-product .product-card__title {
    font-size: clamp(2.2rem, 2.5vw, 2.4rem);
  }
}
.p-product .product-card__text {
  margin-top: 15px;
}
.p-product .product-card__specs {
  display: flex;
  gap: 10px;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #d9d9d9;
}
.p-product .product-card__spec {
  flex: 1;
}
.p-product .product-card__spec-value {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (min-width: 1440px) {
  .p-product .product-card__spec-value {
    font-size: 1.8rem;
  }
}
.p-product .product-card__spec-label {
  font-size: 1.2rem;
  display: block;
  line-height: 1.5;
  margin-top: 3px;
}
.p-product .product-card__price {
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  font-weight: 700;
  padding-top: 15px;
  border-top: 1px solid #d9d9d9;
}
@media (min-width: 1024px) {
  .p-product .product-card__price {
    padding-top: 25px;
    font-size: 2.5rem;
  }
}
@media (min-width: 1440px) {
  .p-product .product-card__price {
    font-size: clamp(2.2rem, 2.8vw, 3rem);
  }
}
.p-product .product-card__tax {
  font-size: 1.5rem;
  color: #6d6d6d;
}
@media (min-width: 768px) {
  .p-product .product-card__tax {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-product .product-card__tax {
    font-size: 1.7rem;
  }
}
.p-product .mower-map__image-wrapper {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
  padding: 15px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-product .mower-map__image-wrapper {
    padding: 190px 170px 140px 140px;
    margin-top: 30px;
  }
}
@media (min-width: 1024px) {
  .p-product .mower-map__image-wrapper {
    padding: 170px 130px 140px;
  }
}
@media (min-width: 1440px) {
  .p-product .mower-map__image-wrapper {
    padding: 140px 120px;
  }
}
.p-product .mower-map__image img {
  display: block;
  width: 100%;
  height: auto;
}
.p-product .mower-map__label {
  position: absolute;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}
@media (min-width: 768px) {
  .p-product .mower-map__label {
    display: block;
  }
}
.p-product .mower-map__label-title {
  font-weight: 700;
  color: #133761;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .p-product .mower-map__label-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .p-product .mower-map__label-title {
    font-size: 1.7rem;
  }
}
.p-product .mower-map__label-text {
  margin-top: 5px;
  font-size: 1.3rem;
  display: none;
}
@media (min-width: 768px) {
  .p-product .mower-map__label-text {
    display: block;
  }
}
@media (min-width: 768px) {
  .p-product .mower-map__label--1 {
    top: 15%;
    left: 3%;
    max-width: 170px;
  }
}
@media (min-width: 1024px) {
  .p-product .mower-map__label--1 {
    top: 15%;
    left: 3%;
    max-width: 170px;
  }
}
@media (min-width: 1440px) {
  .p-product .mower-map__label--1 {
    top: 10%;
    left: 3%;
    max-width: 200px;
  }
}
@media (min-width: 768px) {
  .p-product .mower-map__label--2 {
    top: 5%;
    left: 27%;
    max-width: 170px;
  }
}
@media (min-width: 1024px) {
  .p-product .mower-map__label--2 {
    top: 7%;
    left: 23%;
    max-width: 227px;
  }
}
@media (min-width: 1440px) {
  .p-product .mower-map__label--2 {
    top: 6%;
    left: 21%;
    max-width: 250px;
  }
}
@media (min-width: 768px) {
  .p-product .mower-map__label--3 {
    top: 3%;
    left: 52%;
    max-width: 250px;
  }
}
@media (min-width: 1024px) {
  .p-product .mower-map__label--3 {
    top: 8%;
    left: 55%;
    max-width: 310px;
  }
}
@media (min-width: 1440px) {
  .p-product .mower-map__label--3 {
    top: 4%;
    left: 53%;
    max-width: 256px;
  }
}
@media (min-width: 768px) {
  .p-product .mower-map__label--4 {
    top: 27%;
    right: 2%;
    max-width: 227px;
  }
}
@media (min-width: 1024px) {
  .p-product .mower-map__label--4 {
    top: 26%;
    right: 2%;
    max-width: 220px;
  }
}
@media (min-width: 1440px) {
  .p-product .mower-map__label--4 {
    top: 22%;
    right: 3%;
    max-width: 250px;
  }
}
@media (min-width: 768px) {
  .p-product .mower-map__label--5 {
    bottom: 6%;
    left: 8%;
    max-width: 280px;
  }
}
@media (min-width: 1024px) {
  .p-product .mower-map__label--5 {
    bottom: 6%;
    left: 22%;
    max-width: 280px;
  }
}
@media (min-width: 1440px) {
  .p-product .mower-map__label--5 {
    bottom: 7%;
    left: 27%;
    max-width: 323px;
  }
}
.p-product .mower-map__note {
  padding: 16px;
  border: 1px solid #133761;
}
@media (min-width: 768px) {
  .p-product .mower-map__note {
    position: absolute;
    padding: 10px 16px;
    right: 3%;
    bottom: 5%;
    left: auto;
    transform: translateX(0%);
  }
}
@media (min-width: 1024px) {
  .p-product .mower-map__note {
    right: 2%;
    bottom: 5%;
  }
}
@media (min-width: 1440px) {
  .p-product .mower-map__note {
    right: 4%;
    bottom: 7%;
  }
}
.p-product .mower-map__note-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #133761;
  text-align: center;
}
@media (min-width: 768px) {
  .p-product .mower-map__note-text {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .p-product .mower-map__note-text {
    font-size: 1.5rem;
  }
}
.p-product .mower-map__items {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-product .mower-map__items {
    display: none;
  }
}
.p-product .mower-map__item {
  margin-bottom: 20px;
}
.p-product .mower-map__item-title {
  font-weight: 700;
  color: #133761;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-product .mower-map__item-title span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #133761;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.p-product .mower-map__item-text {
  font-size: 1.4rem;
}
.p-product .message__heading-wrapper {
  text-align: center;
}
.p-product .message__heading-deco {
  width: 50px;
}
.p-product .message__heading-deco--orec {
  width: 67px;
}
.p-product .message__heading {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 700;
  color: #133761;
  line-height: 1.7;
  margin-top: 15px;
}
.p-product .message__heading--orec {
  color: #007a59;
}
.p-product .message__text {
  margin-top: 25px;
  text-align: center;
}
.p-product .message__image {
  margin-top: 30px;
  min-height: 200px;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .p-product .message__image {
    margin-top: 53px;
  }
}
.p-product .message__image--orec {
  -o-object-position: 10% center;
  object-position: 10% center;
}
.p-product .feature-swiper {
  margin-top: 30px;
  position: relative;
  padding-left: 15px;
}
@media (min-width: 500px) {
  .p-product .feature-swiper {
    padding-left: 20px;
  }
}
@media (min-width: 768px) {
  .p-product .feature-swiper {
    padding-left: 30px;
  }
}
@media (min-width: 1024px) {
  .p-product .feature-swiper {
    padding-left: 5%;
    margin-top: 50px;
  }
}
@media (min-width: 1440px) {
  .p-product .feature-swiper {
    padding-left: 10%;
  }
}
@media (min-width: 1600px) {
  .p-product .feature-swiper {
    padding-left: 18%;
  }
}
.p-product .feature__item-image {
  border-radius: 16px;
}
.p-product .feature__item-heading {
  font-size: clamp(2rem, 2.5vw, 2.7rem);
  font-weight: 700;
  color: #133761;
  line-height: 1.7;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .p-product .feature__item-heading {
    margin-top: 19px;
  }
}
.p-product .feature__item-text {
  font-size: 1.4rem;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .p-product .feature__item-text {
    font-size: 1.5rem;
    margin-top: 13px;
  }
}
.p-product .movie iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .p-product .movie iframe {
    margin-top: 37px;
    max-height: 85svh;
    border-radius: 20px;
  }
}
.p-product .movie--orec {
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .p-product .movie--orec {
    margin-bottom: 160px;
  }
}
@media (min-width: 1024px) {
  .p-product .movie--orec {
    margin-bottom: 200px;
  }
}
.p-product .orec-feature__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .p-product .orec-feature__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
  }
}
@media (min-width: 1024px) {
  .p-product .orec-feature__items {
    gap: 30px;
  }
}
@media (min-width: 1440px) {
  .p-product .orec-feature__items {
    gap: 65px;
    margin-top: 50px;
  }
}
.p-product .orec-feature__item img {
  border-radius: 15px;
}
.p-product .orec-feature__item-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #007a59;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-product .orec-feature__item-heading {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-product .orec-feature__item-heading {
    font-size: 2rem;
    margin-top: 33px;
  }
}
@media (min-width: 1440px) {
  .p-product .orec-feature__item-heading {
    font-size: 2.2rem;
  }
}
.p-product .orec-feature__item-text {
  font-size: 1.4rem;
  padding-top: 10px;
  border-top: 1px solid #007a59;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .p-product .orec-feature__item-text {
    padding-top: 30px;
    margin-top: 20px;
  }
}
@media (min-width: 1024px) {
  .p-product .orec-feature__item-text {
    font-size: 1.5rem;
  }
}
.p-product .faq {
  padding-bottom: 90px;
}
@media (min-width: 768px) {
  .p-product .faq {
    padding-bottom: 130px;
  }
}
.p-product .wood-stove-feature__cards {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) {
  .p-product .wood-stove-feature__cards {
    margin-top: 48px;
    gap: 22px;
  }
}
.p-product .wood-stove-feature-card {
  grid-template-columns: 1fr;
  padding: 20px 15px;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
}
@media (min-width: 768px) {
  .p-product .wood-stove-feature-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    border-radius: 30px;
    padding: 15px;
  }
}
@media (min-width: 1024px) {
  .p-product .wood-stove-feature-card {
    padding: 20px 30px;
    grid-template-columns: 243px 1fr;
  }
}
.p-product .wood-stove-feature-card__media {
  border-radius: 16px;
  overflow: hidden;
  align-self: center;
}
.p-product .wood-stove-feature-card__media img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.p-product .wood-stove-feature-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .p-product .wood-stove-feature-card__head {
    margin-top: 0;
  }
}
.p-product .wood-stove-feature-card__tag {
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #133761;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-product .wood-stove-feature-card__tag {
    font-size: 1.4rem;
  }
}
.p-product .wood-stove-feature-card__title {
  margin: 0;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.4;
  color: #133761;
}
@media (min-width: 768px) {
  .p-product .wood-stove-feature-card__title {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .p-product .wood-stove-feature-card__title {
    font-size: 2.2rem;
  }
}
.p-product .wood-stove-feature-card__lead {
  font-size: 1.4rem;
  margin-bottom: 5px;
  margin-top: 14px;
}
.p-product .wood-stove-flow {
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  .p-product .wood-stove-flow {
    padding-bottom: 100px;
  }
}
.p-product .product-lineup {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .p-product .product-lineup {
    padding-bottom: 80px;
  }
}
.p-product .product-lineup__list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .p-product .product-lineup__list {
    margin-top: 30px;
    gap: 42px;
  }
}
.p-product .product-lineup__item {
  border: 2px dashed #133761;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  background: #fff;
}
.p-product .product-lineup__item img {
  max-width: 400px;
}
@media (min-width: 1024px) {
  .p-product .product-lineup__item {
    flex-direction: row;
    padding: 40px 30px;
    gap: 40px;
    border-radius: 24px;
  }
  .p-product .product-lineup__item img {
    max-width: 600px;
  }
}
@media (min-width: 1440px) {
  .p-product .product-lineup__item {
    padding: 55px 40px;
    gap: 55px;
  }
}
@media (min-width: 1024px) {
  .p-product .product-lineup__image {
    flex: 0 0 35%;
  }
}
@media (min-width: 1440px) {
  .p-product .product-lineup__image {
    flex: 0 0 40%;
  }
}
.p-product .product-lineup__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-product .product-lineup__body {
  flex: 1;
  width: 100%;
}
.p-product .product-lineup__title {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #133761;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  margin: 0;
}
@media (min-width: 768px) {
  .p-product .product-lineup__title {
    font-size: clamp(1.8rem, 1.5vw, 2.2rem);
    padding: 12px 20px;
  }
}
.p-product .product-lineup__desc {
  margin-top: 15px;
  padding-left: 1.2em;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-product .product-lineup__desc {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}
.p-product .product-lineup__desc li {
  list-style: disc;
}
.p-product .product-lineup__desc li + li {
  margin-top: 5px;
}
.p-product .product-lineup__spec {
  margin-top: 15px;
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3rem;
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .p-product .product-lineup__spec {
    margin-top: 20px;
    font-size: 1.4rem;
  }
}
.p-product .product-lineup__spec th,
.p-product .product-lineup__spec td {
  padding: 6px 12px;
  text-align: left;
  display: block;
  width: 100%;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 768px) {
  .p-product .product-lineup__spec th,
  .p-product .product-lineup__spec td {
    padding: 10px 14px;
    display: table-cell;
    width: auto;
    border: 1px solid #ddd;
  }
}
.p-product .product-lineup__spec th {
  white-space: nowrap;
  background: #f5f5f5;
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-product .product-lineup__spec th {
    font-weight: 500;
  }
}
@media (min-width: 768px) {
  .p-product .product-lineup__spec td {
    text-align: right;
  }
}

.p-maintenance .consultation {
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-maintenance .consultation {
    padding-bottom: 100px;
  }
}
.p-maintenance .consultation__cards {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) {
  .p-maintenance .consultation__cards {
    margin-top: 48px;
    gap: 22px;
  }
}
.p-maintenance .consultation-card {
  grid-template-columns: 1fr;
  padding: 20px 15px;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
}
@media (min-width: 768px) {
  .p-maintenance .consultation-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    border-radius: 30px;
    padding: 15px;
  }
}
@media (min-width: 1024px) {
  .p-maintenance .consultation-card {
    padding: 20px 30px;
    grid-template-columns: 243px 1fr;
  }
}
.p-maintenance .consultation-card__media {
  border-radius: 16px;
  overflow: hidden;
  align-self: center;
}
.p-maintenance .consultation-card__media img {
  width: 100%;
  aspect-ratio: 5/4;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .p-maintenance .consultation-card__media img {
    height: 160px;
  }
}
@media (min-width: 1024px) {
  .p-maintenance .consultation-card__media img {
    height: 195px;
  }
}
.p-maintenance .consultation-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .p-maintenance .consultation-card__head {
    margin-top: 0;
  }
}
.p-maintenance .consultation-card__tag {
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #133761;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-maintenance .consultation-card__tag {
    font-size: 1.4rem;
  }
}
.p-maintenance .consultation-card__title {
  margin: 0;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.4;
  color: #133761;
}
@media (min-width: 768px) {
  .p-maintenance .consultation-card__title {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .p-maintenance .consultation-card__title {
    font-size: 2.2rem;
  }
}
.p-maintenance .consultation-card__dl {
  margin-top: 14px;
}
.p-maintenance .consultation-card__row {
  display: grid;
  padding: 6px 0;
  grid-template-columns: 78px 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .p-maintenance .consultation-card__row {
    grid-template-columns: 90px 1fr;
    gap: 14px;
  }
}
.p-maintenance .consultation-card__row dt {
  font-weight: 700;
  color: #133761;
  position: relative;
  padding-left: 15px;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .p-maintenance .consultation-card__row dt {
    font-size: 1.6rem;
    padding-left: 18px;
  }
}
.p-maintenance .consultation-card__row dt::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.p-maintenance .consultation-card__row dd {
  margin: 0;
  line-height: 1.7;
  color: #333;
  font-size: 1.4rem;
}
.p-maintenance .maintenance-flow {
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-maintenance .maintenance-flow {
    padding-bottom: 110px;
    padding-top: 30px;
  }
}

.p-rental {
  /* 上に乗るラベル */
  /* リスト */
}
.p-rental .rental-products__cards {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) {
  .p-rental .rental-products__cards {
    margin-top: 48px;
    gap: 22px;
  }
}
.p-rental .rental-products-card {
  grid-template-columns: 1fr;
  padding: 20px 15px;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
}
@media (min-width: 768px) {
  .p-rental .rental-products-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    border-radius: 30px;
    padding: 15px;
  }
}
@media (min-width: 1024px) {
  .p-rental .rental-products-card {
    padding: 20px 30px;
    grid-template-columns: 243px 1fr;
  }
}
.p-rental .rental-products-card__media {
  border-radius: 16px;
  overflow: hidden;
}
.p-rental .rental-products-card__media img {
  width: 100%;
  aspect-ratio: 5/4;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .p-rental .rental-products-card__media img {
    height: 160px;
  }
}
@media (min-width: 1024px) {
  .p-rental .rental-products-card__media img {
    height: 195px;
  }
}
.p-rental .rental-products-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .p-rental .rental-products-card__head {
    margin-top: 0;
  }
}
.p-rental .rental-products-card__tag {
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #133761;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-rental .rental-products-card__tag {
    font-size: 1.4rem;
  }
}
.p-rental .rental-products-card__title {
  margin: 0;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.4;
  color: #133761;
}
@media (min-width: 768px) {
  .p-rental .rental-products-card__title {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .p-rental .rental-products-card__title {
    font-size: 2.2rem;
  }
}
.p-rental .rental-products-card__dl {
  margin-top: 14px;
}
.p-rental .rental-products-card__dl p {
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.p-rental .rental-products-card__row {
  display: flex;
  flex-direction: column;
  padding: 6px 0 0;
}
@media (min-width: 768px) {
  .p-rental .rental-products-card__row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 14px;
  }
  .p-rental .rental-products-card__row--l {
    grid-template-columns: 175px 1fr;
  }
}
.p-rental .rental-products-card__row dt {
  font-weight: 700;
  color: #133761;
  position: relative;
  padding-left: 15px;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .p-rental .rental-products-card__row dt {
    font-size: 1.6rem;
    padding-left: 18px;
  }
}
.p-rental .rental-products-card__row dt::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.p-rental .rental-products-card__row dd {
  margin: 0;
  line-height: 1.7;
  color: #333;
  font-size: 1.4rem;
}
.p-rental .rental-flow {
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  .p-rental .rental-flow {
    padding-bottom: 100px;
  }
}
.p-rental .rental-products-card__separator {
  display: block;
  margin-top: 0.5em;
}
.p-rental .notice__box {
  position: relative;
  border: 1px solid #133761;
  border-radius: 18px;
  padding: 40px 15px 15px;
  background: #fff;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .p-rental .notice__box {
    padding: 50px 28px 23px;
    border-radius: 22px;
  }
}
@media (min-width: 1024px) {
  .p-rental .notice__box {
    margin-top: 90px;
  }
}
.p-rental .rental-notice {
  text-align: center;
}
.p-rental .rental-notice__box {
  border: 2px solid #133761;
  border-radius: 18px;
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .p-rental .rental-notice__box {
    border-radius: 22px;
    padding: 35px 40px;
  }
}
.p-rental .rental-notice__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  color: #133761;
  font-weight: 700;
}
.p-rental .rental-notice__label::before, .p-rental .rental-notice__label::after {
  content: "";
  display: inline-block;
  width: 45px;
  height: 1px;
  background: #133761;
}
@media (min-width: 768px) {
  .p-rental .rental-notice__label {
    font-size: 1.8rem;
    gap: 17px;
  }
  .p-rental .rental-notice__label::before, .p-rental .rental-notice__label::after {
    width: 55px;
  }
}
.p-rental .rental-notice__heading {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 10px;
  font-size: clamp(2.6rem, 3vw, 3.8rem);
  color: #133761;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-rental .rental-notice__heading {
    margin-top: 21px;
  }
  .p-rental .rental-notice__heading br {
    display: none;
  }
}
.p-rental .rental-notice__text {
  font-size: 1.5rem;
  margin-top: 15px;
  line-height: 1.8;
  text-align: left;
}
.p-rental .rental-notice__text br {
  display: none;
}
@media (min-width: 768px) {
  .p-rental .rental-notice__text br {
    display: block;
  }
}
@media (min-width: 768px) {
  .p-rental .rental-notice__text {
    font-size: 1.7rem;
    margin-top: 20px;
    text-align: center;
  }
}
.p-rental .notice__label {
  position: absolute;
  top: -16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #133761;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .p-rental .notice__label {
    left: 24px;
    font-size: 15px;
    padding: 10px 18px;
  }
}
.p-rental .notice__list {
  margin: 0;
  padding-left: 1.2em;
}
.p-rental .notice__list li {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
  list-style: disc;
}
@media (min-width: 768px) {
  .p-rental .notice__list li {
    font-size: 15px;
  }
}

.p-company {
  /* 右：画像 */
}
.p-company .values__items {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 30px;
}
@media (min-width: 768px) {
  .p-company .values__items {
    flex-direction: row;
    gap: 15px;
    margin-top: 40px;
  }
}
@media (min-width: 1024px) {
  .p-company .values__items {
    gap: 23px;
  }
}
.p-company .values__item {
  flex: 1;
}
.p-company .values__item img {
  border-radius: 16px;
}
.p-company .values__item-heading {
  font-size: 1.7rem;
  font-weight: 700;
  color: #133761;
  margin-top: 7px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-company .values__item-heading {
    margin-top: 13px;
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-company .values__item-heading {
    font-size: 1.9rem;
  }
}
.p-company .values__item-text {
  font-size: 1.4rem;
  margin-top: 7px;
}
.p-company .company-info__table {
  margin-top: 30px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-company .company-info__table {
    margin-top: 59px;
    padding-bottom: 100px;
  }
}
.p-company .company-info__table-row {
  margin: 0;
}
@media (min-width: 768px) {
  .p-company .company-info__table-row {
    display: grid;
    grid-template-columns: 180px 1fr;
  }
}
@media (min-width: 1024px) {
  .p-company .company-info__table-row {
    grid-template-columns: 220px 1fr;
  }
}
.p-company .company-info__table-row + .company-info__table-row {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .p-company .company-info__table-row + .company-info__table-row {
    margin-top: 0;
  }
}
.p-company .company-info__table-head {
  padding: 15px 15px 0;
  font-weight: 700;
  color: #133761;
  border-top: 2px solid #133761;
}
@media (min-width: 768px) {
  .p-company .company-info__table-head {
    padding: 25px;
  }
}
.p-company .company-info__table-body {
  padding-inline: 15px;
  margin-top: 6px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-company .company-info__table-body {
    border-top: 2px solid #b1b1b1;
    padding: 25px;
    margin-top: 0;
  }
}
.p-company .company-info__shop p, .p-company .company-info__shop a {
  line-height: 1.6;
}
.p-company .company-info__shop + .company-info__shop {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .p-company .company-info__shop + .company-info__shop {
    margin-top: 40px;
  }
}
.p-company .company-info__map-link {
  color: #133761;
  text-decoration: underline;
  font-weight: 400;
}
.p-company .company-info__map {
  overflow: hidden;
  margin-top: 12px;
}
.p-company .company-info__map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 7/3;
  border: 0;
}
.p-company .shop-info__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .p-company .shop-info__content {
    flex-direction: row;
    gap: 25px;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .p-company .shop-info__content {
    gap: 50px;
    padding-top: 50px;
  }
}
.p-company .shop-info__content + .shop-info__content {
  margin-top: 51px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
@media (min-width: 768px) {
  .p-company .shop-info__content + .shop-info__content {
    padding-top: 50px;
  }
}
@media (min-width: 1024px) {
  .p-company .shop-info__content + .shop-info__content {
    margin-top: 70px;
  }
}
@media (min-width: 768px) {
  .p-company .shop-info__text {
    flex: 5;
    min-width: 320px;
  }
}
.p-company .shop-info__name {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.6;
  font-weight: 700;
}
.p-company .shop-info__desc {
  margin-top: 22px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .p-company .shop-info__desc {
    font-size: 1.5rem;
  }
}
.p-company .shop-info__list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 22px;
}
@media (min-width: 768px) {
  .p-company .shop-info__list {
    grid-template-columns: 92px 1fr;
  }
}
.p-company .shop-info__term,
.p-company .shop-info__detail {
  padding: 14px 0;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .p-company .shop-info__term,
  .p-company .shop-info__detail {
    padding: 16px 0;
    font-size: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}
.p-company .shop-info__term {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-bottom: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
@media (min-width: 768px) {
  .p-company .shop-info__term {
    padding-bottom: 16px;
  }
}
.p-company .shop-info__detail {
  margin: 0;
  padding-top: 0;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-company .shop-info__detail {
    padding-top: 16px;
  }
}
.p-company .shop-info__link {
  display: inline-block;
  margin-top: 6px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-company .shop-info__image {
  width: 100%;
}
@media (min-width: 768px) {
  .p-company .shop-info__image {
    flex: 6;
  }
}
.p-company .shop-info__image-main {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}
@media (min-width: 768px) {
  .p-company .shop-info__image-main {
    border-radius: 22px;
  }
}
.p-company .shop-info__image-main img {
  display: block;
  width: 100%;
  height: auto;
}
.p-company .shop-info__thumbs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (min-width: 768px) {
  .p-company .shop-info__thumbs {
    margin-top: 18px;
    gap: 14px;
  }
}
.p-company .shop-info__thumb {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}
@media (min-width: 768px) {
  .p-company .shop-info__thumb {
    border-radius: 18px;
  }
}
.p-company .shop-info__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-inquiry {
  /* フォーム全体 */
  /* Chromeの自動入力背景 */
  /* 必須・任意ラベル */
  /* 入力項目の枠 */
  /* ラジオボタン */
  /* プライバシーボックス */
  /* 同意チェックボックス */
  /* 送信ボタン */
  /* ローディング */
}
.p-inquiry .inquiry {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .p-inquiry .inquiry {
    margin-top: 50px;
    max-width: 1000px;
    margin-inline: auto;
  }
}
.p-inquiry .inquiry__info {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: 20px;
}
.p-inquiry .inquiry__info span {
  background: #ccc;
  height: 1px;
  width: 80%;
  align-self: center;
}
@media (min-width: 768px) {
  .p-inquiry .inquiry__info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .p-inquiry .inquiry__info span {
    background: #ccc;
    height: 150px;
    width: 1px;
  }
}
.p-inquiry .inquiry__info-wrapper--tel {
  flex: 1;
  padding: 20px;
}
@media (min-width: 768px) {
  .p-inquiry .inquiry__info-wrapper--tel {
    padding: 30px 20px;
  }
}
@media (min-width: 1024px) {
  .p-inquiry .inquiry__info-wrapper--tel {
    padding: 30px 50px;
  }
}
.p-inquiry .inquiry__info-wrapper--line {
  text-align: center;
  flex: 1;
  padding: 20px 20px 30px;
}
@media (min-width: 768px) {
  .p-inquiry .inquiry__info-wrapper--line {
    padding: 30px 20px;
  }
}
@media (min-width: 1024px) {
  .p-inquiry .inquiry__info-wrapper--line {
    padding: 30px 50px;
  }
}
.p-inquiry .inquiry__info-heading {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
.p-inquiry .inquiry__info-tel {
  font-size: 3rem;
  font-weight: 900;
  margin-top: 10px;
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .p-inquiry .inquiry__info-tel {
    font-size: 3.5rem;
  }
}
.p-inquiry .inquiry__info-time {
  font-size: 1.3rem;
  display: block;
  margin-top: 10px;
  line-height: 1.5;
  text-align: center;
}
.p-inquiry .inquiry__info-text {
  font-size: 1.3rem;
  margin-top: 20px;
  line-height: 1.5;
}
.p-inquiry .inquiry__info-button {
  background: #45c249;
  border-radius: 7px;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  padding: 10px 30px;
  margin-top: 15px;
  position: relative;
}
@media (min-width: 768px) {
  .p-inquiry .inquiry__info-button {
    padding: 10px 25px;
    margin-top: 10px;
  }
  .p-inquiry .inquiry__info-button:hover .info-button-arrow-icon {
    transform: translate(4px, -50%);
  }
}
@media (min-width: 1024px) {
  .p-inquiry .inquiry__info-button {
    font-size: 1.6rem;
    padding: 10px 30px;
  }
}
.p-inquiry .inquiry__text {
  font-size: 1.4rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-inquiry .inquiry__text {
    font-size: 1.5rem;
  }
}
.p-inquiry .inquiry__form {
  border-radius: 15px;
  background: #fff;
  padding: 30px 15px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .p-inquiry .inquiry__form {
    padding: 50px;
    margin-top: 70px;
  }
}
@media (min-width: 1024px) {
  .p-inquiry .inquiry__form {
    padding: 70px 80px 80px;
  }
}
.p-inquiry .inquiry__form-heading {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  text-align: center;
}
.p-inquiry .inquiry__form-text {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-inquiry .inquiry__form-text {
    margin-top: 30px;
    text-align: center;
  }
}
.p-inquiry .inquiry__form-links {
  font-size: 14px;
  text-align: center;
}
.p-inquiry .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .p-inquiry .wpcf7-form {
    gap: 30px;
    margin-top: 50px;
  }
}
.p-inquiry .form-group label,
.p-inquiry .form-group .form-label {
  font-weight: 700;
  font-size: 16px;
  color: #333;
}
.p-inquiry .form-group input,
.p-inquiry .form-group textarea {
  padding: 5px 10px;
  font-size: 1.6rem;
  background: #fff;
}
.p-inquiry .form-group input:focus,
.p-inquiry .form-group textarea:focus {
  outline: 1px solid #333;
  background: #fff;
}
.p-inquiry .form-group input::-webkit-input-placeholder,
.p-inquiry .form-group textarea::-webkit-input-placeholder {
  color: #afaeae;
}
.p-inquiry .form-group input::-moz-placeholder,
.p-inquiry .form-group textarea::-moz-placeholder {
  color: #afaeae;
}
.p-inquiry .form-group input:-ms-input-placeholder,
.p-inquiry .form-group textarea:-ms-input-placeholder {
  color: #afaeae;
}
.p-inquiry .form-group input::-ms-input-placeholder,
.p-inquiry .form-group textarea::-ms-input-placeholder {
  color: #afaeae;
}
.p-inquiry .form-group input::placeholder,
.p-inquiry .form-group textarea::placeholder {
  color: #afaeae;
}
.p-inquiry input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}
.p-inquiry .required,
.p-inquiry .optional {
  color: #fff;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 9999px;
  display: inline-block;
  margin-left: 10px;
  line-height: 14px;
}
.p-inquiry .optional {
  background: #a2a2a2;
}
.p-inquiry .required {
  background: #133761;
}
.p-inquiry .wpcf7-form-control {
  border: 1px solid #dedede;
  border-radius: 3px;
  margin-top: 10px;
  width: 100%;
  min-height: 40px;
}
@media (min-width: 768px) {
  .p-inquiry .wpcf7-form-control {
    min-height: 50px;
  }
}
.p-inquiry .birth-year-group p {
  display: flex;
  gap: 3px;
  width: 100%;
}
.p-inquiry .birth-year-group span {
  flex: 1;
}
.p-inquiry .wpcf7-radio {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: none;
}
@media (min-width: 768px) {
  .p-inquiry .wpcf7-radio {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.p-inquiry .wpcf7-radio .wpcf7-list-item {
  margin: 0;
  display: block;
}
.p-inquiry .wpcf7-radio label {
  font-weight: 500;
  cursor: pointer;
}
.p-inquiry .wpcf7-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  overflow: hidden;
}
.p-inquiry .wpcf7-radio .wpcf7-list-item-label {
  position: relative;
  padding-left: 28px;
  line-height: 1.2;
  display: inline-block;
}
.p-inquiry .wpcf7-radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  border: 1px solid #333;
  border-radius: 50%;
  background: #fff;
}
.p-inquiry .wpcf7-radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(4px, -50%) scale(0);
  background: #133761;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.p-inquiry .wpcf7-radio input[type=radio]:checked ~ .wpcf7-list-item-label::after {
  transform: translate(4px, -50%) scale(1);
}
.p-inquiry .inquiry-privacy {
  height: 160px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 5px 10px;
  background: #fff;
}
.p-inquiry .inquiry-privacy p {
  font-size: 13px;
  line-height: 1.5;
}
.p-inquiry .cf7-accept-check {
  margin-top: 20px;
  text-align: center;
}
.p-inquiry .cf7-accept-check .wpcf7-form-control {
  border: none;
}
.p-inquiry .cf7-accept-check label {
  font-weight: 700;
}
.p-inquiry .cf7-accept-check a {
  text-decoration: underline;
  font-weight: 700;
}
.p-inquiry .cf7-accept-check input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 3px;
  position: relative;
  vertical-align: middle;
  display: inline-block;
  margin-right: 8px;
  transition: all 0.3s ease;
  transform: scale(1.5);
}
.p-inquiry .cf7-accept-check input:checked {
  background-color: #133761;
  border: 1px solid #133761;
}
.p-inquiry .cf7-accept-check input:checked::after {
  content: "";
  position: absolute;
  background: url(../img/inquiry/check.webp) no-repeat center center/contain;
  top: 50%;
  left: 0.3px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
}
.p-inquiry .form-submit {
  text-align: center;
}
.p-inquiry .wpcf7-submit {
  background: #133761;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 9999px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 100px;
  cursor: pointer;
  transition: opacity 0.4s;
}
.p-inquiry .wpcf7-submit:disabled {
  background: #ccc;
}
.p-inquiry .wpcf7-submit:hover {
  opacity: 0.9;
}
.p-inquiry .wpcf7-spinner {
  display: block;
}
.p-inquiry .contact-thanks {
  margin-block: 50px;
}
@media (min-width: 768px) {
  .p-inquiry .contact-thanks {
    margin-block: 100px;
  }
}
@media (min-width: 768px) {
  .p-inquiry .inquiry-thanks__inner {
    max-width: 830px;
  }
}
.p-inquiry .inquiry-thanks__heading {
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-inquiry .inquiry-thanks__heading {
    font-size: 2rem;
  }
}
.p-inquiry .inquiry-thanks__text {
  margin-top: 30px;
}
.p-inquiry .inquiry-thanks__button {
  text-align: center;
  margin-top: 50px;
}
.p-inquiry .inquiry-thanks__button a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: #133761;
  border-radius: 9999px;
  padding: 15px 40px;
  margin-top: 25px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-inquiry .inquiry-thanks__button a {
    transition: opacity 0.4s;
    margin-top: 100px;
  }
  .p-inquiry .inquiry-thanks__button a:hover {
    opacity: 0.7;
  }
}
@media (min-width: 1024px) {
  .p-inquiry .inquiry-thanks__button a {
    font-size: 1.8rem;
  }
}

.p-recruit {
  /* =====================
  recruit-outline
  ===================== */
}
.p-recruit .work-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 18px;
}
@media (min-width: 768px) {
  .p-recruit .work-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .p-recruit .work-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-recruit .work-card {
  padding: 15px;
  background: #fff;
  border-radius: 30px;
  border: 1px solid #ccc;
}
@media (min-width: 768px) {
  .p-recruit .work-card {
    padding: 20px 15px;
  }
}
@media (min-width: 1024px) {
  .p-recruit .work-card {
    padding: 20px 15px 26px;
  }
}
.p-recruit .work-card__image {
  aspect-ratio: 33/20;
}
.p-recruit .work-card__image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 16px;
}
.p-recruit .work-card__title {
  color: #133761;
  font-weight: 700;
  font-size: 1.6rem;
  margin-top: 10px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .p-recruit .work-card__title {
    height: 4.5rem;
  }
}
@media (min-width: 1024px) {
  .p-recruit .work-card__title {
    font-size: 1.8rem;
    height: 5rem;
  }
}
.p-recruit .work-card__text {
  font-size: 1.4rem;
  margin-top: 9px;
  line-height: 1.7;
}
.p-recruit .recruit-flow__list {
  margin-top: 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .p-recruit .recruit-flow__list {
    margin-top: 28px;
    gap: 30px;
  }
}
.p-recruit .recruit-flow__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: #1b3b5a;
}
@media (min-width: 768px) {
  .p-recruit .recruit-flow__list::before {
    left: 75px;
    transform: translateX(0%);
  }
}
.p-recruit .recruit-flow__item {
  position: relative;
}
.p-recruit .recruit-flow__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(27, 59, 90, 0.45);
  border-radius: 18px;
  background: #fff;
  padding: 16px 15px 20px;
}
@media (min-width: 768px) {
  .p-recruit .recruit-flow__card {
    padding: 20px;
    border-radius: 20px;
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .p-recruit .recruit-flow__card {
    gap: 37px;
  }
}
.p-recruit .recruit-flow__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 9999px;
  background: #133761;
  color: #fff;
  font-weight: 700;
  font-size: 1.7rem;
  width: 90px;
  height: 36px;
}
@media (min-width: 768px) {
  .p-recruit .recruit-flow__time {
    width: 110px;
    flex: 0 0 110px;
  }
}
@media (min-width: 1024px) {
  .p-recruit .recruit-flow__time {
    height: 49px;
    font-size: 2.2rem;
  }
}
.p-recruit .recruit-flow__title {
  margin: 0;
  font-weight: 700;
  font-size: 1.7rem;
  color: #133761;
}
@media (min-width: 768px) {
  .p-recruit .recruit-flow__title {
    font-size: 2.1rem;
  }
}
.p-recruit .recruit-flow__desc {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .p-recruit .recruit-flow__desc {
    font-size: 1.5rem;
  }
}
.p-recruit .recruit-outline {
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-recruit .recruit-outline {
    padding-bottom: 130px;
  }
}
.p-recruit .recruit-outline__box {
  margin-top: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px;
}
@media (min-width: 768px) {
  .p-recruit .recruit-outline__box {
    margin-top: 28px;
    border-radius: 18px;
    padding: 28px 28px;
  }
}
@media (min-width: 1024px) {
  .p-recruit .recruit-outline__box {
    border-radius: 20px;
    padding: 70px 70px;
  }
}
.p-recruit .recruit-outline__list {
  margin: 0;
}
.p-recruit .recruit-outline__row {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid #E5E5E5;
}
@media (min-width: 768px) {
  .p-recruit .recruit-outline__row {
    grid-template-columns: 150px 1fr;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 0;
    padding: 22px 0;
  }
}
@media (min-width: 1440px) {
  .p-recruit .recruit-outline__row {
    grid-template-columns: 200px 1fr;
    -moz-column-gap: 48px;
    column-gap: 48px;
    padding: 26px 0;
  }
}
.p-recruit .recruit-outline__term {
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
@media (min-width: 1024px) {
  .p-recruit .recruit-outline__term {
    font-size: 1.6rem;
  }
}
.p-recruit .recruit-outline__desc {
  margin: 0;
  font-size: 14px;
  color: #505050;
}
@media (min-width: 768px) {
  .p-recruit .recruit-outline__desc {
    font-size: 15px;
  }
}
@media (min-width: 1024px) {
  .p-recruit .recruit-outline__desc {
    font-size: 16px;
  }
}
.p-recruit .recruit-cta {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .p-recruit .recruit-cta {
    margin-top: 64px;
  }
}

.u-hidden-sp {
  display: none;
}
@media (min-width: 768px) {
  .u-hidden-sp {
    display: block;
  }
}

@media (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

@media (min-width: 1024px) {
  .u-hidden-lg {
    display: none;
  }
}

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

@media (min-width: 768px) {
  .u-tel-disabled-pc {
    pointer-events: none;
    cursor: default;
  }
}

/*# sourceMappingURL=style.css.map */
