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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", 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", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", 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", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", 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/28319/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;
  }
}
/* ============================================================
   VARIABLES & SETTINGS
   ============================================================ */
:root {
  --navy: #0b2e5c; /* 深い紺：見出し・フッター・ヒーロー基調 */
  --blue: #1466b8; /* ブランドブルー：アクセント・リンク・ボタン */
  --blue-bright: #2e8be6; /* 明るい青：ハイライト */
  --sky: #eef4fb; /* 淡い青：セクション背景 */
  --ink: #18222f; /* 本文：青みのある濃色 */
  --gray: #5c6a7a; /* 補助テキスト */
  --line: #d6dfe9; /* 罫線 */
  --white: #ffffff;
  --wrap: 1220px;
  --pad: clamp(20px, 5vw, 40px);
  --route: "Barlow Semi Condensed", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--ink);
  line-height: 1.9;
  font-size: 16px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================================
   SHARED LAYOUT / COMPONENTS
   ============================================================ */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section {
  padding: clamp(64px, 9vw, 110px) 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 26px;
  font-family: var(--route);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 46px;
  height: 2px;
  background: var(--blue);
  position: relative;
}
.eyebrow b {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gray);
  font-size: 13px;
}
.eyebrow i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  flex: 0 0 auto;
  margin-left: -8px;
  box-shadow: 0 0 0 4px rgba(20, 102, 184, 0.15);
}

.lead {
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--navy);
  font-size: clamp(24px, 3.6vw, 38px);
  margin: 0 0 28px;
}
.lead small {
  display: block;
  color: var(--blue);
  font-size: 0.62em;
  font-weight: 700;
  margin-top: 0.4em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 15px 30px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  background: var(--blue);
  color: #fff;
  transition: background 0.25s, transform 0.25s;
}
.btn::after {
  content: "→";
  font-family: var(--route);
}
.btn:hover {
  background: var(--navy);
  transform: translateX(2px);
}
.btn.line {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn.line:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.brand span {
  font-family: var(--route);
  font-weight: 600;
  letter-spacing: 0.26em;
  font-size: 22px;
  color: var(--navy);
}
.brand small {
  font-weight: 700;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.08em;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 1080px) {
  nav {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 22px;
    transform: translateY(-120%);
    transition: transform 0.35s;
    box-shadow: 0 14px 24px rgba(11, 46, 92, 0.08);
  }
  nav.open {
    transform: translateY(0);
  }
}
nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
  position: relative;
}
@media (max-width: 1080px) {
  nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
}
nav a:hover {
  color: var(--blue);
}
nav .mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 2px;
  font-size: 13.5px;
  font-weight: 700;
  transition: background 0.25s;
}
@media (max-width: 1080px) {
  nav .mail {
    margin-top: 14px;
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
}
nav .mail:hover {
  background: var(--blue);
}
nav .mail::before {
  content: "✉";
  font-size: 14px;
}

.burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
@media (max-width: 1080px) {
  .burger {
    display: block;
  }
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
}

/* ============================================================
   HERO AREA (WITH SLIDESHOW)
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  /* ↓ 実写スライドはこの背景に差し込む想定（例：background-image:url('slide01.jpg')） */
  background: radial-gradient(120% 90% at 78% 8%, rgba(46, 139, 230, 0.55) 0%, rgba(11, 46, 92, 0) 55%), linear-gradient(160deg, #081f42 0%, #0b2e5c 42%, #123f78 100%);
  background-color: #0b2e5c;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  padding-top: clamp(90px, 14vw, 150px);
  padding-bottom: clamp(90px, 14vw, 150px);
}
.hero h1 {
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.42;
  font-size: clamp(31px, 6.2vw, 62px);
  margin: 0;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.hero p {
  margin: 26px 0 0;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(14px, 1.7vw, 17px);
  line-height: 2;
}
.hero .tag {
  font-family: var(--route);
  letter-spacing: 0.24em;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue-bright);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero .tag::before {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--blue-bright);
}
.hero {
  /* スライドショー背景（デザインはそのまま／背景のみ切替） */
}
.hero .slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity, transform;
}
.hero .slide.on {
  opacity: 1;
  animation: kenburns 7.5s ease-out both;
}
@media (prefers-reduced-motion: reduce) {
  .hero .slide {
    transition: none;
  }
  .hero .slide.on {
    animation: none;
  }
}
.hero .tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 90% at 78% 8%, rgba(46, 139, 230, 0.3) 0%, rgba(11, 46, 92, 0) 55%), linear-gradient(160deg, rgba(8, 31, 66, 0.9) 0%, rgba(11, 46, 92, 0.74) 42%, rgba(18, 63, 120, 0.6) 100%);
}
.hero {
  /* インジケーターバー（button） */
}
.hero .slidebar {
  position: absolute;
  right: var(--pad);
  bottom: 26px;
  z-index: 3;
  display: flex;
  gap: 9px;
}
.hero .slidebar button {
  width: 30px;
  height: 3px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  transition: background 0.3s, width 0.3s;
}
.hero .slidebar button:hover {
  background: rgba(255, 255, 255, 0.7);
}
.hero .slidebar button.on {
  background: #fff;
  width: 44px;
}

/* ルート signature：ヒーロー下部を横切る細い光の線＋停車点 */
.route {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  z-index: 2;
  opacity: 0.9;
}

/* Ken Burns エフェクト（ズームアニメーション） */
@keyframes kenburns {
  from {
    transform: scale(1.07);
  }
  to {
    transform: scale(1);
  }
}
/* ============================================================
   GREETING
   ============================================================ */
.greeting {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.greeting .wrap {
  position: relative;
  z-index: 2;
}
.greeting {
  /* ▼ 仮：右下の背景画像。本番は background の url() を実画像に差し替え ▼ */
}
.greeting::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(48%, 540px);
  height: min(70%, 360px);
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28319/bg01.jpg) right bottom/cover no-repeat;
  -webkit-mask-image: linear-gradient(305deg, #000 -70%, transparent 100%);
          mask-image: linear-gradient(305deg, #000 -70%, transparent 100%);
  opacity: 0.9;
  pointer-events: none;
}
.greeting .body {
  max-width: 760px;
}
.greeting p {
  margin: 0 0 22px;
  color: #33414f;
}
.greeting p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   REASON
   ============================================================ */
.reason {
  background: var(--sky);
}
.reason .head-block {
  margin-bottom: 56px;
}
.reason .head-block .lead {
  margin-bottom: 0;
}

.reasons {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.reasons article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  padding: 38px 4px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.reasons article:hover {
  background: rgba(255, 255, 255, 0.6);
}
@media (max-width: 860px) {
  .reasons article {
    grid-template-columns: 70px 1fr;
    gap: 18px;
  }
}
.reasons .no {
  font-family: var(--route);
  font-weight: 600;
  font-size: clamp(52px, 8vw, 78px);
  line-height: 0.9;
  color: var(--blue);
}
.reasons .no em {
  display: block;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--gray);
  font-style: normal;
  margin-top: 8px;
}
@media (max-width: 860px) {
  .reasons .no {
    font-size: 44px;
  }
}
.reasons h3 {
  margin: 2px 0 12px;
  font-size: clamp(18px, 2.4vw, 23px);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5;
}
.reasons p {
  margin: 0;
  color: #3a4855;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(48%, 540px);
  height: min(70%, 400px);
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28319/bg02.jpg) right bottom/cover no-repeat;
  -webkit-mask-image: linear-gradient(305deg, #000 -70%, transparent 100%);
          mask-image: linear-gradient(305deg, #000 -70%, transparent 100%);
  opacity: 0.9;
  pointer-events: none;
}
.about .wrap {
  position: relative;
  z-index: 2;
}
.about .grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 860px) {
  .about .grid {
    grid-template-columns: 1fr;
  }
}
.about p {
  color: #33414f;
  margin: 0 0 20px;
}
.about p:last-of-type {
  margin-bottom: 0;
}

.banners {
  display: grid;
  gap: 16px;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  background: var(--white);
  transition: 0.28s;
}
.banner:hover {
  border-left-color: var(--navy);
  background: var(--sky);
  transform: translateX(4px);
}
.banner b {
  font-size: 17px;
  color: var(--navy);
  font-weight: 700;
}
.banner em {
  font-family: var(--route);
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--gray);
  font-style: normal;
  display: block;
  margin-top: 4px;
}
.banner span {
  font-family: var(--route);
  color: var(--blue);
  font-weight: 600;
  font-size: 22px;
}

/* ============================================================
   RECRUIT
   ============================================================ */
.recruit {
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #0b2e5c 0%, #0f3a71 60%, #1466b8 130%);
}
.recruit .wrap {
  position: relative;
  z-index: 2;
}
.recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28319/bg03.jpg) center/cover no-repeat;
  opacity: 0.16;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.recruit .eyebrow {
  color: #8ec2f2;
}
.recruit .eyebrow::before {
  background: #8ec2f2;
}
.recruit .eyebrow i {
  background: #8ec2f2;
  box-shadow: 0 0 0 4px rgba(142, 194, 242, 0.2);
}
.recruit .eyebrow b {
  color: rgba(255, 255, 255, 0.65);
}
.recruit .catch {
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-size: clamp(23px, 3.6vw, 36px);
  margin: 0 0 26px;
}
.recruit .catch u {
  text-decoration: none;
  color: #8ec2f2;
}
.recruit p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 40px;
  line-height: 2;
}
.recruit .banners {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 860px) {
  .recruit .banners {
    grid-template-columns: 1fr;
  }
}
.recruit .banner {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  border-left-color: #8ec2f2;
}
.recruit .banner:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}
.recruit .banner b {
  color: #fff;
}
.recruit .banner em {
  color: rgba(255, 255, 255, 0.55);
}
.recruit .banner span {
  color: #8ec2f2;
}
.recruit::after {
  content: "ROUTE";
  position: absolute;
  right: -2%;
  bottom: -6%;
  z-index: 1;
  font-family: var(--route);
  font-weight: 600;
  font-size: clamp(120px, 22vw, 260px);
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.04em;
  pointer-events: none;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--sky);
  text-align: center;
}
.contact .inner {
  max-width: 680px;
  margin: 0 auto;
}
.contact .eyebrow {
  justify-content: center;
}
.contact p {
  color: #33414f;
  margin: 0 auto 40px;
  max-width: 52ch;
}

.tel {
  margin: 0 0 6px;
}
.tel small {
  font-family: var(--route);
  letter-spacing: 0.2em;
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
}
.tel a {
  display: block;
  font-family: var(--route);
  font-weight: 600;
  white-space: nowrap;
  font-size: clamp(34px, 6.4vw, 54px);
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-top: 6px;
}

.hours {
  color: var(--gray);
  font-size: 14px;
  margin: 0 0 34px;
}
.hours b {
  color: var(--navy);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}
footer .wrap {
  padding-top: 64px;
  padding-bottom: 34px;
}

.foot-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 860px) {
  .foot-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.foot-brand span {
  font-family: var(--route);
  font-weight: 600;
  letter-spacing: 0.26em;
  font-size: 24px;
  color: #fff;
  display: block;
}
.foot-brand small {
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
}

.offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.offices h4 {
  margin: 0 0 10px;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.06em;
}
.offices p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.95;
}
@media (max-width: 520px) {
  .offices {
    grid-template-columns: 1fr;
  }
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  padding-top: 26px;
}
.foot-nav a {
  color: #fff;
  font-size: 13.5px;
  transition: color 0.2s;
}
.foot-nav a:hover {
  color: #ccc;
}

.copy {
  margin: 22px 0 0;
  font-family: var(--route);
  letter-spacing: 0.14em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- ANIMATION & ACCESSIBILITY ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .btn:hover, .banner:hover {
    transform: none;
  }
}
/* ============================================================
   PAGE HEAD
   ============================================================ */
.page-head {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(120% 130% at 82% 0%, rgba(46, 139, 230, 0.5) 0%, rgba(11, 46, 92, 0) 55%), linear-gradient(160deg, #081f42 0%, #0b2e5c 55%, #123f78 120%);
  background-color: #0b2e5c;
}
.page-head .wrap {
  position: relative;
  z-index: 2;
  padding-top: clamp(54px, 8vw, 84px);
  padding-bottom: clamp(54px, 8vw, 84px);
}
.page-head .tag {
  font-family: var(--route);
  letter-spacing: 0.24em;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue-bright);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-head .tag::before {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--blue-bright);
}
.page-head h1 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: clamp(28px, 5vw, 46px);
}
.page-head .crumb {
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.page-head .crumb a:hover {
  color: #fff;
}
.page-head .route {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  z-index: 1;
  opacity: 0.85;
}

/* ============================================================
   MESSAGE
   ============================================================ */
.message .wrap {
  max-width: 920px;
}
.message .body {
  max-width: 780px;
}
.message .body p {
  margin: 0 0 22px;
  color: #33414f;
}
.message .body p:first-of-type {
  font-size: clamp(17px, 2.2vw, 19px);
  color: var(--navy);
  font-weight: 500;
}
.message .sign {
  margin: 36px 0 0;
  text-align: right;
  line-height: 1.7;
}
.message .sign small {
  display: block;
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 4px;
}
.message .sign b {
  font-weight: 700;
  color: var(--navy);
}
.message .sign span {
  font-size: clamp(19px, 2.6vw, 24px);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-left: 0.4em;
}

/* ============================================================
   COMPANY (SPEC & MAP)
   ============================================================ */
.company {
  background: var(--sky);
}

.spec {
  border-top: 1px solid var(--line);
  margin: 0;
}
.spec > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 860px) {
  .spec > div {
    grid-template-columns: 1fr;
  }
}
.spec dt {
  padding: 22px 24px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.55);
  font-size: 14.5px;
}
@media (max-width: 860px) {
  .spec dt {
    padding: 18px 20px 4px;
    background: none;
  }
}
.spec dd {
  padding: 22px 24px;
  margin: 0;
  color: #33414f;
  font-size: 15px;
  line-height: 1.85;
}
@media (max-width: 860px) {
  .spec dd {
    padding: 4px 20px 18px;
  }
}
.spec dd a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.spec .office {
  margin: 0 0 12px;
}
.spec .office:last-child {
  margin: 0;
}
.spec .office b {
  color: var(--navy);
}

.map .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 860px) {
  .map .grid {
    grid-template-columns: 1fr;
  }
}

.mapbox {
  border: 1px solid var(--line);
  background: var(--white);
}
.mapbox h3 {
  margin: 0;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mapbox h3 em {
  font-family: var(--route);
  font-style: normal;
  letter-spacing: 0.16em;
  color: var(--gray);
  font-size: 12px;
  font-weight: 600;
}
.mapbox .frame {
  height: 340px;
  background: var(--sky);
}
.mapbox iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   MAIL FORM
   ============================================================ */
.mailform .wrap {
  max-width: 860px;
}
.mailform .intro p {
  margin: 0 0 14px;
  color: #33414f;
}
.mailform .note {
  margin: 22px 0 0;
  padding: 16px 20px;
  background: var(--sky);
  border-left: 4px solid var(--blue);
  font-size: 14px;
  color: #33414f;
  line-height: 1.85;
}

/* ============================================================
   FORM FRAME & TEL FALLBACK
   ============================================================ */
.formframe {
  margin: 40px 0 0;
  border: 2px dashed #b9c7d8;
  background: var(--sky);
  border-radius: 4px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 48px 32px;
}
.formframe em {
  font-family: var(--route);
  letter-spacing: 0.24em;
  font-style: normal;
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
}
.formframe b {
  color: var(--navy);
  font-size: 17px;
}
.formframe span {
  font-size: 13.5px;
  max-width: 36ch;
  line-height: 1.9;
  color: var(--gray);
}

.tel-fallback {
  margin: 34px 0 0;
  text-align: center;
}
.tel-fallback small {
  font-family: var(--route);
  letter-spacing: 0.2em;
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
}
.tel-fallback a {
  display: block;
  font-family: var(--route);
  font-weight: 600;
  white-space: nowrap;
  font-size: clamp(30px, 6vw, 46px);
  color: var(--navy);
  margin-top: 4px;
}
.tel-fallback p {
  margin: 6px 0 0;
  color: var(--gray);
  font-size: 14px;
}

/* ============================================================
   SERVICE INTRO & EFFORT
   ============================================================ */
.svc-intro .wrap {
  max-width: 900px;
}
.svc-intro .body {
  max-width: 780px;
}
.svc-intro .body p {
  margin: 0 0 20px;
  color: #33414f;
}
.svc-intro .body p:first-of-type {
  font-size: clamp(17px, 2.2vw, 19px);
  color: var(--navy);
  font-weight: 500;
}

.effort {
  background: var(--sky);
}
.effort .wrap {
  max-width: 900px;
}
.effort .body {
  max-width: 780px;
}
.effort .body p {
  margin: 0 0 20px;
  color: #33414f;
}
.effort .keys {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}
.effort .keys span {
  padding: 9px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

/* ============================================================
   SERVICES LIST
   ============================================================ */
.services {
  background: var(--white);
}

.svc-list {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  margin-top: 8px;
}
.svc-list article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.svc-list article:nth-child(even) .svc-panel {
  order: 2;
}
@media (max-width: 860px) {
  .svc-list article:nth-child(even) .svc-panel {
    order: 0;
  }
}
@media (max-width: 860px) {
  .svc-list article {
    grid-template-columns: 1fr;
  }
}

.svc-panel {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 4px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: radial-gradient(120% 120% at 80% 10%, rgba(46, 139, 230, 0.5), rgba(11, 46, 92, 0) 55%), linear-gradient(150deg, #0b2e5c, #123f78);
}
.svc-panel svg {
  width: 66px;
  height: 66px;
  stroke: #8ec2f2;
}
.svc-panel em {
  font-family: var(--route);
  letter-spacing: 0.24em;
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}
@media (max-width: 860px) {
  .svc-panel {
    min-height: 210px;
  }
}

.svc-body h3 {
  margin: 0 0 6px;
  font-size: clamp(21px, 3vw, 28px);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.03em;
}
.svc-body .num {
  font-family: var(--route);
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.16em;
  display: block;
  margin-bottom: 10px;
}
.svc-body p {
  margin: 0 0 16px;
  color: #3a4855;
  font-size: 15px;
}
.svc-body p:last-child {
  margin: 0;
}

/* ============================================================
   WORKSHOP INTRO & VOICES
   ============================================================ */
.ws-intro .wrap {
  max-width: 900px;
}
.ws-intro .body {
  max-width: 800px;
}
.ws-intro .body p {
  margin: 0 0 18px;
  color: #33414f;
}

.ws-voices {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  max-width: 760px;
}
.ws-voices p {
  margin: 0;
  padding: 15px 22px;
  background: var(--sky);
  border-left: 4px solid var(--blue);
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(15px, 2vw, 17px);
}

/* ============================================================
   POINTS GRID
   ============================================================ */
.points {
  background: var(--sky);
}

.pt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.pt-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  padding: 30px 28px;
}
.pt-grid .no {
  font-family: var(--route);
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  color: var(--blue);
  display: block;
  margin-bottom: 14px;
}
.pt-grid h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5;
}
.pt-grid p {
  margin: 0;
  color: #3a4855;
  font-size: 14.5px;
  line-height: 1.85;
}

/* ============================================================
   FLOW & TIMELINE (STEPS)
   ============================================================ */
.flow {
  background: var(--white);
}

.panel + .panel {
  margin-top: clamp(44px, 6vw, 68px);
  padding-top: clamp(44px, 6vw, 68px);
  border-top: 1px solid var(--line);
}

.course-h {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 28px;
  font-size: clamp(19px, 2.6vw, 24px);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.course-h em {
  font-family: var(--route);
  font-style: normal;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
}

.timeline {
  margin: 0;
}

.step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
}
@media (max-width: 520px) {
  .step {
    grid-template-columns: 72px 1fr;
    gap: 12px;
  }
}
.step .time {
  font-family: var(--route);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--blue);
  font-size: 16px;
  padding-top: 1px;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .step .time {
    font-size: 14px;
  }
}
.step .c {
  position: relative;
  padding: 0 0 34px 28px;
  border-left: 1px solid var(--line);
  margin-left: 5px;
}
.step .c::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 10px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 102, 184, 0.12);
}
.step .c b {
  display: block;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 7px;
}
.step .c p {
  margin: 0;
  color: #3a4855;
  font-size: 14.5px;
  line-height: 1.85;
}
.step:last-child .c {
  border-left-color: transparent;
  padding-bottom: 0;
}

/* ============================================================
   ENTRY BANNER AREA
   ============================================================ */
.entry {
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #0b2e5c 0%, #0f3a71 60%, #1466b8 130%);
}
.entry .wrap {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.entry .eyebrow {
  color: #8ec2f2;
}
.entry .eyebrow::before {
  background: #8ec2f2;
}
.entry .eyebrow i {
  background: #8ec2f2;
  box-shadow: 0 0 0 4px rgba(142, 194, 242, 0.2);
}
.entry .eyebrow b {
  color: rgba(255, 255, 255, 0.65);
}
.entry .lead {
  color: #fff;
}
.entry p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 18px;
}
.entry .banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 860px) {
  .entry .banners {
    grid-template-columns: 1fr;
  }
}
.entry .banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 4px solid #8ec2f2;
  transition: 0.28s;
}
.entry .banner:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}
.entry .banner b {
  font-size: 17px;
  color: #fff;
  font-weight: 700;
}
.entry .banner em {
  font-family: var(--route);
  letter-spacing: 0.2em;
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-top: 4px;
}
.entry .banner span {
  font-family: var(--route);
  color: #8ec2f2;
  font-weight: 600;
  font-size: 22px;
}

/* ============================================================
   RECRUIT INTRO & IDEAL (求める人物像)
   ============================================================ */
.rc-intro .wrap {
  max-width: 900px;
}
.rc-intro .body {
  max-width: 800px;
}
.rc-intro .body p {
  margin: 0;
  color: #33414f;
}

.ideal {
  background: var(--sky);
}
.ideal .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-top: 8px;
}
@media (max-width: 860px) {
  .ideal .grid {
    grid-template-columns: 1fr;
  }
}
.ideal .grid div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
}
.ideal .grid svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  margin-top: 1px;
}
.ideal .grid span {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   REQUIREMENTS (募集要項)
   ============================================================ */
.req {
  background: var(--white);
}
.req .spec {
  border-top: 1px solid var(--line);
  margin: 0;
}
.req .spec > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 860px) {
  .req .spec > div {
    grid-template-columns: 1fr;
  }
}
.req dt {
  padding: 22px 24px;
  font-weight: 700;
  color: var(--navy);
  background: var(--sky);
  font-size: 14.5px;
}
@media (max-width: 860px) {
  .req dt {
    padding: 18px 20px 4px;
    background: none;
  }
}
.req dd {
  padding: 22px 24px;
  margin: 0;
  color: #33414f;
  font-size: 15px;
  line-height: 1.85;
}
@media (max-width: 860px) {
  .req dd {
    padding: 4px 20px 18px;
  }
}
.req dd .note {
  display: block;
  color: var(--gray);
  font-size: 13.5px;
  margin-top: 4px;
}
.req dd ul {
  margin: 0;
}
.req dd li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f058";
  margin-right: 5px;
  color: #1466b8;
}

/* ============================================================
   SELECTION FLOW (選考フロー)
   ============================================================ */
.rflow {
  background: var(--sky);
}

.steps4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 860px) {
  .steps4 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.steps4 article {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  padding: 26px 22px;
}
.steps4 article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-family: var(--route);
  color: var(--blue);
  font-weight: 600;
  font-size: 22px;
  padding: 0 2px;
}
@media (max-width: 860px) {
  .steps4 article:not(:last-child)::after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -26px;
    transform: translateX(-50%);
  }
}
.steps4 .st {
  font-family: var(--route);
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 13px;
  color: var(--blue);
  display: block;
  margin-bottom: 10px;
}
.steps4 h3 {
  margin: 0 0 10px;
  font-size: 16.5px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5;
}
.steps4 p {
  margin: 0;
  color: #3a4855;
  font-size: 14px;
  line-height: 1.8;
}

/* ============================================================
   RECRUIT CTA AREA
   ============================================================ */
.rcta {
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #0b2e5c 0%, #0f3a71 60%, #1466b8 130%);
}
.rcta .wrap {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
}
.rcta .eyebrow {
  justify-content: center;
  color: #8ec2f2;
}
.rcta .eyebrow::before {
  background: #8ec2f2;
}
.rcta .eyebrow i {
  background: #8ec2f2;
  box-shadow: 0 0 0 4px rgba(142, 194, 242, 0.2);
}
.rcta .eyebrow b {
  color: rgba(255, 255, 255, 0.65);
}
.rcta .lead {
  color: #fff;
}
.rcta p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 30px;
  max-width: 54ch;
}
.rcta .btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.rcta .btn.ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.rcta .btn.ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.rcta .tel {
  margin: 28px 0 0;
}
.rcta .tel small {
  font-family: var(--route);
  letter-spacing: 0.2em;
  color: #8ec2f2;
  font-size: 13px;
  font-weight: 600;
}
.rcta .tel a {
  font-family: var(--route);
  font-weight: 600;
  font-size: clamp(26px, 5vw, 38px);
  color: #fff;
  white-space: nowrap;
  margin-left: 10px;
}

/*新メールフォーム*/
.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", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  cursor: pointer;
  display: block;
  margin: 0 auto 5px;
  padding: 10px 0 10px;
  color: #fff;
  text-align: center;
  width: 250px;
  border-radius: 5px;
  background: #5c4233;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #5c4233;
}
#mailform button:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #5c4233;
}
#mailform button * {
  transition: 0.2s;
}

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

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

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

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

.page_next {
  float: right;
}

.page_prev {
  float: left;
}

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

@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.8rem;
  }
}
.mttl_check {
  margin-bottom: 10px;
  border-bottom: dotted 1px #aaa;
  font-size: 1.8rem;
  color: #333;
}
.mttl_check:before {
  margin-right: 6px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0a9";
  color: #5c4233;
}

.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 */