@charset "UTF-8";
/* ============================================================
// style.scss (Webサイト基本設定)
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// SCSS Imports
------------------------------------------------------------ */
/* ============================================================
// style reset
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
sub,
sup,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

/* ============================================================
// common.scss（共通設定）
============================================================ */
html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.google-maps iframe {
  width: 100%;
  height: 450px;
  vertical-align: bottom;
}

@media screen and (min-width: 768px) {
  .google-maps iframe {
    height: 600px;
  }
}
.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
}
@supports not (aspect-ratio: 16/9) {
  .youtube {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
  }
  .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: all 0.4s ease;
}
.pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagetop a img {
  width: 60px;
  height: 60px;
}
.pagetop a:hover {
  opacity: 0.7;
}
.pagetop.is-show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .pagetop a img {
    width: 40px;
    height: 40px;
  }
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
  a[href^="tel:"]:active {
    opacity: 0.6;
  }
}
@media print {
  a[href^="tel:"] {
    text-decoration: none;
  }
}

[data-aos] {
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1) !important;
}

/* ============================================================
// header.scss (Webサイト基本設定)
============================================================ */
/* ------------------------------------------------------------
// ヘッダーデザイン
------------------------------------------------------------ */
.header-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(20px, 2.0815264527vw + 4.0346921075px, 44px);
  padding: clamp(20px, 3.4692107546vw + -6.6088464874px, 60px) 20px 0;
}
@media screen and (max-width: 767px) {
  .header-wrap {
    padding: 20px;
    border-bottom: 2px solid #d8e698;
  }
}
.header-wrap .logo {
  display: flex;
  align-items: center;
  max-width: clamp(280px, 27.1844660194vw + 178.0582524272px, 700px);
}
.header-wrap .contact-area {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 3.0139935414vw + -13.8686759957px, 44px);
}
@media screen and (max-width: 767px) {
  .header-wrap .contact-area {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .header-wrap .contact-area .phone-box {
    display: none;
  }
}
.header-wrap .contact-area .phone-box .phone-txt,
.header-wrap .contact-area .phone-box .phone-time {
  font-size: clamp(14px, 0.4305705059vw + 9.7330462863px, 18px);
  line-height: 1.4;
  margin-left: 10px;
  padding-left: clamp(22px, 1.7222820237vw + 4.9321851453px, 38px);
}
.header-wrap .contact-area .phone-box .phone-number {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-wrap .contact-area .phone-box .phone-number .phone-icon {
  width: clamp(22px, 1.7222820237vw + 4.9321851453px, 38px);
}
.header-wrap .contact-area .phone-box .phone-number a {
  font-size: clamp(32px, 2.3681377826vw + 8.5317545748px, 54px);
  font-weight: 700;
  color: #007c36;
}
.header-wrap .contact-area .mail-box {
  display: flex;
  align-items: center;
}
.header-wrap .contact-area .mail-box a {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.5203816132vw + 2.0086730269px, 12px);
  width: clamp(174px, 11.7953165655vw + 83.5299219428px, 310px);
  height: 54px;
  padding: 8px clamp(40px, 1.7346053773vw + 26.6955767563px, 60px) 8px clamp(16px, 1.908065915vw + 1.3651344319px, 38px);
  background: #d18f40;
  border-radius: 27px;
}
.header-wrap .contact-area .mail-box a .mail-icon {
  width: clamp(16px, 2.6886383348vw + -4.6218560278px, 47px);
}
.header-wrap .contact-area .mail-box a .mail-txt {
  font-size: clamp(12px, 1.0407632264vw + 4.0173460538px, 24px);
  font-weight: 500;
  color: #ffffff;
}
.header-wrap .contact-area .mail-box a .mail-icon-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(24px, 0.6938421509vw + 18.6782307025px, 32px);
  height: clamp(24px, 0.6938421509vw + 18.6782307025px, 32px);
  background: #f9c270;
  border-radius: 50%;
}
.header-wrap .contact-area .mail-box a .mail-icon-arrow img {
  width: clamp(6px, 0.5203816132vw + 2.0086730269px, 12px);
}
.header-wrap .pc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% + 40px);
  height: 96px;
  margin-inline: -20px;
  background: #d8e698;
}
@media screen and (max-width: 767px) {
  .header-wrap .pc-nav {
    display: none;
  }
}
.header-wrap .pc-nav ul {
  display: flex;
  justify-content: center;
}
.header-wrap .pc-nav ul li {
  border-left: 1px solid #333333;
}
.header-wrap .pc-nav ul li:last-child {
  border-right: 1px solid #333333;
}
.header-wrap .pc-nav ul li a {
  display: block;
  font-size: clamp(10px, 1.4814814815vw + 4.4444444444px, 24px);
  font-weight: 500;
  padding: 0 1.5em;
  transition: 0.3s;
}
.header-wrap .pc-nav ul li a.current, .header-wrap .pc-nav ul li a:hover {
  color: #d18f40;
}

/* ------------------------------------------------------------
// スクロール固定（iOS対応版）
------------------------------------------------------------ */
body.is-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

/* ------------------------------------------------------------
// ハンバーガー（丸＋フォーカス枠なし）
------------------------------------------------------------ */
.hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
  }
}
.hamburger {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #333333;
  transition: background-color 0.25s ease;
  padding: 0;
}
.hamburger:focus, .hamburger:focus-visible {
  outline: none;
}
.hamburger .hamburger-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}
.hamburger .hamburger-bar.hamburger-bar-top {
  transform: translate(-50%, -50%) translateY(-8px);
}
.hamburger .hamburger-bar.hamburger-bar-mid {
  transform: translate(-50%, -50%);
}
.hamburger .hamburger-bar.hamburger-bar-bot {
  transform: translate(-50%, -50%) translateY(8px);
}
.hamburger.is-open .hamburger-bar-top {
  animation: ham-open-top 0.6s ease forwards;
}
.hamburger.is-open .hamburger-bar-mid {
  animation: ham-open-mid 0.6s ease forwards;
}
.hamburger.is-open .hamburger-bar-bot {
  animation: ham-open-bot 0.6s ease forwards;
}
.hamburger.is-closing .hamburger-bar-top {
  animation: ham-close-top 0.6s ease forwards;
}
.hamburger.is-closing .hamburger-bar-mid {
  animation: ham-close-mid 0.6s ease forwards;
}
.hamburger.is-closing .hamburger-bar-bot {
  animation: ham-close-bot 0.6s ease forwards;
}

@keyframes ham-open-top {
  0% {
    transform: translate(-50%, -50%) translateY(-8px) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes ham-open-mid {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ham-open-bot {
  0% {
    transform: translate(-50%, -50%) translateY(8px) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@keyframes ham-close-top {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) translateY(-8px) rotate(0);
  }
}
@keyframes ham-close-mid {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ham-close-bot {
  0% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) translateY(8px) rotate(0);
  }
}
/* ------------------------------------------------------------
// SPナビゲーション
------------------------------------------------------------ */
.global-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #d8e698;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
  pointer-events: none;
}
.global-nav.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  touch-action: auto;
  overscroll-behavior: contain;
}
.global-nav .global-nav-inner {
  overscroll-behavior: contain; /* スクロールの勢いをこの要素内に閉じ込める */
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.global-nav .global-nav-inner::-webkit-scrollbar {
  display: none;
}
.global-nav .global-nav-inner {
  padding: 90px 24px 40px;
  display: block;
}
.global-nav .global-nav-inner .global-nav-list {
  list-style: none;
  text-align: left;
}
.global-nav .global-nav-inner .global-nav-list li {
  border-bottom: 1px dashed #ffffff;
}
.global-nav .global-nav-inner .global-nav-list a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  color: #333333;
  text-decoration: none;
  padding-inline: 6px;
}

/* ============================================================
// footer（フッター共通）
============================================================ */
.footer-wrap {
  padding: clamp(60px, 2.8694404591vw + 49.2395982783px, 80px) 20px clamp(20px, 5.7388809182vw + -1.5208034433px, 60px);
  background: #d8e698;
}
.footer-wrap .footer-box {
  display: flex;
  justify-content: space-between;
  gap: clamp(20px, 3.4433285509vw + 7.087517934px, 44px);
  width: 100%;
  max-width: 1072px;
  margin-inline: auto;
  margin-bottom: clamp(30px, 1.4347202296vw + 24.6197991392px, 40px);
  padding-bottom: clamp(30px, 1.4347202296vw + 24.6197991392px, 40px);
  border-bottom: 2px solid #ffffff;
}
.footer-wrap .footer-box address .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: clamp(260px, 46.9153515065vw + 84.0674318508px, 587px);
}
.footer-wrap .footer-box address span {
  display: block;
  font-size: clamp(16px, 0.4304160689vw + 14.3859397418px, 19px);
  line-height: 1.4;
  margin-top: 8px;
}
.footer-wrap .footer-box .contact-area {
  margin-top: auto;
}
.footer-wrap .footer-box .contact-area .phone-box .phone-txt,
.footer-wrap .footer-box .contact-area .phone-box .phone-time {
  font-size: clamp(14px, 0.5738880918vw + 11.8479196557px, 18px);
  line-height: 1.4;
  margin-left: clamp(8px, 0.2869440459vw + 6.9239598278px, 10px);
  padding-left: clamp(24px, 2.0086083214vw + 16.4677187948px, 38px);
}
.footer-wrap .footer-box .contact-area .phone-box .phone-number {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.2869440459vw + 6.9239598278px, 10px);
}
.footer-wrap .footer-box .contact-area .phone-box .phone-number .phone-icon {
  width: clamp(24px, 2.0086083214vw + 16.4677187948px, 38px);
}
.footer-wrap .footer-box .contact-area .phone-box .phone-number a {
  font-size: clamp(34px, 3.7302725968vw + 20.0114777618px, 60px);
  font-weight: 700;
  color: #007c36;
}
@media screen and (max-width: 767px) {
  .footer-wrap .footer-box {
    flex-direction: column;
  }
  .footer-wrap .footer-box address .logo {
    margin-inline: auto;
  }
  .footer-wrap .footer-box address span {
    text-align: center;
    margin-top: 20px;
  }
  .footer-wrap .footer-box .contact-area {
    margin-inline: auto;
  }
}
.footer-wrap .footer-nav {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .footer-wrap .footer-nav {
    display: none;
  }
}
.footer-wrap .footer-nav ul {
  display: flex;
  justify-content: center;
}
.footer-wrap .footer-nav ul li {
  border-left: 1px solid #333333;
}
.footer-wrap .footer-nav ul li:last-child {
  border-right: 1px solid #333333;
}
.footer-wrap .footer-nav ul li a {
  display: block;
  font-size: clamp(10px, 1.4814814815vw + 4.4444444444px, 24px);
  font-weight: 500;
  padding: 0 1.5em;
  transition: 0.3s;
}
.footer-wrap .footer-nav ul li a.current, .footer-wrap .footer-nav ul li a:hover {
  color: #d18f40;
}
.footer-wrap .copyright {
  font-size: clamp(14px, 0.1058201058vw + 13.6031746032px, 15px);
  color: #777777;
  line-height: 1.2;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================================
// form.scss (FORM STYLES)
============================================================ */
/* ------------------------------------------------------------
// Form Base Settings
------------------------------------------------------------ */
::-moz-placeholder {
  color: #777777;
  opacity: 1;
}
::placeholder {
  color: #777777;
  opacity: 1;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
textarea,
select {
  font-family: inherit;
  font-feature-settings: "normal";
  font-size: 16px;
  color: #333333;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background-color: #ffffff;
  flex-shrink: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.2s;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #777777;
}

input[type=tel] {
  max-width: 280px;
}

input[type=email] {
  max-width: 520px;
}

.postal-code input[type=text] {
  max-width: 160px;
}

@media (max-width: 600px) {
  input[type=tel],
  input[type=email],
  .postal-code input[type=text] {
    max-width: 100%;
  }
}
input,
textarea {
  font-family: inherit;
  font-feature-settings: "normal";
}

label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
  width: 100%;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

input[type=radio],
input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #333333;
}

textarea {
  line-height: 1.6;
  min-height: 120px;
  resize: vertical;
}

.select-wrapper {
  position: relative;
  width: 240px;
  max-width: 100%;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid #777777;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  pointer-events: none;
}
.select-wrapper select {
  font-family: inherit;
  color: #333333;
  width: 100%;
  padding: 12px 40px 12px 16px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
}
.select-wrapper select::-ms-expand {
  display: none;
}
.select-wrapper select:focus {
  border-color: #777777;
  outline: none;
}

.agree-check-checkbox {
  font-size: clamp(16px, 0.2116402116vw + 15.2063492063px, 18px);
  font-weight: 700;
  color: inherit;
  text-align: center;
  margin: 40px 0;
}
.agree-check-checkbox label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.agree-check-checkbox label:hover {
  opacity: 0.7;
}

.button-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}
.button-box input[type=button] {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 0.6349206349vw + 15.619047619px, 24px);
  color: #009944;
  width: clamp(200px, 8.4656084656vw + 168.253968254px, 280px);
  height: clamp(40px, 1.0582010582vw + 36.0317460317px, 50px);
  padding-bottom: 4px;
  background: #ffffff;
  border: 1px solid #009944;
  border-radius: 6px;
  transition: 0.3s;
}
.button-box input[type=button]:hover {
  color: #ffffff;
  background: #009944;
}
.button-box input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 0.6349206349vw + 15.619047619px, 24px);
  color: #009944;
  width: clamp(200px, 8.4656084656vw + 168.253968254px, 280px);
  height: clamp(40px, 1.0582010582vw + 36.0317460317px, 50px);
  padding-bottom: 4px;
  background: #ffffff;
  border: 1px solid #009944;
  border-radius: 6px;
  transition: 0.3s;
}
.button-box input[type=submit]:hover {
  color: #ffffff;
  background: #009944;
}

/* ============================================================
// utility.scss (.u-xxxx)
// HTMLに直接付与して、見た目を強制上書きする単機能クラス群
============================================================ */
/* ------------------------------------------------------------
// レイアウト
------------------------------------------------------------ */
.u-center {
  display: block !important;
  text-align: center !important;
  justify-content: center !important;
  margin-inline: auto !important;
}
.u-center img {
  margin-inline: auto !important;
}

.u-spacer {
  height: clamp(60px, 6.3492063492vw + 36.1904761905px, 120px) !important;
}

/* ------------------------------------------------------------
// 表示切り替え
------------------------------------------------------------ */
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

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

/* ------------------------------------------------------------
// テキスト設定
------------------------------------------------------------ */
.u-txt-red {
  color: #d7000f !important;
}

.u-fw-bold {
  font-weight: 700 !important;
}

.u-single-line {
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.u-stack-text > * + * {
  margin-top: 1.5em;
}
.u-stack-text ul,
.u-stack-text ol {
  padding-left: 1.5em;
}
.u-stack-text ul li,
.u-stack-text ol li {
  list-style-position: outside;
}

/* ------------------------------------------------------------
// その他
------------------------------------------------------------ */
.u-clickable {
  cursor: pointer !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.u-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

@media screen and (max-width: 767px) {
  .u-reverse-sp {
    flex-direction: column-reverse !important;
  }
}

/* ------------------------------------------------------------
// body
------------------------------------------------------------ */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 0.1058201058vw + 14.6031746032px, 16px);
  font-weight: 500;
  color: #231815;
  line-height: 1.6;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  background-color: #ffffff;
}

/* ------------------------------------------------------------
// font
------------------------------------------------------------ */
.serif {
  font-family: "Noto Serif JP", serif;
}

/* ------------------------------------------------------------
// link button
------------------------------------------------------------ */
a,
a:hover,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}
a img,
a:hover img,
a:visited img,
a:active img {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 1;
}
a:hover img {
  opacity: 0.7;
}

.link-btn a {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-bottom: 4px;
  color: #111111;
  font-weight: 700;
  transition: color 0.3s ease;
}
.link-btn a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.link-btn a::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: currentColor;
  margin-left: 15px;
  position: relative;
  transition: all 0.3s ease;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(-45deg, transparent 50%, currentColor 50%);
  background-size: 8px 1px;
  background-repeat: no-repeat;
  background-position: right 0 top -3px, right 0 bottom -3px;
}
.link-btn a:hover {
  color: #000000;
}
.link-btn a:hover::before {
  transform: scaleX(1.2);
}
.link-btn a:hover::after {
  margin-left: 25px;
  width: 50px;
}

/* ------------------------------------------------------------
// table
------------------------------------------------------------ */
.table-base {
  width: 100%;
  border-collapse: collapse;
}
.table-base tr {
  display: grid;
  grid-template-columns: clamp(200px, 4.2328042328vw + 184.126984127px, 240px) auto;
  border-top: 1px solid #eeeeee;
}
.table-base tr th,
.table-base tr td {
  font-size: clamp(15px, 0.1058201058vw + 14.6031746032px, 16px);
  text-align: left;
  vertical-align: top;
  padding: clamp(16px, 0.8465608466vw + 12.8253968254px, 24px);
}
.table-base tr th {
  font-weight: 700;
  color: #333333;
  background: #f9f9f9;
  display: flex;
  align-items: center;
}
.table-base tr td {
  background: #ffffff;
}
.table-base tr:last-child {
  border-bottom: 1px solid #eeeeee;
}
@media screen and (max-width: 767px) {
  .table-base tr {
    display: block;
    border-top: none;
    border-bottom: 1px solid #eeeeee;
  }
  .table-base tr th,
  .table-base tr td {
    display: block;
    width: 100%;
  }
  .table-base tr th {
    padding: clamp(10px, 0.2116402116vw + 9.2063492063px, 12px) clamp(15px, 0.5291005291vw + 13.0158730159px, 20px);
    font-size: 14px;
    background: #f2f2f2;
  }
  .table-base tr td {
    padding: clamp(15px, 0.5291005291vw + 13.0158730159px, 20px) clamp(15px, 0.5291005291vw + 13.0158730159px, 20px) clamp(20px, 0.5291005291vw + 18.0158730159px, 25px);
  }
}

/* ------------------------------------------------------------
// Web Site Design Common Parts
------------------------------------------------------------ */
.content-bg {
  padding-block: clamp(60px, 10.582010582vw + 20.3174603175px, 160px);
  padding-inline: 20px;
  background: url(../images/common/bg-content.webp) no-repeat top center;
}
.content-bg .content-wrap {
  width: 100%;
  max-width: 1324px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .content-bg {
    background-size: 1400px auto;
  }
}

.content-ttl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(190px, 20.1058201058vw + 114.6031746032px, 380px);
}
.content-ttl .content-ttl-shadow {
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 100%;
  height: clamp(50px, 5.291005291vw + 30.1587301587px, 100px);
}
.content-ttl .content-ttl-shadow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.content-ttl .content-ttl-txt-box {
  text-align: center;
  min-width: clamp(240px, 16.9312169312vw + 176.5079365079px, 400px);
  padding: clamp(20px, 2.1164021164vw + 12.0634920635px, 40px) clamp(30px, 3.1746031746vw + 18.0952380952px, 60px);
  background-color: rgba(255, 247, 153, 0.6);
  border-radius: clamp(10px, 1.0582010582vw + 6.0317460317px, 20px);
}
.content-ttl .content-ttl-txt-box .ttl-txt {
  font-size: clamp(27px, 2.8571428571vw + 16.2857142857px, 54px);
  font-weight: 700;
  margin-bottom: clamp(5px, 0.5291005291vw + 3.0158730159px, 10px);
  line-height: 1.2;
}
.content-ttl .content-ttl-txt-box .ttl-pankuz {
  font-size: clamp(14px, 0.4232804233vw + 12.4126984127px, 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.content-ttl .content-ttl-txt-box .ttl-pankuz span {
  font-size: clamp(12px, 0.2116402116vw + 11.2063492063px, 14px);
}

.content-green-ttl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(24px, 3.1746031746vw + 12.0952380952px, 54px);
  font-weight: 700;
  color: #ffffff;
  height: clamp(56px, 5.9259259259vw + 33.7777777778px, 112px);
  padding-inline: 1em;
  background: #007c36;
  border-radius: clamp(28px, 2.962962963vw + 16.8888888889px, 56px);
}

.green-circle-ttl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 2.328042328vw + 9.2698412698px, 40px);
  font-weight: 700;
  color: #007c36;
  text-align: center;
  line-height: 1.2;
  width: clamp(100px, 12.6984126984vw + 52.380952381px, 220px);
  height: clamp(100px, 12.6984126984vw + 52.380952381px, 220px);
  border: 3px solid #007c36;
  border-radius: 50%;
}