@charset "UTF-8";
/* リキッドレイアウト対応 */
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Shippori+Mincho+B1&display=swap");
@import url("https://fonts.googleapis.com/earlyaccess/hannari.css");
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
}

.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.25vw;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

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

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
*,
*::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: 1.5;
}

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

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

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

/* Natural flow and rhythm in articles by default */
/* 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 {
  position: relative;
  width: 257px;
  width: 16.0625rem;
  height: 69px;
  height: 4.3125rem;
  display: grid;
  place-items: center;
  border-radius: 2.15625rem;
  border: 1px solid #E7C3C4;
  background: #FCFCFC;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  letter-spacing: 0.05rem;
}
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 23px;
  right: 1.4375rem;
  translate: 0 -50%;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  background: url(../images/common/button-icon-right-arrow.png) center/contain no-repeat;
}

.container {
  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;
  padding: 32px 20px 80px;
  padding: 2rem 1.25rem 5rem;
}
@media screen and (min-width: 768px) {
  .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.5rem;
    padding: 6.25rem 5rem 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    padding-inline: 10.625rem 11.875rem;
  }
}

.fadein-block {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fadeInDown {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes fadeIn {
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.heading--small {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .heading--small {
    font-size: 2rem;
  }
}

.heading {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .text-hover-b {
    position: relative;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .text-hover-b::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.0625rem;
    background-color: #941315;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
    scale: 0 1;
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .text-hover-b:hover {
    color: #941315;
  }
  .text-hover-b:hover::before {
    scale: 1 1;
  }
}

@media screen and (min-width: 768px) {
  .text-hover-a {
    position: relative;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .text-hover-a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.0625rem;
    background-color: #941315;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
    scale: 0 1;
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .text-hover-a:hover {
    color: #941315;
  }
  .text-hover-a:hover::after {
    scale: 1 1;
  }
}

@media screen and (min-width: 768px) {
  .button-hover1 {
    -webkit-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
  }
  .button-hover1:hover {
    color: #fff !important;
    background-color: #941315 !important;
  }
}

@media screen and (min-width: 768px) {
  .button-hover2 {
    -webkit-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
  }
  .button-hover2::after {
    -webkit-transition: background-image 0.3s;
    transition: background-image 0.3s;
  }
  .button-hover2:hover {
    color: #fff;
    background-color: #941315;
  }
  .button-hover2:hover::after {
    background-image: url(../images/common/icon-right-arrow-hover.png);
  }
}

@media screen and (min-width: 768px) {
  .button-hover3 {
    -webkit-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
  }
  .button-hover3 a::before {
    -webkit-transition: background-image 0.3s;
    transition: background-image 0.3s;
  }
  .button-hover3 a::after {
    -webkit-transition: background-image 0.3s;
    transition: background-image 0.3s;
  }
  .button-hover3:hover {
    color: #fff;
    background-color: #941315;
  }
  .button-hover3:hover a::before {
    background-image: url(../images/common/icon-pagination-arrow-hover.png) !important;
  }
  .button-hover3:hover a::after {
    background-image: url(../images/common/icon-pagination-arrow-hover.png) !important;
  }
}

@media screen and (min-width: 768px) {
  .button-hover4 .archive__button {
    -webkit-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
  }
  .button-hover4 .archive__button::after {
    -webkit-transition: background-image 0.3s;
    transition: background-image 0.3s;
  }
  .button-hover4:hover .archive__button {
    color: #fff;
    background-color: #941315;
  }
  .button-hover4:hover .archive__button::after {
    background-image: url(../images/common/icon-right-arrow-hover.png);
  }
}

@media screen and (min-width: 768px) {
  .button-hover5 {
    -webkit-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
  }
  .button-hover5::before {
    -webkit-transition: background-image 0.3s;
    transition: background-image 0.3s;
  }
  .button-hover5:hover {
    color: #fff;
    background-color: #941315;
  }
  .button-hover5:hover::before {
    background-image: url(../images/common/icon-mail-hover.png);
  }
}

@media screen and (min-width: 768px) {
  .button-hover6 {
    -webkit-transition: background-image 0.3s;
    transition: background-image 0.3s;
  }
  .button-hover6:hover {
    background-image: url(../images/common/button-icon-right-arrow.png);
  }
}

@media screen and (min-width: 768px) {
  .image-hover img {
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
  }
  .image-hover:hover img {
    scale: 1.05;
  }
}

@media screen and (min-width: 768px) {
  .post-hover1 h2, .post-hover1 h3 {
    -webkit-transition: color 0.3s, -webkit-text-decoration 0.3s;
    transition: color 0.3s, -webkit-text-decoration 0.3s;
    transition: color 0.3s, text-decoration 0.3s;
    transition: color 0.3s, text-decoration 0.3s, -webkit-text-decoration 0.3s;
  }
  .post-hover1:hover h2, .post-hover1:hover h3 {
    color: #941315;
    -webkit-text-decoration: underline 1px #941315;
            text-decoration: underline 1px #941315;
  }
}

@media screen and (min-width: 768px) {
  .post-hover2 .sidebar__related-item-title {
    -webkit-transition: color 0.3s, -webkit-text-decoration 0.3s;
    transition: color 0.3s, -webkit-text-decoration 0.3s;
    transition: color 0.3s, text-decoration 0.3s;
    transition: color 0.3s, text-decoration 0.3s, -webkit-text-decoration 0.3s;
  }
  .post-hover2:hover .sidebar__related-item-title {
    color: #941315;
    -webkit-text-decoration: underline 1px #941315;
            text-decoration: underline 1px #941315;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1330px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.page-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .page-nav {
    margin-left: 0.1875rem;
  }
}

.page-nav-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 123px;
  min-width: 7.6875rem;
  height: 32px;
  height: 2rem;
  padding-inline: 16px 24px;
  padding-inline: 1rem 1.5rem;
  border-radius: 34.5px;
  border: 1px solid #E7C3C4;
  background: #FCFCFC;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
.page-nav-link::after {
  content: "";
  position: absolute;
  right: 11px;
  right: 0.6875rem;
  top: 50%;
  translate: 0 -50%;
  width: 5px;
  width: 0.3125rem;
  height: 6px;
  height: 0.375rem;
  background: url(../images/common/icon-right-arrow-red.png) center/contain no-repeat;
  margin-top: 1px;
  margin-top: 0.0625rem;
}

.order-flow__contact {
  position: relative;
  background: url(../images/order-flow/order-flow-contact-bg.png) center/cover no-repeat;
  padding-block: 60px;
  padding-block: 3.75rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .order-flow__contact {
    padding-block: 7.3125rem 7.375rem;
    margin-top: 5.4375rem;
  }
}
.order-flow__contact::after {
  content: "";
  position: absolute;
  top: -8px;
  top: -0.5rem;
  right: 20px;
  right: 1.25rem;
  width: 42px;
  width: 2.625rem;
  aspect-ratio: 0.1350114416;
  background: url(../images/order-flow/order-text.png) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .order-flow__contact::after {
    top: -1.125rem;
    right: 5.5625rem;
    width: 3.6875rem;
  }
}

.page-head {
  padding-left: 16.6666666667%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

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

.banner__content {
  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;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .banner__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}

.banner__image {
  max-width: 537px;
  max-width: 33.5625rem;
}

.contact {
  position: relative;
}
.contact::after {
  content: "";
  position: absolute;
  top: -43px;
  top: -2.6875rem;
  right: 0;
  width: 250.9px;
  width: 15.68125rem;
  height: 426px;
  height: 26.625rem;
  background: url(../images/top/contact-bg.png) center/contain no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .contact::after {
    width: 23.66875rem;
    height: 40.1875rem;
  }
}

.contact2::after {
  top: -243px;
  top: -15.1875rem;
}

.top-contact__heading {
  width: 225.28px;
  width: 14.08rem;
}
@media screen and (min-width: 768px) {
  .top-contact__heading {
    width: 21.625rem;
  }
}

.contact__heading--small {
  margin-top: 16px;
  margin-top: 1rem;
}

.contact__box {
  border-radius: 1.25rem;
  -webkit-box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, .04);
          box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, .04);
  background-color: #F9F9F9;
  text-align: center;
  padding-block: 40px 44px;
  padding-block: 2.5rem 2.75rem;
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .contact__box {
    padding-block: 5.625rem 5.6875rem;
    margin-top: 3.875rem;
  }
}

.contact__box2 {
  margin-top: 0;
}

.contact__box-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 28.8px;
  line-height: 1.8rem;
}
@media screen and (min-width: 768px) {
  .contact__box-text {
    font-size: 1.25rem;
  }
}

.contact__box-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  gap: 1.25rem;
  margin: 16px auto 0;
  margin: 1rem auto 0;
}
@media screen and (min-width: 768px) {
  .contact__box-area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
    margin-top: 1.5625rem;
  }
}

.contact__box-number {
  width: 200px;
  width: 12.5rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-block: 8px 17px;
  padding-block: 0.5rem 1.0625rem;
}
@media screen and (min-width: 768px) {
  .contact__box-number {
    width: 18rem;
  }
}
@media screen and (min-width: 768px) {
  .contact__box-number + .contact__box-number {
    border-left: 1px solid #707070;
    padding-left: 2.4375rem;
  }
}
.contact__box-number:nth-of-type(2) .contact__box-item-icon::before {
  width: 15.8px;
  width: 0.9875rem;
  height: 15px;
  height: 0.9375rem;
  background: url(../images/common/icon-fax.png) center/contain no-repeat;
}

.contact__box-item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
  opacity: 0.88;
  text-transform: capitalize;
  color: #941315;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.2px;
  letter-spacing: 0.075rem;
}
@media screen and (min-width: 768px) {
  .contact__box-item-icon {
    font-size: 1.5rem;
  }
}
.contact__box-item-icon::before {
  content: "";
  scale: 0.9;
}
@media screen and (min-width: 768px) {
  .contact__box-item-icon::before {
    scale: 1;
  }
}

.contact__box-item-number {
  width: 200px;
  width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .contact__box-item-number {
    width: 17.25rem;
    padding-block: 0.5rem 1.0625rem;
    margin-inline: 0;
  }
}

.contact__box-button {
  width: 260px;
  width: 16.25rem;
  height: 72px;
  height: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  gap: 0.375rem;
  border-radius: 0.625rem;
  border: 1px solid #C05354;
  color: #A02F31;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  padding-left: 70px;
  padding-left: 4.375rem;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .contact__box-button {
    width: 26.3125rem;
    height: 6.625rem;
    font-size: 1.25rem;
    padding-left: 8.8125rem;
    margin: 2.1875rem auto 0;
  }
}
.contact__box-button::before {
  content: "";
  width: 17px;
  width: 1.0625rem;
  height: 13px;
  height: 0.8125rem;
  background: url(../images/common/icon-mail.png) center/contain no-repeat;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

#footer {
  position: relative;
  padding-block: 80px 52px;
  padding-block: 5rem 3.25rem;
}
@media screen and (min-width: 768px) {
  #footer {
    padding-block: 9.3125rem 6.25rem;
  }
}
#footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 257px;
  width: 16.0625rem;
  height: 243px;
  height: 15.1875rem;
  background: url(../images/top/footer-bg.png) center/contain no-repeat;
  z-index: -1;
}

.footer__inner {
  max-width: 1150px;
  max-width: 71.875rem;
  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;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  gap: 0.5625rem;
}
.footer__logo:hover {
  opacity: 0.8;
}

.footer__logo-image {
  width: 60px;
  width: 3.75rem;
}

.footer__logo-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
}

.footer__logo-name {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: normal;
}

.footer__logo-name--small {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  margin-left: 4px;
  margin-left: 0.25rem;
}

.footer__logo-address {
  font-family: "Hannari", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 28.8px;
  line-height: 1.8rem;
  margin-left: 4px;
  margin-left: 0.25rem;
}

.footer__nav {
  width: 194px;
  width: 12.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
  gap: 0.8125rem;
  text-align: center;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    text-align: left;
    margin-top: 0;
  }
}

.footer__nav-link {
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
}

html.is-fixed {
  overflow: hidden;
}

.header__inner {
  width: 100%;
  height: 77px;
  height: 4.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 20px 0;
  padding: 1.5rem 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 1.5rem 2.625rem 0;
  }
}
@media screen and (min-width: 1440px) {
  .header__inner {
    padding: 1.5rem 2.625rem 0 5rem;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__logo:hover {
  opacity: 0.8;
}

.header__logo-image {
  width: 65px;
  width: 4.0625rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.header__logo-name {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: normal;
  margin: 5px 0 0 9px;
  margin: 0.3125rem 0 0 0.5625rem;
}

.header__logo-name--small {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  margin: 0 0 2px 4px;
  margin: 0 0 0.125rem 0.25rem;
}

.drawer__button {
  position: fixed;
  top: 40px;
  top: 2.5rem;
  right: 20px;
  right: 1.25rem;
  width: 32px;
  width: 2rem;
  height: 18px;
  height: 1.125rem;
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .drawer__button {
    right: 2.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .drawer__button {
    display: none;
  }
}
.drawer__button .drawer__button-bar:nth-of-type(1) {
  top: 0;
}
.drawer__button .drawer__button-bar:nth-of-type(2) {
  top: 8px;
  top: 0.5rem;
}
.drawer__button .drawer__button-bar:nth-of-type(3) {
  top: 16px;
  top: 1rem;
}
.drawer__button.open .drawer__button-bar:nth-of-type(1) {
  top: 8px;
  top: 0.5rem;
  rotate: -45deg;
}
.drawer__button.open .drawer__button-bar:nth-of-type(2) {
  opacity: 0;
}
.drawer__button.open .drawer__button-bar:nth-of-type(3) {
  top: 8px;
  top: 0.5rem;
  rotate: 45deg;
}

.drawer__button-bar {
  position: absolute;
  left: 0;
  display: block;
  width: 32px;
  width: 2rem;
  height: 2px;
  height: 0.125rem;
  background-color: #222;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.drawer-menu {
  translate: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (min-width: 1024px) {
  .drawer-menu {
    translate: 0;
  }
}
.drawer-menu.open {
  translate: 0;
}

.header__nav {
  position: fixed;
  top: 0px;
  top: 0rem;
  right: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 27px;
  gap: 1.6875rem;
  background-color: #F7F6F6;
  padding: 100px 20px 60px;
  padding: 6.25rem 1.25rem 3.75rem;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header__nav {
    top: 6.3125rem;
    width: 56.875rem;
    border-radius: 2.5rem 0 0 0;
    padding: 3.75rem 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .header__nav {
    top: 1.5rem;
    right: 2.625rem;
    height: 3.3125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 1.65625rem;
    border: 1px solid #fff;
    background-color: rgba(247, 246, 246, .58);
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-backdrop-filter: blur(0.625rem);
            backdrop-filter: blur(0.625rem);
    padding: 0;
  }
}

.header__nav-text {
  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;
}
@media screen and (min-width: 1024px) {
  .header__nav-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.5rem;
  }
}

.header__nav-text-link {
  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;
  border-bottom: 1px solid #E7C3C4;
  color: #222;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  padding: 4px 20px 8px;
  padding: 0.25rem 1.25rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .header__nav-text-link {
    font-size: 1.25rem;
    padding-block: 0.5rem 1rem;
  }
  .header__nav-text-link:hover {
    color: #222;
  }
  .header__nav-text-link:hover::before {
    scale: 0 1;
  }
}
@media screen and (min-width: 1024px) {
  .header__nav-text-link {
    border: 0;
    font-size: 0.8125rem;
    padding: 0;
  }
  .header__nav-text-link:hover {
    color: #941315;
  }
  .header__nav-text-link:hover::before {
    scale: 1 1;
  }
}
.header__nav-text-link::after {
  content: "";
  width: 11px;
  width: 0.6875rem;
  height: 18px;
  height: 1.125rem;
  background: url(../images/common/icon-right-arrow.png) center/contain no-repeat;
}
@media screen and (min-width: 1024px) {
  .header__nav-text-link::after {
    display: none;
  }
}

.header__nav-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 600px) {
  .header__nav-button {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .header__nav-button {
    gap: 0.6875rem;
    margin: 0;
  }
}

.header__nav-button-link {
  height: 48px;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1.875rem;
  border: 1px solid #941315;
  color: #941315;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .header__nav-button-link {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .header__nav-button-link {
    height: 1.875rem;
    border-radius: 1.25rem;
    font-size: 0.8125rem;
  }
}
.header__nav-button-link:nth-of-type(1) {
  padding-inline: 41px;
  padding-inline: 2.5625rem;
}
@media screen and (min-width: 1024px) {
  .header__nav-button-link:nth-of-type(1) {
    padding-inline: 1.375rem;
  }
}
.header__nav-button-link:nth-of-type(2) {
  padding-inline: 32px;
  padding-inline: 2rem;
}
@media screen and (min-width: 1024px) {
  .header__nav-button-link:nth-of-type(2) {
    font-size: 0.875rem;
    padding-inline: 0.8125rem;
  }
}

.sidebar {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .sidebar {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 15.5rem;
    margin: 0;
  }
}

.sidebar__image-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: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 600px) {
  .sidebar__image-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .sidebar__image-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sidebar__image-item {
  max-width: 400px;
  max-width: 25rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .sidebar__image-item {
    max-width: unset;
  }
}

.sidebar__content {
  max-width: 400px;
  max-width: 25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .sidebar__content {
    max-width: unset;
    margin: 0;
  }
}

.sidebar__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  margin-top: 66px;
  margin-top: 4.125rem;
}

.sidebar__title1 {
  width: 100%;
  height: 39px;
  height: 2.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1B1A13;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  padding-left: 17px;
  padding-left: 1.0625rem;
}

.sidebar__search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar__search-input {
  width: 100%;
  height: 39px;
  height: 2.4375rem;
  border: 1px solid #1B1A13;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  padding-left: 17px;
  padding-left: 1.0625rem;
}
.sidebar__search-input::-webkit-input-placeholder {
  color: #D5D5D5;
}
.sidebar__search-input::-moz-placeholder {
  color: #D5D5D5;
}
.sidebar__search-input::-ms-input-placeholder {
  color: #D5D5D5;
}
.sidebar__search-input::placeholder {
  color: #D5D5D5;
}

.sidebar__search-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 37px;
  width: 2.3125rem;
  height: 39px;
  height: 2.4375rem;
  background: url(../images/common/icon-search.png) center/contain no-repeat #1B1A13;
  padding: 0;
}

.sidebar__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  margin-top: 37px;
  margin-top: 2.3125rem;
}

.sidebar__category-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: 1px;
  gap: 0.0625rem;
}

.sidebar__category-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  background: #1B1A13;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  padding: 14px 0 14px 17px;
  padding: 0.875rem 0 0.875rem 1.0625rem;
}
.sidebar__category-item::before {
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background: url(../images/common/icon-dot.png) center/contain no-repeat;
}

.sidebar__related {
  margin-top: 52px;
  margin-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .sidebar__related {
    margin-top: 6.625rem;
  }
}

.sidebar__title2 {
  border-bottom: 2px solid #222;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}

.sidebar__related-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: 24px;
  gap: 1.5rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .sidebar__related-list {
    margin-top: 2.5rem;
  }
}

.sidebar__related-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .sidebar__related-item {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}

.sidebar__related-item-content {
  margin-top: 39px;
  margin-top: 2.4375rem;
}

.sidebar__related-item-title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
}

.sidebar__related-item-date {
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: normal;
  margin-top: 37px;
  margin-top: 2.3125rem;
}

.sidebar__related-item-image {
  max-width: 119px;
  max-width: 7.4375rem;
  max-height: 119px;
  max-height: 7.4375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
.sidebar__related-item-image img {
  border-radius: 0.3125rem;
}

.sidebar__tag {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .sidebar__tag {
    margin-top: 6rem;
  }
}

.sidebar__tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .sidebar__tag-list {
    margin-top: 2.5rem;
  }
}

.sidebar__tag-item {
  height: 29px;
  height: 1.8125rem;
  display: grid;
  place-items: center;
  border-radius: 0.1875rem;
  background: #F7F6F6;
  color: #555;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: normal;
  line-height: normal;
  padding-inline: 7.5px;
  padding-inline: 0.46875rem;
}

/*************************************************
ページ共通設定
*************************************************/
#about-fullorder {
  padding-block: 60px;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  #about-fullorder {
    padding-block: 8.5625rem 7.3125rem;
  }
}

.about-fullorder__title {
  font-family: "Hannari", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}

.about-fullorder-inner {
  max-width: 1000px;
  max-width: 62.5rem;
}

/*************************************************
各セクション設定
*************************************************/
.about-fullorder__intro-header {
  max-width: 823px;
  max-width: 51.4375rem;
  margin: 0 auto;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.about-fullorder-introduction {
  background: #F7F6F6;
  max-width: 998px;
  max-width: 62.375rem;
  margin: 0 auto;
  margin-top: 56px;
  margin-top: 3.5rem;
  padding: 0 10px;
  padding: 0 0.625rem;
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .about-fullorder-introduction {
    padding: 0 0.9375rem;
    padding-bottom: 3.5rem;
  }
}

.about-fullorder-sub-title {
  margin: 0 auto;
  padding-top: 53px;
  padding-top: 3.3125rem;
}

.about-fullorder-sub-title--01 {
  width: 43px;
  width: 2.6875rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .about-fullorder-sub-title--01 {
    margin-top: 6.25rem;
  }
}

.about-fullorder-sub-title--02 {
  width: 70px;
  width: 4.375rem;
}

.about-fullorder-introduction__title {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .about-fullorder-introduction__title {
    font-size: 2rem;
  }
}

.about-fullorder-introduction__text {
  text-align: center;
  margin-top: 18px;
  margin-top: 1.125rem;
  line-height: 2;
}

.about-fullorder-concept__title {
  margin: 0 auto;
  margin-top: 60px;
  margin-top: 3.75rem;
  max-width: 143px;
  max-width: 8.9375rem;
}
@media screen and (min-width: 768px) {
  .about-fullorder-concept__title {
    margin-top: 6.25rem;
  }
}

.about-fullorder-concept__item-inner {
  max-width: 497px;
  max-width: 31.0625rem;
  margin: 0 auto;
  text-align: center;
}
.about-fullorder-concept__item-inner:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
  margin-top: 0.5rem;
}
.about-fullorder-concept__item-inner img {
  margin: 0 auto;
}
.about-fullorder-concept__item-inner span {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .about-fullorder-concept__item-inner span {
    font-size: 1.25rem;
  }
}

.about-fullorder-concept__item--01 {
  margin-top: 30px;
  margin-top: 1.875rem;
  background: #F7F6F6;
  width: 100%;
  padding: 30px;
  padding: 1.875rem;
}
.about-fullorder-concept__item--01 img {
  width: 44px;
  width: 2.75rem;
  height: 56px;
  height: 3.5rem;
}

.about-fullorder-concept__item--02 {
  background: #F7F6F6;
  width: 100%;
  padding: 25px;
  padding: 1.5625rem;
}
.about-fullorder-concept__item--02 img {
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
}

.about-fullorder-concept__item--03 {
  background: #F7F6F6;
  width: 100%;
  margin-left: 8px;
  margin-left: 0.5rem;
  padding: 25px;
  padding: 1.5625rem;
}
.about-fullorder-concept__item--03 img {
  width: 63px;
  width: 3.9375rem;
  height: 48px;
  height: 3rem;
}

#about-fullorder-summary {
  position: relative;
}
#about-fullorder-summary:before {
  content: "";
  display: block;
  background: url(../images/about-fullorder/about-fullorder-summary--bg.png) no-repeat center right/contain;
  width: 487px;
  width: 30.4375rem;
  height: 487px;
  height: 30.4375rem;
  position: absolute;
  top: -150px;
  top: -9.375rem;
  right: 0;
}

.about-fullorder-summary__title {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  max-width: 520px;
  max-width: 32.5rem;
  margin-left: auto;
  padding-left: 15px;
  padding-left: 0.9375rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  line-height: 1.8;
  font-weight: 200;
}
@media screen and (min-width: 768px) {
  .about-fullorder-summary__title {
    font-size: 2rem;
    padding-left: 0;
    margin-right: 21.0416666667%;
    margin-top: 6.25rem;
    margin-bottom: -5rem;
  }
}

.about-fullorder-summary__box {
  max-width: 1000px;
  max-width: 62.5rem;
  margin: 0 auto;
}

.about-fullorder-summary__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .about-fullorder-summary__card {
    gap: 2.8125rem;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.about-fullorder-summary__card:nth-child(2) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .about-fullorder-summary__card:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
    margin-top: 4.75rem;
  }
}

@media screen and (min-width: 768px) {
  .about-fullorder-summary__card:nth-child(3) {
    margin-top: 4.75rem;
  }
}

.about-fullorder-summary__figure {
  max-width: 297px;
  max-width: 18.5625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about-fullorder-summary__figure {
    max-width: 29.5rem;
  }
}

.about-fullorder-summary__description {
  width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding: 0 14px;
  padding: 0 0.875rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  margin-top: -20px;
  margin-top: -1.25rem;
}
@media screen and (min-width: 768px) {
  .about-fullorder-summary__description {
    padding: 0;
    padding-bottom: 7.4375rem;
  }
}

.about-fullorder-summary__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: normal;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .about-fullorder-summary__subtitle {
    font-size: 1.5rem;
  }
}

.about-fullorder-summary__num {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .about-fullorder-summary__num {
    margin-bottom: 3rem;
  }
}

.about-fullorder-summary__num--01 {
  width: 74px;
  width: 4.625rem;
}

.about-fullorder-summary__num--02 {
  width: 99px;
  width: 6.1875rem;
}

.about-fullorder-summary__num--03 {
  width: 98px;
  width: 6.125rem;
}

.about-fullorder-cost {
  background: #1B1A13;
  color: #fff;
  border-radius: 3.3125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .about-fullorder-cost {
    margin-top: 6.25rem;
    padding-bottom: 7.5rem;
  }
}

.about-fullorder-cost--02 {
  margin-bottom: 160px;
  margin-bottom: 10rem;
}

.about-fullorder-cost__title {
  max-width: 645px;
  max-width: 40.3125rem;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .about-fullorder-cost__title {
    width: 100%;
    margin-left: 5rem;
  }
}

.about-fullorder-cost__sub-title {
  width: 90%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: normal;
  margin: 30px auto;
  margin: 1.875rem auto;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .about-fullorder-cost__sub-title {
    font-size: 2rem;
    margin: 4.3125rem 0;
    padding-left: 10rem;
  }
}
.about-fullorder-cost__sub-title span {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
}

.about-fullorder__cost-slider-container {
  margin: 0 74px;
  margin: 0 4.625rem;
}

.about-fullorder__cost-slider--01, .about-fullorder__cost-slider--02 {
  max-width: 500px;
  max-width: 31.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .about-fullorder__cost-slider--01, .about-fullorder__cost-slider--02 {
    max-width: 62.5rem;
  }
}

.about-fullorder__cost-slide, .about-fullorder__cost-slide--02 {
  padding: 0 50px;
  padding: 0 3.125rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .about-fullorder__cost-slide, .about-fullorder__cost-slide--02 {
    padding: 0;
  }
}

.about-fullorder__button-prev,
.about-fullorder__button-next {
  top: 44%;
  translate: 0 -100%;
  width: 12.5px;
  width: 0.78125rem;
  height: 33px;
  height: 2.0625rem;
  background: url(../images/common/arrow-icon-right-arrow--gray.png) center/contain no-repeat;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .about-fullorder__button-prev,
  .about-fullorder__button-next {
    top: 38%;
    width: 1.5625rem;
    height: 4.125rem;
  }
}

.about-fullorder__button-prev {
  right: 123px;
  right: 7.6875rem;
  rotate: 180deg;
}

.cost-slide-num--01 {
  width: 19px;
  width: 1.1875rem;
}

.cost-slide-num--02, .cost-slide-num--03, .cost-slide-num--05 {
  width: 25px;
  width: 1.5625rem;
}

.cost-slide-num--04 {
  width: 24px;
  width: 1.5rem;
}

.about-fullorder__cost-slide-num {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.about-fullorder__cost-item-name {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.about-fullorder__cost-item-price {
  margin-top: 19px;
  margin-top: 1.1875rem;
}

.about-fullorder__cost-order-button {
  display: inline-block;
  margin-top: 34px;
  margin-top: 2.125rem;
  border: 1px solid #fff;
  border-radius: 2.15625rem;
  padding: 0 30px;
  padding: 0 1.875rem;
  position: relative;
}
.about-fullorder__cost-order-button:after {
  background: url(../images/common/button-arrow--white.png) no-repeat center left/contain;
  content: "";
  display: inline-block;
  position: absolute;
  top: 9px;
  top: 0.5625rem;
  bottom: 0;
  right: 14px;
  right: 0.875rem;
  width: 6px;
  width: 0.375rem;
  height: 7px;
  height: 0.4375rem;
}

.about-fullorder__flow {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .about-fullorder__flow {
    margin-top: 5.6875rem;
  }
}

.about-fullorder__flow-title, .about-fullorder__other-items-title {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .about-fullorder__flow-title, .about-fullorder__other-items-title {
    font-size: 2.5rem;
  }
}

.about-fullorder__flow--pink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-fullorder-flow__button-title {
  position: relative;
  text-align: center;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
  margin: 0 auto;
  padding: 0 14px;
  padding: 0 0.875rem;
}
.about-fullorder-flow__button-title::before, .about-fullorder-flow__button-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 32px;
  height: 2rem;
  background: rgb(0, 0, 0);
}
.about-fullorder-flow__button-title::before {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  left: 0;
}
.about-fullorder-flow__button-title::after {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  right: 0;
}

.about-fullorder-flow__button:first-of-type {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 600px) {
  .about-fullorder-flow__button:first-of-type {
    margin-right: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .about-fullorder-flow__button:first-of-type {
    margin-right: 2.1875rem;
    margin-bottom: 0;
  }
}
.about-fullorder-flow__button:first-of-type .order-flow__contact-button {
  background: #941315;
  color: #fff;
}

.order-flow__contact-button:hover {
  opacity: 0.8;
}

.about-fullorder__other-items {
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .about-fullorder__other-items {
    margin-top: 6.25rem;
    margin-bottom: 7.5rem;
  }
}

.about-fullorder__other-items p {
  line-height: 2;
}

#archive {
  width: 758px;
  width: 47.375rem;
  max-width: 100%;
}

.archive__slider {
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.archive__heading {
  background: #1B1A13;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
  padding: 7px 0 7px 24px;
  padding: 0.4375rem 0 0.4375rem 1.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.archive__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 39px 20px;
  gap: 2.4375rem 1.25rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .archive__list {
    padding-top: 2.25rem;
  }
}

.archive__item {
  position: relative;
  max-width: 369px;
  max-width: 23.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: 12px;
  gap: 0.75rem;
}

.archive__new-label {
  position: absolute;
  top: 0;
  left: 8px;
  left: 0.5rem;
  width: 27px;
  width: 1.6875rem;
  height: 52px;
  height: 3.25rem;
  background: url(../images/common/icon-new.png) center/contain no-repeat;
  z-index: 1;
}

.archive__image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1;
  overflow: hidden;
}

.archive__content {
  position: relative;
}

.archive__label {
  position: absolute;
  top: -40px;
  top: -2.5rem;
  left: 0;
  height: 28px;
  height: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  gap: 0.3125rem;
  background-color: #941315;
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: normal;
  padding-inline: 10px;
  padding-inline: 0.625rem;
}
.archive__label::before {
  content: "";
  width: 11px;
  width: 0.6875rem;
  height: 9px;
  height: 0.5625rem;
  background: url(../images/common/icon-folder.png) center/contain no-repeat;
}

.archive__date {
  color: #8B8B8B;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 28.8px;
  line-height: 1.8rem;
}

.archive__title {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: normal;
  margin-top: 1px;
  margin-top: 0.0625rem;
}

.archive__button {
  width: 101px;
  width: 6.3125rem;
  height: 33px;
  height: 2.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  gap: 0.8125rem;
  border-radius: 0.25rem;
  border: 1px solid #941315;
  background: #F7F6F6;
  color: #941315;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 28.8px;
  line-height: 1.8rem;
  margin: 17px 0 0 auto;
  margin: 1.0625rem 0 0 auto;
}
.archive__button::after {
  content: "";
  width: 5px;
  width: 0.3125rem;
  height: 8px;
  height: 0.5rem;
  background: url(../images/common/icon-right-arrow-red.png) center/contain no-repeat;
}

.pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #941315;
  margin: 61px auto 0;
  margin: 3.8125rem auto 0;
}
.pagination li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 28px;
  min-width: 1.75rem;
  height: 41px;
  height: 2.5625rem;
  color: #941315;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 600px) {
  .pagination li {
    min-width: 2.125rem;
  }
}
.pagination li + li {
  border-left: 1px solid #941315;
}
.pagination a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 8px;
  padding-inline: 0.5rem;
}
.pagination .current {
  background-color: #941315;
  color: #fff;
}
.pagination .prev a {
  gap: 5px;
  gap: 0.3125rem;
  text-transform: capitalize;
}
.pagination .prev a::before {
  content: "";
  width: 5px;
  width: 0.3125rem;
  height: 6px;
  height: 0.375rem;
  rotate: 180deg;
  background: url(../images/common/icon-pagination-arrow.png) center/contain no-repeat;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
.pagination .next a {
  gap: 5px;
  gap: 0.3125rem;
  text-transform: capitalize;
}
.pagination .next a::after {
  content: "";
  width: 5px;
  width: 0.3125rem;
  height: 6px;
  height: 0.375rem;
  background: url(../images/common/icon-pagination-arrow.png) center/contain no-repeat;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

#company {
  padding-block: 60px;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  #company {
    padding-block: 8.5625rem 7.3125rem;
  }
}

.company__inner {
  max-width: 1440px;
  max-width: 90rem;
}
@media screen and (min-width: 768px) {
  .company__inner {
    padding-inline: 0;
  }
}

@media screen and (min-width: 768px) {
  .company-head {
    padding-left: 11.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .company-head {
    padding-left: 15rem;
  }
}

@media screen and (min-width: 768px) {
  .company-heading {
    padding-left: 11.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .company-heading {
    padding-left: 15rem;
  }
}

#company-history {
  padding-block: 60px;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  #company-history {
    padding-block: 12.25rem 10.75rem;
  }
}

.swiper-container {
  position: relative;
}

.company-history__slider {
  padding-top: 32px;
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .company-history__slider {
    padding-top: 3.1875rem;
    padding-left: 11.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .company-history__slider {
    padding-left: 15rem;
  }
}

.company-history__slide {
  position: relative;
  width: 160px;
  width: 10rem;
  border-top: 1px solid #E7C3C4;
  padding-top: 23px;
  padding-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .company-history__slide {
    width: 18.125rem;
  }
}
.company-history__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 -50%;
  width: 9px;
  width: 0.5625rem;
  height: 9px;
  height: 0.5625rem;
  background: url(../images/common/icon-circle-pink.png) center/contain no-repeat;
}

.company-history__slide-year {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 28.8px;
}
@media screen and (min-width: 768px) {
  .company-history__slide-year {
    font-size: 1rem;
  }
}

.company-history__slide-text {
  width: 140px;
  width: 8.75rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 28.8px;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company-history__slide-text {
    width: 14.375rem;
    font-size: 1rem;
    margin-top: 1.875rem;
  }
}

.company-history__button-prev,
.company-history__button-next {
  top: -36px;
  top: -2.25rem;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  background: url(../images/common/button-icon-right-arrow-red.png) center/contain no-repeat;
  margin-top: 0;
}

.company-history__button-prev {
  left: unset;
  right: 63px;
  right: 3.9375rem;
  rotate: 180deg;
}
@media screen and (min-width: 768px) {
  .company-history__button-prev {
    right: 7.6875rem;
  }
}

.company-history__button-next {
  right: 20px;
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company-history__button-next {
    right: 5rem;
  }
}

#company-message {
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  #company-message {
    padding-top: 6.25rem;
  }
}

.company-message__list {
  max-width: 600px;
  max-width: 37.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .company-message__list {
    max-width: unset;
    padding-left: 10.625rem;
    margin: 0;
  }
}
@media screen and (min-width: 1440px) {
  .company-message__list {
    padding-left: 13.75rem;
  }
}

.company-message__item1 {
  position: relative;
  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-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company-message__item1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 9.4375rem;
    margin-top: 2rem;
  }
}

.company-message__item1-image {
  max-width: 718px;
  max-width: 44.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.company-message__item1-image img {
  border-radius: 0.625rem;
}

.company-message__item1-text--large {
  text-shadow: 0px 0px 4px rgba(34, 34, 34, .25);
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .company-message__item1-text--large {
    position: absolute;
    top: 1.125rem;
    left: 41.0625rem;
    font-size: 1.5rem;
  }
}

.company-message__item1-text--large-number {
  display: inline-block;
  width: 37px;
  width: 2.3125rem;
  vertical-align: text-bottom;
  margin-bottom: 1px;
  margin-bottom: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .company-message__item1-text--large-number {
    width: 2.8125rem;
  }
}

.company-message__item1-text {
  color: #111;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 28.8px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .company-message__item1-text {
    margin-bottom: 2.3125rem;
    margin-left: 0;
  }
}

.company-message__item2 {
  position: relative;
  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-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .company-message__item2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 3.75rem;
    margin-top: 7.125rem;
  }
}
@media screen and (min-width: 1440px) {
  .company-message__item2 {
    gap: 6rem;
  }
}
.company-message__item2::after {
  content: "";
  position: absolute;
  top: clamp(120px, 6.8px + 30.19vw, 200px);
  top: clamp(7.5rem, 0.425rem + 30.19vw, 12.5rem);
  left: -100px;
  left: -6.25rem;
  width: 300px;
  width: 18.75rem;
  aspect-ratio: 1;
  background: url(../images/company/message-bg.png) center/contain no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .company-message__item2::after {
    top: -1.125rem;
    left: 22.625rem;
    width: 40.1875rem;
  }
}

.company-message__item2-image {
  max-width: 489px;
  max-width: 30.5625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .company-message__item2-image {
    margin: 0;
  }
}
.company-message__item2-image img {
  border-radius: 0.625rem;
}

.company-message__item-text {
  color: #111;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .company-message__item-text {
    width: 32.875rem;
  }
}
.company-message__item-text + .company-message__item-text {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company-message__item-text + .company-message__item-text {
    margin-top: 2rem;
  }
}

.company-message__item3 {
  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-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .company-message__item3 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.75rem;
    margin-top: 6rem;
    margin-left: -10.625rem;
  }
}
@media screen and (min-width: 1440px) {
  .company-message__item3 {
    margin-left: -13.75rem;
  }
}

.company-message__item3-image {
  max-width: 598px;
  max-width: 37.375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.company-message__item3-image img {
  border-radius: 0.625rem;
}

.company-message__item3-text--large {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2;
  margin: 32px 0 0 auto;
  margin: 2rem 0 0 auto;
}
@media screen and (min-width: 768px) {
  .company-message__item3-text--large {
    width: 31.875rem;
    font-size: 1.5rem;
    margin: 5rem 0 0 5.8125rem;
  }
}

.company-message__item3-text--large-red {
  color: #941315;
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .company-message__item3-text--large-red {
    font-size: 1.875rem;
  }
}

#company-overview {
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  #company-overview {
    padding-top: 5.125rem;
  }
}
#company-overview::after {
  content: "";
  position: absolute;
  bottom: -140px;
  bottom: -8.75rem;
  left: -60px;
  left: -3.75rem;
  width: 300px;
  width: 18.75rem;
  aspect-ratio: 0.8947368421;
  background: url(../images/company/overview-bg.png) center/contain no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  #company-overview::after {
    bottom: -12.6875rem;
    left: 1.75rem;
    width: 36.125rem;
  }
}

.company-overview__list {
  max-width: 600px;
  max-width: 37.5rem;
  border-radius: 1.25rem;
  background: #F9F9F9;
  -webkit-box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, .04);
          box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, .04);
  padding: 24px 20px 32px;
  padding: 1.5rem 1.25rem 2rem;
  margin: 16px auto 0;
  margin: 1rem auto 0;
}
@media screen and (min-width: 768px) {
  .company-overview__list {
    max-width: 62.5rem;
    padding: 2.375rem 8.75rem 3.75rem;
    margin-top: 1.4375rem;
  }
}

.company-overview__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  border-bottom: 1px solid #E7C3C4;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 28.8px;
  padding: 8px 0;
  padding: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .company-overview__item {
    gap: 2.5rem;
    font-size: 1rem;
    padding: 1.34375rem 0 1.34375rem 2.0625rem;
  }
}
.company-overview__item dt {
  width: 120px;
  width: 7.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .company-overview__item dt {
    width: 11.125rem;
  }
}

#contact-form {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  #contact-form {
    padding-top: 8.125rem;
  }
}

#order-form {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  #order-form {
    padding-top: 8.125rem;
  }
}
#order-form .form__list .wpcf7-list-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  margin: 0 28px 0 0;
  margin: 0 1.75rem 0 0;
}

.input_area .form__item-input {
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.input_area .form__item-input:focus {
  border-color: #941315;
}
@media screen and (min-width: 768px) {
  .input_area .form__item-input:focus, .input_area .form__item-input:hover {
    border-color: #941315;
  }
}

@media screen and (min-width: 768px) {
  .form__inner {
    max-width: 90rem;
  }
}

@media screen and (min-width: 768px) {
  .form__heading1 {
    padding-left: 13.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .form__heading2 {
    padding-left: 9.0625rem;
  }
}

.form__lead {
  color: #222;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .form__lead {
    padding-left: 13.4375rem;
    margin-top: 4rem;
  }
}

.form__flow {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .form__flow {
    margin-top: 6.75rem;
  }
}

.form__flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__flow-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  gap: 0.6875rem;
  color: #D5D5D5;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
}
.form__flow-text::before {
  content: "";
  height: 15px;
  height: 0.9375rem;
}
.form__flow-text.current {
  color: #555;
}
.form__flow-text:nth-of-type(1)::before {
  width: 15px;
  width: 0.9375rem;
  background: url(../images/form/form-flow-number1.png) center/contain no-repeat;
}
.form__flow-text:nth-of-type(1).current::before {
  background-image: url(../images/form/form-flow-number-current1.png);
}
.form__flow-text:nth-of-type(3)::before {
  width: 19px;
  width: 1.1875rem;
  background: url(../images/form/form-flow-number2.png) center/contain no-repeat;
}
.form__flow-text:nth-of-type(3).current::before {
  background-image: url(../images/form/form-flow-number-current2.png);
}
.form__flow-text:nth-of-type(5)::before {
  width: 18px;
  width: 1.125rem;
  background: url(../images/form/form-flow-number3.png) center/contain no-repeat;
}
.form__flow-text:nth-of-type(5).current::before {
  background-image: url(../images/form/form-flow-number-current3.png);
}

.form__flow-border {
  width: 48px;
  width: 3rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #555;
  margin-inline: 8px;
  margin-inline: 0.5rem;
}
@media screen and (min-width: 600px) {
  .form__flow-border {
    width: 9.125rem;
    margin-inline: 1.25rem;
  }
}

.form__list {
  max-width: 680px;
  max-width: 42.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  gap: 1.875rem;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (min-width: 768px) {
  .form__list {
    margin-top: 8.3125rem;
  }
}

.form__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  gap: 1.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .form__item-title {
    gap: 3.25rem;
  }
}

.form__item-label {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .form__item-label {
    font-size: 1.125rem;
  }
}

.form__item-required {
  color: #A02F31;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .form__item-required {
    font-size: 1.125rem;
  }
}

.form__item-input {
  width: 100%;
  border-radius: 0.5rem;
  background: #F9F9F9;
  border: 2px solid #F9F9F9;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  padding: 10px 27px;
  padding: 0.625rem 1.6875rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .form__item-input {
    font-size: 1.125rem;
  }
}

.textarea {
  height: 184px;
  height: 11.5rem;
}

.form__item-input-number {
  width: 264px;
  width: 16.5rem;
}

.form__item-check {
  display: inline-block;
  margin: 6px 0 0 5px;
  margin: 0.375rem 0 0 0.3125rem;
}
.form__item-check input + span {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  padding-left: 1.75rem;
}
.form__item-check input + span::before, .form__item-check input + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.form__item-check input + span::before {
  width: 20px;
  width: 1.25rem;
  height: 21px;
  height: 1.3125rem;
  border: 1px solid #222;
  background-color: #fff;
}
.form__item-check input + span::after {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  display: none;
  background: url(../images/common/icon-check.png) center/contain no-repeat;
}
.form__item-check input + span:focus::before, .form__item-check input + span:hover::before {
  border-color: #941315;
}
.form__item-check input:checked + span::before {
  background-color: #941315;
  border-color: #941315;
}
.form__item-check input:checked + span::after {
  display: block;
}

.form__privacy-policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .form__privacy-policy {
    font-size: 1.125rem;
  }
}

.form__privacy-check-box[type=checkbox] {
  display: block;
}

.form__privacy-check-box {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  padding-left: 1.75rem;
}
.form__privacy-check-box::before, .form__privacy-check-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.form__privacy-check-box::before {
  width: 20px;
  width: 1.25rem;
  height: 21px;
  height: 1.3125rem;
  border: 1px solid #222;
  background-color: #fff;
}
.form__privacy-check-box::after {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  display: none;
  background: url(../images/common/icon-check.png) center/contain no-repeat;
}
.form__privacy-check-box:focus::before, .form__privacy-check-box:hover::before {
  border-color: #941315;
}
.form__privacy-check-box:checked::before {
  background-color: #941315;
  border-color: #941315;
}
.form__privacy-check-box:checked::after {
  display: block;
}

.form__privacy-policy-text {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .form__privacy-policy-text {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .form__privacy-policy-text:hover {
    color: #941315;
  }
}

.form__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (min-width: 768px) {
  .form__button {
    margin-top: 9.625rem;
  }
}
.form__button .button {
  color: #941315;
}
.form__button #js-confirm-button {
  background-color: #999;
}

.wpcf7-submit:disabled,
.confirm_button:disabled {
  background-color: #999;
  pointer-events: none;
}

.contact-form__banner {
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact-form__banner {
    padding-top: 4.5rem;
  }
}
.contact-form__banner.is-confirm {
  display: none;
}

.confirm_button {
  display: none;
}

@media screen and (min-width: 768px) {
  .form-confirm__button {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .form-confirm__button .wpcf7-spinner {
    display: none;
  }
}
.form-confirm__button #js-prev-button {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .form-confirm__button #js-prev-button {
    margin: 0 2.5rem 0 0;
  }
}
.form-confirm__button #js-prev-button::after {
  display: none;
}
.form-confirm__button #js-submit-button {
  background-color: #941315;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .form-confirm__button #js-submit-button {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .form-confirm__button #js-submit-button:hover {
    opacity: 0.8;
  }
}

.thanks_area {
  position: relative;
}
.thanks_area::after {
  content: "";
  position: absolute;
  top: 60px;
  top: 3.75rem;
  right: -20px;
  right: -1.25rem;
  width: 300px;
  width: 18.75rem;
  aspect-ratio: 0.7768786127;
  background: url(../images/common/ito-bg.png) center/contain no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .thanks_area::after {
    top: -7.5rem;
    right: -1.5625rem;
    width: 37.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .thanks_area::after {
    width: 42rem;
  }
}

.form__thanks-item-text {
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 28.8px;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .form__thanks-item-text {
    font-size: 1rem;
    margin-top: 7.75rem;
  }
}

.form__thanks-button {
  margin-block: 60px 100px;
  margin-block: 3.75rem 6.25rem;
}
@media screen and (min-width: 768px) {
  .form__thanks-button {
    margin-block: 8.375rem 11.9375rem;
  }
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

#not-found {
  padding-block: 68px 88px;
  padding-block: 4.25rem 5.5rem;
}
@media screen and (min-width: 768px) {
  #not-found {
    padding-block: 8.6875rem 11.25rem;
  }
}

.not-found__inner {
  position: relative;
  max-width: 1440px;
  max-width: 90rem;
  margin-inline: auto;
}
.not-found__inner::after {
  content: "";
  position: absolute;
  top: -60px;
  top: -3.75rem;
  right: 0;
  width: 300px;
  width: 18.75rem;
  aspect-ratio: 0.7768786127;
  background: url(../images/common/ito-bg.png) center/contain no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .not-found__inner::after {
    top: -7.5rem;
    width: 37.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .not-found__inner::after {
    width: 42rem;
  }
}

.not-found__heading {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .not-found__heading {
    margin-left: 10.625rem;
  }
}

.not-found__text {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 28.8px;
  line-height: 1.8rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .not-found__text {
    margin-top: 3.3125rem;
  }
}

.not-found__button {
  color: #941315;
  margin: 24px auto 0;
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .not-found__button {
    margin-top: 2.8125rem;
  }
}

#order-flow {
  position: relative;
  padding-block: 60px;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  #order-flow {
    padding-block: 8.625rem 9.5625rem;
  }
}
#order-flow::before {
  content: "";
  position: absolute;
  top: 0px;
  top: 0rem;
  right: 0;
  width: 300px;
  width: 18.75rem;
  aspect-ratio: 0.7373868047;
  background: url(../images/order-flow/order-flow-bg.png) center/contain no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  #order-flow::before {
    top: -4.375rem;
    width: 35.625rem;
  }
}

.order-flow__inner {
  max-width: 1440px;
  max-width: 90rem;
}

@media screen and (min-width: 768px) {
  .order-flow__heading {
    padding-left: 9.6875rem;
  }
}
@media screen and (min-width: 1440px) {
  .order-flow__heading {
    padding-left: 12.1875rem;
  }
}

.order-flow__list {
  max-width: 600px;
  max-width: 37.5rem;
  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;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (min-width: 768px) {
  .order-flow__list {
    max-width: unset;
    margin: 6.625rem 0 0;
  }
}

.order-flow__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .order-flow__item {
    width: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 6.6875rem;
  }
}
.order-flow__item:nth-of-type(1) .order-flow__item-number {
  width: 39px;
  width: 2.4375rem;
  margin-right: 12px;
  margin-right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .order-flow__item:nth-of-type(1) .order-flow__item-number {
    width: 4.625rem;
    margin-right: 1.375rem;
  }
}

.order-flow__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .order-flow__head {
    width: 23.875rem;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    border-right: 2px solid #CC8989;
  }
}

.order-flow__item-number {
  width: 48px;
  width: 3rem;
}
@media screen and (min-width: 768px) {
  .order-flow__item-number {
    width: 5.9375rem;
  }
}

.order-flow__item-title {
  color: #941315;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .order-flow__item-title {
    font-size: 1.25rem;
  }
}

.order-flow__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .order-flow__item-content {
    width: 38.0625rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
    padding-left: 3rem;
    margin: 0;
  }
}

.order-flow__item-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 120px;
  width: 7.5rem;
}
@media screen and (min-width: 600px) {
  .order-flow__item-image {
    width: 11.0625rem;
  }
}

.order-flow__item-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .order-flow__item-text {
    font-size: 1rem;
  }
}

.order-flow__arrow {
  width: 48px;
  width: 3rem;
  aspect-ratio: 1.9333333333;
  background: url(../images/common/icon-down-arrow.png) center/contain no-repeat;
  margin-block: 32px 40px;
  margin-block: 2rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .order-flow__arrow {
    width: 3.625rem;
    margin-block: 3.75rem 4.625rem;
  }
}

.order-flow__contact-text {
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .order-flow__contact-text {
    font-size: 1rem;
  }
}

.order-flow__contact-button {
  width: 300px;
  width: 18.75rem;
  height: 48px;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.25rem;
  border: 1px solid #941315;
  color: #941315;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  margin: 26px auto 0;
  margin: 1.625rem auto 0;
}
@media screen and (min-width: 768px) {
  .order-flow__contact-button {
    width: 25.375rem;
    height: 4.3125rem;
    font-size: 1.25rem;
  }
}

#privacy {
  padding-block: 60px;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  #privacy {
    padding-block: 7.5rem 7.5625rem;
  }
}

.privacy__inner {
  max-width: 1008px;
  max-width: 63rem;
}

.privacy__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .privacy__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
  }
}

.privacy__heading--small {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .privacy__heading--small {
    font-size: 1.5rem;
  }
}

.privacy__lead {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 28.8px;
  line-height: 1.8rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .privacy__lead {
    margin-top: 7.25rem;
  }
}

.privacy__list {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  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: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .privacy__list {
    gap: 3.0625rem;
    margin-top: 4.0625rem;
  }
}

.privacy__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .privacy__item-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1.875rem;
  }
}

.privacy__item-chapter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 32px;
  line-height: 2rem;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
}

.privacy__item-chapter--large {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 3.2px;
  letter-spacing: 0.2rem;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
}
@media screen and (min-width: 768px) {
  .privacy__item-chapter--large {
    font-size: 2rem;
    margin-bottom: 0.25rem;
  }
}

.privacy__item-heading {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .privacy__item-heading {
    font-size: 1.5rem;
  }
}

.privacy__item-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 28.8px;
  line-height: 1.8rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .privacy__item-text {
    margin-top: 1.75rem;
  }
}

.privacy__button {
  color: #941315;
  margin: 80px auto 0;
  margin: 5rem auto 0;
}
@media screen and (min-width: 768px) {
  .privacy__button {
    margin-top: 10.625rem;
  }
}

#article {
  max-width: 600px;
  max-width: 37.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  #article {
    width: 47.375rem;
    max-width: 100%;
    margin: 0;
  }
}

.article__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.article__label {
  min-width: 89px;
  min-width: 5.5625rem;
  display: grid;
  place-items: center;
  border-radius: 0.1875rem;
  background: #1B1A13;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  padding: 3.5px 10px;
  padding: 0.21875rem 0.625rem;
}

.article__date {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: normal;
  margin-top: 11px;
  margin-top: 0.6875rem;
}

.article__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: normal;
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .article__title {
    font-size: 1.75rem;
  }
}

.article__tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.article__tag-item {
  height: 29px;
  height: 1.8125rem;
  display: grid;
  place-items: center;
  border-radius: 0.1875rem;
  background: #F7F6F6;
  color: #555;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: normal;
  padding-inline: 10px;
  padding-inline: 0.625rem;
}

.wp-block-image {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .wp-block-image {
    margin-bottom: 2.25rem;
  }
}

.article__body {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .article__body {
    margin-top: 1.875rem;
  }
}
.article__body h2 {
  width: 100%;
  background: #FAFAFA;
  border-left: 6px solid #941315;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
  padding: 20px 0 20px 29px;
  padding: 1.25rem 0 1.25rem 1.8125rem;
  margin-block: 32px 16px;
  margin-block: 2rem 1rem;
}
@media screen and (min-width: 768px) {
  .article__body h2 {
    font-size: 1.5rem;
    padding: 1.5rem 0 1.5rem 1.8125rem;
    margin-block: 3.5rem 1.5rem;
  }
}
.article__body h3 {
  color: #941315;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  margin-block: 20px 16px;
  margin-block: 1.25rem 1rem;
}
@media screen and (min-width: 768px) {
  .article__body h3 {
    font-size: 1.25rem;
    margin-block: 2rem 1.5rem;
  }
}
.article__body p {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: normal;
  line-height: 27px;
  line-height: 1.6875rem;
}
.article__body p + p {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .article__body p + p {
    margin-top: 2rem;
  }
}
.article__body .article__menu {
  width: 100%;
  background: #FAFAFA;
  padding: 16px 0 20px 30px;
  padding: 1rem 0 1.25rem 1.875rem;
  margin-block: 16px 24px;
  margin-block: 1rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .article__body .article__menu {
    padding: 1.3125rem 0 1.625rem 1.875rem;
    margin-block: 1.5rem 2rem;
  }
}
.article__body .article__menu-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
}
.article__body .article__menu-list {
  margin-top: 9px;
  margin-top: 0.5625rem;
}
.article__body .article__menu-list li {
  list-style: disc;
  margin-left: 25px;
  margin-left: 1.5625rem;
}
.article__body .article__menu-list li::marker {
  font-size: 14px;
  font-size: 0.875rem;
}
.article__body .article__menu-list a {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 32px;
  line-height: 2rem;
}

#toc_container {
  width: 100%;
  background: #FAFAFA;
  padding: 21px 30px;
  padding: 1.3125rem 1.875rem;
  margin-block: 12px 16px;
  margin-block: 0.75rem 1rem;
}
@media screen and (min-width: 768px) {
  #toc_container {
    margin-block: 1.5rem 2rem;
  }
}
#toc_container .toc_title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  #toc_container .toc_title {
    font-size: 1.25rem;
  }
}
#toc_container .toc_list {
  margin: 9px 0 0 30px;
  margin: 0.5625rem 0 0 1.875rem;
}
#toc_container .toc_list li {
  list-style: disc;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 32px;
}
@media screen and (min-width: 768px) {
  #toc_container .toc_list a {
    -webkit-transition: color 0.3s, -webkit-text-decoration 0.3s;
    transition: color 0.3s, -webkit-text-decoration 0.3s;
    transition: color 0.3s, text-decoration 0.3s;
    transition: color 0.3s, text-decoration 0.3s, -webkit-text-decoration 0.3s;
  }
  #toc_container .toc_list a:hover {
    color: #941315;
    -webkit-text-decoration: underline 1px #941315;
            text-decoration: underline 1px #941315;
  }
}

#top-column {
  position: relative;
  padding-block: 76px 80px;
  padding-block: 4.75rem 5rem;
}
@media screen and (min-width: 768px) {
  #top-column {
    max-width: 90rem;
    padding-block: 9.6875rem 9.8125rem;
    margin-inline: auto;
  }
}
#top-column::before {
  content: "";
  position: absolute;
  top: -328px;
  top: -20.5rem;
  right: 0;
  width: 700px;
  width: 43.75rem;
  overflow: hidden;
  aspect-ratio: 0.6691449814;
  background: url(../images/top/ito-3.png) center/contain no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  #top-column::before {
    top: -35rem;
    width: 100%;
    max-width: 90rem;
  }
}
@media screen and (min-width: 1024px) {
  #top-column::before {
    top: -41.4375rem;
  }
}

.top-column__inner {
  max-width: 1325px;
  max-width: 82.8125rem;
}

.top-column__heading {
  width: 213.12px;
  width: 13.32rem;
}
@media screen and (min-width: 768px) {
  .top-column__heading {
    width: 20.25rem;
  }
}

.top-column__heading--small {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .top-column__heading--small {
    margin-top: 1.6875rem;
  }
}

.top-column__lead {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 200%;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .top-column__lead {
    margin-top: 1.75rem;
  }
}

.top-column__list {
  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;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 600px) {
  .top-column__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 768px) {
  .top-column__list {
    gap: 2.1875rem;
    margin-top: 5.125rem;
  }
}

.top-column__item {
  max-width: 402px;
  max-width: 25.125rem;
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .top-column__item {
    gap: 1.5rem;
  }
}

.top-column__item-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 402px;
  max-width: 25.125rem;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.625rem;
}
.top-column__item-image img {
  border-radius: 0.625rem;
}

.top-column__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.top-column__item-text {
  font-family: "Hannari", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .top-column__item-text {
    font-size: 1rem;
  }
}

.top-column__item-title {
  font-family: "Hannari", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
  margin-top: -2px;
  margin-top: -0.125rem;
}
@media screen and (min-width: 768px) {
  .top-column__item-title {
    font-size: 1.5rem;
  }
}

#top-main-visual {
  position: relative;
  padding-top: 84px;
  padding-top: 5.25rem;
}
@media screen and (min-width: 768px) {
  #top-main-visual {
    padding-top: 10.5rem;
  }
}

.top-main-visual__inner {
  position: relative;
  max-width: 1440px;
  max-width: 90rem;
  margin-inline: auto;
}
.top-main-visual__inner::after {
  content: "";
  position: absolute;
  top: 80px;
  top: 5rem;
  right: 0;
  width: 600px;
  width: 37.5rem;
  overflow: hidden;
  aspect-ratio: 1.2255319149;
  background: url(../images/top/ito-1.png) center/contain no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-main-visual__inner::after {
    top: -1.25rem;
    width: 95%;
    max-width: 90rem;
  }
}
@media screen and (min-width: 1440px) {
  .top-main-visual__inner::after {
    width: 100%;
  }
}

.top-main-visual__title {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  line-height: normal;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-main-visual__title {
    font-size: 2.5rem;
    padding-left: 9.6875rem;
  }
}

.top-main-visual__title-text {
  position: relative;
  display: block;
}
.top-main-visual__title-text + .top-main-visual__title-text {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .top-main-visual__title-text + .top-main-visual__title-text {
    margin-top: 1.625rem;
  }
}
.top-main-visual__title-text::before {
  position: absolute;
  top: -14px;
  top: -0.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
.top-main-visual__title-text:nth-of-type(1)::before {
  content: "まと";
  left: 192px;
  left: 12rem;
}
@media screen and (min-width: 768px) {
  .top-main-visual__title-text:nth-of-type(1)::before {
    left: 15.5rem;
  }
}
.top-main-visual__title-text:nth-of-type(2)::before {
  content: "つく";
  left: 256px;
  left: 16rem;
}
@media screen and (min-width: 768px) {
  .top-main-visual__title-text:nth-of-type(2)::before {
    left: 20.4375rem;
  }
}

.top-main-visual__scroll-down {
  position: absolute;
  top: 168px;
  top: 10.5rem;
  left: 50%;
  translate: -50%;
  width: 10px;
  width: 0.625rem;
}
@media screen and (min-width: 768px) {
  .top-main-visual__scroll-down {
    top: 6.3125rem;
    left: 5.125rem;
    translate: 0;
  }
}
.top-main-visual__scroll-down img {
  rotate: -90deg;
}
@media screen and (min-width: 768px) {
  .top-main-visual__scroll-down img {
    rotate: 0deg;
  }
}
.top-main-visual__scroll-down::before {
  content: "";
  position: absolute;
  top: -50px;
  top: -3.125rem;
  left: 0;
  width: 1px;
  width: 0.0625rem;
  height: 60px;
  height: 3.75rem;
  background-color: #941315;
  -webkit-animation: pathmove-sp 1.4s ease-in-out infinite;
          animation: pathmove-sp 1.4s ease-in-out infinite;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .top-main-visual__scroll-down::before {
    top: -5.8125rem;
    left: 0.125rem;
    -webkit-animation: pathmove-pc 1.4s ease-in-out infinite;
            animation: pathmove-pc 1.4s ease-in-out infinite;
  }
}

.top-main-visual__slider {
  margin-top: 110px;
  margin-top: 6.875rem;
}
@media screen and (min-width: 768px) {
  .top-main-visual__slider {
    margin-top: 9.375rem;
  }
}

.top-main-visual__slide img {
  border-radius: 0.625rem;
}

@-webkit-keyframes pathmove-sp {
  0% {
    height: 0;
    top: -3.125rem;
    opacity: 0;
  }
  30% {
    height: 3.75rem;
    opacity: 1;
  }
  100% {
    height: 0;
    top: -0.25rem;
    opacity: 0;
  }
}

@keyframes pathmove-sp {
  0% {
    height: 0;
    top: -3.125rem;
    opacity: 0;
  }
  30% {
    height: 3.75rem;
    opacity: 1;
  }
  100% {
    height: 0;
    top: -0.25rem;
    opacity: 0;
  }
}
@-webkit-keyframes pathmove-pc {
  0% {
    height: 0;
    top: -5.8125rem;
    opacity: 0;
  }
  30% {
    height: 3.75rem;
    opacity: 1;
  }
  100% {
    height: 0;
    top: -1.4375rem;
    opacity: 0;
  }
}
@keyframes pathmove-pc {
  0% {
    height: 0;
    top: -5.8125rem;
    opacity: 0;
  }
  30% {
    height: 3.75rem;
    opacity: 1;
  }
  100% {
    height: 0;
    top: -1.4375rem;
    opacity: 0;
  }
}
#top-news {
  position: relative;
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  #top-news {
    padding-top: 7.5rem;
  }
}
#top-news::after {
  content: "";
  position: absolute;
  top: 36.5px;
  top: 2.28125rem;
  left: 0;
  width: 173px;
  width: 10.8125rem;
  height: 280px;
  height: 17.5rem;
  background: url(../images/top/news-bg.png) center/contain no-repeat;
  z-index: -1;
}

.top-news__inner {
  position: relative;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, .04);
          box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, .04);
  background: #F9F9F9;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-news__inner {
    padding-bottom: 5.625rem;
  }
}

.top-news__heading {
  width: 140.8px;
  width: 8.8rem;
}
@media screen and (min-width: 768px) {
  .top-news__heading {
    width: 13.75rem;
    margin-left: 1rem;
  }
}

.top-news__heading--small {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-news__heading--small {
    margin-top: 2.875rem;
    margin-left: 6.875rem;
  }
}

.top-news__list {
  max-width: 1100px;
  max-width: 68.75rem;
  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: 48px auto 0;
  margin: 3rem auto 0;
}
@media screen and (min-width: 1024px) {
  .top-news__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.top-news__item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 1px solid #E7C3C4;
  padding-block: 8px 24px;
  padding-block: 0.5rem 1.5rem;
  padding-inline: 40px 60px;
  padding-inline: 2.5rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .top-news__item:hover .top-news__item-text {
    color: #941315;
  }
  .top-news__item:hover .top-news__item-text::before {
    scale: 1 1;
  }
}
@media screen and (min-width: 1024px) {
  .top-news__item {
    border-bottom: 0;
    border-right: 1px solid #E7C3C4;
    padding-left: 0;
  }
}
.top-news__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  right: 1.875rem;
  translate: -50%;
  width: 5.5px;
  width: 0.34375rem;
  height: 9px;
  height: 0.5625rem;
  background: url(../images/common/icon-right-arrow.png) center/contain no-repeat;
}

.top-news__item-date {
  color: #555;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
}

.top-news__item-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.top-news__link {
  position: absolute;
  top: 153px;
  top: 9.5625rem;
  right: 20px;
  right: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  color: #555;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .top-news__link {
    right: 7.1875rem;
  }
}
.top-news__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  left: -1.5rem;
  translate: 0 -50%;
  width: 11px;
  width: 0.6875rem;
  height: 11px;
  height: 0.6875rem;
  background: url(../images/common/icon-cross.png) center/contain no-repeat;
}

#top-products {
  padding-top: 100px;
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  #top-products {
    padding-top: 12.5rem;
  }
}

.top-products__inner {
  position: relative;
  max-width: 1440px;
  max-width: 90rem;
  border-radius: 2.25rem;
  -webkit-box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, .04);
          box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, .04);
  background: #1B1A13;
  padding: 45px 20px 60px;
  padding: 2.8125rem 1.25rem 3.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-products__inner {
    border-radius: 3.3125rem;
    padding: 2.8125rem 0 10.875rem;
  }
}

.top-products__heading {
  width: 326.4px;
  width: 20.4rem;
}
@media screen and (min-width: 768px) {
  .top-products__heading {
    width: 31.875rem;
    margin-left: 5.25rem;
  }
}

.top-products__image {
  max-width: 608px;
  max-width: 38rem;
  aspect-ratio: 1.4074074074;
  overflow: hidden;
  border-radius: 1.25rem;
  margin: 32px auto 0;
  margin: 2rem auto 0;
}
@media screen and (min-width: 768px) {
  .top-products__image {
    position: absolute;
    top: 10.8125rem;
    right: 0;
    max-width: 38.6875rem;
    aspect-ratio: unset;
    overflow: unset;
    border-radius: 0;
    margin: 0;
  }
}
.top-products__image img {
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-products__image img {
    border-radius: 1.25rem 0px 0px 1.25rem;
  }
}

.top-products__content {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-products__content {
    margin-top: 5.1875rem;
  }
}

.top-products__title {
  color: #fff;
  font-family: "Hannari", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 200%;
}
@media screen and (min-width: 600px) {
  .top-products__title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .top-products__title {
    margin-left: 11rem;
  }
}

.top-products__text {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 200%;
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .top-products__text {
    max-width: 29.3125rem;
    width: 100%;
    font-size: 1.25rem;
    margin: 4.6875rem 0 0 10.3125rem;
  }
}
.top-products__text + .top-products__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-products__text + .top-products__text {
    margin-top: 2.5rem;
  }
}

.top-products__button {
  margin: 32px auto 0;
  margin: 2rem auto 0;
}
@media screen and (min-width: 768px) {
  .top-products__button {
    margin: 3.5rem 0 0 10.625rem;
  }
}

#top-service {
  position: relative;
  padding-top: 64px;
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  #top-service {
    padding-top: 8.125rem;
  }
}
#top-service::after {
  content: "";
  position: absolute;
  bottom: -55px;
  bottom: -3.4375rem;
  left: 0;
  width: 300px;
  width: 18.75rem;
  height: 426px;
  height: 26.625rem;
  background: url(../images/top/service-bg.png) center/contain no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  #top-service::after {
    bottom: -9.6875rem;
    width: 28.3125rem;
    height: 40.1875rem;
  }
}

.top-service__inner {
  position: relative;
}
@media screen and (min-width: 1440px) {
  .top-service__inner {
    max-width: 90rem;
    padding-inline: 5rem;
  }
}
.top-service__inner::before {
  content: "";
  position: absolute;
  top: -360px;
  top: -22.5rem;
  right: 0;
  width: 700px;
  width: 43.75rem;
  overflow: hidden;
  aspect-ratio: 0.8988764045;
  background: url(../images/top/ito-2.png) center/contain no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-service__inner::before {
    top: -37.75rem;
    width: 100%;
    max-width: 90rem;
  }
}

.top-service__heading {
  width: 202.24px;
  width: 12.64rem;
}
@media screen and (min-width: 768px) {
  .top-service__heading {
    width: 19.75rem;
  }
}

.top-service__heading--small {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .top-service__heading--small {
    margin-top: 1.5625rem;
  }
}

.top-service__list {
  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;
  gap: 40px;
  gap: 2.5rem;
  margin-top: 33px;
  margin-top: 2.0625rem;
}
@media screen and (min-width: 1024px) {
  .top-service__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 6.875rem 3.8125rem;
  }
}

.top-service__item {
  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;
  max-width: 608px;
  max-width: 38rem;
}
@media screen and (min-width: 768px) {
  .top-service__item {
    gap: 3rem;
    max-width: 47.5rem;
  }
}
.top-service__item:nth-of-type(1) .top-service__item-button::after {
  background-image: url(../images/common/button-icon-two-squares.png);
}
@media screen and (min-width: 1024px) {
  .top-service__item:nth-of-type(3) {
    max-width: 100%;
    grid-column: 1/3;
  }
}
.top-service__item:nth-of-type(3) .top-service__item-image {
  position: relative;
}
.top-service__item:nth-of-type(3) .top-service__item-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #424242;
  opacity: 0.15;
  border-radius: 0.625rem;
}
@media screen and (min-width: 1024px) {
  .top-service__item:nth-of-type(3) .top-service__item-image::after {
    border-radius: 1.25rem;
  }
}
.top-service__item:nth-of-type(3) img {
  border-radius: 0.625rem;
}
@media screen and (min-width: 1024px) {
  .top-service__item:nth-of-type(3) img {
    border-radius: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-service__item:nth-of-type(3) .top-service__item-content {
    position: absolute;
    bottom: -1.375rem;
    right: 0rem;
    width: 33.25rem;
    border-radius: 1.25rem;
    background-color: #fff;
    padding: 3rem 2.5rem 3.75rem 3.75rem;
    z-index: 1;
  }
}
@media screen and (min-width: 1440px) {
  .top-service__item:nth-of-type(3) .top-service__item-content {
    right: 3.25rem;
  }
}
.top-service__item:nth-of-type(3) .top-service__item-title {
  letter-spacing: 2.4px;
  letter-spacing: 0.15rem;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 1024px) {
  .top-service__item:nth-of-type(3) .top-service__item-button {
    top: unset;
    bottom: 0;
    right: 2.5rem;
  }
}

.top-service__item-image img {
  border-radius: 0.625rem;
}

.top-service__item-content {
  position: relative;
}

.top-service__item-text1 {
  color: #422525;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .top-service__item-text1 {
    font-size: 1rem;
  }
}

.top-service__item-title {
  font-family: "Hannari", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
  margin-top: 9px;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .top-service__item-title {
    font-size: 1.5rem;
  }
}

.top-service__item-text2 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 200%;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .top-service__item-text2 {
    font-size: 1rem;
  }
}
.top-service__item-text2 + .top-service__item-text2 {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.top-service__item-button {
  color: #941315;
  margin: 20px 0 0 auto;
  margin: 1.25rem 0 0 auto;
}
@media screen and (min-width: 1024px) {
  .top-service__item-button {
    position: absolute;
    top: -0.1875rem;
    right: -0.1875rem;
    margin: 0;
  }
}

.top-welfare__inner {
  max-width: 608px;
  max-width: 38rem;
  width: 100%;
  padding: 0;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .04);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .04);
  margin-top: 190px;
  margin-top: 11.875rem;
}
@media screen and (min-width: 768px) {
  .top-welfare__inner {
    max-width: 69.0625rem;
  }
}

.top-welfare__content {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .top-welfare__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.top-welfare__left-imagebox,
.top-welfare__right-imagebox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-welfare__left-imagebox img,
.top-welfare__right-imagebox img {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .top-welfare__left-imagebox,
  .top-welfare__right-imagebox {
    max-width: 18.375rem;
    display: block;
  }
  .top-welfare__left-imagebox img,
  .top-welfare__right-imagebox img {
    width: 100%;
  }
}

.top-welfare__center-description {
  max-width: 527px;
  max-width: 32.9375rem;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .top-welfare__center-description {
    margin-bottom: 0rem;
    border-bottom: 1px solid #D9D9D9;
  }
}

.top-welfare__heading {
  max-width: 363px;
  max-width: 22.6875rem;
  width: 100%;
  margin: 0 auto;
  padding-top: 35px;
  padding-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .top-welfare__heading {
    padding-top: 4.6875rem;
  }
}

.top-welfare__detail {
  max-width: 341px;
  max-width: 21.3125rem;
  width: 100%;
  font-size: 17px;
  font-size: 1.0625rem;
  margin: 0 auto;
}

.top-welfare__button-area {
  margin-top: 58px;
  margin-top: 3.625rem;
}
.top-welfare__button-area p {
  font-size: 15px;
  font-size: 0.9375rem;
}

.top-welfare__item-button {
  margin: 0 auto;
  margin-top: 7.9px;
  margin-top: 0.49375rem;
}

.top-welfare__item-button:after {
  background-image: url(../images/common/button-icon-two-squares.png);
}
/*# sourceMappingURL=styles.css.map */
