@charset "UTF-8";
/* リキッドレイアウト対応 */
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
body {
  font-family: "Zen Kaku Gothic New", serif;
}

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

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

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

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4414414414vw;
  }
}
@media (min-width: 1110px) {
  html {
    font-size: 16px;
  }
}

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

/* ホバー */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

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

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

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

.button {
  width: min(280px, 100%);
  width: min(17.5rem, 100%);
  height: 64px;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  border-radius: 6.25rem;
  border: 2px solid currentColor;
  background-color: #fff;
  color: #452534;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
  padding-inline: 28px;
  padding-inline: 1.75rem;
}
@media screen and (min-width: 768px) {
  .button {
    width: min(20.75rem, 100%);
    height: 4.375rem;
    font-size: 1.125rem;
  }
}
.button::after {
  content: "";
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  background: url(../images/common/button-arrow-brown.png) center/contain no-repeat;
}

.footer__container {
  background-color: #FAEAB1;
  padding-block: 42px 40px;
  padding-block: 2.625rem 2.5rem;
}

.footer__logo {
  width: 74px;
  width: 4.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 5.75rem;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.footer__nav-link {
  position: relative;
  display: block;
  color: #452534;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.65px;
  letter-spacing: 0.040625rem;
  padding-block: 4px;
  padding-block: 0.25rem;
}
.footer__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #452534;
  scale: 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

body#home .header__logo {
  opacity: 0;
  -webkit-animation: fade-up 0.6s ease-in-out forwards;
          animation: fade-up 0.6s ease-in-out forwards;
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}
body#home .header__button {
  opacity: 0;
  -webkit-animation: fade-up 0.6s ease-in-out forwards;
          animation: fade-up 0.6s ease-in-out forwards;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.header__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 20px;
  padding-top: 1.25rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .header__container {
    padding-top: 2.375rem;
  }
}

.header__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-inline: 2.5rem;
  }
}

.header__logo {
  display: inline-block;
  width: 80px;
  width: 5rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 6.25rem;
  }
}

.header__button {
  position: fixed;
  top: 20px;
  top: 1.25rem;
  right: 20px;
  right: 1.25rem;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  border: 2px solid #452534;
  border-radius: 0.9375rem;
  background-color: #fff;
  z-index: 10;
  -webkit-transition: top 0.4s, right 0.4s;
  transition: top 0.4s, right 0.4s;
}
.header__button.open {
  top: 40px;
  top: 2.5rem;
  right: 40px;
  right: 2.5rem;
  border: none;
}
.header__button.open .header__button-line:nth-of-type(1) {
  top: 21px;
  top: 1.3125rem;
  width: 32px;
  width: 2rem;
  rotate: 30deg;
}
.header__button.open .header__button-line:nth-of-type(2) {
  opacity: 0;
}
.header__button.open .header__button-line:nth-of-type(3) {
  top: 21px;
  top: 1.3125rem;
  width: 32px;
  width: 2rem;
  rotate: -30deg;
}
@media screen and (min-width: 768px) {
  .header__button {
    top: 2.375rem;
    right: 2.5rem;
  }
  .header__button.open {
    top: 4.25rem;
    right: 3.75rem;
  }
}

.header__button-line {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 23px;
  width: 1.4375rem;
  height: 3px;
  height: 0.1875rem;
  background-color: #452534;
  -webkit-transition: top 0.4s, rotate 0.4s, opacity 0.4s;
  transition: top 0.4s, rotate 0.4s, opacity 0.4s;
}
.header__button-line:nth-of-type(1) {
  top: 14px;
  top: 0.875rem;
}
.header__button-line:nth-of-type(2) {
  top: 21px;
  top: 1.3125rem;
}
.header__button-line:nth-of-type(3) {
  top: 28px;
  top: 1.75rem;
}

.drawer-menu {
  position: fixed;
  top: 20px;
  top: 1.25rem;
  right: 20px;
  right: 1.25rem;
  width: 0;
  height: 0;
  border-radius: 0.9375rem;
  background: #fff;
  z-index: 9;
  overflow: hidden;
  -webkit-transition: width 0.4s, height 0.4s, border 0.4s;
  transition: width 0.4s, height 0.4s, border 0.4s;
}
.drawer-menu.open {
  width: min(431px, 100% - 40px);
  width: min(26.9375rem, 100% - 2.5rem);
  height: 360px;
  height: 22.5rem;
  max-height: calc(100vh - 1.25rem);
  border: 2px solid #452534;
}
@media screen and (min-width: 768px) {
  .drawer-menu {
    top: 2.375rem;
    right: 2.5rem;
  }
  .drawer-menu.open {
    height: 27.625rem;
    max-height: calc(100vh - 2.375rem);
  }
}

.drawer-menu__list {
  width: 273px;
  width: 17.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  gap: 0.875rem;
  padding-top: 60px;
  padding-top: 3.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .drawer-menu__list {
    padding-top: 6.75rem;
  }
}

.drawer-menu__link {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  color: #452534;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
  padding-block: 8px;
  padding-block: 0.5rem;
}
.drawer-menu__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  translate: 0 -50%;
  width: 9px;
  width: 0.5625rem;
  height: 13px;
  height: 0.8125rem;
  background: url(../images/common/nav-arrow.png) center/contain no-repeat;
}
.drawer-menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #452534;
  scale: 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
@media screen and (min-width: 768px) {
  .drawer-menu__link {
    font-size: 1.125rem;
  }
}

.drawer-menu__link--small {
  text-transform: capitalize;
  font-family: "Ubuntu", serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  letter-spacing: 0.03125rem;
}

.drawer-menu__button {
  margin: 22px auto 0;
  margin: 1.375rem auto 0;
}

.heading-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.heading {
  text-transform: capitalize;
  color: #452534;
  font-family: "Ubuntu", serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 3px;
  letter-spacing: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 3.75rem;
  }
}

.heading--sub {
  color: #452534;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  margin-top: -2px;
  margin-top: -0.125rem;
}
@media screen and (min-width: 768px) {
  .heading--sub {
    font-size: 1.125rem;
  }
}

@media (any-hover: hover) {
  .button {
    -webkit-transition: background-color 0.4s, color 0.4s, border-color 0.4s;
    transition: background-color 0.4s, color 0.4s, border-color 0.4s;
  }
  .button::after {
    -webkit-transition: translate 0.6s, background-image 0.4s;
    transition: translate 0.6s, background-image 0.4s;
  }
  .button:hover {
    background-color: #452534;
    color: #fff;
    opacity: 1;
  }
  .button:hover::after {
    translate: 0.5rem 0;
    background-image: url(../images/common/button-arrow-brown-hover.png);
  }
  .about__button:hover {
    border-color: #fff;
    background-color: #FEBA01;
  }
  .about__button:hover::after {
    background-image: url(../images/common/button-arrow-orange-hover.png);
  }
  .top-button {
    -webkit-transition: font-size 0.4s;
    transition: font-size 0.4s;
  }
  .top-button::before {
    -webkit-transition: scale 0.4s, translate 0.4s;
    transition: scale 0.4s, translate 0.4s;
  }
  .top-button:hover {
    font-size: 0.875rem;
    opacity: 1;
  }
  .top-button:hover::before {
    scale: 1.1;
    translate: -50% -0.25rem;
  }
  .footer__nav-link::after {
    -webkit-transition: scale 0.4s;
    transition: scale 0.4s;
  }
  .footer__nav-link:hover {
    opacity: 1;
  }
  .footer__nav-link:hover::after {
    scale: 1;
  }
  .drawer-menu__link::before {
    -webkit-transition: translate 0.6s;
    transition: translate 0.6s;
  }
  .drawer-menu__link::after {
    -webkit-transition: scale 0.4s;
    transition: scale 0.4s;
  }
  .drawer-menu__link:hover {
    opacity: 1;
  }
  .drawer-menu__link:hover::before {
    translate: 0.25rem -50%;
  }
  .drawer-menu__link:hover::after {
    scale: 1;
  }
  .mail-popup__button:hover {
    background-color: #FEBA01;
    color: #fff;
  }
  .mail-popup__button:hover:first-of-type {
    background-color: #fff;
    color: #FEBA01;
  }
}
.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1160px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #000;
  color: #fff;
}

.text-slider {
  position: relative;
  z-index: -1;
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.text-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: capitalize;
  white-space: nowrap;
  font-family: "Ubuntu", serif;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 5.5px;
  letter-spacing: 0.34375rem;
}
@media screen and (min-width: 768px) {
  .text-slide {
    font-size: 6.875rem;
  }
}

.contact__container {
  background: url(../images/common/contact-bg--sp.png) center/cover no-repeat;
  padding-block: 90px 80px;
  padding-block: 5.625rem 5rem;
}
@media screen and (min-width: 768px) {
  .contact__container {
    background-image: url(../images/common/contact-bg--pc.png);
    padding-block: 8.3125rem 7.625rem;
  }
}

.contact__heading {
  text-align: center;
}

.contact__button {
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 1.5625rem;
  }
}

.top-button {
  position: relative;
  width: 100%;
  height: 70px;
  height: 4.375rem;
  display: block;
  background-color: #FD8125;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.65px;
  letter-spacing: 0.040625rem;
  padding-top: 32px;
  padding-top: 2rem;
}
.top-button::before {
  content: "";
  position: absolute;
  top: 17px;
  top: 1.0625rem;
  left: 50%;
  translate: -50% 0;
  width: 13px;
  width: 0.8125rem;
  height: 9px;
  height: 0.5625rem;
  background: url(../images/common/top-button-arrow.png) center/contain no-repeat;
}

#js-mail-popup {
  width: 300px;
  width: 18.75rem;
  height: 150px;
  height: 9.375rem;
  border: none;
  border-radius: 0.625rem;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
  padding: 24px 20px;
  padding: 1.5rem 1.25rem;
}

.mail-popup__text {
  color: #452534;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.mail-popup__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 32px;
  margin-top: 2rem;
}

.mail-popup__button {
  width: 80px;
  width: 5rem;
  height: 40px;
  height: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FD8125;
  font-size: 16px;
  font-size: 1rem;
  padding: 0;
}
.mail-popup__button::after {
  display: none !important;
}
.mail-popup__button:first-of-type {
  background-color: #FD8125;
  color: #fff;
}

.page-company__container {
  background-color: #FAEAB1;
  padding-block: 134px 50px;
  padding-block: 8.375rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .page-company__container {
    padding-block: 9.625rem 4.6875rem;
  }
}

.page-company__inner {
  max-width: 998px;
  max-width: 62.375rem;
}

.page-company__heading-box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.page-company__list {
  max-width: 500px;
  max-width: 31.25rem;
  border-radius: 0.9375rem;
  background-color: #fff;
  padding: 30px;
  padding: 1.875rem;
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
}
@media screen and (min-width: 768px) {
  .page-company__list {
    max-width: 100%;
    padding: 3.625rem 5.75rem;
    margin-top: 4.75rem;
  }
}

.page-company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 9px;
  padding: 1.25rem 0.5625rem;
}
.page-company__item + .page-company__item {
  border-top: 1px solid #FAEAB1;
}
.page-company__item dt, .page-company__item dd {
  color: #000;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.7px;
  letter-spacing: 0.04375rem;
}
.page-company__item dt {
  width: 120px;
  width: 7.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .page-company__item {
    padding-block: 1.6875rem;
  }
  .page-company__item dt, .page-company__item dd {
    font-size: 14px;
  }
  .page-company__item dt {
    width: 11.625rem;
  }
}

.page-service-main-visual__container {
  background-color: #FD8125;
  padding-block: 133px 60px;
  padding-block: 8.3125rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .page-service-main-visual__container {
    padding-block: 9.5625rem 6.25rem;
  }
}

.page-service-main-visual__inner {
  max-width: 998px;
  max-width: 62.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-service-main-visual__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.5rem;
  }
}

.page-service-main-visual__heading-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .page-service-main-visual__heading-box {
    gap: 2.25rem;
  }
}

.page-service-main-visual__heading {
  color: #fff;
}

.page-service-main-visual__heading--sub {
  color: #fff;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-service-main-visual__heading--sub {
    margin-top: 1.25rem;
  }
}

.page-service-main-visual__text {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-service-main-visual__text {
    font-size: 1.125rem;
    margin-top: 3.4375rem;
  }
}

.page-service-main-visual__image {
  width: 264px;
  width: 16.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .page-service-main-visual__image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 3.8125rem;
    margin-inline: 0;
  }
}

.page-service-character__container {
  background-color: #FAEAB1;
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .page-service-character__container {
    padding-top: 4.375rem;
  }
}

.page-service-character__inner {
  max-width: 998px;
  max-width: 62.375rem;
}

.page-service-character__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
  border-radius: 0.9375rem;
  background: url(../images/service/service-character-bg.png) center/cover no-repeat #fff;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-service-character__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3125rem 3.125rem;
    padding: 3.6875rem 5.25rem 3.4375rem;
    margin-top: 4.3125rem;
  }
}

.page-service-character__item--01 .page-service-character__item-head {
  width: 295px;
  width: 18.4375rem;
  margin-inline: auto;
}
.page-service-character__item--01 .page-service-character__item-image {
  width: 200px;
  width: 12.5rem;
  margin-left: 95px;
  margin-left: 5.9375rem;
}
.page-service-character__item--01 .page-service-character__item-name {
  margin-left: 90px;
  margin-left: 5.625rem;
}
.page-service-character__item--01 .page-service-character__item-fukidashi {
  position: absolute;
  top: 24px;
  top: 1.5rem;
  left: -25px;
  left: -1.5625rem;
  width: 160px;
  width: 10rem;
}
@media screen and (min-width: 768px) {
  .page-service-character__item--01 .page-service-character__item-head {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto 2.3125rem;
  }
  .page-service-character__item--01 .page-service-character__item-image {
    width: 13.25rem;
    margin-left: 0;
  }
  .page-service-character__item--01 .page-service-character__item-name {
    margin-left: 0;
  }
  .page-service-character__item--01 .page-service-character__item-fukidashi {
    position: absolute;
    top: 1.5rem;
    left: -16.75rem;
    width: 15.5rem;
  }
}

.page-service-character__item--02 .page-service-character__item-head {
  width: 290px;
  width: 18.125rem;
  margin-inline: auto;
}
.page-service-character__item--02 .page-service-character__item-image {
  width: 185px;
  width: 11.5625rem;
}
.page-service-character__item--02 .page-service-character__item-name {
  margin-right: 115px;
  margin-right: 7.1875rem;
}
.page-service-character__item--02 .page-service-character__item-fukidashi {
  position: absolute;
  top: -60px;
  top: -3.75rem;
  right: -35px;
  right: -2.1875rem;
  width: 160px;
  width: 10rem;
}
@media screen and (min-width: 768px) {
  .page-service-character__item--02 .page-service-character__item-head {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 9.5rem auto 0 1.375rem;
  }
  .page-service-character__item--02 .page-service-character__item-image {
    width: 13.8125rem;
  }
  .page-service-character__item--02 .page-service-character__item-name {
    margin-right: 0.625rem;
  }
  .page-service-character__item--02 .page-service-character__item-fukidashi {
    position: absolute;
    top: -7.375rem;
    left: clamp(15.375rem, 11.2941176471rem + 5.8823529412vw, 16rem);
    width: 15.5rem;
  }
}

.page-service-character__item--03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  margin-inline: auto;
}
.page-service-character__item--03 .page-service-character__item-content {
  max-width: 543px;
  max-width: 33.9375rem;
  height: unset;
  border-left: 1px solid #452534;
  padding: 0 0 5px 10px;
  padding: 0 0 0.3125rem 0.625rem;
}
.page-service-character__item--03 .page-service-character__item-image {
  width: 260px;
  width: 16.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .page-service-character__item--03 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    grid-column: 1/3;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.625rem;
  }
  .page-service-character__item--03 .page-service-character__item-content {
    height: unset;
    max-width: 21.8125rem;
    padding: 0 0 0.3125rem 1.25rem;
  }
  .page-service-character__item--03 .page-service-character__item-image {
    width: 9.625rem;
    margin: 0.5rem 0 0;
  }
}

.page-service-character__item-head {
  position: relative;
}

.page-service-character__item-name {
  text-align: center;
  color: #452534;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
}

.page-service-character__item-content {
  max-width: 400px;
  max-width: 25rem;
  height: 93px;
  height: 5.8125rem;
  margin-inline: auto;
}
.page-service-character__item-content dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  gap: 0.4375rem;
  color: #569775;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.7px;
  letter-spacing: 0.04375rem;
}
.page-service-character__item-content dt::before {
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #569775;
}
.page-service-character__item-content dd {
  color: #000;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.7px;
  letter-spacing: 0.04375rem;
}
.page-service-character__item-content dd span {
  font-size: clamp(12px, 8.666px + 0.8888888889vw, 14px);
  font-size: clamp(0.75rem, 0.5416666667rem + 0.8888888889vw, 0.875rem);
}
@media screen and (min-width: 768px) {
  .page-service-character__item-content {
    max-width: unset;
    margin-inline: 0;
  }
}

.page-service-character__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  gap: 0.5625rem;
  color: #452534;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.75px;
  letter-spacing: 0.046875rem;
}
.page-service-character__item-title::before {
  content: "";
  width: 21px;
  width: 1.3125rem;
  height: 10px;
  height: 0.625rem;
  background: url(../images/top/main-visual-bg--03.png) center/contain no-repeat;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.page-service-character__item-text {
  color: #000;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.65px;
  letter-spacing: 0.040625rem;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.page-service-about__container {
  position: relative;
  background-color: #FAEAB1;
  padding-block: 80px;
  padding-block: 5rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-service-about__container {
    padding-block: 8.25rem 8.5625rem;
  }
}

.page-service-about__inner {
  max-width: 100%;
  padding-inline: 0;
}

.page-service-about__item--01 .page-service-about__item-box {
  max-width: 500px;
  max-width: 31.25rem;
}
.page-service-about__item--01 .page-service-about__item-title {
  width: 220px;
  width: 13.75rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
.page-service-about__item--01 .page-service-about__item-fukidashi {
  position: absolute;
  top: 8px;
  top: 0.5rem;
  left: 256px;
  left: 16rem;
  width: 54px;
  width: 3.375rem;
}
@media screen and (min-width: 768px) {
  .page-service-about__item--01 .page-service-about__item-box {
    max-width: 90rem;
  }
  .page-service-about__item--01 .page-service-about__item-title {
    width: 20.4375rem;
    margin-left: clamp(2.5rem, -48.1029411765rem + 72.9411764706vw, 10.25rem);
  }
  .page-service-about__item--01 .page-service-about__item-fukidashi {
    position: absolute;
    top: 0.5rem;
    left: clamp(23.5rem, -27.1029411765rem + 72.9411764706vw, 31.25rem);
    width: 4.625rem;
  }
}

.page-service-about__item--02 {
  max-width: 520px;
  max-width: 32.5rem;
  padding-inline: 10px;
  padding-inline: 0.625rem;
  margin: 250px auto 0;
  margin: 15.625rem auto 0;
}
.page-service-about__item--02 .page-service-about__item-title {
  width: 229px;
  width: 14.3125rem;
  margin-inline: auto 10px;
  margin-inline: auto 0.625rem;
}
.page-service-about__item--02 .page-service-about__item-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.page-service-about__item--02 .page-service-about__item-image {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-top: 1.875rem;
}
.page-service-about__item--02 .page-service-about__item-fukidashi {
  position: absolute;
  top: -280px;
  top: -17.5rem;
  left: clamp(48px, -210.62px + 68.9655172414vw, 148px);
  left: clamp(3rem, -13.1637931034rem + 68.9655172414vw, 9.25rem);
  width: 56px;
  width: 3.5rem;
}
@media screen and (min-width: 768px) {
  .page-service-about__item--02 {
    max-width: 90rem;
    padding-inline: 0;
    margin: 15.8125rem auto 0;
  }
  .page-service-about__item--02 .page-service-about__item-title {
    width: 23.6875rem;
    margin-inline: auto clamp(2.6875rem, -47.9154411765rem + 72.9411764706vw, 10.4375rem);
  }
  .page-service-about__item--02 .page-service-about__item-box {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .page-service-about__item--02 .page-service-about__item-image {
    display: block;
    width: 44.9375rem;
    margin-top: 0;
  }
  .page-service-about__item--02 .page-service-about__item-fukidashi {
    position: absolute;
    top: 11.6875rem;
    left: -6.6875rem;
    width: 4.75rem;
  }
}

.page-service-about__item--03 {
  max-width: 540px;
  max-width: 33.75rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  margin: 41px auto 0;
  margin: 2.5625rem auto 0;
}
.page-service-about__item--03 .page-service-about__item-title {
  width: 220px;
  width: 13.75rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
.page-service-about__item--03 .page-service-about__item-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
  margin: 56px auto 0;
  margin: 3.5rem auto 0;
}
.page-service-about__item--03 .page-service-about__item-image {
  width: min(500px, 100%);
  width: min(31.25rem, 100%);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .page-service-about__item--03 {
    max-width: 90rem;
    padding-inline: 0;
    margin: 2.5625rem auto 0;
  }
  .page-service-about__item--03 .page-service-about__item-title {
    width: 20.8125rem;
    margin-left: clamp(2.6875rem, -47.9154411765rem + 72.9411764706vw, 10.4375rem);
  }
  .page-service-about__item--03 .page-service-about__item-box {
    max-width: 69.375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(3.125rem, -8.3014705882rem + 16.4705882353vw, 4.875rem);
    padding-left: 5.125rem;
    margin: 3.5rem auto 0;
  }
  .page-service-about__item--03 .page-service-about__item-image {
    width: 30.625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 1.3125rem;
  }
}

.page-service-about__item-box {
  position: relative;
  max-width: 1440px;
  max-width: 90rem;
  margin-inline: auto;
}

.page-service-about__item-bg {
  position: relative;
  width: 100%;
  height: 255px;
  height: 15.9375rem;
  background: url(../images/service/service-about-bg--sp.png) center top/cover no-repeat;
  margin-top: 30px;
  margin-top: 1.875rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-service-about__item-bg {
    height: 26.0625rem;
    background: url(../images/service/service-about-bg--pc.png) right top/cover no-repeat;
    margin-top: -7.3125rem;
  }
}
@media screen and (min-width: 1440px) {
  .page-service-about__item-bg {
    aspect-ratio: 1440/417;
    height: unset;
  }
}

.page-service-about__item-bg-fukidashi {
  position: absolute;
  width: 255px;
  width: 15.9375rem;
}

.page-service-about__item-bg-fukidashi--01 {
  bottom: 72.4%;
  right: 266px;
  right: 16.625rem;
}
@media screen and (min-width: 1440px) {
  .page-service-about__item-bg-fukidashi--01 {
    right: 18.5%;
  }
}

.page-service-about__item-bg-fukidashi--02 {
  top: 91.6%;
  right: clamp(846px, 219.176px + 56.4705882353vw, 942px);
  right: clamp(52.875rem, 13.6985294118rem + 56.4705882353vw, 58.875rem);
}
@media screen and (min-width: 1440px) {
  .page-service-about__item-bg-fukidashi--02 {
    right: 65.4%;
  }
}

.page-service-about__item-bg-fukidashi--03 {
  top: 83.5%;
  right: 444px;
  right: 27.75rem;
}
@media screen and (min-width: 1440px) {
  .page-service-about__item-bg-fukidashi--03 {
    right: 30.8%;
  }
}

.page-service-about__item-bg-fukidashi--04 {
  top: 83.5%;
  right: 88px;
  right: 5.5rem;
}
@media screen and (min-width: 1440px) {
  .page-service-about__item-bg-fukidashi--04 {
    right: 6.1%;
  }
}

.page-service-about__item-bg-box {
  width: 281px;
  width: 17.5625rem;
  padding-top: 133px;
  padding-top: 8.3125rem;
  margin-inline: auto;
}

.page-service-about__item-text {
  max-width: 457px;
  max-width: 28.5625rem;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
}
.page-service-about__item-text + .page-service-about__item-text {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-service-about__item-text {
    font-size: 1.125rem;
  }
  .page-service-about__item-text + .page-service-about__item-text {
    margin-top: 2rem;
  }
}

.about__container {
  background-color: #FD8125;
  padding-block: 50px 52px;
  padding-block: 3.125rem 3.25rem;
}
@media screen and (min-width: 768px) {
  .about__container {
    padding-block: 4.375rem 5.25rem;
  }
}

.about__inner {
  max-width: 540px;
  max-width: 33.75rem;
}
@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 49.375rem;
  }
}

.about__heading-box {
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .about__heading-box {
    gap: 1.5rem;
  }
  .about__heading-box::before {
    content: "";
    position: absolute;
    top: 3.125rem;
    left: -6.125rem;
    width: 4.5rem;
    height: 0.1875rem;
    background-color: #fff;
  }
}

.about__heading {
  color: #fff;
}

.about__heading--sub {
  color: #fff;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .about__heading--sub {
    margin-top: 1.8125rem;
  }
}

.about__text {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 1.125rem;
    margin-top: 2.375rem;
  }
}

.about__button {
  border-color: transparent;
  color: #FD8125;
  padding-inline: 30px;
  padding-inline: 1.875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
.about__button::after {
  background-image: url(../images/common/button-arrow-orange.png);
}
@media screen and (min-width: 768px) {
  .about__button {
    margin-top: 2.5rem;
  }
}

.main-visual__container {
  position: relative;
  width: 100%;
  height: 690px;
  height: 43.125rem;
  background-color: #FAEAB1;
  padding-top: 253px;
  padding-top: 15.8125rem;
  z-index: 0;
}
@media screen and (min-width: 600px) {
  .main-visual__container {
    height: 36.625rem;
  }
}
@media screen and (min-width: 768px) {
  .main-visual__container {
    height: 43.125rem;
    padding-top: 16.4375rem;
  }
}

.main-visual__heading {
  position: relative;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 2.2px;
  letter-spacing: 0.1375rem;
  z-index: 5;
  opacity: 0;
  -webkit-animation: fade-up 0.6s ease-in-out forwards;
          animation: fade-up 0.6s ease-in-out forwards;
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}
@media screen and (min-width: 768px) {
  .main-visual__heading {
    font-size: 2.75rem;
  }
}
.main-visual__heading span {
  display: inline-block;
  border-radius: 0.9375rem;
}

.main-visual__heading--brown {
  border: 2px solid #452534;
  background-color: #fff;
  color: #452534;
  padding: 8px 3px 8px 13px;
  padding: 0.5rem 0.1875rem 0.5rem 0.8125rem;
}

.main-visual__heading--white {
  background-color: #452534;
  color: #fff;
  padding: 10px 13px;
  padding: 0.625rem 0.8125rem;
  margin-top: 14px;
  margin-top: 0.875rem;
}

.main-visual__bg {
  position: absolute;
  top: 43px;
  top: 2.6875rem;
  left: 50%;
  translate: -50% 0;
  width: 335px;
  width: 20.9375rem;
}
@media screen and (min-width: 768px) {
  .main-visual__bg {
    width: 43.0625rem;
  }
}

.main-visual__slider {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .main-visual__slider {
    margin-top: 8.9375rem;
  }
}

.main-visual__slide {
  color: #FD8125;
}

.main-visual__bg-image--01 {
  position: absolute;
  top: 72px;
  top: 4.5rem;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  aspect-ratio: 689/384;
  background: url(../images/top/main-visual-bg--01.png) center/contain no-repeat;
  z-index: 1;
  opacity: 0;
  -webkit-animation: jimen 1s ease-in-out forwards;
          animation: jimen 1s ease-in-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@media screen and (min-width: 768px) {
  .main-visual__bg-image--01 {
    top: 7.4375rem;
  }
}

.main-visual__bg-image--02 {
  position: absolute;
  top: 14.0625%;
  left: 9.5791001451%;
  width: 263px;
  width: 16.4375rem;
  aspect-ratio: 541/262;
  background: url(../images/top/main-visual-bg--02.png) center/contain no-repeat;
  z-index: 2;
  opacity: 0;
  -webkit-animation: show 1s ease-in-out forwards;
          animation: show 1s ease-in-out forwards;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
@media screen and (min-width: 768px) {
  .main-visual__bg-image--02 {
    width: 33.8125rem;
  }
}

.main-visual__bg-image--03 {
  position: absolute;
  width: 44px;
  width: 2.75rem;
  height: 0px;
  height: 0rem;
  background: url(../images/top/main-visual-bg--03.png) center/contain no-repeat;
  z-index: 3;
  -webkit-animation: kusa 1s ease-in-out forwards;
          animation: kusa 1s ease-in-out forwards;
}
@media screen and (min-width: 768px) {
  .main-visual__bg-image--03 {
    width: 5.5625rem;
  }
}
.main-visual__bg-image--03:nth-of-type(2) {
  bottom: 83.0729166667%;
  left: 33.236574746%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.main-visual__bg-image--03:nth-of-type(3) {
  bottom: 83.0729166667%;
  left: 54.8621190131%;
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.main-visual__bg-image--03:nth-of-type(4) {
  bottom: 73.1770833333%;
  left: 17.1262699565%;
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.main-visual__bg-image--03:nth-of-type(5) {
  bottom: 72.1354166667%;
  left: 68.9404934688%;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.main-visual__bg-image--03:nth-of-type(6) {
  bottom: 63.8020833333%;
  left: 43.976777939%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.main-visual__bg-image--03:nth-of-type(7) {
  bottom: 53.3854166667%;
  left: 6.2409288824%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.main-visual__bg-image--03:nth-of-type(8) {
  bottom: 51.8229166667%;
  left: 28.5921625544%;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.main-visual__bg-image--03:nth-of-type(9) {
  bottom: 52.34375%;
  left: 60.9579100145%;
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.main-visual__bg-image--03:nth-of-type(10) {
  bottom: 51.0416666667%;
  left: 78.5195936139%;
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.main-visual__bg-image--03:nth-of-type(11) {
  bottom: 38.28125%;
  left: 44.412191582%;
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.main-visual__bg-image--03:nth-of-type(12) {
  bottom: 33.0729166667%;
  left: 17.1262699565%;
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.main-visual__bg-image--03:nth-of-type(13) {
  bottom: 33.0729166667%;
  left: 68.9404934688%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.main-visual__bg-image--03:nth-of-type(14) {
  bottom: 20.5729166667%;
  left: 32.6560232221%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.main-visual__bg-image--03:nth-of-type(15) {
  bottom: 20.5729166667%;
  left: 55.442670537%;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.main-visual__bg-image--04 {
  position: absolute;
  top: 0;
  left: 70%;
  width: 117px;
  width: 7.3125rem;
  height: 0px;
  height: 0rem;
  background: url(../images/top/main-visual-bg--04.png) center/contain no-repeat;
  z-index: 4;
  -webkit-animation: mizu 1s ease-in-out forwards;
          animation: mizu 1s ease-in-out forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@media screen and (min-width: 768px) {
  .main-visual__bg-image--04 {
    left: 33.75rem;
    width: 15rem;
  }
}

.main-visual__box {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: min(1280px, 100%);
  width: min(80rem, 100%);
}

.main-visual__image--01 {
  position: absolute;
  bottom: -10px;
  bottom: -0.625rem;
  left: 8%;
  width: 142px;
  width: 8.875rem;
  -webkit-animation: wanto 1s ease-in-out forwards;
          animation: wanto 1s ease-in-out forwards;
}
@media screen and (min-width: 768px) {
  .main-visual__image--01 {
    bottom: -1.0625rem;
    left: 11.75rem;
    width: 14.8125rem;
  }
}

.main-visual__image--02 {
  position: absolute;
  bottom: -1px;
  bottom: -0.0625rem;
  right: 7%;
  width: 136px;
  width: 8.5rem;
  -webkit-animation: mintman 1s ease-in-out forwards;
          animation: mintman 1s ease-in-out forwards;
}
@media screen and (min-width: 768px) {
  .main-visual__image--02 {
    right: 10.8125rem;
    width: 14.1875rem;
  }
}

@-webkit-keyframes fade-up {
  0% {
    translate: 0 50%;
    opacity: 0;
  }
  100% {
    translate: 0 0;
    opacity: 1;
  }
}

@keyframes fade-up {
  0% {
    translate: 0 50%;
    opacity: 0;
  }
  100% {
    translate: 0 0;
    opacity: 1;
  }
}
@-webkit-keyframes mizu {
  0% {
    height: 0;
  }
  100% {
    height: 10.0625rem;
  }
}
@keyframes mizu {
  0% {
    height: 0;
  }
  100% {
    height: 10.0625rem;
  }
}
@media screen and (min-width: 768px) {
  @-webkit-keyframes mizu {
    0% {
      height: 0;
    }
    100% {
      height: 20.625rem;
    }
  }
  @keyframes mizu {
    0% {
      height: 0;
    }
    100% {
      height: 20.625rem;
    }
  }
}
@-webkit-keyframes jimen {
  0% {
    translate: -50% 50%;
    opacity: 0;
  }
  100% {
    translate: -50% 0;
    opacity: 1;
  }
}
@keyframes jimen {
  0% {
    translate: -50% 50%;
    opacity: 0;
  }
  100% {
    translate: -50% 0;
    opacity: 1;
  }
}
@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes kusa {
  0% {
    height: 0;
  }
  100% {
    height: 1.375rem;
  }
}
@keyframes kusa {
  0% {
    height: 0;
  }
  100% {
    height: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  @-webkit-keyframes kusa {
    0% {
      height: 0;
    }
    100% {
      height: 2.75rem;
    }
  }
  @keyframes kusa {
    0% {
      height: 0;
    }
    100% {
      height: 2.75rem;
    }
  }
}
@-webkit-keyframes wanto {
  0% {
    left: -100%;
  }
  100% {
    left: 8%;
  }
}
@keyframes wanto {
  0% {
    left: -100%;
  }
  100% {
    left: 8%;
  }
}
@media screen and (min-width: 768px) {
  @-webkit-keyframes mintken {
    0% {
      left: -100%;
    }
    100% {
      left: 11.75rem;
    }
  }
  @keyframes mintken {
    0% {
      left: -100%;
    }
    100% {
      left: 11.75rem;
    }
  }
}
@-webkit-keyframes mintman {
  0% {
    right: -100%;
  }
  100% {
    right: 7%;
  }
}
@keyframes mintman {
  0% {
    right: -100%;
  }
  100% {
    right: 7%;
  }
}
@media screen and (min-width: 768px) {
  @-webkit-keyframes mintman {
    0% {
      right: -100%;
    }
    100% {
      right: 7.5625rem;
    }
  }
  @keyframes mintman {
    0% {
      right: -100%;
    }
    100% {
      right: 7.5625rem;
    }
  }
}
.message-head {
  position: relative;
  width: 100%;
  height: 400px;
  height: 25rem;
  background: url(../images/top/message-bg--01.png) center top/cover no-repeat;
  margin-top: -100px;
  margin-top: -6.25rem;
  z-index: 0;
}
.message-head::before, .message-head::after {
  content: "";
  position: absolute;
}
.message-head::before {
  top: -40px;
  top: -2.5rem;
  left: 0;
  width: 162px;
  width: 10.125rem;
  aspect-ratio: 231/157;
  background: url(../images/top/message-bg--03.png) center/contain no-repeat;
}
.message-head::after {
  top: 0px;
  top: 0rem;
  right: 0;
  width: 142px;
  width: 8.875rem;
  aspect-ratio: 203/149;
  background: url(../images/top/message-bg--04.png) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .message-head {
    height: 39.0625rem;
    margin-top: -7.6875rem;
  }
  .message-head::before {
    top: -6.5rem;
    width: 14.4375rem;
  }
  .message-head::after {
    top: -1.5625rem;
    width: 12.6875rem;
  }
}
@media screen and (min-width: 1440px) {
  .message-head {
    height: min(52.0625rem, 43.4027777778vw);
  }
}

.message__slider {
  padding-top: 324px;
  padding-top: 20.25rem;
}
@media screen and (min-width: 768px) {
  .message__slider {
    padding-top: 32.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .message__slider {
    padding-top: clamp(32.5rem, -6.5rem + 43.3333333333vw, 45.5rem);
  }
}

.message__slide {
  color: #fff;
}

.message__container {
  position: relative;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  z-index: 0;
}
.message__container::before {
  content: "";
  position: absolute;
  top: max(-28.5333333333vw, -171px);
  top: max(-28.5333333333vw, -10.6875rem);
  left: 0;
  width: 100%;
  height: clamp(80px, -112px + 51.2vw, 144px);
  height: clamp(5rem, -7rem + 51.2vw, 9rem);
  background: url(../images/top/message-bg--02.png) center top/cover no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .message__container {
    padding-bottom: 4.0625rem;
    margin-top: -2.3125rem;
  }
  .message__container::before {
    top: -13.6875rem;
    height: 17rem;
  }
}
@media screen and (min-width: 1440px) {
  .message__container {
    margin-top: max(-3.0625rem, -2.5694444444vw);
  }
  .message__container::before {
    top: -15.2083333333vw;
    height: 18.8888888889vw;
  }
}

.message__inner {
  max-width: 540px;
  max-width: 33.75rem;
}
@media screen and (min-width: 768px) {
  .message__inner {
    max-width: 1160px;
    padding-left: 6.625rem;
  }
}

.message__heading-box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.message__heading--sub {
  text-transform: capitalize;
  color: #FD8125;
  font-family: "Ubuntu", serif;
  font-weight: 500;
  margin-top: 0;
}

.message__heading {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .message__heading {
    font-size: 2.75rem;
  }
}

.message__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 600px) {
  .message__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .message__box {
    gap: clamp(1.875rem, -1.7977941176rem + 5.2941176471vw, 2.4375rem);
    margin-top: 0.375rem;
  }
}

.message__image {
  width: 320px;
  width: 20rem;
}
@media screen and (min-width: 768px) {
  .message__image {
    width: 30.4375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.message__content {
  width: min(493px, 100%);
  width: min(30.8125rem, 100%);
}

.message__text {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
}
@media screen and (min-width: 768px) {
  .message__text {
    font-size: 1.125rem;
    margin-top: 2.25rem;
  }
}
.message__text + .message__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.service__container {
  position: relative;
  background-color: #FAEAB1;
  padding-block: 50px 180px;
  padding-block: 3.125rem 11.25rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .service__container {
    padding-block: 4.1875rem 11.25rem;
  }
}
.service__container::before {
  content: "";
  position: absolute;
  top: 0px;
  top: 0rem;
  left: 0px;
  left: 0rem;
  width: 100%;
  height: 1310px;
  height: 81.875rem;
  background: url(../images/top/service-bg.png) center/cover no-repeat;
  z-index: -1;
}

.service__inner {
  max-width: 1110px;
  max-width: 69.375rem;
  padding-inline: 0;
}

.service__list {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .service__list {
    margin-top: 2.8125rem;
  }
}

.service__item {
  position: relative;
  width: 255px;
  width: 15.9375rem;
  height: 255px;
  height: 15.9375rem;
  background-color: #FEBA01;
  border: 10px solid #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 2px 0 rgba(12, 12, 13, .05), 0 1px 2px 0 rgba(12, 12, 13, .1);
          box-shadow: 0 1px 2px 0 rgba(12, 12, 13, .05), 0 1px 2px 0 rgba(12, 12, 13, .1);
  text-align: center;
  color: #fff;
  padding-top: 40px;
  padding-top: 2.5rem;
  margin-inline: auto;
}
.service__item:nth-of-type(1) .service__item-image {
  position: absolute;
  top: 136px;
  top: 8.5rem;
  left: -40px;
  left: -2.5rem;
  width: 320px;
  width: 20rem;
}
.service__item:nth-of-type(2) {
  margin-top: 110px;
  margin-top: 6.875rem;
}
.service__item:nth-of-type(2) .service__item-image {
  top: 170px;
  top: 10.625rem;
  right: 20px;
  right: 1.25rem;
  width: 280px;
  width: 17.5rem;
}
.service__item:nth-of-type(3) {
  margin-top: 180px;
  margin-top: 11.25rem;
}
.service__item:nth-of-type(3) .service__item-image {
  top: 100px;
  top: 6.25rem;
  right: -60px;
  right: -3.75rem;
  width: 360px;
  width: 22.5rem;
}
@media screen and (min-width: 768px) {
  .service__item {
    padding-top: 2rem;
  }
  .service__item:nth-of-type(1) {
    margin-inline: 10rem 0;
  }
  .service__item:nth-of-type(1) .service__item-image {
    position: absolute;
    top: 8.5rem;
    left: -5.5rem;
    width: 28.3125rem;
  }
  .service__item:nth-of-type(2) {
    margin: -12.75rem 0 0 48.375rem;
  }
  .service__item:nth-of-type(2) .service__item-image {
    top: 8.25rem;
    right: 2rem;
    width: 22.0625rem;
  }
  .service__item:nth-of-type(3) {
    margin: 12.5625rem 0 0 40.5625rem;
  }
  .service__item:nth-of-type(3) .service__item-image {
    top: 0.75rem;
    right: 2.9375rem;
    width: 36.625rem;
  }
}

.service__item-title {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2.75px;
  letter-spacing: -0.171875rem;
}
@media screen and (min-width: 768px) {
  .service__item-title {
    font-size: 3.4375rem;
  }
}

.service__item-title--small {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
}

.service__item-image {
  position: absolute;
}

.service__button {
  margin: 110px auto 0;
  margin: 6.875rem auto 0;
}
@media screen and (min-width: 768px) {
  .service__button {
    margin: 9.4375rem 0 0 43.5625rem;
  }
}
/*# sourceMappingURL=styles.css.map */
