@charset "UTF-8";
/*---------------------------------------------
メディアクエリ (Mixins)
---------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.u-nowrap {
  white-space: nowrap;
}

.u-fc-alert {
  color: #e67e22;
}

/*---------------------------------------------
リセット & 初期設定
---------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 87.5%; /* 14px相当 */
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 100%; /* 16px相当 */
  }
}

body {
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
  margin: 0;
  min-height: 100%;
  font-size: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}

/* メディア要素 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* タイポグラフィ・リスト・リンクのリセット */
p, h1, h2, h3, h4, h5, h6, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
  overflow-wrap: break-word;
}

ul, ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

/* フォーム要素のリセット */
button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid transparent;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* --- ローディング画面のスタイル --- */
.site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.site-loader p {
  color: #2d3748;
  font-weight: normal;
  font-size: 14px;
  margin-top: 15px;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* ラビーちゃんのアニメーション設定 */
.loader-rabby-wrap {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  width: 120px; /* 画像の大きさに合わせて調整 */
}

.loader-rabby {
  width: 100%;
  height: auto;
  /* 上下にピョンピョン跳ねるアニメーション */
  -webkit-animation: bounceRabby 0.5s infinite alternate cubic-bezier(0.5, 0.05, 1, 0.5);
          animation: bounceRabby 0.5s infinite alternate cubic-bezier(0.5, 0.05, 1, 0.5);
}

.loader-shadow {
  width: 60px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  margin-top: 10px;
  /* ジャンプに合わせて影が小さく・薄くなるアニメーション */
  -webkit-animation: shadowScale 0.5s infinite alternate cubic-bezier(0.5, 0.05, 1, 0.5);
          animation: shadowScale 0.5s infinite alternate cubic-bezier(0.5, 0.05, 1, 0.5);
}

/* アニメーションのキーフレーム */
@-webkit-keyframes bounceRabby {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}
@keyframes bounceRabby {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}
@-webkit-keyframes shadowScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.3;
  }
}
@keyframes shadowScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.3;
  }
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-30 {
  margin-bottom: 30px;
}

.text-center {
  text-align: center;
}

section {
  padding: 60px 0;
  background-color: #ffffff;
}
section:nth-child(even) {
  background-color: #f7fafc;
}

.section-title {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.75rem;
  color: #007acc;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: 0;
  width: 110%;
  height: 4px;
  background-color: #ff9900;
  border-radius: 2px;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 3px solid #007acc;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-transition: padding 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: padding 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  transition: padding 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  will-change: padding, box-shadow;
}
.site-header .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header .header-logo {
  height: 48px;
  width: auto;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  will-change: height;
}
.site-header .header-action .header-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background-color: #ff9900;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 35px 12px 25px;
  border-radius: 24px;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.site-header .header-action .header-btn::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 45%;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.site-header .header-action .header-btn:hover {
  background-color: #e68a00;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.site-header .header-action .header-btn:hover::after {
  -webkit-transform: translateY(-20%) rotate(45deg);
          transform: translateY(-20%) rotate(45deg);
}
.site-header.is-scrolled {
  padding: 10px 0;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.site-header.is-scrolled .header-logo {
  height: 36px;
}
.site-header.is-scrolled .header-action .header-btn {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.site-header.is-scrolled .header-action .header-btn:hover {
  -webkit-transform: scale(0.9) translateY(-2px);
          transform: scale(0.9) translateY(-2px);
}
@media screen and (max-width: 767px) {
  .site-header {
    padding: 10px 0;
  }
  .site-header .header-logo {
    height: 28px;
  }
  .site-header .header-action .header-btn {
    font-size: 12px;
    padding: 6px 20px 6px 12px;
  }
  .site-header .header-action .header-btn::after {
    right: 8px;
    width: 4px;
    height: 4px;
  }
  .site-header.is-scrolled {
    padding: 10px 0;
  }
  .site-header.is-scrolled .header-logo {
    height: 28px;
  }
  .site-header.is-scrolled .header-action .header-btn {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .site-header.is-scrolled .header-action .header-btn:hover {
    -webkit-transform: scale(1) translateY(-2px);
            transform: scale(1) translateY(-2px);
  }
}

.hero {
  position: relative;
  background: url("../img/hero-bottom.webp") repeat-x center bottom, url("../img/hero-bg_pc.webp") no-repeat center bottom;
  background-size: 1186px 60px, cover;
  padding: 20px 0 80px;
  text-shadow: 0 2px 20px #e7f5ff;
}
@media screen and (max-width: 767px) {
  .hero {
    padding: 2vw 0 12vw;
    background: url("../img/hero-bottom.webp") repeat-x center bottom, url("../img/hero-bg_sp.webp") no-repeat center bottom;
    background-size: 150%, cover;
  }
}
.hero .hero-container {
  position: relative;
  padding-bottom: 18vw;
}
@media screen and (min-width: 768px) {
  .hero .hero-container {
    padding-bottom: 0;
  }
}
.hero .hero-sub {
  background: -webkit-gradient(linear, right top, left top, from(#0066aa), to(#007acc));
  background: linear-gradient(to left, #0066aa, #007acc);
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 0.25em;
  line-height: 1;
  text-align: right;
  text-shadow: none;
}
@media screen and (max-width: 767px) {
  .hero .hero-sub {
    font-size: max(12px, 3.2vw);
  }
}
.hero .hero-title-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .hero .hero-title-wrap {
    margin: 0 auto;
  }
}
.hero .hero-main-title {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #ff9900;
  white-space: nowrap;
}
.hero .hero-main-title .large-text {
  font-size: 110px;
  letter-spacing: 0;
  font-weight: bolder;
}
@media screen and (max-width: 767px) {
  .hero .hero-main-title {
    font-size: 8vw;
  }
  .hero .hero-main-title .large-text {
    font-size: 18.2vw;
  }
}
.hero .hero-title {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 1em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .hero .hero-title {
    font-size: max(13px, 3.5vw);
    text-align: center;
  }
}
.hero .hero-date {
  background-color: rgba(255, 255, 255, 0.95);
  color: #007acc;
  display: inline-block;
  border-radius: 24px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-shadow: none;
  letter-spacing: 0;
  position: relative;
}
.hero .hero-date::after {
  content: "";
  display: block;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 22px;
  border: 2px solid #e2e8f0;
  position: absolute;
  left: 3px;
  top: 3px;
}
@media screen and (max-width: 767px) {
  .hero .hero-date {
    width: 100%;
    padding: 0.5em 0.25em;
  }
}
@media screen and (min-width: 768px) {
  .hero .hero-date {
    padding: 15px 25px;
    margin-bottom: 16px;
  }
}
.hero .hero-date .date-title {
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: #2d3748;
  font-weight: bold;
}
.hero .hero-date .date-inner {
  font-size: max(16px, 4vw);
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .hero .hero-date .date-inner {
    font-size: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hero .hero-date .month-day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.hero .hero-date .num {
  font-size: 8vw;
  line-height: 1;
  margin: 0 0.025em;
  color: #0066aa;
  font-family: "Arial", sans-serif;
}
@media screen and (min-width: 768px) {
  .hero .hero-date .num {
    font-size: 38px;
  }
}
.hero .hero-date .tilde {
  color: #666;
  margin: 0 0.25em;
}
@media screen and (min-width: 768px) {
  .hero .hero-date .tilde {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    margin: 0.25em;
  }
}
.hero .hero-date .day {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 3vw;
  width: 5vw;
  height: 5vw;
  padding-bottom: 0.04em;
  -webkit-transform: translateY(-0.6vw);
          transform: translateY(-0.6vw);
}
@media screen and (min-width: 768px) {
  .hero .hero-date .day {
    font-size: 14px;
    width: 26px;
    height: 26px;
    margin-left: 6px;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
.hero .hero-date .day {
  background-color: #2d3748;
}
.hero .hero-date .day.bg-sat {
  background-color: #3b82f6;
}
.hero .hero-date .day.bg-sun {
  background-color: #ef4444;
}
.hero .hero-date .note {
  display: block;
  font-size: 10px;
  color: #666;
  margin-top: 8px;
  font-weight: normal;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero .hero-date .note {
    font-size: 12px;
  }
}
.hero .hero-btn-wrap {
  text-align: center;
}
.hero .hero-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#e67e22), to(#cc6f1e));
  background: linear-gradient(to bottom, #e67e22, #cc6f1e);
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 50px 15px 35px;
  border-radius: 35px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-shadow: none;
}
@media screen and (max-width: 767px) {
  .hero .hero-btn {
    width: 80%;
    font-size: 5vw;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.hero .hero-btn::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 45%;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hero .hero-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#f98926), to(#e67e22));
  background: linear-gradient(to bottom, #f98926, #e67e22);
}
@media screen and (max-width: 767px) {
  .hero .hero-btn:hover {
    -webkit-transform: translate(-50%, -2px);
            transform: translate(-50%, -2px);
  }
}
.hero .hero-btn:hover::after {
  -webkit-transform: translateY(-15%) rotate(45deg);
          transform: translateY(-15%) rotate(45deg);
}
.hero .hero-character {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 10;
  text-shadow: none;
}
@media screen and (max-width: 767px) {
  .hero .hero-character {
    position: static;
    width: auto;
    margin: 4vw auto 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .hero .hero-character {
    position: absolute;
    right: 68vw;
    bottom: -220px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1080px) {
  .hero .hero-character {
    right: auto;
    left: 310px;
    bottom: -12px;
  }
}
.hero .hero-character img {
  width: 170px;
  height: auto;
}
@media (min-width: 1080px) {
  .hero .hero-character img {
    margin-left: -80px;
  }
}
@media screen and (max-width: 767px) {
  .hero .hero-character img {
    width: 38%;
  }
}
.hero .hero-character .speech-bubble {
  position: relative;
  background: #ffffff;
  color: #007acc;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 12px 20px;
  border-radius: 20px;
  margin-bottom: 12px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.hero .hero-character .speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: justify;
}

.association-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.association-content .association-image {
  width: 40%;
}
.association-content .association-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.association-content .association-text {
  width: 60%;
  line-height: 1.8;
  text-align: justify;
  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;
}
@media screen and (max-width: 767px) {
  .association-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .association-content .association-image, .association-content .association-text {
    width: 100%;
  }
  .association-content .association-image img {
    height: auto;
  }
}

.association-btn-wrap {
  text-align: left;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .association-btn-wrap {
    text-align: center;
  }
}
.association-btn-wrap .association-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #007acc;
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  padding: 12px 30px 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.association-btn-wrap .association-btn::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.association-btn-wrap .association-btn:hover {
  background-color: #0066aa;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.association-btn-wrap .association-btn:hover::after {
  -webkit-transform: translateY(-50%) translateX(3px) rotate(45deg);
          transform: translateY(-50%) translateX(3px) rotate(45deg);
}

.expert-grid {
  text-align: center;
}
.expert-grid .expert-item {
  display: inline-block;
  width: 22%;
  min-width: 130px;
  margin: 1%;
  background-color: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 15px 10px;
  font-weight: bold;
  color: #007acc;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 767px) {
  .expert-grid .expert-item {
    width: 46%;
  }
}

.sec-experts .note-text {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1em;
}
.sec-experts .note-text a {
  color: #007acc;
  font-weight: bold;
}

.c-takken {
  color: #e60012 !important;
  border-color: #e60012 !important;
}

.c-lawyer {
  color: #005caf !important;
  border-color: #005caf !important;
}

.c-tax {
  color: #009944 !important;
  border-color: #009944 !important;
}

.c-arch {
  color: #f39800 !important;
  border-color: #f39800 !important;
}

.c-appraiser {
  color: #6c2463 !important;
  border-color: #6c2463 !important;
}

.c-surveyor {
  color: #e4007f !important;
  border-color: #e4007f !important;
}

.c-judicial {
  color: #00a0e9 !important;
  border-color: #00a0e9 !important;
}

.c-admin {
  color: #8f7700 !important;
  border-color: #8f7700 !important;
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .consult-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.consult-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 20px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.consult-card .consult-card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007acc;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ff9900;
}
.consult-card .consult-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.consult-card .consult-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #444444;
  text-align: justify;
  font-size: 0.9rem;
}
.consult-card .consult-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff9900;
}
.consult-card .consult-list li:last-child {
  margin-bottom: 0;
}

.consult-swiper {
  padding: 0 50px 50px !important;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.consult-swiper .swiper-slide {
  height: auto;
}
.consult-swiper .swiper-button-prev, .consult-swiper .swiper-button-next {
  color: #ff9900 !important;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -25px;
  width: 40px;
  height: 40px;
}
.consult-swiper .swiper-button-prev::after, .consult-swiper .swiper-button-next::after {
  font-size: 28px;
  font-weight: bold;
}
.consult-swiper .swiper-button-prev {
  left: 0px !important;
}
.consult-swiper .swiper-button-next {
  right: 0px !important;
}
.consult-swiper .swiper-pagination-bullet-active {
  background-color: #007acc !important;
}
@media screen and (max-width: 767px) {
  .consult-swiper {
    padding: 0 30px 40px !important;
  }
  .consult-swiper .swiper-button-prev, .consult-swiper .swiper-button-next {
    margin-top: -20px;
  }
  .consult-swiper .swiper-button-prev::after, .consult-swiper .swiper-button-next::after {
    font-size: 20px;
  }
}

.sec-search .search-guide {
  max-width: 850px;
  margin: 0 auto 30px auto;
  background-color: #ffffff;
  border-left: 5px solid #007acc;
  padding: 15px 20px;
  border-radius: 0 6px 6px 0;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.sec-search .search-guide p {
  margin-bottom: 10px;
}
.sec-search .legend-wrap {
  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;
}
.sec-search .legend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 0.9rem;
  font-weight: bold;
}
.sec-search .legend-item p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .sec-search .legend-item .legend-icon-wrap {
    width: 110px;
  }
  .sec-search .legend-item .legend-icon-wrap .legend-icon {
    height: 22px;
    width: auto;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .sec-search .legend-item .legend-icon-wrap {
    width: 160px;
  }
  .sec-search .legend-item .legend-icon-wrap .legend-icon {
    height: 26px;
    width: auto;
    margin: 0 auto;
  }
}
.sec-search .badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 11px;
  margin-right: 6px;
  font-weight: bold;
}
.sec-search .badge.btn-reserve {
  background-color: #e67e22;
}

.tabs-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  margin-bottom: 25px;
  list-style: none;
}
.tabs-nav .tab-btn {
  padding: 10px 18px;
  background-color: #e2e8f0;
  color: #2d3748;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 14px;
  border: none;
}
.tabs-nav .tab-btn:hover {
  background-color: #cbd5e1;
}
.tabs-nav .tab-btn.active {
  background-color: #007acc;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .tabs-nav .tab-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
}

.tab-panel {
  display: none;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}
.tab-panel.active {
  display: block;
}

.pref-accordion {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background-color: #ffffff;
  margin-bottom: 10px;
  overflow: hidden;
}
.pref-accordion.active .pref-header::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.pref-accordion .pref-header {
  padding: 12px 20px;
  background-color: #f1f5f9;
  font-weight: bold;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.pref-accordion .pref-header::after {
  content: "▼";
  font-size: 12px;
  color: #64748b;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.pref-accordion .pref-content {
  display: none;
  padding: 15px;
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.venue-card {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 15px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  position: relative;
}
.venue-card:last-child {
  margin-bottom: 0;
}
.venue-card.type-reserve {
  border-left: 4px solid #e67e22;
  background-color: #fffaf5;
}
.venue-card.type-direct {
  border-left: 4px solid #2ecc71;
  background-color: #f1fcf6;
}
.venue-card .venue-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .venue-card .venue-top {
    padding-right: 300px;
  }
}
.venue-card .venue-name {
  font-size: 16px;
  font-weight: bold;
  color: #2d3748;
}
.venue-card .venue-name a {
  color: #0066aa;
}
.venue-card .venue-name a:hover {
  color: #007acc;
  text-decoration: underline;
}
.venue-card .venue-info-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 15px;
}
.venue-card .venue-info-table th, .venue-card .venue-info-table td {
  padding: 6px 0;
  text-align: left;
  font-size: 13.5px;
  vertical-align: top;
}
.venue-card .venue-info-table th {
  width: 110px;
  color: #64748b;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .venue-card .venue-info-table td {
    padding-right: 300px;
  }
}
.venue-card .map-link {
  font-size: 12px;
  display: inline-block;
  margin-left: 8px;
  font-weight: bold;
  color: #0066aa;
}
.venue-card .map-link:hover {
  color: #007acc;
  text-decoration: underline;
}

.no-venue {
  text-align: center;
  color: #718096;
  font-size: 14px;
  padding: 30px 10px;
  font-weight: bold;
  background-color: #f8fafc;
  border-radius: 4px;
  border: 1px dashed #cbd5e1;
  margin: 10px 0;
}

.venue-experts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
.venue-experts .expert-tag {
  font-size: 11px;
  padding: 3px 8px;
  border: 1px solid;
  border-radius: 4px;
  font-weight: bold;
  background-color: #ffffff;
  white-space: nowrap;
}

.no-reserve-btn-above-wrap,
.reserve-btn-above-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .no-reserve-btn-above-wrap,
  .reserve-btn-above-wrap {
    position: absolute;
    top: 15px;
    right: 20px;
    width: auto;
    margin: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    z-index: 5;
  }
}
@media screen and (max-width: 767px) {
  .no-reserve-btn-above-wrap,
  .reserve-btn-above-wrap {
    position: static;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 15px;
    margin-bottom: 8px;
    margin-left: -1vw;
  }
}
.no-reserve-btn-above-wrap .no-reserve-icon-btn-above,
.no-reserve-btn-above-wrap .reserve-icon-btn-above,
.reserve-btn-above-wrap .no-reserve-icon-btn-above,
.reserve-btn-above-wrap .reserve-icon-btn-above {
  height: auto;
  opacity: 0.95;
  width: 100%;
  max-width: 280px;
}

.reserve-btn-above-wrap a {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.reserve-btn-above-wrap:hover a {
  -webkit-transform: scale(0.99) translateY(-2px);
          transform: scale(0.99) translateY(-2px);
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

.venue-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 12px 30px 12px 15px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.venue-btn::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.venue-btn.btn-reserve {
  background-color: #ff9900;
  color: #ffffff;
}
.venue-btn.btn-reserve:hover {
  background-color: #e68a00;
}
.venue-btn.btn-reserve:hover::after {
  -webkit-transform: translateY(-50%) translateX(3px) rotate(45deg);
          transform: translateY(-50%) translateX(3px) rotate(45deg);
}
.venue-btn.btn-direct {
  background-color: #ffffff;
  color: #007acc;
  border: 1px solid #007acc;
}
.venue-btn.btn-direct:hover {
  background-color: #f0f4f8;
}
.venue-btn.btn-direct:hover::after {
  -webkit-transform: translateY(-50%) translateX(3px) rotate(45deg);
          transform: translateY(-50%) translateX(3px) rotate(45deg);
}

.flow-wrap {
  max-width: 850px;
  margin: 0 auto;
}
.flow-wrap .flow-step {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.flow-wrap .flow-step:last-child {
  margin-bottom: 0;
}
.flow-wrap .flow-num {
  position: absolute;
  top: -12px;
  left: 20px;
  background-color: #007acc;
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 10px;
}
.flow-wrap .flow-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #007acc;
  margin-bottom: 8px;
  margin-top: 5px;
}
.flow-wrap .flow-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}
.flow-wrap .flow-type-block.mt-30 {
  margin-top: 40px;
}
.flow-wrap .flow-type-block.type-no-reserve .flow-type-title {
  color: #007acc;
  border-bottom: 2px solid #007acc;
}
.flow-wrap .flow-type-block.type-no-reserve .flow-num {
  background-color: #007acc;
}
.flow-wrap .flow-type-block.type-no-reserve .flow-title {
  color: #007acc;
}
.flow-wrap .flow-type-block.type-reserve .flow-type-title {
  color: #ff9900;
  border-bottom: 2px solid #ff9900;
}
.flow-wrap .flow-type-block.type-reserve .flow-num {
  background-color: #ff9900;
}
.flow-wrap .flow-type-block.type-reserve .flow-title {
  color: #ff9900;
}
.flow-wrap .flow-type-block .flow-type-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.flow-wrap .flow-type-block .flow-type-title .flow-type-icon {
  height: 30px;
  width: auto;
  margin-right: 10px;
}

.notes-wrap {
  max-width: 850px;
  margin: 0 auto;
  background-color: #fffaf0;
  border: 1px solid #faeed7;
  padding: 25px;
  border-radius: 6px;
}
.notes-wrap .notes-list {
  list-style: none;
}
.notes-wrap .notes-list li {
  position: relative;
  padding-left: 15px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.notes-wrap .notes-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #e67e22;
}
.notes-wrap .notes-list li:last-child {
  margin-bottom: 0;
}

.footer-contents-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer-contents-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-contents-wrap .footer-contents {
  width: 50%;
  position: relative;
  overflow: hidden;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .footer-contents-wrap .footer-contents {
    width: 100%;
    padding: 50px 20px;
  }
}
.footer-contents-wrap .footer-contents::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  z-index: 1;
}
.footer-contents-wrap .footer-contents::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 37, 83, 0.591);
  z-index: 2;
}
.footer-contents-wrap .footer-contents.central::before {
  background-image: url("../img/footer-contents-bg_central.webp");
}
.footer-contents-wrap .footer-contents.local::before {
  background-image: url("../img/footer-contents-bg_local.webp");
}
.footer-contents-wrap .footer-contents:hover::before {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.footer-contents-wrap .footer-contents:hover a {
  background-color: rgba(255, 255, 255, 0.15);
}
.footer-contents-wrap .footer-contents p {
  position: relative;
  z-index: 3;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .footer-contents-wrap .footer-contents p {
    font-size: 1.1rem;
  }
}
.footer-contents-wrap .footer-contents a {
  position: relative;
  z-index: 3;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 50px;
  border: 1px solid #ffffff;
  border-radius: 0;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.footer-contents-wrap .footer-contents a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 15px;
  margin-top: 1px;
}

.site-footer {
  background-color: #222222;
  color: #ffffff;
  text-align: center;
  padding: 30px 0;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.site-footer .footer-logo {
  margin-bottom: 20px;
}
.site-footer .footer-logo img {
  height: 40px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .site-footer .footer-logo {
    margin-bottom: 15px;
  }
  .site-footer .footer-logo img {
    height: 30px;
  }
}
.site-footer .footer-links {
  margin-bottom: 20px;
}
.site-footer .footer-links a {
  color: #ffffff;
  text-decoration: underline;
  font-size: 14px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-footer .footer-links a:hover {
  color: #fff33d;
  text-decoration: none;
}