@charset "UTF-8";
/*============================================
  CSS Document: home.css
  Description: ホームスタイル
============================================*/
.wrap {
  width: 100%;
}

/*-------------------------
index.php（HOME） pc
header
---------------------------*/
#header_outer {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #effcfd;
  color: #333;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  -webkit-box-shadow: 0 0 1px 1px #eee;
          box-shadow: 0 0 1px 1px #eee;
}

.header {
  width: 92%;
  height: 112px;
  padding: 10px 0 15px;
  margin: 0px auto;
  -webkit-transition: height 0.3s ease, padding 0.3s ease;
  transition: height 0.3s ease, padding 0.3s ease;
}

#header_outer.change {
  background-color: #fff;
}

#header_outer.change .header {
  height: 100px;
  padding: 10px 0;
}

.header_inner {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
}

.logo_wrap {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.logo_wrap .logo {
  width: auto;
}
.logo_wrap .logo a {
  width: 99px;
  display: block;
  aspect-ratio: 9/6;
}
.logo_wrap .logo a img {
  width: 100%;
  height: auto;
}

.header_bt_area {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.header_link {
  width: 100%;
  padding-top: 5px;
}

.infolist {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  overflow: hidden;
}

.header_bt a {
  width: auto;
  height: 38px;
  padding: 0 15px 0 43px;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #333;
  background: #fff;
  color: #333;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
}
.header_bt a:hover {
  background-color: #333;
  color: #fff;
}
.header_bt a::before {
  font-family: icomoon;
  font-size: 1.25rem;
  position: absolute;
  top: 50%;
  left: 12%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header_bt a::before:hover::before {
  color: #fff;
}

.phone a::before {
  content: "\e907";
  color: #333;
}

.reserve a::before {
  content: "\e953";
  color: #333;
}

.form a::before {
  content: "\e908";
  color: #333;
  top: 48%;
}

.line a {
  padding-left: 45px;
}
.line a::before {
  content: "\e90d";
  font-size: 1.75rem;
  color: #06c755;
}

.header_bt a:hover::before {
  color: #fff;
}

/* ここからグローバル ナビ */
.nav_wrap {
  width: 100%;
}

#nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

#gnav {
  width: auto;
  margin-bottom: 0px;
  -webkit-transition: margin-bottom 0.3s ease;
  transition: margin-bottom 0.3s ease;
}

.gnav_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  height: 25px;
  gap: 40px;
}
.gnav_list li {
  position: relative;
}
.gnav_list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 1px;
  height: 22px;
  border-radius: 1px;
  background: #333;
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
}
.gnav_list li a {
  font-size: 0.875rem;
  color: #333;
  letter-spacing: 1px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.gnav_list li a:hover {
  color: #666;
}

/*-------------------------
index.php（HOME） pc
visual_wrap
---------------------------*/
.visual_wrap {
  width: 100%;
  margin: 112px auto 96px;
}

/* ここから動画 */
.video_wrap {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  overflow: hidden;
}

.box {
  width: 12%; /* 動画の横幅の1/10 */
  height: calc(100vh - 112px); /* 動画の高さに合わせる */
}

.video_wrap .ofi {
  width: calc(100% - 20px - 12%);
  height: calc(100vh - 112px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 37% 100%;
     object-position: 37% 100%;
  -webkit-transition: object-position 0.2s ease;
  transition: object-position 0.2s ease;
  transition: object-position 0.2s ease, -o-object-position 0.2s ease;
  display: block;
}

/* ここまで動画 */
/* ここからタイピング */
.bunner_text {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 100%;
  height: 100%;
  font-family: "Shippori Mincho", serif;
  font-size: 2.375rem;
  color: #333;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8), 1px 1px 2px rgba(255, 255, 255, 0.8), -1px -1px 2px rgba(255, 255, 255, 0.8), 2px 2px 4px rgba(255, 255, 255, 0.6), -2px -2px 4px rgba(255, 255, 255, 0.6), 0 2px 5px rgba(255, 255, 255, 0.5), 0 -2px 5px rgba(255, 255, 255, 0.5);
}

/* bunner_text の文字アニメーション用 */
.bunner_text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; /* 縦書き */
  line-height: 1.8;
}

.bunner_text .char {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-weight: 800;
  display: inline-block;
  letter-spacing: 0.8px;
}

.bunner_text .char.visible {
  opacity: 1;
}

/* ここまでタイピング */
/* ここからキラキラ */
.side-sparkle {
  position: relative; /* sparklesの絶対位置用 */
  background: -webkit-gradient(linear, left top, right top, color-stop(60%, #d6fcfc), to(rgba(214, 252, 252, 0.2)));
  background: linear-gradient(90deg, #d6fcfc 60%, rgba(214, 252, 252, 0.2));
}

/*  白いキラキラ（十字型） */
.sparkle-white {
  position: absolute;
  width: 10px;
  height: 18px;
  background: transparent;
  -webkit-animation: shimmer 2s infinite;
          animation: shimmer 2s infinite;
}

.sparkle-white::before,
.sparkle-white::after {
  content: "";
  position: absolute;
  background: rgb(255, 255, 255); /* 白色 */
  border-radius: 50%;
}

.sparkle-white::before {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sparkle-white::after {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* 黄色いキラキラ（十字型） */
.sparkle-yellow {
  position: absolute;
  width: 8px;
  height: 17px;
  background: transparent;
  -webkit-animation: shimmer 2s infinite;
          animation: shimmer 2s infinite;
}

.sparkle-yellow::before,
.sparkle-yellow::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 150, 0.4); /* 黄色 */
  border-radius: 50%;
}

.sparkle-yellow::before {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sparkle-yellow::after {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* 十字型キラキラ（大きめの光） */
.sparkle-cross {
  position: absolute;
  width: 14px;
  height: 22px;
  background: transparent;
  -webkit-animation: shimmer 2s infinite;
          animation: shimmer 2s infinite;
}

.sparkle-cross::before,
.sparkle-cross::after {
  content: "";
  position: absolute;
  background: rgb(255, 255, 255);
  border-radius: 50%;
}

.sparkle-cross::before {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sparkle-cross::after {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* 共通のキラキラアニメーション */
@-webkit-keyframes shimmer {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0.2;
  }
}
@keyframes shimmer {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0.2;
  }
}
/* ここまでキラキラ */
/* ここから 魔法使いになりませんか コピー */
.catch_wrap {
  width: min(92%, 1200px);
  margin: 0 auto 96px;
}

.catch_ttl {
  font-size: 1.5rem;
  color: #333;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 2;
  text-align: center;
}
.catch_ttl span {
  font-weight: 700;
}

/*-------------------------
index.php（HOME） pc
sns-fixed
---------------------------*/
/* ここから左縦並びSNSボタン */
.sns_fixed {
  position: fixed;
  top: 150px; /* ヘッダーより少し下から開始 */
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  z-index: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease; /* フェード用 */
  opacity: 1;
}

.sns_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  width: 70px;
  height: 70px;
  border-radius: 0 10px 10px 0;
  font-size: 2.1875rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  -webkit-box-shadow: 0 0 5px 1px #ccc;
          box-shadow: 0 0 5px 1px #ccc;
  border: 1px solid #333;
}
.sns_btn::after {
  font-family: icomoon;
  font-size: 2.1875rem;
  line-height: 1;
  content: "";
  color: #333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.sns_btn:hover::after {
  color: #666;
}

/* ここまで左縦並びSNSボタン */
/* ここから左横並びSNSタイプ */
.sns_fixed {
  position: fixed;
  top: 113px; /* ヘッダーより少し下から開始 */
  left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  z-index: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease; /* フェード用 */
  opacity: 1;
}

.sns_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  width: 110px;
  height: 50px;
  border-radius: 0;
  font-size: 1.75rem;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  -webkit-box-shadow: 0 0 5px 1px #ccc;
          box-shadow: 0 0 5px 1px #ccc;
  border: 1px solid #333;
  color: #333;
  letter-spacing: 1px;
}
.sns_btn:hover {
  background: #333;
  color: #fff;
}

/* ここまで左横並びSNSタイプ */
/* Instagram */
.sns_insta::after {
  content: "\e909";
}

/* facebook */
.sns_fb::after {
  content: "\e90b";
}

/* 非表示状態 */
.sns_fixed.hidden {
  opacity: 0;
  pointer-events: none; /* 消えてる時にクリックできないようにする */
}

/* ここまでSNSボタン */
/* ここから問い合わせボタン  */
.sp_fixed {
  position: fixed;
  top: 150px; /* ヘッダーより少し下から開始 */
  right: 0;
  z-index: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease; /* フェード用 */
  opacity: 1;
}

.sp_btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}
.sp_btn_list .sp_btn_item:nth-child(3) a {
  background: #06c755;
  text-orientation: upright;
}
.sp_btn_list .sp_btn_item a {
  width: 38px;
  height: 150px;
  letter-spacing: 1px;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1fb7dc;
  font-size: 0.9375rem;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  color: #fff;
  border-radius: 10px 0 0 10px;
  font-weight: 600;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-box-shadow: 0 0 5px 1px #ccc;
          box-shadow: 0 0 5px 1px #ccc;
  -webkit-transition: width 0.2s ease, padding-bottom 0.2s ease;
  transition: width 0.2s ease, padding-bottom 0.2s ease;
}
.sp_btn_list .sp_btn_item a:hover {
  background: #333;
  width: 48px;
  height: 150px;
  padding-right: 10px;
}

/* 非表示状態 */
.sp_fixed.hidden {
  opacity: 0;
  pointer-events: none; /* 消えてる時にクリックできないようにする */
}

/* 非表示状態 */
.sp_phone {
  opacity: 0;
  display: none;
}

/*-------------------------
index.php（HOME） pc
main
---------------------------*/
main {
  position: relative;
  width: 100%;
  margin: 0px auto 96px;
}
main .main_inner {
  width: 100%;
}

.key_message_outer {
  width: 100%;
  margin: 0px auto;
}

.key_message_wrap1 {
  width: min(100%, 1200px);
  margin: 0px auto;
  overflow: hidden;
}

.key_message_box1 {
  width: 100%;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 40px;
  margin-bottom: 96px;
}
.key_message_box1 .key_images1 {
  justify-self: flex-start;
}
.key_message_box1:nth-child(2) {
  grid-template-columns: 45fr 55fr;
}
.key_message_box1:nth-child(2) .key_message1 {
  padding-right: 0;
  padding-left: 40px;
}
.key_message_box1:nth-child(2) .key_message1::after {
  content: "";
  position: absolute;
  top: 130px;
  left: -100px;
  width: 200%;
  height: calc(100% - 100px);
  background-color: #effcfd;
  z-index: -1;
}
.key_message_box1:nth-child(2) .key_images1 {
  justify-self: flex-end;
}

/* ここからスライダーの調整 */
.splide_wrap {
  width: 100%;
}

#main-slider-1,
#main-slider-2 {
  width: 100%;
  margin-bottom: 10px;
}
#main-slider-1 .splide__track,
#main-slider-1 .splide__list,
#main-slider-1 .splide__slide,
#main-slider-2 .splide__track,
#main-slider-2 .splide__list,
#main-slider-2 .splide__slide {
  width: 100%;
}
#main-slider-1 .splide__pagination__page,
#main-slider-2 .splide__pagination__page {
  background-color: #fff;
  opacity: 1;
  border-radius: 0;
  width: 8px;
  height: 8px;
  margin: 0 4px 10px;
}
#main-slider-1 .splide__pagination__page.is-active,
#main-slider-2 .splide__pagination__page.is-active {
  background-color: #1fb7dc;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#main-slider-1 .custom-slide2 img,
#main-slider-2 .custom-slide2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  display: block;
}

#thumbnail-slider-1,
#thumbnail-slider-2 {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  overflow: hidden;
}
#thumbnail-slider-1 .splide__track,
#thumbnail-slider-1 .splide__list,
#thumbnail-slider-1 .splide__slide,
#thumbnail-slider-2 .splide__track,
#thumbnail-slider-2 .splide__list,
#thumbnail-slider-2 .splide__slide {
  width: 100%;
}
#thumbnail-slider-1 .custom-slide2,
#thumbnail-slider-2 .custom-slide2 {
  opacity: 0.4;
  border: none;
  border-bottom: 2px solid #fff;
}
#thumbnail-slider-1 .custom-slide2.is-active,
#thumbnail-slider-2 .custom-slide2.is-active {
  opacity: 1;
  border: none;
  border-bottom: 2px solid #1fb7dc;
}
#thumbnail-slider-1 .custom-slide2 img,
#thumbnail-slider-2 .custom-slide2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  display: block;
}

/* ここまでスライドの調整 */
.key_message1 {
  width: min(100%, 500px);
  padding-right: 40px;
  padding-top: 200px;
  margin: 0px auto;
  position: relative;
}
.key_message1::after {
  content: "";
  position: absolute;
  top: 130px;
  right: -100px;
  width: 200%;
  height: calc(100% - 100px);
  background-color: #effcfd;
  z-index: -1;
}

.key_ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: #333;
  text-align: left;
  margin-bottom: 32px;
  line-height: 2;
}
.key_ttl span {
  font-weight: 700;
}

.key_txt_wrap {
  width: 100%;
  margin-bottom: 32px;
}
.key_txt_wrap .key_txt {
  font-size: 0.9375rem;
  letter-spacing: 1px;
  color: #333;
  text-align: justify;
  line-height: 2;
  margin-bottom: 16px;
}
.key_txt_wrap .key_txt .sub {
  font-size: 1.1875rem;
}

.rec_plan {
  border: 1px solid #333;
  font-size: 1.0625rem;
  padding: 7px 10px;
  margin-bottom: 16px;
  text-align: center;
  background: #d6fcfc;
  color: #333;
  letter-spacing: 1px;
}

.key_images1 {
  width: min(100%, 500px);
}
.key_images1 img {
  width: 100%;
  height: auto;
}

/* ここから2種目の配置パターン */
.key_message_wrap2 {
  width: min(92%, 1000px);
  margin: 0px auto 160px;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 96px;
}

.key_message_box2 {
  width: min(100%, 850px);
  display: grid;
  grid-template-columns: 50fr 50fr;
  gap: 40px;
}
.key_message_box2:nth-child(odd) {
  justify-self: start; /* 左寄せ */
}
.key_message_box2:nth-child(even) {
  justify-self: end; /* 右寄せ */
}
.key_message_box2 .key_images2 {
  justify-self: flex-start;
}
.key_message_box2:nth-child(2n) {
  grid-template-columns: 50fr 50fr;
}
.key_message_box2:nth-child(2n) .key_message2 {
  padding-right: 0;
}
.key_message_box2:nth-child(2n) .key_images {
  justify-self: flex-end;
}

.key_message2 {
  width: min(100%, 500px);
  padding-top: 0px;
  margin: 0px auto;
  position: relative;
}

/* .key_ttl .key_txt_wrap .key_txt .sub は .key_message1と同じ */
.key_images2 {
  width: min(100%, 500px);
}
.key_images2 img {
  width: 100%;
  height: auto;
}

/* ここからリンクボタン */
.link_bt_box {
  width: 100%;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.link_bt_box.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 60px;
}
.link_bt_box.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 60px;
}
.link_bt_box.mt {
  margin-top: 32px;
}
.link_bt_box.mb {
  margin-bottom: 32px;
}

.link_bt {
  width: 200px;
  padding: 5px 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  color: #fff;
  background: #333;
  border: 1px solid #333;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.link_bt.left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.link_bt::before, .link_bt::after {
  content: "";
  top: 50%;
  right: -20%;
  height: 1px;
  background: #333;
  display: block;
  position: absolute;
  -webkit-transition: right 0.2s linear;
  transition: right 0.2s linear;
}
.link_bt::before {
  width: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.link_bt::after {
  width: 13px;
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
.link_bt:hover {
  background: transparent;
  color: #333;
}
.link_bt:hover::before, .link_bt:hover::after {
  right: -50px;
}

/* ここまでリンクボタン */
.home_btn_growp_wrap {
  width: min(92%, 1000px);
  margin: 0px auto;
  margin-bottom: 96px;
}

.home_btn_growp_inner {
  width: 100%;
}

#home_btn_growp_title_cover {
  width: 100%;
  margin: 0px auto 96px;
}

.home_btn_growp_title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #333;
  text-align: left;
  position: relative;
}
.home_btn_growp_title::after {
  position: absolute;
  bottom: -30px;
  left: 0;
  content: "";
  width: 60px;
  height: 2px;
  background: #333;
  display: inline-block;
}

.home_btn_group {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.home_btn_item {
  width: 100%;
}

.home_btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 8px 8px 0 8px;
  background: #eee;
  text-align: left;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.home_btn:hover {
  background: #fff;
}
.home_btn::before {
  position: absolute;
  content: "";
  bottom: 10px;
  right: 10px;
  width: 20px; /* 底辺 */
  height: 17.3205080757px; /* 高さを自動計算 */
  background: #fff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
  z-index: 1;
}
.home_btn::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-image: linear-gradient(45deg, transparent 0%, #d6fcfc 100%);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
  border-radius: 8px 8px 0 8px;
  display: inline-block;
  z-index: 0;
}
.home_btn:hover::after {
  width: 100%;
}
.home_btn .home_btn_desc,
.home_btn .home_btn_title {
  position: relative;
  z-index: 1;
}
.home_btn .home_btn_desc {
  font-size: 0.9375rem;
  padding-bottom: 8px;
}
.home_btn .home_btn_title {
  font-size: 1.25rem;
}

/* ここから問い合わせ */
.home_contact_box {
  width: min(92%, 1000px);
  margin: 0px auto 96px;
}

.home_contact_inner {
  width: 100%;
}

#home_contact_title_wrap {
  width: min(100%, 600px);
  margin: 0px auto 96px;
}

.home_contact_title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #333;
  text-align: left;
  position: relative;
}
.home_contact_title::after {
  position: absolute;
  bottom: -30px;
  left: 0;
  content: "";
  width: 60px;
  height: 2px;
  background: #333;
  display: inline-block;
}

.home_form {
  width: min(100%, 600px);
  margin: 0px auto;
  margin-bottom: 32px;
  color: #333;
}

.home_contact_btn {
  max-width: 500px;
  display: grid;
  grid-template-columns: auto 1fr;
  color: #333;
  border: 1px solid #333;
  padding: 15px 30px;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
  margin-right: 50px;
}
.home_contact_btn:hover {
  background: #333;
  color: #fff;
}
.home_contact_btn:hover .home_contact_icon::before {
  color: #fff;
}
.home_contact_btn .home_contact_icon {
  width: 60px;
  height: 60px;
  display: block;
  position: relative;
}
.home_contact_btn .home_contact_icon::before {
  font-family: icomoon;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: #fff;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.home_contact_btn .form_icon:before {
  content: "\e908";
  color: #333;
}
.home_contact_btn .tel_icon::before {
  content: "\e907";
  color: #333;
}
.home_contact_btn .line_icon::before {
  content: "\e90d";
  color: #06c755;
  font-size: 3rem;
}
.home_contact_btn::before {
  position: absolute;
  top: 50%;
  right: -45px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #333;
  -webkit-transition: right 0.2s ease;
  transition: right 0.2s ease;
}
.home_contact_btn::after {
  position: absolute;
  top: 50%;
  right: -45px;
  -webkit-transform: translateY(50%) rotate(40deg);
          transform: translateY(50%) rotate(40deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background: #333;
  -webkit-transition: right 0.2s ease;
  transition: right 0.2s ease;
}
.home_contact_btn:hover::before {
  right: -55px;
}
.home_contact_btn:hover::after {
  right: -55px;
}

.home_contact_cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 30px;
}
.home_contact_cover .home_contact_ttl {
  font-size: 1rem;
  margin-bottom: 4px;
}
.home_contact_cover .home_btn_desc {
  font-size: 1rem;
}

.home_contact_notice_ttl {
  max-width: 500px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.home_contact_notice_txt {
  max-width: 500px;
  font-size: 1rem;
  display: block;
}

/*-------------------------
index.php（HOME） pc
footer
---------------------------*/
.footer_wrap {
  width: 100%;
  padding: 60px 0 30px;
  background: #effcfd;
}

.footer {
  width: min(100% - 160px, 1200px);
  margin: 0px auto;
}

.footer_inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  margin-bottom: 64px;
}

.footer_bt_area {
  width: min(100%, 780px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  justify-self: start; /* グリッドセル内で左寄せにする */
}

.footer_nav {
  width: 175px;
}

.footer_nav_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  gap: 20px;
}
.footer_nav_list li {
  width: 100%;
  overflow: hidden;
  height: 30px;
}
.footer_nav_list li a {
  width: 100%;
  max-width: 100%; /* 親要素の幅に合わせて最大幅を100%にする */
  min-width: 80px; /* 最小幅を指定して、あまり小さくならないようにする */
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  color: #333;
  padding: 0 0 8px 15px;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  background: transparent;
  letter-spacing: 1px;
  border-bottom: 1px solid #333;
  border-left: 2px solid #333;
}
.footer_nav_list li a::after {
  content: "";
  position: absolute;
  top: 35%;
  right: 20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer_nav_list li a:hover {
  color: #777;
}
.footer_nav_list li a:hover::after {
  right: 15px;
  border-color: #777;
}

.footer_link {
  width: 130px;
}

.footer_link_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  height: 100%;
  gap: 18px;
}
.footer_link_list li {
  width: 100%;
  height: 50px;
}
.footer_link_list li a {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9375rem;
  color: #333;
  padding: 0;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border: 1px solid #333;
  letter-spacing: 1px;
}
.footer_link_list li a:hover {
  background: #d6fcfc;
}

/* ここからSNSリンクアイコン */
.footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.footer_sns .footer_sns_btn {
  width: 40px;
  height: 40px;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  background: transparent;
}
.footer_sns .footer_sns_btn::after {
  font-family: icomoon;
  font-size: 2.1875rem;
  line-height: 1;
  content: "";
  color: #333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer_sns .footer_sns_btn.sns_insta::after {
  content: "\e909";
}
.footer_sns .footer_sns_btn.sns_fb::after {
  content: "\e90b";
}
.footer_sns .footer_sns_btn:hover::after {
  color: #666;
}

/* ここから住所など */
.footer_info {
  width: auto;
}

.footer_info_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  color: #333;
  font-size: 0.9375rem;
}
.footer_info_list .entity_name {
  font-size: 0.9375rem;
}
.footer_info_list .tel a {
  text-decoration: none;
  font-size: 1.5rem;
  position: relative;
  padding-left: 40px;
  margin-bottom: 8px;
  display: block;
  color: #333;
  background: #d6fcfc;
}
.footer_info_list .tel a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  color: #666;
}
.footer_info_list .tel a::after {
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "\e907";
  font-family: icomoon;
  font-size: 0.9375rem;
  color: #333;
}

.map_btn a {
  width: 100%;
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.8125rem;
  border: 1px solid #333;
  color: #333;
  border-radius: 4px;
  text-align: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.map_btn a:hover {
  background: #d6fcfc;
}

.footer_logo {
  width: auto;
}
.footer_logo a {
  width: 120px;
  display: block;
  aspect-ratio: 9/6;
}
.footer_logo a img {
  width: 100%;
  height: auto;
}

.copyright {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #333;
}

#page_top {
  display: none;
  position: fixed;
  bottom: 78px;
  right: 50px;
  z-index: 100;
}
#page_top a {
  position: relative;
  display: block;
  width: 100%;
  color: #333;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.6px;
  -webkit-transition: color 0.2s ease, text-shadow 0.2s ease;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
#page_top a::before {
  content: "";
  position: absolute;
  top: -47px;
  left: 47.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  border: 1px solid #333;
  width: 50px;
  height: 76px;
  background: rgba(255, 255, 255, 0.3294117647);
  border-radius: 6px;
  -webkit-transition: background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  z-index: -2;
}
#page_top a::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid #333;
  border-width: 2px 2px 0px 0px;
  z-index: 10;
  -webkit-transition: top 0.2s ease;
  transition: top 0.2s ease;
}
#page_top a:hover {
  color: #333;
  text-shadow: 0 0 10px #d6fcfc;
}
#page_top a:hover::before {
  background: #d6fcfc;
  -webkit-box-shadow: 0 0 10px #d6fcfc;
          box-shadow: 0 0 10px #d6fcfc;
  border-color: #333;
}
#page_top a:hover::after {
  top: -33px;
  border-color: #333;
}/*# sourceMappingURL=home.css.map */