@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: block;
}
@media only screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-font-bold {
  font-weight: bold;
}

.u-font-40 {
  font-size: 2.5rem;
  letter-spacing: -0.07em;
}
@media only screen and (max-width: 1360px) {
  .u-font-40 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .u-font-40 {
    font-size: 1.25rem;
  }
}

.u-color-blue {
  color: #1B4A74;
}

.u-background-blue {
  font-size: 2.5rem;
  background-color: #1B4A74;
  color: #FFFFFF;
  padding: 0.3125rem 1.25rem;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .u-background-blue {
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    letter-spacing: -0.17em;
  }
}
@media only screen and (max-width: 1360px) {
  .u-background-blue {
    font-size: 2rem;
    padding: 0.625rem 0.9375rem;
  }
}
@media screen and (max-width: 480px) {
  .u-background-blue {
    font-size: 1.125rem;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  line-height: 1.45;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* デバッグ用 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

button {
  padding: 0;
  color: inherit;
}

textarea {
  resize: vertical;
}

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

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

.c-breadcrumb {
  padding: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 1.5rem;
  }
}

.c-breadcrumb__lists {
  display: flex;
  align-items: center;
  gap: 1.25rem 0.625rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

@media (any-hover: hover) {
  .c-breadcrumb__item a:hover {
    opacity: 0.5;
  }
}
.c-breadcrumb__item a span {
  text-decoration: underline;
}
.c-breadcrumb__item span {
  color: #7a7368;
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.c-breadcrumb__item:not(:first-child) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 1px;
  border-radius: 2px;
}

.c-btn {
  display: grid;
  place-items: center;
  width: 14.625rem;
  aspect-ratio: 234/65;
  background: linear-gradient(90deg, #FF7901 0%, #F6C738 100%);
  color: #FFFFFF;
  font-size: 1.5rem;
  padding: 0.625rem;
  font-weight: bold;
  border-radius: 6.25rem;
  position: relative;
  overflow: hidden;
}
.c-btn.--instagram {
  background: url(../images/common/instagram-icon-bg.svg) no-repeat center center/contain;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .c-btn.--instagram {
    width: 12.5rem;
  }
}
@media screen and (max-width: 480px) {
  .c-btn {
    width: 11.25rem;
    aspect-ratio: 180/44;
    font-size: 1rem;
    padding: 0.625rem;
  }
}
.c-btn::before {
  content: "";
  width: 30px;
  height: 100%;
  background-color: #fff;
  -webkit-animation: shine 3s ease-in-out infinite;
          animation: shine 3s ease-in-out infinite;
  position: absolute;
  top: -180px;
  left: 0;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 0.7;
  }
}
.c-btn.--section {
  width: 11.25rem;
  aspect-ratio: 180/44;
  font-size: 1rem;
  padding: 0.625rem;
}

@-webkit-keyframes shine {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes shine {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.c-contact-button {
  width: 21.875rem;
  aspect-ratio: 350/80;
  background: linear-gradient(90deg, #218A61 0%, #30B67B 100%);
  color: #FFFFFF;
  font-size: 1.25rem;
  padding: 0.625rem;
  font-weight: bold;
  border-radius: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.c-contact-button::before {
  content: "";
  width: 30px;
  height: 100%;
  background-color: #fff;
  -webkit-animation: shine 3s ease-in-out infinite;
          animation: shine 3s ease-in-out infinite;
  position: absolute;
  top: -180px;
  left: 0;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-contact-button {
    width: 100%;
    aspect-ratio: 265/50;
    font-size: 1rem;
    line-height: 1;
    padding: 0.9375rem 0.625rem;
  }
}
@media screen and (max-width: 480px) {
  .c-contact-button {
    font-size: 0.9375rem;
  }
}
.c-contact-button.--tel {
  background: linear-gradient(180deg, #FFFFFF 0%, #ebebeb 100%);
  color: #018C70;
  border: 0.125rem solid #018C70;
}
@media (any-hover: hover) {
  .c-contact-button:hover {
    opacity: 0.7;
  }
}

.c-button__text--text {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-button__text--text {
    display: none;
  }
}

.c-button__text--tel {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.c-card {
  background-color: #FFFFFF;
  border-radius: 0.625rem;
  box-shadow: 4px 4px 10px 0 rgba(138, 203, 94, .1);
  overflow: hidden;
}

.c-card-link {
  display: block;
}
@media (any-hover: hover) {
  .c-card-link:hover {
    opacity: 0.7;
  }
}

.c-card-image {
  width: 100%;
}
.c-card-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 300/180;
}

.c-card-body {
  padding: 1.5625rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .c-card-body {
    padding: 1.25rem 0.625rem;
  }
}

.c-card-meta {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  gap: 0.625rem;
}

.c-card-date {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
}

.c-card-category {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #FFFFFF;
  white-space: nowrap;
  background: linear-gradient(90deg, #218A61 0%, #30B67B 100%);
  padding: 0 0.5rem;
  border-radius: 6.25rem;
}
@media screen and (max-width: 767px) {
  .c-card-category {
    line-height: 1.5;
    padding: 0 0.5rem;
  }
}

.c-card-title {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-card-title {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.875rem;
    height: 1.4375rem;
  }
}

.c-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4375rem;
  width: 1.875rem;
  height: 1.4375rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.c-hamburger span {
  display: block;
  width: 1.875rem;
  height: 0.1875rem;
  background: #1B4A74;
  border-radius: 62.4375rem;
}

.c-hamburger.open span {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 150;
}

.c-hamburger.open span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.c-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.c-hamburger.open span:nth-child(3) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.c-media {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-media {
    flex-direction: column;
    gap: 0.9375rem;
  }
}
.c-media.--reverse .c-media-title {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .c-media.--reverse .c-media-title {
    margin-inline: auto;
    order: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-media.--reverse .c-media-image {
    order: 1;
  }
}

.c-media-body {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-media-body {
    display: contents;
  }
}

.c-media-title {
  background: linear-gradient(90deg, #218A61 0%, #30B67B 100%);
  display: grid;
  place-items: center;
  color: #FFFFFF;
  padding: 1.125rem;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 0.3125rem;
  width: 20.9375rem;
}
@media screen and (max-width: 767px) {
  .c-media-title {
    font-size: 1.25rem;
    padding: 0.3125rem 1.25rem;
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-media-title .text {
    display: block;
    white-space: normal;
  }
}

.c-media-text {
  margin-top: 1.875rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-media-text {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
    order: 2;
  }
}

.c-media-image {
  width: 100%;
  max-width: 22.5rem;
}
@media screen and (max-width: 767px) {
  .c-media-image {
    max-width: 100%;
    margin-top: 1.25rem;
  }
}
.c-media-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 360/355;
}
@media screen and (max-width: 767px) {
  .c-media-image img {
    aspect-ratio: 265/240;
  }
}

.c-nav {
  display: flex;
  align-items: center;
  gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .c-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.9375rem;
  }
}

.c-nav__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .c-nav__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}

.c-nav__link {
  display: block;
  width: -webkit-fit-content;
  width: fit-content;
  padding-block: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #222222;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-nav__link {
    padding-block: 0.75rem;
  }
}
@media (any-hover: hover) {
  .c-nav__link:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
.c-nav__link::after {
  content: "";
  position: absolute;
  bottom: 0.9375rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #222222;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-nav__link::after {
    bottom: 0.3125rem;
  }
}

.popup {
  position: fixed;
  right: 1.875rem;
  bottom: 1.875rem;
  z-index: 20;
  max-width: 18.75rem;
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  pointer-events: none;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

@media (max-width: 767px) {
  .popup {
    max-width: 11.25rem;
  }
}
.popup.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  pointer-events: auto;
}

.popup__content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.popup__link {
  display: block;
  height: 100%;
}

.popup__link img {
  width: 100%;
  aspect-ratio: 300/180;
  -o-object-fit: cover;
     object-fit: cover;
}

.popup__close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #000;
  border: none;
  cursor: pointer;
}

.popup__close::before,
.popup__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.875rem;
  height: 0.125rem;
  background: #fff;
}

.popup__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.popup__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.c-section-title {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
  color: #018C70;
}
.c-section-title .en {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .c-section-title .en {
    font-size: 1.875rem;
  }
}
.c-section-title .ja {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-section-title .ja {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }
}

.l-inner {
  width: 100%;
  max-width: 1280px;
  padding-inline: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 640px;
    padding-inline: 20px;
  }
}

.l-section__inner {
  width: min(100% - 80px, 62.5rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-section__inner {
    width: calc(100% - 40px);
  }
}

/***************************************
ブログ一覧ページ
****************************************/
.p-blog__fv {
  width: 100%;
  position: relative;
  min-height: 31.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-blog__fv {
    min-height: 10.9375rem;
  }
}
.p-blog__fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg/page-fv.webp) no-repeat center center/cover;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1150px) {
  .p-blog__fv::before {
    background-image: url(../images/bg/page-fv-sp.webp);
  }
}

.p-blog__fv-inner {
  position: relative;
  width: 100%;
  min-height: 31.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-blog__fv-inner {
    min-height: 10.9375rem;
  }
}

.p-blog__fv-content {
  color: #FFFFFF;
  text-align: center;
}

.p-blog__fv-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-blog__fv-title {
    gap: 0.9375rem;
  }
}
.p-blog__fv-title .en {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-blog__fv-title .en {
    font-size: 2.5rem;
  }
}
.p-blog__fv-title .ja {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-blog__fv-title .ja {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

.p-blog {
  padding-block: 6.25rem 8.3125rem;
}
@media screen and (max-width: 767px) {
  .p-blog {
    padding-block: 3.125rem 4.1875rem;
  }
}

.p-blog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-blog__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}
.p-blog__list.--archive {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-blog__list.--archive {
    gap: 1.875rem;
  }
}

.p-blog__item.--archive {
  padding-block: 1.875rem;
  border-bottom: 1px solid #E2E8EB;
}
@media screen and (max-width: 767px) {
  .p-blog__item.--archive {
    padding-block: 1.25rem;
  }
}
.p-blog__item.--archive:first-child {
  padding-top: 0;
}
.p-blog__item.--archive:last-child {
  border-bottom: none;
}

.p-blog__item-category {
  display: inline-block;
  background: #018C70;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-blog__item-category {
    font-size: 0.6875rem;
    padding: 0.1875rem 0.625rem;
    margin-bottom: 0.625rem;
  }
}

.p-blog__item-image {
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-blog__item-image {
    margin-bottom: 0.625rem;
  }
}
.p-blog__item-image a {
  display: block;
}
.p-blog__item-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.3125rem;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-blog__item-image img:hover {
    opacity: 0.8;
  }
}

.p-blog__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-blog__item-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}
.p-blog__item-title a {
  color: #222222;
  transition: color 0.3s;
}
@media (any-hover: hover) {
  .p-blog__item-title a:hover {
    color: #018C70;
  }
}

.p-blog__item-date {
  display: block;
  font-size: 0.8125rem;
  color: #7F7F7F;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-blog__item-date {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
  }
}

.p-blog__item-excerpt {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-blog__item-excerpt {
    font-size: 0.8125rem;
  }
}

.p-blog__item-more-wrap {
  text-align: right;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-blog__item-more-wrap {
    margin-top: 0.9375rem;
  }
}

.p-blog__item-more {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #018C70;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-blog__item-more:hover {
    opacity: 0.7;
  }
}

.navigation {
  margin-top: 6.25rem;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .navigation {
    margin-top: 3.125rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .nav-links {
    gap: 0.625rem;
  }
}

.page-numbers {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #018C70;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #222222;
}
@media screen and (max-width: 480px) {
  .page-numbers {
    width: 1.5625rem;
    height: 1.5625rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .page-numbers {
    font-size: 0.875rem;
  }
}
.page-numbers:not(.dots):hover {
  color: #018C70;
}
.page-numbers.current {
  background-color: #018C70;
  color: #FFFFFF;
}
.page-numbers.dots {
  border: none;
  color: #7F7F7F;
}
.page-numbers.prev, .page-numbers.next {
  border: none;
  color: #7F7F7F;
}

/***************************************
ブログ詳細ページ
****************************************/
.p-single {
  max-width: 87.5rem;
  margin-inline: auto;
  margin-block: 6.25rem;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .p-single {
    padding-inline: 20px;
    margin-block: 3.125rem;
  }
}

.p-single__container {
  width: min(100% - 80px, 75rem);
  margin-inline: auto;
  display: flex;
  gap: 3.75rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-single__container {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.p-single__main {
  flex: 1;
  min-width: 0;
  max-width: 62.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__main {
    max-width: 100%;
  }
}

.p-single__meta {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single__meta {
    gap: 0.625rem;
    margin-top: 0.625rem;
  }
}

.p-single__eyecatch {
  margin-block: 1.25rem;
}
.p-single__eyecatch img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-single__content img {
  display: block;
  width: 100%;
  margin-block: 1.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-single__content p {
  line-height: 2;
  width: calc(100% - 1.25rem);
  margin-inline: auto;
  word-wrap: anywhere;
}
.p-single__content a {
  display: block;
  width: -webkit-fit-content;
  width: fit-content;
  margin-block: 1.25rem;
  background: linear-gradient(90deg, #218A61 0%, #30B67B 100%);
  color: #FFFFFF;
  padding: 0.3125rem 0.9375rem;
  border-radius: 6.25rem;
}
@media (any-hover: hover) {
  .p-single__content a:hover {
    opacity: 0.8;
  }
}

.p-single__pager {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-block: 6.25rem;
  display: flex;
  align-items: center;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-single__pager {
    margin-block: 3.125rem;
    gap: 1.25rem;
  }
}

.c-single-pagenation__prev a,
.c-single-pagenation__next a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #222222;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .c-single-pagenation__prev a:hover,
  .c-single-pagenation__next a:hover {
    color: #018C70;
  }
}

.c-single-pagenation__prev a {
  position: relative;
  padding-left: 1.875rem;
}
.c-single-pagenation__prev a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj48cGF0aCBmaWxsPSIjMjIyMjIyIiBkPSJNMTAuMDAwMDIgMTkuOTk5OTlDMTAuMDAwMDIgMTkuOTk5OTlMMTAuMDAwMDIgMTAuMDAwMDIiLz48L3N2Zz4=");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-single-pagenation__next a {
  position: relative;
  padding-right: 1.875rem;
}
.c-single-pagenation__next a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj48cGF0aCBmaWxsPSIjMjIyMjIyIiBkPSJNMTAuMDAwMDIgMTkuOTk5OTlDMTAuMDAwMDIgMTkuOTk5OTlMMTAuMDAwMDIgMTAuMDAwMDIiLz48L3N2Zz4=");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-single__sidebar {
  width: 15.625rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-single__sidebar {
    width: 100%;
  }
}

@media only screen and (min-width: 769px) {
  .p-single__sidebar {
    position: sticky;
    top: 1.25rem;
    align-self: flex-start;
  }
}
.p-sidebar__search {
  margin-bottom: 1.875rem;
  border-bottom: 1px solid #E2E8EB;
}

.p-sidebar__section {
  margin-bottom: 2.5rem;
}
.p-sidebar__section:last-child {
  margin-bottom: 0;
}

.p-sidebar__title {
  font-size: 1rem;
  font-weight: bold;
  color: #018C70;
  margin-bottom: 0.9375rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #E2E8EB;
}

.p-sidebar__post-list {
  list-style: none;
}
.p-sidebar__post-list li {
  margin-bottom: 0.75rem;
}
.p-sidebar__post-list li:last-child {
  margin-bottom: 0;
}
.p-sidebar__post-list a {
  color: #222222;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.6;
  display: block;
  transition: color 0.3s;
}
.p-sidebar__post-list a:hover {
  color: #018C70;
  text-decoration: underline;
}

.p-sidebar__category-list {
  list-style: none;
}
.p-sidebar__category-list li {
  margin-bottom: 0.5rem;
}
.p-sidebar__category-list li:last-child {
  margin-bottom: 0;
}
.p-sidebar__category-list a {
  color: #222222;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.p-sidebar__category-list a:hover {
  color: #018C70;
  text-decoration: underline;
}
.p-sidebar__category-list .children {
  margin-top: 0.5rem;
  margin-left: 0.9375rem;
  padding-left: 0.625rem;
  border-left: 1px solid #E2E8EB;
}

.p-sidebar__archive-list {
  list-style: none;
}
.p-sidebar__archive-list li {
  margin-bottom: 0.5rem;
}
.p-sidebar__archive-list li:last-child {
  margin-bottom: 0;
}
.p-sidebar__archive-list a {
  color: #222222;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.p-sidebar__archive-list a:hover {
  color: #018C70;
  text-decoration: underline;
}

/***************************************
お問い合わせフォーム
****************************************/
/***************************************
ドロワーメニュー
****************************************/
.p-drawer {
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 110;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  background-color: #FFFFFF;
}

.p-drawer.open {
  visibility: visible;
  opacity: 1;
}

body.is-fixed {
  overflow: hidden;
}

.p-drawer__wrap {
  padding-inline: 20px;
}

.p-drawer__logo {
  margin-top: 6.25rem;
  width: 18.75rem;
  margin-inline: auto;
  aspect-ratio: 300/100;
}
.p-drawer__logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-drawer__nav {
  padding-block: 2.5rem;
  width: min(100%, 21.875rem);
  margin-inline: auto;
}

.p-drawer__nav-item {
  font-size: 1rem;
  font-weight: bold;
  border-bottom: 1px solid #E2E8EB;
}
.p-drawer__nav-item:last-child {
  border-top: 1px solid #E2E8EB;
}

.p-drawer__nav-link {
  display: block;
  padding-block: 1.25rem;
}
@media (any-hover: hover) {
  .p-drawer__nav-link:hover {
    background: linear-gradient(90deg, #218A61 0%, #30B67B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.p-drawer__nav-link.--child {
  padding-left: 1.25rem;
}

.p-drawer__nav-contact {
  margin-top: 3.125rem;
  width: 13.5rem;
  aspect-ratio: 216/52;
  margin-inline: auto;
  padding-left: 0.9375rem;
}

.p-footer {
  width: 100%;
  background-color: #FFFFFF;
  padding-block: 3.125rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 1.875rem 0.625rem;
  }
}

.p-footer__inner {
  width: min(100% - 80px, 75rem);
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    width: calc(100% - 40px);
    padding-inline: 20px;
    flex-direction: column;
  }
}

.p-footer__logo {
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    margin-inline: auto;
  }
}
.p-footer__logo img {
  width: 100%;
  aspect-ratio: 200/70;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__nav-sns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-self: flex-end;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-sns {
    align-self: center;
    justify-items: center;
  }
}

.c-sns-button-wrapper {
  display: flex;
  flex-direction: column;
}
.c-sns-button-wrapper .c-sns-button-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-sns-button-wrapper .c-sns-button-text {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}

.c-sns-button {
  width: 3.75rem;
  height: 3.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-sns-button {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.c-sns-button img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__nav-button {
  flex: 1;
  align-self: flex-start;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-button {
    align-self: center;
  }
}

.p-footer__copy {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    margin-top: 1.875rem;
  }
}

/***************************************
トップページ
****************************************/
.p-front__fv {
  width: 100%;
  position: relative;
  padding-block: 4.375rem 5.625rem;
  min-height: 35rem;
}
.p-front__fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg/fv-bg.webp) no-repeat center center/cover;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-front__fv::before {
    background: url(../images/bg/fv-bg-sp.webp) no-repeat center center/cover;
  }
}
@media only screen and (min-width: 1650px) {
  .p-front__fv {
    min-height: 43.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-front__fv {
    min-height: auto;
    padding-block: 1.875rem 1.25rem;
  }
}

.p-front__fv-inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-front__fv-inner {
    width: calc(100% - 40px);
    margin-inline: auto;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-front__fv-image {
  flex: 1 1 46%;
}
@media screen and (max-width: 767px) {
  .p-front__fv-image {
    flex: 1 1 auto;
  }
}
.p-front__fv-image img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-front__fv-content {
  flex: 0 0 47%;
}
@media screen and (max-width: 767px) {
  .p-front__fv-content {
    flex: 1 1 auto;
  }
}

.p-front__fv-content-inner {
  margin-left: 10%;
}
@media screen and (max-width: 767px) {
  .p-front__fv-content-inner {
    margin-left: 0;
  }
}

.p-front__fv-title {
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: -0.07em;
  white-space: nowrap;
}
@media only screen and (max-width: 1360px) {
  .p-front__fv-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-front__fv-title {
    font-size: 2.25rem;
  }
}
.p-front__fv-title .text {
  display: block;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-front__fv-title .text {
    gap: 0.3125rem;
  }
}
.p-front__fv-title .text:not(:last-child) {
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-front__fv-title .text:not(:last-child) {
    margin-bottom: 0.3125rem;
  }
}

.p-front__fv-text {
  margin-top: 3.125rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}
@media only screen and (max-width: 1360px) {
  .p-front__fv-text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-front__fv-text {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}
.p-front__fv-text .text {
  display: block;
}

/***************************************
サービス
****************************************/
.p-front__service {
  width: 100%;
  padding-block: 5.625rem;
  background-color: #EEEEEE;
}
@media screen and (max-width: 767px) {
  .p-front__service {
    padding-block: 3.125rem;
  }
}

.p-front__service-inner {
  width: min(100% - 80px, 62.5rem);
  margin-inline: auto;
  border-radius: 0.625rem;
  padding: 6.25rem 6.25rem 5rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.p-front__service-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg/service-bg.webp) no-repeat 100% 100%/cover;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-front__service-inner::before {
    display: none;
  }
}
.p-front__service-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-front__service-inner::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-front__service-inner::before, .p-front__service-inner::after {
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-front__service-inner {
    width: calc(100% - 40px);
    background: transparent;
    padding: 0;
    border-radius: 0;
    z-index: 2;
  }
}

@media screen and (max-width: 767px) {
  .p-front__service-item > * {
    position: relative;
    z-index: 2;
  }
}

.p-front__service-item {
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-front__service-item {
    margin-top: 3.125rem;
    padding: 3.125rem 2.1875rem;
    border-radius: 0.625rem;
    position: relative;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .p-front__service-item::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg/service-bg.webp) no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px) {
  .p-front__service-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 1;
  }
}

.p-front__service-list {
  display: grid;
  gap: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-front__service-list {
    gap: 3.125rem;
  }
}

/***************************************
blog
****************************************/
.p-front__blog {
  margin-block: 5.625rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-front__blog {
    margin-block: 3.125rem 4.1875rem;
  }
}

.p-front__blog-text {
  margin-top: 3.125rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-front__blog-text {
    margin-top: 1.3125rem;
    font-size: 1rem;
  }
}

.p-front__blog-list {
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-front__blog-list {
    margin-top: 3.125rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.p-front__blog-button {
  margin-top: 4.125rem;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-front__blog-button {
    margin-top: 2.3125rem;
  }
}

/***************************************
company
****************************************/
.p-front__company {
  margin-top: 7.5rem;
  padding-block: 5.625rem;
  background-color: #E3F8F1;
}
@media screen and (max-width: 767px) {
  .p-front__company {
    margin-top: 3.125rem;
    padding-block: 3.125rem;
  }
}

.p-front__company-inner {
  width: min(100% - 80px, 64.5rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-front__company-inner {
    width: calc(100% - 40px);
  }
}

.p-front__company-text {
  margin-top: 3.125rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-front__company-text {
    margin-top: 1.3125rem;
    font-size: 1rem;
  }
}

.p-front__company-content-info {
  width: 100%;
  margin-top: 4.6875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-front__company-content-info {
    margin-top: 3.125rem;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-front__company-content-info-body {
  flex: 0 0 28.75rem;
  background-color: #FFFFFF;
  border-radius: 0.625rem;
  padding: 1.25rem 1.875rem;
  box-shadow: 4px 4px 20px 0 rgba(129, 205, 255, .35);
}
@media screen and (max-width: 767px) {
  .p-front__company-content-info-body {
    flex: 1 1 auto;
    width: 100%;
  }
}

.p-front__company-content-info-item {
  display: flex;
  align-items: center;
  padding-block: 1.25rem;
  border-bottom: 1px dashed #222222;
}
.p-front__company-content-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.p-front__company-content-info-item:first-child {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-front__company-content-info-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-front__company-content-info-item-title {
  flex: 0 0 30%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-front__company-content-info-item-title {
    flex: 1 1 auto;
    font-size: 0.875rem;
    font-weight: bold;
  }
}

.p-front__company-content-map {
  flex: 1 1 auto;
}
@media screen and (max-width: 767px) {
  .p-front__company-content-map {
    flex: 1 1 auto;
  }
}
.p-front__company-content-map iframe {
  width: min(100%, 31.25rem);
  aspect-ratio: 500/300;
}
@media screen and (max-width: 767px) {
  .p-front__company-content-map iframe {
    width: 100%;
    height: 12.5rem;
  }
}

/***************************************
contact
****************************************/
.p-front__contact {
  padding-block: 5.625rem;
  position: relative;
}
.p-front__contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/bg/contact-bg.webp) no-repeat center/cover;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-front__contact::before {
    background-image: url(../images/bg/contact-bg-sp.webp);
  }
}
@media screen and (max-width: 767px) {
  .p-front__contact {
    padding-block: 3.125rem;
  }
}

.p-front__contact-inner {
  width: min(100% - 80px, 62.5rem);
  margin-inline: auto;
  background-color: #FFFFFF;
  border-radius: 0.625rem;
  padding-block: 3.125rem;
  padding-inline: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-front__contact-inner {
    width: 100%;
    padding-inline: 0.9375rem;
    padding-block: 1.875rem;
  }
}

.p-front__contact-text {
  margin-top: 3.75rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-front__contact-text {
    margin-top: 1.5625rem;
    font-size: 1rem;
  }
}

.p-front__contact-wrapper {
  margin-top: 3.125rem;
  width: min(100%, 47.0625rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-front__contact-wrapper {
    width: 100%;
    flex-direction: column;
    gap: 0.9375rem;
  }
}

/***************************************
contact form（TOPページ用）
****************************************/
.p-front__contact-container {
  width: min(100% - 80px, 62.5rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-front__contact-container {
    width: calc(100% - 40px);
  }
}

.p-front__contact-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-front__contact-tabs {
    flex-direction: column;
    margin-top: 1.5625rem;
    gap: 0.75rem;
  }
}

.p-front__contact-tab {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #222222;
  background-color: #EEEEEE;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media (any-hover: hover) {
  .p-front__contact-tab {
    background-color: rgb(225, 225, 225);
  }
}
.p-front__contact-tab.is-active {
  background-color: #FFFFFF;
  border-color: #018C70;
  color: #018C70;
}
@media screen and (max-width: 767px) {
  .p-front__contact-tab {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}

.p-front__contact-panel {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-front__contact-panel {
    margin-top: 1.25rem;
  }
}

.p-front__contact-title-sub {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-front__contact-title-sub {
    margin-top: 1.875rem;
  }
}

.p-front__contact-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .p-front__contact-note {
    font-size: 0.75rem;
    text-align: left;
  }
}

.p-contact-form {
  margin-top: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    margin-top: 1.5625rem;
  }
}

.p-contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-contact-form__form br {
  display: none;
}

.p-contact-form__section {
  padding: 1.5rem 0;
}

.p-contact-form__inquiry-row {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-contact-form__inquiry-row {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-contact-form__inquiry-type {
  flex: 0 0 auto;
  min-width: 17.5rem;
}

.p-contact-form__input-stack {
  flex: 1 1 auto;
  min-width: min(100%, 20rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.p-contact-form__section-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #222222;
  padding-left: 0.625rem;
  border-left: 0.625rem solid #018C70;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__section-title {
    font-size: 1rem;
  }
}

.p-contact-form__2column {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-contact-form__2column {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.p-contact-form__radio-group {
  flex: 0 0 auto;
}

.p-contact-form__row {
  display: flex;
  flex-direction: column;
}
.p-contact-form__row + .p-contact-form__row {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__row + .p-contact-form__row {
    margin-top: 1rem;
  }
}

.p-contact-form__label {
  font-size: 1rem;
  font-weight: 500;
  color: #222222;
  padding-right: 0.625rem;
}
.p-contact-form__label .required {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.6875rem;
  color: #FFFFFF;
  background-color: #e53935;
  padding: 0.125rem 0.5rem;
  border-radius: 0.1875rem;
}
.p-contact-form__label .optional {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.6875rem;
  color: #FFFFFF;
  background-color: #757575;
  padding: 0.125rem 0.5rem;
  border-radius: 0.1875rem;
}

.p-contact-form__input,
.p-contact-form__select,
.p-contact-form__textarea {
  width: 100%;
  margin-top: 0.625rem;
  padding: 0.75rem 0.875rem;
  font-size: 0.875rem;
  border: 1px solid #E2E8EB;
  border-radius: 0.25rem;
  background-color: #FFFFFF;
  transition: border-color 0.3s ease;
}
.p-contact-form__input:focus,
.p-contact-form__select:focus,
.p-contact-form__textarea:focus {
  outline: none;
  border-color: #018C70;
}
.p-contact-form__input::-webkit-input-placeholder,
.p-contact-form__select::-webkit-input-placeholder,
.p-contact-form__textarea::-webkit-input-placeholder {
  color: #999;
}
.p-contact-form__input::-ms-input-placeholder,
.p-contact-form__select::-ms-input-placeholder,
.p-contact-form__textarea::-ms-input-placeholder {
  color: #999;
}
.p-contact-form__input::placeholder,
.p-contact-form__select::placeholder,
.p-contact-form__textarea::placeholder {
  color: #999;
}
.p-contact-form__input.--small,
.p-contact-form__select.--small,
.p-contact-form__textarea.--small {
  width: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input.--small,
  .p-contact-form__select.--small,
  .p-contact-form__textarea.--small {
    width: 3.125rem;
  }
}
.p-contact-form__input.--zip,
.p-contact-form__select.--zip,
.p-contact-form__textarea.--zip {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input.--zip,
  .p-contact-form__select.--zip,
  .p-contact-form__textarea.--zip {
    width: 4.375rem;
  }
}
.p-contact-form__input.--date,
.p-contact-form__select.--date,
.p-contact-form__textarea.--date {
  width: auto;
}
.p-contact-form__input.--time,
.p-contact-form__select.--time,
.p-contact-form__textarea.--time {
  width: auto;
  min-width: 7.5rem;
}

.p-contact-form__input-group p {
  display: flex;
  gap: 0.75rem;
}
.p-contact-form__input-group p .p-contact-form__input {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-group p {
    gap: 0.5rem;
  }
}

.p-contact-form__date-group p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.p-contact-form__date-group p span {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__date-group p {
    gap: 0.25rem;
  }
  .p-contact-form__date-group p span {
    font-size: 0.875rem;
  }
}

.p-contact-form__zip-group p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.p-contact-form__zip-group p span {
  font-size: 1rem;
}

.p-contact-form__datetime-group p {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
.p-contact-form__datetime-group p span {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__datetime-group p {
    gap: 0.3125rem;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .p-contact-form__datetime-group p span {
    font-size: 0.875rem;
  }
}

.p-contact-form__select {
  width: 60%;
  cursor: pointer;
}

.p-contact-form__textarea {
  resize: vertical;
  min-height: 6.25rem;
}

.p-contact-form input[type=radio] {
  display: inline-block;
  -webkit-appearance: radio;
  appearance: auto;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  accent-color: #018C70;
}

.p-contact-form .wpcf7-radio.p-contact-form__radio {
  margin-top: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.p-contact-form .wpcf7-radio.p-contact-form__radio .wpcf7-list-item {
  margin: 0;
}

.p-contact-form .wpcf7-radio.p-contact-form__radio .wpcf7-list-item > label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.p-contact-form .wpcf7-radio.p-contact-form__radio .wpcf7-list-item-label {
  font-size: 1rem;
  line-height: 1.5;
}

.p-contact-form__radio-inline .wpcf7-radio.p-contact-form__radio {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.p-contact-form__radio-inline .wpcf7-list-item > label {
  align-items: center;
}

.p-contact-form__select {
  -webkit-appearance: menulist;
  appearance: menulist;
  background-color: #FFFFFF;
  border: 1px solid #E2E8EB;
  border-radius: 0.25rem;
}

.p-contact-form__links {
  margin-top: 0.3125rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-contact-form__link {
  font-size: 1rem;
  color: #018C70;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-contact-form__link {
    opacity: 0.7;
  }
}

.p-contact-form__note {
  font-size: 0.875rem;
  margin-top: 0.625rem;
}
.p-contact-form__note.--center {
  text-align: center;
}

.p-contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__submit {
    margin-top: 1.5rem;
  }
}

.p-contact-form__button {
  display: inline-block;
  width: min(100%, 17.5rem);
  padding: 1rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(90deg, #218A61 0%, #30B67B 100%);
  border: none;
  border-radius: 3.125rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  letter-spacing: 0.5em;
}
@media (any-hover: hover) {
  .p-contact-form__button {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__button {
    width: 100%;
    padding: 0.875rem 1.875rem;
    font-size: 1rem;
  }
}

.wpcf7-not-valid-tip {
  font-size: 0.75rem;
}

.p-contact-form .wpcf7-form.sent .wpcf7-response-output {
  display: none;
}

/***************************************
送信完了ポップアップ
****************************************/
.p-contact-thanks {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
  pointer-events: none;
}

.p-contact-thanks.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.p-contact-thanks__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}

.p-contact-thanks__inner {
  position: relative;
  background: #FFFFFF;
  border-radius: 0.625rem;
  padding: 3.125rem 2.5rem;
  max-width: 31.25rem;
  width: 100%;
  text-align: center;
  box-shadow: 4px 4px 20px 0 rgba(129, 205, 255, .35);
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__inner {
    padding: 2.5rem 1.5rem;
  }
}

.p-contact-thanks__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #018C70;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__text {
    font-size: 1.25rem;
  }
}

.p-contact-thanks__sub {
  font-size: 1rem;
  line-height: 1.8;
  color: #222222;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__sub {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.p-contact-thanks__close {
  margin-inline: auto;
}

/***************************************
ヘッダー
****************************************/
.p-header {
  width: 100%;
  background-color: #FFFFFF;
  position: relative;
  z-index: 10;
}

.p-header__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: 0 20px;
  }
}
body:not(.home) .p-header__inner {
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  body:not(.home) .p-header__inner {
    padding-inline: 0 20px;
  }
}

.p-header__pc-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-header__pc-menu {
    display: none;
  }
}

.p-header__logo {
  width: 16.875rem;
  height: auto;
  aspect-ratio: 270/100;
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-header__logo a {
  display: block;
}
@media (any-hover: hover) {
  .p-header__logo a:hover {
    opacity: 0.8;
  }
}

.p-header__nav {
  flex: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.125rem;
}

.p-header__nav-button {
  flex: 1;
  display: flex;
  align-items: center;
}

/***************************************
スマホメニュー
****************************************/
.p-header__sp-menu {
  width: 100%;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
}
@media only screen and (min-width: 768px) {
  .p-header__sp-menu {
    display: none;
  }
}

.p-header__sp-menu-logo {
  width: 9.375rem;
  height: auto;
  aspect-ratio: 150/50;
}
.p-header__sp-menu-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
/*# sourceMappingURL=style.css.map */
