@charset "UTF-8";
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Zen Maru Gothic", sans-serif;
    overflow-x: hidden;
    font-weight: 400;
}

body.loading {
    overflow: hidden;
    height: 100%;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

figure {
    margin: 0
}

picture img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

li {
    display: inline;
    margin: 0 auto;
}
a:focus {
  outline: none; /* マウスクリック時には枠を出さない */
}
#header {
  position: fixed;
  top: -160px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  transition: top 0.8s ease-in-out, opacity 0.8s ease, transform 0.8s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px 0;
}

#header.show {
  top: 0;
  opacity: 1;
  transform: translateY(0);
}
/* ヘッダー内ナビゲーション配置 */
.header-navi {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  align-items: left;  /* ←縦方向中央揃え */
  box-sizing: border-box;
  height: 30px;  /* ヘッダー高さ */
  background-color: #fff; /* 必要なら背景色 */
}

.header-logo img {
  display: block;
  max-height: 35px;
  width: auto;
  margin: 0;
  /* 微調整：少し上にずらす */
  transform: translateY(-5px);
}

/* ハンバーガー本体 */
#hamburger {
  position: fixed;
  top: 25px;
  right: calc((100vw - 750px)/2 + 15px); /* 750px幅基準で右端から15px */
  width: 60px;
  height: 60px;
  background-color: #40565E;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 1002;
}

#hamburger.show {
  opacity: 1;
  transform: translateY(0);
}

/* 3本線 */
#hamburger span {
  display: block;
  width: 35px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  transform-origin: center center; /* ← これで中央回転 */
}

#hamburger span:nth-child(2) {
  margin: 0; /* gapは親flexで管理 */
}

/* ホバー時 */
#hamburger:hover {
  background-color: #FFF;
}
#hamburger:hover span {
  background-color: #40565E;
}

/* クリックで × に変形 */
#hamburger.active span:nth-child(1) {
transform: translateY(10px) rotate(-45deg); 
}

#hamburger.active span:nth-child(2) {
  opacity: 0; /* 中央線非表示 */
}

#hamburger.active span:nth-child(3) {
transform: translateY(-10px) rotate(45deg); 
}

.sp-nav {
  z-index: 30;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #FFF;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform .9s ease-in-out, opacity .9s ease-in-out;
  box-sizing: border-box;
  padding-top: 2em;
  padding-bottom: 2em;
}

.sp-nav.toggle {
  transform: translateY(0);
}

/* SPナビ内ヘッダー（ロゴ中央配置） */
.sp-nav-header {
  padding: 2em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;  /* 上下中央揃え */
}

/* ロゴ画像 */
.header-svg {
  display: block;
  width: 100%;
  max-width: 350px;
  height: auto;
  margin: 0 auto; /* 上下中央は親flexで調整済み */
}
/* =========================================
   SPナビゲーション（文字リンクと罫線調整版）
========================================= */
.sp-nav ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.sp-nav li {
    width: 350px;
    text-align: center;
    box-sizing: border-box;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: .1em;  
    background-color: transparent;
    position: relative;
    padding: 1.2em 0; /* 天地の余白を少し増やす */
}
/* リンク文字 */
.sp-nav li a {
    display: block;
    padding: 0;
    color: #40565E; /* 元の色に戻す */
    text-decoration: none;
}

/* ホバー時の文字色は変更可 */
.sp-nav li a:hover {
    color: #40565E;
}

/* ▼ 友だち追加ボタン ▼ */
.sp-nav li a.btn {
    display: inline-block;
    width: 300px;
    padding: 1.3rem 0;
    text-align: center;
    border-radius: 30px;
    background-color: #00ab6a;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: .1em;
    text-decoration: none;
    margin: 1.5em 0; /* 上下の余白を広めに */
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* ボタンホバー */
.sp-nav li a.btn:hover {
    background-color: #fff;
    color: #00ab6a;
}

/* ボタンには罫線を出さない */
.sp-nav li a.btn::after {
    display: none;
}

/* ▼ 閉じるボタン ▼ */
.sp-nav .close {
    font-size: 1em;
    color: #40565E;
    padding: 20px 0;
    cursor: pointer;
    text-align: center;
    margin-top: 1.5em; /* 上下の余白を少し増やす */
    width: 300px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid #999;
}

/* 閉じるボタンホバー */
.sp-nav .close:hover {
    background: #40565E;
    color: #fff;
}

.sp-nav li:not(:last-child):not(.no-line)::after {
    content: "";
    display: block;
    width: 300px; /* 線の長さ */
    height: 1px;
    background-color: #999;
    margin: 2em auto 0 auto; /* 上下の余白で中央に配置 */
}

/* ボタン・閉じるは罫線なし */
.sp-nav li.no-line::after {
    display: none;
}


.first-view {
    width: 100%;
    height: auto;
    /* 画像の縦横比を維持 */
}

.first-view picture,
.first-view img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
    /* 天地切れずに表示 */
    display: block;
    margin: 0 auto;
}
.title-section {
  text-align: center;
  margin: 50px 0;
}

.table-container {
  background-color: white;
  margin: 0 auto;
}

table {
  width: 100%;
  border-collapse: separate;
  color: #40565E;
  font-weight: 500;
}

/* ───────────────
   見出し部分（業務項目・業務内容）
──────────────── */
thead th {
  background-color: #00ab6a;
  color: white;
  padding: 16px;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.2em;
  border: none;
  border-top: 1px solid #00ab6a;
  border-bottom: 1px solid #00ab6a;
}

thead tr {
  background-color: #00ab6a;
  color: white;
  padding: 16px;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.2em;
  border: none;
  border-top: 1px solid #00ab6a;
  border-bottom: 1px solid #00ab6a;
  margin-bottom: 2em;
}
/* ← ここを追加 */
thead th:first-child {
  position: relative; /* 疑似要素の基準 */
}

thead th:first-child::after {
  content: "";
  position: absolute;
  top: 50%;                /* 中心を基準に配置 */
  right: 0;                /* 右端に寄せる */
  transform: translateY(-50%); /* 完全に中央寄せ */
  width: 0;
  height: 60%;             /* ← 線の長さ（%で調整） */
  border-right: 1.5px solid rgba(255, 255, 255, 1);
}

/* 左右を丸くする（帯状） */
thead tr:first-child th:first-child {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
thead tr:first-child th:last-child {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* ───────────────
   各データ行（丸く独立した帯）
──────────────── */
tbody tr {
  background-color: #FFF;
  border-radius: 30px;
  overflow: hidden;
}

tbody td {
  padding: 14px 16px;
  text-align: left;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

/* 行の角丸 */
tbody tr td:first-child {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
tbody tr td:last-child {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* 偶数行の背景色 */
tbody tr:nth-child(even) {
  background-color: #EEF8F8;
}

/* ───────────────
   備考文
──────────────── */
.note {
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.8;
  color: #40565E;
  letter-spacing: 0.1em;
  margin-top: 20px;
 text-align: left;
}

.main-title {
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .08em;
}

.sub-title {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: .08em;
    margin: 0 auto;
}

.text {
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .12em;
    line-height: 2em;
}
.main-text {
    font-weight: 500;
    text-decoration: none;
    letter-spacing: .1em;
    line-height: 1.5em;
}

.highlight-box {
  max-width: 750px;
  width: 100%;                        /* 幅を固定 */
  background-color: #00ab6a;           /* 背景色 */
  color: #ffffff;                      /* 文字色 */
  padding: 1em 1em;                  /* 内側余白 */
  border-radius: 0.9em;                /* 角丸 */
  font-weight: 500;                    /* 太字 */
  text-decoration: none;               /* 下線なし */
  letter-spacing: .12em;               /* 文字間 */
  font-size: 1.5em;                    /* 文字サイズ */
  text-align: left;                    /* 左揃え */
  margin: 0 auto;                      /* ページ中央に配置 */
}
.letter-spacing-xs {
    letter-spacing: 0.02em;
}
.letter-spacing-s {
    letter-spacing: 0.05em;
}
.letter-spacing-m {
    letter-spacing: 0.18em;
}

.marker {
    position: relative;       /* 擬似要素の基準 */
    display: inline-block;
}
.border-radius-m {
	 border-radius: 1.5em;
}
.marker::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 0.4em;
  border-radius: 0.5em;
  transition: width 1.5s ease;
  z-index: -1;
}

/* 個別カラー */
.marker-yellow::after { background-color: #FBCA55; }
.marker-blue::after   { background-color: #00ab6a; }
.marker-beige::after   { background-color: #FEF4DD; }

.marker.on::after {
  width: 100%;
}
/* バッジ */
.custom-slider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.custom-slider-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-slider img {
  width: 85%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 20em;
}

/* 画像間の隙間をほぼゼロに */
.custom-slider .slick-slide {
  margin: 0; /* 左右の隙間をなくす */
}
/* Slick固有のスタイル調整 */
.slick-slide {
    outline: none;
}

.slick-track {
    display: flex;
    gap: 0;
}

.slick-list {
    position: relative;
    overflow: visible;
}

/* ドット（ページネーション）のカスタマイズ */
.slick-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
    font-size: 0;
}

.slick-dots li.slick-active button {
    background: rgba(255, 255, 255, 1);
}

/* 矢印（前後ボタン）のカスタマイズ */
.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
    font-size: 0;
}

.slick-prev:hover, .slick-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slick-prev {
    left: 15px;
}

.slick-next {
    right: 15px;
}

.slick-prev::before {
    content: '❮';
    color: white;
    font-size: 20px;
}

.slick-next::before {
    content: '❯';
    color: white;
    font-size: 20px;
}

.map-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #f0f0f0;
  margin: 0 auto
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0
}
.free-badge {
    background-color: #FBCA55;
    color: #fff;
    font-weight: 700;
    border-radius: 20px;
    padding: 15px 35px;
    font-size: 1.8em;
    letter-spacing: 0.2em;
    display: inline-flex;
    /* ← inline-flexに変更 */
    align-items: center;
    /* 縦方向中央揃え */
    justify-content: center;
    /* 横方向中央揃え */
    white-space: nowrap;
    line-height: 1;
    /* 余計な上下スペースをなくす */
}

.free-badge-cam {
    background-color: #FEF4DD;
    color: #40565E;
    border-radius: 10px;
    padding: 15px 35px;
    font-size: 1.3em;
    font-weight: 500;
    letter-spacing: 0.1em;
    display: block;
    /* ← inline-flexに変更 */
    margin: 0 auto;
    max-width: 350px;
    align-items: center;
    /* 縦方向中央揃え */
    justify-content: center;
    /* 横方向中央揃え */
    line-height: 1.3em;
    /* 余計な上下スペースをなくす */
}

.features {
  display: flex;
  justify-content: space-between; /* 横並びで余白調整 */
  gap: 20px; /* 横方向の隙間 */
  flex-wrap: wrap; /* 狭い画面で折り返し */
  margin-bottom: 40px; /* セクション間の余白を統一 */
}

.feature-item {
  flex: 1 1 calc(50% - 20px); /* 2カラムになるよう幅調整 */
  min-width: 250px;
  box-sizing: border-box;
  text-align: center;
}

.offices {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px; /* デフォルト（SP）ではやや狭めでOK */
}

.office {
  flex: 1 1 150px;
  transition: transform 0.3s ease;
}

.office a {
  color: #00ab6a;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* hover時にズーム */
.office a:hover {
  transform: scale(1.1);
}

.icon {
    width: 80px;
    /* アイコンの幅 */
    height: 80px;
    /* アイコンの高さ */
}

.with-underline {
    position: relative;
    display: inline-block;
    /* 線の幅を文字幅に合わせる */
    padding-bottom: 20px;
    /* 下余白で線との間隔を調整 */
}

.with-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    /* 線の長さ（調整可） */
    height: 3px;
    /* 線の太さ */
    background-color: #00ab6a;
    border-radius: 2px;
    /* 丸みをつけると柔らかい印象に */
}

.with-underline-w {
    position: relative;
    display: inline-block;
    /* 線の幅を文字幅に合わせる */
    padding-bottom: 15px;
    /* 下余白で線との間隔を調整 */
}

.with-underline-w::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    /* 線の長さ（調整可） */
    height: 3px;
    /* 線の太さ */
    background-color: #FFF;
    /* 白色 */
    border-radius: 2px;
    /* 丸みをつけると柔らかい印象に */
}

.block-image {
    display: block;
    width: 50px;
    height: auto;
    /* アスペクト比を維持して縮小拡大 */
    margin: 0 auto 20px;
}

.color-white {
    color: #FFF;
}

.color-black {
    color: #40565E;
}

.color-green {
    color: #00ab6a;
}

.size-xl {
    font-size: 3.5rem;
}

.size-lg {
    font-size: 2.5rem;
}

.size-l {
    font-size: 2rem;
}

.size-ml {
    font-size: 1.65rem;
    position: relative; /* 擬似要素を相対配置するため必要 */
}

.size-m {
    font-size: 1.5em;
}
.size-ms {
    font-size: 1.4rem;
}
.size-s {
    font-size: 1.4rem;
}
.size-ss {
    font-size: 1.27rem;
}
.size-xs {
    font-size: 1.15rem;
}

.size-xxs {
    font-size: 1rem;
}

.font-bold {
    font-weight: 700;
    font-size: 110%;
}

.align-left {
    text-align: justify;
}

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

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

p {
    margin: 0
}

a {
    text-decoration: none;
    cursor: pointer;
}

nav {
    margin: 0 0 0 auto
}

ul {
    list-style: none;
    margin: 0 auto;
    padding: 0
}

#footer {
    background-color: #00ab6a;
    padding: 40px 20px;
    text-align: center;
    color: #40565e;
    line-height: 2em;
    font-size: 1em;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.footer-logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto 30px;
    /* 下に余白 */
    display: block;
}

.navi-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
    justify-content: center;
    text-align: center;
    color: #FFF;
    margin: 30px auto;
    max-width: 600px;
}

.nav-item a {
    color: #FFF;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.copyright {
    color: #FFF;
    font-size: 0.9em;
    margin: 0;
    padding: 15px 0;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight:400;
    font-style: normal;
}

a {
    display: inline-block;
    /* transform が効くように */
    transition: transform 0.25s ease, color 0.25s ease;
    text-decoration: none;
    /* 下線が必要な場合は外してOK */
}

a:hover {
    transform: scale(1.05);
    /* 少し拡大 */
    /* ブランドカラーなどに変更 */
}

.sub-heading {
    font-weight: 500;
    letter-spacing: .05em;
}
.sub-heading-2 {
    font-weight: 500;
    letter-spacing: .05em;
}
.sub-heading-2::before {
    content: '✓';                  /* チェックマーク */
    display: inline-block;
    width: 1.1em;                     /* チェックボックスのサイズ */
    height: 1.1em;
    margin-right: 1em; 
	margin-bottom: 0.2em; /* 文字との間隔 */
    border: 2px solid #40565E;      /* 四角の枠の色 */
    color: #00ab6a;                 /* チェックの色 */
    text-align: center;             /* 中央にチェックを表示 */
    line-height:1em;               /* 高さに合わせて中央揃え */
    font-size: 1.2em;               /* チェックマークのサイズ調整 */
    border-radius: 3px;             /* 少し丸めたい場合は調整 */
    vertical-align: middle;         /* 文字の高さに揃える */
    box-sizing: border-box;         /* サイズ内に枠を収める */
}
.line-height-xl {
    line-height: 3em;
}

.line-height-lg {
    line-height: 2.5em;
}

.line-height-m {
    line-height: 2em;
}

.line-height-ml {
    line-height: 1.5em;
}

.line-height-s {
    line-height: 1.35em;
}


.close:hover {
    opacity: 0.5;
}

/* マウス操作では非表示 */
a:focus:not(:focus-visible) {
  outline: none !important;
}

/* キーボード操作(Tab移動)では表示 */
a:focus-visible {
  outline: 2px dashed var(--green);
  outline-offset: 4px;
}

/* =========================================
   ボタン汎用（共通）
========================================= */
.btn {
    display: block;
    margin: 0 auto;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 300px; /* ナビと統一 */
    padding: 1.2rem 0; /* 高さを抑える */
    font-weight: 500;
    border: 1px solid #00ab6a;
    color: #FFF;
    background: #00ab6a;
    border-radius: 30px;
    transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
    font-size: 1.2em; /* ナビ文字と統一 */
    letter-spacing: 0.1em;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    color: #00ab6a;
    border: 2px solid #00ab6a;
    background: #FFF;
}
/* PC用右端縦バナー */

.floating-banners-fixed {
    position: fixed;
    top: 50%;
    right: 0px;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
    z-index: 900;
    gap: 10px;
}

.floating-banner-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    width: 50px;
    padding: 30px 10px;
    text-align: center;
    font-weight: 500; /* 必要に応じて bold に変更 */
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
    transform: translateX(30px);
}
.floating-banner-btn.show {
  opacity: 1;
  transform: translateX(0);
}
.fade-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.top-btn {
    background-color: #FCD577;
    color: #40565E;
    font-weight: 500;
    font-size: 1.1em;
    letter-spacing: 0.1em;
    border: 3px solid #FCD577;
}

.top-btn:hover {
    background: #FFF;
    color: #FCD577;
}

.top-btn-sp {
    background-color: #FCD577;
    color: #40565E;
}

.line-btn {
    background-color: #66cda6;
    color: #fff;
    border: 2px solid #66cda6;
}

.line-btn:hover {
    background: #FFF;
    color: #66cda6;
}

.line-btn-sp {
    background-color: #66cda6;
    color: #fff;
}

.floating-banner-btn.show {
    opacity: 1;
    transform: translateX(0);
}

.vertical-text {
    letter-spacing: 0.1em;
    line-height: 1.35em
}

.floating-banner-btn .vertical-text {
    writing-mode: horizontal-tb;
    /* 横書きに戻す */
    transform: none;
    /* 回転なし */
    margin-bottom: 10px;
    text-align: center;
}

.floating-banner-btn img {
    width: 20px;
    height: 20px;
}


/* SP用下部横並びバナー */

.floating-banners-sp {
    display: none;
    /* 初期は非表示 */
}

.floating-banners-sp .floating-banner-btn {
    flex-direction: row;
    width: 48%;
    justify-content: center;
    padding: 10px 0;
}

.floating-banners-sp .floating-banner-btn .vertical-text {
    writing-mode: horizontal-tb;
    transform: none;
    margin-bottom: 0;
}


/* 共通アイコンスタイル */

.floating-banner-btn i {
    font-size: 22px;
    transition: color 0.3s;
    margin-top: 6px;
    /* PC縦並び用の余白 */
}

.floating-banners-sp .floating-banner-btn i {
    font-size: 18px;
    margin: 0;
    /* SP横並びは余白リセット */
}

.font-w-bold {
        font-weight: 500;
}

.top-btn:hover i {
    color: #FBCA55;
}

.line-btn:hover i {
    color: #76cbc9;
}

.container {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.event-top {
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    /* ← これを追加することで画像と下のブロックを丸くクリップ */
    background-color: #fff7f0;
    /* 画像以外の余白に色を合わせる */
}

.event-top img.block-illustration {
    display: block;
    width: 100%;
    height: auto;
}

.background {
    background-color: #FEF4DD;
    width: 100%;
    min-height: 100vh;
    position: relative;
}
.y-background {
    background-color: #FBCA55;
    /* 画面全体の背景色 */
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.circle-text {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.6em;                /* 固定サイズ */
  height: 2.6em;
  background-color: #40565E;    /* 円の色 */
  color: #ffffff;
  border-radius: 50%;
  font-weight: 500;
  text-decoration: none;
  margin-right: 0.5em;
  line-height: 1;
  flex-shrink: 0;
  font-size: 0.85em;
  text-align: center;
  border: 1.5em solid #40565E;  /* 背景色と同色の線で内側余白を作る */
  box-sizing: border-box;       /* borderを含めて円のサイズを固定 */
  white-space: nowrap;          /* 改行防止 */
}

.event-img {
    max-width: 400px;
    width: 70%;
    height: auto;
    margin: 0 auto;
    display: block;
}

  .illust-img {
    display: block;
    margin: 0 auto;
    width: 80%;
    max-width: 500px;
    height: auto;
  }
  .illust-img-2 {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    height: auto;
  }
  .illust-img-3 {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    height: auto;
  }

.office-info-wrapper {
  display: flex;
  justify-content: space-between; /* 両端揃え */
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 60px auto 0;
  color: #fff;
  padding: 0 20px;
}

.office-info {
  text-align: left;
  font-size: 1em;
  line-height: 1.8em;
  width: 45%; /* 両端に並べるため固定幅指定 */
  min-width: 280px;
}

.office-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 5px;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-logo-sns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px auto 40px;
  color: #fff;
}

.footer-logo-area {
  display: flex;
  justify-content: flex-start;
}

.footer-svg-logo {
  height: 60px;
  width: auto;
}

.footer-sns-area {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  font-size: 1.8em;
}

.sns-icon {
  color: #fff;
  transition: opacity 0.3s ease;
}

.sns-icon:hover {
  opacity: 0.7;
}

.mbottom-15 {
    margin-bottom: 15px
}

.mbottom-30 {
    margin-bottom: 30px
}

.mbottom-50 {
    margin-bottom: 50px
}

.mbottom-70 {
    margin-bottom: 70px
}

.mbottom-100 {
    margin-bottom: 100px
}

.mbottom-150 {
    margin-bottom: 150px
}

.mbottom-200 {
    margin-bottom: 200px
}

.mtop-200 {
    margin-top: 200px
}

.mtop-150 {
    margin-top: 150px
}

.mtop-100 {
    margin-top: 100px
}

.mtop-50 {
    margin-top: 50px
}

.mtop-70 {
    margin-top: 70px
}

.mtop-30 {
    margin-top: 30px
}

.mtop-15 {
    margin-top: 15px
}

.mtop-10 {
    margin-top: 10px
}

.mtop-5 {
    margin-top: 5px
}

.pbottom-200 {
    padding-bottom: 200px
}

.pbottom-100 {
    padding-bottom: 100px
}

.pbottom-70 {
    padding-bottom: 70px
}

.pbottom-50 {
    padding-bottom: 50px
}

.pbottom-30 {
    padding-bottom: 30px
}

.pbottom-15 {
    padding-bottom: 15px
}

.pbottom-10 {
    padding-bottom: 10px
}

.pbottom-5 {
    padding-bottom: 5px
}

.ptop-200 {
    padding-top: 200px
}

.ptop-150 {
    padding-top: 150px
}

.ptop-100 {
    padding-top: 100px
}

.ptop-70 {
    padding-top: 70px
}

.ptop-50 {
    padding-top: 50px
}

.ptop-30 {
    padding-top: 30px
}

.ptop-15 {
    padding-top: 15px
}

.ptop-10 {
    padding-top: 10px
}

.ptop-5 {
    padding-top: 5px
}

.sp-br {
    display: none
}

.br-sp {
    display: block
}

/* ========================================
   ノートPC・デスクトップ（1024px～1439px）
   ======================================== */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .illust-img {
    width: 70%;
    max-width: 500px;
  }
}

/* ========================================
   タブレット・小型PC（768px～1023px）
   ======================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .illust-img {
    width: 70%;
    max-width: 400px;
  }
}

/* ========================================
   スマートフォン（481px～767px）
   ======================================== */
@media screen and (max-width: 768px) {
  .container {
    padding: 18px;
  }
  .first-view img {
    object-fit: contain;
    background-color: #FEF4DD;
  }
  #hamburger {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    gap: 4px; /* 線の間隔をさらに調整 */
  }

  #hamburger span {
    width: 20px;
    height: 2px;
  }

  #hamburger span:nth-child(2) {
    margin: 3px 0;
  }
/* クリックで × に変形 */
#hamburger.active span:nth-child(1) {
transform: translateY(9px) rotate(-45deg); 
}

#hamburger.active span:nth-child(3) {
transform: translateY(-9px) rotate(45deg); 
}
	  .sp-nav {
    padding-top: 1em;      /* 上余白を狭く */
    padding-bottom: 1em;   /* 下余白を狭く */
  }

  .sp-nav-header {
    padding: 0.5em;          /* ロゴ周りの余白を狭く */
  }

  .sp-nav li {
    padding: 0.8em 0;      /* リスト項目の天地余白を縮小 */
  }

  .sp-nav li:not(:last-child):not(.no-line)::after {
    margin: 1em auto 0 auto; /* 線の上下余白も狭く */
  }

  .sp-nav li a.btn {
    margin: 1em 0;          /* ボタンの上下余白を縮小 */
    width: 280px;           /* 横幅も少し縮めると見た目が締まる */
  }

  .sp-nav .close {
    margin-top: 1em;        /* 閉じるボタンの上余白を縮小 */
    width: 280px;
    padding: 0.8em 0;
  }
	.header-navi {
 padding: 0 0;
  height: 10px;  /* ヘッダー高さ */
}
	.header-logo img {
	  transform: translateY(-25px);
	  max-height: 27px;
		}

	    .custom-slider-slide {
        padding: 0 8px;
    }
    .custom-slider img {
        max-width: 350px;
    }
    .slick-prev, .slick-next {
        width: 40px;
        height: 40px;
    }

    .slick-prev::before,
    .slick-next::before {
        font-size: 16px;
    }

    .slick-dots {
        bottom: 10px;
        gap: 8px;
    }

    .slick-dots li button {
        width: 10px;
        height: 10px;
    }
  .highlight-box {
    font-size: 1.3em;
    letter-spacing: 0.1em;
  }
  .main-text {
    line-height: 1.9em;
  }
  .text {
    line-height: 1.8em;
  }
  .line-height-m {
    line-height: 1.8em;
  }
  .line-height-ml {
    line-height: 1.5em;
  }
  /* 画像 */
  .event-img {
    max-width: 350px;
  }
  .block-image {
    width: 10%;
    height: 10%;
  }
  .event-img-2 {
    width: 90%;
    height: 90%;
  }
  .svg-title {
    max-width: 200px;
  }

  .free-badge {
    padding: 10px 25px;
    font-size: 1.5em;
  }

  .free-badge-cam,
  .free-badge-event {
    font-size: 1.1em;
    letter-spacing: 0.1em;
    padding: 10px 30px;
  }

  .navi-box {
    grid-template-columns: 1fr; /* ナビを縦並びに */
    gap: 15px 0;                /* 行間を少し調整 */
    max-width: 100%;
  }

  .icon {
    margin-bottom: 10px;
  }

  .btn {
    padding: 1.5rem 2.4rem;
    font-size: 1em;
    width: 270px;
  }

  .sp-nav li {
    font-size: 1em;
    line-height: 1.2em;
  }

  .floating-banners-fixed {
    display: none !important;
  }
  .floating-banners-sp {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 800;
    overflow: hidden;
  }
  .floating-banners-sp .floating-banner-btn {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 18px 0;
    font-size: 1em;
    letter-spacing: 0.2em;
    border-radius: 12px 12px 0 0;
  }
  .floating-banners-sp .floating-banner-btn img {
    width: 15px;
    height: auto;
    display: inline-block;
  }

  .illust-img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  thead th,
  tbody td {
    font-size: 13px;          /* 少し大きくして読みやすく */
    padding: 10px 12px;
	letter-spacing: 0.1em;
    vertical-align: middle;   /* 改行が入っても中央揃え */
    word-break: break-word;    /* 改行も自然に */
  }

  tbody td {
    line-height: 1.5em; /* 行間調整 */
	letter-spacing: 0.1em;
  }

  table {
    border-spacing: 0 5px;    /* 行間の余白調整 */
  }

  /* ヘッダーの区切り線もスマホ用に少し長め */
  thead th:first-child::after {
    height: 40%;
  }
	.note {
  font-size: 0.65em;
  letter-spacing: 0.01em;
}
  .features {
    flex-direction: column; /* 縦並び */
    gap: 0; /* gapを無効化してmarginで調整 */
    margin-bottom: 40px;
  }
  .offices {
    flex-direction: column;     /* ✅ 縦並び */
    align-items: center;        /* ✅ センター寄せ */
    gap: 10px;                  /* ✅ コンテンツ間をやや詰める（5px→10pxが見栄え良） */
    margin: 20px 0;             /* ✅ 全体の上下マージンも縮める */
  }

  .office {
    margin: 0;                  /* ✅ 各office間の余白リセット */
  }

  .office p {
    margin: 4px 0;              /* ✅ 各行の上下余白を最小限に */
  }
  .features {
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;             /* ✅ features全体も余白削減 */
  }

  .feature-item {
    flex: 1 1 100%;
    width: 100%;
    margin-bottom: 20px;        /* ✅ 下余白も控えめに */
  }

  .feature-item:last-child {
    margin-bottom: 0;
  }

  .icon-after::after {
    top: 0.15em;
  }
.icon-after::after {
    top: 0.15em; /* 文字の中央にくるように微調整 */
}
  .feature-item {
    flex: 1 1 100%;
    width: 100%;
    margin-bottom: 30px; /* 各アイテム間に均等な下余白 */
  }

  .feature-item:last-child {
    margin-bottom: 0; /* 最後の要素のみ余白なし */
  }
  .office-info-wrapper {
    flex-direction: column;   /* 縦並びに */
    align-items: center;      /* 中央寄せ */
    text-align: center;       /* 文章も中央 */
    gap: 40px;                /* ✅ 2つのオフィス間の余白を設定 */
    margin-top: 40px;         /* ✅ 上方向のマージンも少し調整 */
    padding: 0;               /* ✅ 左右パディングを削除してスッキリ */
  }
	
  .office-info {
    width: auto;              /* ✅ 幅を自動にして中央寄せ */
    text-align: center;
    margin: 0;                /* ✅ 余白リセット */
  }

  .office-title {
    margin-bottom: 8px;       /* ✅ タイトル下の余白を少し広げて見やすく */
  }

  .footer-logo-sns {
    flex-direction: column;   /* 縦並び */
    align-items: center;      /* 中央寄せ */
    gap: 20px;                /* ロゴとSNSの間隔 */
  }

  .footer-logo-area {
    justify-content: center;  /* ロゴを中央寄せ */
  }

  .footer-sns-area {
    justify-content: center;  /* SNSアイコンも中央寄せ */
  }

  .footer-sns-area {
    justify-content: center;
    font-size: 1.6em;
  }
	.sub-heading-2::before {
    width: 1.15em;                     /* チェックボックスのサイズ */
    height: 1.15em;
    margin-right: .5em; 
	margin-bottom: 0.2em; /* 文字との間隔 */
}
  /* レイアウト */
  .size-xl {
    font-size: 2.8rem;
  }
  .size-lg {
    font-size: 1.9rem;
  }
  .size-l {
    font-size: 1.6rem;
  }
  .size-ml {
    font-size: 1.4rem;
  }
  .size-m {
    font-size: 1.12rem;
  }
.size-ms {
    font-size: 1.2rem;
}
  .size-s {
    font-size: 1.1rem;
  }
	  .size-ss {
    font-size: 1.05rem;
  }
  .size-xs {
    font-size: 1rem;
  }
  .size-xxs {
    font-size: 0.9rem;
  }

  .navi {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
  }
  .nav-item a {
    font-size: 1.1em;
  }

  /* フッター */
  .copyright {
    flex-basis: 100%;
    text-align: center;
    margin-top: 40px;
	font-size: 0.8rem;
  }
  .footer-logo {
    max-width: 280px;
  }

  /* マージン・パディング（スマホではvw単位を使用） */
  .mbottom-15 { margin-bottom: 2.5vw; }
  .mbottom-30 { margin-bottom: 4vw; }
  .mbottom-50 { margin-bottom: 5vw; }
  .mbottom-70 { margin-bottom: 7vw; }
  .mbottom-100 { margin-bottom: 10vw; }
  .mbottom-150 { margin-bottom: 15vw; }
  .mbottom-200 { margin-bottom: 20vw; }

  .mtop-15 { margin-top: 1.8vw; }
  .mtop-30 { margin-top: 2vw; }
  .mtop-50 { margin-top: 5vw; }
  .mtop-70 { margin-top: 7vw; }
  .mtop-100 { margin-top: 10vw; }
  .mtop-150 { margin-top: 15vw; }
  .mtop-200 { margin-top: 20vw; }

  .pbottom-15 { padding-bottom: 1.5vw; }
  .pbottom-30 { padding-bottom: 3vw; }
  .pbottom-50 { padding-bottom: 5vw; }
  .pbottom-70 { padding-bottom: 7vw; }
  .pbottom-100 { padding-bottom: 10vw; }
  .pbottom-200 { padding-bottom: 20vw; }

  .ptop-15 { padding-top: 1.5vw; }
  .ptop-30 { padding-top: 3vw; }
  .ptop-50 { padding-top: 5vw; }
  .ptop-70 { padding-top: 7vw; }
  .ptop-100 { padding-top: 10vw; }
  .ptop-150 { padding-top: 15vw; }
  .ptop-200 { padding-top: 20vw; }

  .sp-br {
    display: block;
  }
}

/* ========================================
   小型スマートフォン（401px～480px）
   ======================================== */
@media screen and (max-width: 480px) {
  .illust-img {
    width: 80%;
    max-width: 350px;
  }
  .size-ms {
    font-size: .91rem;
}
  .size-m {
    font-size: 1rem;
}
	.size-s {
    font-size: 0.92rem;
    letter-spacing: 0.01em;
  }
  .size-xs {
    font-size: .85rem;
  }
  .highlight-box {
    font-size: 1.14em;
  }
  .sp-nav ul {
    margin-top: 0.25em;
    padding-bottom: 1em;
  }
  .header-logo {
    margin-right: 75px; /* ← SP超小画面用に余白を増やす */
  }
	  .sp-nav-header .header-svg {
    width: 90%;       /* 画面幅に合わせて縮小はするが極端には縮まらない */
    max-width: 250px; /* 最小限の横幅を確保 */
    height: auto;     /* 高さは自動で比率維持 */
  /* 中央寄せ */
		  
  }
}


/* ========================================
   タブレット以上（1080px以上）
   ======================================== */
@media screen and (min-width: 1080px) {
  .event-top {
    margin: 20px;
  }
}

/* ========================================
   PC（1220px以上）
   ======================================== */
@media screen and (min-width: 1220px) {
  .sub-heading-2 {
    font-size: 1.2rem;
  }
  .align-right {
    text-align: center;
  }

  /* マージン・パディング（PC版は固定値） */
  .mbottom-15 { margin-bottom: 9px; }
  .mbottom-30 { margin-bottom: 15px; }
  .mbottom-50 { margin-bottom: 25px; }
  .mbottom-70 { margin-bottom: 35px; }
  .mbottom-100 { margin-bottom: 50px; }
  .mbottom-150 { margin-bottom: 75px; }
  .mbottom-200 { margin-bottom: 100px; }

  .mtop-5 { margin-top: 3px; }
  .mtop-10 { margin-top: 5px; }
  .mtop-15 { margin-top: 7px; }
  .mtop-30 { margin-top: 15px; }
  .mtop-50 { margin-top: 25px; }
  .mtop-70 { margin-top: 35px; }
  .mtop-100 { margin-top: 50px; }
  .mtop-150 { margin-top: 75px; }
  .mtop-200 { margin-top: 100px; }

  .pbottom-5 { padding-bottom: 3px; }
  .pbottom-10 { padding-bottom: 5px; }
  .pbottom-15 { padding-bottom: 7px; }
  .pbottom-30 { padding-bottom: 15px; }
  .pbottom-50 { padding-bottom: 25px; }
  .pbottom-70 { padding-bottom: 35px; }
  .pbottom-100 { padding-bottom: 50px; }
  .pbottom-200 { padding-bottom: 100px; }

  .ptop-5 { padding-top: 3px; }
  .ptop-10 { padding-top: 5px; }
  .ptop-15 { padding-top: 7px; }
  .ptop-30 { padding-top: 15px; }
  .ptop-50 { padding-top: 25px; }
  .ptop-70 { padding-top: 35px; }
  .ptop-100 { padding-top: 50px; }
  .ptop-150 { padding-top: 75px; }
  .ptop-200 { padding-top: 100px; }
}
#footer a[href^="tel"],
#footer a[href^="mailto"],
#footer a[href^="maps"] {
  color: inherit !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}