@charset "UTF-8";
/* CSS Document */
/*======= VIEWPOINT setting =======*/
body {
  background-color: white;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  height: 100%;
  /* 最下部の余白を消す */
  margin: 0 auto;
  overflow-x: hidden;
}

/*======= smooth scroll =======*/
html {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  height: 100%;
  /* 最下部の余白を消す */
}

@media screen and (max-width: 1024px) {
  html {
    scroll-behavior: smooth;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
  }
}
/*======= FONT setting =======*/
html {
  font-size: 62.5%;
}

body {
  line-height: 1;
  margin: 0 auto;
  overflow-x: hidden;
  /*スクロールバーを隠す*/
}

p,
span,
div,
strong,
li,
dt,
dd,
b,
small,
a,
button {
  line-height: 1.8;
  font-size: 1.6rem;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 2.6rem;
  line-height: 1.4;
  /*font-feature-settings: "palt" 1;*/
  color: black;
}

/* ====== 段落の設定 ===== */
p {
  font-size: 1.7rem;
  text-align: justify;
  letter-spacing: 0.02em;
  line-height: 1.8;
  padding: 0 0 20px;
  max-width: 860px;
  color: #333333 !important;
  box-sizing: border-box;
}

/* ====== テキストの色の設定 ===== */
p,
dt,
dd,
li,
a {
  color: #333333;
}

/*======= 中央寄せ =======*/
.center {
  text-align: center;
  margin: 0 auto 10px;
}

/*======= position: absoluteで上下左右/中央寄せ =======*/
/* ====== poppins ===== */
.poppins-01 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-02 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-03 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-04 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* ====== 共通色の設定 ===== */
.red {
  color: #b71c26;
  font-size: 1em;
  display: inline-block;
  padding: 0 1px;
  line-height: inherit;
}

.white {
  color: white;
}

.bk_red {
  background: #b71c26;
}

/* ===== 電話番号===== */
.tel a {
  pointer-events: none;
}
@media (max-width: 768px) {
  .tel a {
    /* スマホサイズでクリックを有効化 */
  }
  .tel a .tel-link {
    pointer-events: auto;
  }
}

/* ===== header ===== */
.PC-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  height: auto;
  background: transparent;
  box-sizing: border-box;
  transform: translateY(0);
  /* 初期位置 */
  transition: transform 0.3s ease;
  /* スムーズなアニメーション */
  z-index: 999;
}
.PC-header.hidden {
  transform: translateY(-100%);
  /* 上に隠れる */
}
.PC-header__inner {
  max-width: 1600px;
  /*ヘッダーの背景*/
  display: flex;
  justify-content: space-between;
  background: white;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  box-sizing: border-box;
  position: relative;
  filter: drop-shadow(0 1px 1px #dddddd);
  /*ヘッダーの高さ*/
  height: 80px;
}
.PC-header__inner h1 {
  width: 220px;
  display: flex;
  align-items: center;
	justify-content:center;
}
.PC-header__inner h1 img {
  width: 85%;
  padding: 7px 0 0;
}
.PC-header__inner nav {
  display: flex;
  width: calc(100% - 420px);
  justify-content: center;
}
.PC-header__inner nav ul#nav_menu {
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  align-items: center;
}
.PC-header__inner nav ul#nav_menu li {
  line-height: 0.5;
  text-align: center;
  padding: 0 5% 0 0;
  letter-spacing: 0.5px;
  font-size: 17px;
  height: 100%;
  display: flex;
  align-items: center;
  /* 左右に伸びる～～*/
}
@media screen and (max-width: 1259px) {
  .PC-header__inner nav ul#nav_menu li {
    padding: 0 4% 0 0;
  }
	
  .PC-header__inner nav > ul#nav_menu > li:first-child {
    display:none;
  }
}
.PC-header__inner nav ul#nav_menu li:hover {
  cursor: pointer;
}
.PC-header__inner nav ul#nav_menu li a,
.PC-header__inner nav ul#nav_menu li span {
  font-size: 17px;
  font-weight: 500;
  position: relative;
  padding-bottom: 8px;
  color: black;
}
.PC-header__inner nav ul#nav_menu li a.active:before,
.PC-header__inner nav ul#nav_menu li span.active:before {
  position: absolute;
  display: block;
  content: "";
  width: 2em;
  height: 3px;
  border-radius: 10px;
  background: #ccc;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.PC-header__inner nav ul#nav_menu li a:hover,
.PC-header__inner nav ul#nav_menu li span:hover {
  opacity: 1;
}
.PC-header__inner nav ul#nav_menu li a:hover:before,
.PC-header__inner nav ul#nav_menu li span:hover:before {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  /* 初期状態は幅0 */
  height: 3px;
  border-radius: 10px;
  background: #b71c26;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: expand 0.2s ease-out forwards;
  /* アニメーションを追加 */
}
@keyframes expand {
  0% {
    width: 0;
    /* 最初は幅0 */
  }
  100% {
    width: 2em;
    /* 最終的に幅2em */
  }
}
.PC-header__inner .nav_BTN {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.PC-header__inner .nav_BTN .contact_BTN,
.PC-header__inner .nav_BTN .g-lab_BTN {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 50%;
  aspect-ratio: 1/1;
  background: #b71c26;
}
.PC-header__inner .nav_BTN .contact_BTN a,
.PC-header__inner .nav_BTN .g-lab_BTN a {
  background: #b71c26;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.PC-header__inner .nav_BTN .contact_BTN a img,
.PC-header__inner .nav_BTN .g-lab_BTN a img {
  width: 75px;
}
.PC-header__inner .nav_BTN .contact_BTN {
  background: #3a3a3c;
}
.PC-header__inner .nav_BTN .contact_BTN a {
  background: #3a3a3c;
}

/*======= drop down menu / ドロップダウンメニュー =======*/
.dd_menu {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 50%;
  height: 240px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
  border-top: 1px solid #e9e9e9;
  cursor: initial;
  background: white;
  opacity: 0;
  /* 初期状態で透明にする */
  transition: opacity 0.5s ease;
  /* アニメーションの追加 */
  display: none;
  box-sizing: border-box;
}

ul#nav_menu li:nth-child(3):hover .dd_menu {
  display: block;
  opacity: 1;
  /* 不透明にする */
  transition: opacity 0.5s ease;
}

.dd_menu_inner {
  width: 100%;
  height: 240px;
}
.dd_menu_inner-item {
  width: 100%;
  max-width: 1260px;
  height: 240px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  box-sizing: border-box;
  align-items: center;
  padding: 25px 3% 0;
  gap: 5%;
}
.dd_menu_inner .h3_wrap {
  width: 240px;
  box-sizing: border-box;
}
.dd_menu_inner .h3_wrap h3 {
  text-align: left;
}
.dd_menu_inner ul {
  width: calc(95% - 240px);
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.dd_menu_inner ul:after {
  display: block;
  content: "";
  width: 32%;
}

ul#nav_menu li .dd_menu_inner ul li {
  width: 32%;
  box-sizing: border-box;
  margin: 0 0 15px;
  padding: 0;
  height: auto;
}

ul#nav_menu li .dd_menu ul li span {
  font-size: 15px;
  letter-spacing: 2px;
  padding: 5px 0 0;
}

.dd_menu_inner ul li div {
  position: relative;
  width: 100%;
  aspect-ratio: 3/1.5;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dd_menu ul li div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.dd_menu ul li div div img {
  height: 100px;
  width: auto;
  filter: contrast(300%);
}

ul#nav_menu li .dd_menu ul li a:hover img {
  transform: scale(1.2);
  transition: all 0.5s;
}

.SP-header {
  display: none;
}

@media screen and (max-width: 1024px) {
  .PC-header {
    display: none;
  }
  .SP-header {
    display: block;
  }
}
/*======= SP menu / スマホメニュー =======*/
.SP-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  z-index: 999;
  height: 65px;
  background: white;
  filter: drop-shadow(0 2px 2px #d1d1d1);
}
.SP-header__inner {
  display: flex;
  justify-content: space-between;
  background: white;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  height: 65px;
  position: relative;
  box-sizing: border-box;
}
.SP-header__logo {
  /*ロゴのサイズ*/
  width: 175px;
  z-index: 99;
}
@media screen and (max-width: 280px) {
  .SP-header__logo {
    width: calc(100% - 80px);
  }
}
.SP-header__logo a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.SP-header__logo a img {
  width: 90%;
  padding-left: 10px;
}
.SP-header__nav {
  width: -75%;
  position: relative;
}

.menu-content {
  width: 100%;
  height: 100vh;
  padding: 30px 0 50px;
  margin-bottom: 50px;
  box-sizing: border-box;
  overflow-y: scroll;
  /* メニュー内をスクロール可能に */
  overscroll-behavior-y: contain;
  /* スクロール可能な要素に付与する必要有り */
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: white;
  opacity: 1;
  position: fixed;
  top: -100vh;
  /* 初期状態は画面外 */
  z-index: -1;
  transition: top 1s ease;
  border-top: #f0f0f0 solid 1px;
}
.menu-content::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 567px) {
  .menu-content {
    padding: 10px 0 100px;
  }
}

#menu-btn-check:checked ~ .menu-content {
  top: 65px;
  left: 0;
  /* メニューを画面内に表示 */
}

/* メニューが開いている時、body のスクロールを禁止するクラス */
.body-no-scroll {
  overflow: hidden;
  /* 背景のスクロールを禁止 */
}

.menu-content {
  /*アニメーション設定*/
}
.menu-content h3 {
  text-align: center;
  font-weight: bold;
  font-size: 5rem;
  color: black;
  margin-bottom: 0.5em;
}
.menu-content ul {
  width: 90%;
  margin: 0 auto;
  z-index: 100 !important;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  opacity: 1;
  padding: 10px 20px;
  border: none;
}
@media screen and (max-width: 567px) {
  .menu-content ul {
    width: 100%;
    padding: 10px 0;
  }
}
.menu-content ul:after {
  display: block;
  content: "";
  width: 31.33%;
}
.menu-content ul li {
  text-align: left;
  border-bottom: solid 2px #ececec;
  list-style: none;
  width: 100%;
  padding: 0 0 15px;
  margin: 0 0 15px;
  box-sizing: border-box;
  letter-spacing: 1px;
}
@media screen and (max-width: 567px) {
  .menu-content ul li {
    padding: 0 0 10px;
    margin: 0 0 10px;
  }
}
.menu-content ul li a,
.menu-content ul li span {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  box-sizing: border-box;
  color: black;
  letter-spacing: 0.05em;
  padding: 0 20px;
}
.menu-content ul li a .svg-inline--fa,
.menu-content ul li span .svg-inline--fa {
  color: #b71c26;
}
.menu-content ul li:nth-child(4) a {
  border-bottom: solid 2px #ececec;
  list-style: none;
  padding: 0 20px 15px 35px;
  margin: 0 0 15px;
}
@media screen and (max-width: 567px) {
  .menu-content ul li:nth-child(4) a {
    padding: 0 20px 10px 35px;
    margin: 0 0 10px;
  }
}
.menu-content ul li:nth-child(4) a:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.menu-content ul li:nth-child(4) a div {
  font-size: 1.8rem;
}
.menu-content ul li:nth-child(4) a b {
  display: inline-block;
  transform: scaleX(2);
  padding-right: 10px;
}
.menu-content .BTN_type01-border_none {
  width: 100%;
  margin: 25px auto 25px;
}
.menu-content .BTN_type01-border_none a {
  padding: 15px 0;
  width: 90%;
  margin: 0 auto;
  max-width: 360px;
}
.menu-content__info {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 20px;
}
.menu-content__info .tel a {
  font-size: clamp(1.6rem, 0.6892rem + 6.0721vw, 3.6rem);
  color: #333;
  font-weight: bold;
}
.menu-content__info .tel a small {
  font-size: 0.7em;
  color: #333;
}
.menu-content__info p {
  text-align: center;
  color: #333;
  line-height: 1.6;
  font-size: clamp(1.2rem, 0.9723rem + 1.518vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/*======= ハンバーガーメニュー　ボタン =======*/
.menu-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
  height: 65px;
  width: 65px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background: #b71c26;
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 10px;
}
.menu-btn span:after {
  top: 10px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

/*チェックボックスを隠す*/
#menu-btn-check {
  display: none;
}

/*======= flex setting =======*/
.flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.col_2 {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.col_2 li {
  width: 50%;
}

.col_3 {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.col_3:after {
  display: block;
  content: "";
  width: 32%;
}
.col_3 li {
  width: 32%;
}

.col_4 {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.col_4:after {
  display: block;
  content: "";
  width: 24%;
}
.col_4 li {
  width: 24%;
}

/*======= SLIDE setting =======*/
/* pagination customize */
.swiper-pagination {
  position: absolute;
  bottom: 10px !important;
  z-index: 9 !important;
}

.swiper-pagination-bullet {
  border-radius: inherit;
  margin: 0 5px !important;
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: black;
  opacity: 0.25;
}

.swiper-pagination-bullet-active {
  opacity: 0.85;
}

/*======= Swiper setting =======*/
.swiper {
  width: 100%;
  margin: 0 auto;
  height: auto;
  z-index: 5;
}

.swiper-wrapper {
  position: relative;
}

.swiper-slide {
  width: 100%;
  box-sizing: border-box;
  background: white;
  box-sizing: border-box;
  height: auto;
}

.swiper-slide img {
  width: 100%;
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .swiper {
    width: 100%;
    height: auto;
  }
  .slide_IMAGE {
    width: 100%;
  }
  .swiper img {
    width: 100%;
    height: auto;
  }
}
/* prev-next button customize */
/* 共通スタイル: 基本のボタン位置 */
.swiper-button-prev,
.swiper-button-next,
.swiper-works-button-next,
.swiper-works-button-prev  {
  height: 45px;
  /* ボタン全体の高さ */
  width: 45px;
  /* ボタン全体の幅 */
}

/* ボタン内のアイコンスタイル */
.swiper-button-prev::after,
.swiper-button-next::after,
.swiper-works-button-next::after,
.swiper-works-button-prev::after {
  background-repeat: no-repeat;
  background-size: contain;
  /* アイコンのサイズを適切に調整 */
  content: "";
  display: block;
  height: 45px;
  /* アイコンの高さ */
  width: 45px;
  /* アイコンの幅 */
  margin: auto;
}

/* 左ボタンのアイコン */
.swiper-button-prev::after,
.swiper-works-button-prev::after{
  background-image: url(../img/icons/prev.png);
  /* 指定された画像 */
}

/* 右ボタンのアイコン */
.swiper-button-next::after,
.swiper-works-button-next::after{
  background-image: url(../img/icons/next.png);
  /* 指定された画像 */
}

/*======= 固定ページ / バナーエリアの設定 =======*/
.BN-area {
  width: 100%;
  position: relative;
  margin: 0 auto 100px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #e9e9e9;
  overflow: hidden !important;
  /*&:after {
      @extend %L-R_center;
      top: initial;
      bottom: 0;
      display: block;
      content: "";
      width: 60%;
      position: absolute;
      height: 1px;
      background: #e9e9e9;
      bottom: 0;
  }*/
}
@media screen and (max-width: 1024px) {
  .BN-area {
    margin: 65px auto 75px;
    height: 240px;
  }
}
@media screen and (max-width: 768px) {
  .BN-area {
    margin: 65px auto 50px;
    height: 200px;
  }
}
.BN-area__img-01 {
  position: absolute;
  top: 0;
  left: initial;
  right: -5%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: -1;
  /* アニメーション定義 */
}
@media screen and (max-width: 768px) {
  .BN-area__img-01 {
    right: -10%;
    top: -15%;
    height: 115%;
  }
}
.BN-area__img-01 img {
  height: 100%;
  width: auto;
  animation: revealFromLeft 2s ease forwards;
  /* アニメーションを適用 */
}
@keyframes revealFromLeft {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    /* 左端から徐々に現れる */
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    /* 全体が表示される */
  }
}
.BN-area__img-02 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: -1;
}
.BN-area__img-02 img {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .BN-area__img-02 img {
    width: 35%;
  }
}
.BN-area .h2__type01 {
  font-size: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 0 0 15px;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 99;
  margin-top: 80px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .BN-area .h2__type01 {
    margin-top: 0;
  }
}
.BN-area .h2__type01 div {
  text-align: center;
}
.BN-area .h2__type01 img {
  width: 10px;
  display: inline-block;
  padding-right: 3px;
}
.BN-area .h2__type01 span {
  display: inline-block;
  padding: 0 10px;
  letter-spacing: 2px;
  font-weight: bold;
}
.BN-area .h2__type01 small {
  font-weight: 500;
  display: block;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/*======= footer setting =======*/
.footer {
  overflow: hidden;
  width: 100%;
  /*===1段目 / 問い合わせエリア===*/
  /*===2段目 / ナビエリア===*/
}
.footer__contact {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
  box-sizing: border-box;
  padding: 0;
}
.footer__contact-img {
  width: 40%;
  /*ここで高さ指定*/
  height: 320px;
  box-sizing: border-box;
  display: block;
}
.footer__contact-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1299px) {
  .footer__contact-img {
    width: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .footer__contact-img {
    height: 375px;
  }
}
@media screen and (max-width: 768px) {
  .footer__contact-img {
    width: 100%;
    height: 240px;
  }
}
@media screen and (max-width: 567px) {
  .footer__contact-img {
    height: 180px;
  }
}
.footer__contact-txt {
  background: black;
  width: 60%;
  padding: 3% 2% 3% 3%;
  box-sizing: border-box;
  color: white !important;
  display: flex;
  /*★調整①★*/
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1299px) {
  .footer__contact-txt {
    width: 70%;
  }
}
@media screen and (max-width: 1149px) {
  .footer__contact-txt {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__contact-txt {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .footer__contact-txt {
    /*センターあわせ*/
    width: 100%;
    padding: 25px;
    text-align: center;
  }
}
.footer__contact-txt .contact-info {
  padding-right: 5%;
}
@media screen and (max-width: 1024px) {
  .footer__contact-txt .contact-info {
    padding-right: 2%;
  }
}
@media screen and (max-width: 768px) {
  .footer__contact-txt .contact-info {
    padding-bottom: 20px;
    width: 100%;
  }
}
.footer__contact-txt .contact-info h3.h3__type01_white {
  text-align: left;
  color: white;
}
@media screen and (max-width: 1024px) {
  .footer__contact-txt .contact-info h3.h3__type01_white {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__contact-txt .contact-info h3.h3__type01_white {
    text-align: center;
  }
}
.footer__contact-txt .contact-info h3.h3__type01_white span {
  color: white;
}
.footer__contact-txt .contact-info .tel a {
  color: white;
  font-size: 4.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 10px;
  display: block;
}
@media screen and (max-width: 567px) {
  .footer__contact-txt .contact-info .tel a {
    font-size: clamp(2rem, 0.8148rem + 5.9259vw, 4rem);
  }
}
.footer__contact-txt .contact-info .tel a small {
  /*TEL.*/
  color: white;
  font-size: 1.8rem;
}
.footer__contact-txt .contact-info p {
  color: white !important;
  line-height: 1.4;
  font-size: clamp(1.4rem, 1.3167rem + 0.4444vw, 1.6rem);
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .footer__contact-txt .contact-info p {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.footer__contact .contact_BTN {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  width: 280px;
}
@media screen and (max-width: 1149px) {
  .footer__contact .contact_BTN {
    width: 260px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__contact .contact_BTN {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    padding-top: 35px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer__contact .contact_BTN {
    margin: 0 auto;
    align-items: center;
  }
}
@media screen and (max-width: 567px) {
  .footer__contact .contact_BTN {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
    gap: 25px;
    padding: 15px 0;
  }
}
.footer__contact .contact_BTN .BTN_type03 {
  /*スクエアタイプ（アイコン）*/
  width: 100%;
}
.footer__contact .contact_BTN .BTN_type03 a {
  padding: 15px 20px;
  width: 100%;
  font-size: 17px;
  line-height: 1.5;
}
.footer__contact .contact_BTN .BTN_type03 a img {
  width: 40px;
}
@media screen and (max-width: 1149px) {
  .footer__contact .contact_BTN .BTN_type03 a {
    padding: 15px 10px;
    font-size: 16px;
  }
  .footer__contact .contact_BTN .BTN_type03 a img {
    width: 34px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__contact .contact_BTN .BTN_type03 a {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 567px) {
  .footer__contact .contact_BTN .BTN_type03 a {
    width: 100% !important;
    max-width: 320px;
    margin: 0 auto;
    font-size: 1.7rem;
  }
  .footer__contact .contact_BTN .BTN_type03 a img {
    width: 40px;
  }
}
@media screen and (max-width: 567px) {
  .footer__contact .contact_BTN .BTN_type03 a img {
    display: none;
  }
}
.footer-info {
  width: 100%;
  background: #e0e0e0;
}
.footer-info__inner {
  max-width: 1260px;
  padding-left: 5%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer-info__inner {
    flex-direction: column-reverse;
    padding: 0;
  }
}
.footer-info_logo {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-top-left-radius: 20px;
  /* 左上の角丸 */
  border-top-right-radius: 20px;
  /* 右上の角丸 */
  margin: -25px 0 0;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .footer-info_logo {
    width: 100%;
    min-width: initial;
    margin: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 20px 0;
  }
}
.footer-info_logo a {
  width: 80%;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.footer-info_logo a img {
  width: 70%;
  max-width: 240px;
  margin: 0 auto;
  padding-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .footer-info_logo a img {
    width: 75%;
  }
}
.footer-info_logo div {
  width: -moz-fit-content;
  width: fit-content;
  box-sizing: border-box;
  margin: 0 auto;
  /*
  text-align: right;*/
}
@media screen and (max-width: 1024px) {
  .footer-info_logo div {
    text-align: center;
    padding: 0 15px;
  }
}
.footer-info_logo div p {
  font-weight: 500;
  line-height: 1.4;
  font-size: clamp(1.4rem, 1.3294rem + 0.4706vw, 1.7rem);
}
.footer-info_logo div p:first-child {
  padding-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .footer-info_logo div p:first-child {
    display: block;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .footer-info_logo div p {
    display: inline-block;
    text-align: center;
    padding: 0 15px;
  }
  .footer-info_logo div p br {
    display: none;
  }
}
.footer-info_logo div span {
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer-info_logo div span {
    display: inline-block;
    padding: 0 5px;
  }
}
.footer-info_nav {
  flex-grow: 1;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  padding-top: 25px;
  padding-left: 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .footer-info_nav {
    padding: 0;
  }
}
.footer-info_nav li {
  width: 10em;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .footer-info_nav li {
    display: none;
  }
}
.footer-info_nav li:first-child {
  width: 4em;
  padding-right: 5%;
}
.footer-info_nav li:nth-child(2) {
  width: 6em;
  padding-right: 5%;
}
.footer-info_nav li:nth-child(3) {
  width: 8em;
  padding-right: 5%;
}
.footer-info_nav li:nth-child(3) a {
  padding-bottom: 0;
  font-size: 0.9em;
}
.footer-info_nav li:nth-child(4) {
  width: 6em;
}
.footer-info_nav li:last-child {
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .footer-info_nav li:last-child {
    display: flex;
    justify-content: center;
    text-align: center;
  }
}
.footer-info_nav li a {
  padding-bottom: 8px;
}
.footer-info_nav li .footer-business {
  padding-top: 8px;
}
.footer-info_nav li .footer-business li {
  flex-direction: column;
}
.footer-info_nav li .footer-business li a {
  padding-left: 5px;
}
.footer-info_nav li .footer-business li a span {
  display: inline-block;
  padding-right: 10px;
}
.footer-info_nav li.footer-subnav {
  gap: 40px;
  padding: 15px 0;
}
@media screen and (max-width: 1024px) {
  .footer-info_nav li.footer-subnav {
    gap: 20px;
  }
}
.footer-info_nav li.footer-subnav a {
  font-size: 1.4rem;
}
@media screen and (max-width: 349px) {
  .footer-info_nav li.footer-subnav {
    flex-direction: column;
    gap: 0;
  }
}

p.copyright {
  background: black;
  text-align: center;
  padding: 8px 0;
	color:white!important;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 200;
  letter-spacing: 2px;
  width: 100%;
  max-width: initial;
}

/*スクロールに伴うヘッダーの挙動　追加コード*/
.PC-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.PC-header.hidden {
  top: -80px;
  /* 非表示の位置 */
}
/*rechapcha */
.grecaptcha-badge { visibility: hidden; }

.rechapcha-txt {
	font-size:14px!important;
	color:#666;
	width:90%;
	max-width:600px;
	margin:0 auto;
}
.rechapcha-txt a {
	color:#666;	
}