main {
  width: 100%;
}
/* ------- FV ------- */
.fv {
  width: 100%;
}
.fv img {
  width: 100%;
}
html, body {
  font-family: "Noto Sans JP", sans-serif !important;
}

body,
body * {
  font-family: "Noto Sans JP", sans-serif !important;
}

/* ===== Hero (Succeed) ===== */
.hero-succeed {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 52vw, 560px);
  overflow: hidden;
  border-radius: 0;
  /* 背景画像（差し替え） */
  background-image: url("https://auri2.xsrv.jp/successed/wp-content/themes/your-theme/assets/img/bg.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* 左側の白いフェード（白→透明） */
.hero-succeed::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.92) 28%,
    rgba(255, 255, 255, 0.60) 48%,
    rgba(255, 255, 255, 0.22) 62%,
    rgba(255, 255, 255, 0.00) 74%
  );
}

/* 左上の光（フレア） */
.hero-succeed::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 18% 18%,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.55) 18%,
    rgba(255, 255, 255, 0.18) 38%,
    rgba(255, 255, 255, 0.00) 58%
  );
  mix-blend-mode: screen;
}

.hero-succeed__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) 0;
  min-height: inherit;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(10px, 1.4vw, 18px);
}

/* メイン見出し（太め・大きめ） */
.hero-succeed__headline {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0.02em;
  font-weight: 800;
  color: #1e232a;
  font-size: clamp(34px, 5.2vw, 78px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
}

/* 英文（ゴールド系） */
.hero-succeed__sub {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 40px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #a88744;
  font-weight: 600;

  /* 英文だけ雰囲気を変えたい場合（お好みで） */
  font-family: "Georgia", "Times New Roman", serif;
}

/* 説明文 */
.hero-succeed__lead {
  margin: clamp(10px, 1.8vw, 18px) 0 0;
  font-size: clamp(12px, 1.25vw, 18px);
  line-height: 1.9;
  color: #20262e;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* スマホ調整 */
@media (max-width: 768px) {
  .hero-succeed {
    background-position: 72% center;
    min-height: 360px;
  }

  .hero-succeed::before {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.92) 42%,
      rgba(255, 255, 255, 0.55) 62%,
      rgba(255, 255, 255, 0.10) 78%,
      rgba(255, 255, 255, 0.00) 88%
    );
  }

  .hero-succeed__lead {
    font-weight: 600;
  }
}


/* ------- Innovation ------- */
.innovation {
  width: 100%;
  max-width: 1120px;
  margin: auto;
  display: flex;
  padding-block: 40px;
}
.innovation .s-mark {
  width: 100%;
  max-width: 600px;
}
.innovation .s-mark img {
  width: 100%;
}
.innovation .content {
  width: 100%;
  max-width: 520px;
  padding-top: 15px;
}
.innovation .content .title-box {
  margin-bottom: 20px;
}
.innovation .content .title-box p:nth-of-type(1) {
  width: fit-content;
  font-size: 51px;
  line-height: 1;
  padding-bottom: 5px;
  color: #0d3f7c;
}
.innovation .content .title-box p:nth-of-type(2) {
  font-size: 32px;
  color: #b99f64;
  padding-left: 25px;
}
.innovation .content .content-txt p {
  font-size: 18px;
  line-height: 1.9;
}
.innovation .content .content-txt .pointer-box {
  position: relative;
  padding-left: 10px;
}
.innovation .content .content-txt .pointer-box .pointer-box-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.innovation .content .content-txt .pointer-box .pointer-box-item img {
  display: none;
}
.innovation .content .content-txt .pointer-box p {
  font-size: 24px;
  color: #0d3f7c;
  line-height: 1.75;
}
.innovation .s-mark .tb {
  display: none;
}
@media (max-width: 1100px) {
  .innovation {
    padding-inline: 20px;
  }
  .innovation .s-mark img {
    display: none;
  }
  .innovation .s-mark .tb {
    display: block;
  }
  .innovation .content .content-txt .pointer-box .pointer-box-item img {
    display: block;
    width: 55px;
  }
  .innovation .content .content-txt .pointer-box p {
    font-size: 22px;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .innovation {
    flex-direction: column;
    align-items: center;
  }
  .innovation .content .content-txt .pointer-box {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-block: 20px;
  }
}
@media (max-width: 650px) {
  .innovation .content .content-txt p {
    line-height: 1.6;
  }
  .innovation .content .title-box p:nth-of-type(1) {
    font-size: 34px;
  }
  .innovation .content .title-box p:nth-of-type(2) {
    font-size: 22px;
    padding-left: 0;
    text-align: center;
  }
  .innovation .content .content-txt .pointer-box .pointer-box-item {
    gap: 10px;
  }
}
/* ------- Strength ------- */
.strength {
  width: 100%;
  padding-block: 60px 80px;
}
.strength .title-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 38px;
  color: #2c353f;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.2;
}
.strength .title-box span {
  font-size: 22px;
  color: #317cb3;
}
.strength .content {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 60px;
  position: relative;
}
.strength .content .item {
  width: 310px;
  padding: 30px 20px;
  border-radius: 10px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #1e64ae, #d2be8f) border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 4px 4px 8px rgba(50, 116, 158, 0.75);
}
.strength .content .item img {
  width: 80px;
  margin-bottom: 10px;
}
.strength .content .item .item-title {
  display: flex;
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.2;
}
.strength .content .item .item-title p:nth-of-type(1) {
  font-size: 30px;
  color: #1e64ae;
}
.strength .content .item .item-title p:nth-of-type(1) span {
  height: fit-content;
}
.strength .content .item .item-title p:nth-of-type(1) span:nth-of-type(2) {
  background-color: unset;
  margin-left: 5px;
}
.strength .content .item .item-txt {
  font-size: 15px;
  line-height: 1.8;
}
.strength .content .item .check-comp {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-block: 10px;
}
.strength .content .item .check-comp-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.strength .content .item .check-comp-item img {
  width: 15px;
}
.strength .content .bg-line {
  position: absolute;
  width: 100%;
  top: 100px;
  z-index: -1;
}

@media (max-width: 1100px) {
  .strength .content {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .strength .title-box {
    margin-bottom: 20px;
  }
  .strength .content {
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 20px;
  }
  .strength .content .item:nth-of-type(1),
  .strength .content .item:nth-of-type(2) {
    width: 50%;
    max-width: 300px;
  }
  .strength .content .item:nth-of-type(3) {
    width: 100%;
  }
  .strength .content .item .item-title {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .strength .content .item .item-title p:nth-of-type(1) span {
    background-color: unset;
    border-bottom: 2px solid #1e64ae;
  }
  .strength .content .item .item-title .v-line {
    display: none;
  }
  .strength .content .last-item .item-title {
    flex-direction: row;
  }
  .strength .content .last-item .item-title p:nth-of-type(1) span {
    border-bottom: none;
  }
  .strength .content .bg-line {
    top: 300px;
  }
}
@media (max-width: 500px) {
  .strength .content {
    padding-inline: 15px;
  }
  .strength .content .item:nth-of-type(1),
  .strength .content .item:nth-of-type(2) {
    width: 47%;
  }
  .strength .content .bg-line {
    top: 700px;
  }
}

.gra-lines {
  width: 100%;
}
.gra-lines .blue-gra-line {
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, #05244a 0%, #124b84 50%, #05244a 100%);
}
.gra-lines .gray-gra-line {
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, #a89881 0%, #dbd1c2 50%, #a89881 100%);
}

/* ------- Samples ------- */
.sample {
  width: 100%;
  background: url("../img/gray-bg.png");
  padding-block: 70px 120px;
}
.sample .title-box {
  text-align: center;
  margin-bottom: 40px;
}
.sample .title-box span {
  font-size: 32px;
  margin-bottom: 20px;
}
.sample .title-box p {
  font-size: 52px;
}
.sample .title-btm-t {
  font-size: 20px;
  margin-bottom: 40px;
  text-align: center;
}
.sample .content {
  width: 100%;
  max-width: 950px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sample .content .item {
  width: 100%;
  border-radius: 15px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
  box-shadow: 0 7px 6px rgba(134, 117, 104, 0.25);
  padding-inline: 10px;
  padding-block: 7px 20px;
}
.sample .content .item .item-title {
  background: linear-gradient(to right, #05244a 0%, #124b84 50%, #05244a 100%);
  border-radius: 8px;
  font-size: 27px;
  color: #ffffff;
  padding: 2px 10px;
  width: 100%;
  display: flex;
  align-items: center;
}
.sample .content .item .item-title p:nth-of-type(1) {
  min-width: max-content;
}
.sample .content .item .item-title p:nth-of-type(2) {
  width: fit-content;
  word-break: break-all;
  line-height: 1.1;
}
.sample .content .item .s-title {
  font-size: 22px;
  color: #2c353f;
  padding-block: 5px;
  padding-inline: 10px;
}
.sample .content .before-after {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-inline: 10px;
}
.sample .content .item .before-after-item {
  width: 420px;
}
.sample .content .item .before-after-item .tip {
  width: 115px;
  font-size: 23px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-bottom: 10px;
  margin-bottom: -8px;
  text-align: center;
}
.sample .content .item .before-after-item .tip span {
  font-size: 30px;
  line-height: 1;
}
.sample .content .item .before-after-item.before .tip {
  background: linear-gradient(45deg, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%);
}
.sample .content .item .before-after-item.after .tip {
  background: linear-gradient(45deg, #05244a 0%, #124b84 100%);
  color: #ffffff;
}
.sample .content .item .before-after-item .box {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}
.sample .content .item .before-after-item.before .box {
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%) border-box;
}
.sample .content .item .before-after-item.after .box {
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
}
.sample .content .before-after img {
  width: 40px;

}

.pdtop{
	margin-top:100px;
}

.sample .content .item .before-after-item p {
  width: 100%;
  max-width: 420px;
  font-size: 15px;
  margin-top: 10px;
  word-break: break-all;
}
@media (max-width: 768px) {
  .sample {
    padding-inline: 20px;
  }
  .sample .title-box span {
    font-size: 28px;
  }
  .sample .title-box p {
    font-size: 38px;
    line-height: 1;
    margin-top: 10px;
  }
}
@media (max-width: 650px) {
  .sample {
    padding-inline: 10px;
    padding-block: 40px 60px;
  }
  .sample .content .item .item-title {
    font-size: 22px;
    align-items: baseline;
  }
  .sample .content .item .s-title {
    font-size: 20px;
  }
  .sample .content .before-after {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .sample .content .item .before-after-item {
    width: 100%;
  }
  .sample .content .before-after img {
    margin-top: 0;
    rotate: 90deg;
  }
}

.box img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.box__placeholder{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.04);
  border: 1px dashed rgba(0,0,0,.18);
  border-radius: 10px;
  font-size: 13px;
}

/* .box の中に img を正しく収める（グラデ枠を維持） */
.sample .content .item .before-after-item .box{
  position: relative;
  overflow: hidden;
  padding: 3px;          /* ← グラデ枠の太さ（3px） */
  box-sizing: border-box;
}

/* 画像は内側に収める */
.sample .content .item .before-after-item .box img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 7px;    /* ← 外側10px - padding3px くらい */
}



/* ------- Service ------- */
.service {
  width: 100%;
  padding-block: 70px 40px;
}
.c-title-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 65px;
}
.c-title-box p:nth-of-type(1) {
  font-size: 38px;
  color: #317cb3;
  line-height: 1;
  padding-bottom: 2px;
  position: relative;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.c-title-box p:nth-of-type(1)::before {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 80px;
  height: 5px;
  background: linear-gradient(to right, #1e64ae 0%, #d2be8f 100%);
}
.c-title-box p:nth-of-type(2) {
  font-size: 38px;
  color: #317cb3;
  margin-bottom: 10px;
}
.c-title-box p:nth-of-type(3) {
  font-size: 18px;
}
.service .content {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  margin: auto;
}
.service .content .item {
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #1e64ae, #d2be8f) border-box;
  box-shadow: 4px 4px 8px rgba(50, 116, 158, 0.75);
}
.service .content .item .item-title {
  font-size: 16px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}

.item-title a{
	color:#fff;
}

.service .content .item .item-title span {
  font-size: 13px;
}
.service .content .bg-line {
  position: absolute;
  width: 100%;
  top: 80px;
  z-index: -1;
}
.service .content .item .item-title::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 22px;
  background: linear-gradient(to bottom, #d2be8f 0%, #124b84 100%);
}
.service .content .item img {
  width: 110px;
  margin-bottom: 20px;
}
.service .content .item .item-txt-box {
  font-size: 14.5px;
}
.service .content .item .item-txt-box .top {
  margin-bottom: 20px;
}
.service .content .item .item-txt-box .top p {
  display: flex;
  align-items: start;
  gap: 10px;
}
.service .content .item .item-txt-box .top span {
  font-size: 40px;
  line-height: 0.1;
  color: #124b84;
  padding-top: 5px;
}

@media (max-width: 768px) {
  .c-title-box p:nth-of-type(2) {
    line-height: 1.1;
  }
  .service .content {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .service {
    padding-block: 50px 20px;
  }
  .c-title-box {
    margin-bottom: 40px;
  }
  .c-title-box p:nth-of-type(1) {
    font-size: 28px;
  }
  .c-title-box p:nth-of-type(2) {
    font-size: 28px;
  }
  .c-title-box p:nth-of-type(3) {
    padding-inline: 10px;
    font-size: 16px;
  }
  .service .content .bg-line {
    display: none;
  }
}

/* ------- Area ------- */
.area {
  width: 100%;
  padding-block: 40px 30px;
}
.area .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
}
.area .content img {
  width: 330px;
}
.area .content .content-txt .top {
  margin-bottom: 40px;
}
.area .content .content-txt .top p {
  font-size: 33px;
  display: flex;
  align-items: start;
}
.area .content .content-txt .top span {
  font-size: 75px;
  padding-top: 12px;
  color: #1e64ae;
  line-height: 0.1;
  margin-right: 5px;
}
.area .btm-t {
  font-size: 18px;
}

@media (max-width: 768px) {
  .area .content {
    gap: 60px;
    padding-inline: 20px;
    margin-bottom: 75px;
  }
  .area .content img {
    width: 260px;
  }
  .area .btm-t {
    padding-inline: 20px;
  }
}
@media (max-width: 600px) {
  .area {
    padding-block: 40px 45px;
  }
  .area .content {
    padding-inline: 10px;
    gap: 10px;
    margin-bottom: 40px;
  }
  .area .content img {
    width: 200px;
  }
  .area .content .content-txt .top p {
    font-size: 24px;
  }
  .area .content .content-txt .top span {
    font-size: 55px;
    padding-top: 10px;
  }
}

/* ------- Contact ------- */
.contact {
  width: 100%;
  padding-block: 60px 65px;
  background: url("../img/contact-bg.png");
}
.contact .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .content .txt-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.contact .content .txt-group p:nth-of-type(1) {
  font-size: 34px;
}
.contact .content .txt-group p:nth-of-type(2) {
  font-size: 20px;
  width: 100%;
  max-width: 820px;
  text-align: start;
}
.contact .content .txt-group .check-t-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact .content .txt-group .check-t-box .check-t {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact .content .txt-group .check-t-box .check-t img {
  width: 22px;
}
.contact .content .txt-group .check-t-box .check-t p {
  font-size: 20px;
  line-height: 1;
  padding-bottom: 2px;
}
.btn-group {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 70px;
}
.btn-group a {
  width: 480px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  gap: 25px;
}
.btn-group a img {
  width: 40px;
}
.btn-group a p {
  font-size: 26px;
  text-align: center;
  color: #ffffff;
  line-height: 1;
}
.btn-group a span {
  font-size: 18px;
  color: #ffffff;
}
.btn-group .tel-btn {
  background-color: #1e64ae;
  border-bottom: 8px solid #143e6b;
}
.btn-group .mail-btn {
  background-color: #d0992d;
  border-bottom: 8px solid #8b671e;
}

@media (max-width: 1024px) {
  .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .contact {
    padding-inline: 20px;
  }
  .contact .content .txt-group p:nth-of-type(1) {
    font-size: 26px;
  }
}
@media (max-width: 650px) {
  .contact {
    padding-inline: 10px;
    padding-block: 30px 40px;
  }
  .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .btn-group a {
    width: 100%;
    gap: 0;
  }
  .btn-group a p {
    font-size: 18px;
  }
  .btn-group a span {
    font-size: 14px;
  }
  .btn-group .tel-btn {
    gap: 20px;
  }
  .contact .content .txt-group p:nth-of-type(1) {
    font-size: 20px;
    text-align: start;
  }
  .contact .content .txt-group p:nth-of-type(2) {
    font-size: 18px;
  }
  .contact .content .txt-group .check-t-box .check-t p {
    font-size: 18px;
  }
}


/* =========================
   Service Page
========================= */
.svc {
  width: 100%;
  color: #1e232a;
}

.svc-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* --- Hero --- */
.svc-hero {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* 右上の濃紺＋光ラインっぽい表現（画像があるなら差し替え可） */
.svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
background-image: url("https://auri2.xsrv.jp/successed/wp-content/themes/your-theme/assets/img/koteibg.jpg");
}

.svc-hero::after {
  content: "";
  position: absolute;
  left: -140px;
  top: -40px;
  width: 920px;
  height: 260px;
  pointer-events: none;
  transform: rotate(-6deg);
  background: radial-gradient(circle at 15% 55%, rgba(120, 200, 255, 0.70) 0%, rgba(120, 200, 255, 0.00) 55%),
              radial-gradient(circle at 45% 55%, rgba(255, 215, 120, 0.70) 0%, rgba(255, 215, 120, 0.00) 58%),
              radial-gradient(circle at 75% 55%, rgba(120, 200, 255, 0.55) 0%, rgba(120, 200, 255, 0.00) 56%);
  opacity: 0.9;
}

.svc-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align: center;
}

.svc-hero__title {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: clamp(28px, 3.2vw, 44px);
  color: #fff;
}

.svc-hero__sub {
  margin: 8px 0 0;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: #fff;
  opacity: 0.9;
}

/* --- Lead --- */
.svc-lead {
  padding: 22px 0 8px;
}

.svc-lead__text {
  margin: 0;
  text-align: center;
  font-weight: 700;
  line-height: 2;
  font-size: clamp(13px, 1.3vw, 16px);
  color: #2a2f36;
}

/* --- Cards --- */
.svc-cards {
  padding: 26px 0 64px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
}

.svc-card {
  background: #fff;
  border: 2px solid rgba(195, 175, 120, 0.55);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

.svc-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

.svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-card__body {
  position: relative;
  padding: 18px 18px 16px;
  text-align: center;
}

.svc-card__icon {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(27, 44, 70, 0.15);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);

  display: grid;
  place-items: center;

  position: absolute;
  left: 50%;
  top: -36px;
  transform: translateX(-50%);
}

.svc-card__icon img {
  width: 38px;
  height: 38px;
  display: block;
}

.svc-card__title {
  margin: 34px 0 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1b2c46;
}

.svc-card__desc {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 700;
  color: #2a2f36;
}

/* --- Button（ゴールド＋ネイビー） --- */
.svc-btn {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: 1px solid rgba(0,0,0,0.15);

  background: linear-gradient(90deg, #c7ae63 0%, #e0cd86 28%, #0f2e5b 28%, #0b2347 100%);
  box-shadow: 0 10px 18px rgba(0,0,0,0.16);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.svc-btn:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.svc-btn__arrow {
  font-size: 18px;
  line-height: 1;
  opacity: 0.95;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-card__title {
    font-size: 20px;
  }
}



/* table01 */
/* Company table (table01) */
#table01{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
	margin-bottom:50px;
}

#table01 tr + tr th,
#table01 tr + tr td{
  border-top: 1px solid rgba(0,0,0,.08);
}

#table01 th,
#table01 td{
  padding: 16px 18px;
  vertical-align: top;
  line-height: 1.8;
  font-size: 15px;
}

#table01 th{
  width: 28%;
  font-weight: 700;
  color: #2c353f;
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.01));
  border-right: 1px solid rgba(0,0,0,.08);
  letter-spacing: .02em;
  white-space: nowrap;
}

#table01 td{
  color: rgba(44,53,63,.92);
  background: #fff;
}

/* row hover */
#table01 tr:hover th{
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.015));
}
#table01 tr:hover td{
  background: rgba(0,0,0,.015);
}

/* links inside td (if any) */
#table01 td a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 768px){
  #table01{
    border-radius: 12px;
  }

  #table01 th,
  #table01 td{
    display: block;
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
  }

  #table01 th{
    border-right: none;
    border-top: none;
    background: rgba(0,0,0,.04);
    white-space: normal;
  }

  #table01 tr + tr th{
    border-top: 1px solid rgba(0,0,0,.08);
  }

  #table01 tr + tr td{
    border-top: none;
    padding-top: 10px;
    padding-bottom: 14px;
  }
}


/* Google Map responsive */
.gmap {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;   /* 横長で見やすい比率 */
  overflow: hidden;
  border-radius: 12px;    /* 角丸不要なら消してOK */
	margin-bottom:50px;
}

.gmap iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}


/* Recruit */
.recruit .recruit-lead {
  line-height: 1.9;
  margin: 0 0 24px;
}

.recruit .recruit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.recruit .recruit-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 18px;
}

.recruit .recruit-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-left: 10px;
  border-left: 4px solid rgba(0,0,0,.18);
}

.recruit .recruit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.recruit .recruit-table th,
.recruit .recruit-table td {
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 12px 10px;
  vertical-align: top;
}

.recruit .recruit-table th {
  width: 34%;
  font-weight: 700;
  color: #2c353f;
  background: rgba(0,0,0,.02);
}

.recruit .recruit-points {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
}

.recruit .recruit-note {
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(0,0,0,.03);
}

.recruit .recruit-note__title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 14px;
}

.recruit .recruit-note__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.recruit .recruit-steps {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.recruit .recruit-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
  font-size: 14px;
}

.recruit .recruit-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(0,0,0,.08);
  font-weight: 700;
  flex: 0 0 26px;
}

.recruit .recruit-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.recruit .recruit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.15);
  text-decoration: none;
  font-weight: 700;
}

.recruit .recruit-btn--sub {
  background: rgba(0,0,0,.03);
}

.recruit .recruit-small {
  margin-top: 10px;
  font-size: 12px;
  opacity: .8;
}

.recruit .recruit-card--cta {
  grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 768px) {
  .recruit .recruit-grid {
    grid-template-columns: 1fr;
  }

  .recruit .recruit-table th {
    width: 38%;
  }
}

/* CF7 Stylish Form */
.cf7-form{
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
margin-top:50px;
	margin-bottom:50px;
}

.cf7-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf7-field--full{
  grid-column: 1 / -1;
}

.cf7-label{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  color: #2c353f;
  margin-bottom: 8px;
}

.cf7-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(0,0,0,.06);
  color: rgba(44,53,63,.9);
}

.cf7-input,
.cf7-textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #2c353f;
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .05s ease;
}

.cf7-textarea{
  min-height: 160px;
  resize: vertical;
}

.cf7-input:focus,
.cf7-textarea:focus{
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}

.cf7-help{
  margin: 8px 0 0;
  font-size: 12px;
  opacity: .75;
}

/* Checkbox group */
.cf7-check{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cf7-check .wpcf7-list-item{
  margin: 0;
}

.cf7-check .wpcf7-list-item label{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .05s ease;
}

.cf7-check .wpcf7-list-item label:hover{
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.18);
}

.cf7-check input[type="checkbox"]{
  width: 18px;
  height: 18px;
}

/* Actions */
.cf7-actions{
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.cf7-submit{
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 12px;
  background: #2c353f;
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .05s ease, box-shadow .2s ease, opacity .2s ease;
}

.cf7-submit:hover{
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
}

.cf7-submit:active{
  transform: translateY(1px);
}

.cf7-privacy{
  margin: 0;
  font-size: 12px;
  opacity: .75;
}

/* CF7 validation */
.wpcf7-not-valid{
  border-color: rgba(220, 60, 60, .7) !important;
  box-shadow: 0 0 0 4px rgba(220, 60, 60, .12) !important;
}

.wpcf7-not-valid-tip{
  font-size: 12px;
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 768px){
  .cf7-form{
    padding: 18px;
    border-radius: 14px;
  }

  .cf7-grid{
    grid-template-columns: 1fr;
  }

  .cf7-check{
    grid-template-columns: 1fr;
  }
}

/* Works single */
.works-single .works-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin: 0 0 18px;
}

.works-single .works-tag{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  font-size: 13px;
  font-weight: 700;
}

.works-single .works-meta__item{
  font-size: 14px;
  opacity: .9;
}

/* box内に画像を収めて枠を維持 */
.sample .content .item .before-after-item .box{
  position: relative;
  overflow: hidden;
  padding: 3px; /* グラデ枠の太さ */
  box-sizing: border-box;
}
.sample .content .item .before-after-item .box img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 7px;
}

/* texts */
.works-single .works-texts{
  margin-top: 18px;
  display: grid;
  gap: 14px;
  padding-inline: 10px;
}

.works-single .works-text{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 14px;
}

.works-single .works-text__title{
  margin: 0 0 8px;
  font-size: 18px;
}

.works-single .works-text__body p{
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
}

/* nav */
.works-single .works-nav{
  margin-top: 18px;
  padding-inline: 10px;
}
.works-single .works-back{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.15);
  text-decoration: none;
  font-weight: 700;
}


/* ===== Interior Page ===== */
.interior {
  background: #fff;
  color: #2c353f;
}

.svc-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 20px;
}

/* Hero */
.interior-hero {
  position: relative;
  background: linear-gradient(135deg, #05244a 0%, #124b84 55%, #05244a 100%);
  color: #fff;
  padding: 70px 0 60px;
}

.interior-hero .svc-hero__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 20px;
}

.interior-hero .svc-hero__title {
  font-size: 44px;
  margin: 0 0 8px;
  letter-spacing: .04em;
}

.interior-hero .svc-hero__sub {
  margin: 0 0 18px;
  opacity: .85;
  font-size: 14px;
  letter-spacing: .14em;
}

.interior-hero__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  max-width: 780px;
  opacity: .95;
}

/* Intro */
.interior-intro {
  padding: 60px 0;
  background: url("../img/gray-bg.png");
}

.interior-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.interior-intro__catch {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 18px;
}

.interior-intro__desc {
  margin: 0 0 18px;
  line-height: 2;
  font-size: 15px;
  opacity: .95;
}

.interior-points {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
  font-weight: 700;
}

.interior-intro__media {
  display: grid;
  gap: 12px;
}

.interior-photo {
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}

.interior-photo--sub {
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%) border-box;
}

.interior-photo img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
}

/* Section head */
.interior-sec-head {
  text-align: center;
  margin-bottom: 26px;
}

.interior-sec-head__en {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .22em;
  opacity: .75;
}

.interior-sec-head__jp {
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: .04em;
}

.interior-sec-head__sub {
  margin: 0 auto;
  max-width: 820px;
  line-height: 1.9;
  font-size: 15px;
  opacity: .9;
}

/* Menu cards */
.interior-menu {
  padding: 70px 0;
}

.interior-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.interior-card {
  border-radius: 15px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
  box-shadow: 0 10px 18px rgba(134, 117, 104, 0.18);
  padding: 18px;
}

.interior-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(to right, #05244a 0%, #124b84 50%, #05244a 100%);
  margin-bottom: 10px;
}

.interior-card__title {
  margin: 0 0 8px;
  font-size: 20px;
}

.interior-card__text {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

/* Before After */
.interior-ba {
  padding: 70px 0;
  background: url("../img/gray-bg.png");
}

.interior-ba__wrap {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 16px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.interior-ba__label {
  width: 120px;
  margin: 0 0 -10px;
  padding: 10px 0 14px;
  text-align: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-weight: 800;
  background: linear-gradient(45deg, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%);
}

.interior-ba__label--after {
  color: #fff;
  background: linear-gradient(45deg, #05244a 0%, #124b84 100%);
}

.interior-ba__box {
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  padding: 3px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%) border-box;
}

.interior-ba__box--after {
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
}

.interior-ba__box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.interior-ba__text {
  margin: 10px 0 0;
  line-height: 1.9;
  font-size: 14px;
}

.interior-ba__arrow {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
  color: #2c353f;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}

/* Flow */
.interior-flow {
  padding: 70px 0;
}

.interior-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-inline: auto;
}

.interior-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  padding: 16px;
  box-shadow: 0 8px 14px rgba(0,0,0,.06);
}

.interior-step__num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(to right, #05244a 0%, #124b84 50%, #05244a 100%);
}

.interior-step__body h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.interior-step__body p {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

/* CTA */
.interior-cta {
  padding: 70px 0 90px;
  background: linear-gradient(135deg, rgba(5,36,74,.06), rgba(210,190,143,.10));
}

.interior-cta__box {
  border-radius: 18px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
  box-shadow: 0 12px 20px rgba(0,0,0,.08);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.interior-cta__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
}

.interior-cta__sub {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

.interior-cta__btns {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.interior-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.15);
  color: #fff;
  background: linear-gradient(to right, #05244a 0%, #124b84 50%, #05244a 100%);
}

.interior-btn--sub {
  background: rgba(0,0,0,.03);
  color: #2c353f;
}

/* Responsive */
@media (max-width: 900px) {
  .interior-intro__grid {
    grid-template-columns: 1fr;
  }
  .interior-photo img {
    height: 240px;
  }
  .interior-cards {
    grid-template-columns: 1fr;
  }
  .interior-ba__wrap {
    grid-template-columns: 1fr;
  }
  .interior-ba__arrow {
    margin: 6px auto;
    transform: rotate(90deg);
  }
  .interior-cta__box {
    grid-template-columns: 1fr;
  }
  .interior-cta__btns {
    justify-items: stretch;
  }
}

@media (max-width: 650px) {
  .interior-hero .svc-hero__title {
    font-size: 34px;
  }
  .interior-sec-head__jp {
    font-size: 26px;
  }
  .interior-photo img {
    height: 210px;
  }
  .interior-ba__box {
    height: 220px;
  }
}



/* ===== Painting Page ===== */
.painting {
  background: #fff;
  color: #2c353f;
}

/* Hero */
.painting-hero {
  background: linear-gradient(135deg, #05244a 0%, #124b84 55%, #05244a 100%);
  color: #fff;
  padding: 70px 0 60px;
}

.painting-hero .svc-hero__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 20px;
}

.painting-hero .svc-hero__title {
  font-size: 44px;
  margin: 0 0 8px;
  letter-spacing: .04em;
}

.painting-hero .svc-hero__sub {
  margin: 0 0 18px;
  opacity: .85;
  font-size: 14px;
  letter-spacing: .14em;
}

.painting-hero__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  max-width: 820px;
  opacity: .95;
}

/* Intro */
.painting-intro {
  padding: 60px 0;
  background: url("../img/gray-bg.png");
}

.painting-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.painting-intro__catch {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 18px;
}

.painting-intro__desc {
  margin: 0 0 18px;
  line-height: 2;
  font-size: 15px;
  opacity: .95;
}

.painting-points {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
  font-weight: 700;
}

.painting-intro__media {
  display: grid;
  gap: 12px;
}

.painting-photo {
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}

.painting-photo--sub {
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%) border-box;
}

.painting-photo img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
}

/* Section head */
.painting-sec-head {
  text-align: center;
  margin-bottom: 26px;
}

.painting-sec-head__en {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .22em;
  opacity: .75;
}

.painting-sec-head__jp {
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: .04em;
}

.painting-sec-head__sub {
  margin: 0 auto;
  max-width: 860px;
  line-height: 1.9;
  font-size: 15px;
  opacity: .9;
}

/* Menu cards */
.painting-menu {
  padding: 70px 0;
}

.painting-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.painting-card {
  border-radius: 15px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
  box-shadow: 0 10px 18px rgba(134, 117, 104, 0.18);
  padding: 18px;
}

.painting-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(to right, #05244a 0%, #124b84 50%, #05244a 100%);
  margin-bottom: 10px;
}

.painting-card__title {
  margin: 0 0 8px;
  font-size: 20px;
}

.painting-card__text {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

/* Quality */
.painting-quality {
  padding: 70px 0;
  background: url("../img/gray-bg.png");
}

.painting-quality__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.painting-q {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
}

.painting-q__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  padding-left: 10px;
  border-left: 4px solid rgba(0,0,0,.18);
}

.painting-q__text {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

/* Before After */
.painting-ba {
  padding: 70px 0;
}

.painting-ba__wrap {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 16px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.painting-ba__label {
  width: 120px;
  margin: 0 0 -10px;
  padding: 10px 0 14px;
  text-align: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-weight: 800;
  background: linear-gradient(45deg, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%);
}

.painting-ba__label--after {
  color: #fff;
  background: linear-gradient(45deg, #05244a 0%, #124b84 100%);
}

.painting-ba__box {
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  padding: 3px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%) border-box;
}

.painting-ba__box--after {
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
}

.painting-ba__box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.painting-ba__text {
  margin: 10px 0 0;
  line-height: 1.9;
  font-size: 14px;
}

.painting-ba__arrow {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
  color: #2c353f;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}

/* Flow */
.painting-flow {
  padding: 70px 0 90px;
}

.painting-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-inline: auto;
}

.painting-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  padding: 16px;
  box-shadow: 0 8px 14px rgba(0,0,0,.06);
}

.painting-step__num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(to right, #05244a 0%, #124b84 50%, #05244a 100%);
}

.painting-step__body h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.painting-step__body p {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

/* CTA */
.painting-cta {
  padding: 0 0 90px;
}

.painting-cta__box {
  border-radius: 18px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
  box-shadow: 0 12px 20px rgba(0,0,0,.08);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.painting-cta__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
}

.painting-cta__sub {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

.painting-cta__btns {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.painting-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.15);
  color: #fff;
  background: linear-gradient(to right, #05244a 0%, #124b84 50%, #05244a 100%);
}

.painting-btn--sub {
  background: rgba(0,0,0,.03);
  color: #2c353f;
}

/* Responsive */
@media (max-width: 900px) {
  .painting-intro__grid {
    grid-template-columns: 1fr;
  }

  .painting-photo img {
    height: 240px;
  }

  .painting-cards {
    grid-template-columns: 1fr;
  }

  .painting-quality__grid {
    grid-template-columns: 1fr;
  }

  .painting-ba__wrap {
    grid-template-columns: 1fr;
  }

  .painting-ba__arrow {
    margin: 6px auto;
    transform: rotate(90deg);
  }

  .painting-cta__box {
    grid-template-columns: 1fr;
  }

  .painting-cta__btns {
    justify-items: stretch;
  }
}

@media (max-width: 650px) {
  .painting-hero .svc-hero__title {
    font-size: 34px;
  }

  .painting-sec-head__jp {
    font-size: 26px;
  }

  .painting-photo img {
    height: 210px;
  }

  .painting-ba__box {
    height: 220px;
  }
}



/* ===== Roof Sheet Metal Page ===== */
.roof-sheet-metal {
  background: #fff;
  color: #2c353f;
}

/* Hero */
.rsm-hero {
  background: linear-gradient(135deg, #05244a 0%, #124b84 55%, #05244a 100%);
  color: #fff;
  padding: 70px 0 60px;
}

.rsm-hero .svc-hero__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 20px;
}

.rsm-hero .svc-hero__title {
  font-size: 44px;
  margin: 0 0 8px;
  letter-spacing: .04em;
}

.rsm-hero .svc-hero__sub {
  margin: 0 0 18px;
  opacity: .85;
  font-size: 14px;
  letter-spacing: .14em;
}

.rsm-hero__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  max-width: 860px;
  opacity: .95;
}

/* Intro */
.rsm-intro {
  padding: 60px 0;
  background: url("../img/gray-bg.png");
}

.rsm-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.rsm-intro__catch {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 18px;
}

.rsm-intro__desc {
  margin: 0 0 18px;
  line-height: 2;
  font-size: 15px;
  opacity: .95;
}

.rsm-points {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
  font-weight: 700;
}

.rsm-intro__media {
  display: grid;
  gap: 12px;
}

.rsm-photo {
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}

.rsm-photo--sub {
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%) border-box;
}

.rsm-photo img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
}

/* Section head */
.rsm-sec-head {
  text-align: center;
  margin-bottom: 26px;
}

.rsm-sec-head__en {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .22em;
  opacity: .75;
}

.rsm-sec-head__jp {
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: .04em;
}

.rsm-sec-head__sub {
  margin: 0 auto;
  max-width: 900px;
  line-height: 1.9;
  font-size: 15px;
  opacity: .9;
}

/* Menu cards */
.rsm-menu {
  padding: 70px 0;
}

.rsm-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.rsm-card {
  border-radius: 15px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
  box-shadow: 0 10px 18px rgba(134, 117, 104, 0.18);
  padding: 18px;
}

.rsm-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(to right, #05244a 0%, #124b84 50%, #05244a 100%);
  margin-bottom: 10px;
}

.rsm-card__title {
  margin: 0 0 8px;
  font-size: 20px;
}

.rsm-card__text {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

/* Signs */
.rsm-signs {
  padding: 70px 0;
  background: url("../img/gray-bg.png");
}

.rsm-signs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rsm-sign {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
}

.rsm-sign__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  padding-left: 10px;
  border-left: 4px solid rgba(0,0,0,.18);
}

.rsm-sign__text {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

/* Before After */
.rsm-ba {
  padding: 70px 0;
}

.rsm-ba__wrap {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 16px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.rsm-ba__label {
  width: 120px;
  margin: 0 0 -10px;
  padding: 10px 0 14px;
  text-align: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-weight: 800;
  background: linear-gradient(45deg, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%);
}

.rsm-ba__label--after {
  color: #fff;
  background: linear-gradient(45deg, #05244a 0%, #124b84 100%);
}

.rsm-ba__box {
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  padding: 3px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%) border-box;
}

.rsm-ba__box--after {
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
}

.rsm-ba__box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.rsm-ba__text {
  margin: 10px 0 0;
  line-height: 1.9;
  font-size: 14px;
}

.rsm-ba__arrow {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
  color: #2c353f;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}

/* Flow */
.rsm-flow {
  padding: 70px 0 90px;
}

.rsm-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-inline: auto;
}

.rsm-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  padding: 16px;
  box-shadow: 0 8px 14px rgba(0,0,0,.06);
}

.rsm-step__num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(to right, #05244a 0%, #124b84 50%, #05244a 100%);
}

.rsm-step__body h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.rsm-step__body p {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

/* CTA */
.rsm-cta {
  padding: 0 0 90px;
}

.rsm-cta__box {
  border-radius: 18px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
  box-shadow: 0 12px 20px rgba(0,0,0,.08);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.rsm-cta__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
}

.rsm-cta__sub {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

.rsm-cta__btns {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.rsm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.15);
  color: #fff;
  background: linear-gradient(to right, #05244a 0%, #124b84 50%, #05244a 100%);
}

.rsm-btn--sub {
  background: rgba(0,0,0,.03);
  color: #2c353f;
}

/* Responsive */
@media (max-width: 900px) {
  .rsm-intro__grid {
    grid-template-columns: 1fr;
  }

  .rsm-photo img {
    height: 240px;
  }

  .rsm-cards {
    grid-template-columns: 1fr;
  }

  .rsm-signs__grid {
    grid-template-columns: 1fr;
  }

  .rsm-ba__wrap {
    grid-template-columns: 1fr;
  }

  .rsm-ba__arrow {
    margin: 6px auto;
    transform: rotate(90deg);
  }

  .rsm-cta__box {
    grid-template-columns: 1fr;
  }

  .rsm-cta__btns {
    justify-items: stretch;
  }
}

@media (max-width: 650px) {
  .rsm-hero .svc-hero__title {
    font-size: 34px;
  }

  .rsm-sec-head__jp {
    font-size: 26px;
  }

  .rsm-photo img {
    height: 210px;
  }

  .rsm-ba__box {
    height: 220px;
  }
}



/* ===== Roof Tile Page ===== */
.roof-tile {
  background: #fff;
  color: #2c353f;
}

/* Hero */
.rt-hero {
  background: linear-gradient(135deg, #05244a 0%, #124b84 55%, #05244a 100%);
  color: #fff;
  padding: 70px 0 60px;
}

.rt-hero .svc-hero__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 20px;
}

.rt-hero .svc-hero__title {
  font-size: 44px;
  margin: 0 0 8px;
  letter-spacing: .04em;
}

.rt-hero .svc-hero__sub {
  margin: 0 0 18px;
  opacity: .85;
  font-size: 14px;
  letter-spacing: .14em;
}

.rt-hero__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  max-width: 900px;
  opacity: .95;
}

/* Intro */
.rt-intro {
  padding: 60px 0;
  background: url("../img/gray-bg.png");
}

.rt-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.rt-intro__catch {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 18px;
}

.rt-intro__desc {
  margin: 0 0 18px;
  line-height: 2;
  font-size: 15px;
  opacity: .95;
}

.rt-points {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
  font-weight: 700;
}

.rt-intro__media {
  display: grid;
  gap: 12px;
}

.rt-photo {
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}

.rt-photo--sub {
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%) border-box;
}

.rt-photo img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
}

/* Section head */
.rt-sec-head {
  text-align: center;
  margin-bottom: 26px;
}

.rt-sec-head__en {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .22em;
  opacity: .75;
}

.rt-sec-head__jp {
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: .04em;
}

.rt-sec-head__sub {
  margin: 0 auto;
  max-width: 900px;
  line-height: 1.9;
  font-size: 15px;
  opacity: .9;
}

/* Menu cards */
.rt-menu {
  padding: 70px 0;
}

.rt-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.rt-card {
  border-radius: 15px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
  box-shadow: 0 10px 18px rgba(134, 117, 104, 0.18);
  padding: 18px;
}

.rt-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(to right, #05244a 0%, #124b84 50%, #05244a 100%);
  margin-bottom: 10px;
}

.rt-card__title {
  margin: 0 0 8px;
  font-size: 20px;
}

.rt-card__text {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

/* Signs */
.rt-signs {
  padding: 70px 0;
  background: url("../img/gray-bg.png");
}

.rt-signs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rt-sign {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
}

.rt-sign__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  padding-left: 10px;
  border-left: 4px solid rgba(0,0,0,.18);
}

.rt-sign__text {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

/* Before After */
.rt-ba {
  padding: 70px 0;
}

.rt-ba__wrap {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 16px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.rt-ba__label {
  width: 120px;
  margin: 0 0 -10px;
  padding: 10px 0 14px;
  text-align: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-weight: 800;
  background: linear-gradient(45deg, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%);
}

.rt-ba__label--after {
  color: #fff;
  background: linear-gradient(45deg, #05244a 0%, #124b84 100%);
}

.rt-ba__box {
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  padding: 3px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%) border-box;
}

.rt-ba__box--after {
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
}

.rt-ba__box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.rt-ba__text {
  margin: 10px 0 0;
  line-height: 1.9;
  font-size: 14px;
}

.rt-ba__arrow {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
  color: #2c353f;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}

/* Flow */
.rt-flow {
  padding: 70px 0 90px;
}

.rt-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-inline: auto;
}

.rt-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  padding: 16px;
  box-shadow: 0 8px 14px rgba(0,0,0,.06);
}

.rt-step__num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(to right, #05244a 0%, #124b84 50%, #05244a 100%);
}

.rt-step__body h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.rt-step__body p {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

/* CTA */
.rt-cta {
  padding: 0 0 90px;
}

.rt-cta__box {
  border-radius: 18px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
  box-shadow: 0 12px 20px rgba(0,0,0,.08);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.rt-cta__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
}

.rt-cta__sub {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}

.rt-cta__btns {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.rt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.15);
  color: #fff;
  background: linear-gradient(to right, #05244a 0%, #124b84 50%, #05244a 100%);
}

.rt-btn--sub {
  background: rgba(0,0,0,.03);
  color: #2c353f;
}

/* Responsive */
@media (max-width: 900px) {
  .rt-intro__grid {
    grid-template-columns: 1fr;
  }

  .rt-photo img {
    height: 240px;
  }

  .rt-cards {
    grid-template-columns: 1fr;
  }

  .rt-signs__grid {
    grid-template-columns: 1fr;
  }

  .rt-ba__wrap {
    grid-template-columns: 1fr;
  }

  .rt-ba__arrow {
    margin: 6px auto;
    transform: rotate(90deg);
  }

  .rt-cta__box {
    grid-template-columns: 1fr;
  }

  .rt-cta__btns {
    justify-items: stretch;
  }
}

@media (max-width: 650px) {
  .rt-hero .svc-hero__title {
    font-size: 34px;
  }

  .rt-sec-head__jp {
    font-size: 26px;
  }

  .rt-photo img {
    height: 210px;
  }

  .rt-ba__box {
    height: 220px;
  }
}


/* ===== Privacy Policy ===== */
.policy {
  color: #2c353f;
  background: #fff;
}

/* Hero */
.policy-hero {
  background: linear-gradient(135deg, #05244a 0%, #124b84 55%, #05244a 100%);
  color: #fff;
  padding: 70px 0 55px;
}

.policy-hero__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 20px;
  text-align: center;
}

.policy-hero__title {
  margin: 0 0 8px;
  font-size: 42px;
  letter-spacing: .04em;
}

.policy-hero__sub {
  margin: 0;
  font-size: 14px;
  letter-spacing: .18em;
  opacity: .85;
}

/* Body */
.policy-body {
  padding: 70px 0 90px;
  background: url("../img/gray-bg.png");
}

.policy-container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-inline: 20px;
}

.policy-lead {
  margin: 0 0 22px;
  line-height: 2;
  font-size: 15px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
}

/* Card */
.policy-card {
  margin-top: 16px;
  background: #fff;
  border-radius: 15px;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #d2be8f 0%, #d4cfb3 50%, #d2be8f 100%) border-box;
  box-shadow: 0 10px 18px rgba(134, 117, 104, 0.18);
  padding: 18px;
}

.policy-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: .02em;
  position: relative;
  padding-left: 12px;
}

.policy-card h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .3em;
  width: 4px;
  height: 1.2em;
  background: rgba(0,0,0,.18);
  border-radius: 99px;
}

.policy-card p {
  margin: 0;
  line-height: 2;
  font-size: 15px;
  opacity: .95;
}

.policy-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  line-height: 2;
  font-size: 15px;
}

.policy-card li {
  margin: 2px 0;
}

/* Contact */
.policy-contact {
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #a3a3a2 0%, #e9e9e9 50%, #a3a3a2 100%) border-box;
}

.policy-dl {
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.policy-dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.policy-dl > div:first-child {
  border-top: none;
  padding-top: 0;
}

.policy-dl dt {
  font-weight: 900;
  font-size: 14px;
  opacity: .9;
}

.policy-dl dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.policy-dl a {
  color: inherit;
  text-decoration: none;
  font-weight: 900;
  border-bottom: 1px solid rgba(0,0,0,.25);
}

.policy-dl a:hover {
  opacity: .8;
}

.policy-note {
  margin: 18px 0 0;
  font-size: 13px;
  opacity: .7;
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .policy-hero__title {
    font-size: 32px;
  }

  .policy-body {
    padding: 50px 0 70px;
  }

  .policy-card {
    padding: 16px;
  }

  .policy-dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .policy-note {
    text-align: left;
  }
}

