@charset "UTF-8";
/* CSS変数カスタムプロパティ */
:root {
  --header-height: 80px; /* PCでのヘッダーの高さ */
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 65px;
  }
}

/* 色の変数 */
:root {
  /* 背景系 */
  --bg-accent: #77bb8d;
  --bg-base: #f7f4ef;
  --bg-dark: #707070;
  --bg-light: #fff;
  --bg-soft: #ebe0d0;

  /* テキスト系 */
  --tx-primary: #707070;
  --tx-accent: #77bb8d;
  --tx-on-color: #fff;
}

/* 全体的な設定 */
html {
  height: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
  font-size: 62.5%; /* 16px × 0.625 = 10px */
}
body {
  height: 100%;
  height: 100dvh;
}
body,
input,
select,
textarea {
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo",
    sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 2px;
  color: var(--tx-primary);
  background-color: var(--bg-base);
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}
@media screen and (max-width: 600px) {
  body,
  input,
  select,
  textarea {
    font-size: 1.4rem;
  }
}
/* モバイルメニュー開閉時の背面スクロール防止 */
body.is-fixed {
  overflow: hidden;
  height: 100%;
}
/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}
.font-go {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.font-en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
/* リンク */
a {
  text-decoration: none;
}
/* 画像 */
img {
  width: 100%;
  height: auto;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 問い合わせフォームで非表示にするclass */
.wpcf7-spinner {
  display: none !important;
}

/*---------------------*/
/* ヘッダー */
.l-header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
}
.p-header {
  display: block;
  background: var(--bg-base);
}
.p-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 20px 50px 20px 20px;
}
.p-header .header-title {
  max-width: 180px;
  margin-bottom: 0;
  position: relative;
  z-index: 1000;
}
/* h1 css */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.p-nav.header-box {
  display: flex;
  align-items: center;
  background-color: #fff;
  transition:
    right 0.6s,
    opacity 0.6s;
  position: static;
  opacity: 1;
  height: inherit;
  background: transparent;
  width: auto;
  padding: 0;
  column-gap: 80px;
}
.p-nav .nav-inner {
  display: flex;
  height: 100%;
  align-items: flex-end;
  padding-bottom: 10px;
}
.p-nav .nav-list {
  padding-right: 0;
  padding-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 60px;
}
.p-nav .nav-list .illust,
.p-nav .contact-area .illust03 {
  display: none;
}
.p-nav .nav-list span {
  display: none;
}
.p-nav .nav-item {
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
}
.p-nav .nav-item::before {
  content: "";
  position: absolute;
  right: -30px;
  transform: translateX(50%);
  width: 1px;
  height: 14px;
  background-color: var(--bg-dark);
}
.p-nav .nav-item:last-child::before {
  display: none;
}
.p-nav .nav-link {
  font-weight: 600;
  display: block;
  width: 100%;
}
.p-nav .contact-area a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  transition: all 0.2s ease-in;
}
.p-nav .contact-area a:hover {
  color: var(--tx-accent);
}
.p-nav .tel-area a {
  font-size: 2rem;
}
.p-nav .contact-area a::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.p-nav .tel-area a::before {
  background-image: url(../images/common/icon_tel.svg);
}
.p-nav .mail-area a::before {
  background-image: url(../images/common/icon_mail.svg);
}
.p-nav .nav-item.sp-only {
  display: none;
}
.p-hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 100%;
  display: none;
}
.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--bg-accent);
  transition: all 0.4s;
}
.c-hamburger span:nth-of-type(1) {
  top: -4px;
}
.c-hamburger span:nth-of-type(2) {
  top: 1px;
  transform: translateX(-0.45deg);
}
.c-hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}
.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}
@media screen and (max-width: 1024px) {
  .p-header .header-inner {
    padding: 20px;
  }
  .p-nav.header-box {
    column-gap: 40px;
  }
}
@media screen and (max-width: 960px) {
  .p-nav.header-box {
    column-gap: 20px;
  }
  .p-nav .nav-list {
    column-gap: 30px;
  }
  .p-nav .nav-item::before {
    right: -15px;
  }
}
@media screen and (max-width: 767px) {
  .p-header .header-inner {
    padding: 15px;
  }
  .p-header .header-title {
    max-width: 160px;
  }
  .p-nav.header-box {
    position: fixed;
    top: 0;
    right: -100%; /* 画面の外に隠す */
    opacity: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(247, 244, 239, 0.9);
    backdrop-filter: blur(5px);
    flex-direction: column;
    justify-content: center;
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10;
  }
  .p-nav.header-box.is-active {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    opacity: 1;
  }
  .p-nav .nav-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
    align-items: flex-start;
    height: initial;
  }
  .p-nav .nav-list {
    padding: 20px;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
  }
  .p-nav .nav-list .illust {
    display: block;
    position: absolute;
    height: auto;
    animation: Yuraruri 3s ease-in-out infinite;
  }
  .p-nav .nav-list .illust01 {
    top: 70px;
    left: 0px;
    width: 50px;
    transform-origin: bottom center;
  }
  .p-nav .nav-list .illust02 {
    top: 0px;
    right: 0px;
    width: 50px;
    animation-duration: 3.5s;
    animation-delay: -1.3s;
    transform-origin: top center;
  }
  .p-nav .nav-link {
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    column-gap: 10px;
    margin-bottom: 10px;
    color: var(--tx-accent);
  }
  .p-nav .nav-item::before {
    display: none;
  }
  .p-nav .nav-item.sp-only {
    display: block;
  }
  .p-nav .nav-link span {
    display: block;
    font-size: 1.5rem;
  }
  .p-nav .contact-area {
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    position: relative;
    max-width: 300px;
    width: 100%;
  }
  .p-nav .contact-area .illust03 {
    position: absolute;
    display: block;
    position: absolute;
    height: auto;
    bottom: 20px;
    right: -10px;
    width: 60px;
    animation: Yuraruri 4s ease-in-out infinite -2.6s;
    transform-origin: bottom center;
  }
  .p-nav .mail-area a {
    font-size: 1.8rem;
  }
  .p-hamburger {
    display: block;
  }
  @keyframes Yuraruri {
    0%,
    100% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(7deg);
    }
  }
}
@media screen and (max-width: 430px) {
  .p-nav .nav-link {
    font-size: 1.6rem;
  }
  .p-nav .mail-area a {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

/*---------------------*/
/* フッター */
footer {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: var(--bg-accent);
}
footer .grid-area {
  display: grid;
  grid-template-columns: 1fr 340px;
  column-gap: 50px;
  margin-bottom: 80px;
}
footer .info-area {
  padding-top: 20px;
}
.footer-nav {
  color: var(--tx-on-color);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
footer .logo-area {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--bg-light);
  margin-bottom: 30px;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  column-gap: 60px;
}
.footer-nav li {
  display: flex;
  align-items: center;
  position: relative;
}
.footer-nav li::before {
  content: "";
  position: absolute;
  right: -30px;
  width: 1px;
  height: 14px;
  background-color: #fff;
}
.footer-nav li:last-child::before {
  display: none;
}
.footer-nav li a {
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
footer .text-area {
  text-align: left;
  color: var(--tx-on-color);
}
footer .text-box {
  font-weight: 400;
  margin-bottom: 10px;
}
footer .footer-tel a {
  font-size: 2.6rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
footer .footer-tel a::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url(../images/common/icon_tel-wihte.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
footer small {
  font-size: 1.4rem;
  color: var(--tx-on-color);
}
@media screen and (max-width: 1280px) {
  footer .section-inner {
    padding: 0 40px;
  }
  footer .grid-area {
    display: grid;
    grid-template-columns: 1fr 35%;
    column-gap: 30px;
  }
  footer .map-area iframe {
    height: 350px;
  }
  footer .logo-area {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  footer .logo-area img {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  footer {
    padding-top: 40px;
  }
  footer .grid-area {
    margin-bottom: 40px;
    grid-template-columns: 1fr 43%;
  }
  footer .map-area iframe {
    height: 300px;
  }
  footer .info-area {
    padding-top: 0px;
  }
  footer .text-area p {
    font-size: 1.4rem;
  }
  footer .footer-tel a {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  footer .grid-area {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 20px;
  }
  footer .info-area {
    padding: 0;
  }
  .footer-nav {
    margin-bottom: 10px;
  }
  .footer-nav li a {
    font-size: 1.5rem;
  }
  footer .logo-area img {
    max-width: 240px;
  }
  footer .map-area iframe {
    height: 250px;
  }
  footer small {
    font-size: 1.2rem;
    line-height: 1;
  }
}
@media screen and (max-width: 430px) {
  footer {
    padding-top: 30px;
  }
  footer .section-inner {
    padding: 0 20px;
  }
  footer .grid-area {
    margin-bottom: 20px;
  }
  footer .logo-area {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  footer .logo-area img {
    max-width: 200px;
  }
  footer .text-area p {
    font-size: 1.2rem;
  }
}

/*---------------------*/
/* 全体共通 */
.section {
  padding-top: 100px;
  margin-bottom: 100px;
}
.section-bg {
  background-color: var(--bg-accent);
  padding-top: 60px;
  padding-bottom: 80px;
}
.page-top {
  margin-top: var(--header-height);
}
.section-wide {
  max-width: 1400px;
  margin: 0 auto;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1450px) {
  .section-wide {
    margin: 0 20px;
  }
}
@media screen and (max-width: 1300px) {
  .section-inner {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1280px) {
  .section {
    padding-top: 80px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .section {
    padding-top: 60px;
    margin-bottom: 60px;
  }
  .section-bg {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 600px) {
  .section {
    padding-top: 40px;
    margin-bottom: 40px;
  }
  .section-bg {
    padding-bottom: 40px;
  }
  .section-inner {
    padding: 0 15px;
  }
}

/*---------------------*/
/* 共通レイアウト1 */
.layout01 {
  position: relative;
  overflow: hidden;
}
.layout01::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  background-image: url(../images/top/service01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}
.layout01 .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.layout-inner {
  display: flex;
  justify-content: flex-start;
  min-height: 450px;
  align-items: center;
}
.layout-inner .text-box {
  width: 50%;
  padding-right: 60px;
}
/* --- 左右逆バージョン --- */
.layout-reverse::before {
  left: auto;
  left: 0;
  width: 50vw;
}
.layout-reverse .layout-inner {
  justify-content: flex-end;
}
.layout-reverse .layout-inner .text-box {
  padding-right: 0;
  padding-left: 60px;
}

/*---------------------*/
/* 共通大項目タイトル */
.ttl-area {
  display: block;
  margin-bottom: 70px;
  text-align: center;
  color: var(--tx-accent);
}
.main-ttl {
  font-size: 3.8rem;
  display: block;
}
.sub-ttl {
  display: block;
  font-size: 1.6rem;
}
.section-bg .main-ttl {
  color: var(--tx-on-color);
}
.ttl-left {
  text-align: left;
}
/* 共通中項目タイトル */
.content-ttl {
  display: block;
  margin-bottom: 50px;
  text-align: left;
}
.content-main-ttl {
  font-size: 3.2rem;
  display: block;
}
.content-sub-ttl {
  display: block;
}
/* 共通中項目タイトル2 */
.small-ttl {
  font-size: 2.6rem;
  margin-bottom: 30px;
}
/* 共通小項目タイトル */
.item-ttl {
  display: block;
  margin-bottom: 10px;
  text-align: left;
}
.item-main-ttl {
  font-size: 1.8rem;
  display: block;
  color: var(--tx-accent);
}
@media screen and (max-width: 1280px) {
  .ttl-area {
    margin-bottom: 40px;
  }
  .small-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .main-ttl {
    font-size: 3.4rem;
  }
  .content-main-ttl {
    font-size: 2.8rem;
    line-height: 1.4;
  }
  .small-ttl {
    font-size: 2.2rem;
  }
  .sub-ttl {
    display: block;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 960px) {
  .content-main-ttl {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .ttl-area {
    margin-bottom: 30px;
  }
  .content-ttl {
    margin-bottom: 30px;
  }
  .main-ttl {
    font-size: 3.2rem;
  }
  .small-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .main-ttl {
    font-size: 3rem;
  }
  .content-main-ttl {
    font-size: 3rem;
  }
}
@media screen and (max-width: 430px) {
  .ttl-area {
    margin-bottom: 20px;
  }
  .sub-ttl {
    font-size: 1.5rem;
  }
  .main-ttl {
    letter-spacing: 1px;
    font-size: 2.6rem;
  }
  .content-main-ttl {
    font-size: 2.4rem;
  }
  .small-ttl {
    font-size: 1.8rem;
  }
}

/*---------------------*/
/* 共通改行 */
.br-1280,
.br-1024,
.br-960,
.br-767,
.br-600,
.br-500,
.br-430 {
  display: none;
}
@media screen and (max-width: 1280px) {
  .br-1280 {
    display: block;
  }
  .br-none1280 {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .br-1024 {
    display: block;
  }
  .br-none1024 {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .br-960 {
    display: block;
  }
  .br-none960 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .br-767 {
    display: block;
  }
  .br-none767 {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .br-600 {
    display: block;
  }
  .br-none600 {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .br-500 {
    display: block;
  }
  .br-none500 {
    display: none;
  }
}
@media screen and (max-width: 430px) {
  .br-430 {
    display: block;
  }
  .br-none430 {
    display: none;
  }
}

/*---------------------*/
/* 共通ボタン */
.c-btn-area {
  text-align: center;
}
.c-btn {
  position: relative;
  display: flex;
  background-color: var(--bg-accent);
  align-items: center;
  justify-content: left;
  text-align: left;
  width: 200px;
  border-radius: 50px;
  text-decoration: none;
  padding: 10px 10px 10px 40px;
  margin: 0 auto;
  color: var(--tx-on-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.c-btn-area p {
  position: relative;
  display: inline-block;
  margin: 0;
}
.c-btn::after,
.c-btn-area p::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  background-color: var(--bg-light);
  transition: transform 0.3s ease;
  z-index: 10;
  pointer-events: none;
}
.c-btn::before,
.c-btn-area p::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--bg-light);
  border-right: 2px solid var(--bg-light);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
  z-index: 10;
  pointer-events: none;
}
.c-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.c-btn:hover::after {
  transform: translateY(-50%);
}
.c-btn-area p:has(.c-btn:hover)::after {
  transform: translateY(calc(-50% - 3px));
}

.c-btn:hover::before {
  transform: translateY(-50%) rotate(45deg);
}
.c-btn-area p:has(.c-btn:hover)::before {
  transform: translateY(calc(-50% - 3px)) rotate(45deg);
}

/*---------------------*/
/* news 共通 */
.cs-news {
  margin-bottom: 0;
}
.cs-news .ttl-area {
  margin-bottom: 30px;
}
.cs-news .news-content {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding: 30px;
  background: #fcfbf7;
  max-width: 1200px;
  margin: 0 auto;
}
.cs-news .news-content .news-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 24px;
}
.cs-news .item {
  width: calc((100% - 24px * 2) / 3);
  flex-shrink: 0;
}
.cs-news .item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.cs-news .img-area {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #737373;
  overflow: hidden;
  margin-bottom: 10px;
}
.cs-news .img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cs-news .item a:hover .img-area img {
  transform: scale(1.05);
}
.cs-news time {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.cs-news .news-ttl {
  font-weight: bold;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.cs-news .item a:hover .news-ttl,
.cs-news .item a:hover time {
  color: var(--tx-accent);
}
@media screen and (max-width: 1024px) {
  .cs-news .news-content .news-inner {
    gap: 20px 24px;
  }
}
@media screen and (max-width: 767px) {
  .cs-news .news-content {
    padding: 15px;
    row-gap: 0;
  }
  .cs-news .news-content .news-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 10px;
  }
  .cs-news .item {
    width: calc((100% - 10px * 2) / 3);
  }
}
@media screen and (max-width: 600px) {
  .cs-news .news-content .news-inner {
    flex-direction: column;
    gap: 10px;
  }
  .cs-contact .content {
    column-gap: 10px;
    padding: 15px 0;
  }
  .cs-contact .tel-area .link,
  .cs-contact .mail-area .link {
    gap: 5px;
    font-size: 1.3rem;
    padding: 7px;
  }
  .cs-contact .tel-area .link::before,
  .cs-contact .mail-area .link::before {
    width: 18px;
    height: 18px;
  }
  .cs-news .item {
    width: 100%;
  }
  .cs-news .item a {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .cs-news .img-area {
    width: 35%;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .cs-news .item a div:not(.img-area) {
    flex: 1;
  }
  .cs-news time {
    margin-bottom: 0px;
  }
  .cs-news .news-ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 430px) {
  .cs-news .news-content {
    row-gap: 20px;
  }
  .cs-news .news-content .news-inner {
    gap: 15px;
  }
  .cs-news time {
    font-size: 1.2rem;
  }
  .cs-news .news-ttl {
    font-size: 1.4rem;
  }
}

/* news 共通パンくずリスト */
.breadcrumb {
  margin-bottom: 40px;
  padding: 0 20px;
}
.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb li {
  font-size: 1.4rem;
  color: var(--tx-on-color);
  display: flex;
}
.breadcrumb li:not(:last-child)::after {
  content: " > ";
  margin: 0 10px;
}
@media screen and (max-width: 600px) {
  .breadcrumb li {
    font-size: 1.3rem;
  }
}

/* news 共通ページネーション */
.news-pagination {
  margin-top: 50px;
  text-align: center;
}
.news-pagination .nav-links {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.news-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--bg-dark);
  background-color: var(--bg-base);
  color: var(--bg-dark);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current {
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--bg-light);
}
.news-pagination .page-numbers.current {
  cursor: default;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-bottom: 20px;
    padding: 0;
  }
}

/* news トップ */
.top-news .c-btn-area {
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .top-news .c-btn-area {
    margin: 30px auto 2cap;
  }
}
@media screen and (max-width: 430px) {
  .top-news .c-btn-area {
    margin: 10px auto;
  }
}

/* newslist 一覧 */
.news-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-newslist.cs-news time {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-newslist.cs-news .news-content {
    gap: 15px 10px;
  }
  .p-newslist.cs-news .img-area {
    margin-bottom: 5px;
  }
}

/* news個別ページ  */
.p-single-news .news-content {
  max-width: 800px;
}
.p-single-news .item {
  width: 100%;
}
.p-single-news .img-area {
  margin-bottom: 20px;
  width: 100%;
}
.p-single-news time {
  font-size: 1.8rem;
}
.p-single-news .news-ttl {
  font-size: 2rem;
  margin-bottom: 20px;
}
.p-single-news .wp-block-paragraph {
  line-height: 2;
}
.p-single-news .wp-block-image {
  padding: 30px 20px;
}
.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
  gap: 20px;
  width: 100%;
}
.nav-previous,
.nav-next {
  width: 50%;
}
.nav-next {
  text-align: right;
}
.nav-previous a,
.nav-next a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--bg-dark);
  color: var(--tx-primary);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.nav-previous a:hover,
.nav-next a:hover {
  background-color: var(--bg-accent);
  color: var(--tx-on-color);
}
@media screen and (max-width: 767px) {
  .p-single-news .news-content {
    row-gap: 30px;
  }
}
@media screen and (max-width: 430px) {
  .nav-previous a,
  .nav-next a {
    padding: 10px;
    font-size: 1.2rem;
  }
}

/*---------------------*/
/* お問い合わせ contact */
.cs-contact .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
}
.cs-contact .tel-area .img-wrap,
.cs-contact .mail-area .img-wrap {
  margin-bottom: 50px;
}
.cs-contact .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.cs-contact .tel-area .link,
.cs-contact .mail-area .link {
  font-size: 2.2rem;
  font-weight: 600;
  padding: 20px;
  text-align: center;
  border-radius: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition:
    background-color 0.3s,
    color 0.3s;
}
.cs-contact .tel-area .link {
  border: 3px solid var(--bg-accent);
  color: var(--bg-accent);
}
.cs-contact .mail-area .link {
  border: 3px solid var(--bg-dark);
  color: inherit;
}
.cs-contact .tel-area .link::before,
.cs-contact .mail-area .link::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 50px;
  height: 50px;
  transition: filter 0s;
}
.cs-contact .tel-area .link::before {
  background-image: url(../images/common/icon_tel-green.svg);
}
.cs-contact .mail-area .link::before {
  background-image: url(../images/common/icon_mail.svg);
}
.cs-contact .tel-area .link:hover {
  background-color: var(--bg-accent);
  color: #fff;
}
.cs-contact .mail-area .link:hover {
  background-color: var(--bg-dark);
  color: #fff;
}
.cs-contact .tel-area .link:hover::before,
.cs-contact .mail-area .link:hover::before {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 1280px) {
  .cs-contact .content {
    max-width: 1000px;
    margin: 0 auto;
    column-gap: 20px; /* 横の隙間を縮小 */
  }
  .cs-contact .tel-area .img-wrap,
  .cs-contact .mail-area .img-wrap {
    margin-bottom: 30px; /* 写真とボタンの間を縮小 */
  }
  .cs-contact .tel-area .link::before,
  .cs-contact .mail-area .link::before {
    width: 40px;
    height: 40px;
  }
  .cs-contact .tel-area .link,
  .cs-contact .mail-area .link {
    font-size: 2rem;
    padding: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .cs-contact .content {
    max-width: 800px;
  }
  .cs-contact .tel-area .link,
  .cs-contact .mail-area .link {
    font-size: 1.8rem;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .cs-contact .tel-area .img-wrap,
  .cs-contact .mail-area .img-wrap {
    margin-bottom: 20px;
  }
  .cs-contact .tel-area .link,
  .cs-contact .mail-area .link {
    font-size: 1.6rem;
    padding: 10px;
  }
  .cs-contact .tel-area .link::before,
  .cs-contact .mail-area .link::before {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 600px) {
  .cs-contact .content {
    column-gap: 10px;
  }
  .cs-contact .tel-area .link,
  .cs-contact .mail-area .link {
    gap: 5px;
    font-size: 1.3rem;
    padding: 7px;
  }
  .cs-contact .tel-area .link::before,
  .cs-contact .mail-area .link::before {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 430px) {
  .cs-contact .content {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    max-width: 80%;
  }
}

/*---------------------*/
/* アニメーション */
/* 下からスライドイン */
.slideInBottom {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s,
    transform 1s;
}
.slideInBottom.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* テキストアンダーライン */
.t-li {
  background-image: linear-gradient(#77bb8d, #77bb8d);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 0 3px;
  transition: background-size 0.3s;
  padding-bottom: 5px;
}
.t-li:hover {
  background-position: bottom center;
  background-size: 100% 3px;
}

/* テキストアンダーライン　白色 */
.t-li2 {
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 0 2px;
  transition: background-size 0.3s;
  padding-bottom: 5px;
}

.t-li2:hover {
  background-position: bottom center;
  background-size: 100% 3px;
}

/* 画像をぼかして徐々に表示 */
.fadeBlurIn {
  opacity: 0;
  filter: blur(5px);
  transition:
    opacity 1.5s ease-out,
    filter 1.5s ease-out;
  will-change: opacity, filter;
}
.fadeBlurIn.is-show {
  opacity: 1;
  filter: blur(0);
}

/* イラスト動き */
.fuwa1 {
  animation: Fuwafuwa 3s ease-in-out infinite;
}
.piko1 {
  animation: Pikopiko 2s ease-in-out infinite -1.1s;
  transform-origin: bottom center;
}
.fuwa2 {
  animation: Fuwafuwa 3.5s ease-in-out infinite -2.5s;
}
.piko2 {
  animation: Pikopiko 2.6s ease-in-out infinite -0.8s;
  transform-origin: bottom center;
}

@keyframes Fuwafuwa {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes Pikopiko {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(6deg);
  }
}
