@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Roboto", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

a.bg-left:hover {
  opacity: 1;
}

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

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

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

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

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

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

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

a {
  text-decoration: none;
}

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

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

body.is-scroll {
  overflow: hidden;
}

.header {
  height: 80px;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .header {
    height: 80px;
    background-color: transparent;
  }
}

.header.is-active {
  background-color: #fff;
}

.header__name {
  max-width: 258px;
  margin-top: 20px;
  width: 100%;
  height: inherit;
  z-index: 1000;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header__name {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .header__name {
    position: fixed;
    z-index: 200;
    width: 114px;
    top: 0px;
    left: 0px;
  }
}

.header__name img {
  display: block;
  aspect-ratio: 258/180;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.drawer-menu-logo {
  width: 100%;
  max-width: 114px;
  height: auto;
}

.drawer__logo {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.is-drawer-open .header__logo {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.is-drawer-open .drawer__logo {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease-in-out;
}

.logo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.2s;
}

.header__name a {
  height: auto;
  display: flex;
}

.header__inner {
  height: inherit;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header__inner {
    max-width: 768px;
    padding: 0 20px;
  }
}

.header__nav {
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
  flex-direction: row;
}

.header__item {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__link {
  font-family: "Roboto", sans-serif;
  height: inherit;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 1024px) {
  .header__link {
    padding-right: 15px;
    padding-left: 15px;
    font-size: 14px;
  }
}

.header__link:hover {
  opacity: 0.8; /* 0.0 = 完全透明, 1.0 = 完全不透明 */
}

.header__contact.btn {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  padding: 25px 40px;
  background-color: #D4AF37;
  color: #ffffff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  height: inherit;
  gap: 15px;
}

.header__item.header-contact {
  background-color: #cfcba2;
  margin-left: 25px;
}

@media screen and (max-width: 768px) {
  .hamburger {
    position: fixed;
    z-index: 9999;
    top: 30px;
    right: 30px;
    width: 25px;
    height: 16px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
  }
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  transition: transform, 0.3s ease-in-out;
  background-color: #000000;
}

.hamburger span:first-child {
  top: 0;
  transition: transform 0.3s ease-in-out;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transform: 0.3s opacity;
  transition: opacity 0.3s ease-in-out;
}

.hamburger span:nth-child(3) {
  top: 16px;
  transition: opacity 0.3s ease-in-out;
}

.hamburger.is-active {
  top: 25px;
  right: 27px;
  transform: scale(0.95);
}

.hamburger.is-active span {
  background-color: #878664;
}

.hamburger.is-active span:first-child {
  top: 15px;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}

.drawer-menu {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
}

.subpage-drawer-logo {
  position: fixed;
  max-width: 114px;
  width: 100%;
  height: 80px;
  z-index: 1000;
  margin-top: 0;
  margin-left: 0;
}

.drawer-menu.is-open {
  display: block;
}

.inner.drawer-menu__inner {
  display: flex;
  padding-top: 160px;
  padding-left: 50px;
  width: 100%;
  height: inherit;
  transition: none;
  background-color: #e9e4ac;
  z-index: 10;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .inner.drawer-menu__inner {
    padding-top: 160px;
    display: block;
  }
}

.drawer-menu__items {
  z-index: 1000;
  display: flex;
  align-items: left;
  flex-direction: column;
}

.drawer-menu__item {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  border-bottom: 1px solid #cfcba2;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .drawer-menu__item:not(:first-child) {
    margin-top: 0;
  }
}

.drawer-menu__item:first-child {
  border-top: 1px solid #cfcba2;
}

.drawer-menu__link {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #878664;
  display: inline-block;
  width: 100%;
  padding-top: 9px;
  padding-bottom: 10px;
  transition: none;
}

.drawer-menu__link.drawer-menu__link--contact {
  background-color: #cfcba2;
  padding: 14px 14px;
  border: none;
  transition: 0.3s background-color;
  color: #878664;
  margin-top: 50px;
  border-radius: 6px;
}
.drawer-menu__link.drawer-menu__link--contact:hover {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .drawer-menu__link.drawer-menu__link--contact {
    margin-top: 17px;
  }
}

.sns.drawer-menu__sns {
  z-index: 1000;
}

.fv {
  max-width: 1360px;
  width: 100%;
  margin: 80px auto 0;
  display: flex;
  height: 100vh;
  min-height: 100dvh;
  padding-top: 80px;
  box-sizing: border-box; /* ←必須：パディングで高さが伸びない */
}
@media screen and (max-width: 768px) {
  .fv {
    display: block;
    padding: 0 10px;
    margin: 0 auto;
  }
}

.fv__title.inner {
  font-family: "Roboto", sans-serif;
  color: #000000;
  font-size: 60px;
  letter-spacing: 0.05em;
  line-height: 1.45;
  padding-right: 65px;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  margin: 0auto;
}
@media screen and (max-width: 768px) {
  .fv__title.inner {
    writing-mode: horizontal-tb;
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 0;
    padding: 0 10px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 375px) {
  .fv__title.inner {
    font-size: 34px;
  }
}

.fv .swiper {
  margin-top: -80px;
}
@media screen and (max-width: 1024px) {
  .fv .swiper {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .fv .swiper {
    height: 80%;
    width: auto;
  }
}

.swiper-container {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 375px) {
  .swiper-container {
    width: auto;
    height: 100%;
  }
}

.swiper-button-prev,
.swiper-button-next {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  position: absolute;
  top: 40%;
  left: 38%;
  width: 10px;
  height: 10px;
  content: "";
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.swiper-button-prev::after {
  top: 40%;
  left: 44%;
  transform: rotate(-135deg);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 9px 27px;
  width: 70px;
  height: 4px;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 35px;
    height: 1px;
  }
}

.swiper-pagination-bullet {
  width: 70px;
  height: 4px;
  border-radius: 0;
  bottom: 75px;
}
@media screen and (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 35px;
    height: 1px;
  }
}

.swiper-pagination.swiper-pagination-bullet.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  margin-bottom: 70px;
}

.fv .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #F9F2E5;
}

/* ③ <picture> と <img> を block 化して高さを継承させる */
.swiper-slide picture,
.swiper-slide-img {
  display: block;
}
@media screen and (max-width: 768px) {
  .swiper-slide picture,
  .swiper-slide-img {
    height: inherit;
  }
}

.swiper-slide-img {
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-next.next, .swiper-button-prev.prev {
  width: 34px;
  height: 34px;
}

.swiper-button-next.next {
  margin-right: 70px;
}

.swiper-button-prev.prev {
  margin-left: 70px;
}

.about-us {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .about-us {
    margin-top: 25px;
  }
}

.inner.about-us__inner {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .inner.about-us__inner {
    display: block;
  }
}

.about-us__image {
  width: 100%;
  max-width: 50%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .about-us__image {
    max-width: 100%;
  }
}

.about-us__image img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 550/480;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .about-us__image img {
    aspect-ratio: 335/292;
  }
}

.about-us__text-content {
  margin-top: 70px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .about-us__text-content {
    margin-top: 25px;
  }
}

.about-us__text-content-title {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  color: #000000;
}

.about-us__text-content-text.text {
  line-height: 2.375;
  letter-spacing: 0;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .about-us__text-content-text.text {
    margin-top: 30px;
    line-height: 2.3;
  }
}

.about-us__btn-read-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  margin-right: -15px;
}
@media screen and (max-width: 768px) {
  .about-us__btn-read-more {
    margin-right: 0;
  }
}

.service {
  margin: 120px auto;
}
@media screen and (max-width: 768px) {
  .service {
    margin: 30px auto;
  }
}

@media screen and (max-width: 768px) {
  .inner.service__inner {
    padding: 32px 20px;
  }
}

.service__cards {
  display: grid;
  margin: 40px auto 0;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .service__cards {
    display: block;
    margin: 20px auto;
  }
}

.service-card.service__card {
  width: 100%;
  max-width: 355px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .service-card.service__card {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .service-card.service__card:not(:first-child) {
    max-width: 100%;
    margin-top: 50px;
  }
}

.service__card-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 355/170;
}
@media screen and (max-width: 768px) {
  .service__card-img img {
    aspect-ratio: 335/170;
  }
}

.service__card-img.service-card {
  position: relative;
  flex-shrink: 0;
}

.service__card-img.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(135, 134, 100, 0.5);
  z-index: 1;
}

.service-card__title-wrap {
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 100;
  transform: translateY(-50%);
}

.service-card__title-sub {
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  color: #ffffff;
}

.service-card__title.text {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #ffffff;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .service-card__title.text {
    margin-top: 10px;
  }
}

.service-card__bottom {
  margin-top: 20px;
  padding-right: 17px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .service-card__bottom {
    padding-right: 0;
  }
}

.service-card__bottom-text.text {
  line-height: 2.375;
  letter-spacing: 0;
  max-width: 335px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .service-card__bottom-text.text {
    line-height: 2.275;
  }
}
@media screen and (max-width: 768px) {
  .service-card__bottom-text.text {
    max-width: 100%;
    font-size: 14px;
    font-weight: 400;
  }
}

.service-card__link-wrap {
  padding-top: 20px;
  width: 100%;
  display: flex;
  justify-content: right;
  margin-top: auto;
}

.works {
  background-color: #e6e5db;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .works {
    padding-top: 65px;
  }
}

.works__inner {
  max-width: 1150px;
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .works__inner {
    max-width: 600px;
    padding: 0;
  }
}

.works__contents {
  background-color: #ffffff;
  max-width: 1180px;
  margin: 30px auto 0;
  padding: 0 55px 40px;
}
@media screen and (max-width: 768px) {
  .works__contents {
    padding: 0;
    width: 100%;
    margin: 20px auto 0;
  }
}

.works__content.works-card {
  display: flex;
  gap: 50px;
  border-bottom: 1px solid #878664;
  padding-bottom: 50px;
  padding-top: 50px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .works__content.works-card {
    gap: 0;
    width: 78.6666%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.works-card__img {
  width: 100%;
  max-width: 290px;
}
@media screen and (max-width: 768px) {
  .works-card__img {
    max-width: 45%;
  }
}

.works-card__img img {
  aspect-ratio: 290/229;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .works-card__img img {
    aspect-ratio: 120/90;
    max-width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .works-card__text {
    max-width: 85%;
  }
}

.works-card__title.text {
  position: relative;
  display: inline;
  font-size: 24px;
  margin-top: 25px;
  letter-spacing: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .works-card__title.text {
    font-size: 14px;
    line-height: 2;
    margin-top: 12px;
    font-weight: 500;
  }
}

.works-card__title-wrap {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .works-card__title-wrap {
    margin-top: 12px;
  }
}

.works-card__title {
  line-height: 1.6; /* ← 行高を明示。下の 1.6em と必ず対応させる */
  background-image: linear-gradient(to bottom, transparent calc(100% - 2px), currentColor 0);
  background-repeat: repeat-y;
  background-position: left top;
  background-size: 0% 1.6em;
  transition: background-size 0.35s;
  padding-bottom: 6px;
}

/* リンクにホバーした際の下線の表示 */
.works__content:hover .works-card__title {
  background-size: 100% 1.6em;
  display: inline; /* 横を100%まで伸ばす */
}

.works-card__text.text {
  line-height: 2.375;
  letter-spacing: 0;
  color: #626262;
  margin-top: 35px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .works-card__text.text {
    display: none;
  }
}

.works__btn {
  margin-top: 20px;
  margin-right: -10px;
  display: flex;
  justify-content: right;
}
@media screen and (max-width: 768px) {
  .works__btn {
    padding-bottom: 70px;
    margin-right: 30px;
  }
}

.news {
  padding-bottom: 105px;
  background-color: #e6e5db;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .news {
    padding-top: 75px;
    padding-bottom: 55px;
  }
}

.inner.news__inner {
  display: flex;
  padding-right: 20px;
  padding-left: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .inner.news__inner {
    display: block;
  }
}

.news__contents {
  border-left: 1px solid #878664;
  padding-left: 60px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news__contents {
    border-left: none;
    padding-left: 6%;
    padding-right: 6%;
  }
}

.news__content.page-top__news-content {
  margin-top: 40px;
  border-bottom: 1px solid #878664;
  padding-bottom: 33px;
}
@media screen and (max-width: 768px) {
  .news__content.page-top__news-content {
    margin-top: 50px;
    padding-bottom: 25px;
    padding-left: 5%;
    max-width: 700px;
  }
}

.news__card.news-card {
  position: relative;
  padding-bottom: 33px;
  cursor: pointer;
  overflow: hidden;
}

.news-card__title {
  position: relative;
  display: inline;
  font-weight: 500;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .news-card__title {
    font-size: 14px;
    line-height: 2.05;
  }
}
@media screen and (max-width: 375px) {
  .news-card__title {
    max-width: 295px;
  }
}

.news-card__title-wrap {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .news-card__title-wrap {
    margin-top: 20px;
  }
}

.news__btn {
  margin-top: 17px;
  margin-right: -15px;
  display: flex;
  justify-content: right;
}
@media screen and (max-width: 768px) {
  .news__btn {
    margin-right: 5px;
    margin-top: 25px;
  }
}

.news__aside {
  width: 100%;
  max-width: 260px;
}

.aside-menu-lists.aside-menu-lists--archive li {
  margin-top: 18px;
  padding-bottom: 18px;
}

.aside-menu-lists.aside-menu-lists--archive li a {
  color: #040404;
}

.aside-menu.news__aside-menu {
  padding-left: 20px;
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .aside-menu.news__aside-menu {
    padding-top: 30px;
    padding-left: 36px;
    display: grid;
    margin: 0 auto;
    -moz-column-gap: 0px;
         column-gap: 0px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.news__aside-menu-link.text.is-open {
  font-size: 14px;
  color: #000000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news__aside-menu-link.text.is-open {
    font-size: 12px;
  }
}

.news__aside-menu-link-a {
  color: #000000;
  padding: 11px 5px;
  display: inline-block;
}

.news__aside-menu-link.text a {
  color: #000000;
}

.news__aside-menu-link.text a:hover,
.news__aside-menu-link.text a:focus,
.news__aside-menu-link.text a:active,
.news__aside-menu-link.text a.is-active {
  color: #000000;
}

.news__aside-menu-link.text.is-open::before {
  position: absolute;
  top: 18px;
  left: -5px;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #D4AF37;
}

.news__aside-menu-link.text {
  font-size: 14px;
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .news__aside-menu-link.text {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .news__aside.page-news__news-aside {
    width: 100%;
    display: flex;
    align-items: center;
  }
}

.aside-menu__title {
  display: block;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  background-color: #e9e4ac;
  padding: 15px 22px;
}
@media screen and (max-width: 1024px) {
  .aside-menu__title {
    padding: 16px 22px;
  }
}
@media screen and (max-width: 768px) {
  .aside-menu__title {
    padding: 15px 22px;
  }
}

.news-details__content .time-tag {
  margin-top: auto;
  display: inline-block;
}

.news-details-wp {
  margin-top: 20px;
}

.information__bg {
  background-color: #cfcba2;
}

.information__flex {
  display: flex;
  justify-content: space-between;
  gap: 16%;
}
@media screen and (max-width: 768px) {
  .information__flex {
    flex-direction: column-reverse;
  }
}

.information__img {
  margin: 0 calc(50% - 50svw);
  width: 57vw;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .information__img {
    width: 100vw;
  }
}

.information__img img {
  width: 100%;
  height: 446px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 820/446;
}
@media screen and (max-width: 768px) {
  .information__img img {
    height: auto;
    width: 100%;
    aspect-ratio: 375/240;
  }
}

.information__content {
  padding-top: 80px;
  padding-bottom: 80px;
  flex-shrink: 0;
  max-width: 275px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .information__content {
    margin-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .information__content {
    padding: 80px 0;
    text-align: center;
    margin: 0 auto;
  }
}

.information__feature {
  background-color: #cfcba2;
  width: 100%;
  align-items: center;
  flex-basis: 106%;
}

.information__text {
  font-size: 18px;
  line-height: 1.66;
  color: #878664;
}
@media screen and (max-width: 768px) {
  .information__text {
    font-size: 14px;
    line-height: 2;
  }
}

.information__contact {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .information__contact {
    margin-top: 30px;
  }
}

.information__tel {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .information__tel {
    margin-top: 24px;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 375px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

.information__btn {
  display: inline-block;
  position: relative;
  font-size: 22px;
  color: #878664;
  padding: 18px 32px 15px 32px;
  border: 1px solid #878664;
  border-radius: 4px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .information__btn {
    font-size: 16px;
    padding: 18px 45px 14px;
  }
}

.information__btn.bg-left a {
  display: inline-block;
}

.information__btn.bg-left:hover {
  color: #cfcba2;
}

.information__btn i {
  margin-right: 1rem;
}

/*ボタン色変化*/
/*== 背景が流れる（左から右） */
.bg-left:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #878664; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transform: scale(0, 1);
  will-change: transform;
  transform-origin: right top;
  transition: transform 0.6s, transform-origin 0s;
}

/*hoverした際の形状*/
.bg-left:hover::before {
  transform: scaleX(1);
  transform-origin: left top;
}

.information__time {
  color: #878664;
  font-size: 14px;
  margin-top: 25px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .information__time {
    font-size: 12px;
    margin-top: 10px;
  }
}

.fa-regular.fa-envelope, .fa-solid.fa-phone {
  font-size: 21px;
}

.footer {
  margin: 0 auto;
  background-color: #e9e4ac;
  color: #878664;
}

@media screen and (max-width: 768px) {
  .footer__menu {
    padding-left: 30px;
  }
}

.footer__inner.inner {
  display: flex;
  justify-content: space-between;
  max-width: 1215px;
}
@media screen and (max-width: 768px) {
  .footer__inner.inner {
    flex-direction: column-reverse;
    max-width: 600px;
  }
}

@media screen and (max-width: 768px) {
  .footer__link {
    font-size: 14px;
  }
}

.footer__link-a {
  color: #878664;
  padding: 7.5px 5px;
}

.footer-l-inner {
  display: flex;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .footer-l-inner {
    display: block;
  }
}

.footer__logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 114px;
    padding-top: 0;
  }
}

.footer__logo img {
  display: block;
  aspect-ratio: 258/180;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer__logo img {
    aspect-ratio: 114/80;
    max-width: 114px;
    height: auto;
  }
}

.footer__copyright {
  display: block;
  padding-top: 20px;
  padding-left: 30px;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 400;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    padding-top: 40px;
    padding-left: 30px;
    padding-bottom: 30px;
    font-weight: 300;
  }
}

.sns {
  display: flex;
  gap: 20px;
  padding-top: 180px;
  padding-left: 47px;
}
@media screen and (max-width: 768px) {
  .sns {
    padding-top: 52px;
    padding-left: 0px;
  }
}

.sns a {
  color: #878664;
}

.fa-brands {
  width: 22PX;
  height: 22px;
  width: 22px;
  max-width: 100%;
}

.footer-r {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .footer-r {
    padding-top: 60px;
  }
}

.footer__link:not(:first-child) {
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .footer__link:not(:first-child) {
    padding-top: 19px;
  }
}

.page__fv.page-about__fv,
.page__fv.page-service__fv,
.page__fv.page-news__fv,
.page__fv.page-works__fv,
.page__fv.page-contact__fv {
  position: relative;
  display: flex;
  padding-left: 170px;
  max-width: 1435px;
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .page__fv.page-about__fv,
  .page__fv.page-service__fv,
  .page__fv.page-news__fv,
  .page__fv.page-works__fv,
  .page__fv.page-contact__fv {
    display: block;
    padding-left: 10px;
  }
}

.page__fv-bg.page-about__page__fv-bg.bg,
.page__fv-bg.page-service__page__fv-bg.bg,
.page__fv-bg.page-news__page__fv-bg.bg,
.page__fv-bg.page-works__page__fv-bg.bg,
.page__fv-bg.page-contact__page__fv-bg.bg {
  height: 514px;
}
@media screen and (max-width: 768px) {
  .page__fv-bg.page-about__page__fv-bg.bg,
  .page__fv-bg.page-service__page__fv-bg.bg,
  .page__fv-bg.page-news__page__fv-bg.bg,
  .page__fv-bg.page-works__page__fv-bg.bg,
  .page__fv-bg.page-contact__page__fv-bg.bg {
    margin-top: 30px;
    height: 280px;
  }
}

/* 下層ページ サービス、アバウト共通 */
.page__fv {
  margin-left: 170px;
  height: 745px;
}
@media screen and (max-width: 768px) {
  .page__fv {
    height: 390px;
  }
}

.page__fv-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: inherit;
  width: 100%;
  max-width: 100%;
  margin-top: 155px;
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 2s, transform 2s;
}
@media screen and (max-width: 768px) {
  .page__fv-bg {
    max-width: 600px;
    height: inherit;
    margin-top: 110px;
    margin-left: auto;
  }
}

.page-about__page__fv-bg {
  background-image: url(../images/page-about-img/page-about-fv.jpg);
}
@media screen and (max-width: 768px) {
  .page-about__page__fv-bg {
    background-image: url(../images/page-about-img/sp-page-about-fv.jpg);
  }
}

.page-service__page__fv-bg {
  background-image: url(../images/page-service-img/page-service-fv.jpg);
}
@media screen and (max-width: 768px) {
  .page-service__page__fv-bg {
    background-image: url(../images/page-service-img/sp-page-service-fv.jpg);
  }
}

.page-news__page__fv-bg {
  background-image: url(../images/page-news-img/page-news-fv.jpg);
  height: 514px;
}
@media screen and (max-width: 768px) {
  .page-news__page__fv-bg {
    background-image: url(../images/page-news-img/sp-page-news-fv.jpg);
  }
}

.page-works__page__fv-bg {
  background-image: url(../images/page-works-img/page-works-fv.jpg);
  height: 514px;
}
@media screen and (max-width: 768px) {
  .page-works__page__fv-bg {
    background-image: url(../images/page-works-img/sp-page-works-fv.jpg);
  }
}

.page-contact__page__fv-bg {
  background-image: url(../images/page-contact-img/page-contact-fv.jpg);
  height: 514px;
}
@media screen and (max-width: 768px) {
  .page-contact__page__fv-bg {
    background-image: url(../images/page-contact-img/sp-page-contact-fv.jpg);
  }
}

.page-404__page__fv-bg {
  background-image: url(../images/page404-fv-pc.jpg);
  min-height: 600px;
  opacity: 1;
  transform: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-404__page__fv-bg {
    background-image: url(../images/page404-fv-sp.jpg);
  }
}

.bg.is-loaded {
  opacity: 1;
  transform: none;
}

.page__fv-title-wrap {
  background-color: #ffffff;
  padding: 35px 180px 48px 50px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 500px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .page__fv-title-wrap {
    padding: 27px 60px 37px 20px;
    max-width: 190px;
  }
}

.page__fv-title.subpage__fv-title.section-title {
  font-size: 100px;
  color: #000000;
  font-weight: 700;
  line-height: 7rem;
}
@media screen and (max-width: 768px) {
  .page__fv-title.subpage__fv-title.section-title {
    font-size: 44px;
    line-height: 1.1;
  }
}

.page__fv-sub-title.subpage__fv-sub-title {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page__fv-sub-title.subpage__fv-sub-title {
    font-size: 12px;
  }
}

.subpage-fv-wrap {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.subpage__top.subpage-top {
  margin: 57px auto 0;
  max-width: 885px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .subpage__top.subpage-top {
    margin: 26px auto 0;
  }
}

.subpage__top-items {
  display: flex;
  justify-content: center;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .subpage__top-items {
    white-space: nowrap;
    gap: 40px;
  }
}
@media screen and (max-width: 375px) {
  .subpage__top-items {
    white-space: unset;
    gap: 20px;
  }
}

.subpage__top-item {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #242424;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .subpage__top-item {
    font-size: 12px;
  }
}

.subpage__top-item-link {
  font-size: 16px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #242424;
}
@media screen and (max-width: 768px) {
  .subpage__top-item-link {
    font-size: 12px;
    gap: 6px;
  }
}

.subpage__top-item-link::after {
  content: "";
  width: 9px; /* 画像に合わせたサイズ感 */
  height: 9px;
  border-right: 2px solid #242424;
  border-bottom: 2px solid #242424;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .subpage__top-item-link::after {
    height: 5px;
    width: 5px;
    border-right: 1px solid #242424;
    border-bottom: 1px solid #242424;
  }
}

.subpage__top-title {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  color: #000000;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 104px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .subpage__top-title {
    font-size: 35px;
  }
}
@media screen and (max-width: 768px) {
  .subpage__top-title {
    font-size: 18px;
    line-height: 2.05;
    margin-top: 60px;
  }
}

.subpage__top-text.text {
  margin-top: 40px;
  line-height: 2.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .subpage__top-text.text {
    margin-top: 30px;
    line-height: 2.285;
    font-size: 14px;
    font-weight: 400;
  }
}

.Philosophy.page-about__Philosophy {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .Philosophy.page-about__Philosophy {
    margin-top: 80px;
  }
}

.page-about__Philosophy-inner {
  padding: 0 25px;
  max-width: 1150px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-about__Philosophy-inner {
    padding: 0;
  }
}

.page-about__section-title.section-title {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .page-about__section-title.section-title {
    font-size: 26px;
  }
}

.page-about__section-title::after {
  content: "";
  position: absolute;
  top: 45%;
  margin-left: 25px; /* タイトルと棒線の間隔 */
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background-color: #000000;
}
@media screen and (max-width: 768px) {
  .page-about__section-title::after {
    margin-left: 3%;
  }
}

.page-about__section-title-sub {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #D4AF37;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-about__section-title-sub {
    font-size: 12px;
  }
}

.page-about__Philosophy-bg {
  background-color: #e6e5db;
}

.page-about__Philosophy-contents {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-about__Philosophy-contents {
    display: block;
    max-width: 600px;
    margin: 0 auto;
  }
}

.page-about__Philosophy-content-text {
  padding: 70px 30px 70px;
  max-width: 68%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-about__Philosophy-content-text {
    max-width: 100%;
    padding: 55px 20px 27px;
  }
}

.page-about__Philosophy-content-img {
  width: 100%;
  height: auto;
  max-width: 32.7%;
}
@media screen and (max-width: 768px) {
  .page-about__Philosophy-content-img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.page-about__Philosophy-content-img picture img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  aspect-ratio: 360/535;
  display: block;
}
@media screen and (max-width: 768px) {
  .page-about__Philosophy-content-img picture img {
    width: 100%;
    height: auto;
    aspect-ratio: 335/300;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.page-about__Philosophy-text.text {
  margin-top: 55px;
  line-height: 2.4;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page-about__Philosophy-text.text {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2.286;
    letter-spacing: 0;
    max-width: 600px;
    width: 100%;
  }
}

.page-about__Philosophy-name.text {
  display: flex;
  justify-content: end;
  margin-top: 40px;
  margin-right: 0.5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page-about__Philosophy-name.text {
    margin-top: 30px;
    margin-right: 0;
  }
}

.inner.page-about__Breadcrumb-inner {
  max-width: 1440px;
}

.profile.page-about__profile {
  background-color: #e6e5db;
  padding-top: 70px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .profile.page-about__profile {
    padding-top: 60px;
    padding-bottom: 10px;
  }
}

.access {
  margin: 120px auto;
}
@media screen and (max-width: 768px) {
  .access {
    margin: 80px auto;
  }
}

.map {
  padding-top: 60px;
  width: 100%;
  margin: 0 auto;
}

.profile__items {
  margin-top: 60px;
  max-width: 1100px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  letter-spacing: 0;
  padding-bottom: 115px;
}
@media screen and (max-width: 768px) {
  .profile__items {
    margin-top: 30px;
    padding-bottom: 0;
  }
}

.profile__item-content {
  display: grid;
  grid-template-columns: 170px 1fr;
  border-bottom: 1px solid #878664;
  padding-bottom: 40px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .profile__item-content {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-bottom: 20px;
  }
}

.profile__item-content:not(:first-child) {
  margin-top: 38px;
}
@media screen and (max-width: 768px) {
  .profile__item-content:not(:first-child) {
    margin-top: 20px;
  }
}

.profile__item-content:last-child {
  line-height: 2;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .profile__item-content:last-child {
    gap: 10px;
  }
}

.profile__item-title {
  font-size: 15px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .profile__item-title {
    font-weight: 400;
  }
}

.profile__item-content {
  margin-top: 25px;
}

.profile__item-text.text {
  font-size: 16px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .profile__item-text.text {
    font-weight: 400;
    letter-spacing: 0;
  }
}

.profile__item-title.text {
  letter-spacing: 0;
}

.profile__item-text.text {
  line-height: 2.65;
  font-size: 14px;
  line-height: 1.428;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .profile__item-text.text {
    letter-spacing: 0;
  }
}

.profile__item-text--height {
  margin-top: 23px;
}
@media screen and (max-width: 768px) {
  .profile__item-text--height {
    margin-top: 0;
    line-height: 0;
  }
}

@media screen and (max-width: 768px) {
  .page-about__access-adress {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.7;
  }
}

.iframe-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 400px;
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .iframe-wrap {
    margin-top: 15px;
  }
}

.iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media screen and (max-width: 768px) {
  .iframe-wrap iframe {
    height: 400px;
  }
}

.inner.page-about__swiper-inner {
  margin-bottom: 60px;
}

.page-about__trainer {
  padding-top: 60px;
}

/* Aboutのマルチスライダー専用 */
.about__swiper {
  width: 100%;
  height: auto;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .swiper-slide img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}

.page-service__container {
  margin: 120px auto;
}
@media screen and (max-width: 768px) {
  .page-service__container {
    margin-top: 50px;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  .page-service__inner {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}

.page-service-card__top-contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-service-card__top-contents {
    display: block;
    max-width: 600px;
    margin: 0 auto;
  }
}

.page-service__card.page-service-card {
  margin: 0 auto;
  max-width: 83.333%;
}
@media screen and (max-width: 768px) {
  .page-service__card.page-service-card {
    margin: 0;
    max-width: 100%;
  }
}

.page-service__card.page-service-card:not(:first-child) {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .page-service__card.page-service-card:not(:first-child) {
    margin-top: 47px;
  }
}

.page-service-card__top {
  background-color: #e6e5db;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .page-service-card__top {
    display: block;
    padding: 60px 20px 0;
  }
}

.page-service-card__top-text-box {
  width: 100%;
  max-width: 460px;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .page-service-card__top-text-box {
    width: 100%;
    min-width: auto;
    max-width: 46%;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 10%;
    padding-bottom: 10%;
  }
}
@media screen and (max-width: 768px) {
  .page-service-card__top-text-box {
    padding: 0;
    max-width: 413px;
    padding-left: 0;
  }
}

.page-service-card__number {
  position: relative;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #D4AF37;
  width: 100%;
  max-width: 38px;
}
@media screen and (max-width: 768px) {
  .page-service-card__number {
    font-size: 32px;
  }
}

.page-service-card__number::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 35px;
  width: 1px;
  background-color: #000000;
  top: 60%;
  transform: translateY(-50%);
  left: 140%;
}
@media screen and (max-width: 768px) {
  .page-service-card__number::after {
    height: 30px;
    top: 50%;
    left: 40px;
  }
}

.page-service-card__title.text {
  margin-top: 15px;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page-service-card__title.text {
    font-size: 20px;
    margin-top: 20px;
  }
}

.page-service-card__top-text.text {
  margin-top: 20px;
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 2.0909;
}
@media screen and (max-width: 768px) {
  .page-service-card__top-text.text {
    font-size: 14px;
    line-height: 2.286;
  }
}

.page-service-card__img {
  flex-basis: 53.5%;
}
@media screen and (max-width: 768px) {
  .page-service-card__img {
    margin-top: 20px;
    display: block;
  }
}

.page-service-card__img img {
  aspect-ratio: 1280/999;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .page-service-card__img img {
    aspect-ratio: 670/440;
  }
}

.page-service-card__bottom.service-card-bottom {
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  margin: 30px auto 0;
  max-width: 1200px;
}
@media screen and (max-width: 1024px) {
  .page-service-card__bottom.service-card-bottom {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .page-service-card__bottom.service-card-bottom {
    margin: 20px auto;
    max-width: 600px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.service-card-bottom-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .service-card-bottom-wrap {
    gap: 9px;
  }
}

.service-card-bottom-title {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .service-card-bottom-title {
    font-size: 18px;
  }
}

.service-card-bottom-title-sub {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  color: #626262;
}

.service-card-bottom-text.text {
  line-height: 2.35;
  margin-top: 20px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .service-card-bottom-text.text {
    line-height: 2.285;
  }
}

.inner.page-news__inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .inner.page-news__inner {
    display: block;
    padding: 0 5%;
  }
}

.news__aside-menu-link-a a.is-active {
  color: #000000;
}

.news.page-news__news {
  margin-top: 50px;
  padding-bottom: 125px;
}
@media screen and (max-width: 768px) {
  .news.page-news__news {
    margin-top: 0;
    padding-bottom: 70px;
  }
}

.aside-menu.page-news__aside-menu.fadein.fadein-bottom.scrollin {
  position: sticky;
  top: 200px;
}

.aside-menu.page-news__aside-menu {
  padding-left: 10px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .aside-menu.page-news__aside-menu {
    padding-left: 0;
    padding-top: 10px;
    display: grid;
    margin: 0 auto;
    -moz-column-gap: 30px;
         column-gap: 30px;
    grid-template-columns: 160px 100px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 375px) {
  .aside-menu.page-news__aside-menu {
    grid-template-columns: 100px 100px;
    letter-spacing: 0;
  }
}

.news__aside-menu-link.page-news__aside-menu-link.text.is-open::before {
  top: 18px;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news__aside-menu-link.page-news__aside-menu-link.text.is-open::before {
    top: 13px;
    left: -3px;
  }
}

.news__contents.page-news__news-contents {
  padding-top: 10px;
}

.news__aside-menu-link-a.page-news__aside-menu-link-a {
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news__aside-menu-link-a.page-news__aside-menu-link-a {
    padding: 7px;
  }
}

@media screen and (max-width: 768px) {
  .article-title-md-only {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 2行で切って … を表示 */
    overflow: hidden;
  }
}

.news__content.page-news__news__content {
  border-bottom: 1px solid #878664;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .news__content.page-news__news__content {
    padding-top: 25px;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
}

.news__content.page-news__news__content:not(:first-child) {
  padding-top: 26px;
}
@media screen and (max-width: 768px) {
  .news__content.page-news__news__content:not(:first-child) {
    padding-top: 5px;
  }
}

.news__content.page-news__news__content-l {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .labels.page-news__labels {
    margin-top: 15px;
    display: flex;
    align-items: center;
  }
}

.pagination {
  display: flex;
  gap: 7px;
  justify-content: left;
  margin-top: 65px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .pagination {
    justify-content: center;
    margin-top: 40px;
    margin-right: 0;
  }
}

.pagination-number {
  background-color: #E9EEEF;
  transition: 0.3s ease-in-out;
}

.news-details__main {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .news-details__main {
    margin-bottom: 80px;
  }
}

.breadcrumb-wrap.page-news-syosai__breadcrumb-wrap {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 197px;
}
@media screen and (max-width: 768px) {
  .breadcrumb-wrap.page-news-syosai__breadcrumb-wrap {
    margin-top: 87px;
  }
}

.breadcrumb.page-news__breadcrumb {
  padding: 0 60px;
  margin-right: auto;
  margin-left: auto;
}

.breadcrumb.page-news__breadcrumb ul li:last-child a {
  color: #242424;
}

.inner.news-details__inner {
  max-width: 1200px;
  display: flex;
  gap: 11%;
  margin-top: 20px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .inner.news-details__inner {
    display: block;
  }
}

.news-details__aside {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news-details__aside {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 375px) {
  .news-details__aside {
    max-width: 345px;
  }
}

.content-title01-wrap {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .content-title01-wrap {
    margin-top: 15px;
  }
}

.news-details__content {
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news-details__content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
@media screen and (max-width: 375px) {
  .news-details__content {
    margin-top: 27px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 100%;
    padding: 0;
  }
}

.news-details__content-title01.content-title01 {
  display: block;
  line-height: 1.923;
  letter-spacing: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .news-details__content-title01.content-title01 {
    font-size: 18px;
    line-height: 1.666;
    max-width: 90%;
  }
}

.news-details__content-title02-wrap.content-title02-wrap {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .news-details__content-title02-wrap.content-title02-wrap {
    margin-top: 50px;
  }
}

.news-details__content-title02-wrap.content-title02-wrap p {
  margin-top: 20px;
}

.news-details__content-title02-wrap.content-title02-wrap h3 {
  position: relative;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  color: #000000;
  background-color: rgba(248, 249, 249, 0.8);
  font-weight: 500;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 10.57px;
}
@media screen and (max-width: 768px) {
  .news-details__content-title02-wrap.content-title02-wrap h3 {
    font-size: 16px;
    padding: 10px;
  }
}

.news-details__content-title02-wrap.content-title02-wrap h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.17px;
  height: 100%;
  background-color: #D4AF37;
}

.time-tag.news-details__time-tag {
  display: inline-block;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .time-tag.news-details__time-tag {
    margin-top: 10px;
  }
}

.news-details__content-img {
  margin-top: 36px;
}

.news-details__content-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.news-details__content-text {
  margin-top: 37px;
  font-family: "Roboto", sans-serif;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .news-details__content-text {
    font-size: 14px;
    line-height: 2.286;
  }
}

.news-details__content-title03-wrap.content-title03-wrap {
  margin-top: 72px;
}
@media screen and (max-width: 768px) {
  .news-details__content-title03-wrap.content-title03-wrap {
    margin-top: 40px;
  }
}

.news-details__content-title03.content-title03 {
  font-family: "Roboto", sans-serif;
  color: #000000;
  font-weight: 500;
  font-size: 18px;
  padding-left: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E4E4E4;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-details__content-title03.content-title03 {
    font-size: 18px;
  }
}

.news-details__content-title03.content-title03::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 39%;
  height: 1px;
  background-color: #D4AF37;
}

.news-details__content-list-wrap.content-list-wrap {
  margin-top: 72px;
}
@media screen and (max-width: 768px) {
  .news-details__content-list-wrap.content-list-wrap {
    margin-top: 22px;
  }
}

ul.news-details__content-lists.content-lists {
  list-style-type: disc;
  padding-left: 1em; /* 消されていたインデントを戻したいとき */
  padding-bottom: 40px;
  border-bottom: 1px solid #E2E2E2;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  ul.news-details__content-lists.content-lists {
    padding-left: 1em;
    padding-bottom: 0;
    border-bottom: none;
  }
}

ul.news-details__content-lists.content-lists li::marker {
  color: #D4AF37;
}

@media screen and (max-width: 768px) {
  .content-list {
    font-size: 14px;
    font-weight: 400;
  }
}

.details__btn-wrap {
  margin-top: 37px;
  margin-right: 20px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .details__btn-wrap {
    margin-top: 45px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 375px) {
  .details__btn-wrap {
    margin-right: 0;
  }
}

.details__btn {
  border: 1px solid #D4AF37;
  border-radius: 4px;
  color: #D4AF37;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .details__btn {
    font-size: 14px;
  }
}

.details__btn.details__btn--pre::before {
  content: "";
  position: absolute;
  top: 40%;
  width: 7px;
  height: 7px;
  left: 24px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transition: ease-in-out 0.3s;
  transform: rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .details__btn.details__btn--pre::before {
    width: 7px;
    height: 7px;
    left: 23px;
  }
}

.details__btn.details__btn--pre:hover::before {
  left: 5px;
}

.details__btn.details__btn--pre,
.details__btn--pre.page-404__details-btn {
  position: relative;
  transition: ease-in-out 0.3s;
}

.details__btn.details__btn--pre a {
  color: #D4AF37;
  padding: 12px 35px 12px 33px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .details__btn.details__btn--pre a {
    padding: 12px 24px 12px 39px;
  }
}
@media screen and (max-width: 370px) {
  .details__btn.details__btn--pre a {
    padding: 12px 20px 12px 30px;
  }
}

.details__btn--pre.page-404__details-btn a {
  color: #ffffff;
  padding: 11px 35px 11px 40px;
  display: inline-block;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .details__btn--pre.page-404__details-btn a {
    padding: 12px 30px 12px 45px;
  }
}
@media screen and (max-width: 370px) {
  .details__btn--pre.page-404__details-btn a {
    padding: 12px 20px 12px 30px;
  }
}

.details__btn.details__btn--next::after {
  content: "";
  position: absolute;
  color: #D4AF37;
  top: 50%;
  left: 100px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .details__btn.details__btn--next::after {
    width: 7px;
    height: 7px;
    left: 100px;
  }
}

.details__btn.details__btn--next {
  position: relative;
  transition: ease-in-out 0.3s;
}

.details__btn.details__btn--next a {
  color: #D4AF37;
  padding: 12px 33px 12px 24px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .details__btn.details__btn--next a {
    padding: 12px 33px 12px 27px;
  }
}

.details__btn.details__btn--next:hover::after {
  right: 5px;
  left: 110px;
}

.news-details__aside-menu.aside-menu {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .news-details__aside-menu.aside-menu {
    margin-top: 35px;
  }
}

@media screen and (max-width: 768px) {
  .news-details__aside-menu.aside-menu.news-details__aside-menu--latest {
    margin-top: 55px;
  }
}

.aside-menu-link-card {
  display: flex;
  gap: 25px;
  padding: 15px;
  border-bottom: 1px solid #e4e4e4;
}
@media screen and (max-width: 768px) {
  .aside-menu-link-card {
    padding-top: 20px;
    padding-bottom: 15px;
    padding-left: 18px;
    gap: 17px;
  }
}

@media screen and (max-width: 768px) {
  .news-details__aside-menu.aside-menu.news-details__aside-menu.aside-menu--archive {
    margin-top: 35px;
  }
}

.aside-menu-link-card-img {
  width: 100%;
  max-width: 100px;
}

.aside-menu-link-card-img img {
  aspect-ratio: 100/100;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.aside-menu-link-card-text p {
  font-family: "Roboto", sans-serif;
  color: #040404;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0;
  font-weight: 400;
  width: 100%;
  max-width: 146px;
}
@media screen and (max-width: 768px) {
  .aside-menu-link-card-text p {
    max-width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .aside-menu-link-card-text p {
    min-width: 100%;
  }
}

.aside-menu-link-card__time-tag {
  display: inline-block;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .aside-menu-link-card__time-tag {
    margin-top: 0;
  }
}

.aside-menu-link-card__time-tag .time-tag {
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .aside-menu-link-card__time-tag .time-tag {
    margin-top: 10px;
  }
}

.aside-menu-list {
  border-bottom: 1px solid #E4E4E4;
}

.aside-menu-link__menu {
  display: inline-block;
  color: #242424;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  padding: 18px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .aside-menu-link__menu {
    padding: 17px 0;
  }
}

/* ▼ 最後“以外”にだけ線を付ける：事故りにくい書き方 */
.aside-menu-lists > .aside-menu-list:not(:last-child),
.aside-menu-lists > .aside-menu-list:not(:last-child) .aside-menu-link__menu {
  border-bottom: 1px solid #e4e4e4;
}

/* 念のため、最後の1件は明示的に消す（既存の指定の上書き用）
＞を付けることによって、その要素の直下の要素のみに当たるという意味になる。 孫要素などには当たらない*/
.aside-menu-lists.aside-menu-lists--archive > .aside-menu-list:last-child,
.aside-menu-lists.aside-menu-lists--category > .aside-menu-list:last-child {
  border-bottom: none;
}

.aside-menu-lists--archive,
.aside-menu-lists--category {
  padding-left: 18px;
  padding-right: 18px;
}

.inner.page-works__inner {
  max-width: 1140px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .inner.page-works__inner {
    display: block;
    padding: 0 11%;
  }
}

.works__aside-menu-link-a.is-active {
  color: #000000;
}

.page-works.page-works__works {
  margin-top: 30px;
  padding-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .page-works.page-works__works {
    padding-left: 14%;
  }
}
@media screen and (max-width: 768px) {
  .page-works.page-works__works {
    margin-top: 20px;
    padding-bottom: 80px;
    padding-left: 0;
  }
}

.aside-menu.page-works__aside-menu.fadein.fadein-bottom.scrollin {
  position: sticky;
  top: 200px;
  margin-top: 20px;
}

.aside-menu.page-works__aside-menu {
  padding-left: 10px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .aside-menu.page-works__aside-menu {
    padding-left: 0;
    display: grid;
    margin: 0 auto;
    -moz-column-gap: 10px;
         column-gap: 10px;
    grid-template-columns: 160px 100px;
    letter-spacing: 0;
  }
}

.page-works-detail__img-wrap img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 840/471;
}

.works__aside-menu-link-a.page-works__aside-menu-link-a {
  color: #000000;
  padding: 11px 5px;
  display: inline-block;
}

.works__aside-menu-link.text a {
  color: #000000;
}

.works__aside-menu-link.text a:hover,
.works__aside-menu-link.text a:focus,
.works__aside-menu-link.text a:active,
.works__aside-menu-link.text a.is-active {
  color: #000000;
}

.works__aside-menu-link.text.is-open::before {
  position: absolute;
  top: 18px;
  left: -5px;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #D4AF37;
}

.works__aside-menu-link.page-works__aside-menu-link.text.is-open {
  font-size: 14px;
  color: #000000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .works__aside-menu-link.page-works__aside-menu-link.text.is-open {
    font-size: 12px;
  }
}

.works__aside-menu-link.text {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .works__aside-menu-link.text {
    font-size: 12px;
    margin-top: 0;
  }
}

.works__aside-menu-link.page-works__aside-menu-link.text.is-open::before {
  top: 18px;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .works__aside-menu-link.page-works__aside-menu-link.text.is-open::before {
    top: 13px;
    left: -3px;
  }
}

.works__contents.page-works__works-contents {
  width: 100%;
  padding-bottom: 50px;
  border-left: 1px solid #878664;
}
@media screen and (max-width: 768px) {
  .works__contents.page-works__works-contents {
    border-left: none;
    padding: 0;
    margin: 5px auto 0;
  }
}

.works__aside-menu-link-a.page-works__aside-menu-link-a {
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .works__aside-menu-link-a.page-works__aside-menu-link-a {
    padding: 7px;
  }
}

@media screen and (max-width: 768px) {
  .article-title-md-only {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 2行で切って … を表示 */
    overflow: hidden;
  }
}

.page__works__card.works-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .page__works__card.works-card {
    gap: 15px;
  }
}

.works__aside.page-works__works-aside {
  width: 100%;
  max-width: 262px;
}
@media screen and (max-width: 768px) {
  .works__aside.page-works__works-aside {
    margin: 0 auto;
  }
}

.page-works__card-image img {
  aspect-ratio: 160/160;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .page-works__card-image img {
    aspect-ratio: 130/100;
  }
}

.page-works__card-image {
  flex: 0 0 160px;
  width: 160px;
  height: 160px;
}
@media screen and (max-width: 1024px) {
  .page-works__card-image {
    width: 100%;
    max-width: 130px;
    height: 160px;
  }
}
@media screen and (max-width: 768px) {
  .page-works__card-image {
    width: 100%;
    max-width: 130px;
    height: 100px;
  }
}

.page-works__card-title-wrap {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .page-works__card-title-wrap {
    margin-top: 10px;
  }
}

.page-works__card-title {
  font-family: "Roboto", sans-serif;
  color: #000000;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.777;
}
@media screen and (max-width: 768px) {
  .page-works__card-title {
    font-size: 14px;
    line-height: 2;
  }
}

.works__content.page-works__works__content {
  border-bottom: 1px solid #878664;
  padding-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .works__content.page-works__works__content {
    padding-top: 25px;
    padding-bottom: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.works__content.page-works__works__content:not(:first-child) {
  padding-top: 26px;
}
@media screen and (max-width: 768px) {
  .works__content.page-works__works__content:not(:first-child) {
    padding-top: 20px;
  }
}

.page-works__card-contents {
  display: flex;
  flex-direction: column;
  min-height: 160px;
  flex: 1 1 auto;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .page-works__card-contents {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 375px) {
  .page-works__card-contents {
    flex-basis: 50%;
  }
}

.page-works__card-contents .time-tag {
  margin-top: auto;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .page-works__card-contents .time-tag {
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .labels.page-works__labels {
    display: flex;
    align-items: center;
  }
}

.label.label--white.page-works__label--white {
  background-color: #F3F3F3;
  white-space: nowrap;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .label.label--white.page-works__label--white {
    font-size: 10px;
    padding: 5px 10px;
  }
}

.breadcrumb.page-works__breadcrumb {
  margin: 0;
}

.subpage-fv-wrap.page-works-detail__subpage-fv-wrap {
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  .subpage-fv-wrap.page-works-detail__subpage-fv-wrap {
    margin-top: 85px;
  }
}

.inner.page-works-detail__inner {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .inner.page-works-detail__inner {
    margin-top: 30px;
  }
}

.page-works-detail__content {
  max-width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-works-detail__content {
    max-width: 90%;
  }
}

.label.label--white.page-works-detail__label {
  display: block;
}

.works-card-detail__title-wrap {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .works-card-detail__title-wrap {
    margin-top: 15px;
  }
}

.works-card-detail__title.fadein.fadein-up {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #000000;
  padding-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .works-card-detail__title.fadein.fadein-up {
    font-size: 18px;
    padding-bottom: 5px;
  }
}

.time-tag.page-works-detail__time-tag {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .time-tag.page-works-detail__time-tag {
    font-size: 10px;
  }
}

.page-works-detail__img-wrap {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .page-works-detail__img-wrap {
    margin-top: 33px;
  }
}

.page-works-detail__text {
  width: 100%;
  max-width: 680px;
  padding-top: 40px;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .page-works-detail__text {
    font-size: 14px;
    line-height: 2.286;
  }
}

.page-works-detail-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 122px;
}
@media screen and (max-width: 768px) {
  .page-works-detail-btn-wrap {
    margin-top: 40px;
    margin-bottom: 80px;
  }
}

.page-works-detail__btn {
  padding: 12px 85px 12px 100px;
  position: relative;
  border: 1px solid #D4AF37;
  border-radius: 4px;
  color: #D4AF37;
  transition: 0.3s ease;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .page-works-detail__btn {
    padding: 12px 80px 8px 107px;
  }
}
@media screen and (max-width: 370px) {
  .page-works-detail__btn {
    padding: 12px 60px 12px 86px;
  }
}

.page-works-detail__btn::before {
  content: "";
  position: absolute;
  color: #D4AF37;
  left: 90px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(225deg);
  transition: left 0.3s;
}
@media screen and (max-width: 370px) {
  .page-works-detail__btn::before {
    left: 75px;
  }
}

.page-works-detail__btn:hover::before {
  left: 85px;
}

.page-contact__text.text {
  letter-spacing: 0;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .page-contact__text.text {
    font-size: 14px;
    line-height: 2.285;
  }
}

.form-wrap {
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .form-wrap {
    margin-bottom: 42px;
  }
}

.form {
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .form {
    padding: 0 20px;
  }
}

.contact-form.form {
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
  border-top-left-radius: 20px;
  max-width: 690px;
  width: 100%;
  padding: 0 13px;
}
@media screen and (max-width: 768px) {
  .contact-form.form {
    max-width: 600px;
    margin-top: 30px;
    padding: 0 10px;
  }
}

.form__inner {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 58px;
}
@media screen and (max-width: 768px) {
  .form__inner {
    padding-bottom: 38px;
  }
}

.form__items {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .form__items {
    margin-top: 40px;
  }
}

.form__item {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.form__item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .form__item:not(:first-child) {
    margin-top: 30px;
  }
}

.form__label, .form__label-text {
  font-size: 14px;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .form__label, .form__label-text {
    letter-spacing: 0;
    margin-top: 4px;
  }
}

.form__label-text.form__label-text-space {
  padding-left: 14px;
}

.form__label-flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .form__label-flex {
    display: block;
  }
}

.form__radio-group {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .form__radio-group {
    flex-wrap: wrap;
    margin-top: 10px;
    margin-left: 0;
  }
}

.form__radio-title {
  font-size: 14px;
  white-space: nowrap;
}

.required {
  color: #E20000;
}

.form__input-text,
.form__textarea {
  width: 100%;
  font-size: 14px;
  padding: 14px 15px 14px;
  background: #ffffff;
  transition: border-color 0.2s;
  border: 1px solid #878664;
  border-radius: 8px;
}

.form__textarea {
  height: 171px;
  color: #000000;
  transition: border-color 0.2s;
  padding: 10px 12px;
  resize: none;
}

.form__input,
.form__input.form__input-contact {
  width: 100%;
  justify-self: start;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .form__input,
  .form__input.form__input-contact {
    margin-top: 10px;
  }
}

.flex-none {
  display: block;
}

input::-moz-placeholder {
  color: #000000;
}

input::placeholder {
  color: #000000;
}

textarea::-moz-placeholder {
  color: #000000;
}

textarea::placeholder {
  color: #000000;
}

/* 基本のセレクトボックスのカスタマイズ */
.select-box {
  background: #cfcedb;
  height: 40px;
  width: 300px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.select::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  pointer-events: none;
  color: #000000;
}

.form__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  font-size: 14px;
  line-height: 1.4;
  padding: 15px 36px 15px 12px;
  border: 1px solid #878664;
  border-radius: 4px;
  background: #ffffff;
  color: #000;
}
@media screen and (max-width: 768px) {
  .form__select {
    padding: 10px 36px 16px 12px;
  }
}

.form__select-triangle {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path fill='%23333' d='M480 224C492.9 224 504.6 231.8 509.6 243.8C514.6 255.8 511.8 269.5 502.7 278.7L342.7 438.7C330.2 451.2 309.9 451.2 297.4 438.7L137.4 278.7C128.2 269.5 125.5 255.8 130.5 243.8C135.5 231.8 147.1 224 160 224L480 224z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 17px 30px;
}
@media screen and (max-width: 768px) {
  .form__select-triangle {
    padding: 10px 40px 16px 12px;
  }
}

.form__item.flex-none {
  position: relative;
}

select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #333;
  font-size: 16px;
  width: 100%;
  height: 100%;
}

.form__input-personal-info {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 20px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .form__input-personal-info {
    margin-top: 15px;
  }
}
@media screen and (max-width: 370px) {
  .form__input-personal-info {
    font-size: 11px;
  }
}

.form__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}
@media screen and (max-width: 768px) {
  .form__btn-wrap {
    margin-top: 36px;
    max-width: 100%;
  }
}

.form__btn-submit {
  font-family: "Roboto", sans-serif;
  padding: 20px 182px;
  border-radius: 4px;
  background-color: #cfcba2;
  color: #ffffff;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .form__btn-submit {
    padding: 10px 90px;
  }
}

.contact-form.form.page-contact-confirm {
  width: 100%;
  max-width: 740px;
  margin-top: 53px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .contact-form.form.page-contact-confirm {
    max-width: 600px;
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.form__items.page-contact-confirm__form-items {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .form__items.page-contact-confirm__form-items {
    margin-top: 35px;
  }
}

.page-contact-confirm__form__item.form__item {
  display: grid;
  grid-template-columns: 150px 1fr; /* ラベル / 値 */
  align-items: baseline;
  margin-top: 30px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 768px) {
  .page-contact-confirm__form__item.form__item {
    display: block;
    margin-top: 25px;
  }
}

/* ラベルと＊は必ず同じ行にする */
.page-contact-confirm__form__label-text-title {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  white-space: nowrap;
}

.page-contact-confirm__required {
  color: #E20000;
  line-height: 1;
}

.form__input.page-contact-confirm__form__input {
  margin-top: 0;
}

.page-contact-confirm__form__input:last-child {
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .page-contact-confirm__form__input:last-child {
    line-height: 2.25;
  }
}

.page-contact-confirm__contact-answer {
  font-size: 14px;
}

.page-contact-confirm__label-title {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}

.page-contact-confirm__label-text {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .page-contact-confirm__label-text {
    padding-top: 3px;
  }
}

.page-contact-confirm__contact-answer {
  margin-top: 10px;
}

.btn-submit.form__btn-submit.page-contact-confirm__btn-submit--white {
  background-color: #ffffff;
  color: #cfcba2;
  border: 2px solid #cfcba2;
  padding: 18px 122px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .btn-submit.form__btn-submit.page-contact-confirm__btn-submit--white {
    padding: 10.5px 61.5px;
    font-size: 14px;
  }
}
@media screen and (max-width: 370px) {
  .btn-submit.form__btn-submit.page-contact-confirm__btn-submit--white {
    padding: 10.5px 51.5px;
  }
}

.btn-submit.form__btn-submit.page-contact-confirm__btn-submit--navy {
  padding: 18px 105px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .btn-submit.form__btn-submit.page-contact-confirm__btn-submit--navy {
    padding: 12px 47.5px;
    font-size: 14px;
  }
}
@media screen and (max-width: 370px) {
  .btn-submit.form__btn-submit.page-contact-confirm__btn-submit--navy {
    padding: 12px 37.5px;
  }
}

.page-contact-confirm__btn-wrap {
  display: flex;
  gap: 75px;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .page-contact-confirm__btn-wrap {
    margin-top: 40px;
    gap: 25px;
  }
}

/* CF7が差し込むpを無害化 */
.page-contact-confirm__btn-wrap p {
  margin: 0; /* 余計な上下余白を消す */
  display: contents; /* 中身だけをレイアウトに参加させる */
}

.page-contact-complete__wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

.inner.page-contact-complete__inner {
  max-width: 690px;
}
@media screen and (max-width: 768px) {
  .inner.page-contact-complete__inner {
    max-width: 375px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.page-contact-complete__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #000000;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page-contact-complete__title {
    font-size: 24px;
    margin-top: 70px;
  }
}

.page-contact-complete__sub-title {
  margin-top: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .page-contact-complete__sub-title {
    font-size: 14px;
    margin-top: 7px;
  }
}

.page-contact-complete__text {
  margin-top: 44px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .page-contact-complete__text {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2.286em;
  }
}

.page-contact-complete__btn-wrap {
  margin-top: 35px;
  margin-bottom: 120px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page-contact-complete__btn-wrap {
    margin-top: 40px;
    margin-bottom: 80px;
  }
}

.page-contact-complete__btn {
  position: relative;
  display: inline-block;
  padding: 21px 185px;
  background-color: #cfcba2;
  border-radius: 8px;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .page-contact-complete__btn {
    padding: 11.5px 95px 11.5px 110px;
  }
}

.page-contact-complete__btn a {
  border-radius: 4px;
  transition: 0.3s ease;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .page-contact-complete__btn a {
    font-size: 14px;
  }
}

.page-contact-complete__btn::before {
  content: "";
  position: absolute;
  color: #ffffff;
  left: 175px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(225deg);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .page-contact-complete__btn::before {
    left: 95px;
  }
}

.page-contact-complete__btn:hover::before {
  transform: translate(-5px, -50%) rotate(225deg);
}
@media screen and (max-width: 768px) {
  .page-contact-complete__btn:hover::before {
    left: 95px;
  }
}

.page-404__wrap {
  margin-bottom: 120px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  .page-404__wrap {
    margin-bottom: 0;
  }
}

.page-404__fv {
  margin-left: auto;
  max-width: 1440px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-404__fv {
    max-width: 600px;
    height: auto;
  }
}

.page__fv-bg.page-404__page__fv-bg.bg {
  margin-top: 330px;
  background-position: center;
  background-origin: content-box;
  background-clip: content-box;
  padding-left: 170px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .page__fv-bg.page-404__page__fv-bg.bg {
    min-height: 0;
    height: auto;
    margin-top: 120px;
    margin-left: 15px;
    padding-left: 0;
    background-origin: border-box;
    background-clip: border-box;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    width: 100%;
    aspect-ratio: 730/486;
  }
}

.page-404__fv-title-md {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* 自分の幅・高さの半分だけ戻す */
}

.page-404__title.page-404__title-md {
  white-space: nowrap;
}

.page-404__fv-title-wrap {
  position: absolute;
  top: 28%;
  left: 50.5%;
}
@media screen and (max-width: 1024px) {
  .page-404__fv-title-wrap {
    top: 20%;
  }
}
@media screen and (max-width: 768px) {
  .page-404__fv-title-wrap {
    top: 40%;
    left: 22%;
  }
}

.page-404__title {
  font-family: "Oswald", sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page-404__title {
    font-size: 35px;
  }
}

.page-404__text {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  line-height: 2.375;
  letter-spacing: 0;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .page-404__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 2.286;
    color: #000000;
    margin: 0 20px;
    margin-top: 13px;
    margin-right: auto;
    margin-left: auto;
  }
}

.page-404__text.page-404__text--black {
  color: #000000;
}

@media screen and (max-width: 768px) {
  .page-404__title-text-wrap.md-show {
    position: relative;
    left: 0;
    top: 0;
    padding-left: 18px;
    padding-right: 22px;
  }
}

.details__btn--pre.page-404__details-btn {
  color: white;
  border: 1px solid #ffffff;
  border-radius: 4px;
}

.details__btn--pre.page-404__details-btn::before {
  content: "";
  position: absolute;
  top: 45%;
  width: 7px;
  height: 7px;
  left: 20px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transition: ease-in-out 0.3s;
  transform: rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .details__btn--pre.page-404__details-btn::before {
    width: 7px;
    height: 7px;
    left: 23px;
  }
}

.details__btn--pre.page-404__details-btn:hover::before {
  left: 5px;
}

.details__btn-wrap.page-404__details__btn-wrap {
  margin-top: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .details__btn-wrap.page-404__details__btn-wrap {
    justify-content: center;
    margin-right: 0;
    margin-top: 40px;
  }
}

.details__btn--pre.page-404__details-btn.page-404__details-btn--black {
  color: #cfcba2;
  border: 1px solid #cfcba2;
}

.details__btn--pre.page-404__details-btn.page-404__details-btn--black a {
  color: #cfcba2;
}

.inner {
  max-width: 1150px;
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 600px;
    padding: 0 15px;
  }
}

.text {
  font-family: "Roboto", sans-serif;
  color: #000000;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 14px;
  }
}

.section-title {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 70px;
  color: #000000;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 38px;
  }
}

.section-title.section-title--l {
  text-align: left;
}

.section-title.section-title--r {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .section-title.section-title--r {
    text-align: left;
  }
}

.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}

.fadein.fadein-left {
  transform: translate(-2.5rem, 0);
}

.fadein.fadein-left--delay {
  transform: translate(-2.5rem, 0);
  transition-delay: 1s; /* ← 秒遅らせる例 */
}

.fadein.fadein-right {
  transform: translate(2.5rem, 0);
}

.fadein.fadein-up {
  transform: translate(0, -2.5rem);
}

.fadein.fadein-bottom {
  transform: translate(0, 2.5rem);
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.btn--read-more {
  position: relative;
  display: inline-block;
  color: #878664;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  padding: 14px 30px 14px 24px;
  transition: ease-in-out 0.3s;
}

.btn--under-line {
  position: relative;
}

.btn--read-more::after {
  content: "";
  position: absolute;
  color: #878664;
  top: 50%;
  left: 105px;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .btn--read-more::after {
    right: 15px;
    left: auto;
  }
}

.btn--read-more:hover::after {
  transform: translate(5px, -50%) rotate(45deg);
}

.btn--line {
  border: 1px solid #878664;
  border-radius: 4px;
  padding: 10px 40px 10px 20px;
}

.btn--under-line::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 1.5rem;
  right: 0;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s;
}

.btn--under-line:hover::before {
  bottom: 10px;
  width: 97px;
  left: 1.5rem;
  transform: scaleX(1);
}

.title-line {
  line-height: 1.6; /* ← 行高を明示。下の 1.6em と必ず対応させる */
  background-image: linear-gradient(to bottom, transparent calc(100% - 2px), currentColor 0);
  background-repeat: repeat-y; /* 行ごとに繰り返す */
  background-position: left top; /* 左上からタイルを敷く */
  background-size: 0% 1.6em; /* 横幅0%で開始、縦は1行ぶん */
  transition: background-size 0.35s; /* 横方向だけアニメ */
  padding-bottom: 6px; /* テキストの真下に少し余白が欲しければ */
}
@media screen and (max-width: 768px) {
  .title-line {
    line-height: 2;
  }
}

/* リンクにホバーした際の下線の表示 */
.news-card:hover .title-line,
.page__works__card.works-card:hover .title-line {
  background-size: 100% 1.6em;
  display: inline; /* 横を100%まで伸ばす */
}

.time-tag {
  font-size: 12px;
  font-weight: bold;
  color: #000000;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .time-tag {
    font-size: 10px;
    padding-right: 12px;
  }
}

.label {
  background-color: #F3F3F3;
  color: #626262;
  font-size: 11px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  padding: 4px 18px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .label {
    font-size: 10px;
    padding: 5px 15px;
  }
}

.label--white {
  white-space: nowrap;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .label--white {
    margin-right: 6px;
  }
}

.breadcrumb {
  margin-top: 20px;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end; /* 右寄せ */
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin: 10px;
    padding: 0 10px;
  }
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  margin: 0 10px;
  border: 1px solid #A9A9A9;
  height: 1px; /* 文字の高さに合わせる */
  vertical-align: middle; /* 文字の中央に揃える */
  width: 20px;
  content: "";
}

.breadcrumb li {
  font-size: 15px;
  color: #242424;
}
@media screen and (max-width: 768px) {
  .breadcrumb li {
    font-size: 10px;
  }
}

.breadcrumb li:not:first-child {
  padding-left: 16px;
}

.breadcrumb ul a {
  color: #000000;
}

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

.pagination-link {
  display: flex;
  color: #242424;
  text-decoration: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

.pagination i {
  line-height: 40px;
}

.pagination .active span {
  background-color: #D4AF37;
  color: white;
}

.pagination span:hover {
  background-color: #D4AF37;
  color: white;
}

.pagination .disabled span {
  pointer-events: none;
  color: #ccc;
}

.pagination .disabled span:hover {
  background-color: initial;
  color: #ccc;
}

span.page-numbers {
  font-family: "Oswald";
  color: #242424;
  font-size: 14px;
  /* color: red; */
  font-weight: 400;
  color: white;
  background-color: navy;
}

.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pagination__arrow {
  display: inline-block;
  width: 11px;
  height: 18px;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #000000;
  background-color: #E9EEEF;
}

.page-numbers.current {
  color: #ffffff;
  background-color: #D4AF37;
}

.page-numbers.prev,
.page-numbers.next {
  border: none;
  background-color: transparent;
}

.page-numbers.dots {
  display: none;
}

.page-numbers.prev::before,
.page-numbers.next::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transition: 0.3s ease-in-out;
}

.page-numbers.prev,
.page-numbers.next {
  display: flex;
  color: #242424;
  text-decoration: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

.page-numbers.next::before {
  transform: rotate(45deg);
}

.page-numbers.prev::before {
  transform: rotate(-135deg);
}

/* ── 矢印ボタン ── */
.pagination-prev a::before,
.pagination-next a::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transition: 0.3s ease-in-out;
}

/* 左矢印 */
.pagination-prev a::before {
  transform: rotate(-135deg);
}

/* 右矢印 */
.pagination-next a::before {
  transform: rotate(45deg);
}

.clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 制限したい行数が3の場合 */
  overflow: hidden;
}

.clamp-3 {
  color: #040404;
  font-weight: 400;
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.md-none {
  display: block;
}
@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.lg-show {
  display: none;
}
@media screen and (max-width: 1024px) {
  .lg-show {
    display: block;
  }
}

/* ---- form controls (checkbox/radio) を確実に復活させる ---- */
input[type=radio] {
  all: revert;
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  display: inline-block;
  position: static;
  opacity: 1;
  /* サイズ・色 */
  width: 17px;
  height: 17px;
  vertical-align: -2px;
  cursor: pointer;
  color: #878664;
}

/* キーボード操作のフォーカスを見えるように */
input[type=checkbox]:focus-visible,
input[type=radio]:focus-visible {
  outline: 2px solid #79a6ff;
  outline-offset: 2px;
}

/*========= ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #e9e4ac;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  bottom: -50px;
  transition: all 0.6s; /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none; /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  z-index: 999;
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.check-test {
  display: none;
}

.check-test + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}

.check-test + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
}

.check-test + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 2px solid rgb(0, 0, 0);
  border-left: 2px solid rgb(0, 0, 0);
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 1em;
}

.check-test:checked + span::after {
  opacity: 1;
}

.btn-submit.form__btn-submit.page-contact-confirm__btn-submit--white {
  display: inline-block;
}/*# sourceMappingURL=style.css.map */