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

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/28291/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;
  }
}
/* --------------------------------------------------
 * Design Tokens & Base Setup
 * -------------------------------------------------- */
:root {
  --font-base-size: 16px;
  --color-orange: #E8821A;
  --color-blue: #5AB4D6;
  --color-light-gray: #F8F8F8;
  --color-dark: #1E1E1E;
  --color-dark-accent: #121212;
  --color-text-slate: #555;
  --color-border-slate: #E2E8F0;
  --color-border-dark: #27272A;
  --color-white: #FFFFFF;
}

html {
  font-size: var(--font-base-size);
  scroll-behavior: smooth;
}
html.is-large {
  --font-base-size: 18px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.85;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

/* Reset basic tag metrics for simplicity */
h1, h2, h3, h4, p, ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

/* Custom Selection */
::-moz-selection {
  background-color: var(--color-orange);
  color: var(--color-white);
}
::selection {
  background-color: var(--color-orange);
  color: var(--color-white);
}

/* --------------------------------------------------
 * Common Components & Typography (BEM structure)
 * -------------------------------------------------- */
.c-section {
  padding: 5rem 1.5rem;
}
@media (min-width: 1024px) {
  .c-section {
    padding: 8rem 0;
  }
}

.c-container {
  width: 100%;
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
}

.c-section-header {
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .c-section-header {
    margin-bottom: 6rem;
  }
}

.c-section-label {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.15em;
  color: var(--color-orange);
  display: block;
}
@media (min-width: 1024px) {
  .c-section-label {
    font-size: 3.25rem;
  }
}

.c-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  display: inline-block;
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .c-section-title {
    font-size: 2.25rem;
  }
}

.c-section-sub {
  color: #94A3B8;
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  display: block;
}
@media (min-width: 1024px) {
  .c-section-sub {
    font-size: 1.75rem;
  }
}

/* Elegant Link & Hover Interaction */
.c-btn-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  transition: all 0.4s ease;
}
.c-btn-arrow::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.c-btn-arrow:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}
.c-btn-arrow:hover .arrow-icon {
  transform: translateX(8px);
}
.c-btn-arrow .arrow-icon {
  margin-left: 0.5rem;
  transition: transform 0.4s ease;
}

.c-btn-outline {
  padding: 1rem 2rem;
  border: 1px solid var(--color-dark);
  color: var(--color-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  display: inline-block;
}
.c-btn-outline:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}
.c-btn-outline i {
  margin-left: 0.5rem;
}

/* Scroll Animation Target (Fade in Up) */
.u-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.u-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.touch-target {
  min-width: 48px;
  min-height: 48px;
}

/* --------------------------------------------------
 * Layout Specifics
 * -------------------------------------------------- */
/* Top Accessibility Control Bar */
.c-accessibility {
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 50;
}
.c-accessibility__area-info {
  display: none;
  color: #CBD5E1;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .c-accessibility__area-info {
    display: block;
  }
}
.c-accessibility__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.c-accessibility__label {
  color: #A1A1AA;
}
.c-accessibility__btn {
  padding: 0.125rem 0.5rem;
  background-color: #27272A;
  border: none;
  color: var(--color-white);
  border-radius: 0.25rem;
  font-size: 11px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.c-accessibility__btn:hover {
  background-color: #3F3F46;
}
.c-accessibility__btn.is-active {
  background-color: #52525B;
}

/* Header & Navigation */
.l-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  z-index: 40;
  transition: all 0.3s ease;
}
.l-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  padding: 0 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-header__container {
    height: 6rem;
  }
}
.l-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.l-header__logo:hover .l-header__logo-icon {
  transform: scale(1.05);
}
.l-header__logo-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-orange);
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.l-header__logo-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.375rem;
  background-color: var(--color-blue);
}
.l-header__logo-svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-white);
}
.l-header__logo-text-en {
  font-size: 0.75rem;
  color: #94A3B8;
  font-weight: 600;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: -0.25rem;
  font-family: "Montserrat", sans-serif;
}
.l-header__logo-text-jp {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #334155;
}
.l-header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .l-header__nav {
    display: flex;
  }
}
.l-header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  transition: color 0.3s ease;
}
.l-header__nav-link:hover {
  color: var(--color-orange);
}
.l-header__cta {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .l-header__cta {
    display: flex;
  }
}
.l-header__cta-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.l-header__cta-label {
  font-size: 0.625rem;
  color: #94A3B8;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
}
.l-header__cta-number {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-orange);
  transition: color 0.3s ease;
}
.l-header__cta-number i {
  margin-right: 0.25rem;
}
.l-header__cta-number:hover {
  color: var(--color-blue);
}
.l-header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  width: 3rem;
  height: 3rem;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 50;
}
@media (min-width: 1024px) {
  .l-header__menu-toggle {
    display: none;
  }
}
.l-header__burger-bar {
  width: 1.5rem;
  height: 2px;
  background-color: #1E293B;
  transition: all 0.3s ease;
}

/* Mobile Menu Drawer */
.p-mobile-menu {
  position: fixed;
  inset: 0;
  background-color: rgba(30, 30, 30, 0.98);
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3rem;
  transition: all 0.5s ease;
  transform: translateX(100%);
}
.p-mobile-menu.is-active {
  transform: translateX(0);
}
.p-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-white);
}
.p-mobile-menu__link {
  transition: color 0.3s;
}
.p-mobile-menu__link:hover {
  color: var(--color-orange);
}
.p-mobile-menu__contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #27272A;
}
.p-mobile-menu__phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-orange);
  display: block;
  margin-bottom: 0.5rem;
}
.p-mobile-menu__phone i {
  margin-right: 0.5rem;
}
.p-mobile-menu__hours {
  color: #A1A1AA;
  font-size: 0.75rem;
}

/* 1. Main Visual (Ken Burns Slideshow) */
.p-mv {
  position: relative;
  height: 80vh;
  width: 100%;
  background-color: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.p-mv #cms-slider-1-1-area {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .p-mv {
    height: 100vh;
  }
}
.p-mv__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-mv__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.p-mv__container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  color: var(--color-white);
  box-sizing: border-box;
}
.p-mv__box {
  max-width: 42rem;
}
.p-mv__sub-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-blue);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .p-mv__sub-title {
    font-size: 1.5rem;
  }
}
.p-mv__main-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-mv__main-title {
    font-size: 3rem;
  }
}
.p-mv__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: #D4D4D8;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 32rem;
}
@media (min-width: 768px) {
  .p-mv__desc {
    font-size: 1rem;
  }
}
.p-mv__btn-phone {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 1rem 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}
.p-mv__btn-phone i {
  margin-right: 0.75rem;
}
@media (min-width: 768px) {
  .p-mv__btn-phone {
    font-size: 1.125rem;
  }
}
.p-mv__btn-phone:hover {
  background-color: #d17212;
}
.p-mv {
  /* Scroll Indicator */
}
.p-mv__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-mv__scroll-text {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
}
.p-mv__scroll-line {
  width: 1px;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.p-mv__scroll-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--color-orange);
  animation: bounce 1.5s infinite ease-in-out;
}

/* 2. News Section */
.p-news {
  background-color: var(--color-white);
  padding: 3rem 1.5rem;
  border-bottom: 1px solid #F1F5F9;
}
.p-news__container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .p-news__container {
    flex-direction: row;
    align-items: baseline;
    gap: 2.5rem;
  }
}
.p-news__title-block {
  flex-shrink: 0;
}
.p-news__section-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: var(--color-orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}
.p-news__section-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1E293B;
}
.p-news__list {
  flex-grow: 1;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #F1F5F9;
}
.p-news__item {
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid #F1F5F9;
  transition: background-color 0.3s;
}
@media (min-width: 640px) {
  .p-news__item {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}
.p-news__item:hover {
  background-color: #F8FAFC;
}
.p-news__date {
  font-size: 0.75rem;
  color: #94A3B8;
  font-family: "Montserrat", sans-serif;
}
.p-news__category {
  padding: 0.125rem 0.5rem;
  font-size: 10px;
  font-weight: 600;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
.p-news__category--topic {
  background-color: rgba(232, 130, 26, 0.1);
  color: var(--color-orange);
}
.p-news__category--info {
  background-color: rgba(90, 180, 214, 0.1);
  color: var(--color-blue);
}
.p-news__link {
  font-size: 0.875rem;
  color: #334155;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  flex-grow: 1;
}
.p-news__link:hover {
  color: var(--color-orange);
}

/* 3. Branding & Features */
.p-features {
  background-color: var(--color-light-gray);
  overflow: hidden;
}

.p-feature-grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (min-width: 1024px) {
  .p-feature-grid {
    gap: 8rem;
  }
}

.p-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .p-feature-item {
    flex-direction: row;
    gap: 4.5rem;
  }
  .p-feature-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .p-feature-item:nth-child(even) .p-feature-item__num {
    color: var(--color-blue);
  }
}
.p-feature-item__img-box {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-feature-item__img-box {
    width: 60%;
  }
}
.p-feature-item__img-box:hover .p-feature-item__img {
  transform: scale(1.05);
}
.p-feature-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease;
}
.p-feature-item__content {
  width: 100%;
  padding: 1.5rem;
  background-color: var(--color-white);
  border-left: 3px solid var(--color-orange);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .p-feature-item__content {
    width: 40%;
    padding: 2.5rem;
  }
}
.p-feature-item__num {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-orange);
}
.p-feature-item__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.p-feature-item__title-sub {
  display: block;
  font-size: 1.2rem;
  color: #94A3B8;
  font-weight: 400;
  margin-top: 0.25rem;
}
.p-feature-item__desc {
  font-size: 1rem;
  color: var(--color-text-slate);
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .p-feature-item__desc {
    font-size: 1.2rem;
  }
}

/* 4. Services Section (Premium Layout) */
.p-services {
  background-color: var(--color-white);
}
.p-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .p-services__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.p-services__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .p-services__item {
    aspect-ratio: auto;
  }
}
@media (min-width: 768px) {
  .p-services__item--large {
    grid-column: span 4;
    height: 28rem;
  }
}
.p-services__item--large .p-services__name {
  font-size: 1.5rem;
}
@media (min-width: 640px) {
  .p-services__item--large .p-services__desc {
    display: block;
  }
}
@media (min-width: 768px) {
  .p-services__item--small {
    grid-column: span 2;
    height: 28rem;
  }
}
.p-services__item:hover .p-services__bg {
  transform: scale(1.05);
}
.p-services__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.75s ease;
  z-index: 0;
}
.p-services__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 15%, rgba(0, 0, 0, 0.1));
  z-index: 1;
}
.p-services__content {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  width: 100%;
}
.p-services__tag {
  padding: 0.25rem 0.5rem;
  background-color: var(--color-orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.p-services__cat-en {
  font-size: 0.75rem;
  color: var(--color-blue);
  font-weight: 700;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Montserrat", sans-serif;
}
.p-services__name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.p-services__desc {
  font-size: 0.875rem;
  color: #D4D4D8;
  font-weight: 300;
  margin-top: 0.5rem;
  max-width: 28rem;
  display: none;
}
.p-services__cta-label {
  margin-top: 1rem;
  font-size: 0.6875rem;
}

/* 5. Works Gallery (Simplified and flexible layout) */
.p-works {
  background-color: var(--color-light-gray);
}
.p-works__header-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .p-works__header-block {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
}
.p-works__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--color-border-slate);
  width: 100%;
}
@media (min-width: 1024px) {
  .p-works__tabs {
    width: auto;
  }
}
.p-works__tab-btn {
  padding: 0.5rem 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  color: #64748B;
  cursor: pointer;
  transition: all 0.3s ease;
}
.p-works__tab-btn:hover {
  color: var(--color-orange);
}
.p-works__tab-btn.is-active {
  color: var(--color-orange);
  border-bottom-color: var(--color-orange);
}
.p-works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .p-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .p-works__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-works__card {
  background-color: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.p-works__card:hover .p-works__img {
  transform: scale(1.05);
}
.p-works__card:hover .p-works__card-title {
  color: var(--color-orange);
}
.p-works__img-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.p-works__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease;
}
.p-works__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.5rem;
  background-color: var(--color-orange);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.p-works__body {
  padding: 1.5rem;
}
.p-works__client {
  font-size: 1.2rem;
  color: var(--color-blue);
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.p-works__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  transition: color 0.3s;
}
.p-works__scope {
  font-size: 0.75rem;
  color: #94A3B8;
}
.p-works__actions {
  text-align: center;
  margin-top: 3rem;
}

/* 6. Message Section (Asymmetric & Premium) */
.p-message {
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.p-message__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .p-message__wrapper {
    flex-direction: row;
    gap: 5rem;
  }
}
.p-message__img-container {
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .p-message__img-container {
    width: 50%;
  }
}
.p-message__img-frame {
  aspect-ratio: 4/5;
  max-width: 28rem;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #F1F5F9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.p-message__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-message__profile {
  position: absolute;
  bottom: -1.5rem;
  right: 5%;
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 20rem;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .p-message__profile {
    right: 1.5rem;
  }
}
.p-message__profile-tag {
  font-size: 1.25rem;
  display: block;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
}
.p-message__profile-name {
  font-size: 1.5rem;
  font-weight: 700;
}
.p-message__profile-name-sub {
  font-size: 0.7rem;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .p-message__profile-name-sub {
    font-size: 1rem;
  }
}
.p-message__profile-qual {
  font-size: 11px;
  color: #FEE2E2;
  margin-top: 0.5rem;
  line-height: 1.4;
}
.p-message__content {
  width: 100%;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .p-message__content {
    width: 50%;
    margin-top: 0;
  }
}
.p-message__body {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.2rem;
  color: var(--color-text-slate);
  font-weight: 300;
}
.p-message__body-strong {
  font-weight: 700;
  color: var(--color-dark);
}

/* 7. Contact Section (Direct phone line layout optimized) */
.p-contact {
  background-color: var(--color-dark);
  color: var(--color-white);
}
.p-contact__grid {
  display: block;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .p-contact__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 5rem;
  }
}
.p-contact__info-side {
  grid-column: span 12;
}
@media (min-width: 1024px) {
  .p-contact__info-side {
    grid-column: span 5;
  }
}
.p-contact__label {
  font-family: "Montserrat", sans-serif;
  color: var(--color-orange);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}
.p-contact__headline {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.p-contact__lead {
  font-size: 0.75rem;
  color: #A1A1AA;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.p-contact {
  /* Elegant Phone Centered Call Box */
}
.p-contact__call-box {
  background-color: rgba(232, 130, 26, 0.05);
  border: 1px solid var(--color-orange);
  padding: 2rem;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .p-contact__call-box {
    margin-bottom: 0;
  }
}
.p-contact__call-box-label {
  font-size: 0.75rem;
  color: var(--color-orange);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.5rem;
}
.p-contact__call-box-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  display: block;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
  .p-contact__call-box-number {
    font-size: 2rem;
  }
}
.p-contact__call-box-number i {
  margin-right: 0.5rem;
}
@media (min-width: 640px) {
  .p-contact__call-box-number {
    font-size: 2.25rem;
  }
}
.p-contact__call-box-hours {
  font-size: 10px;
  color: #A1A1AA;
  display: block;
  margin-top: 0.5rem;
}
.p-contact__detail-side {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .p-contact__detail-side {
    grid-column: span 7;
  }
}
.p-contact__section-title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #3F3F46;
}
.p-contact__overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .p-contact__overview {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-contact__field-title {
  color: #71717A;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.25rem;
}
.p-contact__field-value {
  color: #E4E4E7;
  font-size: 0.875rem;
}
.p-contact__field-value--strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
}
.p-contact__field-value--address {
  font-size: 0.875rem;
  color: var(--color-white);
}
.p-contact__map-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--color-border-dark);
  position: relative;
  overflow: hidden;
}
.p-contact__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.l-footer {
  background-color: var(--color-dark-accent);
  color: #71717A;
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(63, 63, 70, 0.5);
}
.l-footer__container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .l-footer__container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.l-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.l-footer__icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-orange);
  border-radius: 9999px;
  overflow: hidden;
}
.l-footer__svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-white);
}
.l-footer__copyright {
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  color: #52525B;
}
.l-footer__fb {
  font-size: 1.125rem;
  color: #71717A;
  transition: color 0.3s;
}
.l-footer__fb:hover {
  color: var(--color-blue);
}

/* Mobile bottom fixed bar (Single phone call direct link) */
.l-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid #E4E4E7;
  padding: 0.625rem 1rem;
  z-index: 30;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1024px) {
  .l-bottom-bar {
    display: none;
  }
}
.l-bottom-bar__btn {
  width: 100%;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-orange);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.l-bottom-bar__btn i {
  margin-right: 0.5rem;
}
.l-bottom-bar__btn:active {
  background-color: #d17212;
}

/* --------------------------------------------------
 * Utility Animations
 * -------------------------------------------------- */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
/* --------------------------------------------------
 * Underlayer Page Hero (ファーストビュー：静寂と写真の主役感)
 * -------------------------------------------------- */
.p-page-hero {
  position: relative;
  height: 40vh;
  min-height: 18rem;
  background-color: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .p-page-hero {
    height: 50vh;
  }
}
.p-page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28291/bg-title01.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.p-page-hero__container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  color: var(--color-white);
  box-sizing: border-box;
}
.p-page-hero__box {
  max-width: 42rem;
}
.p-page-hero__label {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
@media (min-width: 768px) {
  .p-page-hero__label {
    font-size: 3.5rem;
  }
}
.p-page-hero__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-white);
  display: inline-block;
}
@media (min-width: 768px) {
  .p-page-hero__title {
    font-size: 1.5rem;
  }
}

/* --------------------------------------------------
 * Greetings Section (代表挨拶：アシンメトリーな緩急レイアウト)
 * -------------------------------------------------- */
.p-greetings {
  background-color: var(--color-white);
}
.p-greetings__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .p-greetings__wrapper {
    flex-direction: row;
    gap: 6rem;
  }
}
.p-greetings__img-block {
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .p-greetings__img-block {
    width: 45%;
    position: sticky;
    top: 8rem;
  }
}
.p-greetings__img-frame {
  aspect-ratio: 4/5;
  max-width: 28rem;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #F1F5F9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.p-greetings__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-greetings__content {
  width: 100%;
}
@media (min-width: 1024px) {
  .p-greetings__content {
    width: 55%;
  }
}
.p-greetings__intro {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-dark);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border-slate);
}
@media (min-width: 768px) {
  .p-greetings__intro {
    font-size: 1.35rem;
  }
}
.p-greetings__body {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  font-size: 1.2rem;
  color: var(--color-dark);
  font-weight: 700;
  line-height: 2;
}
.p-greetings__body-strong {
  font-weight: 700;
  color: var(--color-dark);
}
.p-greetings__signature {
  margin-top: 3.5rem;
  text-align: right;
}
.p-greetings__signature-corp {
  font-size: 0.875rem;
  color: #94A3B8;
  display: block;
  margin-bottom: 0.25rem;
}
.p-greetings__signature-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.1em;
}
.p-greetings__signature-name span {
  font-size: 0.875rem;
  font-weight: 400;
  margin-left: 0.5rem;
}

/* --------------------------------------------------
 * Company Profile Section (会社概要：見やすさ重視のテーブル)
 * -------------------------------------------------- */
.p-company-profile {
  background-color: var(--color-light-gray);
}
.p-company-profile__table-wrapper {
  background-color: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-top: 3px solid var(--color-orange);
  width: 100%;
  box-sizing: border-box;
}
.p-company-profile__table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.p-company-profile__row {
  border-bottom: 1px solid var(--color-border-slate);
}
.p-company-profile__row:last-child {
  border-bottom: none;
}
.p-company-profile__th {
  width: 100%;
  padding: 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  background-color: rgba(232, 130, 26, 0.02);
  box-sizing: border-box;
  display: block;
}
@media (min-width: 768px) {
  .p-company-profile__th {
    width: 25%;
    display: table-cell;
    vertical-align: top;
    border-right: 1px solid var(--color-border-slate);
    padding: 2rem;
  }
}
.p-company-profile__td {
  width: 100%;
  padding: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-slate);
  font-weight: 300;
  line-height: 1.8;
  box-sizing: border-box;
  display: block;
}
@media (min-width: 768px) {
  .p-company-profile__td {
    width: 75%;
    display: table-cell;
    vertical-align: top;
    padding: 2rem;
  }
}
.p-company-profile__td--strong {
  font-weight: 700;
  color: var(--color-dark);
}

/* --------------------------------------------------
 * Anchor Navigation Bar (アンカーリンク・ナビゲーション)
 * -------------------------------------------------- */
.p-anchor-nav {
  background-color: var(--color-light-gray);
  border-bottom: 1px solid var(--color-border-slate);
  position: sticky;
  top: 5rem;
  z-index: 20;
}
@media (min-width: 768px) {
  .p-anchor-nav {
    top: 6rem;
  }
}
.p-anchor-nav__list {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  scrollbar-width: none; /* Firefox hide scrollbar */
  -webkit-overflow-scrolling: touch;
}
.p-anchor-nav__list::-webkit-scrollbar {
  display: none; /* Safari/Chrome hide scrollbar */
}
.p-anchor-nav__item {
  margin-right: 1rem;
}
.p-anchor-nav__item:last-child {
  margin-right: 0;
}
.p-anchor-nav__link {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-slate);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-slate);
  transition: all 0.3s ease;
}
.p-anchor-nav__link:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background-color: rgba(232, 130, 26, 0.02);
}

/* --------------------------------------------------
 * Service Detail Sections Common & Individual Types (のっぺり均一の排除)
 * -------------------------------------------------- */
.p-service-block {
  padding: 6rem 1.5rem;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .p-service-block {
    padding: 9rem 0;
  }
}
.p-service-block__meta-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(232, 130, 26, 0.15);
  display: block;
  margin-bottom: 0.5rem;
}
.p-service-block__meta-num--blue {
  color: rgba(90, 180, 214, 0.2);
}
.p-service-block__headline {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-service-block__headline {
    font-size: 1.85rem;
  }
}
.p-service-block__lead {
  font-size: 0.9375rem;
  color: var(--color-text-slate);
  line-height: 1.9;
  margin-bottom: 3.5rem;
  font-weight: 300;
}
@media (min-width: 768px) {
  .p-service-block__lead {
    font-size: 1rem;
    max-width: 52rem;
  }
}
.p-service-block__layout-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media (min-width: 1024px) {
  .p-service-block__layout-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.p-service-block__main-column {
  width: 100%;
}
@media (min-width: 1024px) {
  .p-service-block__main-column {
    width: 55%;
  }
}
.p-service-block__side-column {
  width: 100%;
}
@media (min-width: 1024px) {
  .p-service-block__side-column {
    width: 38%;
    position: sticky;
    top: 11rem;
  }
}
.p-service-block__img-box {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--color-border-slate);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.p-service-block__img-box:hover .p-service-block__img {
  transform: scale(1.03);
}
.p-service-block__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.p-service-block {
  /* クリーン型 (内装) をモディファイアとして内包 */
}
.p-service-block--clean {
  background-color: var(--color-light-gray);
}

/* Sub-grid of detailed construction items */
.p-detail-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .p-detail-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-detail-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-slate);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}
.p-detail-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.p-detail-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
}
.p-detail-card__desc {
  font-size: 0.8125rem;
  color: var(--color-text-slate);
  line-height: 1.7;
  font-weight: 300;
}

/* Adviser Card Block (プロのアドバイス：高級感あるオレンジのアクセント) */
.p-adviser-card {
  background-color: rgba(232, 130, 26, 0.03);
  border: 1px solid rgba(232, 130, 26, 0.15);
  border-top: 4px solid var(--color-orange);
  padding: 2.5rem 2rem;
  box-sizing: border-box;
}
.p-adviser-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 0.375rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.p-adviser-card__point-item {
  margin-bottom: 1.75rem;
}
.p-adviser-card__point-item:last-child {
  margin-bottom: 0;
}
.p-adviser-card__point-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.p-adviser-card__point-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--color-orange);
  border-radius: 9999px;
  display: inline-block;
  flex-shrink: 0;
  transform: translateY(-2px);
}
.p-adviser-card__point-desc {
  font-size: 0.8125rem;
  color: var(--color-text-slate);
  line-height: 1.7;
  font-weight: 300;
}

/* 🛠️ Type 2 追加コンポーネント: Clean Section (内装：静かで大きな余白の型) */
.p-clean-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .p-clean-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .p-clean-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-clean-card {
  background-color: var(--color-white);
  padding: 2.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--color-border-slate);
}
.p-clean-card__header {
  margin-bottom: 2rem;
}
.p-clean-card__tag {
  font-size: 0.75rem;
  color: var(--color-blue);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}
.p-clean-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-dark);
}
.p-clean-card__desc {
  font-size: 0.8125rem;
  color: var(--color-text-slate);
  line-height: 1.8;
  font-weight: 300;
}

/* --------------------------------------------------
 * Type 3: Full Bleed Banner Card (外装：全幅と重ね合わせ)
 * -------------------------------------------------- */
.p-exterior-wrapper {
  position: relative;
  padding: 6rem 0;
}
@media (min-width: 1024px) {
  .p-exterior-wrapper {
    padding: 10rem 0;
  }
}

.p-exterior-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28291/services-img03.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
@media (min-width: 1024px) {
  .p-exterior-banner {
    height: 60vh;
  }
}

.p-asymmetric-overlay {
  position: relative;
  z-index: 10;
  margin-top: 15vh; /* Push block down to overlap image overlay */
}

.p-asymmetric-box {
  background-color: var(--color-white);
  padding: 3rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--color-orange);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .p-asymmetric-box {
    padding: 4.5rem;
  }
}
@media (min-width: 1024px) {
  .p-asymmetric-box {
    width: 80%;
    margin-left: auto;
  }
}

/* --------------------------------------------------
 * Type 4: Steps & Timeline (耐震補強のステップ：縦の導線)
 * -------------------------------------------------- */
.p-timeline {
  position: relative;
  margin-top: 3.5rem;
  padding-left: 1.5rem;
}
@media (min-width: 768px) {
  .p-timeline {
    padding-left: 3rem;
  }
}
.p-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background-color: var(--color-border-slate);
}
@media (min-width: 768px) {
  .p-timeline::before {
    left: 1.5rem;
  }
}

.p-timeline-step {
  position: relative;
  margin-bottom: 3.5rem;
}
.p-timeline-step:last-child {
  margin-bottom: 0;
}
.p-timeline-step__marker {
  position: absolute;
  left: -1.5rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: var(--color-orange);
  border: 3px solid var(--color-white);
  transform: translateX(-5px);
  z-index: 10;
}
@media (min-width: 768px) {
  .p-timeline-step__marker {
    left: 1.5rem;
  }
}
.p-timeline-step__header {
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .p-timeline-step__header {
    padding-left: 1.5rem;
  }
}
.p-timeline-step__tag {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.25rem;
}
.p-timeline-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
}
.p-timeline-step__desc {
  font-size: 0.875rem;
  color: var(--color-text-slate);
  line-height: 1.8;
  font-weight: 300;
}
@media (min-width: 768px) {
  .p-timeline-step__desc {
    padding-left: 1.5rem;
    max-width: 48rem;
  }
}

/* --------------------------------------------------
 * Type 5: Premium Comparison Table (全面リフォーム：比較の型)
 * -------------------------------------------------- */
.p-comparison {
  margin-top: 4rem;
}
.p-comparison__table-wrapper {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-slate);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  overflow-x: auto;
}
.p-comparison__table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 42rem;
}
.p-comparison__row {
  border-bottom: 1px solid var(--color-border-slate);
}
.p-comparison__row:last-child {
  border-bottom: none;
}
.p-comparison__th {
  padding: 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  background-color: rgba(90, 180, 214, 0.02);
  width: 20%;
  border-right: 1px solid var(--color-border-slate);
}
.p-comparison__th--head {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #94A3B8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--color-light-gray);
}
.p-comparison__td {
  padding: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-slate);
  font-weight: 300;
  line-height: 1.7;
  width: 40%;
  vertical-align: top;
}
.p-comparison__td:nth-child(2) {
  border-right: 1px solid var(--color-border-slate);
}
.p-comparison__td--accent {
  background-color: rgba(232, 130, 26, 0.01);
}
.p-comparison__td-title {
  font-weight: 700;
  color: var(--color-dark);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* --------------------------------------------------
 * Lead Section (大きな余白とゆったりした空気感)
 * -------------------------------------------------- */
.p-flow-lead {
  background-color: var(--color-white);
  text-align: center;
}
.p-flow-lead__text {
  font-size: 1rem;
  color: var(--color-text-slate);
  line-height: 2;
  max-width: 48rem;
  margin: 0 auto;
  font-weight: 300;
}
@media (min-width: 768px) {
  .p-flow-lead__text {
    font-size: 1.125rem;
  }
}

/* --------------------------------------------------
 * Step Layout: Dynamic asymmetric pattern (のっぺり均一の排除)
 * -------------------------------------------------- */
.p-step-section {
  padding: 6rem 1.5rem;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .p-step-section {
    padding: 8rem 0;
  }
}
.p-step-section--gray {
  background-color: var(--color-light-gray);
}

/* Asymmetric Flex Wrapper */
.p-step-flex {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .p-step-flex {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .p-step-flex--reverse {
    flex-direction: row-reverse;
  }
}

/* Asymmetric Column Sizes */
.p-step-col-text {
  width: 100%;
}
@media (min-width: 1024px) {
  .p-step-col-text {
    width: 48%;
  }
}

.p-step-col-img {
  width: 100%;
}
@media (min-width: 1024px) {
  .p-step-col-img {
    width: 46%;
  }
}

/* Styling of Step Indicators */
.p-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-orange);
  margin-bottom: 1rem;
}
.p-step-badge--blue {
  color: var(--color-blue);
}
.p-step-badge__number {
  font-size: 2.25rem;
  line-height: 1;
}
.p-step-badge__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  border-left: 1px solid var(--color-border-slate);
  padding-left: 0.5rem;
}

.p-step-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.p-step-title-sub {
  display: block;
  font-size: 0.875rem;
  color: #94A3B8;
  font-weight: 400;
  margin-top: 0.25rem;
}

.p-step-desc {
  font-size: 0.9375rem;
  color: var(--color-text-slate);
  line-height: 1.9;
  font-weight: 300;
}

/* Card Box inside step (e.g. for Step 1 Call details) */
.p-step-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--color-white);
  border-left: 3px solid var(--color-orange);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}
.p-step-box--blue {
  border-left-color: var(--color-blue);
}
.p-step-box__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.p-step-box__link {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}
.p-step-box__link:hover {
  color: var(--color-blue);
}
.p-step-box__caption {
  font-size: 1rem;
  color: #94A3B8;
  display: block;
  margin-top: 0.25rem;
}

/* Images prevention of CLS with smooth Zoom */
.p-step-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--color-border-slate);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.p-step-img-wrapper--portrait {
  aspect-ratio: 4/5;
}
.p-step-img-wrapper:hover .p-step-img {
  transform: scale(1.04);
}

.p-step-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------
 * Step 3 & 4 Layout Variation (型変更：背景グレーの1カラム＆重ね合わせ)
 * -------------------------------------------------- */
.p-step-center-box {
  max-width: 52rem;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 3rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border-top: 3px solid var(--color-orange);
}
@media (min-width: 768px) {
  .p-step-center-box {
    padding: 5rem;
  }
}
.p-step-center-box--blue {
  border-top-color: var(--color-blue);
}

/* --------------------------------------------------
 * Closing Message (結びのメッセージ：地元密着を想起させる美しい背景)
 * -------------------------------------------------- */
.p-flow-closing {
  background-color: var(--color-light-gray);
  text-align: center;
  border-top: 1px solid var(--color-border-slate);
}
.p-flow-closing__card {
  max-width: 55rem;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 3rem 1.5rem;
  border-left: 3px solid var(--color-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
@media (min-width: 768px) {
  .p-flow-closing__card {
    padding: 4rem 3rem;
  }
}
.p-flow-closing__icon {
  font-size: 1.5rem;
  color: var(--color-blue);
  margin-bottom: 1rem;
  display: inline-block;
}
.p-flow-closing__text {
  font-size: 0.95rem;
  color: var(--color-text-slate);
  line-height: 2;
  font-weight: 300;
}

/* --------------------------------------------------
 * Lead Section (大きな余白とゆったりした空気感)
 * -------------------------------------------------- */
.p-faq-lead {
  background-color: var(--color-white);
  text-align: center;
}
.p-faq-lead__text {
  font-size: 1rem;
  color: var(--color-text-slate);
  line-height: 2;
  max-width: 48rem;
  margin: 0 auto;
  font-weight: 300;
}
@media (min-width: 768px) {
  .p-faq-lead__text {
    font-size: 1.125rem;
  }
}

/* --------------------------------------------------
 * Two-Column FAQ Layout (のっぺり均一を排除したアシンメトリー構造)
 * -------------------------------------------------- */
.p-faq-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .p-faq-layout {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.p-faq-layout {
  /* Sticky Side Column (左側：お悩み親身案内・ビジュアル) */
}
.p-faq-layout__side {
  width: 100%;
}
@media (min-width: 1024px) {
  .p-faq-layout__side {
    width: 38%;
    position: sticky;
    top: 8rem;
  }
}
.p-faq-layout__img-box {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--color-border-slate);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  margin-bottom: 2rem;
}
.p-faq-layout__img-box:hover .p-faq-layout__img {
  transform: scale(1.04);
}
.p-faq-layout__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-faq-layout {
  /* Q&A Accordion Column (右側：洗練されたインタラクティブQ&Aアコーディオン) */
}
.p-faq-layout__main {
  width: 100%;
}
@media (min-width: 1024px) {
  .p-faq-layout__main {
    width: 56%;
  }
}

/* Prompt Box for Direct Support (お問い合わせフォームに代わる最強の電話案内) */
.p-faq-prompt {
  background-color: rgba(232, 130, 26, 0.03);
  border: 1px solid rgba(232, 130, 26, 0.15);
  border-top: 4px solid var(--color-orange);
  padding: 2.5rem 2rem;
  box-sizing: border-box;
}
.p-faq-prompt__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 0.375rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.p-faq-prompt__text {
  font-size: 0.875rem;
  color: var(--color-text-slate);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.p-faq-prompt__number {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.p-faq-prompt__number:hover {
  color: var(--color-blue);
}
.p-faq-prompt__hours {
  font-size: 11px;
  color: #94A3B8;
  display: block;
  margin-top: 0.25rem;
}

/* Accordion Item Styling */
.p-faq-item {
  border-bottom: 1px solid var(--color-border-slate);
  padding: 1.5rem 0;
}
.p-faq-item:first-child {
  border-top: 1px solid var(--color-border-slate);
}
.p-faq-item {
  /* 状態クラス（.is-open）の集約 */
}
.p-faq-item.is-open .p-faq-item__toggle-line--v {
  opacity: 0;
  transform: rotate(90deg);
}
.p-faq-item.is-open .p-faq-item__toggle-line--h {
  background-color: var(--color-orange);
}
.p-faq-item.is-open .p-faq-item__answer-wrapper {
  opacity: 1;
}
.p-faq-item {
  /* Toggle Button (Q Header) */
}
.p-faq-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: var(--color-dark);
  transition: color 0.3s;
}
.p-faq-item__header:hover {
  color: var(--color-orange);
}
.p-faq-item__q-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-right: 2rem;
}
.p-faq-item__q-letter {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-orange);
  line-height: 1;
}
.p-faq-item__q-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.p-faq-item {
  /* Plus/Minus Indicator Icon */
}
.p-faq-item__toggle-icon {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.p-faq-item__toggle-line {
  position: absolute;
  background-color: var(--color-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-faq-item__toggle-line--h {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}
.p-faq-item__toggle-line--v {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
}
.p-faq-item {
  /* Answer Content (A Area) */
}
.p-faq-item__answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  opacity: 0;
}
.p-faq-item__answer-body {
  padding: 1.5rem 0 0.5rem 2.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.p-faq-item__a-letter {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-blue);
  line-height: 1;
}
.p-faq-item__a-text {
  font-size: 0.9375rem;
  color: var(--color-text-slate);
  line-height: 1.9;
  font-weight: 300;
}

/*新メールフォーム*/
.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(125, 98, 23, 0.1);
  border-radius: 10px;
  color: #343338;
  font-size: 2rem;
  position: relative;
  padding: 10px 10px;
  margin-bottom: 20px;
  font-weight: 700;
}
.mtitle_box b {
  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 */