@charset "UTF-8";
/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  Mixin定義 (_mixins.scss) - 【@use 追記】
================================================== */
/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  基本設定とリセット (_base.scss)
================================================== */
html {
  /* rem計算のためのルート設定 */
  font-size: 62.5%;
  /* width: 100vw; で隙間ができた問題の修正 */
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: #f2eae1;
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  body {
    font-size: 1.6rem;
  }
}

/* 共通のリセット */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* ================================================
  共通グラデーションクラス (CSSから移動・変数化)
================================================== */
.grad1 {
  /* $grad-multi を使用 */
  background: linear-gradient(90deg, #0037a0, #0037a0, #0037a0, #0071a9, #78c8b9, #0037a0, #84c07f, #0037a0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #000064; /* フォールバックカラー */
}

.grad2 {
  /* $grad-orange を使用 */
  background-image: linear-gradient(90deg, #f56845, #faaf3b);
}

.grad3 {
  /* $grad-blue を使用 */
  background-image: linear-gradient(90deg, #7db6dc 0%, #0071bb 46%, #0012a0);
}

.grad4 {
  /* merit背景 - 変数化されていないため、色はそのまま */
  background-image: linear-gradient(90deg, rgba(0, 68, 155, 0.7), rgba(0, 113, 169, 0.7));
}

.grad5 {
  /* merit見出し - 変数化されていないため、色はそのまま */
  background-image: linear-gradient(90deg, rgba(0, 87, 169, 0.7), rgba(63, 159, 177, 0.7), rgba(0, 55, 160, 0.7), rgba(0, 55, 160, 0));
}

.grad6 {
  background-image: linear-gradient(90deg, rgb(0, 87, 169), rgb(63, 159, 177), rgb(80, 162, 155), rgb(0, 55, 160));
}

.txt_yellow {
  color: #fbed21;
}

.txt_orange {
  color: #f05a24;
}

.txt_right_blue {
  color: #4390d5;
}

@media (max-width: 768px) {
  .tbbr {
    display: block;
  }
}

@media (max-width: 480px) {
  .spbr {
    display: block;
  }
}

@media (min-width: 769px) {
  .pc {
    display: block;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.nolink {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

.nolink_card {
  pointer-events: none;
  cursor: default;
}

/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  ヘッダー (_header.scss)
================================================== */
@media (max-width: 768px) {
  header {
    margin: 0;
    padding: 0;
  }
}

.menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 1000;
  margin: 0 auto;
  padding: 20px 0 20px 20px;
}
@media (max-width: 768px) {
  .menu {
    padding: 10px 0 0 10px;
  }
}
@media (max-width: 540px) {
  .menu {
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px 0 0 0;
  }
}
.menu .logo {
  margin-left: 0px;
}
@media (max-width: 540px) {
  .menu .logo {
    display: flex;
    width: 100%;
    padding-bottom: 10px;
  }
}
.menu .logo a {
  display: block;
  width: 100%;
}
@media (max-width: 540px) {
  .menu .logo a {
    width: 40%;
    padding-left: 5px;
  }
}
.menu .logo a img {
  display: block;
  max-width: 190px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .menu .logo a img {
    max-width: 150px;
  }
}
@media (max-width: 540px) {
  .menu .logo a img {
    max-width: 150px;
  }
}
.menu .logo h1, .menu .logo p {
  font-size: 1.3rem;
  font-weight: bold;
  color: #000000;
  margin-top: 5px;
}
@media (max-width: 1024px) {
  .menu .logo h1, .menu .logo p {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .menu .logo h1, .menu .logo p {
    font-size: 1rem;
  }
}
@media (max-width: 540px) {
  .menu .logo h1, .menu .logo p {
    font-size: 1.2rem;
    padding-left: 5px;
  }
}
.menu nav {
  flex-shrink: 1;
  min-width: 0;
}
@media (max-width: 540px) {
  .menu nav {
    width: 100%;
  }
}
.menu nav ul {
  list-style: none;
  padding: 0 15px;
  margin: 0;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 40px 0 0 40px;
}
@media (max-width: 1024px) {
  .menu nav ul {
    margin: 0;
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  .menu nav ul {
    margin: 0;
    padding: 8px;
  }
}
@media (max-width: 540px) {
  .menu nav ul {
    width: 100%;
    padding: 0;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0);
  }
}
@media (max-width: 1024px) {
  .menu nav li {
    margin: 0 2px;
    padding: 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 768px) {
  .menu nav li {
    width: auto;
    margin: 0 2px;
    padding: 0;
  }
}
@media (max-width: 540px) {
  .menu nav li {
    padding: 0;
    margin: 0;
    border-radius: 0;
  }
}
.menu nav li a {
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  padding: 12px 15px;
  margin: 15px 3px;
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 25px;
  transition: opacity 0.3s ease;
}
.menu nav li a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .menu nav li a {
    margin: 0;
    padding: 10px 13px;
    font-size: 1.4rem;
    border-radius: 25px;
    height: 100%;
  }
}
@media (max-width: 540px) {
  .menu nav li a {
    padding: 15px 0;
    margin: 0;
    border-radius: 0;
    font-size: 1.2rem;
  }
}
@media (max-width: 540px) {
  .menu nav li.nav_top, .menu nav li.nav_search, .menu nav li.nav_form {
    width: 25%;
  }
}
.menu nav li.nav_top a {
  background-color: #ffffff;
  color: #000064;
}
.menu nav li.nav_topsp a {
  background-color: rgba(255, 255, 255, 0);
  color: #000064;
  padding-left: 20px;
}
.menu nav li.nav_search a {
  background-color: #faaf3b;
  text-shadow: 0px 0px 5px rgba(211, 107, 22, 0.6);
}
.menu nav li.nav_form a {
  background-image: linear-gradient(90deg, #7db6dc 0%, #0071bb 46%, #0012a0);
}
.menu nav li.nav_tel {
  margin: 15px 6px;
}
@media (max-width: 768px) {
  .menu nav li.nav_tel {
    margin: 0;
    padding: 0 7px;
  }
}
@media (max-width: 540px) {
  .menu nav li.nav_tel {
    width: 15%;
    text-align: center;
  }
}
.menu nav li.nav_tel .nav_tel_txt {
  font-size: 1.2rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .menu nav li.nav_tel .nav_tel_txt {
    display: none;
  }
}
.menu nav li.nav_tel .nav_tel_num {
  font-size: 2.2rem;
  font-weight: bold;
  color: #0071bb;
  margin-top: -5px;
}
@media (max-width: 768px) {
  .menu nav li.nav_tel .nav_tel_num {
    display: none;
  }
}
.menu nav li.nav_tel .nav_telsp a {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.menu nav li.nav_tel .nav_telsp .fas {
  font-size: 2rem;
  color: #0071bb;
}

@media (max-width: 540px) {
  .navbr {
    display: block;
  }
}

/* ----------------------------------
  ハンバーガーメニューの基本設定
---------------------------------- */
.hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .hamburger {
    margin: 0;
  }
}

.menu-button {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 1010;
}
@media (max-width: 768px) {
  .menu-button {
    transform: scale(0.8);
  }
}
.menu-button span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #0071bb;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-button .close-button span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-button .close-button span:nth-child(2) {
  opacity: 0;
}
.menu-button .close-button span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ----------------------------------
  ハンバーガーメニュー開いているとき
---------------------------------- */
.mobile_full_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background-color: rgba(247, 241, 238, 0.9);
  background-image: url(../images/menu_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease-out, visibility 0.3s ease;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .mobile_full_menu {
    justify-content: center;
  }
}
.mobile_full_menu.is-open {
  transform: translateX(0);
  visibility: visible;
}
.mobile_full_menu .full_menu {
  display: flex;
  padding: 120px 0 0 0;
  width: 800px;
}
@media (max-width: 768px) {
  .mobile_full_menu .full_menu {
    width: 100%;
  }
}
.mobile_full_menu .full_menu .full_nav_list1, .mobile_full_menu .full_menu .full_nav_list2 {
  list-style: none;
  margin: 0;
  width: 49%;
  height: 90%;
  border-left: solid 1px #7db6dc;
  height: calc(100vh - 60px);
  overflow-y: auto;
}
.mobile_full_menu .full_menu .full_nav_list1 li, .mobile_full_menu .full_menu .full_nav_list2 li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile_full_menu .full_menu .full_nav_list1 li a, .mobile_full_menu .full_menu .full_nav_list2 li a {
  display: block;
  padding: 15px 35px;
  color: #000000;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s;
}
@media (max-width: 480px) {
  .mobile_full_menu .full_menu .full_nav_list1 li a, .mobile_full_menu .full_menu .full_nav_list2 li a {
    padding: 10px 30px;
  }
}
.mobile_full_menu .full_menu .full_nav_list1 li a:hover, .mobile_full_menu .full_menu .full_nav_list2 li a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .mobile_full_menu .full_menu .full_nav_list1 {
    border: none;
  }
}
.mobile_full_menu .full_menu .full_nav_list1 > li {
  background-image: url("../images/li_home.png");
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: 14px center;
}
@media (max-width: 480px) {
  .mobile_full_menu .full_menu .full_nav_list1 > li {
    background-position: 8px center;
  }
}
.mobile_full_menu .full_menu .full_nav_list_top {
  padding-left: 20px;
}
@media (max-width: 480px) {
  .mobile_full_menu .full_menu .full_nav_list_top {
    padding-left: 10px;
  }
}
.mobile_full_menu .full_menu .full_nav_list_top li {
  background-image: url("../images/li_yajirushi.png");
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: 14px center;
}
.mobile_full_menu .full_menu .full_nav_list2 li {
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: 14px center;
}
@media (max-width: 480px) {
  .mobile_full_menu .full_menu .full_nav_list2 li {
    background-position: 8px center;
  }
}
.mobile_full_menu .full_menu .full_nav_list2 .menu_kanban {
  background-image: url("../images/li_search.png");
}
.mobile_full_menu .full_menu .full_nav_list2 .menu_contact {
  background-image: url("../images/li_form.png");
}
.mobile_full_menu .full_menu .full_nav_list2 .menu_showcase {
  background-image: url("../images/li_showcase.png");
}
.mobile_full_menu .full_menu .full_nav_list2 .menu_knowledge {
  background-image: url("../images/li_pen.png");
}

.full_nav_list2 li a.nolink {
  color: rgba(0, 0, 0, 0.3) !important;
  pointer-events: none;
  cursor: default;
}

/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  CTAボタン (_cta.scss)
================================================== */
.top_pick_cta .cta_form_1, .top_pick_cta .cta_search_1 {
  display: block;
  width: 300px;
  height: 50px;
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  border-radius: 25px;
  text-decoration: none;
  text-align: center;
  padding-top: 10px;
  margin: 0 10px;
  transition: all 0.2s;
}
@media (max-width: 480px) {
  .top_pick_cta .cta_form_1, .top_pick_cta .cta_search_1 {
    margin: 0 auto;
    width: 280px;
  }
}

.gyousei {
  max-width: 614px;
  margin: 0 auto;
}

.top_pick_cta {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
@media (max-width: 480px) {
  .top_pick_cta {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
}
.top_pick_cta .cta_search_1 {
  background-image: linear-gradient(90deg, #f56845, #faaf3b);
  box-shadow: 0 5px 0 #f05a24;
}
.top_pick_cta .cta_search_1:hover {
  transform: translateY(5px);
  box-shadow: 0 0 0 #f05a24;
}
.top_pick_cta .cta_form_1 {
  background-image: linear-gradient(90deg, #7db6dc 0%, #0071bb 46%, #0012a0);
  box-shadow: 0 5px 0 #435eb6;
}
.top_pick_cta .cta_form_1:hover {
  transform: translateY(5px);
  box-shadow: 0 0 0 #435eb6;
}

.merit_cta, .guide_cta {
  margin: 50px auto;
}

.melit_cta_btn, .guide_cta_btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .melit_cta_btn, .guide_cta_btn {
    width: 90%;
    margin: 0 auto;
  }
}
.melit_cta_btn a, .guide_cta_btn a {
  transition: opacity 0.3s ease;
}
.melit_cta_btn a:hover, .guide_cta_btn a:hover {
  opacity: 0.7;
}

.cta_telset {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cta_telset .cta_tel_txt {
  font-weight: bold;
}
@media (max-width: 480px) {
  .cta_telset .cta_tel_txt {
    font-size: 1.4rem;
  }
}
.cta_telset .cta_tel_num {
  font-weight: bold;
  font-size: 4.2rem;
  margin-top: -10px;
}
@media (max-width: 480px) {
  .cta_telset .cta_tel_num {
    font-size: 3rem;
  }
}
.cta_telset .cta_tel_time {
  font-weight: bold;
  font-size: 1.4rem;
}

.main_top_bnr {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .main_top_bnr {
    max-width: 90%;
  }
}
.main_top_bnr a {
  position: absolute;
  z-index: 10;
  display: block;
  width: 100%;
  padding-top: 27%;
  height: 0;
  margin-top: -11vh;
  background-image: url("../images/top_bnr_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease-out;
  animation: float_cta 2s ease-in-out infinite;
}
@media (max-width: 480px) {
  .main_top_bnr a {
    margin-top: -16vh;
    background-image: url("../images/top_bnr_sp.png");
    padding-top: 68.57%;
  }
}
.main_top_bnr a:hover {
  transform: translateY(0px);
  animation: none;
}

@keyframes float_cta {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* ================================================
  看板個別ページ用CTAボタン
================================================== */
.cta_kanbanpage_1 {
  padding-bottom: 50px;
}
.cta_kanbanpage_1 a {
  display: block;
  width: 500px;
  height: 86px;
  margin: 50px auto;
  transition: opacity 0.3s ease;
  background-image: url(../kanban/images/cta_btn_kanbanpage1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}
.cta_kanbanpage_1 a:hover {
  transform: translateY(5px);
  opacity: 0.7;
}
@media (max-width: 768px) {
  .cta_kanbanpage_1 a {
    max-width: 90%;
    background-image: url(../kanban/images/cta_btn_kanbanpage1_sp.png);
  }
}

.cta_kanban_location {
  display: block;
  width: 450px;
  height: 70px;
  margin: 20px auto 0;
  padding: 20px;
  background-color: #fff;
  border: solid 2px #ed1c24;
  border-radius: 40px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ed1c24;
  box-shadow: 0 10px 0 #c81c24;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.cta_kanban_location:hover {
  transform: translateY(5px);
  opacity: 0.7;
}
@media (max-width: 768px) {
  .cta_kanban_location {
    width: 90%;
    font-size: 1.6rem;
  }
}

.cta_kanban_foot {
  display: block;
  width: 450px;
  height: 70px;
  margin: 20px auto 0;
  padding: 20px;
  background-color: #009791;
  border: solid 2px #000064;
  border-radius: 40px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 10px 0 #000064;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.cta_kanban_foot:hover {
  transform: translateY(5px);
  opacity: 0.7;
}
@media (max-width: 768px) {
  .cta_kanban_foot {
    width: 90%;
    font-size: 1.6rem;
  }
}

/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ----------------------------------
  hero
---------------------------------- */
/* hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
}
.hero .hero-background {
  height: 100%;
  width: 100%;
  position: absolute;
  background-image: url(../images/hero_cover.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: 2;
}
.hero {
  background: linear-gradient(to bottom, #f9ae3b 0%, #f9ae3b 90%, #f1e9e0 100%);
  overflow: hidden;
  /* テキストレイヤー (一番上) */
}
.hero .hero-content {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  z-index: 3; /* 一番上に */
  display: flex;
  justify-content: center;
}
.hero .hero-content .main-copy {
  margin: 0;
  padding: 0;
  font-size: 11rem;
  font-weight: 900;
  text-shadow: 0 0 10px #f1e9e0, 0 0 20px #f1e9e0, 0 0 30px #f1e9e0, 0 0 50px #f1e9e0, 0 0 80px #f1e9e0;
}
@media (max-width: 1024px) {
  .hero .hero-content .main-copy {
    font-size: 7.5rem;
  }
}
@media (max-width: 768px) {
  .hero .hero-content .main-copy {
    writing-mode: vertical-rl;
    font-size: 6.5rem;
  }
}
.hero .hero-content {
  /* 2. テキスト登場アニメーションのキーフレーム定義 */
  /* ふわっと下から上にフェードインするキーフレーム */
}
@keyframes char-fade-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero .hero-content span {
  display: inline-block;
  opacity: 0;
  animation: char-fade-in 0.8s forwards;
  animation-delay: 1s;
}
.hero .hero-content .char-1 {
  animation-delay: 1.1s;
}
.hero .hero-content .char-2 {
  animation-delay: 1.2s;
}
.hero .hero-content .char-3 {
  animation-delay: 1.3s;
}
.hero .hero-content .char-4 {
  animation-delay: 1.4s;
}
.hero .hero-content .char-5 {
  animation-delay: 2.5s;
}
.hero .hero-content .char-6 {
  animation-delay: 2.6s;
}
.hero .hero-content .char-7 {
  animation-delay: 2.7s;
}
.hero .hero-content .char-8 {
  animation-delay: 2.8s;
}
.hero {
  /* きらめきアニメーションの定義 */
}
@keyframes shimmer-move {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(800%);
  }
}
.hero .hero-shimmer-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  z-index: 1; /* 背景より上に */
  overflow: hidden;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  animation: shimmer-move 3.5s infinite 0.5s;
}
.hero::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200px;
  background-image: url("../images/hero_after.png");
  background-repeat: repeat-x;
  margin-right: 5px;
  z-index: 5;
}

#hero-animation.is-loaded {
  background: linear-gradient(to bottom, #f9ae3b 0%, #f9ae3b 90%, #f1e9e0 100%);
}

/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  ピックアップセクション (_pickup.scss)
================================================== */
.pick_up_wrap {
  margin-top: 200px;
  margin-bottom: 100px;
  background-image: url("../images/pick_back2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .pick_up_wrap {
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .pick_up_wrap {
    margin-bottom: 0px;
    padding-bottom: 0;
    padding-top: 11vh;
  }
}
.pick_up_wrap .pick_up_title {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 900;
  margin: 16vh auto 10px;
  letter-spacing: 3px;
}
@media (max-width: 768px) {
  .pick_up_wrap .pick_up_title {
    font-size: 2.6rem;
  }
}
@media (max-width: 480px) {
  .pick_up_wrap .pick_up_title {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
}
.pick_up_wrap .new_arrival_title {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 900;
  margin: 30px auto 10px;
  letter-spacing: 3px;
}
@media (max-width: 768px) {
  .pick_up_wrap .new_arrival_title {
    font-size: 2.6rem;
  }
}
@media (max-width: 480px) {
  .pick_up_wrap .new_arrival_title {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
}
.pick_up_wrap .pick_up_txt {
  font-size: 2rem;
  font-weight: bolder;
  color: #2c5e9a;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .pick_up_wrap .pick_up_txt {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .pick_up_wrap .pick_up_txt {
    font-size: 1.6rem;
  }
}

.pick_wrap {
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin: 20px auto;
}
@media (max-width: 768px) {
  .pick_wrap {
    width: 90%;
    gap: 20px 2%;
    justify-content: space-around;
  }
}
.pick_wrap .pick_link_block {
  display: block;
  width: calc((100% - 60px) / 4);
  text-decoration: none;
  color: #000064;
}
@media (max-width: 768px) {
  .pick_wrap .pick_link_block {
    flex-basis: 48%;
  }
}
.pick_wrap .pick_link_block .pick_sets {
  transition: all 0.3s ease;
  padding-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 8px rgba(43, 85, 160, 0.3);
}
.pick_wrap .pick_link_block .pick_sets .pick_img {
  width: 100%;
  height: auto;
  padding-top: 81.8%;
  background-color: #fff;
  position: relative;
}
.pick_wrap .pick_link_block .pick_sets .pick_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.pick_wrap .pick_link_block .pick_sets .pick_img span.pick_appeal {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  background-color: #000064;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 5px 10px;
}
.pick_wrap .pick_link_block .pick_sets .pick_area, .pick_wrap .pick_link_block .pick_sets .pick_name {
  padding: 5px 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .pick_wrap .pick_link_block .pick_sets .pick_area, .pick_wrap .pick_link_block .pick_sets .pick_name {
    font-size: 1.6rem;
    padding: 0;
  }
}
@media (max-width: 480px) {
  .pick_wrap .pick_link_block .pick_sets .pick_area, .pick_wrap .pick_link_block .pick_sets .pick_name {
    font-size: 1.4rem;
    padding: 0;
  }
}
.pick_wrap .pick_link_block .pick_sets .pick_name {
  border-top: dotted 1px #2c5e9a;
}
.pick_wrap .pick_link_block:hover .pick_sets {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 8px rgba(43, 85, 160, 0.8);
}

.gyousei img {
  display: block;
  margin: 0 auto;
}

/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  メリットセクション (_merit.scss)
================================================== */
#merit_wrap {
  margin: 100px auto 70px;
}

.merit_head {
  background-image: url("../images/merit_head.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  height: 540px;
  padding-top: 50px;
  position: relative;
}
@media (max-width: 480px) {
  .merit_head {
    height: 400px;
    background-image: url("../images/merit_head_sp.png");
    background-size: contain;
  }
}
.merit_head h2 {
  writing-mode: vertical-rl;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-70%);
  text-shadow: 0px 0 10px rgba(0, 33, 80, 0.6), 0px 0px 5px rgba(0, 33, 80, 0.8);
  letter-spacing: 3px;
}
@media (max-width: 480px) {
  .merit_head h2 {
    font-size: 2.8rem;
    top: 30px;
    left: 80%;
    background: linear-gradient(90deg, #0037a0, #0037a0, #0037a0, #0071a9, #78c8b9, #0037a0, #84c07f, #0037a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #000064; /* フォールバックカラー */
    text-shadow: 0 0 0;
  }
}

.merit {
  max-width: 960px;
  margin: -150px auto 0;
  border-radius: 30px;
  color: #ffffff;
  padding: 50px;
}
@media (max-width: 768px) {
  .merit {
    padding: 50px 0px;
  }
}
.merit .reason_set {
  margin-bottom: 100px;
}
.merit .reason_set:nth-child(3) {
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .merit .reason_set {
    margin-bottom: 50px;
  }
}
.merit .reason_set .reason_midasi {
  width: 90%;
  height: 100px;
  font-weight: bold;
  margin: 0 0 30px -70px;
  padding-left: 70px;
  position: relative;
}
@media (max-width: 768px) {
  .merit .reason_set .reason_midasi {
    height: 86px;
    width: 100%;
    margin: 0 0 30px 0;
    padding: 0 30px;
  }
}
.merit .reason_set .reason_midasi p {
  font-size: 1.4rem;
  padding-top: 15px;
}
.merit .reason_set .reason_midasi h3 {
  font-size: 4rem;
  margin-top: -10px;
}
@media (max-width: 768px) {
  .merit .reason_set .reason_midasi h3 {
    font-size: 3rem;
  }
}
.merit .reason_set .reason_midasi img {
  display: block;
  position: absolute;
  width: 45%;
  top: -100px;
  right: -150px;
}
@media (max-width: 768px) {
  .merit .reason_set .reason_midasi img {
    width: 40%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
@media (max-width: 480px) {
  .merit .reason_set .reason_midasi img {
    transform: translateY(-80%);
  }
}
.merit .reason_set .reason_txt {
  width: 70%;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .merit .reason_set .reason_txt {
    width: 100%;
    font-size: 1.6rem;
    padding: 0 30px;
  }
}
.merit .merit_copy_set {
  display: flex;
  justify-content: space-around;
  margin: 30px auto;
}
@media (max-width: 768px) {
  .merit .merit_copy_set {
    padding: 0 30px;
  }
}
@media (max-width: 480px) {
  .merit .merit_copy_set {
    flex-direction: column;
    margin: 20px 0;
    gap: 10px;
  }
}
.merit .merit_copy_set .merit_copy {
  background-image: url("../images/merit_white.png");
  background-repeat: no-repeat;
  background-position: center center;
  width: 32%;
  height: 190px;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  color: #000064;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .merit .merit_copy_set .merit_copy {
    font-size: 1.6rem;
    height: 150px;
    border-radius: 25px;
  }
}
@media (max-width: 480px) {
  .merit .merit_copy_set .merit_copy {
    width: 100%;
    height: 70px;
    background-image: url("../images/merit_white_sp.png");
    background-position: left -60px center;
    border-radius: 10px;
  }
  .merit .merit_copy_set .merit_copy .tbbr {
    display: none;
  }
  .merit .merit_copy_set .merit_copy br {
    display: none;
  }
}

/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  ABOUTセクション (_about.scss)
================================================== */
#about_wrap {
  background-color: white;
  text-align: center;
}

.about {
  width: 100%;
  position: relative;
  padding-bottom: 180px;
  background-image: url("../images/about_footset.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  overflow: hidden;
}
@media (max-width: 480px) {
  .about {
    background-size: auto 200px;
    padding-bottom: 100px;
  }
}

.about_head {
  overflow: hidden;
}
.about_head p.marquee-content {
  color: #f8f2ef;
  font-family: "Poppins", sans-serif;
  font-size: 20rem;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  animation: marquee-loop 300s linear infinite;
}
@media (max-width: 768px) {
  .about_head p.marquee-content {
    font-size: 15rem;
  }
}
@media (max-width: 480px) {
  .about_head p.marquee-content {
    font-size: 10rem;
  }
}

@keyframes marquee-loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
h2.about_title {
  font-size: 3.4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  h2.about_title {
    padding-top: 0px;
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  h2.about_title {
    padding-top: 0px;
    font-size: 2.4rem;
  }
}

.about_box_wrap {
  width: 90%;
  margin: 120px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 3%;
}
@media (max-width: 1024px) {
  .about_box_wrap {
    flex-direction: column;
    margin-top: 0;
  }
}
.about_box_wrap .about_box {
  background-color: #f8f2ef;
  border-radius: 15px;
  border: solid 1px #689ae8;
  width: 30%;
  padding: 20px;
  position: relative;
  padding-top: 80px;
  z-index: 10;
}
@media (max-width: 1024px) {
  .about_box_wrap .about_box {
    width: 90%;
    margin: 80px auto 0;
  }
}
.about_box_wrap .about_box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-repeat: no-repeat;
}
.about_box_wrap .about_box.abb1::before {
  width: 234px;
  height: 168px;
  background-image: url("../images/about_ill1.png");
}
.about_box_wrap .about_box.abb2::before {
  width: 206px;
  height: 155px;
  background-image: url("../images/about_ill2.png");
}
.about_box_wrap .about_box.abb3::before {
  width: 235px;
  height: 159px;
  background-image: url("../images/about_ill3.png");
}
.about_box_wrap .about_box h3 {
  width: 90%;
  margin: 20px auto;
  padding: 5px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #000064;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .about_box_wrap .about_box h3 {
    width: 90%;
  }
}
.about_box_wrap .about_box p {
  text-align: left;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .about_box_wrap .about_box p {
    font-size: 1.6rem;
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .about_box_wrap .about_box p {
    width: 100%;
  }
}

.about_foot {
  background-color: #7aaee8;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .about_foot {
    padding-bottom: 30px;
  }
}
.about_foot p {
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.showcase_bnr_pc, .showcase_bnr_sp {
  display: block;
  max-width: 730px;
  margin: 0 auto;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  transition: transform 0.3s ease;
}
.showcase_bnr_pc:hover, .showcase_bnr_sp:hover {
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .showcase_bnr_pc, .showcase_bnr_sp {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .showcase_bnr_pc, .showcase_bnr_sp {
    margin-top: -20px;
  }
}

@media (max-width: 480px) {
  .showcase_bnr_pc {
    display: none;
  }
}

@media (min-width: 480px) {
  .showcase_bnr_sp {
    display: none;
  }
}

.knowledge_bnr {
  display: block;
  max-width: 640px;
  margin: 50px auto 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.knowledge_bnr:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .knowledge_bnr {
    width: 90%;
  }
}

/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  MOVIEセクション (_movie.scss)
================================================== */
.movie {
  background-color: #7aaee8;
}
.movie video {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
@media (max-width: 768px) {
  .movie video {
    width: 90%;
  }
}

/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  GUIDE / FLOW / Q&Aセクション (_guide.scss)
================================================== */
.guide_wrap_bg {
  background-color: #f7f1ee;
}

.guide_wrap {
  background-color: #7aaee8;
  border-radius: 0 0 40px 40px;
  padding: 150px 0 50px;
}
@media (max-width: 768px) {
  .guide_wrap {
    padding: 70px 0 30px;
  }
}
.guide_wrap .guide_box {
  max-width: 1000px;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 25px;
  padding: 70px 30px;
  box-shadow: 0 0 10px #435eb6;
  position: relative;
}
@media (max-width: 768px) {
  .guide_wrap .guide_box {
    padding-bottom: 30px;
  }
}
.guide_wrap .guide_box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 145px;
  background-image: url("../images/asirai1.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 5px;
}
.guide_wrap .guide_head h2.guide_title {
  font-size: 3.4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .guide_wrap .guide_head h2.guide_title {
    font-size: 2.6rem;
  }
}
@media (max-width: 480px) {
  .guide_wrap .guide_head h2.guide_title {
    font-size: 2.4rem;
  }
}
.guide_wrap .guide_head p {
  text-align: center;
}
@media (max-width: 768px) {
  .guide_wrap .guide_head p {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .guide_wrap .guide_head p {
    font-size: 1.8rem;
  }
}

.guidein_h3 {
  text-align: center;
  margin: 50px auto;
  padding: 15px;
  width: 90%;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .guidein_h3 {
    width: 95%;
  }
}
@media (max-width: 480px) {
  .guidein_h3 {
    width: 100%;
  }
}

.guidein_h3 h3 {
  font-size: 1.8rem;
  color: #fff;
}

#flow_wrap .flow .flow_set {
  width: 80%;
  margin: 40px auto;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  #flow_wrap .flow .flow_set {
    width: 90%;
  }
}
@media (max-width: 480px) {
  #flow_wrap .flow .flow_set {
    flex-direction: column;
    width: 100%;
  }
}
#flow_wrap .flow .flow_set .flow_photo {
  position: relative;
}
@media (max-width: 768px) {
  #flow_wrap .flow .flow_set .flow_photo {
    width: 40%;
  }
}
@media (max-width: 480px) {
  #flow_wrap .flow .flow_set .flow_photo {
    width: 100%;
  }
}
#flow_wrap .flow .flow_set .flow_photo .flow_photo_inner {
  width: 230px;
  height: 176px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #flow_wrap .flow .flow_set .flow_photo .flow_photo_inner {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 480px) {
  #flow_wrap .flow .flow_set .flow_photo .flow_photo_inner {
    height: 170px;
  }
}
#flow_wrap .flow .flow_set .flow_photo .flow_photo_inner img {
  width: 100%;
}
#flow_wrap .flow .flow_set .flow_photo .flow_num {
  display: block;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #00a79b;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  position: absolute;
  left: -25px;
  top: -25px;
}
#flow_wrap .flow .flow_set .flow_txt {
  width: 470px;
}
@media (max-width: 768px) {
  #flow_wrap .flow .flow_set .flow_txt {
    width: 55%;
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  #flow_wrap .flow .flow_set .flow_txt {
    width: 100%;
  }
}
#flow_wrap .flow .flow_set .flow_txt h4 {
  color: #00a79b;
  margin-bottom: 20px;
}

.faq {
  margin: 30px auto;
  max-width: 80%;
}
@media (max-width: 768px) {
  .faq {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .faq {
    max-width: 100%;
  }
}
.faq .faq_box {
  margin: 30px 0;
  border: solid 1px #ccc;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(43, 85, 160, 0.15);
}
@media (max-width: 768px) {
  .faq .faq_box {
    width: 100%;
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .faq .faq_box {
    width: 100%;
    font-size: 1.6rem;
    margin: 15px 0;
  }
}
.faq .faq_box h4 {
  color: #00a79b;
  margin-bottom: 20px;
}

/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  NEWS (_nesa.scss)
================================================== */
#news_wrap {
  width: 100%;
  padding: 50px 0;
}
#news_wrap .news {
  position: relative;
  max-width: 800px;
  margin: 50px auto;
}
#news_wrap .news::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 145px;
  background-image: url("../images/asirai1.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 5px;
}
#news_wrap .news h2 {
  font-size: 3.4rem;
  font-weight: 900;
  text-align: center;
  padding: 100px 0 20px 0;
  margin: 0 20px;
  border-bottom: solid 1px #dcc2a7;
}
@media (max-width: 768px) {
  #news_wrap .news h2 {
    font-size: 2.6rem;
  }
}
@media (max-width: 480px) {
  #news_wrap .news h2 {
    font-size: 2.4rem;
  }
}
#news_wrap .news ul article {
  display: flex;
  flex-wrap: wrap;
  margin: 0 20px;
  padding: 8px;
  background-color: #fff;
  text-align: left;
  border-bottom: solid 1px #dcc2a7;
}
@media (max-width: 768px) {
  #news_wrap .news ul article {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  #news_wrap .news ul article {
    flex-direction: column;
  }
}
#news_wrap .news time {
  width: 20%;
  padding-right: 8px;
}
@media (max-width: 480px) {
  #news_wrap .news time {
    border: none;
    width: 100%;
  }
}

/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  フッター (_footer.scss)
================================================== */
footer {
  width: 100%;
  background-color: #f7f1ee;
  padding: 70px 30px 30px;
  display: flex;
  gap: 5%;
  justify-content: center;
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
  }
}
footer .foot_menu {
  width: 30%;
  max-width: 300px;
}
@media (max-width: 1024px) {
  footer .foot_menu {
    width: 48%;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  footer .foot_menu {
    width: 100%;
    max-width: 700px;
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  footer .foot_menu {
    width: 100%;
    max-width: 450px;
  }
}
footer .foot_menu .foot_logo img {
  width: 190px;
  display: block;
  margin: 0 auto;
}
footer .foot_menu .foot_logo h3 {
  text-align: center;
  font-size: 1.4rem;
  color: #000;
}
footer .foot_menu ul {
  text-align: center;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  footer .foot_menu ul {
    display: flex;
    width: 100%;
  }
}
@media (max-width: 480px) {
  footer .foot_menu ul {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  footer .foot_menu ul li {
    width: 33%;
  }
}
@media (max-width: 480px) {
  footer .foot_menu ul li {
    width: 100%;
  }
}
footer .foot_menu ul li a {
  display: block;
  width: 90%;
  height: 50px;
  text-align: center;
  border-radius: 25px;
  margin: 10px auto;
  padding: 10px;
  text-decoration: none;
}
@media (max-width: 768px) {
  footer .foot_menu ul li a {
    padding: 13px 0 0 0;
    width: 95%;
  }
}
footer .foot_menu ul li a.foot_top {
  background-color: #fff;
  border: solid 1px #ccc;
  color: #000064;
  font-weight: bold;
}
footer .foot_menu ul li a.foot_search, footer .foot_menu ul li a.foot_form {
  color: #fff;
  font-weight: bold;
}
footer .foot_menu .foot_tel {
  margin-top: 30px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #000064;
  text-align: center;
  color: #000;
}
@media (max-width: 768px) {
  footer .foot_menu .foot_tel {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
footer .foot_menu .foot_tel .foot_tel_txt {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 5px;
}
footer .foot_menu .foot_tel .foot_tel_num {
  font-size: 2.6rem;
  font-weight: bold;
  color: #000064;
  margin-top: -10px;
}

.foot_map {
  width: 50%;
}
@media (max-width: 768px) {
  .foot_map {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .foot_map #foot_add {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .foot_map #foot_add {
    text-align: left;
  }
}

.foot_map iframe {
  width: 100%;
  height: 250px;
}

/* ページの上部に戻るボタン */
.to-top-button {
  /* どの要素よりも手前に来るように高いz-indexを設定 */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  /* デフォルトでは非表示 */
  opacity: 1;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  /* ボタンのスタイル（色、パディング、角丸など） */
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background-color: rgba(0, 0, 100, 0.7); /* 背景色 */
  color: #fff; /* 文字色 */
  border-radius: 50%;
  text-decoration: none;
}

/* JavaScriptでクラスが付与されたときに表示するスタイル */
.to-top-button.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  看板検索ページ (_pickup.scss)
================================================== */
main.kanban {
  background-color: #fff;
}

.topimg {
  background-image: url(../kanban/images/head.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.topimg img {
  display: block;
  max-width: 650px;
}
.topimg h1 {
  text-align: center;
  font-size: 3.8rem;
}
.topimg span.smalltitle {
  font-size: 2.4rem;
}

/* -------------------------------------
 * 検索
 * ------------------------------------- */
.search_wrapper {
  padding-bottom: 70px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center 100%;
}
@media (max-width: 768px) {
  .search_wrapper {
    background-position: center 90%;
  }
}
@media (max-width: 480px) {
  .search_wrapper {
    background-position: center 80%;
  }
}

/* 外枠のスタイル */
.search-widget {
  /* 外側のオレンジ*/
  background-color: #f9973b;
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  margin: -100px auto 0;
}
@media (max-width: 768px) {
  .search-widget {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .search-widget {
    width: 90%;
  }
}

/* -------------------------------------
 * 1. 大タブ (エリアで探す/効果で探す)
 * ------------------------------------- */
.main-tabs-header {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

/* 基本のタブスタイル（非アクティブ状態） */
.main-tab-button {
  /* 画像の「▼ エリアで探す」ボタンのスタイル */
  background-color: white;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  border-radius: 10px 10px 0 0; /* 上辺だけ角丸 */
  font-size: 1.1em;
  font-weight: bold;
  color: #000064;
  transition: all 0.2s; /* 動きを滑らかに */
  transform: translateY(2px); /* 下に少し沈ませる */
}
@media (max-width: 768px) {
  .main-tab-button {
    font-size: 1.4rem;
  }
}

/*  基本のタブスタイル（アクティブ状態） */
.main-tab-button.active {
  background-color: #ffffff; /* パキッと白く */
  color: #000064;
  padding: 12px 25px; /* 非アクティブより高く、広く */
  font-size: 1.1em;
  font-weight: bold;
  /* 沈み込みを戻す */
  transform: translateY(0);
  /* コンテンツエリアとの一体感を出すため、z-indexで一番手前に */
  position: relative;
  z-index: 2;
  /* 軽い影をつけるとより手前にあるように見えます */
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* -------------------------------------
 * 2. 大タブの中身 (全体コンテナ)
 * ------------------------------------- */
.main-tab-content-wrapper {
  /* 内側の薄いオレンジのコンテナ */
  background-color: #fdd5b1;
  padding: 20px;
  border-radius: 0 10px 10px 10px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  margin-top: -1px; /* タブとコンテンツの隙間を消して合体させる */
}

/* -------------------------------------
 * 3. 小タブ (県名ボタン)
 * ------------------------------------- */
.sub-tabs-header {
  display: flex;
  flex-wrap: wrap; /* ボタンが多すぎる場合に折り返す */
  gap: 10px;
  margin-bottom: 25px;
}

.sub-tab-button {
  /* 「佐賀県」「福岡県」ボタンのスタイル */
  background-color: white;
  color: #000064;
  border: 1px solid #ccc;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 20px; /* 丸いボタン */
  font-weight: bold;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .sub-tab-button {
    font-size: 1.6rem;
  }
}

.sub-tab-button.active {
  /* アクティブな小タブ */
  background-color: #000064; /* 濃い青/紺色 */
  color: white;
  border-color: #000064;
}
@media (max-width: 768px) {
  .sub-tab-button.active {
    font-size: 1.4rem;
  }
}

/* 地域名リストのスタイル */
.sub-tab-content-area a {
  color: #000064;
  text-decoration: none;
  margin: 5px 10px;
  white-space: nowrap;
  font-weight: bold;
  line-height: 2;
}

/* 非表示設定 */
.main-tab-pane, .sub-tab-pane {
  display: none;
}

.main-tab-pane.active, .sub-tab-pane.active {
  display: block;
}

/* 検索内CTA */
.kanban_search_cta a {
  display: block;
  width: 500px;
  margin: 20px auto 0;
}
.kanban_search_cta a img {
  width: 100%;
}
@media (max-width: 768px) {
  .kanban_search_cta a {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .kanban_search_cta a {
    width: 100%;
  }
}
.kanban_search_cta p {
  text-align: center;
  margin: 0;
}

.kanbanlist_kanbantop {
  background-color: #ecf2f8;
  padding: 30px 0 50px 0;
}
@media (max-width: 768px) {
  .kanbanlist_kanbantop {
    margin: 0 auto;
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .kanbanlist_kanbantop {
    margin-bottom: 0px;
    padding-bottom: 0;
  }
}
.kanbanlist_kanbantop p {
  text-align: center;
  margin: 0 0 40px 0;
}
@media (max-width: 768px) {
  .kanbanlist_kanbantop p {
    width: 90%;
  }
}

/* タイトル (h2) */
.kanbanlist_title {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 900;
  margin: 0 auto;
  letter-spacing: 3px;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .kanbanlist_title {
    font-size: 2.6rem;
  }
}
@media (max-width: 480px) {
  .kanbanlist_title {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
}

/* サブタイトル (h3) */
.kanbanlist_txt {
  font-size: 2.2rem;
  font-weight: bolder;
  color: #000064;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .kanbanlist_txt {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .kanbanlist_txt {
    font-size: 1.6rem;
  }
}

.kanbanlist_txt_box {
  display: block;
  width: 800px;
  margin: 0 auto;
  background-image: linear-gradient(90deg, rgba(0, 87, 169, 0.8), rgba(63, 159, 177, 0.8), rgba(0, 55, 160, 0.8));
  padding: 8px;
  color: #fff;
}
@media (max-width: 768px) {
  .kanbanlist_txt_box {
    width: 90%;
  }
}

.search_town {
  max-width: 1000px;
  margin: 50px auto;
}
@media (max-width: 768px) {
  .search_town {
    width: 90%;
  }
}
.search_town h2 {
  padding: 6px 25px;
  background-image: linear-gradient(90deg, rgb(245, 123, 73), rgb(249, 174, 82));
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .search_town h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .search_town h2 {
    font-size: 1.6rem;
  }
}

.pref2 {
  background-color: #f7f1ee;
  padding: 30px 0;
  margin: 20px 0;
}

/* ----------------- */
/* 3. カードリストのラッパー (Flexbox) */
.kanbancard_wrap {
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin: 20px auto;
}
@media (max-width: 768px) {
  .kanbancard_wrap {
    width: 90%;
    gap: 20px 2%;
    justify-content: space-around;
  }
}
.kanbancard_wrap {
  /* 4. 個別のリンクブロック */
}
.kanbancard_wrap article {
  width: calc((100% - 60px) / 4);
  text-decoration: none;
  color: #000064;
  position: relative;
}
@media (max-width: 768px) {
  .kanbancard_wrap article {
    flex-basis: 48%;
  }
}
.kanbancard_wrap article .is-sold::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 暗幕の濃さ */
  z-index: 2;
  pointer-events: none; /* 下のリンクをクリックできるようにする場合はこれ */
}
.kanbancard_wrap article .is-sold::after {
  content: ""; /* テキストは空にする */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../kanban/images/onrei_small.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 60%; /* カード幅に対して60%の大きさ */
  height: 60%; /* カード高さに対して60%の大きさ */
  z-index: 3;
}
.kanbancard_wrap .kanbancard_link_block {
  display: block;
  width: 100%;
  /* カードの中身 (.pick_sets) */
}
.kanbancard_wrap .kanbancard_link_block .kanbancard_sets {
  transition: all 0.3s ease;
  padding-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 8px rgba(43, 85, 160, 0.3);
  /* 画像エリア*/
}
.kanbancard_wrap .kanbancard_link_block .kanbancard_sets .kanbancard_img {
  width: 100%;
  height: auto;
  padding-top: 81.8%;
  background-color: #fff;
  position: relative;
}
.kanbancard_wrap .kanbancard_link_block .kanbancard_sets .kanbancard_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.kanbancard_wrap .kanbancard_link_block .kanbancard_sets .kanbancard_img {
  /* 画像内アピールエリア */
}
.kanbancard_wrap .kanbancard_link_block .kanbancard_sets .kanbancard_img span.kanbancard_appeal {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  background-color: #000064;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 5px 10px;
}
.kanbancard_wrap .kanbancard_link_block .kanbancard_sets {
  /* テキストエリア */
}
.kanbancard_wrap .kanbancard_link_block .kanbancard_sets .kanbancard_area, .kanbancard_wrap .kanbancard_link_block .kanbancard_sets .kanbancard_name {
  padding: 5px 10px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .kanbancard_wrap .kanbancard_link_block .kanbancard_sets .kanbancard_area, .kanbancard_wrap .kanbancard_link_block .kanbancard_sets .kanbancard_name {
    font-size: 1.6rem;
    padding: 0;
  }
}
@media (max-width: 480px) {
  .kanbancard_wrap .kanbancard_link_block .kanbancard_sets .kanbancard_area, .kanbancard_wrap .kanbancard_link_block .kanbancard_sets .kanbancard_name {
    font-size: 1.4rem;
    padding: 0;
  }
}
.kanbancard_wrap .kanbancard_link_block .kanbancard_sets .kanbancard_name {
  border-top: dotted 1px #2c5e9a;
}
.kanbancard_wrap .kanbancard_link_block {
  /* ホバーアクション (リンクブロックにホバーしたら、中身のpick_setsが変化) */
}
.kanbancard_wrap .kanbancard_link_block:hover .kanbancard_sets {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 8px rgba(43, 85, 160, 0.8);
}

/* -------ご契約御礼のポップアップ---------- */
/* 背景の暗幕 */
.modal {
  /* display: none; */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* 背景を暗く */
}

/* ポップアップの中身 */
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s;
}

/* フェードインアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 閉じるボタン（×） */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* 契約御礼の文字装飾 */
.modal-content h2 {
  color: #d9534f; /* 御礼らしい赤系やゴールドなど */
  margin-bottom: 15px;
}

/* フローティングバナー */
/* --- PC用フローティングバナーのスタイル --- */
.side-floating-banner {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  line-height: 0;
  /* 初期状態は隠しておく */
  /* opacity: 0; */
  /* visibility: hidden; */
  /* 初期状態は隠しておく */
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

/* スクロール後にJSで追加するクラス */
.side-floating-banner.is-show {
  opacity: 1;
  visibility: visible;
}

.side-floating-banner a {
  display: block;
  /* box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);  */
}

.side-floating-banner a:hover {
  opacity: 0.8; /* マウスを乗せた時に少し薄くする */
}

.side-floating-banner img {
  width: 80px; /* 指定の横幅 */
  height: 307px; /* 指定の高さ */
  display: block;
}

/* --- タブレット・スマホ（1024px以下）では非表示 --- */
@media screen and (max-width: 1024px) {
  .side-floating-banner {
    display: none;
  }
}
/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  看板個別ページ (_pickup.scss)
================================================== */
/* ================================================
  hero地図画像と看板名
================================================== */
.pagehead {
  width: 100%;
  padding-top: 40%;
  min-height: 500px;
  position: relative;
}
@media (max-width: 768px) {
  .pagehead {
    padding-top: 50%;
  }
}
.pagehead .pagehead_img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
}
.pagehead .pagehead_img img {
  display: block;
  height: 100%;
}
.pagehead .head_iconset {
  position: absolute;
  bottom: 0;
  left: 10px;
}
.pagehead .head_iconset img {
  display: inline-block;
  width: 100px;
}
@media (max-width: 1024px) {
  .pagehead .head_iconset img {
    width: 75px;
  }
}

/* ================================================
  section1
================================================== */
.pagehead_namebox {
  width: 100%;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background-color: #f9973b;
  padding: 20px;
}
.pagehead_namebox .kanban_name_set {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.pagehead_namebox .kanban_name_set .kanban_title, .pagehead_namebox .kanban_name_set .kanban_name {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagehead_namebox .kanban_name_set .kanban_title {
  background-color: #fff;
  width: 100px;
  letter-spacing: 3px;
  color: #000064;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .pagehead_namebox .kanban_name_set .kanban_title {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .pagehead_namebox .kanban_name_set .kanban_title {
    width: 60px;
    height: auto;
    writing-mode: vertical-rl;
  }
}
.pagehead_namebox .kanban_name_set .kanban_name h1 {
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .pagehead_namebox .kanban_name_set .kanban_name {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .pagehead_namebox .kanban_name_set .kanban_name {
    font-size: 1.8rem;
  }
}

.kanban_intro {
  text-align: center;
  padding: 20px;
  background-color: #fff;
}

.head_copy {
  padding: 50px 0;
  color: #000064;
  text-align: center;
  text-shadow: 0 0 10px #fff;
}
@media (max-width: 480px) {
  .head_copy {
    padding-top: 0px;
  }
}
.head_copy h2 {
  font-size: 3.2rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .head_copy h2 {
    font-size: 2.4rem;
  }
}

/* ================================================
  section2
================================================== */
.sec2_wrap {
  max-width: 1000px;
  margin: 50px auto;
  text-align: center;
  padding-bottom: 50px;
}
@media (max-width: 1024px) {
  .sec2_wrap {
    max-width: 90%;
  }
}
.sec2_wrap .appeal_set {
  margin-bottom: 40px;
}
.sec2_wrap .appeal_set figure {
  position: relative;
}
.sec2_wrap .appeal_set figure figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .sec2_wrap .appeal_set figure figcaption {
    display: none;
  }
}
.sec2_wrap .appeal_set .appeal_txt {
  line-height: 1.8;
  position: relative;
}
.sec2_wrap .appeal_set .appeal_txt h2 {
  font-size: 2.8rem;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .sec2_wrap .appeal_set .appeal_txt h2 {
    font-size: 2rem;
  }
}
.sec2_wrap .appeal_set .appeal_txt p {
  width: 680px;
  margin: 0 auto 30px;
  text-align: left;
  line-height: 2;
}
@media (max-width: 768px) {
  .sec2_wrap .appeal_set .appeal_txt p {
    width: 80%;
    font-size: 1.6rem;
  }
}
.sec2_wrap .appeal_set .appeal_txt strong {
  text-decoration: underline;
}

.marker {
  background-image: linear-gradient(transparent 60%, rgba(255, 255, 0, 0.4) 60%);
  background-repeat: no-repeat;
  background-position: 0 90%;
  background-size: 100% 1em; /* 幅100%、高さはフォントサイズと同じ(1em)の太さに */
}

.target_txt {
  background-color: #fff;
}

.sama {
  font-size: 1.6rem;
}

.detail_map {
  width: 100%;
  height: 400px;
  margin-top: 40px;
  background-color: #000064;
}
.detail_map iframe {
  width: 100%;
  height: 100%;
}

.kanban_page_foot p {
  padding: 40px 0 0 0;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}

/* ================================================
  section3
================================================== */
.section3_wrap h2, .section4_wrap h2 {
  font-size: 2.8rem;
  padding: 20px 0;
  text-align: center;
  position: relative;
}

.section3_wrap {
  text-align: center;
}
@media (max-width: 768px) {
  .section3_wrap p {
    font-size: 1.6rem;
  }
}
.section3_wrap .location {
  max-width: 940px;
  background: #fff;
  border-radius: 25px;
  padding: 30px;
  margin: 0 auto 50px;
}
.section3_wrap .location .location_area {
  display: flex;
  justify-content: center;
  gap: 20px;
  text-align: left;
}
.section3_wrap .location .location_area .location_area_set {
  flex: 1;
}
.section3_wrap .location .location_area .location_area_set img {
  width: 100%;
  height: 200px;
  background-color: #000064;
}
.section3_wrap .location .location_area .location_area_set h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.section3_wrap .location .location_area .location_area_set p {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .section3_wrap .location .location_area .location_area_set p {
    font-size: 1.4rem;
  }
}
.section3_wrap .location .location_detail {
  font-size: 1.6rem;
  text-align: left;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}
@media (max-width: 768px) {
  .section3_wrap .location .location_detail {
    flex-direction: column;
    width: 80%;
  }
}
@media (max-width: 480px) {
  .section3_wrap .location .location_detail {
    width: 100%;
  }
}
.section3_wrap .location .location_detail .location_detail_map {
  width: 48%;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .section3_wrap .location .location_detail .location_detail_map {
    width: 100%;
  }
}
.section3_wrap .location .location_detail .location_detail_num1 .location_detail_num_set, .section3_wrap .location .location_detail .location_detail_num2 .location_detail_num_set {
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
}
.section3_wrap .location .location_detail .location_detail_num1 .location_detail_num_set img, .section3_wrap .location .location_detail .location_detail_num2 .location_detail_num_set img {
  width: 120px;
  height: 120px;
}
.section3_wrap .location .location_detail .location_detail_num1 .location_detail_num_set .location_detail_num_txt h3, .section3_wrap .location .location_detail .location_detail_num2 .location_detail_num_set .location_detail_num_txt h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.section3_wrap .location .location_detail .location_detail_num1 {
  width: 48%;
}
@media (max-width: 768px) {
  .section3_wrap .location .location_detail .location_detail_num1 {
    width: 100%;
  }
}
.section3_wrap .location .location_detail .location_detail_num2 {
  width: 100%;
  display: flex;
  gap: 4%;
  flex: 1;
}
@media (max-width: 768px) {
  .section3_wrap .location .location_detail .location_detail_num2 {
    flex-direction: column;
  }
}

/* ================================================
  section4
================================================== */
.section4_wrap {
  width: 100%;
  background-color: #fff;
  padding: 50px 0;
}
.section4_wrap .kanban_page_osusume_txt {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  margin: 50px 0;
}
.section4_wrap table {
  width: 70%;
  margin: 30px auto;
  font-weight: normal;
  background: #fff;
  border-collapse: collapse;
  text-align: left;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .section4_wrap table {
    width: 90%;
  }
}
.section4_wrap table th, .section4_wrap table td {
  border: solid 1px #ccc;
  padding: 10px;
}
.section4_wrap table th {
  font-weight: normal;
  width: 30%;
}
.section4_wrap .kanban_size {
  width: 70%;
  margin: 30px auto;
}
.section4_wrap .kanban_size img {
  width: 100%;
}

/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  看板検索ページ (_pickup.scss)
================================================== */
/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
 お問い合わせページ (_contact.scss)
================================================== */
.topimg_contact {
  background-image: url(../contact/images/contact_head_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .topimg_contact {
    height: 100px;
  }
}

.contact_lead {
  width: 800px;
  margin: 30px auto 0;
  text-align: center;
}
@media (max-width: 768px) {
  .contact_lead {
    width: 90%;
  }
}
.contact_lead h1 {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact_lead h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px) {
  .contact_lead h1 {
    font-size: 2.4rem;
  }
}

.contact_form {
  width: 640px;
  margin: 0 auto;
  padding: 50px 0;
}
@media (max-width: 768px) {
  .contact_form {
    width: 100%;
  }
}

/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  施工例ページ (_showcase.scss)
================================================== */
/* ============  施工例一覧ページ  ============ */
.showcase__header {
  width: 100%;
  height: 40vw;
}
@media (max-width: 1024px) {
  .showcase__header {
    height: 60vw;
  }
}
@media (max-width: 480px) {
  .showcase__header {
    height: 80vw;
  }
}
.showcase__header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/page-header.png");
  background-position: center center;
  background-size: cover;
}
.showcase__header-title {
  width: 640px;
  height: 118px;
  font-size: 3.4rem;
  letter-spacing: 4px;
  padding-top: 24px;
  color: #fff;
  text-align: center;
  background: url("../images/page-title.png");
  background-position: center center;
  background-size: cover;
}
@media (max-width: 1024px) {
  .showcase__header-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .showcase__header-title {
    width: 85%;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 30px;
    padding-top: 34px;
  }
}
@media (max-width: 480px) {
  .showcase__header-title {
    font-size: 2.4rem;
  }
}
.showcase__archive {
  padding-top: 0;
  text-align: center;
}
.showcase__archive-intro {
  background-color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  border-radius: 20px;
  margin: -100px auto 0;
  padding: 50px 30px;
  position: relative;
}
@media (max-width: 1024px) {
  .showcase__archive-intro {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .showcase__archive-intro {
    width: 90%;
    margin: -50px auto 0;
    padding: 50px 15px;
  }
}
.showcase__archive-intro > h2 {
  font-size: 3.4rem;
  font-weight: 900;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .showcase__archive-intro > h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px) {
  .showcase__archive-intro > h2 {
    font-size: 2.4rem;
  }
}
.showcase__archive-intro > p {
  line-height: 2;
  font-weight: 700;
}
.showcase__archive-intro::before {
  content: "";
  position: absolute;
  bottom: 95%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background-color: #009791;
}
@media (max-width: 768px) {
  .showcase__archive-intro::before {
    display: none;
  }
}
.showcase__archive-feature {
  max-width: 920px;
  margin: 100px auto;
}
@media (max-width: 1024px) {
  .showcase__archive-feature {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .showcase__archive-feature {
    margin: 50px auto;
  }
}
.showcase__archive-feature h2 {
  margin: 50px auto;
}
@media (max-width: 480px) {
  .showcase__archive-feature h2 {
    margin: 20px auto;
  }
}
.showcase__archive-feature img {
  width: 100%;
  display: none;
}
.showcase__archive-feature img.pcimg {
  display: block;
}
@media (max-width: 480px) {
  .showcase__archive-feature img.pcimg {
    display: none;
  }
}
.showcase__archive-feature img.spimg {
  display: none;
}
@media (max-width: 480px) {
  .showcase__archive-feature img.spimg {
    display: block;
  }
}
.showcase__archive-feature a {
  display: block;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.showcase__archive-feature a:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
.showcase__archive-inner {
  max-width: 920px;
  margin: 100px auto;
}
@media (max-width: 1024px) {
  .showcase__archive-inner {
    width: 80%;
  }
}
.showcase__archive-inner h2 {
  margin: 50px auto;
}
@media (max-width: 480px) {
  .showcase__archive-inner h2 {
    margin: 20px auto;
  }
}
.showcase__archive-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.showcase__archive-list li {
  display: block;
  width: 440px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .showcase__archive-list li {
    width: calc(50% - 20px);
    flex-shrink: 1;
  }
}
@media (max-width: 768px) {
  .showcase__archive-list li {
    width: 100%;
    flex-direction: column;
  }
}
.showcase__archive-list li h3 {
  padding: 20px 10px;
  font-size: 1.8rem;
}
.showcase__footer {
  padding: 50px 0;
  background-color: #fff;
}

/* ============  個別インタビューページ自衛隊ベース  ============ */
.interview {
  color: #333;
}
.interview__header {
  width: 100%;
  height: 40vw;
}
@media (max-width: 768px) {
  .interview__header {
    height: 60vw;
  }
}
@media (max-width: 480px) {
  .interview__header {
    height: 80vw;
  }
}
.interview__header-inner {
  width: 100%;
  height: 100%;
}
.interview__header-title {
  margin-top: -80px;
}
@media (max-width: 768px) {
  .interview__header-title {
    margin-top: -60px;
  }
}
@media (max-width: 480px) {
  .interview__header-title {
    margin-top: -40px;
  }
}
.interview__header-title .interview__header-voiceset {
  font-weight: 700;
  margin-top: -30px;
  line-height: 1;
  text-align: center;
}
.interview__header-title .interview__header-voiceset span {
  color: #333;
  font-size: clamp(8rem, 15vw, 16rem);
}
.interview__header-title .interview__header-voiceset p {
  color: #f9973b;
  font-size: clamp(4rem, 7vw, 4.8rem);
}
.interview__header-title h1 {
  background-color: #f9973b;
  padding: 10px;
  font-size: 30px;
  color: #fff;
  max-width: 900px;
  margin: 20px auto;
  text-align: center;
  display: block;
  z-index: 10;
  position: relative;
}
@media (max-width: 1024px) {
  .interview__header-title h1 {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .interview__header-title h1 {
    font-size: 2rem;
  }
}
.interview__intro {
  background-color: #f7f1ee;
  padding: 200px 0 50px;
}
.interview__intro-inner {
  max-width: 800px;
  margin: 50px auto;
}
@media (max-width: 1024px) {
  .interview__intro-inner {
    width: 90%;
  }
}
.interview__intro-txtset {
  margin-top: -50px;
  display: flex;
}
@media (max-width: 480px) {
  .interview__intro-txtset {
    margin-top: -30px;
  }
}
.interview__intro-txtset h2 {
  width: 40%;
  padding: 80px 20px 30px 0;
}
@media (max-width: 480px) {
  .interview__intro-txtset h2 {
    writing-mode: vertical-rl;
    width: 30%;
    padding-top: 60px;
  }
}
.interview__intro-txtset p {
  padding: 80px 0 30px 20px;
  border-left: solid 2px #f9973b;
  width: 60%;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .interview__intro-txtset p {
    width: 70%;
    padding-top: 60px;
  }
}
.interview__intro-txtset span.intervew__url {
  display: block;
  background-color: #fff;
  padding: 6px;
  margin-top: 20px;
  font-size: 1.4rem;
  overflow-wrap: break-word;
  word-break: break-all;
}
.interview__contents {
  background: #fff;
  padding: 50px 0 100px;
}
.interview__contents-inner {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .interview__contents-inner {
    width: 85%;
  }
}
.interview__contents-title {
  color: #f9973b;
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.interview__contents-title .big-int {
  font-weight: 700;
  font-size: clamp(6rem, 4vw, 10rem);
}
.interview__contents-item {
  margin: 60px 0;
}
.interview__contents-item h3 {
  font-size: 1.8rem;
}
.interview__contents-item p {
  border-left: 2px solid #f9973b;
  padding-left: 15px;
  margin: 20px 0 60px;
  line-height: 2;
  font-size: 1.6rem;
}
.interview__contents-item figure {
  margin: 50px 0;
}
.interview__contents-message {
  margin: 70px 0;
  border: solid 1px #f9973b;
  padding: 30px;
  border-radius: 20px;
  background-color: #f7f1ee;
}
.interview__contents-message h3 {
  text-align: center;
  color: #f9973b;
  padding-bottom: 20px;
}
.interview__contents-message p {
  line-height: 2;
  font-size: 1.6rem;
}
.interview .txt-marker {
  background: linear-gradient(transparent 70%, #fff2b2 60%);
  font-weight: bold;
  padding: 0 2px;
}

/* ============  個別インタビューページ　しわ歯科ベース  ============ */
.interview_siwa {
  color: #333;
}
.interview_siwa__header {
  width: 100%;
  height: 80vh;
}
@media (max-width: 768px) {
  .interview_siwa__header {
    height: 60vh;
  }
}
@media (max-width: 480px) {
  .interview_siwa__header {
    height: 60vh;
  }
}
.interview_siwa__header-inner {
  width: 100%;
  height: 100%;
}
.interview_siwa__header-copy {
  width: 450px;
  display: block;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .interview_siwa__header-copy {
    width: 80%;
    margin-bottom: 30px;
  }
}
.interview_siwa__header-title > p {
  text-align: center;
  font-weight: bold;
  line-height: 2.4;
  padding-top: 30px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .interview_siwa__header-title > p {
    font-size: 1.6rem;
  }
}
.interview_siwa__header-title .interview__header-voiceset {
  font-weight: 700;
  margin-top: -30px;
  line-height: 1;
  text-align: center;
}
.interview_siwa__header-title .interview__header-voiceset span {
  color: #333;
  font-size: clamp(8rem, 15vw, 16rem);
}
.interview_siwa__header-title .interview__header-voiceset p {
  color: #f9973b;
  font-size: clamp(4rem, 7vw, 4.8rem);
}
.interview_siwa__header-title h1 {
  background-color: #4fb15b;
  padding: 20px;
  font-size: 30px;
  color: #fff;
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
  display: block;
  z-index: 10;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .interview_siwa__header-title h1 {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .interview_siwa__header-title h1 {
    font-size: 2rem;
    margin: 0 auto;
  }
}
.interview_siwa__intro {
  background-color: #fff;
  padding: 70px 0 0;
}
@media (max-width: 480px) {
  .interview_siwa__intro {
    padding-top: 40px;
  }
}
.interview_siwa__intro-inner {
  background: linear-gradient(#fff 30%, #f7f1ee 30%);
  padding-bottom: 70px;
}
@media (max-width: 480px) {
  .interview_siwa__intro-inner {
    background: linear-gradient(#fff 10%, #f7f1ee 10%);
  }
}
.interview_siwa__intro-inner > img {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .interview_siwa__intro-inner > img {
    width: 90%;
  }
}
.interview_siwa__intro-txtset {
  max-width: 800px;
  margin: 0 auto;
  margin-top: -50px;
}
@media (max-width: 1024px) {
  .interview_siwa__intro-txtset {
    width: 90%;
  }
}
.interview_siwa__intro-txtset {
  display: flex;
}
@media (max-width: 480px) {
  .interview_siwa__intro-txtset {
    margin-top: -30px;
  }
}
.interview_siwa__intro-txtset h2 {
  width: 40%;
  padding: 80px 20px 30px 0;
}
@media (max-width: 480px) {
  .interview_siwa__intro-txtset h2 {
    writing-mode: vertical-rl;
    width: 30%;
    padding-top: 60px;
  }
}
.interview_siwa__intro-txtset p {
  padding: 80px 0 30px 20px;
  border-left: solid 2px #75b15b;
  width: 60%;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 480px) {
  .interview_siwa__intro-txtset p {
    width: 70%;
    padding-top: 60px;
  }
}
.interview_siwa__intro-txtset span.intervew__url {
  display: block;
  background-color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 1.4rem;
  overflow-wrap: break-word;
  word-break: break-all;
}
.interview_siwa__menu {
  background-image: url("../showcase/interview/int001_siwasika/images/int_back.webp");
  background-size: cover;
  background-position: center right;
  width: 100%;
  height: 500px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .interview_siwa__menu {
    height: 400px;
    background-position: center right;
  }
}
.interview_siwa__menu-title {
  font-size: 2.4rem;
}
@media (max-width: 480px) {
  .interview_siwa__menu-title {
    font-size: 1.6rem;
  }
}
.interview_siwa__menu-title .big-int {
  font-weight: 700;
  color: #4fb15b;
  font-size: clamp(6rem, 4vw, 10rem);
}
.interview_siwa__menu-block {
  width: 800px;
  display: flex;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .interview_siwa__menu-block {
    width: 94%;
  }
}
@media (max-width: 480px) {
  .interview_siwa__menu-block {
    display: none;
  }
}
.interview_siwa__menu-block a {
  padding: 10px 10px 30px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.interview_siwa__menu-block a:nth-child(odd) {
  background-color: #4fb15b;
  flex: 1;
}
.interview_siwa__menu-block a:nth-child(even) {
  background-color: #72c17c;
  flex: 1;
}
.interview_siwa__menu-block a:hover {
  background-color: #fff;
  color: #4fb15b;
}
.interview_siwa__menu-block li > span {
  color: #fee1a4;
  font-size: 4rem;
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.interview_siwa__contents {
  background: #fff;
  padding: 50px 0 100px;
}
@media (max-width: 480px) {
  .interview_siwa__contents {
    padding: 30px 0 50px;
  }
}
.interview_siwa__contents-inner {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .interview_siwa__contents-inner {
    width: 85%;
  }
}
.interview_siwa__contents-item {
  margin: 60px 0;
}
@media (max-width: 480px) {
  .interview_siwa__contents-item {
    margin: 30px 0;
  }
}
.interview_siwa__contents-item h3 {
  font-size: 1.8rem;
}
.interview_siwa__contents-item p {
  border-left: 2px solid #75b15b;
  padding-left: 15px;
  margin: 20px 0 60px;
  line-height: 2;
  font-size: 1.6rem;
}
.interview_siwa__contents-item figure {
  margin: 50px 0;
}
.interview_siwa__contents-itemlead {
  margin-top: 100px;
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .interview_siwa__contents-itemlead {
    flex-direction: column;
    margin-top: 50px;
  }
}
.interview_siwa__contents-itemlead > div {
  font-size: 12rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #4fb15b;
  padding-right: 16px;
  line-height: 1;
}
.interview_siwa__contents-itemlead h3 {
  flex-grow: 1;
  font-size: 2.8rem;
  color: #4fb15b;
  width: 100%;
}
@media (max-width: 480px) {
  .interview_siwa__contents-itemlead h3 {
    font-size: 2.2rem;
    text-align: center;
  }
}
.interview_siwa__contents-itemlead h3 > span {
  display: block;
  width: 100%;
  background-color: #4fb15b;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  padding: 8px 16px;
}
@media (max-width: 480px) {
  .interview_siwa__contents-itemlead h3 > span {
    font-size: 1.8rem;
  }
}
.interview_siwa__contents-message {
  margin: 70px 0;
  border: solid 1px #f9973b;
  padding: 30px;
  border-radius: 20px;
  background-color: #f7f1ee;
}
.interview_siwa__contents-message h3 {
  text-align: center;
  color: #f9973b;
  padding-bottom: 20px;
}
.interview_siwa__contents-message p {
  line-height: 2;
  font-size: 1.6rem;
}
.interview_siwa .txt-marker {
  background: linear-gradient(transparent 70%, #fff2b2 60%);
  font-weight: bold;
  padding: 0 2px;
}
.interview_siwa .txt-marker_green {
  background: linear-gradient(transparent 50%, #e8f1c8 60%);
  font-weight: bold;
  padding: 0 2px;
}
.interview_siwa .orange-txt {
  color: #eb7304;
}

/* ================================================
  メインファイル (main.scss)
  - 全てのパーシャルを統合する
================================================== */
/* ================================================
  看板屋の知見録ページ (_knowledge.scss)
================================================== */
/* ============    ============ */
/* ============    ============ */
.knowledge {
  line-height: 1.8;
  color: #000;
  background-color: #fff;
  /* ============  TOP画像周り  ============ */
}
.knowledge__header {
  width: 100%;
  height: 40vw;
}
@media (max-width: 768px) {
  .knowledge__header {
    height: 60vw;
  }
}
@media (max-width: 480px) {
  .knowledge__header {
    height: 80vw;
  }
}
.knowledge__header-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.knowledge__header-title {
  text-align: center;
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 900;
  overflow: hidden;
}
@media (max-width: 768px) {
  .knowledge__header-title {
    font-size: 3.6rem;
  }
  .knowledge__header-title img {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .knowledge__header-title {
    font-size: 2.2rem;
    margin-top: 30px;
  }
}
.knowledge__header-whiteline {
  display: inline-block;
  transform: translateX(-100%);
  animation: slideIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  background-color: #fff;
  padding: 5px 10px 10px;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .knowledge__header-whiteline {
    margin: 5px 0;
  }
}
@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}
.knowledge__header-subtitle {
  font-size: 2.8rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .knowledge__header-subtitle {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .knowledge__header-subtitle {
    font-size: 1.8rem;
    padding-top: 30px;
  }
}
.knowledge {
  /* ================================================
    看板屋の知見録 一覧ページ
  ================================================== */
}
.knowledge .knowledge-archive {
  padding: 60px 20px;
}
.knowledge .knowledge-archive__inner {
  max-width: 1000px;
  margin: 0 auto;
  background-color: rgba(55, 161, 154, 0.8);
  border-radius: 12px;
  padding: 40px 30px;
  color: #fff;
  text-align: center;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.15);
  margin-top: -120px;
}
@media (max-width: 768px) {
  .knowledge .knowledge-archive__inner {
    padding: 30px 20px;
    margin-top: -80px;
  }
}
.knowledge .knowledge-archive__inner > p {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
}
@media (max-width: 1024px) {
  .knowledge .knowledge-archive__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .knowledge .knowledge-archive__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.knowledge .knowledge-archive-intro {
  color: #fff;
  font-weight: bold;
}
.knowledge .knowledge-card {
  background: #fff;
  margin-bottom: 30px;
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.knowledge .knowledge-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
.knowledge .knowledge-card__link {
  display: flex;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 1024px) {
  .knowledge .knowledge-card__link {
    flex-direction: column;
  }
}
.knowledge .knowledge-card__img {
  flex: 0 0 300px;
  background: #e0e0e0;
  margin: 0;
  aspect-ratio: 2/1;
  position: relative;
}
@media (max-width: 1024px) {
  .knowledge .knowledge-card__img {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.knowledge .knowledge-card__img-label {
  position: absolute;
  top: 0;
  left: 0;
  background: #00129f;
  color: #fff;
  padding: 4px 12px;
  font-size: 1.1rem;
  font-weight: bold;
  z-index: 1;
}
.knowledge .knowledge-card__txt {
  padding: 15px;
}
.knowledge .knowledge-card__content {
  flex: 1;
}
.knowledge .knowledge-card__title {
  font-size: 2rem;
  font-weight: 900;
  color: #333;
}
.knowledge .knowledge-card__date {
  font-size: 1.4rem;
  color: #666;
}
.knowledge .knowledge-card__keywords {
  margin-bottom: 15px;
  display: flex;
  gap: 8px;
  font-size: 1.6rem;
  flex-wrap: wrap;
}
.knowledge .knowledge-card__tag {
  background: #f9973b;
  color: #fff;
  font-size: 1.4rem;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .knowledge .knowledge-card__tag {
    font-size: 1.1rem;
  }
}
.knowledge .knowledge-card__excerpt {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #333;
  text-align: left;
}
@media (max-width: 1024px) {
  .knowledge .knowledge-card__excerpt {
    font-size: 1.4rem;
  }
}
.knowledge {
  /* ================================================
    看板屋の知見録 記事ページ
  ================================================== */
}
.knowledge__intro {
  background-color: #f2962e;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.knowledge__contents-wrapper {
  padding: 0 20px;
}
.knowledge__contents {
  max-width: 1000px;
  margin: 0 auto;
  background-color: rgba(55, 161, 154, 0.8);
  border-radius: 12px;
  padding: 40px 30px;
  color: #fff;
  text-align: center;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.15);
  margin-top: -60px;
}
@media (max-width: 768px) {
  .knowledge__contents {
    padding: 30px 20px;
    margin-top: -60px;
  }
}
.knowledge__contents-label {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.knowledge__contents-label::before, .knowledge__contents-label::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 480px) {
  .knowledge__contents-label {
    margin-bottom: 10px;
  }
}
.knowledge__contents-lead {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .knowledge__contents-lead {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  .knowledge__contents-lead {
    font-size: 1.8rem;
  }
}
.knowledge__contents-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
}
@media (max-width: 768px) {
  .knowledge__contents-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.knowledge__contents-item a {
  display: block;
  background: #fff;
  color: #f15a24;
  text-decoration: none;
  padding: 15px 5px;
  border-radius: 4px;
  font-weight: bold;
  transition: transform 0.2s;
  border-bottom: solid 4px #007a91;
  line-height: 1.2;
}
.knowledge__contents-item a:hover {
  transform: translateY(-3px);
  background: #f0f0f0;
}
.knowledge__contents-item a .num {
  color: #333;
  margin-right: 4px;
  font-size: 1.1em;
}
.knowledge__contents-item a .suffix {
  color: #333;
  font-size: 0.85em;
  font-weight: normal;
}
.knowledge {
  /* ============  コンテンツ内容  ============ */
}
.knowledge__section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 20px;
}
@media (max-width: 480px) {
  .knowledge__section {
    margin: 40px auto;
  }
}
.knowledge {
  /* ============  POINT　BOX  ============ */
}
.knowledge__point-box {
  margin: 0 auto;
  display: flex;
  margin: 30px 0;
  background-color: #f4ebe2;
  border: 1px solid #f9973b;
  border-radius: 4px;
  overflow: hidden;
}
.knowledge__point-label {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  background-color: #f9973b;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.2em;
  font-family: "Poppins", sans-serif;
}
.knowledge__point-list {
  flex: 1;
  padding: 20px;
  list-style: none;
}
.knowledge__point-list li {
  position: relative;
  padding-left: 45px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 8px;
  min-height: 20px;
  display: flex;
  align-items: center;
}
.knowledge__point-list li:last-child {
  margin-bottom: 0;
}
.knowledge__point-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 30px;
  height: 20px;
  background-image: url("../knowledge/images/point-mark.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.knowledge {
  /* ============  本文  ============ */
}
.knowledge__section_title {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .knowledge__section_title {
    flex-direction: column;
    text-align: center;
  }
}
.knowledge__heading-num {
  font-family: "Poppins", sans-serif;
  font-size: 12rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(249, 151, 59, 0.2);
}
@media (max-width: 480px) {
  .knowledge__heading-num {
    font-size: 8rem;
    text-align: center;
  }
}
.knowledge__heading-primary {
  flex: 1;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .knowledge__heading-primary {
    font-size: 3.2rem;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .knowledge__heading-primary {
    font-size: 2.4rem;
  }
}
.knowledge__sub-heading {
  display: block;
  font-size: 2.4rem;
  margin-top: 6px;
  margin-left: -10px;
  font-weight: bold;
  color: #333;
}
@media (max-width: 768px) {
  .knowledge__sub-heading {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .knowledge__sub-heading {
    font-size: 1.8rem;
  }
}
.knowledge .highlight-orange {
  color: #f2962e;
}
.knowledge__row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .knowledge__row {
    flex-direction: column;
  }
}
.knowledge__row--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 480px) {
  .knowledge__row--reverse {
    flex-direction: column;
  }
}
.knowledge__row-text {
  font-size: 1.8rem;
  line-height: 2;
  flex: 1;
}
@media (max-width: 768px) {
  .knowledge__row-text {
    font-size: 1.6rem;
  }
}
.knowledge__row-text p {
  margin-bottom: 30px;
}
.knowledge__row-figure {
  margin: 0;
  width: 30%;
}
@media (max-width: 1024px) {
  .knowledge__row-figure {
    width: 40%;
  }
}
@media (max-width: 480px) {
  .knowledge__row-figure {
    width: 100%;
  }
}
.knowledge__row-figure img {
  width: 100%;
  border: solid 1px #333;
}
.knowledge__row-figure figcaption {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  background: #333;
  padding: 6px;
}
.knowledge .imageliner {
  width: 100%;
  height: 30vw;
  margin: 50px auto;
}
@media (max-width: 480px) {
  .knowledge .imageliner {
    height: 50vw;
  }
}
.knowledge .txt-marker {
  background: linear-gradient(transparent 70%, #fff2b2 60%);
  font-weight: bold;
  padding: 0 2px;
}
.knowledge .underline_a {
  text-decoration: underline;
  color: #f2962e;
}
.knowledge__footer {
  background-color: #f2eae1;
  text-align: center;
}
.knowledge__footer-summary {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px;
}
.knowledge__footer-summary h3 {
  flex: 1;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
  margin: 15px 0 30px;
}
@media (max-width: 768px) {
  .knowledge__footer-summary h3 {
    font-size: 3.2rem;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .knowledge__footer-summary h3 {
    font-size: 2.4rem;
  }
}
.knowledge__footer-summary p {
  line-height: 2.4;
}
@media (max-width: 768px) {
  .knowledge__footer-summary p {
    text-align: left;
  }
}
.knowledge__footer-faq {
  background-color: #fff;
  width: 700px;
  padding: 20px 50px;
  margin: 50px auto;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .knowledge__footer-faq {
    width: 90%;
  }
}
.knowledge__footer-faq dt {
  font-weight: bold;
  margin: 20px 0 10px 0;
  border-bottom: solid 1px #f2962e;
  border-top: solid 1px #f2962e;
}
@media (max-width: 768px) {
  .knowledge__footer-faq dd {
    text-align: left;
  }
}
.knowledge__footer-faq-title {
  font-weight: bold;
  color: #f2962e;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #000064;
}/*# sourceMappingURL=main.css.map */