@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #333333;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none !important;
}

/*モバイルのみ表示*/

/*画像の縦横比設定*/
img {
  display: block;
  width: 100%;
  height: auto;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

/*PC時電話発信しない*/

/*main*/
main {
  overflow: hidden;
}

address {
  font-style: normal;
}

html {
  font-size: 16px;
}

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

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

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

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

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

/* 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;
}

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

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

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

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

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

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;
}

/*addressタグのフォントリセット*/
address {
  font-style: normal;
}

.about-list {
  display: grid;
  gap: 2.5rem;
}

.about-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.about-list__image {
  aspect-ratio: 345/184;
  min-width: 0;
}

.about-list__image img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.about-list__content {
  display: grid;
  gap: 1rem;
}

.about-list__heading {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
}

.about__container {
  margin-top: 2.5rem;
}

.about__btn {
  margin-top: 5rem;
  text-align: center;
}

.about__line {
  position: absolute;
  right: 50%;
  bottom: -6.25rem;
  width: 4.875rem;
  height: 4.875rem;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.about__line-item {
  height: 4.875rem;
}

.anchor {
  margin-top: -5.625rem;
  padding-top: 5.625rem;
}

.base-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.base-text:not(:first-child) {
  margin-top: 1rem;
}

.blog-cards {
  display: grid;
}

.blog-cards__item {
  position: relative;
  padding: 0.5rem;
  background-color: #FFFFFF;
  -webkit-box-shadow: 3.25px 3.25px 10.8333px rgba(0, 0, 0, 0.25);
          box-shadow: 3.25px 3.25px 10.8333px rgba(0, 0, 0, 0.25);
}

.blog-cards__item::before {
  z-index: 1;
  position: absolute;
  top: 0.25rem;
  left: 0.75rem;
  width: 0.9375rem;
  height: 1.75rem;
  background-image: url(../images/treatment/pin.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.blog-cards__image {
  aspect-ratio: 374/243;
  width: 100%;
}

.blog-cards__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-cards__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1rem;
  color: #333333;
}

.blog-cards__content:has(.blog-cards__new) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog-cards__title {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.6666666667;
}

.blog-cards__time {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.blog-cards__new {
  display: inline-block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  background-color: #FF7A30;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 3rem;
  text-align: center;
  text-transform: uppercase;
}

/*ボタンのCSS*/
.btn {
  display: inline-block;
  width: 9.875rem;
  padding-block: 0.625rem;
  border-radius: 2.5rem;
  background-color: #DAD5B7;
  color: #333333;
  font-size: 1rem;
  line-height: 1.4375;
  font-family: "Jost", sans-serif;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:hover {
  background-color: #333333;
  color: #FFFFFF;
  cursor: pointer;
  opacity: 1;
}

.btn__text {
  position: relative;
  padding-right: 1.25rem;
	display: inline-block;
}

.btn__text::first-letter {
  text-transform: capitalize;
}

.btn__text::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.375rem;
  height: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/btn-arrow-black.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.btn:hover .btn__text::before {
  background-image: url(../images/common/btn-arrow-white.png);
}

.btn.btn--detail {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: initial;
  background-color: initial;
  -webkit-transition: initial;
  transition: initial;
}

.btn.btn--detail .btn__text {
  line-height: 1.4375;
}

.btn.btn--detail .btn__text::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #333333;
  content: "";
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.btn.btn--detail:hover .btn__text::after {
  width: 70%;
}

.btn.btn--detail:hover .btn__text {
  color: #333333;
}

.btn.btn--detail:hover .btn__text::before {
  background-image: url(../images/common/btn-arrow-black.png);
}

.btn.btn--contact {
  border: 1px solid #FFFFFF;
  opacity: 0.7;
}

.btn.btn--contact .btn__text {
  color: #FFFFFF;
}

.btn.btn--contact .btn__text::before {
  background-image: url(../images/common/btn-arrow-white.png);
}

/*aboutページ会社情報*/
.company-info {
  width: 100%;
  margin-inline: auto;
}

.company-info__row {
	border-bottom: 1px solid #D9D9D9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.company-info__row dt,
.company-info__row dd {
  display: grid;
  place-content: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.company-info__row dt {
  width: 28.9855072464%;
  font-weight: 700;
}

.company-info__row dd {
	pointer-events: none;
  width: 71.0144927536%;
  font-weight: 400;
}

.company-info__row a {
  color: #333333;
  pointer-events: none;
}

.cta__bnr {
  position: relative;
}

.cta__image {
  aspect-ratio: 345/213;
}

.cta__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cta__body {
  position: absolute;
  bottom: 1.5rem;
  left: 1.25rem;
}

.cta__title {
  text-align: left;
}

.cta__btn {
  margin-top: 2rem;
}

/* フッター*/
.footer {
  margin-top: 5rem;
  padding-block: 3.5rem 3rem;
  background-color: #333333;
  color: #FFFFFF;
}

.footer__logo {
  width: 6rem;
}

.footer__nav-items {
  margin-top: 1rem;
}

.footer__nav-item,
.footer__nav-item a {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
}

.footer__nav-item:nth-child(2) {
  margin-top: 1rem;
}

.footer__nav-item:nth-child(3) {
  margin-top: 0.5rem;
}

.footer__nav-item:nth-child(4) {
  margin-top: 1.5rem;
}

.footer__nav-head {
  margin-right: 0.5rem;
}

.footer__nav-email a{
  pointer-events: none;
}

.footer__copy {
  margin-top: rrem(24);
  font-size: rrem(14);
  text-align: center;
}

.form-table {
  margin-top: 2.5rem;
}

.form-table__row:not(:first-child) {
  margin-top: 2.5rem;
}

.form-table__head {
  width: 100%;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

.form-table__required {
  position: relative;
}

.form-table__required::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: -1.125rem;
  content: "※";
  color: #911111;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
}

.form-table__body {
  max-width: 100%;
  margin-top: 1.5rem;
}

.form-table input,
.form-table textarea {
  width: 100%;
  padding: 0.6875rem 0.5rem;
  border-radius: 5px;
  background: #F7F7F7;
}

.form-table textarea {
  height: 17.5rem;
}

::-webkit-input-placeholder {
  color: #BABABA;
}

::-moz-placeholder {
  color: #BABABA;
}

:-ms-input-placeholder {
  color: #BABABA;
}

::-ms-input-placeholder {
  color: #BABABA;
}

::placeholder {
  color: #BABABA;
}

.form-table__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}

.form-table__btn {
  margin-top: 2.5rem;
  text-align: center;
}

.form-table__btn .btn {
  padding-block: initial;
	max-width: 100%;
	width: 11.25rem;
}

.form-table__btn .btn__text {
  margin-inline: auto;
}

.form-table__btn .btn__text input {
  width: initial;
  width: 11.25rem;
  max-width: 100%;
  padding: 0;
  padding-block: 0.875rem;
  border-radius: initial;
  background: initial;
  color: #333333;
}

.form-table__btn .btn__text::before {
  right: 40px;
}

.form-table__btn .btn:hover input {
  color: #FFFFFF;
}

.fv-slider {
  position: absolute;
  top: 0;
  right: -10%;
  width: 110%;
  height: 100%;
}

.fv-slider img {
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: slideAnime;
          animation-name: slideAnime;
  opacity: 0;
}

.fv-slider:nth-of-type(1) img {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.fv-slider:nth-of-type(2) img {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.fv-slider:nth-of-type(3) img {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

@-webkit-keyframes slideAnime {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  49% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
    opacity: 0;
  }
}

@keyframes slideAnime {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  49% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
    opacity: 0;
  }
}
.fv__inner {
  position: relative;
}

.fv__slider {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.fv__image {
  aspect-ratio: 375/627;
  height: 100svh;
  max-height: rrem(627);
}

.fv__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__catch {
  position: absolute;
  bottom: 6rem;
  left: 0.9375rem;
}

.fv__catch-text {
  display: block;
  color: #FFFFFF;
  font-size: clamp(24px, 3vw, 40px);
  font-family: "Noto Serif JP", serif;
}

.fv__slider-item {
  aspect-ratio: 375/627;
}

.fv__slider-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.guide-table__line:not(:last-child) {
  margin-bottom: 2.5rem;
}

.guide-table__head,
.guide-table__body {
  font-weight: 500;
}

.guide-table__head {
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #FCD653;
  font-size: 1.25rem;
  line-height: 1.2;
}

.guide-table__body {
  padding-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

/*ハンバーガーメニュー*/
.hamburger {
  z-index: 9999;
  width: 2.25rem;
  padding: 0;
}

.hamburger span {
  display: block;
  position: relative;
  width: 100%;
  height: 0.0625rem;
  background-color: #333;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.hamburger span:nth-child(2) {
  width: 1.5rem;
  margin-top: 0.75rem;
  margin-inline: auto 0;
}

.hamburger.is-openSP span {
  background-color: #FFFFFF;
}

.hamburger.is-openSP span:nth-child(1) {
  top: 0;
  -webkit-transform: rotate(18.43deg);
          transform: rotate(18.43deg);
}

.hamburger.is-openSP span:nth-child(2) {
  top: -0.8125rem;
  width: 100%;
  -webkit-transform: rotate(-18.43deg);
          transform: rotate(-18.43deg);
}

body.js-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.header.header-fixed .header__inner {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header.header-fixed .header__logo {
  position: initial;
  margin-left: initial;
}

.header.header-fixed .header__logo-image {
  display: none;
}

.header.header-fixed .header__logo-fixed {
  display: block;
}

/* ヘッダー */
.header {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.625rem;
}

.inner.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
}

.header__logo {
  z-index: 9999;
  width: 5.8125rem;
}

.header__logo a {
  -webkit-transition: all 0.8s 0s ease;
  transition: all 0.8s 0s ease;
}

.header__nav {
  display: none;
  height: inherit;
}

.header__nav-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item a {
  display: grid;
  place-content: center;
  height: inherit;
}

.header__nav-item.nav-text a {
  color: #333333;
}

.header__nav-border {
  position: relative;
}

.header__nav-item:not(:last-child) .header__nav-border::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 14px;
  background-color: #333333;
  content: "";
}

.header__nav-item span {
  padding-inline: 1.25rem;
}

/*ヘッダースクロール時の変化*/
/*背景色の変化*/
.header__change-color {
  background-color: #DAD5B7;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.header:has(.is-openSP) .header__logo {
  position: relative;
}

.header:has(.is-openSP) .header__logo::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/logo-white.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.info-wrap {
  color: #FFFFFF;
}

.info-wrap__tel {
  display: block;
  margin-left: 1.625rem;
}

.info-wrap__tel span {
  position: relative;
  padding-left: 2rem;
  color: #FFFFFF;
  font-size: 1.125rem;
  line-height: 1;
  font-family: "Jost", sans-serif;
}

.info-wrap__tel span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/icon-tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.info-wrap__items {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.4375rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.625rem;
  margin-left: 1.625rem;
}

.info-warp__item dt,
.info-warp__item dd,
.info-warp__item a {
  color: #FFFFFF;
}

.info-warp__item dt {
  font-size: 0.75rem;
  line-height: 1.5;
}

.info-warp__item dd {
  font-size: 0.875rem;
  line-height: 1.2;
}

.inner {
  width: 100%;
  max-width: 37.5rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.line__item {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  overflow: hidden;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
}

.line__item::before {
  display: block;
  width: 100%;
  height: 0;
  background-color: #333;
  content: "";
}

.line__item.line__item--active::before {
  -webkit-animation: diagonal-grow 3s forwards;
          animation: diagonal-grow 3s forwards;
}

@-webkit-keyframes diagonal-grow {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes diagonal-grow {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
.nav-text:hover {
  cursor: pointer;
}

.nav-text a {
  color: #FFFFFF;
  line-height: 1;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.nav-text__en {
  position: relative;
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "Josefin Sans", sans-serif;
  text-transform: capitalize;
}

.nav-text__ja {
  display: block;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
}

.news-table__item {
	transition: opacity 0.3s 0s ease;
  display: block;
  padding: 1.5rem 1rem 1rem;
  border-bottom: 1px solid #C2C0B3;
}

.news-table__head,
.news-table__body {
  color: #333333;
}

.news-table__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: 400;
  font-size: 0.875rem;
  font-family: "Jost", sans-serif;
}

.news-table__day {
  display: inline-block;
  line-height: 1.4285714286;
}

.news-table__new {
  display: inline-block;
  margin-left: 0.9375rem;
  padding: 0.1875rem 1rem;
  border-radius: 20px;
  background-color: #333333;
  color: #FFFFFF;
  line-height: 1;
  text-transform: uppercase;
}

.news-table__body {
  display: -webkit-box; /* 必須 */
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}

/*NEWSセクション*/
.news__title {
  text-align: center;
}

.news__container {
  width: 100%;
  margin-top: 1rem;
}

.news__btn {
  margin-top: 4rem;
  text-align: center;
}

/*トップへ戻る*/
.pagetop {
  z-index: 99;
  position: fixed;
  right: 1.875rem;
  bottom: 6.6875rem;
  width: 2.875rem;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.pagetop__link {
  -webkit-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
}

/*paginationスタイル*/
.wp-pagenavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}

.wp-pagenavi .page {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #C2C0B3;
  border-radius: 9999px;
  color: #333333;
}

.wp-pagenavi .current {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background-color: #C2C0B3;
  color: #FFFFFF;
  pointer-events: none;
}

.pagination__item a {
  -webkit-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
}

.pagination__item-link {
  color: #333333;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2;
  font-family: "Jost", sans-serif;
}

.pagination__item-image {
  width: 0.375rem;
  height: 0.625rem;
}

.pagination__item:has(.active-item) a {
  position: relative;
  color: #FFFFFF;
}

.pagination__item-image.pagination__item-image--prev {
  margin-right: 1.6875rem;
  border: initial;
}

.nextpostslink,
.previouspostslink {
  display: block;
}

.pagination__item-image.pagination__item-image--next {
  margin-left: 1.6875rem;
  border: initial;
}

/*パンくずリスト*/
.pankuzu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.pankuzu__item {
  position: relative;
  text-transform: uppercase;
}

.pankuzu__item:not(:last-child) {
  margin-right: 1.5rem;
}

.pankuzu__item:not(:last-child)::after {
  display: inline-block;
  position: absolute;
  top: 55%;
  right: -1rem;
  width: 0.5625rem;
  height: 0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/arrow-k.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.pankuzu__item a,
.pankuzu__item p {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.pankuzu__item a {
  color: #a5a5a5;
}

.pankuzu__arrow {
  width: 0.375rem;
}

.philosophy__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}

.philosophy__content {
  max-width: 100%;
}

.philosophy__content-heading {
  margin-top: 1rem;
  font-weight: 400;
}

.philosophy__content-texts {
  margin-top: 1rem;
}

.philosophy__image {
  aspect-ratio: 250/167;
  width: 100vw;
  max-width: 66.6666666667%;
  margin-inline: auto calc(50% - 50vw);
}

.philosophy__image img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.philosophy__images {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 2.5rem;
}

.philosophy__images-left {
  aspect-ratio: 483/724;
  min-width: 0;
  max-width: 47.2463768116%;
}

.philosophy__images-left img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.philosophy__images-right {
  position: absolute;
  bottom: 1rem;
  left: 7.8125rem;
  aspect-ratio: 460/308;
  min-width: 0;
  max-width: 50.1449275362%;
}

.philosophy__images-right img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.philosophy__line {
  position: absolute;
  top: -5.3125rem;
  right: 3.25rem;
  width: 9.125rem;
  height: 9.125rem;
}

.philosophy__line-item {
  height: 9.125rem;
}

.section-title {
  position: relative;
  color: #333333;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.4375;
  font-family: "Jost", sans-serif;
}

.section-title::first-letter {
  text-transform: uppercase;
}

.section-title span {
  position: relative;
  margin-left: 0.5rem;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  vertical-align: middle;
}

.section-title span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #333333;
  content: "";
}

.section-title.section-title--white {
  color: #FFFFFF;
}

.section-title.section-title--white span::before {
  background-color: #FFFFFF;
}

.sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
}

.sns__item {
  width: 1.5rem;
  height: 1.5rem;
}

/* スマホメニュー*/
.sp-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 9998;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #333;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.sp-nav__items {
  display: grid;
  grid-template-columns: 1fr;
  width: 36%;
  margin-inline: auto;
  padding-top: 8.75rem;
  gap: 3rem;
}

.is-openSP {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.sp-nav__image {
  margin-top: 6.25rem;
}

/* 矢印のクリック範囲など */

/* 矢印共通のスタイル */

/* 前の矢印 */

/* 次の矢印 */

/* 次のスライドが無い場合の矢印 */

.top-about {
  position: relative;
  margin-top: 5rem;
}

.top-cta {
  margin-top: 5rem;
}

.top-news {
  position: relative;
  margin-top: 5rem;
}

.top-philosophy {
  position: relative;
  padding-top: 2.5rem;
}

.top-philosophy::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 76.2666666667%;
  height: 34.8125rem;
  background-image: url(../images/bg/bg_top01.png);
  background-size: cover;
  background-repeat: repeat;
  content: "";
}

.top-works {
  position: relative;
  margin-top: 5.4375rem;
}

.top-works::before {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: 75.4666666667%;
  height: 13.5625rem;
  background-image: url(../images/bg/bg_top02.jpg);
  background-size: cover;
  background-repeat: repeat;
  content: "";
}

/*worksセクション*/
.works-item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.works-item__image {
  aspect-ratio: 345/209;
  margin: auto;
}

.works-item__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works-tem__heading {
  margin-top: 1rem;
  color: #333333;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

.works-item__body {
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid #C2C0B3;
}

.works-item__body.works-item__body--pb40 {
  padding-bottom: 2.5rem;
}

.works-item__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.works-item__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 1.4375;
}

.works-item__row-head {
  display: inline-block;
  width: 27.2463768116%;
  max-width: 100%;
  color: #333333;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
}

.works-item__row-body {
  width: 73.3333333333%;
  max-width: 100%;
}

.works-item__row-body,
.works-item__row-body a {
  color: #333333;
}

.works-item__pagination li {
  width: 10px;
  height: 10px;
}

.works-item__page {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: #E0E0E0;
}

.works-item__page.is-active {
  background-color: #C2C0B3;
}

.works-item__btn {
  margin-top: 1.5rem;
  text-align: right;
}

/*worksセクション*/
.works__title {
  padding-top: 1rem;
}

.works__items {
  width: 100%;
  margin-top: 2.5rem;
}

.works__btn {
  margin-top: 1.5rem;
  text-align: center;
}

.about-page__section {
  position: relative;
}

.about-page__section::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 51.4666666667%;
  height: 12.0625rem;
  background-image: url(../images/bg/bg_about.jpg);
  background-size: cover;
  background-repeat: repeat;
  content: "";
}

.about-page__container {
  margin-top: 1.5rem;
}

.contact-page__inner {
  width: 100%;
}

.contact-page__section .wpcf7-list-item {
  display: block;
  margin: 0;
}

.contact-page__section .wpcf7-list-item:not(:first-child) {
  margin-top: 0.5rem;
}

.contact-page__section .wpcf7-list-item-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  gap: 4px;
}

.contact-page__section .wpcf7-list-item-label::before {
  display: block;
  width: 14px;
  height: 14px;
  padding: 0;
  border: 1px solid #292929;
  border-radius: 9999px;
}

.contact-page__section input[type=radio]:checked + .wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: #182957;
}

.contact-page__section span.wpcf7-spinner {
  display: none;
}

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

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

.contact-page__thanks {
  margin-top: 2.5rem;
  text-align: center;
}

.contact-page__btn {
  margin-top: 2.5rem;
	text-align: center;
}

.news-page__section {
  position: relative;
}

.news-page__section::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 51.4666666667%;
  height: 12.0625rem;
  background-image: url(../images/bg/bg_news.jpg);
  background-size: cover;
  background-repeat: repeat;
  content: "";
}

.news-page__inner {
  width: 100%;
}

.news-page__container {
  margin-top: 3.5rem;
}

.news-page__pagination {
  margin-top: 2.5rem;
}

.parents-page {
  padding-bottom: 5rem;
}

.parents-page__section {
  margin-top: 5.6875rem;
}

.parents-page__inner {
  width: 100%;
}

.parents-page__section02 {
  margin-top: 5rem;
}

.parents-page__article {
  margin-top: 3.8125rem;
}

.parents-page__article:nth-child(2) {
  margin-top: 5rem;
}

.parents-page__table {
  margin-top: 2.5rem;
}

.parents-page__qa {
  margin-top: 2.5rem;
}

.single-page {
  padding-bottom: 5rem;
}

.single-page__inner {
  width: 100%;
}

.single-page__inner.single-page__inner--works {
  margin-top: 1.5rem;
}

.single-page__title {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

.single-page__image {
  aspect-ratio: 345/208;
  height: 100%;
  margin-top: 1.5rem;
}

.single-page__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.single-page__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.625rem;
  margin-top: 1rem;
}

.single-page__list .works-item__row-head {
  width: 27.2463768116%;
}

.single-page__list .works-item__row-body {
  width: 73.0434782609%;
}

.single-page__container {
  margin-top: 1.5rem;
}

.single-page__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.single-page__pagination {
  margin-top: 2.875rem;
  margin-inline: auto;
  text-align: right;
}

.single-page__pagination .pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 8.25rem;
  margin-inline: auto;
}

.single-page__btn {
  display: block;
  margin-top: 2.4375rem;
  color: #333333;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
}

.single-page__container h1 {
  padding-bottom: 1rem;
  border-bottom: 1px solid #C2C0B3;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
}

.single-page__container h2 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
}

.single-page__container h3 {
  border-bottom: 1px solid #C2C0B3;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
}

.single-page__container h3 {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5;
}

.single-post::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 51.4666666667%;
  height: 12.0625rem;
  background-image: url(../images/bg/bg_single_post.jpg);
  background-size: cover;
  background-repeat: repeat;
  content: "";
}

.single-post__title {
  margin-top: 2.5rem;
}

.single-post__day {
  margin-top: 1.5rem;
  margin-top: 4rem;
}

.single-works::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 51.4666666667%;
  height: 12.0625rem;
  background-image: url(../images/bg/bg_single.jpg);
  background-size: cover;
  background-repeat: repeat;
  content: "";
}

.single {
  position: relative;
}

/* .single .nav-text a {
  color: #333333;
} */

.single .header__nav-item:not(:last-child) .header__nav-border::before {
  background-color: #333333;
}

.single .single-page__section a {
  color: #1093DD;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.single .works-item__row-body a {
  color: #333333;
  text-decoration: none;
}

.under-page__pankuzu {
  margin-top: 1rem;
}

.under-page__section {
  padding-top: 2.5rem;
}
.single-works .under-page__section {
		padding-top: 5rem;
}
.under-page__top {
  position: relative;
}

.under-page__top-image {
  aspect-ratio: 375/250;
  min-width: 0;
  height: 100%;
}

.under-page__top-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.under-page__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
}

.under-page__heading::first-letter {
  text-transform: capitalize;
}

.under-page__heading-ja {
  display: block;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  font-family: "Noto Sans JP", sans-serif;
}

.works-page__section {
  position: relative;
}

.works-page__section::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 51.4666666667%;
  height: 12.0625rem;
  background-image: url(../images/bg/bg_top02.jpg);
  background-size: cover;
  background-repeat: repeat;
  content: "";
}

.works-page__container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.5rem;
  margin-top: 2.5rem;
}

.works-page__pagination {
  margin-top: 2.5rem;
}

@media screen and (min-width: 780px) {
  .pc-only {
    display: block !important;
  }
  .sp-only {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  html {
    font-size: 1.4285714286vw;
  }
  .about-list {
    gap: 3rem;
  }
  .about-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5rem;
  }
  .about-list__image {
    aspect-ratio: 671/357;
    max-width: 41.9375rem;
  }
  .about-list__content {
    max-width: 23.0625rem;
    gap: 2.4375rem;
  }
  .about-list__heading {
    font-size: 1.5rem;
  }
  .about__btn {
    text-align: right;
  }
  .about__line {
    right: 38.9285714286%;
    bottom: -12.4375rem;
    width: 15.25rem;
    height: 15.25rem;
    -webkit-transform: translateX(-38.9285714286%);
            transform: translateX(-38.9285714286%);
  }
  .about__line-item {
    height: 15.25rem;
  }
  .anchor {
    margin-top: -6.25rem;
    padding-top: 6.25rem;
  }
  .blog-cards__content {
    display: block;
    margin-top: 1.875rem;
  }
  .blog-cards__content:has(.blog-cards__new) {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .blog-cards__title {
    font-size: 2rem;
    line-height: 1.25;
  }
  .blog-cards__time {
    font-size: 1rem;
    line-height: 1.5;
  }
  .btn {
    width: 11.875rem;
    padding-block: 0.875rem;
  }
  .company-info {
    max-width: 37.75rem;
  }
  .company-info__row dt,
  .company-info__row dd {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .company-info__row dt {
    width: 25.7142857143%;
    max-width: 11.25rem;
  }
  .company-info__row dd {
    width: 74.2857142857%;
    max-width: 32.5rem;
  }
  .cta__image {
    aspect-ratio: 1120/350;
    border-radius: 0.625rem;
  }
  .cta__body {
    bottom: 2.5rem;
    left: 2.5rem;
  }
  .cta__btn {
    margin-top: 1rem;
  }
  .footer {
    margin-top: 6.25rem;
    padding-block: 5rem;
  }
  .footer__logo {
    width: 6.375rem;
  }
  .footer__copy {
    margin-top: rrem(80);
  }
  .form-table {
    margin-top: 3.75rem;
  }
  .form-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .form-table__row.form-table__row--start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .form-table__row:not(:first-child) {
    margin-top: 3.5rem;
  }
  .form-table__head {
    width: 25.4054054054%;
  }
  .form-table__body {
    width: 74.5945945946%;
    max-width: 34.5rem;
    margin-top: 0;
    margin-left: 0.625rem;
  }
  .form-table input,
  .form-table textarea {
    padding: 0.6875rem 1.5rem;
  }
  .form-table textarea {
    height: 16.25rem;
  }
  .form-table__btn {
    margin-top: 5rem;
  }
  .fv__image {
    aspect-ratio: 1440/700;
    height: 100%;
  }
  .fv__catch {
    bottom: 5rem;
    left: 1.5625rem;
  }
  .fv__slider-item {
    aspect-ratio: 1440/768;
  }
  .guide-table__conainer {
    border-top: 2px solid #FCD653;
  }
  .guide-table__line {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 2px solid #FCD653;
  }
  .guide-table__line:not(:last-child) {
    margin-bottom: initial;
  }
  .guide-table__head,
  .guide-table__body {
    text-align: center;
  }
  .guide-table__head {
    padding-top: 0.875rem;
    padding-bottom: 0.9375rem;
    border-right: 2px solid #FCD653;
    border-bottom: none;
  }
  .guide-table__body {
    padding-top: 0;
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .header.header-fixed .header__inner {
    max-width: 84.875rem;
  }
  .header.header-fixed .header__nav {
    margin-right: 3.375rem;
  }
  .header {
    height: 5.875rem;
  }
  .inner.header__inner {
    max-width: 80rem;
  }
  .header__logo {
    width: 6.375rem;
  }
  .header__nav {
    display: block;
  }
  .header__drawer {
    display: none;
  }
  .info-wrap__tel {
    margin-left: initial;
    text-align: center;
  }
  .info-wrap__tel span {
    padding-left: 4.25rem;
    font-size: 3rem;
  }
  .info-wrap__tel span::before {
    width: 4.25rem;
    height: 4.25rem;
  }
  .info-wrap__items {
    row-gap: 0.5rem;
    width: 14.5625rem;
    max-width: 100%;
    margin-top: 2.6875rem;
    margin-inline: auto;
  }
  .info-warp__item dt {
    font-size: 1rem;
  }
  .info-warp__item dd {
    font-size: 1.25rem;
  }
  .inner {
    max-width: 1170px;
    padding-right: 25px;
    padding-left: 25px;
  }
  .news-table__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-block: 1.5rem;
  }
  .news-table__head {
    width: 29.4561933535%;
  }
  .news-table__day {
    width: 6.125rem;
  }
  .news-table__new {
    margin-left: initial;
  }
  .news-table__body {
    width: 68.7311178248%;
    margin-top: initial;
  }
  .news__title {
    padding-top: 4.5625rem;
    text-align: left;
  }
  .news__container {
    max-width: 41.375rem;
    margin-right: 0;
    margin-left: auto;
  }
  .news__btn {
    margin-top: 5rem;
    text-align: right;
  }
  .pagetop {
    right: 6.25rem;
    bottom: 16.8125rem;
  }
  .pankuzu__item a,
  .pankuzu__item p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .philosophy__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 7.5rem;
  }
  .philosophy__content {
    width: 26.25rem;
  }
  .philosophy__content-heading {
    margin-top: 2.25rem;
    font-size: 1.25rem;
  }
  .philosophy__image {
    aspect-ratio: 580/387;
    width: 100%;
    max-width: 36.25rem;
    margin-inline: initial;
  }
  .philosophy__images {
    margin-top: 5rem;
  }
  .philosophy__images-left {
    max-width: 30.1875rem;
  }
  .philosophy__images-right {
    bottom: 5rem;
    left: 23.75rem;
    max-width: 28.75rem;
  }
  .philosophy__line {
    top: -6.625rem;
    right: 18.75rem;
    width: 17.5rem;
    height: 17.5rem;
  }
  .philosophy__line-item {
    height: 17.5rem;
  }
  .section-title {
    font-size: 4rem;
  }
  .section-title span {
    font-size: 1rem;
    line-height: 1.5;
  }
  .sp-nav {
    display: none;
  }
  .splide__arrows {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 12rem;
    margin-top: 4rem;
    margin-inline: auto;
  }
  .button {
    position: relative;
    width: 2.875rem;
    height: 2.875rem;
    background-color: transparent; /* ボタンの背景を透明にする */
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .button::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.875rem;
    height: 2.875rem;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
  }
  .prev::before {
    background-image: url(../images/common/slide-prev.png);
  }
  .next::before {
    background-image: url(../images/common/slide-next.png);
  }
  .button:disabled::before {
    opacity: 0.5;
  }
  .top-about {
    margin-top: 6.25rem;
  }
  .top-cta {
    margin-top: 6.25rem;
  }
  .top-news::before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 32.5%;
    height: 29.125rem;
    background-image: url(../images/bg/bg_top03.jpg);
    background-size: cover;
    background-repeat: repeat;
    content: "";
  }
  .top-philosophy {
    padding-top: 6.25rem;
  }
  .top-philosophy::before {
    width: 55.5555555556%;
    height: 74.875rem;
  }
  .top-works {
    margin-top: 4.3125rem;
  }
  .top-works::before {
    width: 67.5%;
    height: 26.25rem;
  }
  .works-item__image {
    aspect-ratio: 534/323;
  }
  .works-item__image img {
    border-radius: 5px;
  }
  .works-tem__heading {
    font-size: 1.25rem;
  }
  .works-item__body {
    position: relative;
    margin-top: 0.25rem;
    padding-top: 1.5rem;
  }
  .works-item__body.works-item__body--pb40 {
    padding-bottom: initial;
  }
  .works-item__row-head {
    width: 17.4157303371%;
  }
  .works-item__row-body {
    width: 82.7715355805%;
  }
  .works-item__pagination {
    margin-top: 5rem;
    gap: 2rem;
  }
  .works-item__btn {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .works__title {
    padding-top: 2.625rem;
  }
  .works__slider {
    margin: 2.5rem calc(50% - 50vw) 0 auto;
  }
  .works__item {
    width: 33.375rem !important;
  }
  .works__btn {
    margin-top: 3.5rem;
    text-align: right;
  }
  .about-page__section::before {
    right: 0;
    left: initial;
    width: 67.5%;
    height: 26.25rem;
  }
  .about-page__container {
    max-width: 43.75rem;
    margin-top: 4.0625rem;
  }
  .contact-page__inner {
    max-width: 46.25rem;
  }
  .news-page__section::before {
    width: 32.5%;
    height: 29.125rem;
  }
  .news-page__inner {
    max-width: 47.5rem;
  }
  .news-page__pagination {
    margin-top: 5rem;
  }
  .parents-page {
    padding-bottom: 11.25rem;
  }
  .parents-page__section {
    margin-top: 8.8125rem;
  }
  .parents-page__inner {
    max-width: 43.75rem;
  }
  .parents-page__section02 {
    margin-top: 4.625rem;
  }
  .parents-page__article {
    margin-top: 6.3125rem;
  }
  .single-page {
    padding-bottom: 8.125rem;
  }
  .single-page__inner {
    max-width: 43.75rem;
  }
  .single-page__inner.single-page__inner--works {
    margin-top: 3.5rem;
  }
  .single-page__title {
    margin-top: 1.5rem;
    font-size: 1.5rem;
  }
  .single-page__image {
    aspect-ratio: 700/423;
    margin-top: 2.5rem;
  }
  .single-page__list {
    grid-template-columns: 1fr 1fr;
    margin-top: 2.5rem;
  }
  .single-page__list .works-item__row-head {
    width: 26.2857142857%;
  }
  .single-page__list .works-item__row-body {
    width: 73.7142857143%;
  }
  .single-page__container {
    margin-top: 2.5rem;
  }
  .single-page__pagination {
    margin-top: 5rem;
  }
  .single-page__pagination-inner {
    position: relative;
  }
  .single-page__pagination .pagination {
    max-width: 9.5rem;
  }
  .single-page__btn {
    position: absolute;
    top: -10px;
    right: 20px;
    margin-top: initial;
  }
  .single-post::before {
    width: 32.5%;
    height: 34.0625rem;
  }
  .single-works::before {
    right: 0;
    left: initial;
    width: 68.0555555556%;
    height: 34.0625rem;
  }
  .under-page__section {
    padding-top: 5rem;
  }
	.single-works .under-page__section {
		padding-top: 5rem;
	}
  .under-page__top-image {
    aspect-ratio: 1440/500;
  }
  .under-page__heading {
    font-size: 2rem;
  }
  .works-page__section::before {
    right: 0;
    left: initial;
    width: 67.5%;
    height: 26.25rem;
  }
  .works-page__container {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 3.25rem;
       -moz-column-gap: 3.25rem;
            column-gap: 3.25rem;
    row-gap: 5rem;
    margin-top: 3.5rem;
  }
  .works-page__pagination {
    margin-top: 5rem;
  }
}

@media (min-width: 1120px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
.logo a{
    transition: opacity 0.3s;
}
/*# sourceMappingURL=map/styles.css.map */