@charset "UTF-8";

/* 全体的な設定 */
html {
    height: 100%;
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
    visibility: hidden;
  }
  html.wf-active {
    visibility: visible;
  }
body {
    height: 100%;
    height: 100dvh;
}
body,
input,
select,
textarea {
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 3px;
    color: #000;
    background-color: #fff;
    margin: 0;
    padding: 0;
    }
/* フォント */
  .font-c {
    font-family: century-gothic, sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .font-cb {
    font-family: century-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
  }

/* 見出し */
    h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    }
/* リンク */
    a {
    text-decoration: none;
    }
/* 画像 */
    img {
    width: 100%;
    height: auto;
    }
    *,
    *::before,
    *::after {
    box-sizing: border-box;
    }

/* フォント読み込みのためのアニメーション */
/* ローディング中のスタイル */
.wf-loading #contents {
	opacity: 0;
	transform: translateY(20px);
}
/* フォント読み込み完了後のスタイル */
.wf-active #contents {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
/* フォント読み込み失敗時のスタイル */
.wf-inactive #contents {
	opacity: 1;
}
@media screen and (max-width: 540px) {
body,
input,
select,
textarea {
    font-size: 14px;
}
}

/* 問い合わせフォームで削除するclasss */
.wpcf7-spinner {
  display: none !important;
}

/* CSS変数カスタムプロパティ */
:root {
  --header-height: 84px; /* PCでのヘッダーの高さ */
}
@media screen and (max-width: 960px) {
:root {
  --header-height: 73px;
}
}
@media screen and (max-width: 540px) {
:root {
  --header-height: 70px;
}
}

/*---------------------*/
/* ヘッダー */
.l-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: #fff;
}
.header-title-a {
  position: absolute;
  top: 0;
  left: 0;
  padding: 15px;
  z-index: 100;
}
.header-title {
  max-width: 300px;
  margin-bottom: 0;
}
.p-hamburger {
  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: black;
  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);
}
.header-box {
  display: flex;
  z-index: 10;
  position: static;
  top: 0;
  right: auto;
  align-items: center;
  justify-content: center;
  height: inherit;
  background: transparent;
  opacity: 1;
  transition: top 0.6s, right 0.6s, opacity 0.6s;
  background-color: #fff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: inherit;
  padding: 20px 10px;
  max-width: 1200px;
  margin: 0 auto;
}
.p-hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 100%;
}
.header-box.is-active {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 1;
}
.nav-inner {
  display: flex;
}
.nav-list {
  padding-right: 0;
  padding-left: 0;
  display: flex;
  column-gap: 60px;
}
.nav-item {
  position: relative;
  width: auto;
}
.nav-list li:last-child .nav-link::after {
  display: none;
}
.nav-link {
  color: #000;
  display: block;
  width: 100%;
}
.nav-link::after {
  content: '';
  display: block;
  width: 1px;
  height: 15px;
  background-color: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); 
  right: -30px;
}
.nav-link span {
  display: none;
}
@media screen and (max-width: 1300px) {
  .header-inner {
    padding: 20px;
  }
  .nav-list {
    column-gap: 50px;
  }
  .nav-link::after {
    right: -25px;
  }
}
@media screen and (max-width: 960px) {
  .header-title {
    max-width: 240px;
  }
  .nav-list {
    font-size: 14px;
    column-gap: 30px;
  }
  .nav-link::after {
    right: -15px;
  }
}
@media screen and (max-width: 767px) {
  .p-hamburger {
    display: block;
  }
  .nav-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
  }
  .header-box {
    position: absolute;
    opacity: 0; 
    height: 100vh;
    width: 100%;
    right: -100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
  .nav-list {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .nav-item {
      border-bottom: 1px solid #dfdfdf;
      position: relative;
  }
  .nav-link {
    font-size: 18px;
    padding: 10px 50px 10px 20px;
    display: block;
  }
  .nav-link::after {
    display: none;
  }
  .nav-link::before {
    content: "";
    background-image: url('../images/common/menu-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 25px; 
    height: 25px;
    position: absolute;
    right: 5px; 
    top: 50%;
    transform: translateY(-50%);
}
  .nav-link span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #F38200;
  }
}
@media screen and (max-width: 540px) {
  .header-title {
    max-width: 220px;
  }
  .nav-link {
    font-size: 16px;
  }
}


/*---------------------*/
/* フッター */
footer {
  text-align: center;
  padding-bottom: 20px;
}
footer .section-wrapper {
    background-color: #FFFCCC;
    padding-top: 40px;
}
footer .logo-area {
  max-width: 340px;
  margin: 0 auto 30px;
}
.footer-nav {
  padding-bottom: 40px;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  column-gap: 60px;
  margin-bottom: 60px;
}
.footer-nav ul li {
  position: relative;
}
.footer-nav ul li::after {
  content: '';
  display: block;
  width: 1px;
  height: 15px;
  background-color: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); 
  right: -30px;
}
.footer-nav ul li:last-child::after {
  display: none;
}
.footer-nav ul li a {
  font-size: 16px;
  padding-bottom: 4px;
}
.footer-nav .info-area {
  display: flex;
  justify-content: center;
  column-gap: 40px;
}
footer .copy-area {
  background-color: #fff;
  padding-top: 8px;
  line-height: 1;
}
footer small {
  font-size: 14px;
}
footer small br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer-nav .info-area {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav ul {
      column-gap: 30px;
      margin-bottom: 20px;
  }
  .footer-nav ul li::after {
    right: -15px;
  }
  .footer-nav ul li a,.footer-nav .info-area p {
      font-size: 14px;
  }
footer small {
    font-size: 10px;
  }
}
@media screen and (max-width: 540px) {
  footer .section-wrapper {
    padding-top: 30px;
  }
  footer .logo-area {
    max-width: 260px;
    margin: 0 auto 20px;
  }
  .footer-nav {
    padding-bottom: 30px;
  }
  .footer-nav ul {
    flex-direction: column;
    row-gap: 5px;
  }
  .footer-nav ul li::after {
    display: none;
  }
  .footer-nav .info-area p {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  footer small br {
    display: block;
  }
}



/*---------------------*/
/* 全体共通 レイアウト */
.page-top {
  margin-top: var(--header-height);
}
.section {
  padding: 70px 0;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width:1300px) {
  .section-inner {
    padding: 0 30px;
  }
}
@media screen and (max-width:540px) {
  .section {
    padding: 50px 0;
  }
  .section-inner {
    padding: 0 20px;
  }
}

/* 全体共通 タイトル */
  .section .title-area {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}
  .section .title-area::before {
    content: "";
    position: absolute;
    top: 70%;
    left: -30px;
    right: -10px;
    height: 80%;
    width: 250px;
    background-color: #FFFCCC;
    z-index: -1;
    transform: translateY(-50%);
  }
  .section .title-area .t-en {
    font-family: century-gothic, sans-serif;
    font-weight: bold;
    font-size: 42px;
    line-height: 1;
    font-style: normal;
    color: #F38200;
    margin-bottom: 5px;
  }
  .section .title-area .t-ja {
    font-weight: 400;
    line-height: 1;
  }
  .section .title-area2 {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }
  .section .title-area2 .t-ja {
    font-weight: bold;
    font-size: 38px;
    line-height: 1;
    color: #F38200;
    margin-bottom: 5px;
  }
  .section .title-area2 .t-en {
    font-family: century-gothic, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    font-style: normal;
    color: #000;
  }
@media screen and (max-width:1024px) {
    .section .title-area .t-en {
      font-size: 38px;
    }
    .section .title-area .t-ja {
      font-size: 14px;
    }
    .section .title-area2 .t-ja {
      font-size: 32px;
    }
    .section .title-area2 .t-en {
      font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .section .title-area {
      margin-bottom: 30px;
    }
}

/* 全体共通 ボタン */
.section .btn {
  display: flex;
  font-size: 18px;
  color: #fff;
  background-color: #E43C00;
  padding: 6px 10px;
  max-width: 250px;
  position: relative;
  margin: 0 auto;
  justify-content: center;
  border-radius: 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section .btn:hover {
    transform: translateY(-2px); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}
.section .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 2px;
  background-color: #ffffff;
  transform-origin: 100% 50%;
  transform: translateY(calc(-50% + 0.5px)) rotate(60deg); 
}
.section .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px; 
  width: 12px;
  height: 2px;
  background-color: #ffffff;
  transform-origin: 100% 50%;
  transform: translateY(calc(-50% - 0.5px)) rotate(-60deg); 
}

@media screen and (max-width: 1024px) {
  .section .btn {
      font-size: 16px;
  }
}
@media screen and (max-width: 390px) {
  .section .btn {
    width: 220px;
    padding: 4px 10px;
  }
}

/* 全体共通 見積もりフォーム */
#com-form {
  padding: 30px 0 70px;
  overflow: hidden;
}
#com-form .content {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 30px;
  background-color: #F38200;
  border-radius: 20px;
  padding: 25px;
}
#com-form .img-box {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
#com-form .img-area {
  height: 255px;
  border-radius: 20px 0 0 0;
  background-image: url(../images/common/form-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
#com-form .img-area::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -25px;
  background-image: url(../images/common/arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 630px;
  height: 100px;
}
#com-form .text-area {
  background-color: #fff;
  border-radius: 0 0 0 20px;
  padding: 20px;
}
.form-box {
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 10px;
  height: 100%;
}
.contact-form {
  width: 100%;
}
.contact-form-inner {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.form-item {
  display: grid;
  grid-template-columns: 25% 72%;
  column-gap: 3%;
}
.form-item dt p {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  text-align: left;
  line-height: 1.2;
  color: #000;
}
.form-item dt label {
  font-size: 18px;
  font-weight: initial;
}
.form-item dt span {
  font-weight: initial;
  color: #fff;
  background-color: #F38200;
  border-radius: 10px;
  font-size: 14px;
  padding: 3px 12px;
}
.form-item dd {
  display: flex;
  row-gap: 15px;
  align-items: center;
  color: #000;
}
.form-item dt p,.form-item dd p {
  width: 100%;
  margin-bottom: 0;
  overflow-wrap: break-word;
}
.form-checkbox-group {
  font-size: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form-checkbox-group label {
  padding-right: 50px;
  line-height: 1;
}
input[type="checkbox"] {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #9B9B9B;
  border-radius: 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type="checkbox"]:checked:before {
  position: absolute;
  top: 3px;
  left: 6px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}
.form-control {
  border: 1px solid #9B9B9B;
  border-radius: 2px;
  padding: 10px;
  width: 100%;
  line-height: 1.2;
  font-size: 16px;
  text-align: left;
}
.form-control:focus,
.form-textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
#com-form .btn-area {
  padding-top: 25px;
}
#com-form .btn-area p {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
#com-form .btn-area br {
  display: none;
}
#com-form .btn {
  max-width: initial;
  min-width: 250px;
  text-align: center;
}
.wpcf7-form {
    height: 100%;
}
.wpcf7-list-item {
  margin: 0 !important;
}
.wp-block-image {
  padding: 20px 0;
}

@media screen and (max-width: 1300px) {
#com-form .img-area::before {
  width: 50vw;
  height: 9vw;
}
}
@media screen and (max-width: 1024px) {
  #com-form .form-item dt label, #com-form .form-checkbox-group label {
    font-size: 16px;
  }
  .form-item dt p,.form-item dd p {
    font-size: 16px;
  }
  .form-item dt span {
    font-size: 12px;
  }
  #com-form .img-area {
      height: 230px;
  }
  #com-form .text-area {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
#com-form .content {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
#com-form .contact-form {
  width: 100%;
}
#com-form .img-box {
  position: relative;
}
#com-form .img-box::before {
  content: "";
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/common/arrow2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100px;
}
#com-form .img-area::before {
  display: none;
}
}
@media screen and (max-width: 600px) {
  #com-form .form-box {
    padding: 20px;
  }
  #com-form .form-item dt label, #com-form .form-checkbox-group label,#com-form .form-control {
    font-size: 14px;
  }
  .form-item dt p,.form-item dd p {
    font-size: 14px;
  }
  #com-form .form-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }
  #com-form .form-item dt p {
    flex-direction: row;
    column-gap: 10px;
  }
  #com-form .form-item dd {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
#com-form {
  padding: 30px 0 50px;
}
}
@media screen and (max-width: 390px) {
    #com-form .content {
      row-gap: 70px;
    }
    #com-form .img-box {
      row-gap: 10px;
    }
    #com-form .img-box::before {
      bottom: -80px;
      height: 90px;
    }
    #com-form .img-area {
      height: 180px;
    }
    #com-form .btn {
      min-width: initial;
      width: 200px;
    }
}

/* 全体共通 電話バナー */
#tel-banner {
  padding: 0;
}
#tel-banner .wrapper {
  background-color: #E43C00;
  padding: 20px 0;
  border-radius: 20px;
  position: relative;
  transition: opacity .3s ease;
}
#tel-banner .wrapper:hover {
  opacity: .9;
}
#tel-banner .wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 100px;
    background-image: url(../images/common/contact_img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 200px;
    height: 200px;
}
#tel-banner .content {
  text-align: center;
  display: flex;
  flex-direction: column;
  width: max-content;
  margin: 0 auto;
  padding-left: 100px;
}
#tel-banner .font-text {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  width: max-content;
}
#tel-banner .tel-number {
  color:  #FFF500;
  font-size: 72px;
  font-weight: bold;
  line-height: 1;
  width: max-content;
  position: relative;
  padding-left: 76px;
}
#tel-banner .tel-number::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    background-image: url(../images/common/icon_tel.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 60px;
}
@media screen and (max-width: 1300px) {
  #tel-banner .wrapper::after {
    left: 40px;
  }
}
@media screen and (max-width: 1024px) {
  #tel-banner .wrapper::after {
    width: 160px;
    height: 163px;
  }
  #tel-banner .font-text {
    font-size: 26px;
  }
  #tel-banner .tel-number {
    font-size: 55px;
    padding-left: 60px;
  }
  #tel-banner .tel-number::before {
    width: 46px;
    height: 46px;
  }
}
 @media screen and (max-width: 850px) {
    #tel-banner .wrapper::after {
        width: 140px;
        height: 143px;
    }
    #tel-banner .font-text {
        font-size: 22px;
    }
    #tel-banner .tel-number {
        font-size: 50px;
    }
  }
 @media screen and (max-width: 767px) {
    #tel-banner .wrapper {
      padding: 15px 0;
    }
    #tel-banner .wrapper::after {
        left: 20px;
        width: 120px;
        height: 123px;
    }
    #tel-banner .tel-number {
        font-size: 45px;
        padding-left: 50px;
    }
    #tel-banner .tel-number::before {
        width: 38px;
        height: 38px;
    }
 }
  @media screen and (max-width: 650px) {
    #tel-banner .wrapper::after {
        left: 40px;
        width: 100px;
        height: 103px;
    }
    #tel-banner .font-text {
        font-size: 17px;
    }
    #tel-banner .tel-number {
        font-size: 36px;
        padding-left: 34px;
    }
    #tel-banner .tel-number::before {
        width: 26px;
        height: 26px;
    }
  }
  @media screen and (max-width: 580px) {
    #tel-banner .wrapper::after {
        left: 20px;
    }
  }
  @media screen and (max-width: 520px) {
    #tel-banner .wrapper::after {
        width: 85px;
        height: 87px;
    }
    #tel-banner .font-text {
      font-size: 13px;
    }
    #tel-banner .tel-number {
      font-size: 6.5vw;
      padding-left: 30px;
    }
    #tel-banner .tel-number::before {
        width: 22px;
        height: 22px;
    }
  }
  @media screen and (max-width: 430px) {
    #tel-banner .wrapper::after {
        width: 68px;
        height: 68px;
        left: 11px;
    }
    #tel-banner .content {
      padding-left: 58px;
    }
    #tel-banner .font-text {
        font-size: 12px;
        letter-spacing: 1.8px;
    }
    #tel-banner .tel-number {
        font-size: 5.5vw;
        padding-left: 50px;
    }
    #tel-banner .tel-number::before {
        width: 18px;
        height: 18px;
        top: 2px;
        left: 25px;
  }
}



/* 全体共通 リンクバナー */
#link-banner ul {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 30px;
  padding:  0 20px;
}
#link-banner ul li {
    background-image: url(../images/common/link_bk.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#link-banner ul li:hover {
    transform: translateY(-3px); 
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); 
}
#link-banner ul li a {
    padding: 30px 10px;
    width: 100%;
    height: 100%;
    display: block;
}
#link-banner h3 {
  font-size: 32px;
  margin-bottom: 10px;
}
#link-banner .btn-area {
  text-align: center;
}
#link-banner .btn:hover {
  transform: translateY(0); 
  box-shadow: none;
}
@media screen and (max-width: 1300px) {
  #link-banner h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
    #link-banner ul {
      padding: 0;
      column-gap: 20px;
    }
    #link-banner ul li a {
      padding: 24px 10px
    }
    #link-banner h3 {
        font-size: 22px;
    }
}
@media screen and (max-width: 767px) {
    #link-banner ul {
      display: flex;
      flex-direction: column;
      row-gap: 20px;
      max-width: 400px;
      margin: 0 auto;
    }
}
@media screen and (max-width: 540px) {
    #link-banner ul {
      max-width: 100%;
    }
    #link-banner ul li a {
      padding: 20px 10px;
    }
    #link-banner h3 {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
}

/* 全体共通 お知らせ */
/* お知らせ 共通　パンくず・ページネーション */
.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: 14px;
    display: flex;
}
.breadcrumb li:not(:last-child)::after {
    content: ' > ';
    margin: 0 10px;
}
.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 10px;
}
.page-numbers li {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}
.page-numbers li a:hover {
    background-color: #F38200;
    color: #fff;
    font-weight: bold;
}
.page-numbers.current {
    background-color: #F38200;
    color: #fff;
    font-weight: bold;
    pointer-events: none;
}
.page-numbers.prev,
.page-numbers.next {
    font-size: 20px;
}
@media screen and (max-width: 960px) {
    .page-link {
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .breadcrumb {
        margin-bottom: 20px;
        padding: 0 10px;
    }
    .page-link {
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
}
@media screen and (max-width: 540px) {
    .page-link {
        width: 26px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
    }
    .pagination {
      margin-top: 30px;
    }
}
@media screen and (max-width: 390px) {
    .breadcrumb li {
        font-size: 12px;
    }
}
/* お知らせ 一覧ページ　page-news */
.news .news-list {
    border: 5px solid #E43C00;
    border-radius: 20px;
    padding: 50px 70px;
}
.news .news-meta {
    margin-bottom: 15px;
}
.news .news-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}
.news .news-item a {
    width: 100%;
}
.news .news-date {
    font-size: 16px;
    font-weight: bold;
    color: #6E6F6E;
    width: 100%;
}
.news .news-text {
    font-size: 18px;
    margin-bottom: 0;    
    line-height: 1.5;
    padding-bottom: 20px;
    border-bottom: 2px solid #E43C00;
    width: 100%;
}
@media screen and (max-width: 1024px) {
  .news .news-list {
      padding: 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  .news .news-list {
      padding: 30px 20px;
  }
  .news .news-meta {
    margin-bottom: 5px;
  }
  .news .news-date {
    font-size: 14px;
  }
  .news .news-text {
      font-size: 16px;
  }
}
@media screen and (max-width: 540px) {
  .news .news-list {
    border: 4px solid #E43C00;
  }
  .news .news-item {
    margin-bottom: 10px;
  }
  .news .news-meta {
    margin-bottom: 0px;
  }
  .news .news-date {
    font-size: 12px;
  }
  .news .news-text {
    font-size: 14px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 390px) {
  .news .news-list {
      padding: 20px 12px;
      border: 3px solid #E43C00;
  }
}

/* お知らせ 個別ページ　page-single */
.single .news-meta {
    margin-bottom: 20px;
}
.single .news-date {
    font-size: 18px;
}
.single .news-text {
    font-size: 28px;
    margin-bottom: 40px;
}
.single .content-area {
    width: 100%;
}
.single .content-area p {
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .single .news-meta {
    margin-bottom: 10px;
  }
  .single .news-date {
    font-size: 16px;
  }
  .single .news-text {
      font-size: 24px;
      margin-bottom: 30px;
  } 
}
@media screen and (max-width: 540px) {
    .single .news-date {
        font-size: 14px;
    }  
    .single .news-text {
      font-size: 20px;
      margin-bottom: 20px;
    }
    .single .content-area p {
      margin-bottom: 10px;
    }
}
@media screen and (max-width: 390px) {
    .single .news-text {
      font-size: 18px;
    }
}

/* リキャプチャの注釈 */
.recaptcha-wrapper p {font-size:14px;}
.recaptcha-wrapper p a {color: #F38200;}
.recaptcha-br{display: none;}
.recaptcha-br2 {display:none;}
.recaptcha-wrapper{text-align:center; margin-top: 20px; color:#000; line-height:2;}
@media (max-width: 767px) {
.recaptcha-wrapper p {font-size:10px;}
.recaptcha-br{display: block}
}
@media (max-width: 420px) {
.recaptcha-br2 {display:block;}
}

/*---------------------*/
/* アニメーション */
/* 下からスライドイン */
.slideInBottom {
  opacity: 0;
  transform: translateY(70px);
  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);
}

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


/* 下からスライドインアップ */
/* 親要素に 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: 0.8s;
    animation-timing-function: ease-out;
}
@keyframes slide-in-up-effect {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}