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

body {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "Mistral", 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;
}

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

ul,
ol {
  padding: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

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

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

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background-color: #FCFCFC;
}
@media screen and (max-width: 768px) {
  .header {
    height: 80px;
  }
}

.header__inner {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  background-color: transparent;
}
.header__inner a {
  font-size: 16px;
  color: #1A1A1A;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .header__inner {
    font-size: 20px;
  }
}
@media screen and (max-width: 376px) {
  .header__inner {
    padding: 0 16px;
  }
}

.header__inner a.is-active {
  color: #599473;
  border-bottom: 1px solid #599473;
}

.header__items li:not(:first-child) {
  margin-left: 30px;
}

.header-logo img {
  width: 178px;
  height: 64px;
  margin-right: auto;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .header-logo img {
    width: 110px;
    height: 40px;
    margin-top: 0;
  }
}

.nav__container {
  display: block;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .nav__container {
    display: flex;
  }
}

.header__contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__contact .contact__link {
  margin: 0 16px;
}

@media screen and (max-width: 768px) {
  .sns-icon {
    margin-right: 70px;
  }
}

.header__items {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header__list:not(:first-child) {
  display: flex;
  margin-left: 33px;
}

.hamburger {
  position: fixed;
  z-index: 9000;
  top: 20px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: #599473;
  border-radius: 50%;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.hamburger.is-active {
  top: 20px;
  right: 16px;
}

.hamburger span {
  position: absolute;
  right: 10px;
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #FCFCFC;
  transition: 0.3s transform, 0.3s background-color;
}

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

.hamburger span:nth-child(1) {
  top: 14px;
  width: 14px;
}

.hamburger span:nth-child(2) {
  top: 20px;
  transition: 0.3s opacity;
}

.hamburger span:nth-child(3) {
  top: 26px;
  width: 14px;
}

.hamburger.is-active span:nth-child(1) {
  top: 20px;
  left: 13px;
  transform: rotate(-45deg);
}

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

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

.js-drawer {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translate(100%);
  transition: all 0.5s;
  overflow-y: scroll;
  z-index: 900;
  background-color: #FCFCFC;
}

.js-drawer.open {
  transform: translateZ(0);
  position: fixed;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .js-drawer.open {
    transform: translate(100%);
  }
}

.drawer-menu {
  width: 100%;
  height: auto;
}

.drawer-menu__inner {
  max-width: 343px;
  margin: auto;
  padding: 140px 0 80px;
}

.drawer-menu__items {
  padding: 60px 0;
  border-top: 1px solid #1A1A1A;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 30px;
}

.drawer-menu__item a {
  font-size: 20px;
  font-weight: 400;
  color: #1A1A1A;
  display: block;
}

.drawer-menu__link::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #599473;
  border-radius: 50%;
  margin-left: 16px;
  margin-right: 20px;
}

.contact__icon {
  display: flex;
  justify-content: space-around;
  padding-bottom: 60px;
  border-bottom: 1px solid #1A1A1A;
}

body.is-scrollLock {
  position: fixed;
  left: 0;
  width: 100%;
}

footer {
  background-color: #F9F9F9;
}

.footer__inner {
  max-width: 1100px;
  padding: 80px 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #F9F9F9;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    display: block;
    padding: 40px 16px;
  }
}

.footer__heading {
  color: #1A1A1A;
}
.footer__heading h2 {
  font-size: 40px;
  font-family: "Zen Kaku Gothic New";
  font-weight: 400;
  margin-bottom: 30px;
}
.footer__heading p {
  font-size: 16px;
}

.footer__number {
  display: flex;
  align-items: flex-end;
  margin-top: 20px;
}
.footer__number p {
  margin-right: 55px;
}
@media screen and (max-width: 768px) {
  .footer__number p {
    margin-right: auto;
  }
}

.footer__nav {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    margin-top: 40px;
  }
}

.footer__nav ul li a {
  text-decoration: none;
  color: #1A1A1A;
  font-size: 16px;
  display: block;
}

.footer__nav-list1 {
  padding: 20px 40px;
  border-left: 1px solid #599473;
}
.footer__nav-list1 li + li {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .footer__nav-list1 {
    padding: 5vw 8vw;
  }
}

.footer__nav-list2 {
  padding: 20px 0 20px 40px;
  border-left: 1px solid #599473;
}
.footer__nav-list2 li + li {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .footer__nav-list2 {
    padding: 5vw 0 5vw 8vw;
  }
}

.pageTop {
  position: absolute;
  top: -20px;
  right: 10px;
  display: flex;
  align-items: center;
  font-family: "Mistral";
  font-size: 13px;
  text-orientation: sideways;
  writing-mode: vertical-lr;
  cursor: pointer;
  color: #599473;
}
.pageTop::before {
  content: "";
  position: relative;
  width: 1px;
  height: 40px;
  background-color: #599473;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .pageTop {
    top: -46px;
    right: 24px;
  }
}

.fv {
  background-color: #FCFCFC;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 130px 20px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    padding: 100px 0 0;
  }
}

.fv__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    min-height: 690px;
    padding: 0 16px;
  }
}

.mainVisual__area {
  max-width: 1060px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.mainVisual__slide01.swiper {
  max-width: 916px;
  width: 100%;
  height: 100%;
  margin-left: 13.58%;
}
@media screen and (max-width: 768px) {
  .mainVisual__slide01.swiper {
    height: 350px;
    margin-left: 0;
  }
}

.swiper-slide {
  max-width: 916px;
  max-height: 648px;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainVisual__slide02 .swiper-wrapper .swiper-slide img,
.mainVisual__slide03 .swiper-wrapper .swiper-slide img {
  object-fit: cover;
}
@media screen and (max-width: 376px) {
  .mainVisual__slide02 .swiper-wrapper .swiper-slide img,
  .mainVisual__slide03 .swiper-wrapper .swiper-slide img {
    width: 100px;
    height: 100px;
  }
}

.mainVisual__slide02 {
  width: 100%;
  height: 100%;
}

.mainVisual__slide03 {
  width: 100%;
  height: 100%;
}

.mainVisual__copy {
  position: absolute;
  top: 60%;
  left: 0;
  transform: translate(0, -130%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mainVisual__copy {
    position: initial;
    transform: translateY(80px);
  }
}

.mv__title {
  color: #1A1A1A;
  font-size: 48px;
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  text-shadow: 0 4px 20px #FCFCFC;
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 32px;
    text-shadow: none;
  }
}

.mv__sub-title {
  margin-top: 12px;
  font-family: "Mistral";
  font-size: 28px;
  font-weight: 400;
  color: #599473;
}
@media screen and (max-width: 768px) {
  .mv__sub-title {
    margin-top: 10px;
    font-size: 18px;
  }
}

.fv__copywrite {
  position: absolute;
  left: 20px;
  bottom: 0;
  display: flex;
  align-items: center;
  font-size: 13px;
  text-orientation: sideways;
  writing-mode: vertical-lr;
}
.fv__copywrite::before {
  content: "";
  position: relative;
  width: 1px;
  height: 40px;
  background-color: #1A1A1A;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .fv__copywrite {
    font-size: 10px;
    bottom: 0;
    left: 16Px;
  }
}

.commit {
  width: 100%;
  background-color: #FCFCFC;
  padding-top: 140px;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .commit {
    margin-top: -200px;
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

.commit__inner {
  display: flex;
  max-width: 1270px;
  padding: 0 20px;
  margin: 0 auto;
  transform: translateX(-85px);
}
@media screen and (max-width: 768px) {
  .commit__inner {
    flex-direction: column-reverse;
    padding: 0 16px;
    transform: initial;
  }
}

.commit__img {
  max-width: 36.5vw;
  max-height: 25.78vw;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
}
.commit__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .commit__img {
    max-width: 95.73vw;
    max-height: 67.73vw;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  }
}

.commit__body {
  margin-left: 5.714vw;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .commit__body {
    margin-left: 36px;
    margin-bottom: 80px;
  }
}

.commit__title {
  font-size: 24px;
  font-family: "Zen Kaku Gothic New";
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #1A1A1A;
}
@media screen and (max-width: 768px) {
  .commit__title {
    font-size: 20px;
  }
}

.commit__text {
  font-size: 16px;
  color: #1A1A1A;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .commit__text {
    margin-bottom: 80px;
  }
}

.commit__btn {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .commit__btn {
    margin: 0 auto;
  }
}

.business {
  width: 100%;
  padding: 160px 0;
  background-color: #F9F9F9;
}
@media screen and (max-width: 376px) {
  .business {
    padding: 80px 0;
  }
}

.business__container, .topNews__container {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .business__container, .topNews__container {
    align-items: center;
    padding-top: 80px;
  }
}

.business__wrapper, .topNews__wrapper {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .business__wrapper, .topNews__wrapper {
    display: block;
  }
}

.business__heading {
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  .business__heading {
    padding-right: 0;
    margin-top: 10px;
  }
}

.business__cards {
  margin-left: auto;
  display: grid;
  column-gap: 25px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .business__cards {
    margin-left: 0;
    display: flex;
    flex-direction: column;
  }
}

.business__card {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .business__card {
    margin-top: 40px;
  }
}

.business__card-img {
  max-width: 297px;
  max-height: 184px;
}
.business__card-img img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .business__card-img {
    max-width: 100%;
    max-height: 100%;
  }
}

.card__body {
  max-width: 297px;
  color: #1A1A1A;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .card__body {
    max-width: 100%;
  }
}
.card__bodytime, .card__body p {
  color: #1A1A1A;
}

.card__title {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  font-size: 20px;
  margin-top: 30px;
}

.card-text {
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  margin-top: 20px;
}

.business__btn, .topNews__btn {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .business__btn, .topNews__btn {
    margin: 0 auto;
  }
}

.message {
  background-color: #FCFCFC;
  width: 100%;
  padding-top: 160px;
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .message {
    padding-top: 80px;
  }
}

.message__container {
  display: flex;
  flex-direction: column;
  max-width: 1270px;
  padding: 0 20px;
  margin: 0 auto;
  transform: translateX(-85px);
}
@media screen and (max-width: 768px) {
  .message__container {
    overflow: hidden;
    transform: initial;
    flex-direction: column;
    padding: 0 16px;
  }
}

.message__img {
  max-width: 1060px;
  max-height: 439px;
  position: relative;
  border-radius: 30px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .message__img {
    aspect-ratio: 359/212;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  }
}
.message__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message__body {
  max-width: 795px;
  max-height: 176px;
  border-radius: 10px;
  background-color: #FCFCFC;
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 10;
  left: 455px;
  bottom: -16px;
}
@media screen and (max-width: 768px) {
  .message__body {
    max-height: 234px;
    position: initial;
    transform: translate(16px, -40px);
  }
}

.message__text {
  font-size: 16px;
  font-weight: 400;
  margin: 2.777vw 0;
  padding-left: 2.777vw;
  color: #1A1A1A;
}
@media screen and (max-width: 768px) {
  .message__text {
    padding: 5.208vw 3.385w;
    margin: 0 0 5.208vw 0;
  }
}

.message__btn {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .message__btn {
    margin: auto;
  }
}

.topNews {
  width: 100%;
  padding: 160px 0;
  background-color: #FCFCFC;
}
@media screen and (max-width: 376px) {
  .topNews {
    padding: 20px 0 80px 0;
  }
}

.topNews__cards {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .topNews__cards {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
    gap: 40px 13px;
  }
}

.topNews__card-img {
  max-width: 297px;
  max-height: 184px;
  aspect-ratio: 297/184;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .topNews__card-img {
    max-width: 100%;
    max-height: 100%;
  }
}
.topNews__card-img img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.topNews__tag {
  width: 100px;
  border: 1px solid #1A1A1A;
  border-radius: 50px;
  background-color: #FCFCFC;
  color: #1A1A1A;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  font-family: "Noto Sans JP";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news__card__body {
  margin-top: 30px;
  color: #1A1A1A;
  max-width: 297px;
}
@media screen and (max-width: 768px) {
  .news__card__body {
    max-width: 165px;
  }
}

.topNews__data {
  margin-top: 30px;
}

.topNewsCard-title {
  font-size: 16px;
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .topNewsCard-title {
    font-size: 13px;
  }
}

.access {
  width: 100%;
  background-color: #FCFCFC;
}

.access__heading {
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .access__heading {
    padding-top: 80px;
  }
}

.access__wrapper {
  display: flex;
  padding-top: 80px;
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .access__wrapper {
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.map__img {
  max-width: 511px;
  max-height: 318px;
}
.map__img img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .map__img {
    max-width: 100%;
    max-height: 100%;
  }
}

.access__body {
  margin-left: 80px;
  display: flex;
  flex-direction: column;
  max-width: 33.5vw;
  color: #1A1A1A;
}
.access__body h4 {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
}
.access__body h4 img {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .access__body {
    margin-top: 40px;
    margin-left: 0;
    max-width: 100%;
  }
}

.train {
  margin-bottom: 40px;
}
.train p {
  font-size: 16px;
  color: #1A1A1A;
  margin-top: 30px;
}

.car {
  margin-bottom: 40px;
}
.car p {
  font-size: 16px;
  color: #1A1A1A;
}
.car p:not(:last-child) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .car {
    margin-bottom: 0;
  }
}

.vacation {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .vacation {
    margin-left: 75px;
    text-align: initial;
  }
}

html {
  font-size: 62.5%;
}

.contact {
  width: 100%;
  background-image: url(../images/img-cta-haikei.png);
  overflow: hidden;
}

.contact__inner {
  position: relative;
  max-width: 823px;
  padding: 80px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    max-width: 100%;
    padding: 40px 16px;
  }
}

.back {
  position: absolute;
  top: 80%;
  left: 70%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .back {
    top: 95%;
    left: 53%;
    transform: translate(-50%, -50%);
  }
}

.background-text {
  font-size: 21.428vw;
  font-family: "Mistral";
  font-weight: 400;
  color: rgba(252, 252, 252, 0.2);
}
@media screen and (max-width: 768px) {
  .background-text {
    font-size: 26.666vw;
  }
}

.contact__heading {
  width: fit-content;
  margin: 0 auto;
}
.contact__heading h3 {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  font-size: 32px;
  color: #FCFCFC;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__heading h3 {
    font-size: 24px;
  }
}
.contact__heading p {
  font-size: 16px;
  margin-top: 40px;
  color: #FCFCFC;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .contact__heading p {
    line-height: 1.5;
  }
}

.icon-area {
  position: relative;
  z-index: 10;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.icon-area p {
  font-size: 16px;
  color: #FCFCFC;
}
@media screen and (max-width: 768px) {
  .icon-area {
    display: block;
    margin: 0 auto;
  }
}

.tel, .mail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .tel, .mail {
    margin-top: 40px;
  }
}

.tel p, .mail p {
  margin-top: 20px;
}

.tel-number {
  margin-top: 20px;
  font-size: 40px;
  font-family: "Noto Sans Jp";
  font-weight: 500;
  color: #FCFCFC;
}

.contact__button {
  margin-top: 20px;
}

.fv-common {
  width: 100%;
  background-color: #FCFCFC;
}

.fv-common__inner {
  padding-top: 130px;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .fv-common__inner {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

.fv-common__wrapper {
  display: flex;
  max-width: 1270px;
  padding: 0 20px;
  margin: 0 auto;
  transform: translateX(-85px);
}
@media screen and (max-width: 768px) {
  .fv-common__wrapper {
    display: block;
    transform: initial;
    padding: 0 16px;
  }
}

.fv-c__img {
  max-width: 742px;
  max-height: 331px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .fv-c__img {
    max-width: 100%;
    max-height: 100%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  }
}
.fv-c__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-common__title {
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-left: 80px;
  border-bottom: 1px solid #1A1A1A;
  white-space: nowrap;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .fv-common__title {
    margin-top: 30px;
    margin-left: 0;
  }
}
.fv-common__title h2 {
  font-family: "Zen Kaku Gothic New";
  font-size: 40px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  color: #1A1A1A;
}
@media screen and (max-width: 768px) {
  .fv-common__title h2 {
    font-size: 24px;
  }
}
.fv-common__title--news {
  white-space: break-spaces;
}

.en-title {
  position: relative;
  font-family: "Mistral";
  color: #599473;
  font-size: 16px;
  font-size: clamp(16px, 3vw, 30px);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .en-title {
    margin-bottom: 0;
    font-size: 13px;
  }
}

.fv-c__message {
  width: fit-content;
  padding: 0 20px;
  margin: 160px auto 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv-c__message {
    margin: 80px auto 0;
    padding: 0 16px;
  }
}
.fv-c__message h3 {
  font-family: "Zen Kaku Gothic New";
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #1A1A1A;
  line-height: 2.083;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .fv-c__message h3 {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 40px;
  }
}
.fv-c__message p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  color: #1A1A1A;
}

.detail {
  width: 100%;
  padding: 160px 0;
  background-color: #F9F9F9;
}
@media screen and (max-width: 768px) {
  .detail {
    padding: 80px 0;
  }
}

@media screen and (max-width: 768px) {
  .detail__inner {
    padding: 0 16px;
  }
}

.detail__items {
  display: grid;
  gap: 80px 40px;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .detail__items {
    gap: 40px;
    grid-template-columns: 1fr;
  }
}

.detail__img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  color: #FCFCFC;
  padding: 180px 40px 40px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .detail__img {
    padding: 40px 16px;
    line-height: 1.55;
  }
}

.build {
  background-image: url(../images/detail1.jpg);
}

.renovation {
  background-image: url(../images/detail2.jpg);
  transform: translateY(50%);
}
@media screen and (max-width: 768px) {
  .renovation {
    transform: translateY(0);
  }
}

.store {
  background-image: url(../images/detail3.jpg);
}

.detail__head {
  font-size: 24px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New";
  margin-bottom: 20px;
}

.detail__text {
  font-size: 16px;
}

.recommend {
  width: 100%;
  background-color: #FCFCFC;
  position: relative;
}

.recommend-line {
  width: 1px;
  height: 160px;
  background-color: #599473;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .recommend-line {
    height: 80px;
  }
}

.recommend__works {
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .recommend__works {
    padding-top: 80px;
  }
}

.recommend__works:last-of-type {
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .recommend__works:last-of-type {
    padding-bottom: 80px;
  }
}

.eyeCatch {
  aspect-ratio: 1060/439;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .eyeCatch {
    aspect-ratio: 343/212;
  }
}

.recommend__img01 {
  background-image: url(../images/material1.jpg);
}

.recommend__img01::after {
  content: "01";
  font-family: "Mistral";
  font-size: 200px;
  color: rgba(252, 252, 252, 0.6);
  position: absolute;
  left: -19px;
  bottom: -76px;
}
@media screen and (max-width: 768px) {
  .recommend__img01::after {
    font-size: 100px;
    left: -5px;
    bottom: -38px;
  }
}

.recommend__img02 {
  background-image: url(../images/function1.jpg);
}

.recommend__img02::after {
  content: "02";
  font-family: "Mistral";
  font-size: 200px;
  color: rgba(252, 252, 252, 0.6);
  position: absolute;
  right: -19px;
  bottom: -76px;
}
@media screen and (max-width: 768px) {
  .recommend__img02::after {
    right: inherit;
    font-size: 100px;
    left: -5px;
    bottom: -38px;
  }
}

.recommend__img03 {
  background-image: url(../images/garden1.jpg);
}

.recommend__img03::after {
  content: "03";
  font-family: "Mistral";
  font-size: 200px;
  color: rgba(252, 252, 252, 0.6);
  position: absolute;
  left: -19px;
  bottom: -76px;
}
@media screen and (max-width: 768px) {
  .recommend__img03::after {
    font-size: 100px;
    left: -5px;
    bottom: -38px;
  }
}

.recommend__img04 {
  background-image: url(../images/maintenance1.jpg);
}

.recommend__img04::after {
  content: "04";
  font-family: "Mistral";
  font-size: 200px;
  color: rgba(252, 252, 252, 0.6);
  position: absolute;
  right: -5px;
  bottom: -76px;
}
@media screen and (max-width: 768px) {
  .recommend__img04::after {
    right: inherit;
    font-size: 100px;
    left: -5px;
    bottom: -38px;
  }
}

.r-title {
  display: flex;
  position: absolute;
  top: 80px;
  right: 80px;
  font-family: "Zen Kaku Gothic New";
  color: #1A1A1A;
}
@media screen and (max-width: 768px) {
  .r-title {
    top: 10px;
    right: 15px;
  }
}
.r-title h3 {
  writing-mode: vertical-lr;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4375;
  padding-top: 0.2em;
  letter-spacing: 0.5em;
  margin-right: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .r-title h3 {
    font-size: 23px;
    line-height: 1.25;
    padding-top: 0;
    margin-right: 20px;
  }
}
.r-title p {
  writing-mode: vertical-lr;
  font-size: 16px;
  line-height: 1.125;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .r-title p {
    font-size: 13px;
    line-height: 1.23;
  }
}

.r-title2 {
  display: flex;
  position: absolute;
  top: 80px;
  left: 80px;
  font-family: "Zen Kaku Gothic New";
  color: #1A1A1A;
}
@media screen and (max-width: 768px) {
  .r-title2 {
    top: 10px;
    left: inherit;
    right: 15px;
  }
}
.r-title2 h3 {
  writing-mode: vertical-lr;
  font-size: 2.2857vw;
  font-weight: 500;
  line-height: 1.4375;
  padding-top: 0.2em;
  letter-spacing: 0.5em;
  margin-right: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .r-title2 h3 {
    font-size: 23px;
    line-height: 1.25;
    letter-spacing: 0.3em;
    padding-top: 0;
    margin-right: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .r-title2 h3 {
    font-size: 32px;
  }
}
.r-title2 p {
  writing-mode: vertical-lr;
  font-size: 16px;
  line-height: 1.125;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .r-title2 p {
    font-size: 13px;
    line-height: 1.23;
  }
}

.recommend__material,
.recommend__garden {
  display: flex;
  margin-top: 53px;
}
@media screen and (max-width: 768px) {
  .recommend__material,
  .recommend__garden {
    flex-direction: column-reverse;
    margin-top: 40px;
  }
}
.recommend__material figure,
.recommend__garden figure {
  max-width: 411px;
  max-height: 255px;
}
.recommend__material figure img,
.recommend__garden figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.recommend__material p,
.recommend__garden p {
  margin-left: 80px;
  font-size: 16px;
  color: #1A1A1A;
  max-width: 570px;
}
@media screen and (max-width: 768px) {
  .recommend__material p,
  .recommend__garden p {
    margin-left: 0;
    margin-bottom: 40px;
  }
}

.recommend__function,
.recommend__maintenance {
  display: flex;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .recommend__function,
  .recommend__maintenance {
    flex-direction: column;
    margin-top: 40px;
  }
}
.recommend__function figure,
.recommend__maintenance figure {
  max-width: 411px;
  max-height: 255px;
}
.recommend__function figure img,
.recommend__maintenance figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.recommend__function p,
.recommend__maintenance p {
  margin-right: 80px;
  font-size: 16px;
  color: #1A1A1A;
}
@media screen and (max-width: 768px) {
  .recommend__function p,
  .recommend__maintenance p {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.data {
  width: 100%;
  background-color: #FCFCFC;
}

.data__inner {
  border-top: 1px solid #b1b1b1;
  border-bottom: 1px solid #b1b1b1;
}
@media screen and (max-width: 768px) {
  .data__inner {
    border-bottom: none;
  }
}

.data__wrapper {
  padding: 160px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
}
@media screen and (max-width: 768px) {
  .data__wrapper {
    padding: 40px 0;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .data__title {
    margin-bottom: 40px;
  }
}
.data__title h2 {
  margin-right: 10px;
  letter-spacing: 0.417em;
}
@media screen and (max-width: 768px) {
  .data__title h2 {
    letter-spacing: normal;
  }
}

.numerical__area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(297px, 1fr));
  gap: 40px 24.5px;
}
@media screen and (max-width: 768px) {
  .numerical__area {
    grid-template-columns: repeat(auto-fit, minmax(161px, 1fr));
    gap: 40px 21px;
  }
}

.data__card-award {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 297px;
  padding: 20px 0;
  border: 1px solid #599473;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .data__card-award {
    padding: 10px 15px;
    text-align: center;
  }
}
.data__card-award p span {
  color: #1A1A1A;
}

.item {
  font-family: "Zen Kaku Gothic New";
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .item {
    font-size: 16px;
  }
}

.number {
  display: flex;
  align-items: baseline;
}
.number p {
  color: #1A1A1A;
  font-family: "Noto Sans JP";
  font-size: 48px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .number p {
    font-size: 24px;
  }
}

.small {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .small {
    font-size: 13px;
  }
}

.text {
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 10px;
  }
}

.mycontent:before {
  content: "・";
}

.area__text {
  font-size: 16px;
}

.fv-c__message--co {
  margin: 200px auto 0;
}
.fv-c__message--co p {
  font-size: 24px;
  line-height: 2.083;
  font-family: "Zen Kaku Gothic New";
}
@media screen and (max-width: 768px) {
  .fv-c__message--co p {
    font-size: 16px;
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .fv-c__message--co {
    margin: 80px auto 0;
  }
}

.ceo {
  width: 100%;
  background-color: #FCFCFC;
  padding-bottom: 160px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .ceo {
    padding-bottom: 80px;
  }
}

.ceo__inner {
  padding: 0 20px;
  max-width: 1270px;
  height: 748px;
  margin: 0 auto;
  display: flex;
  transform: translateX(80px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .ceo__inner {
    transform: translateX(0);
    display: block;
    position: inherit;
    height: 1202px;
  }
}

.ceo__img {
  position: absolute;
  top: 0;
  right: 20px;
  max-width: 46.428vw;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
}
.ceo__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .ceo__img {
    position: inherit;
    max-width: 100%;
    margin-top: 40px;
  }
}

.ceo__title {
  position: absolute;
  top: 153px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .ceo__title {
    position: inherit;
  }
}

.ceo__speech {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #1A1A1A;
  line-height: 1.75;
  position: absolute;
  top: 290px;
  max-width: 746px;
}
@media screen and (max-width: 768px) {
  .ceo__speech {
    position: inherit;
  }
}

.ceo__text {
  line-height: 2;
}

.ceo__sign {
  margin-top: -50px;
  margin-left: 600px;
}
@media screen and (max-width: 768px) {
  .ceo__sign {
    margin-top: 20px;
    margin-left: 0;
    text-align-last: right;
  }
}

.summary {
  width: 100%;
  background-color: #F0F0F0;
  position: relative;
  height: 2260px;
}
@media screen and (max-width: 376px) {
  .summary {
    height: 2110px;
  }
}

.summary__inner {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 160px;
  margin-bottom: 160px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .summary__inner {
    top: 0;
    left: 0;
    padding: 0 16px;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.summary__back {
  writing-mode: vertical-lr;
  color: #F9F9F9;
  font-family: "Mistral";
  font-size: 21.4285vw;
}
@media screen and (max-width: 768px) {
  .summary__back {
    padding-top: 80px;
  }
}

.summary__container {
  max-width: 860px;
  margin: 0 auto;
}

.summary__container {
  color: #1A1A1A;
}
.summary__container h3 {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  padding-bottom: 85px;
}
@media screen and (max-width: 768px) {
  .summary__container h3 {
    padding-bottom: 0;
    font-size: 24px;
  }
}
.summary__container table {
  width: 100%;
  border-collapse: collapse;
}
.summary__container tr {
  display: flex;
  border-bottom: 1px solid #1A1A1A;
}
@media screen and (max-width: 768px) {
  .summary__container tr {
    flex-direction: column;
    margin-top: 40px;
  }
}
.summary__container th {
  font-size: 16px;
  font-weight: 400;
  width: 280px;
  padding: 54px 0;
  text-align: left;
  padding-left: 100px;
}
@media screen and (max-width: 768px) {
  .summary__container th {
    width: 100%;
    margin-bottom: 17px;
    padding: 0 16px;
  }
}
.summary__container td {
  font-size: 16px;
  font-weight: 400;
  padding: 54px 100px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .summary__container td {
    margin-bottom: 19px;
    padding: 0 0 0 16px;
    letter-spacing: -0.03em;
  }
}

.summary__photo {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .summary__photo {
    display: block;
    margin-top: 40px;
  }
}
.summary__photo figure {
  max-width: 411px;
  aspect-ratio: 411/254;
}
@media screen and (max-width: 768px) {
  .summary__photo figure {
    max-width: 100%;
    margin: 0 auto;
  }
}
.summary__photo figure img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.summary__photo figure:last-of-type {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .summary__photo figure:last-of-type {
    margin-left: auto;
    margin-top: 40px;
  }
}

.works {
  width: 100%;
  background-color: #FCFCFC;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .works {
    padding-bottom: 80px;
  }
}

.works__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(326px, 1fr));
  gap: 80px 40px;
}
@media screen and (max-width: 768px) {
  .works__cards {
    width: 100%;
    gap: 40px 13px;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}

.works__card-img, .staff__card-img {
  border-radius: 20px;
  max-width: 326px;
  max-height: 203px;
  position: relative;
}
.works__card-img img, .staff__card-img img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .works__card-img, .staff__card-img {
    max-width: 100%;
    max-height: 100%;
  }
}

.worksCard__body {
  max-width: 326px;
  display: flex;
  margin-top: 45px;
  color: #1A1A1A;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .worksCard__body {
    margin-top: 30px;
    display: block;
  }
}

.works__data {
  color: #1A1A1A;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .works__data {
    font-size: 10px;
  }
}

.w-line {
  width: 16px;
  height: 1px;
  background-color: #1A1A1A;
  align-items: center;
  margin: auto 16px;
}

.worksCard-title, .staffCard-name {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .worksCard-title, .staffCard-name {
    margin-top: 10px;
    font-size: 13px;
  }
}

.works-detail-img {
  width: 100%;
  background-color: #FCFCFC;
}

.wdi__area {
  max-width: 1060px;
  max-height: 450px;
  aspect-ratio: 1060/450;
}
@media screen and (max-width: 768px) {
  .wdi__area {
    max-width: 343px;
    max-height: 201px;
    aspect-ratio: 343/201;
  }
}
.wdi__area img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .fv-common__inner--wd {
    padding-bottom: 40px;
  }
}

.airFlow {
  width: 100%;
  background-color: #FCFCFC;
}

.airFlow__inner {
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .airFlow__inner {
    padding-bottom: 40px;
  }
}

.airFlow__board {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .airFlow__board {
    display: block;
    padding-top: 40px;
  }
}

.airFlow__building {
  border-collapse: collapse;
  max-width: 640px;
  margin-left: 80px;
}
@media screen and (max-width: 768px) {
  .airFlow__building {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
}
.airFlow__building tr {
  display: flex;
  border-bottom: 1px solid #599473;
}
@media screen and (max-width: 768px) {
  .airFlow__building tr {
    display: block;
  }
}
.airFlow__building tr:first-of-type {
  border-top: 1px solid #599473;
}
.airFlow__building th {
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  font-family: "Noto Sans JP";
  width: 200px;
  padding: 20px 0;
  text-align: left;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .airFlow__building th {
    width: 32vw;
    padding-left: 16px;
  }
}
.airFlow__building td {
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  font-family: "Noto Sans JP";
  width: 440px;
  padding: 20px 0;
  text-align: left;
  padding-left: 2.8571vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .airFlow__building td {
    width: calc(100% - 32vw);
    padding-left: 16px;
  }
}
.airFlow__building td::before {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background-color: #599473;
  position: absolute;
  top: 0;
  left: 0;
}

.notice1 {
  width: 100%;
  background-color: #FCFCFC;
  padding: 160px 0;
}
@media screen and (max-width: 768px) {
  .notice1 {
    padding: 40px 0 80px;
  }
}

.notice1__wrapper {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
}
@media screen and (max-width: 768px) {
  .notice1__wrapper {
    display: flex;
    flex-direction: column;
  }
}

.notice1__img {
  width: 46.4285vw;
  height: 32.5vw;
  transform: translateX(-26%);
}
@media screen and (max-width: 768px) {
  .notice1__img {
    width: 100%;
    height: 100%;
    transform: initial;
  }
}
.notice1__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.notice1__img2 {
  width: 26.7857vw;
  height: 35.8571vw;
  transform: translate(0, 100px);
}
@media screen and (max-width: 768px) {
  .notice1__img2 {
    width: 39.7333vw;
    height: 53.3333vw;
    order: 2;
    transform: initial;
  }
}
.notice1__img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.notice1__img3 {
  width: 26.3571vw;
  height: 18.5vw;
  transform: translate(-160px, 200px);
}
@media screen and (max-width: 768px) {
  .notice1__img3 {
    width: 46.4vw;
    height: 32.5333vw;
    order: 1;
    transform: initial;
  }
}
.notice1__img3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .house-images {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 40px;
  }
}

.notice1__heading {
  width: 35vw;
  height: 25.5714vw;
  transform: translate(0, -17.1428vw);
}
@media screen and (max-width: 768px) {
  .notice1__heading {
    width: 100%;
    height: auto;
    margin-top: 80px;
    transform: initial;
  }
}

.notice1__text {
  color: #1A1A1A;
  margin-top: 40px;
  line-height: 1.75;
  font-size: 16px;
}

.notice1__btn {
  text-align: center;
}
@media screen and (max-width: 900px) {
  .notice1__btn {
    margin-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  .notice1__btn {
    margin-top: 80px;
  }
}

.category-select {
  width: 100%;
  background-color: #FCFCFC;
}

.c-select__container {
  border-top: 1px solid #1A1A1A;
  padding-top: 160px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-select__container {
    padding-top: 80px;
  }
}
.c-select__container h2 {
  color: #599473;
  font-size: 32px;
  font-family: "Mistral";
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-select__container h2 {
    font-size: 24px;
  }
}

.c-s__btn {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .c-s__btn {
    margin-top: 40px;
  }
}

.c-tag {
  width: 100px;
  border: 1px solid #1A1A1A;
  border-radius: 50px;
  background-color: #FCFCFC;
  color: #1A1A1A;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  font-family: "Noto Sans JP";
  padding: 2.5px 0;
}
@media screen and (max-width: 768px) {
  .c-tag {
    padding: 0;
  }
}

.c-tag + .c-tag {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .c-tag + .c-tag {
    margin-left: 10px;
  }
}

.related {
  width: 100%;
  background-color: #FCFCFC;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .related {
    padding-bottom: 80px;
  }
}

.related__inner h2 {
  color: #599473;
  font-size: 32px;
  font-family: "Mistral";
  text-align: center;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .related__inner h2 {
    padding-top: 40px;
    font-size: 24px;
  }
}

.related__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 20px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .related__container {
    grid-template-columns: 1fr 1fr;
    column-gap: 13px;
    row-gap: 40px;
    margin-top: 40px;
  }
}

.related__card {
  position: relative;
}

.rCard__body {
  color: #1A1A1A;
  font-weight: 400;
  max-width: 250px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .rCard__body {
    max-width: 165px;
  }
}
.rCard__body h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news__card-img {
  max-width: 250px;
  max-height: 129.5px;
  aspect-ratio: 250/129.5;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news__card-img {
    max-width: 165px;
    max-height: 102px;
    aspect-ratio: 165/102;
  }
}
.news__card-img img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff {
  width: 100%;
  background-color: #FCFCFC;
  padding-top: 35px;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .staff {
    padding-top: 0;
    padding-bottom: 80px;
  }
}

.staff__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px 40px;
}
@media screen and (max-width: 768px) {
  .staff__cards {
    width: 100%;
    gap: 40px 13px;
    grid-template-columns: 1fr 1fr;
  }
}

.staffCard__body {
  max-width: 326px;
  display: flex;
  color: #1A1A1A;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .staffCard__body {
    flex-direction: column-reverse;
    margin-top: 20px;
  }
}

.staffCard-title {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .staffCard-title {
    margin-top: 10px;
    font-size: 10px;
  }
}

.news {
  width: 100%;
  background-color: #FCFCFC;
}

.news__items {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 160px;
}
.news__items li {
  border-bottom: 1px solid #1A1A1A;
}
@media screen and (max-width: 768px) {
  .news__items {
    padding-top: 0;
    padding-bottom: 80px;
    margin: -40px auto 0;
  }
}

.news__list {
  display: flex;
  align-items: center;
  justify-content: left;
}
@media screen and (max-width: 768px) {
  .news__list {
    flex-direction: column;
    align-items: normal;
    justify-content: normal;
  }
}

.news-top {
  display: flex;
  width: 280px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .news-top {
    padding-top: 40px;
  }
}

.news__date {
  font-family: "Noto Sans JP";
  margin-right: 20px;
  font-size: 16px;
  color: #1A1A1A;
}

.news__tag {
  padding: 2.5px 20px;
  min-width: 100px;
  border: 1px solid #1A1A1A;
  border-radius: 50px;
  background-color: #FCFCFC;
  color: #1A1A1A;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  font-family: "Noto Sans JP";
}

.news__title {
  color: #1A1A1A;
  padding: 40px 0;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP";
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 65.1162%;
}
@media screen and (max-width: 768px) {
  .news__title {
    padding: 20px 0;
    padding-left: 0;
    width: 100%;
  }
}

.s-fv__img {
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .s-fv__img {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  }
}

.article {
  width: 100%;
  background-color: #FCFCFC;
}

.article__container {
  display: flex;
  flex-direction: column;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .article__container {
    padding-bottom: 78px;
  }
}
.article__container h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1A1A1A;
  font-family: "Noto Sans JP";
}
.article__container p {
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  font-family: "Noto Sans JP";
}

.article__top {
  display: flex;
  align-items: center;
}

.a-news__date {
  font-size: 13px;
  color: #1A1A1A;
  margin-right: 20px;
}

.article__title1 {
  margin-top: 40px;
}

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

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

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

.article__text3 {
  margin-top: 40px;
}

.benefits {
  padding-left: 1em;
  text-indent: -1em;
}

.article__btn {
  text-align: center;
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  .article__btn {
    margin-top: 80px;
  }
}

.single__content li {
  font-size: 16px;
  color: #1A1A1A;
}

.single__content ul {
  padding-left: 0.5em;
  text-indent: -1em;
}

@media screen and (max-width: 768px) {
  .wp-block-spacer {
    height: 40px;
  }
}

.form {
  width: 100%;
  background-color: #F9F9F9;
  padding: 160px 0;
}

@media screen and (max-width: 768px) {
  .form__inner {
    padding: 32px 0;
  }
}

.form__container {
  background-color: #FCFCFC;
  border-radius: 40px;
}

.form__message {
  text-align: center;
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .form__message {
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.form__message p {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #1A1A1A;
  font-weight: 400;
}

.form__list {
  margin: 0 auto;
  padding: 100px 0 80px;
  max-width: 860px;
}
@media screen and (max-width: 768px) {
  .form__list {
    min-width: 343px;
    padding: 40px 16px;
  }
}
@media screen and (max-width: 376px) {
  .form__list {
    min-width: initial;
    max-width: 343px;
    padding: 40px 16px;
  }
}

.form__field + .form__field {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .form__field + .form__field {
    margin-top: 40px;
  }
}

.form__beside, .form__field {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__beside, .form__field {
    display: block;
  }
}

input, textarea {
  appearance: revert;
  background-color: #F4F4F4;
  border-radius: 10px;
  height: inherit;
}

.form__label {
  display: flex;
  min-width: 20vw;
}
.form__label label {
  align-items: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #1A1A1A;
}
@media screen and (max-width: 768px) {
  .form__label label {
    align-items: baseline;
  }
}

.form__required {
  font-family: "Noto Sans JP";
  font-size: 13px;
  color: red;
  margin-left: 20px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .form__required {
    margin-left: 10px;
  }
}

.form__block {
  width: 100%;
}

.form__data, .form__input {
  height: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__data, .form__input {
    margin-top: 10px;
  }
}

.form__input {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #1A1A1A;
  width: 100%;
  background-color: #F4F4F4;
  border-radius: 10px;
  padding-left: 8px;
}

.form__input--short {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #1A1A1A;
  width: 27.586%;
  height: 40px;
  background-color: #F4F4F4;
  border-radius: 10px;
  padding-left: 8px;
}
@media screen and (max-width: 768px) {
  .form__input--short {
    width: 110px;
  }
}

span.wpcf7-spinner {
  display: none;
}

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

.placeholder {
  color: #B1B1B1;
  font-size: 13px;
  margin-top: 10px;
}

.form__data-select {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .form__data-select {
    margin-top: 20px;
  }
}
.form__data-select label {
  margin-right: 60px;
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #1A1A1A;
}
.form__data-select input {
  margin-right: 20px;
}

.form__textarea {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #1A1A1A;
  padding-left: 8px;
}

.form__data-message, .form__textarea {
  resize: none;
  width: 100%;
  height: 240px;
}
@media screen and (max-width: 768px) {
  .form__data-message, .form__textarea {
    height: 200px;
    margin-top: 10px;
  }
}

.form__data-privacy label {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .form__data-privacy label {
    align-items: flex-start;
  }
}
.form__data-privacy input {
  margin-right: 20px;
}
.form__data-privacy span {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #1A1A1A;
}

.wpcf7-form-control-wrap {
  position: inherit;
}

.submit__button {
  text-align: center;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .submit__button {
    padding-bottom: 40px;
  }
}

.contact__submit-input {
  width: 240px;
  height: 60px;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #FCFCFC;
  background-color: transparent;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

.contact__submit-input:hover {
  color: #1A1A1A;
}

.contact__back-button {
  width: 240px;
  height: 60px;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #1A1A1A;
  background-color: transparent;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

.contact__back-button:hover {
  color: #FCFCFC;
}

.wpcf7-list-item {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .news__list.news__list--cc {
    padding: 0 16px;
  }
}

.news-top.news-top--cc {
  display: block;
  margin-right: 0;
  margin-left: 80px;
}
@media screen and (max-width: 768px) {
  .news-top.news-top--cc {
    margin-left: 0;
    display: flex;
    align-items: center;
  }
}
.news-top.news-top--cc span {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #1A1A1A;
}

.news__date.news__date--cc {
  margin-right: 0;
}

.news__list.news__list--cc2 {
  align-items: initial;
}
@media screen and (max-width: 768px) {
  .news__list.news__list--cc2 {
    padding: 0 16px;
  }
}

.news__date.news__date--cc2 {
  margin-right: 0;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .news__date.news__date--cc2 {
    margin-top: 0;
  }
}

.news__title.news__title--confirm {
  margin-left: 0;
  white-space: initial;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news__title.news__title--confirm {
    margin-bottom: 20px;
  }
}

.button-fab {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .button-fab {
    flex-direction: column-reverse;
  }
}

.return__btn.return__btn--cc {
  margin-right: 100px;
}
@media screen and (max-width: 768px) {
  .return__btn.return__btn--cc {
    margin-right: 0;
  }
}

.return__btn.return__btn2 {
  margin-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .return__btn.return__btn2 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .fv-common__inner.fv-common__inner--privacy {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .form.form--privacy {
    padding: 40px 0 80px;
  }
}

.privacy-policy {
  padding: 160px 80px;
}
@media screen and (max-width: 768px) {
  .privacy-policy {
    padding: 40px 16px;
  }
}
.privacy-policy h4 {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
}
.privacy-policy p, .privacy-policy li {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
}

#counter {
  counter-reset: number 0; /* 名前は任意、0でリセット。*/
}

#counter li::before {
  counter-increment: number 1; /* counter-resetの名前を指定、+1づつ増やす。*/
  content: counter(number) "."; /* 番号の後に、ドットを付ける場合に指定する。*/
  padding-right: 5px; /* ドットと文字に、間隔を空ける場合に指定する。*/
}

#alphabet {
  counter-reset: a;
}

#alphabet li::before {
  counter-increment: a;
  content: counter(a, lower-alpha) "."; /* 小文字アルファベット（a,b,c・・・）にドットをつける */
}

#lower-roman {
  counter-reset: b;
}

#lower-roman li::before {
  counter-increment: b 1;
  content: counter(b, lower-roman) "."; /* 小文字のローマ数字（ i, ii, iii, iv, v ・・・）にドットをつける */
}

.page404 {
  width: 100%;
  background-color: #FCFCFC;
  padding-top: 200px;
  padding-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .page404 {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

.page404__wrapper {
  max-width: 1060px;
  padding: 80px 0;
  display: flex;
  align-items: center;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}
@media screen and (max-width: 768px) {
  .page404__wrapper {
    flex-direction: column;
    justify-content: center;
  }
}

.text404 p, .text404 a {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
}
@media screen and (max-width: 768px) {
  .text404 {
    text-align: center;
  }
}

.re-btn {
  margin-top: 80px;
}
.re-btn a {
  display: block;
}
.re-btn a:first-child {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .re-btn a:first-child {
    margin-bottom: 10px;
  }
}

.page404__img {
  margin-left: 50px;
  width: 200px;
  height: 200px;
}
.page404__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .page404__img {
    margin-left: 0;
    margin-top: 80px;
  }
}

.inner {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 16px;
  }
}

.btn, .btn-return {
  width: 240px;
  height: 60px;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #1A1A1A;
  border-radius: 10px;
}
@media screen and (max-width: 376px) {
  .btn, .btn-return {
    width: 64vw;
  }
}

.btn::after {
  content: "";
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 20px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #1A1A1A;
  border-right: 1px solid #1A1A1A;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn:hover::after {
  border-top: 1px solid #FCFCFC;
  border-right: 1px solid #FCFCFC;
}

.btn-border {
  border: 1px solid #599473;
  background-color: #FCFCFC;
}

.btn-border:hover {
  color: #FCFCFC;
  background-color: #599473;
}

.btn-border2 {
  color: #FCFCFC;
  background-color: #599473;
}

.btn-border2:hover {
  border: 1px solid #599473;
  background-color: #FCFCFC;
  color: #1A1A1A;
}

.btn-return::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 27px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #1A1A1A;
  border-right: 1px solid #1A1A1A;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.btn:hover::after {
  border-top: 1px solid #FCFCFC;
  border-right: 1px solid #FCFCFC;
}

.btn-return:hover::before {
  border-top: 1px solid #FCFCFC;
  border-right: 1px solid #FCFCFC;
}

.btn2, .btn-return2 {
  width: 240px;
  height: 60px;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding: 18px 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #FCFCFC;
  border-radius: 10px;
}

.btn2::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 27px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #FCFCFC;
  border-right: 1px solid #FCFCFC;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn2:hover::after {
  border-top: 1px solid #1A1A1A;
  border-right: 1px solid #1A1A1A;
}

.btn-return2::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 27px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #FCFCFC;
  border-right: 1px solid #FCFCFC;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.btn-return2:hover::before {
  border-top: 1px solid #1A1A1A;
  border-right: 1px solid #1A1A1A;
}

.heading {
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .heading {
    display: block;
  }
}

.heading__title {
  writing-mode: vertical-rl;
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.5em;
  line-height: 0.8;
  color: #1A1A1A;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .heading__title {
    writing-mode: horizontal-tb;
    font-size: 24px;
    letter-spacing: normal;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.sub-title {
  position: relative;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: "Mistral";
  color: #599473;
  font-size: 18px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .sub-title {
    writing-mode: horizontal-tb;
    margin-top: 10px;
    display: block;
    font-size: 16px;
    padding-bottom: 0;
  }
}
.sub-title::before {
  content: "";
  display: inline-flex;
  margin-bottom: 16px;
  width: 1px;
  height: 40px;
  background-color: #599473;
}
@media screen and (max-width: 768px) {
  .sub-title::before {
    margin-right: 20px;
    width: 40px;
    height: 1px;
  }
}

.heading2 {
  display: block;
}

.heading__title2 {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  font-size: 32px;
  color: #1A1A1A;
}
@media screen and (max-width: 768px) {
  .heading__title2 {
    font-size: 24px;
  }
}

.sub-title2 {
  position: relative;
  font-family: "Mistral";
  color: #599473;
  font-size: 18px;
  margin-top: 12px;
  display: block;
}
@media screen and (max-width: 768px) {
  .sub-title2 {
    margin-top: 10px;
    font-size: 16px;
  }
}
.sub-title2::before {
  content: "";
  display: inline-flex;
  width: 40px;
  height: 1px;
  background-color: #599473;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .sub-title2::before {
    margin-right: 20px;
  }
}

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

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

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

@media screen and (max-width: 376px) {
  .sp-none {
    display: none;
  }
}

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

.area__text p {
  font-size: 16px;
  color: #1A1A1A;
}

.date {
  color: #1A1A1A;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .date {
    font-size: 10px;
  }
}

.breadcrumb {
  background-color: #FCFCFC;
  width: 100%;
}

.breadcrumb2 {
  background-color: #F9F9F9;
  width: 100%;
}

.breadcrumbs__wrap {
  display: flex;
  padding-bottom: 40px;
  color: #1A1A1A;
  font-size: 13px;
}

.breadcrumbs-list a {
  color: #1A1A1A;
}

.breadcrumbs-list:first-child a::after {
  content: "";
  display: flex;
  width: 16px;
  height: 1px;
  background-color: #1A1A1A;
  position: relative;
  top: -50%;
  left: 48px;
}

.breadcrumbs-list:last-child {
  margin-left: 56px;
  display: flex;
  align-items: center;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FCFCFC;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .pagination {
    padding-bottom: 80px;
  }
}
.pagination li + li {
  margin-left: 24px;
}

.page-numbers {
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
}

/* アクティブなページの色を変更 */
.pagination .current {
  color: #599473; /* アクティブなページの文字色を赤に変更 */
}

/* 省略記号の色を変更 */
.pagination .dots {
  color: #599473; /* 省略記号の文字色を赤に変更 */
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

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