@charset "UTF-8";
/* CSS Document */
html {
  height: 100%;
}

body {
  font-family: "YakuHanJP", "Lato", "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  width: 100%;
  height: 100%;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 0 auto;
  background: #fff;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

.sentence p + p {
  margin-top: 20px;
}

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

.ggmap {
  width: 100%;
  height: 350px;
}

input, select {
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 5px;
}

.phone {
  display: none;
}

.pc {
  display: block;
}

.tcen {
  text-align: center;
}

@media screen and (max-width: 800px) {
  .tcen {
    text-align: left;
  }
  body {
    font-size: 13px;
    line-height: 1.5;
  }
  .phone {
    display: block;
  }
  .pc {
    display: none !important;
  }
}
#page-top {
  position: fixed;
  bottom: 65px;
  right: 5px;
  font-size: 12px;
  font-weight: bold;
  z-index: 9999;
}
#page-top a {
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  border-radius: 45px;
  background: #5c4233;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
}
#page-top a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.mtext1 {
  font-size: 2rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.mtext1.type1 {
  margin-bottom: 25px;
  text-align: center;
}
.mtext1.type1 br {
  display: none;
}

@media all and (max-width: 896px) {
  .mtext1 {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .mtext1.type1 {
    margin-bottom: 20px;
  }
  .mtext1.type1 br {
    display: block;
  }
}
.mtext2 {
  font-size: 2.4rem;
  line-height: 1.6;
}
.mtext2.type1 {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}

@media all and (max-width: 896px) {
  .mtext2 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 2rem;
  }
  .mtext2.type1 {
    margin-bottom: 25px;
  }
}
.mtext3 {
  font-size: 4rem;
  line-height: 1.6;
  text-align: center;
}

@media all and (max-width: 896px) {
  .mtext3 {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 2.4rem;
  }
}
.loader {
  align-items: center;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28648/bg-main.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader.off {
  display: none;
}
@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#page {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #page {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ==========================================================================
   木住いTEC  common stylesheet
   ========================================================================== */
:root {
  --green: #0B5D34;
  --green-dark: #073E23;
  --lime: #8CC63E;
  --lime-ink: #3E7517;
  --lime-pale: #C6E39B;
  --brown: #6B5A46;
  --base: #FAF8F3;
  --pale: #F0F4EC;
  --white: #fff;
  --ink: #1E2420;
  --ink-body: #3A423C;
  --ink-sub: #5A635C;
  --line: #E2DED3;
  --line-green: #C9D3C6;
  --wrap: 1240px;
  --font-jp: Zen Kaku Gothic New, Hiragino Kaku Gothic ProN, Yu Gothic, sans-serif;
  --font-en: Barlow Condensed, sans-serif;
  --header-h: 74px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--base);
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: hidden;
}

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

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
a:hover {
  color: var(--lime-ink);
}

button {
  font-family: inherit;
}

h1, h2, h3, p, dl, dd, dt, figure {
  margin: 0;
}

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

::-moz-selection {
  background: var(--lime-pale);
}

::selection {
  background: var(--lime-pale);
}

/* ---------- utility ---------- */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}
.wrap--narrow {
  max-width: 960px;
}

.section {
  padding-block: clamp(48px, 7vw, 96px);
}
.section--white {
  background: var(--white);
}
.section--base {
  background: var(--base);
}
.section--pale {
  background: var(--pale);
}
.section--green {
  background: var(--green);
  color: var(--white);
}
.section--dark {
  background: var(--green-dark);
  color: var(--white);
}
.section--line {
  border-top: 1px solid var(--line);
}
.section--dark .eyebrow, .section--green .eyebrow {
  color: var(--lime-pale);
}
.section--dark .lead, .section--green .lead {
  color: #D8E4DA;
}
.section--dark .risk p, .section--green .risk p {
  color: #D8E4DA;
}

.eyebrow {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--lime-ink);
  margin-bottom: 14px;
}

.h2 {
  font-size: clamp(21px, 2.7vw, 34px);
  font-weight: 900;
  line-height: 1.45;
}

.h3 {
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 900;
  line-height: 1.5;
}

.lead {
  font-size: 16px;
  line-height: 2.15;
  color: var(--ink-body);
}

.mt-s {
  margin-top: 16px;
}

.mt-m {
  margin-top: 26px;
}

.mt-l {
  margin-top: clamp(30px, 4vw, 48px);
}

.mb-l {
  margin-bottom: clamp(30px, 4vw, 48px);
}

.note {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-sub);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  background: var(--green);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--green-dark);
  color: var(--white);
}
.btn--lime {
  background: var(--lime);
  color: var(--green-dark);
}
.btn--lime:hover {
  background: var(--white);
  color: var(--green-dark);
}
.btn--white {
  background: var(--white);
  color: var(--green-dark);
}
.btn--white:hover {
  background: var(--lime);
  color: var(--green-dark);
}
.btn--outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn--glass {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}
.btn--glass:hover {
  background: rgba(255, 255, 255, 0.24);
  color: var(--white);
}
.btn--sm {
  min-height: 48px;
  padding: 0 22px;
  font-size: 14px;
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}
.header.is-scrolled {
  box-shadow: 0 6px 24px rgba(7, 62, 35, 0.09);
}
.header__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.header__spacer {
  flex: 1 1 0;
  min-width: 0;
}
.header__tel {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--ink);
}
.header__tel small {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-sub);
}
.header__tel strong {
  font-family: var(--font-en);
  font-size: 25px;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}
.header__tel:hover strong {
  color: var(--lime-ink);
}
.header .btn {
  white-space: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.logo img {
  width: 52px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.logo:hover img {
  transform: scale(1.06);
}
.logo__jp {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--green);
  line-height: 1;
}
.logo__en {
  display: block;
  margin-top: 3px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-sub);
  line-height: 1;
}

.gnav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.gnav__link {
  position: relative;
  display: block;
  padding: 11px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.gnav__link::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 1px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.gnav__link:hover {
  color: var(--green);
}
.gnav__link:hover::after {
  transform: scaleX(1);
}
.gnav__link[aria-current=page]::after {
  transform: scaleX(1);
}

/* ---------- hamburger / drawer ---------- */
.hamburger {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  background: var(--green);
  border: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s var(--ease);
}
.hamburger:hover {
  background: var(--green-dark);
}
.hamburger span {
  position: absolute;
  left: 15px;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger span:nth-child(1) {
  top: 19px;
}
.hamburger span:nth-child(2) {
  top: 25px;
}
.hamburger span:nth-child(3) {
  top: 31px;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.drawer.is-open {
  visibility: visible;
  opacity: 1;
}
.drawer.is-open .drawer__panel {
  transform: translateX(0);
}
.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 62, 35, 0.5);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.drawer__panel {
  position: relative;
  width: min(88vw, 360px);
  height: 100%;
  overflow-y: auto;
  background: var(--green-dark);
  color: var(--white);
  padding: 22px 26px 40px;
  transform: translateX(24px);
  transition: transform 0.4s var(--ease);
}
.drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  min-width: 48px;
  min-height: 48px;
  padding: 0 12px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.drawer__close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--lime);
}
.drawer__nav {
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}
.drawer__nav a::after {
  content: "→";
  color: var(--lime);
  transition: transform 0.3s var(--ease);
}
.drawer__nav a:hover {
  color: var(--lime-pale);
}
.drawer__nav a:hover::after {
  transform: translateX(5px);
}
.drawer__foot {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.drawer__foot a {
  color: var(--white);
  font-size: 14px;
}
.drawer__foot a:hover {
  color: var(--lime-pale);
}
.drawer__tel {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--green-dark);
  overflow: hidden;
}
.hero__stage {
  position: relative;
  height: min(84vh, 760px);
  min-height: 500px;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: opacity 1.4s var(--ease), transform 7s var(--ease);
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1.05);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(260deg, rgba(7, 62, 35, 0.9) 0%, rgba(7, 62, 35, 0.5) 42%, rgba(7, 62, 35, 0.12) 100%);
}
.hero__catchwrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 24px clamp(16px, 4vw, 64px) 92px;
}
.hero__catch {
  writing-mode: vertical-rl;
  max-height: 100%;
  color: var(--white);
  font-size: clamp(16px, min(2.9vw, 4.6vh), 40px);
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: 0.09em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero__rule {
  width: 1px;
  align-self: stretch;
  margin-right: clamp(14px, 2vw, 34px);
  background: linear-gradient(180deg, rgba(140, 198, 62, 0), var(--lime) 40%, rgba(140, 198, 62, 0));
}
.hero__body {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 620px;
  padding: 0 clamp(16px, 4vw, 40px) clamp(80px, 12vw, 130px);
}
.hero__badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 13px;
  background: var(--lime);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.hero__sub {
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 2;
  font-weight: 500;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- page head ---------- */
.page-head {
  position: relative;
  background: var(--green-dark);
  overflow: hidden;
}
.page-head .eyebrow {
  color: var(--lime-pale);
}
.page-head__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.38;
}
.page-head__inner {
  position: relative;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(44px, 6vw, 80px) 20px;
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.page-head__title {
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 900;
  letter-spacing: 0.06em;
}
.page-head__title--multi {
  font-size: clamp(23px, 2.9vw, 36px);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.page-head--lead .page-head__inner {
  align-items: flex-start;
  padding-block: clamp(36px, 5vw, 68px);
}
.page-head__col {
  flex: 1 1 300px;
  min-width: 0;
}
.page-head__text {
  margin-top: 4px;
  max-width: 560px;
  color: var(--white);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 2;
  font-weight: 500;
}

/* ---------- sticky vertical heading layout ---------- */
.sticky-layout {
  display: flex;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
  align-items: flex-start;
}
.sticky-layout__head {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  flex: 0 0 auto;
  writing-mode: vertical-rl;
  font-size: clamp(21px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.sticky-layout__body {
  flex: 1 1 420px;
  min-width: 0;
}

.tate-num {
  text-combine-upright: all;
}

/* ---------- message ---------- */
.message {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  align-items: flex-start;
}
.message__head {
  flex: 0 0 auto;
  writing-mode: vertical-rl;
  font-size: clamp(22px, 2.6vw, 33px);
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.08em;
}
.message__text {
  flex: 1 1 320px;
  min-width: 0;
}
.message__text p + p {
  margin-top: 20px;
}
.message__figs {
  flex: 1 1 280px;
  min-width: 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.message__figs > img:first-child {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}
.message__figs-sub {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 44px;
}
.message__figs-sub img:first-child {
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.message__figs-sub img:last-child {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

/* ---------- compare ---------- */
.compare {
  display: flex;
  flex-wrap: wrap;
}
.compare__col {
  flex: 1 1 340px;
  min-width: 0;
  padding: clamp(32px, 4vw, 56px) clamp(20px, 4vw, 56px) clamp(40px, 5vw, 64px);
  color: var(--white);
}
.compare__col--general {
  background: var(--brown);
}
.compare__col--general .compare__inner {
  margin-left: auto;
}
.compare__col--general .compare__label {
  color: #EFE6DA;
}
.compare__col--general .compare__score {
  background: rgba(0, 0, 0, 0.22);
}
.compare__col--general .compare__score small {
  color: #EFE6DA;
}
.compare__col--hg {
  background: var(--green);
}
.compare__col--hg .compare__label {
  color: var(--lime-pale);
}
.compare__col--hg .compare__part {
  color: var(--lime-pale);
}
.compare__col--hg .compare__score {
  background: var(--lime);
  color: var(--green-dark);
}
.compare__inner {
  max-width: 520px;
}
.compare__label {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}
.compare__img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  margin-block: 28px;
}
.compare__row {
  padding-block: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.compare__row p {
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
}
.compare__part {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  color: var(--white);
}
.compare__score {
  margin-top: 30px;
  padding: 20px 22px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.compare__score small {
  font-size: 13px;
  font-weight: 700;
}
.compare__score b {
  font-family: var(--font-en);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}
.compare__score span {
  font-size: 16px;
  font-weight: 700;
}

/* ---------- reasons (zigzag) ---------- */
.reason {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  align-items: center;
  padding-block: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}
.reason:first-of-type {
  padding-top: 0;
}
.reason:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.reason--rev {
  flex-wrap: wrap-reverse;
}
.reason__fig {
  flex: 1 1 300px;
  min-width: 0;
  overflow: hidden;
}
.reason__fig img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.reason__fig:hover img {
  transform: scale(1.05);
}
.reason__body {
  flex: 1 1 320px;
  min-width: 0;
}
.reason__body h3 {
  margin-bottom: 16px;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 900;
  line-height: 1.5;
}
.reason__body p {
  font-size: 16px;
  line-height: 2.05;
  color: var(--ink-body);
}
.reason__num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 600;
  color: var(--lime-ink);
  line-height: 1;
  margin-bottom: 12px;
}

/* ---------- index list ---------- */
.index-list {
  border-top: 1px solid var(--line);
}
.index-list__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: 22px 8px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.index-list__item:hover {
  background: var(--base);
  padding-left: 16px;
}
.index-list__item:hover .index-list__arrow {
  transform: translateX(6px);
}
.index-list__num {
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--lime-ink);
  line-height: 1;
}
.index-list__txt {
  flex: 1 1 0;
  min-width: 0;
}
.index-list__ttl {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 900;
  color: var(--ink);
}
.index-list__dsc {
  display: block;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-sub);
}
.index-list__thumb {
  flex: 0 0 auto;
  width: clamp(72px, 12vw, 132px);
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-list__arrow {
  flex: 0 0 auto;
  font-size: 20px;
  color: var(--green);
  transition: transform 0.3s var(--ease);
}

/* ---------- cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card-grid--wide {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  min-width: 0;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(7, 62, 35, 0.1);
  border-color: var(--green);
}
.card:hover .card__img {
  transform: scale(1.05);
}
.card--base {
  background: var(--base);
}
.card__img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.card__body {
  padding: 20px 20px 24px;
}
.card__date {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--lime-ink);
  font-weight: 600;
  margin-bottom: 8px;
}
.card__ttl {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.65;
  margin-bottom: 8px;
}
.card__spec {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-sub);
}

/* ---------- service rows ---------- */
.svc {
  border-top: 1px solid var(--line);
}
.svc__row {
  display: flex;
  gap: clamp(18px, 3vw, 44px);
  flex-wrap: wrap;
  align-items: center;
  padding-block: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
}
.svc__row img {
  flex: 0 0 auto;
  width: clamp(110px, 22vw, 260px);
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.svc__row:hover img {
  transform: scale(1.04);
}
.svc__body {
  flex: 1 1 280px;
  min-width: 0;
}
.svc__body h3 {
  margin-bottom: 12px;
}
.svc__body p {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-sub);
}

/* ---------- flow ---------- */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(22px, 3vw, 34px);
}

.flow__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.flow__num {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.flow__line {
  flex: 1 1 0;
  height: 1px;
  background: var(--line-green);
}
.flow__item:hover .flow__num {
  background: var(--lime);
  color: var(--green-dark);
  transform: scale(1.08);
}
.flow__item h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}
.flow__item p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-sub);
}
.flow__note {
  margin-top: 14px;
  padding: 11px 13px;
  background: var(--white);
  border-left: 3px solid var(--lime);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--green-dark);
}

/* ---------- guard page parts ---------- */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.risk {
  overflow: hidden;
}
.risk img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.risk:hover img {
  transform: scale(1.05);
}
.risk h3 {
  margin: 18px 0 10px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}
.risk p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-sub);
}

.midori {
  display: flex;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
  align-items: flex-start;
}
.midori__head {
  flex: 0 0 auto;
  writing-mode: vertical-rl;
  font-size: clamp(21px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.midori__body {
  flex: 1 1 320px;
  min-width: 0;
}
.midori__body p + p {
  margin-top: 20px;
}
.midori__figs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.midori__figs figure {
  flex: 1 1 160px;
  margin: 0;
}
.midori__figs img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.midori__figs figcaption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-sub);
  line-height: 1.6;
}
.midori__side {
  flex: 0 1 300px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.midori__side > img {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}

.score {
  padding: 18px 20px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.score small {
  font-size: 13px;
  font-weight: 700;
  color: var(--lime-pale);
}
.score b {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}
.score span {
  font-size: 16px;
  font-weight: 700;
}

.spec-list {
  flex: 1 1 300px;
  min-width: 0;
}

.spec {
  padding-block: 20px;
  border-top: 1px solid var(--line);
}
.spec__part {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lime-ink);
  margin-bottom: 8px;
}
.spec h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.5;
}
.spec p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-sub);
}

.stats {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  flex-wrap: wrap;
}
.stats__item {
  flex: 1 1 200px;
  min-width: 0;
  padding: 26px 22px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.stats__num {
  font-family: var(--font-en);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 600;
  line-height: 1;
  color: var(--lime-pale);
  margin-bottom: 6px;
}
.stats__num span {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.stats__label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--white);
}

.dura {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dura__row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.dura__label {
  flex: 0 0 auto;
  width: clamp(160px, 26vw, 230px);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.dura__bar {
  flex: 0 0 auto;
  height: 14px;
  transform-origin: left;
}
.dura__bar--1 {
  width: 12%;
  background: var(--line-green);
}
.dura__bar--2 {
  width: 28%;
  background: #A7BFA2;
}
.dura__bar--3 {
  width: 42%;
  background: var(--lime);
}
.dura__bar--4 {
  width: 50%;
  background: #4C8A1E;
}
.dura__bar--5 {
  width: 58%;
  background: var(--green);
}
.dura__years {
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-size: 19px;
  font-weight: 600;
  color: var(--green);
}

.lab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.lab {
  padding-top: 18px;
  border-top: 1px solid var(--line-green);
}
.lab h3 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
}
.lab p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-sub);
}

.panel-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.panel {
  flex: 1 1 300px;
  min-width: 0;
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  transition: box-shadow 0.35s var(--ease);
}
.panel:hover {
  box-shadow: 0 14px 32px rgba(7, 62, 35, 0.08);
}
.panel h3 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 900;
}
.panel p {
  margin-bottom: 26px;
  font-size: 15px;
  line-height: 2.05;
  color: var(--ink-body);
}

/* ---------- news ---------- */
.news {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  align-items: flex-start;
}
.news__head {
  flex: 0 0 auto;
}
.news__list {
  flex: 1 1 340px;
  min-width: 0;
}
.news__item {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: baseline;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}
.news__item:hover {
  padding-left: 8px;
}
.news__date {
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--ink-sub);
  min-width: 84px;
}
.news__tag {
  padding: 4px 10px;
  background: var(--pale);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}
.news__ttl {
  flex: 1 1 220px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

/* ---------- access ---------- */
.access__map {
  width: 100%;
  height: clamp(280px, 40vw, 460px);
  border: 0;
  display: block;
}
.access__card {
  position: relative;
  margin-top: clamp(-70px, -6vw, -40px);
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}
.access__col {
  flex: 2.2 1 360px;
  min-width: 0;
}
.access__side {
  flex: 1 1 240px;
  min-width: 0;
  max-width: 300px;
}

.callout {
  padding: 15px 17px;
  background: var(--pale);
  border-left: 3px solid var(--lime);
}
.callout p {
  font-size: 14px;
  line-height: 1.9;
  font-weight: 700;
  color: var(--green-dark);
}
.callout span {
  font-weight: 500;
}

.dl-access {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px 16px;
  font-size: 15px;
  line-height: 1.8;
}
.dl-access dt {
  color: var(--ink-sub);
  font-weight: 700;
}
.dl-access .tel {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 600;
}

/* ---------- table ---------- */
.dl-table {
  border-top: 1px solid var(--line);
}
.dl-table__row {
  display: grid;
  grid-template-columns: minmax(110px, 190px) 1fr;
  gap: 18px;
  padding: 21px 4px;
  border-bottom: 1px solid var(--line);
}
.dl-table dt {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}
.dl-table dd {
  font-size: 16px;
  line-height: 1.9;
  white-space: pre-line;
}

/* ---------- contact ---------- */
.contact-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  min-width: 0;
  padding: 28px 26px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(7, 62, 35, 0.12);
}
.contact-card--tel {
  background: var(--green);
  color: var(--white);
}
.contact-card--tel:hover {
  background: var(--green-dark);
  color: var(--white);
}
.contact-card--tel .contact-card__label {
  color: var(--lime-pale);
}
.contact-card--tel .contact-card__note {
  color: #D8E4DA;
}
.contact-card--line {
  background: var(--lime);
  color: var(--green-dark);
}
.contact-card--line:hover {
  background: #7AB62F;
  color: var(--green-dark);
}
.contact-card--sns {
  background: var(--base);
  border: 1px solid var(--line);
  color: var(--ink);
}
.contact-card--sns:hover {
  border-color: var(--green);
}
.contact-card--sns .contact-card__label,
.contact-card--sns .contact-card__note {
  color: var(--ink-sub);
}
.contact-card__label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card__num {
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 8px;
}
.contact-card__big {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 8px;
}
.contact-card__note {
  font-size: 13px;
  line-height: 1.8;
}

.form {
  display: grid;
  gap: 22px;
}
.form label {
  display: block;
}
.form span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}
.form input,
.form textarea {
  width: 100%;
  padding: 0 14px;
  min-height: 52px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: var(--base);
  border: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form input:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(140, 198, 62, 0.25);
}
.form textarea {
  padding: 14px;
  line-height: 1.8;
  resize: vertical;
  min-height: auto;
}
.form__foot {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.form__thanks {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}
.form__thanks[hidden] {
  display: none;
}

/* ---------- cta band ---------- */
.cta-band {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(28px, 4vw, 48px);
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.cta-band h3 {
  margin-bottom: 10px;
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 900;
}
.cta-band p {
  font-size: 15px;
  line-height: 1.9;
  color: #D8E4DA;
}
.cta-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- footer ---------- */
.footer {
  background: var(--green-dark);
  color: var(--white);
}
.footer__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(46px, 6vw, 80px) 20px clamp(28px, 4vw, 44px);
  display: flex;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
}
.footer__col {
  flex: 1 1 220px;
  min-width: 0;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.footer__brand img {
  width: 68px;
  height: 68px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__jp {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 5px;
}
.footer__en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--lime);
  line-height: 1;
}
.footer__addr {
  font-size: 15px;
  line-height: 2;
  color: #D8E4DA;
  margin-bottom: 16px;
}
.footer__tel {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
}
.footer__tel:hover {
  color: var(--lime);
}
.footer__hours {
  margin-top: 10px;
  font-size: 14px;
  color: #D8E4DA;
}
.footer__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--lime);
  margin-bottom: 18px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.footer__links a {
  color: var(--white);
  font-size: 15px;
  position: relative;
}
.footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.footer__links a:hover {
  color: var(--lime-pale);
}
.footer__links a:hover::after {
  transform: scaleX(1);
}
.footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.footer__copy p {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 22px 20px;
  font-size: 12px;
  color: #A9BDAE;
}

/* ---------- fixed cta (mobile) ---------- */
.fixed-cta {
  display: none;
}

/* ---------- scroll reveal ---------- */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js-anim .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.js-anim .reveal--d1 {
  transition-delay: 0.1s;
}
.js-anim .reveal--d2 {
  transition-delay: 0.2s;
}
.js-anim .reveal--d3 {
  transition-delay: 0.3s;
}
.js-anim .dura__bar {
  transform: scaleX(0);
  transition: transform 1s var(--ease);
}
.js-anim .is-visible .dura__bar {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .js-anim .dura__bar {
    transform: scaleX(1);
    transition: none;
  }
}
/* ==========================================================================
   responsive
   ========================================================================== */
@media (max-width: 1280px) {
  .header__tel strong {
    font-size: 22px;
  }
  .gnav__link {
    padding: 11px 8px;
    font-size: 13px;
  }
}
@media (max-width: 1150px) {
  :root {
    --header-h: 66px;
  }
  body {
    padding-bottom: 60px;
  }
  .gnav,
  .header__tel {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .header__inner {
    padding: 7px 16px;
    gap: 12px;
  }
  .logo img {
    width: 44px;
    height: 44px;
  }
  .logo__jp {
    font-size: 19px;
  }
  .message__figs {
    order: 3;
  }
  .compare__col--general .compare__inner {
    margin-left: 0;
  }
  .fixed-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
  }
  .fixed-cta.is-shown {
    transform: translateY(0);
  }
  .fixed-cta > * {
    flex: 1 1 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
  }
  .fixed-cta__tel {
    background: var(--green);
    color: var(--white);
  }
  .fixed-cta__line {
    background: var(--lime);
    color: var(--green-dark);
  }
  .fixed-cta__doc {
    background: var(--white);
    color: var(--green);
  }
  .hero__catch {
    font-size: clamp(20px, min(5.6vw, 4.4vh), 28px);
  }
}
@media (max-width: 900px) {
  .hero__catchwrap {
    padding-bottom: 104px;
  }
}
@media (max-width: 640px) {
  .sticky-layout {
    gap: 20px;
  }
  .sticky-layout__head {
    position: static;
    writing-mode: horizontal-tb;
    letter-spacing: 0.02em;
    line-height: 1.5;
  }
  .sticky-layout__head br {
    display: none;
  }
  .message__head,
  .midori__head {
    position: static;
    writing-mode: horizontal-tb;
    letter-spacing: 0.02em;
    line-height: 1.5;
  }
  .message__head br,
  .midori__head br {
    display: none;
  }
  .message__figs-sub {
    margin-top: 0;
  }
  .index-list__thumb {
    display: none;
  }
  .dl-table__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .access__card {
    margin-top: -24px;
    padding: 24px 20px;
  }
  .dl-access {
    grid-template-columns: 70px 1fr;
  }
  .compare__score b,
  .score b {
    font-size: 34px;
  }
}
.work-simple {
  max-width: 820px;
  margin-inline: auto;
}

.work-detail__date {
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--lime-ink);
  font-weight: 600;
  margin-bottom: 10px;
}
.work-detail__title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: clamp(22px, 3vw, 32px);
}
.work-detail__hero {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-detail__body {
  margin-top: clamp(26px, 3.5vw, 40px);
}
.work-detail__body p {
  font-size: 16px;
  line-height: 2.15;
  color: var(--ink-body);
}
.work-detail__body p + p {
  margin-top: 20px;
}

/*新メールフォーム*/
.form {
  margin: 10px 0 10px;
}
.form dt span {
  color: #fff;
  background: #FF4F4F;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dt strong {
  color: #fff;
  background: #999;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dt .optional::before {
  content: "任意";
  color: #fff;
  background: #999;
}
.form dl {
  margin: 10px 0;
  font-size: 16px;
}
.form dt {
  float: left;
  width: 280px;
  padding-top: 20px;
}
.form dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
}
.form dd p {
  font-size: 14px;
  padding-top: 5px;
  color: #888;
}
.form dd:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
}

.dropdown {
  border-radius: 2px;
  border: 1px solid #ddd;
}

.textarea, .textarea2 {
  width: 95%;
  border-radius: 2px;
  border: 1px solid #ddd;
  padding: 5px;
}

.form-button {
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  margin: 10px 0;
}

#mailform button {
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  display: block;
  margin: 0 auto 5px;
  padding: 10px 0 10px;
  color: #fff;
  text-align: center;
  width: 250px;
  border-radius: 5px;
  background: #5c4233;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #5c4233;
}
#mailform button:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #5c4233;
}
#mailform button * {
  transition: 0.2s;
}

.form-button * {
  transition: 0.2s;
}

/*RadioとText*/
label {
  display: block;
}
label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #5c4233;
  z-index: 1;
}
label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 15px;
  height: 15px;
  left: -15px;
  top: 2px;
  margin: 0px;
  box-shadow: 15px -1px #fff;
  border-radius: 50%;
}
label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 15px -1px #FFF;
}
label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
}
label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
}
label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #5c4233;
  border-bottom: 3px solid #5c4233;
  transform: rotate(45deg);
  z-index: 1;
}
label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #FFF;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #EEE;
}

/*CheckBoxとText */
.fm-text {
  padding: 10px;
  font-size: 11px;
  margin: 10px 0;
}

@media all and (max-width: 890px) {
  .form dl {
    margin: 10px 0;
  }
  .form dt {
    float: none;
    width: 100%;
    line-height: 20px;
    padding-top: 10px;
  }
  .form dd {
    width: 100%;
    padding-left: 0;
    padding-bottom: 10px;
    padding-top: 10px;
    line-height: 20px;
    border-bottom: 1px solid #eee;
  }
  .form dd:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .form-contents :not(.pattern-exclusion) button {
    width: 100% !important;
  }
}
/* /新メールフォーム */
.blog-box {
  margin-bottom: 50px;
}
.blog-box img {
  max-width: 100%;
  height: auto;
}

.page_next {
  float: right;
}

.page_prev {
  float: left;
}

.mtitle_box {
  background: rgba(23, 125, 23, 0.1);
  border-radius: 10px;
  color: #343338;
  font-size: 2rem;
  position: relative;
  padding: 10px 10px;
  margin-bottom: 20px;
  font-weight: 700;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}

@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.8rem;
  }
}
.newsl2 dt {
  font-size: 120%;
  padding-top: 10px;
  line-height: 1.3;
  color: #5c4233;
  font-weight: bold;
}
.newsl2 dd {
  padding-bottom: 5px;
  padding-top: 10px;
  margin-bottom: 15px;
  line-height: 1.6;
  border-bottom: dotted 1px #b6ae83;
}
.newsl2 dd b {
  color: #594C39;
}/*# sourceMappingURL=basis.css.map */