@charset "UTF-8";
/* CSS変数カスタムプロパティ */
:root {
  --header-height: 5px;
}

/* 色の変数 */
:root {
  /* 背景系 */
  --bg-primary: #fab920;
  --bg-secondary: #fff7e4;
  --bg-third: #e1c480;
  --bg-light: #fff;
  --bg-dark: #767676;

  /* テキスト系 */
  --text-primary: #767676;
  --text-accent: #fab920;
  --text-light: #fff;

  /* アクセント・装飾 */
  --color-green: #4dc764;
}

/* 全体的な設定 */
html {
  height: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
  font-size: 62.5%; /* 16px × 0.625 = 10px */
  /* visibility: hidden; */
}
/* html.wf-active {
    visibility: visible;
  } */
body,
input,
select,
textarea {
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo",
    sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 2px;
  color: var(--text-primary);
  background-color: var(--bg-white);
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}
/* モバイルメニュー開閉時の背面スクロール防止 */
body.is-fixed {
  overflow: hidden;
  height: 100%;
}
/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  letter-spacing: 0.2em;
}
/* リンク */
a {
  text-decoration: none;
}
/* 画像 */
img {
  width: 100%;
  height: auto;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
.font-en {
  font-family:
    "Josefin Sans", "Futura", "Century Gothic", "Avant Garde", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
/* 問い合わせフォームで非表示にするclass */
.wpcf7-spinner {
  display: none !important;
}

/*---------------------*/
/* ページ全体内側外枠 */
.page-allwrapper {
  height: 100%;
  background-color: var(--bg-primary);
  margin: 0;
  padding: 40px 40px 30px;
  box-sizing: border-box;
}
/* ページ全体内側白枠 */
.page-container {
  background-color: var(--bg-light);
  border-radius: 30px;
  min-height: calc(100vh - 80px);
  box-sizing: border-box;
  padding-top: 30px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1280px) {
  .page-allwrapper {
    padding: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .page-allwrapper {
    padding: 20px;
  }
  .page-container {
    padding-top: 20px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 960px) {
  .page-allwrapper {
    padding: 10px;
  }
  .page-container {
    padding-top: 12px;
    border-radius: 15px;
  }
}

/*---------------------*/
/* ヘッダーフッター共通 p-infobox */
.p-infobox {
  display: flex;
  column-gap: 60px;
  align-items: center;
  justify-content: flex-end;
}
.p-infobox .time-area {
  background-color: var(--bg-secondary);
  border-radius: 20px;
  padding: 3px 30px;
}
.p-infobox .ts-area {
  display: flex;
  column-gap: 30px;
  align-items: center;
}
.p-infobox .number {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s ease-in;
}
.p-infobox .number:hover {
  color: var(--text-accent);
}
.p-infobox .number span {
  font-size: 1.6rem;
}
.p-infobox .sns-area {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding-bottom: 10px;
}
.p-infobox .sns-area a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1350px) {
  .p-infobox {
    column-gap: 20px;
  }
  .p-infobox .time-area {
    padding: 3px 20px;
  }
  .p-infobox .ts-area {
    column-gap: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .p-infobox {
    column-gap: 12px;
  }
  .p-infobox .time-area {
    padding: 3px 15px;
  }
  .p-infobox .ts-area {
    column-gap: 10px;
  }
}
@media screen and (max-width: 1150px) {
  .p-infobox {
    column-gap: 6px;
  }
  .p-infobox .time-area {
    letter-spacing: 0.8px;
    font-size: 1.3rem;
    padding: 3px 10px;
  }
  .p-infobox .number {
    letter-spacing: 1px;
  }
  .p-infobox .ts-area {
    column-gap: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .p-infobox .number {
    font-size: 2.2rem;
  }
  .p-infobox .sns-area {
    padding-bottom: 5px;
  }
  .p-infobox .time-area {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-infobox .time-area {
    font-size: 1.4rem;
    padding: 3px 15px;
  }
}
@media screen and (max-width: 600px) {
  .p-infobox .time-area {
    font-size: 1.3rem;
    text-align: center;
  }
}

/* ヘッダー */
.l-header {
  z-index: 999;
  position: sticky;
  top: 0;
  width: 100%;
}
.p-header {
  display: block;
  background: #fff;
}
.p-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 10px 0;
}
.p-header .header-title-a {
  position: relative;
  z-index: 1000;
}
.p-header .header-title {
  max-width: 250px;
  margin-bottom: 0;
}
.p-nav.header-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background-color: #fff;
  transition:
    right 0.6s,
    opacity 0.6s;
  position: static;
  opacity: 1;
  height: inherit;
  background: transparent;
  width: auto;
  padding: 0;
  row-gap: 6px;
}
.p-nav .nav-inner {
  display: flex;
  width: 100%;
}
.p-nav .nav-list {
  padding-right: 0;
  padding-left: 0;
  display: flex;
  column-gap: 60px;
  justify-content: space-between;
  width: 100%;
}
.p-nav .nav-item {
  position: relative;
  width: auto;
}
.p-nav .nav-link {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease-in;
}
.p-nav .nav-link:hover {
  color: var(--text-accent);
}
.p-nav .nav-link span {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-accent);
}
.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-primary);
  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: 1440px) {
  .p-nav .nav-list {
    column-gap: 40px;
  }
}
@media screen and (max-width: 1280px) {
  .p-header .header-title {
    max-width: 190px;
  }
  .p-nav .nav-list {
    column-gap: 10px;
  }
  .p-nav .nav-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-header .header-inner {
    padding: 6px 0;
  }
}
@media screen and (max-width: 960px) {
  .p-header .header-inner {
    padding: 10px 0;
  }
  .p-nav.header-box {
    position: fixed;
    top: 0;
    right: -100%;
    opacity: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10;
  }
  .p-nav.header-box.is-active {
    right: 0;
    opacity: 1;
  }
  .p-nav .nav-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
  }
  .p-nav .nav-list {
    row-gap: 20px;
    max-width: 500px;
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-nav .nav-link {
    font-size: 2rem;
  }
  .p-nav .nav-link span {
    font-size: 1.6rem;
  }
  .p-infobox {
    flex-direction: column;
    row-gap: 10px;
  }
  .p-hamburger {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .p-header .header-title {
    max-width: 160px;
  }
  .p-nav .nav-list {
    padding: 0 15px;
  }
  .p-nav .nav-link {
    font-size: 1.6rem;
  }
  .p-nav .nav-link span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 430px) {
  .p-nav .nav-list {
    grid-template-columns: 1fr;
    row-gap: 15px;
    margin-bottom: 10px;
  }
  .p-nav .nav-link {
    font-size: 1.5rem;
  }
}

/*---------------------*/
/* フッター */
footer {
  text-align: center;
  padding-bottom: 30px;
}
footer .box {
  display: flex;
  justify-content: space-between;
}
footer .logo-area {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
footer .logo-area img {
  max-width: 280px;
}
footer .link-area {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.footer-nav ul {
  display: flex;
  justify-content: flex-end;
  column-gap: 60px;
}
.footer-nav ul li {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  transition: all 0.2s ease-in;
}
.footer-nav li:hover {
  color: var(--text-accent);
}
.footer-nav ul li span {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-accent);
}
.copy-area .section-inner {
  text-align: center;
  padding-top: 15px;
}
.copy-area .privacy-link {
  color: var(--text-light);
  font-size: 1.2rem;
  line-height: 1;
}
.copy-area small {
  font-size: 1rem;
  color: var(--text-light);
}
@media screen and (max-width: 1600px) {
  footer .link-area {
    row-gap: 20px;
  }
  .footer-nav ul {
    column-gap: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .footer-nav ul {
    column-gap: 20px;
  }
}
@media screen and (max-width: 1280px) {
  footer .logo-area {
    row-gap: 6px;
  }
  footer .logo-area img {
    max-width: 210px;
  }
  footer .address p {
    line-height: 1.4;
  }
  .footer-nav ul {
    column-gap: 15px;
  }
  .footer-nav ul li {
    font-size: 1.4rem;
  }
  .footer-nav ul li span {
    line-height: 0.2px;
  }
  footer .p-infobox .time-area {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1150px) {
  .footer-nav ul {
    column-gap: 13px;
  }
}
@media screen and (max-width: 1024px) {
  footer .box {
    flex-direction: column;
    row-gap: 20px;
  }
  .footer-nav ul {
    justify-content: center;
  }
  footer .p-infobox {
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
  }
  footer .br-1280 {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 450px;
    margin: 0 auto;
    column-gap: 10px;
    row-gap: 15px;
  }
  footer .p-infobox .time-area {
    font-size: 1.4rem;
    padding: 3px 15px;
  }
}
@media screen and (max-width: 500px) {
  footer {
    padding-bottom: 20px;
  }
  .footer-nav ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .footer-nav ul li span {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  .p-infobox .time-area {
    padding: 3px 20px;
  }
}
@media screen and (max-width: 430px) {
  footer .full-inner {
    padding: 0 10px;
  }
  .footer-nav ul li {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }
  footer .p-infobox .time-area {
    font-size: 1.3rem;
  }
}

/*---------------------*/
/* 全体共通 */
.page-top {
  margin-top: var(--header-height);
}
.section {
  padding-top: 80px;
  margin-bottom: 80px;
}
.color-section {
  background-color: var(--bg-secondary);
  margin-bottom: 0 !important;
  padding-bottom: 80px;
}
.full-inner {
  padding: 0 80px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.w-content {
  background-color: var(--bg-light);
  padding: 60px;
  border-radius: 50px;
}
@media screen and (max-width: 1700px) {
  .full-inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1300px) {
  .section {
    padding-top: 60px;
    margin-bottom: 60px;
  }
  .color-section {
    padding-bottom: 60px;
  }
  .section-inner {
    padding: 0 20px;
  }
  .full-inner {
    padding: 0 20px;
  }
  .w-content {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 1300px) {
  .w-content {
    border-radius: 20px;
  }
}
@media screen and (max-width: 600px) {
  .section {
    padding-top: 50px;
    margin-bottom: 50px;
  }
  .color-section {
    padding-bottom: 50px;
  }
  .section-inner {
    padding: 0 15px;
  }
  .full-inner {
    padding: 0 15px;
  }
  .w-content {
    padding: 20px 15px;
  }
}

/* タイトル */
.ttl-area:has(.en-bigttl) {
  margin-bottom: 30px;
}
.r-ttl-area {
  margin-bottom: 40px;
}
.ttl-area .ttl-inner {
  margin-bottom: 30px;
}
.ttl-area .en-bigttl {
  font-size: 5.2rem;
  line-height: 1;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 1px;
  color: var(--text-accent);
}
.ttl-area .main-ttl {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}
.r-ttl-area .main-ttl {
  font-size: 3.2rem;
  color: var(--bg-primary);
  margin-bottom: 10px;
}
.ttl-area .en-ttl {
  font-size: 1.4rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 300;
}
.r-ttl-area .en-ttl {
  text-align: center;
  font-weight: 400;
}
.ttl-area .sub-ttl {
  font-size: 3.2rem;
  line-height: 2;
}
.line-txt {
  position: relative;
  display: inline;
  font-size: 2rem;
  font-weight: 400;
  padding: 0 10px;
  margin-bottom: 10px;
}
.line-txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.5em;
  background-color: #fcdc8f;
  border-radius: 9999px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .ttl-area .ttl-inner {
    margin-bottom: 20px;
  }
  .ttl-area:has(.en-bigttl) {
    margin-bottom: 20px;
  }
  .ttl-area .en-bigttl {
    font-size: 4rem;
    margin-bottom: 5px;
  }
  .ttl-area .sub-ttl {
    font-size: 2.8rem;
    line-height: 1.8;
  }
  .ttl-area .en-ttl {
    margin-bottom: 5px;
  }
  .r-ttl-area {
    margin-bottom: 20px;
  }
  .r-ttl-area .main-ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .ttl-area .sub-ttl {
    font-size: 2.4rem;
    line-height: 1.6;
  }
  .r-ttl-area .main-ttl {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 430px) {
  .ttl-area .en-bigttl {
    font-size: 3.6rem;
    margin-bottom: 5px;
  }
  .ttl-area .sub-ttl {
    font-size: 2rem;
  }
}

/*---------------------*/
/* 共通改行 */
.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: 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;
  }
}

/*---------------------*/
/* 共通ボタン */
.p-btnarea {
  text-align: center;
  margin: 30px 0;
}
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-primary);
  width: 200px;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px;
  line-height: 1;
  transition: opacity 0.3s;
  color: var(--text-light);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    opacity 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
.c-btn.font-en {
  font-size: 2rem;
}
.c-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/*---------------------*/
/* ニューストップ・一覧共通 cs-news */
.cs-news .news-body {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cs-news .news-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.cs-news .news-list li a {
  display: flex;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  border-bottom: 3px dotted var(--bg-primary);
}
.cs-news .news-list time {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  width: 100px;
  flex-shrink: 0;
}
.cs-news .news-list .year {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.4rem;
  color: var(--text-accent);
  font-weight: 400;
  margin-bottom: 5px;
}
.cs-news .news-list .date {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.2rem;
  color: var(--text-accent);
  font-weight: 400;
  letter-spacing: 0.4px;
}
.cs-news .news-list .title {
  font-size: 1.8rem;
  margin: 0;
  padding-left: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 1280px) {
  .cs-news .news-list li a {
    padding: 15px 0;
  }
}
@media screen and (max-width: 767px) {
  .cs-news .news-body {
    width: 100%;
  }
  .cs-news .news-list time {
    width: 80px;
  }
  .cs-news .news-list .title {
    font-size: 1.6rem;
    padding-left: 10px;
  }
}
@media screen and (max-width: 600px) {
  .cs-news .news-list .date {
    font-size: 2rem;
  }
  .cs-news .news-list .title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 430px) {
  .cs-news .news-list li a {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .cs-news .news-list time {
    width: 100%;
    align-items: center;
    flex-direction: row;
    column-gap: 10px;
  }
  .cs-news .news-list .year {
    margin-bottom: 0;
  }
  .cs-news .news-list .title {
    padding-left: 0;
    display: block;
    width: 100%;
  }
}

/* ニュース共通パンくずリスト breadcrumb */
.breadcrumb {
  background-color: var(--bg-light);
  font-size: 1.4rem;
  width: 100%;
  margin-bottom: 30px;
}
.breadcrumb a {
  color: var(--text-accent);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .sep {
  margin: 0 10px;
  color: #ccc;
}
.breadcrumb .current {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 1.2rem;
  }
}

/*---------------------*/
/* ニューストップ p-top-news */
.p-top-news {
  background-color: #fff;
  margin-bottom: 0;
}
.p-top-news .news-container {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  gap: 60px;
}
.p-top-news .ttl-area {
  width: 20%;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .p-top-news .news-container {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news .news-container {
    display: flex;
    flex-direction: column;
  }
  .p-top-news .cs-news .news-body {
    width: 100%;
  }
  .p-top-news .news-list {
    margin: 0;
  }
  .p-top-news .ttl-area {
    width: 100%;
    text-align: center;
  }
  .p-top-news .p-btnarea {
    margin: 30px auto;
  }
}

/*---------------------*/
/* ニュース一覧 page-news */
.page-news .news-container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-news .news-body {
  width: 100%;
}
.page-news .news-list {
  margin-bottom: 0;
}

/* ページネーション */
.pagination {
  margin: 40px auto 0;
  text-align: center;
}
.pagination .nav-links {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 30px;
  height: 40px;
  padding: 0 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: var(--bg-light);
  box-sizing: border-box;
}
.pagination a.page-numbers:hover {
  background-color: var(--bg-secondary);
  border-color: var(--bg-primary);
}
.pagination .page-numbers.current {
  background-color: var(--bg-primary);
  border-color: var(--bg-primary);
  color: var(--text-light);
  cursor: default;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  padding: 0 10px;
}
.pagination .page-numbers.dots {
  border: none;
  background: transparent;
  min-width: auto;
  height: auto;
  color: var(--bg-primary);
  cursor: default;
  padding: 0;
}
@media screen and (max-width: 430px) {
  .pagination .page-numbers {
    min-width: 20px;
    height: 34px;
    font-size: 1.2rem;
  }
  .pagination .page-numbers.prev,
  .pagination .page-numbers.next {
    padding: 0 5px;
  }
}

/*---------------------*/
/* ニュース個別記事 single-news */
.single-news .news-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.single-news .news-body {
  width: 100%;
}
.single-news .news-list time {
  flex-direction: row;
  width: auto;
  column-gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.single-news .news-list .year {
  margin-bottom: 0px;
}
.single-news .news-list .title {
  font-weight: 600;
  font-size: 2.2rem;
}
.single-news .thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f5f5f5;
}
.single-news .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

/* ニュース前後ボタン */
.entry-content {
  width: 100%;
  margin-top: 40px;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}
.entry-content p {
  margin-bottom: 24px;
}
.entry-content h2 {
  font-size: 2.2rem;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-primary);
}
.post-navigation {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
  gap: 20px;
}
.post-navigation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 48px;
  padding: 0 20px;
  border: 1px solid var(--bg-primary);
  border-radius: 4px;
  color: var(--bg-primary);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: #fff;
}
.post-navigation a:hover {
  background-color: var(--bg-primary);
  color: var(--text-light);
}
.post-navigation .nav-previous a::before {
  content: "«";
  margin-right: 8px;
}
.post-navigation .nav-next a::after {
  content: "»";
  margin-left: 8px;
}
.post-navigation .nav-next {
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .single-news {
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .entry-content {
    margin-top: 30px;
    font-size: 1.5rem;
  }
  .entry-content h2 {
    font-size: 1.8rem;
  }
  .post-navigation {
    margin-top: 40px;
  }
  .post-navigation a {
    min-width: calc(50% - 10px);
    font-size: 1.3rem;
    padding: 0 10px;
    height: 40px;
  }
}

/*---------------------*/
/* 共通お問い合わせ　cs-contact */
.cs-contact {
  position: relative;
}
.cs-contact .pr-inner {
  display: grid;
  grid-template-columns: 130px auto;
  column-gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}
.illust-box img {
  display: block;
  animation: gentleSway 3s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes gentleSway {
  0%,
  100% {
    transform: rotate(0deg) translateX(0);
  }
  50% {
    transform: rotate(3deg) translateX(2px);
  }
}
.cs-contact .pr-ttl {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--bg-primary);
}
.cs-contact .pr-text {
  display: flex;
  align-items: center;
}
.cs-contact .full-inner {
  position: relative;
  top: -5px;
}
.cs-contact .fuwa-inner {
  position: relative;
}
.cs-contact .fuwa-wrap {
  position: absolute;
  top: -95px;
  right: 50px;
  z-index: -1;
  animation: pyokoMotion 10s infinite ease-in-out;
  width: 90px;
  height: auto;
  display: block;
}
@keyframes pyokoMotion {
  0%,
  20% {
    transform: translateY(110px) scale(0.9);
  }
  27% {
    transform: translateY(-8px) rotate(-3deg);
  }
  30% {
    transform: translateY(4px) rotate(2deg);
  }
  33%,
  60% {
    transform: translateY(0) rotate(0deg);
  }
  75%,
  100% {
    transform: translateY(110px) scale(0.9);
  }
}
.cs-contact .frame {
  background-color: var(--bg-secondary);
  border-radius: 50px;
  padding: 40px 0;
  position: relative;
  z-index: 0;
}
.cs-contact .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-image:
    linear-gradient(to bottom, #767676 30%, transparent 30%),
    linear-gradient(to bottom, #767676 30%, transparent 30%);
  background-size: 3px 12px;
  background-repeat: repeat-y;
  background-position:
    calc(33.333% + 4px) 0,
    calc(66.666% - 4px) 0;
}
.cs-contact .content li {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.cs-contact .con-ttl {
  display: inline-flex;
  align-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.cs-contact .con-ttl::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.cs-contact .tel-area .con-ttl::before {
  background-image: url(..//images/common/icon-tel.svg);
}
.cs-contact .line-area .con-ttl::before {
  background-image: url(..//images/common/icon-line.svg);
}
.cs-contact .mail-area .con-ttl::before {
  background-image: url(..//images/common/icon-mail.svg);
}
.cs-contact .number {
  position: relative;
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1;
  padding: 0 10px;
  margin-bottom: 10px;
}
.cs-contact .number::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 16px;
  background-color: #fcd580;
  border-radius: 10px;
}
.cs-contact .p-btnarea {
  margin: 0;
}
.cs-contact .c-btn {
  width: 240px;
  padding: 15px 10px;
  font-size: 1.4rem;
  background-color: var(--bg-light);
  margin-top: 10px;
}
.cs-contact .line-area .c-btn {
  border: 2px solid var(--color-green);
  color: var(--color-green);
}
.cs-contact .mail-area .c-btn {
  border: 2px solid var(--bg-primary);
  color: var(--text-accent);
}
@media screen and (max-width: 960px) {
  .cs-contact .content {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    background-image:
      linear-gradient(to right, #767676 30%, transparent 30%),
      linear-gradient(to right, #767676 30%, transparent 30%);
    background-size: 12px 3px;
    background-repeat: repeat-x;
    background-position:
      0 calc(33.333% + 10px),
      0 calc(66.666% + 16px);
    max-width: 350px;
    margin: 0 auto;
  }
  .cs-contact .fuwa-inner {
    max-width: 600px;
    margin: 0 auto;
  }
  .cs-contact .fuwa-wrap {
    top: -70px;
    right: 20px;
    width: 70px;
  }
  .cs-contact .frame {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 30px 0;
  }
  .cs-contact .con-ttl {
    margin-bottom: 10px;
  }
  .cs-contact .c-btn {
    margin-top: 0;
    padding: 12px 10px;
  }
}
@media screen and (max-width: 767px) {
  .cs-contact .pr-inner {
    grid-template-columns: 100px auto;
    column-gap: 10px;
    margin: 0 auto;
    justify-content: center;
  }
  .cs-contact .pr-ttl {
    font-size: 2.2rem;
    padding-bottom: 30px;
  }
  .cs-contact .fuwa-wrap {
    width: 60px;
    top: -60px;
  }
}
@media screen and (max-width: 600px) {
  .cs-contact .pr-inner {
    grid-template-columns: 80px auto;
  }
  .cs-contact .pr-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .cs-contact .pr-inner {
    justify-content: left;
    padding-left: 30px;
  }
}
@media screen and (max-width: 430px) {
  .cs-contact .pr-ttl {
    font-size: 4.3vw;
    padding-bottom: 10px;
  }
  .cs-contact .pr-inner {
    padding-left: 10px;
    grid-template-columns: 65px auto;
  }
  .cs-contact .illust-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .cs-contact .fuwa-wrap {
    right: 0;
    top: -54px;
    width: 54px;
  }
  .cs-contact .content {
    background-position:
      0 calc(33.333% + 21px),
      0 calc(66.666% + 21px);
  }
  .cs-contact .number {
    font-size: 3rem;
  }
  .cs-contact .info {
    line-height: 1.4;
  }
  .cs-contact .c-btn {
    width: 220px;
    padding: 12px 5px 10px;
  }
}

/*---------------------*/
/* フッター前のmap */
.cs-map {
  padding-top: 0;
}
.cs-map .map-frame {
  position: relative;
}
.cs-map .map-info {
  position: absolute;
  top: -1px;
  right: 0;
  background-color: var(--bg-light);
  padding: 30px 60px 20px;
  border-radius: 0 0 0 30px;
}
.cs-map .map-info:before {
  position: absolute;
  top: 0;
  left: -18px;
  content: "";
  background: url(../images/common/white-frame-s.svg);
  background-size: cover;
  width: 18px;
  height: 18px;
  z-index: 100;
}
.cs-map .map-info::after {
  position: absolute;
  bottom: -18px;
  right: 0;
  content: "";
  background: url(../images/common/white-frame-s.svg);
  background-size: cover;
  width: 18px;
  height: 18px;
  z-index: 100;
}
.cs-map .map-info p {
  display: flex;
  align-items: center;
  flex-direction: row;
  letter-spacing: 0.6px;
}
.cs-map .icon-car {
  width: 26px;
  height: auto;
  margin-right: 10px;
}
.cs-map iframe {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 1280px) {
  .cs-map .map-info {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .cs-map .map-info {
    padding: 20px;
  }
  .cs-map iframe {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .cs-map .map-info {
    position: relative;
    border-radius: 0;
    padding: 0;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .cs-map .map-info p br {
    display: none;
  }
  .cs-map iframe {
    height: 300px;
  }
  .cs-map .icon-car {
    width: 35px;
    margin-right: 4px;
  }
}
@media screen and (max-width: 430px) {
  .cs-map .map-info p {
    flex-direction: column;
    row-gap: 10px;
  }
  .cs-map iframe {
    height: 250px;
  }
}

/* 共通LINEボタン cs-linebtn*/
.cs-linebtn .wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.cs-linebtn .pre-area {
  display: flex;
  column-gap: 15px;
  align-items: center;
  justify-content: center;
}
.cs-linebtn .deco-text {
  font-size: 2.4rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0 30px;
}
.cs-linebtn .deco-text p {
  margin: 0;
}
.cs-linebtn .deco-text::before,
.cs-linebtn .deco-text::after {
  content: "";
  position: absolute;
  top: 55%;
  width: 40px;
  height: 2px;
  background-color: var(--text-primary);
}
.cs-linebtn .deco-text::before {
  left: -10px;
  transform: translateY(-50%) rotate(65deg);
}
.cs-linebtn .deco-text::after {
  right: -10px;
  transform: translateY(-50%) rotate(-65deg);
}
.cs-linebtn .illust-area {
  max-width: 120px;
  position: relative;
  z-index: -1;
}
.cs-linebtn .btn-link {
  display: block;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.cs-linebtn .btn-area {
  background-color: var(--bg-light);
  border: 5px solid var(--color-green);
  border-radius: 60px;
  display: flex;
  column-gap: 20px;
  padding: 10px;
  justify-content: center;
  align-items: center;
}
.cs-linebtn .btn-text {
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--color-green);
  line-height: 1;
}
@media screen and (max-width: 1280px) {
  .cs-linebtn .deco-text {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .cs-linebtn .illust-area {
    max-width: 100px;
  }
  .cs-linebtn .icon-area {
    width: 60px;
    height: auto;
  }
  .cs-linebtn .btn-text {
    font-size: 2.8rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .cs-linebtn .btn-area {
    max-width: 500px;
    margin: 0 auto;
    column-gap: 10px;
  }
  .cs-linebtn .btn-link {
    margin-top: -20px;
  }
  .cs-linebtn .deco-text::before,
  .cs-linebtn .deco-text::after {
    width: 50px;
  }
  .cs-linebtn .deco-text::before {
    left: -20px;
  }
  .cs-linebtn .deco-text::after {
    right: -20px;
  }
  .cs-linebtn .illust-area {
    max-width: 80px;
  }
  .cs-linebtn .icon-area {
    width: 40px;
  }
  .cs-linebtn .btn-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .cs-linebtn .pre-area {
    column-gap: 10px;
  }
  .cs-linebtn .deco-text {
    font-size: 1.4rem;
  }
  .cs-linebtn .deco-text::before,
  .cs-linebtn .deco-text::after {
    width: 40px;
  }
  .cs-linebtn .deco-text::before {
    left: -10px;
  }
  .cs-linebtn .deco-text::after {
    right: -10px;
  }
  .cs-linebtn .illust-area {
    max-width: 55px;
  }
  .cs-linebtn .btn-area {
    border: 4px solid var(--color-green);
    max-width: 300px;
  }
  .cs-linebtn .btn-link {
    margin-top: -15px;
  }
  .cs-linebtn .btn-text {
    font-size: 1.6rem;
  }
}

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

/* 右からスライドイン */
.slideInRight {
  opacity: 0;
  transform: translateX(70px);
  transition:
    opacity 1s,
    transform 1s;
}
.slideInRight.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* 左からスライドイン */
.slideInLeft {
  opacity: 0;
  transform: translateX(-70px);
  transition:
    opacity 1s,
    transform 1s;
}
.slideInLeft.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* フェードイン・拡大表示 */
.fadeIn {
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 1s,
    transform 1s;
}
.fadeIn.is-show {
  opacity: 1;
  transform: scale(1);
}

/* フェードイン・縮小表示 */
.fadeIn-shrink {
  opacity: 0;
  transform: scale(1.2);
  transition:
    opacity 2.5s,
    transform 1s;
}
.fadeIn-shrink.is-show {
  opacity: 1;
  transform: scale(1);
}

/* 下からスライドインアップ */
/* 親要素に slide-triggerをつける */
.slide-trigger {
  overflow: hidden;
}
.slide-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: both;
}
.is-show .slide-in-up {
  animation-name: slide-in-up-effect;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}
@keyframes slide-in-up-effect {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 画像をぼかして徐々に表示 */
.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);
}

/* ホバーすると少し上がる　hoverup */
.hoverup {
  transition: transform 0.3s ease-in;
}
.hoverup:hover {
  transform: translateY(-3px);
}
