@charset "UTF-8";
/* ===============================================
# pxをremに変換
$px 文字サイズ
$basepx 基準となるピクセル数
=============================================== */
/* ===============================================
# line-heightを計算する
$pixels 文字サイズ
$height figma上のline-height
=============================================== */
:root {
  --color-light-gray: #F7F5F4;
  --color-dark-gray: #676564;
  --color-dark-gray2: #686564;
  --color-dark-gray3:#A09997;
  --color-gray-warm: #A09997;
  --color-text: #000;
  --color-border: #C9C9C9;
  --color-white: #fff;
  --color-black: #000;
  --color-yellow: #FDD001;
  --color-yellow2: #FDD601;
  --color-yellow3: #FDD703;
  --color-green: #44B035;
}

html {
  font-size: 16px;
}

body {
  font-family: "Yu Gothic Pr6N", "Yu Gothic", "游ゴシック体", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: var(--color-black);
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

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

a {
  transition: opacity 0.3s;
  color: var(--color-green);
}
a:hover {
  opacity: 0.7;
}

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

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

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

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

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

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

a {
  text-decoration: none;
}

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

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

.header {
  position: fixed;
  width: 100%;
  background-color: var(--color-white);
  height: 8rem;
  z-index: 8;
  top: 0;
}
@media screen and (max-width: 760px) {
  .header {
    height: 5rem;
  }
}
body.admin-bar .header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}
@media screen and (max-width: 760px) {
  body.admin-bar .header {
    top: 0;
  }
}

.header.is-active {
  position: relative;
}

.header__inner {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.9375rem 1.5625rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9375rem;
  height: inherit;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0.5rem 0.75rem;
  }
}
@media screen and (max-width: 760px) {
  .header__inner {
    flex-direction: column;
    padding: 0.625rem 0.9375rem 0.75rem;
    border-bottom: none;
  }
}

.header__title {
  display: flex;
  align-items: center;
  margin-right: auto;
  height: inherit;
}

.header__title-link:hover {
  opacity: 1;
}

.header__logo {
  width: 33.8125rem;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    width: 22.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 18.75rem;
  }
}
@media screen and (max-width: 760px) {
  .header__logo {
    width: 67%;
  }
}

.header__info-top {
  display: flex;
  align-items: center;
}

.header__info-tel {
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 2.21;
  color: var(--color-green);
}
@media screen and (max-width: 1024px) {
  .header__info-tel {
    font-size: 1.5rem;
  }
}

.header__info-contact {
  margin-left: 2rem;
  background-color: var(--color-yellow3);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  padding: 0.3125rem 1.625rem 0.3125rem 0.8125rem;
}
@media screen and (max-width: 1024px) {
  .header__info-contact {
    margin-left: 1.125rem;
  }
}

.header__info-contact-icon {
  width: 31px;
  aspect-ratio: 31/21;
}

.header__info-contact-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.2;
  color: var(--color-dark-gray);
}

.header__info-instagram {
  margin-left: 1.625rem;
}
@media screen and (max-width: 1024px) {
  .header__info-instagram {
    margin-left: 0.75rem;
  }
}

.header__info-note {
  text-align: right;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark-gray);
}

.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.125rem 0;
  width: 100%;
  background-color: var(--color-green);
  height: 3.3125rem;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    padding: 0.5rem 0;
  }
}
@media screen and (max-width: 760px) {
  .header__nav {
    display: none;
  }
}

.header__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1250px;
  width: 100%;
  padding: 0 1.5625rem;
  margin: 0 auto;
  box-sizing: border-box;
  list-style: none;
}

.header__item {
  height: inherit;
  width: 14.2%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.header__items > .header__item {
  position: relative;
}

.header__link {
  width: 100%;
  height: 100%;
  padding: 0 0.75rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: block;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .header__link {
    font-size: 0.75rem;
  }
}

/* 2つ目以降のリンクに区切り線を付ける */
.header__item + .header__item .header__link {
  border-left: 1px solid var(--color-white);
}

/* ホバー/フォーカス（お好みで） */
.header__link:hover,
.header__link:focus-visible {
  opacity: 1;
  text-decoration: underline;
  outline: none;
}

.hamburger {
  position: absolute;
  z-index: 9999;
  top: 14px;
  right: 3%;
  width: 2.8125rem;
  height: 2.8125rem;
  background-color: var(--color-green);
  border-radius: 0.625rem;
  cursor: pointer;
}

.hamburger.is-active {
  top: 14px;
  right: 3%;
}

.hamburger__line {
  position: absolute;
  display: inline-block;
  left: 10px;
  top: 6px;
  width: 26px;
  height: 2px;
  background-color: var(--color-white);
  transition: transform 0.3s;
  border-radius: 0.0625rem;
}

.hamburger__line:first-child {
  top: 14px;
}

.hamburger__line:nth-child(2) {
  top: 22px;
  transition: opacity 0.3s;
}

.hamburger__line:nth-child(3) {
  top: 30px;
}

.hamburger.is-active .hamburger__line:first-child {
  top: 20px;
  left: 8px;
  transform: rotate(-45deg);
  width: 30px;
}

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

.hamburger.is-active .hamburger__line:nth-child(3) {
  top: 20px;
  left: 8px;
  transform: rotate(45deg);
  width: 30px;
}

.drawer-menu {
  top: 11.3125rem;
  position: fixed;
  z-index: 5000;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-white);
  transition: left 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 760px) {
  .drawer-menu {
    top: 70px;
  }
}

.drawer-menu__inner {
  display: flex;
  flex-direction: column;
  row-gap: 0;
  width: 100%;
  padding: 0 3.125rem;
}

.drawer-menu.is-active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-menu__logo {
  width: 33.75rem;
  margin-top: 0.3125rem;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 760px) {
  .drawer-menu__logo {
    width: 68%;
  }
}

.drawer-menu__items {
  display: flex;
  flex-direction: inherit;
  align-items: center;
  margin-top: 1.5625rem;
}

.drawer-menu__item {
  display: inline-block;
  width: 100%;
  padding: 0.3125rem 0;
}

.drawer-menu__link {
  position: relative;
  color: var(--color-green);
  font-size: 1.625rem;
  line-height: 2.19;
  font-weight: 700;
  display: block;
  padding-left: 1.125rem;
  position: relative;
}
@media screen and (max-width: 760px) {
  .drawer-menu__link {
    font-size: 3.4666666667vw;
    line-height: 2.19;
  }
}
@media screen and (max-width: 430px) {
  .drawer-menu__link {
    font-size: 0.8125rem;
  }
}

.drawer-menu__link::before {
  position: absolute;
  content: url(../images/green-right-arrow.svg);
  display: inline-block;
  width: 0.9375rem;
  height: auto;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* パンくず */
.breadcrumb {
  margin-top: 1.25rem;
}

.breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 1rem 2.5rem 0;
}
@media screen and (max-width: 760px) {
  .breadcrumb__inner {
    padding: 1rem 1.25rem 0;
    font-size: 0.75rem;
    row-gap: 0.5rem;
  }
}
@media screen and (max-width: 430px) {
  .breadcrumb__inner {
    font-size: 0.625rem;
  }
}

.breadcrumb a {
  color: var(--color-darkgray);
}

.breadcrumb .current-item {
  font-weight: 700;
  color: var(--color-green);
}

.breadcrumb__between::before {
  content: ">";
  color: var(--color-green);
  display: inline-block;
}

.breadcrumb span[property=name] {
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.c-button {
  position: relative;
  max-width: 290px;
  width: 100%;
  background-color: var(--color-yellow2);
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.1875;
  text-align: center;
  color: var(--color-dark-gray2);
  cursor: pointer;
  text-decoration: none;
  padding: 0.9375rem 0.9375rem;
  border-radius: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .c-button {
    font-size: 3.4210526316vw;
    line-height: 2.1923076923;
    padding: 0.625rem 0.9375rem;
    max-width: 80%;
    margin-inline: auto;
  }
}

.c-button::after {
  position: absolute;
  content: "";
  background-image: url(../images/gray-right-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 18px;
  height: 9px;
  top: 50%;
  right: 1.3125rem;
  transform: translateY(-50%);
}

.action-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 760px) {
  .action-menu {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.action-menu__link {
  display: inline-block;
  min-width: 163px;
  padding: 0.9375rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1024px) {
  .action-menu__link {
    min-width: 140px;
  }
}
@media screen and (max-width: 760px) {
  .action-menu__link {
    width: 100%;
  }
}

.footer {
  z-index: 2;
  background-color: var(--color-white);
  padding: 0.3125rem 0;
  border: 1px solid var(--color-border);
}
@media screen and (max-width: 760px) {
  .footer {
    padding: 0.9375rem 0;
  }
}

.footer__inner {
  max-width: 1100px;
  padding: 0 1.5625rem 2.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 760px) {
  .footer__inner {
    padding: 0 0.9375rem 1.875rem;
  }
}

.footer__copyright {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--color-dark-gray2);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2.2307692308;
}

.page-top {
  display: block;
  position: fixed;
  bottom: -100px;
  right: 40px;
  background-color: rgba(51, 51, 51, 0.5);
  cursor: pointer;
  opacity: 0;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  z-index: 10;
  transition: 0.3s ease;
}
@media screen and (max-width: 760px) {
  .page-top {
    width: 3.125rem;
    height: 3.125rem;
    right: 5%;
  }
}

.page-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(-45deg);
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
  height: 20px;
  width: 20px;
}
@media screen and (max-width: 760px) {
  .page-top::after {
    height: 0.625rem;
    width: 0.625rem;
  }
}

.page-top.active {
  bottom: 3.75rem;
  opacity: 1;
}
@media screen and (max-width: 760px) {
  .page-top.active {
    bottom: 5rem;
  }
}

/*メニューをページ下部に固定*/
.fixed-sp-menu {
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  bottom: 0px;
  background-color: var(--color-green);
  display: none;
  z-index: 99;
  text-align: center;
}
.fixed-sp-menu .fixed-sp-menu__items {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.fixed-sp-menu .fixed-sp-menu__item {
  width: 33.3vw;
  padding: 0.3125rem 0.625rem;
}
.fixed-sp-menu .fixed-sp-menu__item + .fixed-sp-menu__item {
  border-left: 1px solid var(--color-white);
}
.fixed-sp-menu .fixed-sp-menu__link {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.625rem 0;
  color: var(--color-white);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.1538461538;
}
@media screen and (max-width: 760px) {
  .fixed-sp-menu .fixed-sp-menu__link {
    font-size: clamp(0.75rem, 0.114rem + 3.18vw, 1.625rem);
  }
}
@media screen and (max-width: 430px) {
  .fixed-sp-menu .fixed-sp-menu__link {
    gap: 0.3125rem;
  }
}
.fixed-sp-menu .fixed-sp-menu__img.fixed-sp-menu__img--tel {
  width: 2.3125rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 760px) {
  .fixed-sp-menu .fixed-sp-menu__img.fixed-sp-menu__img--tel {
    width: 4.8684210526vw;
  }
}
.fixed-sp-menu .fixed-sp-menu__img.fixed-sp-menu__img--mail {
  width: 2.9375rem;
  aspect-ratio: 47/32;
}
@media screen and (max-width: 760px) {
  .fixed-sp-menu .fixed-sp-menu__img.fixed-sp-menu__img--mail {
    width: 6.1842105263vw;
  }
}
.fixed-sp-menu .fixed-sp-menu__img.fixed-sp-menu__img--instagram {
  width: 3rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 760px) {
  .fixed-sp-menu .fixed-sp-menu__img.fixed-sp-menu__img--instagram {
    width: 6.3157894737vw;
  }
}
.fixed-sp-menu .fixed-sp-menu_text {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.1538461538;
  flex: 1;
}
@media screen and (max-width: 760px) {
  .fixed-sp-menu .fixed-sp-menu_text {
    font-size: clamp(0.75rem, 0.114rem + 3.18vw, 1.625rem);
  }
}

/* ページネーション */
.pagination {
  margin-top: 3.4375rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5625rem;
}

.pagination__arrow {
  color: var(-color-green);
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(-color-green);
  background-color: var(--color-white);
  border: 1px solid var(-color-green);
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-numbers:hover {
  background-color: var(-color-green);
  color: var(--color-white);
}

.page-numbers.current {
  color: var(--color-white);
  background-color: var(-color-green);
}

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

/****************************************/
/****************************************/
.service {
  position: relative;
  margin-top: -9.375rem;
  padding-bottom: 5.625rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
@media screen and (max-width: 1200px) {
  .service {
    margin-top: clamp(-1.875rem, 11.126rem - 27.33vw, -9.375rem);
  }
}
@media screen and (max-width: 760px) {
  .service {
    margin-top: -0.625rem;
    padding-bottom: 3.125rem;
  }
}
@media screen and (max-width: 430px) {
  .service {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.service__deco01 {
  top: 12%;
  left: -8%;
}
@media screen and (max-width: 760px) {
  .service__deco01 {
    top: 2%;
    left: -10%;
  }
}

.service__deco02 {
  top: 30%;
  right: -8%;
}
@media screen and (max-width: 760px) {
  .service__deco02 {
    top: 24%;
    right: -10%;
  }
}

.service__deco03 {
  bottom: -8%;
  left: -8%;
}
@media screen and (max-width: 760px) {
  .service__deco03 {
    bottom: -5%;
    left: -18%;
  }
}

@media screen and (max-width: 760px) {
  .service__deco04 {
    top: 35%;
    left: -18%;
  }
}

@media screen and (max-width: 760px) {
  .service__deco05 {
    top: 55%;
    right: -10%;
  }
}

@media screen and (max-width: 760px) {
  .service__deco06 {
    top: 65%;
    left: -18%;
  }
}

@media screen and (max-width: 760px) {
  .service__deco07 {
    top: 85%;
    right: -10%;
  }
}

.service__inner {
  padding: 5.625rem 2.1875rem 2.8125rem;
  background-color: var(--color-white);
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .service__inner {
    padding: 2.5rem 1.25rem 1.875rem;
  }
}

.service__body {
  margin-top: 1.25rem;
}
@media screen and (max-width: 760px) {
  .service__body {
    margin-top: 1.875rem;
  }
}

.service__text {
  text-align: center;
}

.service__list {
  margin-top: 2.5rem;
}

.service__item {
  padding: 3.75rem 3.4375rem;
}
@media screen and (max-width: 760px) {
  .service__item {
    padding: 0;
  }
}

.service__item + .service__item {
  margin-top: 2.5rem;
}

.service__item-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.125rem;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .service__item-media {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.service__item-img {
  width: 23%;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media screen and (max-width: 760px) {
  .service__item-img {
    width: 50%;
  }
}

.service__item-body {
  flex: 1;
}

@media screen and (max-width: 760px) {
  .service__item-title {
    text-align: center;
  }
}

.service__item-text {
  margin-top: 0.9375rem;
}

/****************************************/
/****************************************/
.nayami {
  position: relative;
  padding: 5.625rem 1.875rem;
}
@media screen and (max-width: 760px) {
  .nayami {
    padding: 3.125rem 1.875rem;
  }
}
@media screen and (max-width: 430px) {
  .nayami {
    padding: 1.875rem 0.9375rem;
  }
}

.nayami__deco01 {
  top: 2%;
  right: -8%;
}
@media screen and (max-width: 760px) {
  .nayami__deco01 {
    top: 33%;
    right: -12%;
  }
}

.nayami__deco02 {
  bottom: -20%;
  left: -8%;
}
@media screen and (max-width: 760px) {
  .nayami__deco02 {
    bottom: 34%;
    left: -12%;
  }
}

.nayami__inner {
  padding: 5.625rem 2.1875rem 2.8125rem;
  background-color: var(--color-white);
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .nayami__inner {
    padding: 2.5rem 1.25rem 1.875rem;
  }
}

.nayami__cards {
  margin-top: 2.8125rem;
}

.nayami__card + .nayami__card {
  margin-top: 2.5rem;
}

.nayami__card {
  padding: 4.375rem 3.25rem;
}
@media screen and (max-width: 760px) {
  .nayami__card {
    padding: 0;
  }
}

.nayami__media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.125rem;
  width: 100%;
}
.nayami__media.nayami__media--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 760px) {
  .nayami__media.nayami__media--reverse {
    gap: 1.25rem;
    flex-direction: column;
  }
}
@media screen and (max-width: 760px) {
  .nayami__media {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.nayami__card-img {
  width: 30%;
  flex-shrink: 0;
}
@media screen and (max-width: 760px) {
  .nayami__card-img {
    width: 65%;
  }
}

.nayami__card-body {
  flex: 1;
}

.nayami__card-items {
  margin-top: 0.625rem;
}

.nayami__card-item {
  position: relative;
  color: var(--color-text);
  padding-left: 1.25rem;
  background: url(../images/check-icon.svg) left 0px top 8px no-repeat;
  background-size: 1rem auto;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 760px) {
  .nayami__card-item {
    padding-left: 4.2666666667vw;
    background-size: 3.4666666667vw auto;
  }
}

@media screen and (max-width: 760px) {
  .nayami__card-title {
    text-align: center;
  }
}

/****************************************/
/****************************************/
.about {
  position: relative;
  padding: 5.625rem 1.875rem;
}
@media screen and (max-width: 760px) {
  .about {
    padding: 3.125rem 1.875rem;
  }
}
@media screen and (max-width: 430px) {
  .about {
    padding: 1.875rem 0.9375rem;
  }
}

.about__deco01 {
  top: 2%;
  right: -8%;
}
@media screen and (max-width: 760px) {
  .about__deco01 {
    top: -6%;
    right: -12%;
  }
}

.about__deco02 {
  bottom: -20%;
  left: -8%;
}
@media screen and (max-width: 760px) {
  .about__deco02 {
    bottom: auto;
    top: 5%;
    left: -12%;
  }
}

@media screen and (max-width: 760px) {
  .about__deco03 {
    top: 47%;
    right: -12%;
  }
}

@media screen and (max-width: 760px) {
  .about__deco04 {
    top: 60%;
    left: -12%;
  }
}

.about__inner {
  padding: 5.625rem 4.0625rem 6.25rem 5rem;
  background-color: var(--color-white);
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .about__inner {
    padding: 2.5rem 1.25rem;
  }
}

.about__media {
  margin-top: 4.6875rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .about__media {
    flex-direction: column;
    gap: 1.875rem;
    margin-top: 3.125rem;
  }
}

.about__left {
  flex: 1;
}

@media screen and (max-width: 760px) {
  .about__text {
    order: 2;
  }
}

.about__career {
  margin-top: 3.125rem;
}
@media screen and (max-width: 760px) {
  .about__career {
    margin-top: 1.25rem;
    order: 4;
  }
}

.about__career-title {
  color: var(--color-dark-gray);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 2.2;
}
@media screen and (max-width: 760px) {
  .about__career-title {
    font-size: 4.6666666667vw;
    line-height: 2.2;
    text-align: center;
  }
}

.about__career-text + .about__career-text {
  margin-top: 2.1875rem;
}

@media screen and (max-width: 760px) {
  .about__left,
.about__right {
    display: contents;
  }
}

.about__right {
  width: 37%;
}

.about__img {
  width: 100%;
  aspect-ratio: 1106/979;
}
@media screen and (max-width: 760px) {
  .about__img {
    order: 1;
    width: 75%;
    margin-inline: auto;
  }
}

.about__profile {
  margin-top: 2.8125rem;
  text-align: right;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .about__profile {
    margin-top: 1.25rem;
    order: 3;
  }
}

.about__license-number {
  display: inline-block;
  padding-left: 2.5rem;
  background: url(../images/badge-gyosyo-mono.png) left 0px top 0px no-repeat;
  background-size: 1.9375rem auto;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 760px) {
  .about__license-number {
    padding-left: 6.6666666667vw;
    background-size: 5.3333333333vw auto;
  }
}

/****************************************/
/****************************************/
.price {
  position: relative;
  padding: 5.625rem 1.875rem;
}
@media screen and (max-width: 760px) {
  .price {
    padding: 3.125rem 1.875rem;
  }
}
@media screen and (max-width: 430px) {
  .price {
    padding: 1.875rem 0.9375rem;
  }
}

.price__deco01 {
  top: 2%;
  right: -8%;
}
@media screen and (max-width: 760px) {
  .price__deco01 {
    top: -8%;
    right: -12%;
  }
}

.price__deco02 {
  bottom: -20%;
  left: -8%;
}
@media screen and (max-width: 760px) {
  .price__deco02 {
    bottom: auto;
    top: 5%;
    left: -12%;
  }
}

@media screen and (max-width: 760px) {
  .price__deco03 {
    top: 42%;
    right: -12%;
  }
}

@media screen and (max-width: 760px) {
  .price__deco04 {
    top: 62%;
    left: -12%;
  }
}

.price__inner {
  padding: 5rem 6.25rem;
  background-color: var(--color-white);
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .price__inner {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}

.price__table {
  margin-top: 2.8125rem;
}

.price__table-label {
  width: 60%;
}
@media screen and (max-width: 760px) {
  .price__table-label {
    width: 40%;
  }
}

.price__table-value {
  width: 40%;
}
@media screen and (max-width: 760px) {
  .price__table-value {
    width: 60%;
  }
}

.price__warning {
  margin-top: 5rem;
}
@media screen and (max-width: 760px) {
  .price__warning {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 760px) {
  .price__warning-title {
    text-align: center;
  }
}

.price__warning-list {
  margin-top: 0.3125rem;
}

.price__warning-item {
  position: relative;
  padding-left: 1.125rem;
}

.price__warning-item::before {
  position: absolute;
  content: "・";
  left: 0;
}

.price__warning-text {
  margin-top: 2.5rem;
}

/****************************************/
/****************************************/
.flow {
  position: relative;
  padding: 5.625rem 1.875rem;
}
@media screen and (max-width: 760px) {
  .flow {
    padding: 3.125rem 1.875rem;
  }
}
@media screen and (max-width: 430px) {
  .flow {
    padding: 1.875rem 0.9375rem;
  }
}

.flow__deco01 {
  top: 2%;
  right: -8%;
}

.flow__deco02 {
  bottom: -20%;
  left: -8%;
}
@media screen and (max-width: 760px) {
  .flow__deco02 {
    bottom: auto;
    top: 25%;
    left: -12%;
  }
}

@media screen and (max-width: 760px) {
  .flow__deco03 {
    bottom: 8%;
    right: -12%;
  }
}

.flow__inner {
  padding: 5rem 6.25rem 5.625rem;
  background-color: var(--color-white);
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .flow__inner {
    padding: 2.8125rem 1.25rem 2.5rem;
  }
}

.flow__list {
  margin-top: 3.4375rem;
}

.flow__item {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.9375rem;
  width: 100%;
  background-color: var(--color-light-gray);
  border-radius: 0.625rem;
  min-height: 97px;
  max-height: 97px;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .flow__item {
    max-height: none;
  }
}
@media screen and (max-width: 760px) {
  .flow__item {
    max-height: none;
    min-height: none;
  }
}

.flow__item + .flow__item {
  margin-top: 1.125rem;
}

.flow__item-number {
  width: 3.6875rem;
  background-color: var(--color-dark-gray3);
  border-top-left-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .flow__item-number {
    display: none;
  }
}

.flow__item-number-text {
  color: var(--color-white);
  font-size: 2.0625rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

.flow__item-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5625rem 0;
}
@media screen and (max-width: 760px) {
  .flow__item-detail {
    padding: 1.25rem 0.9375rem;
  }
}

.flow__item-detail-number {
  display: none;
}
@media screen and (max-width: 760px) {
  .flow__item-detail-number {
    display: inline-block;
  }
}

@media screen and (max-width: 760px) {
  .flow__item-detail-title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.625rem;
  }
}

.flow__item-detail-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 760px) {
  .flow__item-detail-title {
    font-size: 4.6052631579vw;
    line-height: 1.4285714286;
  }
}

.flow__item-detail-text {
  margin-top: 0.625rem;
}

.flow__item-img-wrap {
  padding-right: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .flow__item-img-wrap {
    display: none;
  }
}

.flow__item-img {
  width: 5rem;
  aspect-ratio: 80/67;
  flex-shrink: 0;
}
@media screen and (max-width: 760px) {
  .flow__item-img {
    width: 9.2105263158vw;
  }
}

/****************************************/
/****************************************/
.faq {
  position: relative;
  padding: 5.625rem 1.875rem;
}
@media screen and (max-width: 760px) {
  .faq {
    padding: 3.125rem 1.875rem;
  }
}
@media screen and (max-width: 430px) {
  .faq {
    padding: 1.875rem 0.9375rem;
  }
}

.faq__deco01 {
  top: 2%;
  right: -8%;
}
@media screen and (max-width: 760px) {
  .faq__deco01 {
    top: auto;
    bottom: 15%;
    right: -12%;
  }
}

.faq__deco02 {
  bottom: -20%;
  left: -8%;
}
@media screen and (max-width: 760px) {
  .faq__deco02 {
    bottom: -2%;
    left: -12%;
  }
}

@media screen and (max-width: 760px) {
  .faq__deco03 {
    top: 0;
    left: -12%;
  }
}

.faq__inner {
  padding: 5rem 6.25rem 5.625rem;
  background-color: var(--color-white);
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .faq__inner {
    padding: 2.1875rem 1.25rem;
  }
}

.faq__items {
  margin-top: 2.8125rem;
}

.faq__item {
  width: 100%;
  background-color: var(--color-light-gray);
  border-radius: 0.625rem;
}

.faq__item:not(:first-child) {
  margin-top: 1.25rem;
}
@media screen and (max-width: 430px) {
  .faq__item:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.faq-item__title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  padding: 1.25rem 1.5625rem 1.25rem 3.9375rem;
}
@media screen and (max-width: 760px) {
  .faq-item__title {
    align-items: baseline;
    padding: 0.625rem 1.25rem 0.625rem 2.625rem;
  }
}

.faq-item__title::before {
  content: "Q.";
  top: 18px;
}

.faq-item__title::before,
.faq-item__content::before {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.6666666667;
  font-weight: 500;
  position: absolute;
  left: 30px;
}
@media screen and (max-width: 760px) {
  .faq-item__title::before,
.faq-item__content::before {
    font-size: 3.4666666667vw;
    line-height: 1.1538461538;
    left: 20px;
  }
}

.faq-item__title-text {
  text-align: justify;
}

.faq-item__toggle-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 1.5625rem;
  flex-shrink: 0;
}

/* ＋ を擬似要素2本で作る */
.faq-item__toggle-icon::before,
.faq-item__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--color-dark-gray2);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.faq-item__toggle-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__title.is-open .faq-item__toggle-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item__title.is-open .faq-item__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-item__content {
  display: none;
  position: relative;
  width: 100%;
  padding: 0 1.5625rem 1.25rem 3.9375rem;
}
@media screen and (max-width: 760px) {
  .faq-item__content {
    padding: 0 1.25rem 0.9375rem 2.625rem;
  }
}

.faq-item__content::before {
  content: "A.";
  top: 0;
}

/****************************************/
/****************************************/
.top-info {
  position: relative;
  padding: 5.625rem 1.875rem;
}
@media screen and (max-width: 760px) {
  .top-info {
    padding: 3.125rem 1.875rem;
  }
}
@media screen and (max-width: 430px) {
  .top-info {
    padding: 1.875rem 0.9375rem;
  }
}

.top-info__deco01 {
  top: 2%;
  right: -8%;
}
@media screen and (max-width: 760px) {
  .top-info__deco01 {
    top: 50%;
    right: -12%;
  }
}

.top-info__deco02 {
  bottom: -40%;
  left: -8%;
}
@media screen and (max-width: 760px) {
  .top-info__deco02 {
    bottom: -25%;
    left: -12%;
  }
}

.top-info__inner {
  padding: 5rem 6.25rem 5.625rem;
  background-color: var(--color-white);
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .top-info__inner {
    padding: 1.875rem 1.25rem 2.8125rem;
  }
}

.top-info__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
}
@media screen and (max-width: 760px) {
  .top-info__category-list {
    justify-content: center;
    gap: 0.625rem;
  }
}

.top-info__categories {
  width: 100%;
}

.top-info__category-button {
  position: relative;
  min-width: 185px;
  width: 100%;
  padding: 0.625rem 0.9375rem;
  color: var(--color-dark-gray2);
  border: none;
  border-radius: 1.5625rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
  border: 1px solid var(--color-dark-gray2);
}
.top-info__category-button.top-info__category-button--all {
  border: 1px solid var(--color-dark-gray3);
  color: 1px solid var(--color-dark-gray3);
}
@media screen and (max-width: 760px) {
  .top-info__category-button {
    min-width: 100px;
    padding: 0.3125rem 0.625rem;
  }
}

.top-info__category-button.is-active {
  background-color: var(--color-dark-gray2);
  color: var(--color-white);
}

.top-info__category-button.top-info__category-button--all.is-active {
  background-color: var(--color-dark-gray3);
  color: var(--color-white);
}

.top-info__category-button:hover {
  opacity: 0.8;
}

.top-info__category-button.is-active:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: 8px solid var(--color-dark-gray2);
  z-index: 2;
}

.top-info__category-button.top-info__category-button--all.is-active:before {
  border-top: 8px solid var(--color-dark-gray3);
}

.top-info__category-button.is-active:after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: 8px solid var(--color-dark-gray3);
  z-index: 1;
}

.top-info__content {
  margin-top: 2.5rem;
}
@media screen and (max-width: 760px) {
  .top-info__content {
    margin-top: 1.875rem;
  }
}

.top-info__list {
  margin-top: 1.875rem;
}

.top-info__list.loading a {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}

.top-info__btn-wrap {
  margin-top: 3.125rem;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .top-info__btn-wrap {
    margin-top: 1.875rem;
  }
}

.top-info__btn {
  margin-inline: auto;
}

/****************************************/
/****************************************/
.instagram {
  position: relative;
  padding: 5.625rem 1.875rem;
}
@media screen and (max-width: 760px) {
  .instagram {
    padding: 3.125rem 1.875rem;
  }
}
@media screen and (max-width: 430px) {
  .instagram {
    padding: 1.875rem 0.9375rem;
  }
}

.instagram__deco01 {
  top: 2%;
  right: -8%;
}

.instagram__deco02 {
  bottom: -20%;
  left: -8%;
}

.instagram__inner {
  padding: 5rem 6.25rem 5.625rem;
  background-color: var(--color-white);
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .instagram__inner {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}

.instagram__content {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 760px) {
  .instagram__content {
    margin-top: 2.5rem;
  }
}

.instagram__btn {
  margin-top: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 760px) {
  .instagram__btn {
    margin-top: 0.625rem;
  }
}

/****************************************/
/****************************************/
.access {
  position: relative;
  padding: 5.625rem 1.875rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 760px) {
  .access {
    padding: 3.125rem 1.875rem 3.75rem;
    overflow: visible;
  }
}
@media screen and (max-width: 430px) {
  .access {
    padding: 1.875rem 0.9375rem 2.8125rem;
  }
}

.access__deco01 {
  top: 8%;
  right: -8%;
}
@media screen and (max-width: 760px) {
  .access__deco01 {
    top: 55%;
  }
}

.access__deco02 {
  bottom: -39%;
  left: -23%;
}
@media screen and (max-width: 760px) {
  .access__deco02 {
    bottom: -12%;
    left: -18%;
  }
}

.access__inner {
  padding: 5rem 6.25rem 5.625rem;
  background-color: var(--color-white);
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .access__inner {
    padding: 1.875rem 1.25rem 2.8125rem;
  }
}

.access__table {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 760px) {
  .access__table {
    margin-top: 3.4375rem;
  }
}

.access__table-label {
  width: 20%;
}
@media screen and (max-width: 760px) {
  .access__table-label {
    width: 23%;
  }
}

.access__table-value {
  width: 80%;
}
@media screen and (max-width: 760px) {
  .access__table-value {
    width: 77%;
  }
}

.access__text {
  line-height: 1.5625;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 760px) {
  .access__text {
    margin-top: 1.25rem;
  }
}

.access__contact {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 760px) {
  .access__contact {
    margin-top: 0;
    padding: 0 1.875rem;
  }
}
@media screen and (max-width: 430px) {
  .access__contact {
    padding: 0 0.9375rem;
  }
}

/****************************************/
/****************************************/
.about-overview {
  padding: 7.4375rem 0 5.5rem;
}
@media screen and (max-width: 760px) {
  .about-overview {
    padding: 5rem 0 3.75rem;
  }
}

.about-overview__cards {
  display: flex;
  gap: 2.3125rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 760px) {
  .about-overview__cards {
    flex-direction: column;
    margin-top: 1.875rem;
  }
}

.about-overview__card {
  display: flex;
  flex: 0 1 calc((100% - min(1.6129032258vw, 37px) * 2) / 3);
  flex-direction: column;
  padding: 1.75rem 1.25rem 2.0625rem;
  background-color: var(--color-light-gray);
  border-radius: 0.625rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .about-overview__card {
    flex: 0 1 100%;
    padding: 1.25rem 0.9375rem 1.5625rem;
  }
}

.about-overview-card__img {
  width: 191px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 430px) {
  .about-overview-card__img {
    width: 140px;
  }
}

.about-overview-card__title {
  font-size: 1.5625rem;
  font-weight: 700;
  color: var(--color-dark-gray);
  margin-top: 1.0625rem;
}
@media screen and (max-width: 760px) {
  .about-overview-card__title {
    font-size: 1.375rem;
  }
}

.about-overview-card__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5625;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 760px) {
  .about-overview-card__text {
    font-size: 0.875rem;
  }
}

/****************************************/
/****************************************/
.about-function {
  padding: 6.25rem 0 2.4375rem;
}
@media screen and (max-width: 760px) {
  .about-function {
    padding: 3.75rem 0 1.875rem;
  }
}

.about-function__text {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.32;
  color: var(--color-dark-gray);
  margin-top: 2.375rem;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .about-function__text {
    font-size: 1.375rem;
    margin-top: 1.5625rem;
  }
}

.about-function__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 3.0625rem;
}

.about-function__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 768px;
  border: 1px solid #B1B1B1;
}

.about-function__table-heading {
  background-color: var(--color-gray-warm);
  color: var(--color-dark-gray3);
  text-align: center;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 1rem;
  white-space: nowrap;
}
@media screen and (max-width: 760px) {
  .about-function__table-heading {
    font-size: 1.375rem;
  }
}

.about-function__table-heading:not(:first-child) {
  border-left: 1px solid #B1B1B1;
}

.about-function__table-cell {
  border-top: 1px solid #B1B1B1;
  padding: 1rem;
  vertical-align: middle;
  color: var(--color-dark-gray);
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .about-function__table-cell {
    font-size: 1.125rem;
  }
}

.about-function__table-cell:not(:first-child) {
  border-left: 1px solid #B1B1B1;
  padding-left: 2.5rem;
}
@media screen and (max-width: 760px) {
  .about-function__table-cell:not(:first-child) {
    padding-left: 1.25rem;
  }
}

.about-function__table-feature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.about-function__table-icon {
  width: 54px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media screen and (max-width: 760px) {
  .about-function__table-icon {
    width: 30px;
  }
}

.about-function__table-text {
  display: inline-block;
  white-space: normal;
  word-break: break-word;
  flex: 1 1 auto;
}

.about-function__table-heading:nth-child(1),
.about-function__table-cell:nth-child(1) {
  width: 291px;
  min-width: 240px;
  white-space: nowrap;
}

.about-function__table-heading:nth-child(2),
.about-function__table-cell:nth-child(2) {
  width: 542px;
  min-width: 280px;
}

.about-function__table-heading:nth-child(3),
.about-function__table-cell:nth-child(3) {
  width: 369px;
  min-width: 248px;
}

/****************************************/
/****************************************/
.about-logo-meaning {
  padding: 0 0 4.625rem;
}

.about-logo-meaning__content {
  margin-top: 7.625rem;
  display: flex;
  align-items: center;
  gap: 4.25rem;
}
@media screen and (max-width: 760px) {
  .about-logo-meaning__content {
    flex-direction: column;
    gap: 3.125rem;
    margin-top: 3.75rem;
  }
}

.about-logo-meaning__mark {
  width: 188px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 188/277;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .about-logo-meaning__mark {
    width: 15.6%;
  }
}
@media screen and (max-width: 760px) {
  .about-logo-meaning__mark {
    width: 70%;
  }
}

.about-logo-meaning__cards {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  background-color: var(--color-gray-warm);
  border-radius: 0.9375rem;
  flex: 1;
}
@media screen and (max-width: 760px) {
  .about-logo-meaning__cards {
    width: 100%;
    flex-direction: column;
    padding: 3.75rem 0;
  }
}

.about-logo-meaning__cards::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 36px solid var(--color-gray-warm);
  border-left: 0;
}
@media screen and (max-width: 760px) {
  .about-logo-meaning__cards::before {
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    border-style: solid;
    border-right: 18px solid transparent;
    border-left: 18px solid transparent;
    border-bottom: 36px solid var(--color-gray-warm);
    border-top: 0;
  }
}

.about-logo-meaning__card {
  display: flex;
  flex: 0 1 calc((100% - min(2.4193548387vw, 50px) * 2) / 3);
  flex-direction: column;
  padding: 1.75rem 1.25rem 2.0625rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .about-logo-meaning__card {
    flex: 0 1 100%;
    padding: 1.25rem 0.9375rem 1.5625rem;
  }
}

.about-logo-meaning-card__img {
  width: 191px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 430px) {
  .about-logo-meaning-card__img {
    width: 140px;
  }
}

.about-logo-meaning-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark-gray);
  margin-top: 1.0625rem;
}
@media screen and (max-width: 760px) {
  .about-logo-meaning-card__title {
    font-size: 0.875rem;
  }
}

.about-logo-meaning-card__text {
  font-size: 1.125rem;
  font-weight: 700;
  background-color: var(--color-dark-gray);
  color: var(--color-white);
  line-height: 1.3;
  border-radius: 1.4375rem;
  padding: 0.5rem 0.625rem;
  max-width: 233px;
  width: 100%;
  margin-top: 0.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 760px) {
  .about-logo-meaning-card__text {
    font-size: 1rem;
  }
}

/****************************************/
/****************************************/
.about-merit {
  padding: 6.25rem 0 12.6875rem;
}
@media screen and (max-width: 760px) {
  .about-merit {
    padding: 3.75rem 0 6.25rem;
  }
}

.about-merit__cards {
  display: flex;
  gap: 1.25rem;
  margin-top: 3.375rem;
}
@media screen and (max-width: 760px) {
  .about-merit__cards {
    flex-direction: column;
    margin-top: 1.875rem;
  }
}

.about-merit__card {
  display: flex;
  flex: 0 1 calc((100% - min(0.8064516129vw, 20px) * 3) / 4);
  flex-direction: column;
  padding: 1.875rem 1.25rem 1.5625rem;
  background-color: var(--color-light-gray);
  border-radius: 0.625rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .about-merit__card {
    flex: 0 1 100%;
    padding: 1.25rem 0.9375rem 1.5625rem;
  }
}

.about-merit-card__img {
  width: 191px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 430px) {
  .about-merit-card__img {
    width: 140px;
  }
}

.about-merit-card__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1.125rem;
  color: var(--color-dark-gray);
}

/****************************************/
/****************************************/
.news {
  position: relative;
  padding: 3.125rem 1.875rem 6.25rem 1.875rem;
}
@media screen and (max-width: 430px) {
  .news {
    padding: 1.875rem 0.9375rem 3.75rem 0.9375rem;
  }
}

.news__inner {
  padding: 5rem 6.25rem 5.625rem;
  background-color: var(--color-white);
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .news__inner {
    padding: 1.875rem 1.25rem 2.8125rem;
  }
}

.news__deco01 {
  top: -5%;
  right: -8%;
}
@media screen and (max-width: 760px) {
  .news__deco01 {
    top: 33%;
    right: -12%;
  }
}

.news__deco02 {
  bottom: -25rem;
  left: -8%;
}
@media screen and (max-width: 760px) {
  .news__deco02 {
    bottom: 34%;
    left: -12%;
  }
}

.news.news--category {
  padding: 5rem 0 6.75rem;
}

.news__item {
  background-color: var(--color-light-gray);
  display: flex;
  align-items: center;
  padding: 0.5rem 1.875rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 760px) {
  .news__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1.5625rem;
  }
}

.news__head-ja {
  margin-top: 1.125rem;
}

.news__item + .news__item {
  margin-top: 1.25rem;
}

.news-item__unit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 430px) {
  .news-item__unit {
    width: 100%;
  }
}

.news-item__date {
  color: var(--color-black);
  font-weight: 300;
}

.news-item__category {
  color: var(--color-dark-gray2);
}
@media screen and (max-width: 430px) {
  .news-item__category {
    max-width: 100%;
    min-width: 100%;
  }
}

.news-item__link {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
  margin-left: 1.25rem;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 760px) {
  .news-item__link {
    margin-left: 0px;
    padding-top: 0;
    margin-top: 0.3125rem;
  }
}

.news__content {
  margin-top: 0;
}

.news--category .news__content {
  margin-top: 3.75rem;
}

/****************************************/
/****************************************/
.contact {
  position: relative;
  padding: 3.125rem 1.875rem 6.25rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 430px) {
  .contact {
    padding: 1.875rem 0.9375rem 5rem;
  }
}

.contact__inner {
  padding: 3.75rem 2.1875rem 2.8125rem;
  background-color: var(--color-white);
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .contact__inner {
    padding: 2.5rem 1.25rem 1.875rem;
  }
}

.contact__deco01 {
  top: 2%;
  right: -8%;
}
@media screen and (max-width: 760px) {
  .contact__deco01 {
    top: 33%;
    right: -12%;
  }
}

.contact__deco02 {
  bottom: -20%;
  left: -8%;
}
@media screen and (max-width: 760px) {
  .contact__deco02 {
    bottom: 34%;
    left: -12%;
  }
}

.contact__title {
  text-align: center;
}

.contact__title-en {
  color: var(--color-secondary);
  text-transform: capitalize;
}

.contact__title-ja {
  position: relative;
  color: var(--color-primary);
  margin-top: 0.375rem;
  padding-bottom: 1.875rem;
}

.contact__title-ja::after {
  position: absolute;
  content: "";
  width: 3.5rem;
  height: 0.125rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-secondary);
}

.contact__text {
  color: var(--color-text);
  padding-left: 1.25rem;
  border-left: 5px solid var(--color-primary);
}

.contact__box {
  background-color: var(--color-white);
  padding: 4.0625rem;
  border-radius: 0.3125rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .contact__box {
    padding: 3.125rem 4.8828125%;
  }
}
@media screen and (max-width: 760px) {
  .contact__box {
    padding: 2.5rem 1.25rem 3.75rem;
  }
}

.contact__mail-wrap {
  margin-top: 2.5rem;
}

.contact__link {
  color: var(--color-primary);
  text-decoration: underline;
}

.form__list {
  margin-top: 3.75rem;
}

.form__field {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 760px) {
  .form__field {
    flex-direction: column;
  }
}

.form__label {
  min-width: 240px;
}
@media screen and (max-width: 760px) {
  .form__label {
    min-width: unset;
  }
}

.form__field + .form__field {
  margin-top: 1.875rem;
}
@media screen and (max-width: 760px) {
  .form__field + .form__field {
    margin-top: 1.25rem;
  }
}

.form__data {
  flex-grow: 1;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .form__data {
    margin-top: 0.625rem;
  }
}

.form__acceptance {
  margin-top: 2.25rem;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .form__acceptance {
    margin-top: 1.875rem;
  }
}

.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #999999;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #999999;
}

.form__textarea {
  height: 15.625rem;
  resize: none;
}

.form__label {
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 600;
  color: var(--color-text);
}
.form__label .require {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  margin-left: 0.75rem;
  color: var(--color-text);
  background-color: var(--color-yellow3);
  padding: 0.125rem 0.3125rem;
}
@media screen and (max-width: 430px) {
  .form__label {
    font-size: 1rem;
  }
}

.form__label label {
  display: flex;
  align-items: center;
}

.form__input,
.form__select,
.form__textarea,
.form__acceptance-text {
  font-size: 1.125rem;
  width: 100%;
  padding: 0.625rem 0.9375rem;
  border: 1px solid #E3E3E3;
  background-color: #F8F8F8;
  border-radius: 0.25rem;
}
@media screen and (max-width: 430px) {
  .form__input,
.form__select,
.form__textarea,
.form__acceptance-text {
    padding: 0.5rem 0.9375rem;
    font-size: 1rem;
  }
}

.form__data-select {
  position: relative;
}

.form__data-select::after {
  position: absolute;
  top: 60%;
  right: 15px;
  width: 0;
  height: 0;
  margin-top: -3px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: var(--color-primary) transparent transparent transparent;
  content: "";
  pointer-events: none;
}

.form__data-radio {
  display: flex;
  flex-wrap: wrap;
}

.form__privacy-text {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 0.9375rem;
  color: var(--color-primary);
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 430px) {
  .form__privacy-text {
    font-size: 0.875rem;
    margin-left: 0.5rem;
  }
}

.form__privacy-note {
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: 0.9375rem;
}

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

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  border: 1px solid var(--color-primary);
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 9px;
  left: 3px;
  width: 0.9375rem;
  height: 0.5rem;
  transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid var(--color-primary);
  border-left: 2px solid var(--color-primary);
}

.form__checkbox:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__privacy-link {
  display: inline-block;
  color: var(--deep-lavender);
  font-weight: 500;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 2px;
}

.form__submit-button-wrap {
  margin-top: 2.5rem;
}
@media screen and (max-width: 760px) {
  .form__submit-button-wrap {
    margin-top: 1.25rem;
  }
}

.form__submit-button {
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 760px) {
  .form__submit-button {
    margin-top: 1.25rem;
  }
}

.form__submit-button:hover {
  opacity: 0.7;
}

.form__note {
  font-size: 0.875rem;
  color: var(--color-black);
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-top: 1.875rem;
  text-align: center;
}

.wpcf7 .wpcf7-submit:disabled {
  color: var(--color-white);
}

.wpcf7-spinner {
  display: none;
}

/****************************************/
/****************************************/
.site-content h2,
.site-content h3 {
  margin-bottom: 1.875rem;
}

.site-content p,
.site-content h4,
.site-content h5,
.site-content h6,
.site-content img,
.site-content ul,
.site-content ol,
.site-content table {
  margin-bottom: 0.9375rem;
}

.site-content p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  color: var(--color-text);
}
@media screen and (max-width: 760px) {
  .site-content p {
    font-size: 3.4210526316vw;
    line-height: 1.5384615385;
  }
}

.site-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark-gray);
  line-height: 2.2;
  word-break: break-word;
}
@media screen and (max-width: 760px) {
  .site-content h2 {
    font-size: 5.2631578947vw;
    line-height: 1.375;
  }
}

.site-content h3 {
  position: relative;
  color: var(--color-dark-gray);
  padding-bottom: 0.9375rem;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 2.2;
}
@media screen and (max-width: 760px) {
  .site-content h3 {
    font-size: 4.6052631579vw;
    line-height: 2.2;
  }
}

.site-content h3::after {
  position: absolute;
  content: "";
  width: 3.5rem;
  height: 0.125rem;
  bottom: 0;
  left: 0;
  background-color: var(--color-dark-gray);
}

.site-content h4 {
  margin-bottom: 0.9375rem;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-dark-gray);
}
@media screen and (max-width: 760px) {
  .site-content h4 {
    font-size: 4.2105263158vw;
  }
}

.site-content h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-dark-gray);
}
@media screen and (max-width: 760px) {
  .site-content h5 {
    font-size: 3.9473684211vw;
  }
}

.site-content h6 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-dark-gray);
}
@media screen and (max-width: 760px) {
  .site-content h6 {
    font-size: 3.6842105263vw;
  }
}

.site-content ul {
  list-style: none;
  padding-left: 2.25rem;
}
@media screen and (max-width: 760px) {
  .site-content ul {
    padding-left: 0.9375rem;
  }
}

.site-content ul li {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  color: var(--color-text);
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 760px) {
  .site-content ul li {
    align-items: baseline;
    font-size: 3.4210526316vw;
    line-height: 1.5384615385;
  }
}

.site-content ul li::before {
  content: "⚫︎";
  color: var(--color-dark-gray);
  font-size: 0.5em;
  margin-right: 1em;
}

.site-content ul li:not(:first-child) {
  margin-top: 0.3125rem;
}

.site-content ol {
  counter-reset: number;
  list-style-type: none !important;
  padding-left: 1.25rem;
}

.site-content ol li {
  position: relative;
  line-height: 1.6;
  padding-left: 2.1875rem;
}

.site-content ol li:not(:first-child) {
  margin-top: 0.625rem;
}

.site-content ol li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background-color: var(--color-dark-gray);
  color: var(--color-white);
  font-weight: 500;
  font-size: 1rem;
  left: 0;
  width: 1.5625rem;
  height: 1.5625rem;
  line-height: 25px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.site-content table table {
  border: none;
}

.site-content table thead {
  border-bottom: 1px solid var(--color-white);
}

.site-content table th {
  background: var(--color-gray-warm);
  color: var(--color-white);
}

.site-content table td {
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
}

.site-content a {
  color: var(--color-dark-gray);
  text-decoration: underline;
  word-break: break-all;
}

@media screen and (max-width: 760px) {
  .site-content figure {
    text-align: center;
  }
}

.site-content figure.wp-block-image img {
  width: auto !important;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* YouTube iframe対応（レスポンシブ） */
.site-content iframe {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* CSSでアスペクト比を維持 */
  margin-bottom: 0.9375rem;
}

/* 旧ブラウザ対応が必要な場合はwrapで対応 */
.site-content .video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  margin-bottom: 0.9375rem;
}

.site-content .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-title {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inner {
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.inner1100 {
  max-width: 1100px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.inner900 {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  color: var(--color-text);
}
@media screen and (max-width: 760px) {
  .text {
    font-size: 3.4210526316vw;
    line-height: 1.5384615385;
  }
}

.title {
  position: relative;
  color: var(--color-dark-gray);
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.2;
  word-break: break-word;
}
@media screen and (max-width: 760px) {
  .title {
    font-size: 5.2631578947vw;
    line-height: 1.375;
  }
}

.title::after {
  position: absolute;
  content: "";
  background-image: url(../images/yellow-three-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  width: 2.625rem;
  aspect-ratio: 21/4;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media screen and (max-width: 760px) {
  .title::after {
    width: 5.5263157895vw;
    bottom: -0.625rem;
  }
}

.subtitle {
  color: var(--color-dark-gray);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 2.2;
}
.subtitle.subtitle--green {
  color: var(--color-green);
}
@media screen and (max-width: 760px) {
  .subtitle {
    font-size: 4.6052631579vw;
    line-height: 2.2;
  }
}

.yellow-circle-deco {
  position: absolute;
  content: "";
  background-image: url(../images/yellow-circle-deco.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 45.6875rem;
  height: 45.6875rem;
}
@media screen and (max-width: 760px) {
  .yellow-circle-deco {
    width: 51.7105263158vw;
    height: 51.8421052632vw;
  }
}

.green-circle-deco {
  position: absolute;
  content: "";
  background-image: url(../images/green-circle-deco.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 45.6875rem;
  height: 45.6875rem;
}
@media screen and (max-width: 760px) {
  .green-circle-deco {
    width: 51.7105263158vw;
    height: 51.8421052632vw;
  }
}

.gray-border-box {
  border: 1px solid var(--color-border);
  border-radius: 0.9375rem;
}
@media screen and (max-width: 760px) {
  .gray-border-box.gray-border-box--sub {
    border: none;
  }
}

.yellow-marker {
  display: inline-block;
  border-bottom: 2px solid var(--color-yellow3);
}

table {
  border: 1px solid #AFAFAF;
  border-collapse: collapse;
  width: 100%;
}

table tr:not(:last-child) {
  border-bottom: 1px solid #AFAFAF;
}

table tr th {
  background-color: var(--color-light-gray);
  padding: 0.9375rem 1.5625rem;
  text-align: left;
  border-right: 1px solid #AFAFAF;
  vertical-align: middle;
}
@media screen and (max-width: 760px) {
  table tr th {
    padding: 0.625rem;
  }
}

table tr td {
  background-color: var(--color-white);
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 760px) {
  table tr td {
    padding: 0.625rem;
  }
}
@media screen and (max-width: 430px) {
  table tr td {
    padding: 0.9375rem 0.625rem;
  }
}

.page-heading {
  width: 100%;
  text-align: center;
  background-color: var(--color-dark-gray2);
  color: var(--color-white);
  font-size: 1.875rem;
  font-weight: 700;
  padding: 0.5rem 0.9375rem;
}
@media screen and (max-width: 760px) {
  .page-heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 430px) {
  .page-heading {
    font-size: 1.25rem;
  }
}

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

.pc-only {
  display: block;
}
@media screen and (max-width: 760px) {
  .pc-only {
    display: none;
  }
}

.page-content {
  position: relative;
  padding: 5.4375rem 0;
}
@media screen and (max-width: 760px) {
  .page-content {
    padding: 2.5rem 0 3.75rem;
  }
}

.page-content__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 3.125rem;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .page-content__inner {
    padding: 0 1.5625rem;
  }
}

.post {
  padding: 3.75rem 0;
}
@media screen and (max-width: 760px) {
  .post {
    padding: 2.5rem 0 3.75rem;
  }
}

.post__inner {
  width: 100%;
  max-width: 1000px;
  padding: 0 1.5625rem;
  margin: 0 auto;
}
@media screen and (max-width: 430px) {
  .post__inner {
    padding: 0 0.9375rem;
  }
}

.post__body {
  padding-top: 3.75rem;
}

.post__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.9375rem;
  flex-wrap: wrap;
}

.post__category {
  display: inline-block;
  font-weight: 700;
  color: var(--color-dark-gray);
}

.post__date {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-black);
}
@media screen and (max-width: 760px) {
  .post__date {
    font-size: 0.875rem;
  }
}

.post__title {
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.6;
}
@media screen and (max-width: 760px) {
  .post__title {
    font-size: 5.5263157895vw;
  }
}

.post__title::after {
  position: absolute;
  content: "";
  width: 100%;
  background: var(--color-dark-gray);
  height: 1px;
  left: 0;
  bottom: -5px;
}

.single-nav__items {
  margin-top: 90px;
  max-width: 500px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 20px), 1fr));
  -moz-column-gap: 20px;
  column-gap: 20px;
  justify-items: center;
  align-items: center;
}
@media screen and (max-width: 760px) {
  .single-nav__items {
    margin-top: 3.4375rem;
    grid-template-columns: 1fr;
    row-gap: 1.6875rem;
  }
}

.single-nav__item {
  width: 100%;
}

.page-nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--color-white);
  border: 1px solid var(--color-dark-gray);
  color: var(--color-dark-gray);
  padding: 0.625rem 1.25rem;
  transition: background-color 0.3s ease;
}

.page-nav-button:hover {
  border: 1px solid transparent;
  background-color: var(--color-dark-gray);
  color: var(--color-white);
  opacity: 1;
}

.news__category-title-wrap {
  margin-top: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.news__category-title-en {
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-dark-gray);
}
@media screen and (max-width: 760px) {
  .news__category-title-en {
    font-size: clamp(1.75rem, 1.607rem + 0.82vw, 2rem);
  }
}

.news__category-title {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(---color-dark-gray);
  margin-top: 0.9375rem;
}
@media screen and (max-width: 760px) {
  .news__category-title {
    font-size: clamp(1rem, 0.607rem + 0.82vw, 1.5rem);
  }
}

/****************************************/
/****************************************/
.fv {
  position: relative;
  background-color: var(--color-white);
  margin-top: 11.3125rem;
}
@media screen and (max-width: 760px) {
  .fv {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 760px) {
  body.admin-bar .fv {
    margin-top: 48px;
  }
}

.fv__img {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fv.fv--page {
  position: relative;
  margin-top: 11.3125rem;
  height: 12.5rem;
  background-image: unset;
  background-color: var(--color-light-gray);
}
.fv.fv--page .fv__content {
  top: 30%;
}
@media screen and (max-width: 760px) {
  .fv.fv--page .fv__content {
    top: 50%;
  }
}
@media screen and (max-width: 760px) {
  .fv.fv--page {
    margin-top: 5rem;
    height: 9.375rem;
  }
}

.fv__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1286px;
  margin: 0 auto;
  z-index: 5;
  left: 50%;
  top: 3%;
  transform: translateX(-50%);
}
@media screen and (max-width: 760px) {
  .fv__content {
    top: 40%;
    width: 100%;
    transform: translate(-50%, -50%);
  }
}

.fv__title {
  color: var(--color-dark-gray);
  font-size: 2.125rem;
  line-height: 1.6764705882;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .fv__title {
    font-size: 2.2222222222vw;
  }
}
@media screen and (max-width: 760px) {
  .fv__title {
    font-size: 5.2631578947vw;
    line-height: 1.425;
  }
}

.fv__text {
  color: var(--color-dark-gray);
  font-size: 1.125rem;
  line-height: 2.2222222222;
  margin-top: 0.625rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .fv__text {
    font-size: 1.2857142857vw;
    margin-top: 0;
  }
}
@media screen and (max-width: 760px) {
  .fv__text {
    margin-top: 1.25rem;
    font-size: 3.4210526316vw;
    line-height: 1.3461538462;
  }
}
@media (max-height: 560px) {
  .fv__text {
    font-size: 0.75rem;
  }
}

/****************************************/
/****************************************/
@media screen and (max-width: 760px) {
  .cta {
    padding-bottom: 2.5rem;
  }
}

.cta__inner {
  padding: 1.875rem;
  border-radius: 0.625rem;
  background-color: var(--color-light-gray);
}
@media screen and (max-width: 760px) {
  .cta__inner {
    padding: 1.25rem;
  }
}

.cta__title {
  text-align: center;
}

.cta__text {
  line-height: 1.5625;
  margin-top: 0.3125rem;
  text-align: center;
}

.cta__items {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.125rem;
  width: 100%;
  margin-top: 1.375rem;
}
@media screen and (max-width: 760px) {
  .cta__items {
    gap: 0.625rem;
    flex-direction: column;
    margin-top: 0.9375rem;
  }
}

.cta__item {
  background-color: var(--color-white);
  border-radius: 0.625rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  width: 33.3%;
}
@media screen and (max-width: 760px) {
  .cta__item {
    width: 100%;
    gap: 0.9375rem;
    padding: 0.625rem;
  }
}

.cta__img-tel {
  width: 2.3125rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 760px) {
  .cta__img-tel {
    width: 4.7368421053vw;
  }
}

.cta__item-info {
  display: flex;
  flex-direction: column;
}

.cta__item-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.cta__item-info-text {
  color: var(--color-dark-gray);
  font-weight: 700;
  line-height: 1.5625;
}
@media screen and (max-width: 760px) {
  .cta__item-info-text {
    line-height: 2.1923076923;
  }
}

.cta__item-tel-number {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5625;
  color: var(--color-green);
}
@media screen and (max-width: 760px) {
  .cta__item-tel-number {
    font-size: 4.6052631579vw;
    line-height: 1.3142857143;
  }
}

.cta__img-mail {
  width: 2.6875rem;
  aspect-ratio: 43/30;
}
@media screen and (max-width: 760px) {
  .cta__img-mail {
    width: 6.5789473684vw;
  }
}

.cta__img-instagram {
  width: 2.625rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 760px) {
  .cta__img-instagram {
    width: 5.5263157895vw;
  }
}

.cta__nav {
  margin-top: 3.125rem;
}
@media screen and (max-width: 760px) {
  .cta__nav {
    margin-top: 1.25rem;
  }
}

.cta-menu__items {
  display: flex;
  justify-content: center;
  gap: 0.9375rem;
}

.cta-menu__link {
  color: var(--color-dark-gray2);
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.1875;
  border-bottom: 1px solid var(--color-dark-gray2);
}

.error-not-found {
  padding: 5rem 0 7.5rem;
}

.error-not-found__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}