@charset "UTF-8";
/* ====================================
   Variables (Color & Font)
   ==================================== */
/* ====================================
   Base
   ==================================== */
body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  line-height: 1.8;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

/* ====================================
   Common Components
   ==================================== */
/* セクションタイトル */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title__en {
  font-family: "Jost", sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #333333;
}
.section-title__ja {
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #fa723e; /* オレンジ */
  font-weight: 500;
}

/* ====================================
   Header & Hamburger
   ==================================== */
.c-button {
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 1000;
}

.p-hamburger {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  margin: auto;
  border-radius: 50%;
  border: 1px solid #ffffff;
  box-shadow: 0 0 2rem transparent;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.p-hamburger:hover, .p-hamburger:focus {
  box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.5);
}
.p-hamburger:focus-visible {
  box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.8);
  outline: 2px solid #ffffff;
}

.p-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 18px;
  height: 2px;
  background-color: #ffffff;
  transition: inherit;
}
.p-hamburger__line::before, .p-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  transition: inherit;
}
.p-hamburger__line::before {
  top: -5px;
}
.p-hamburger__line::after {
  top: 5px;
}

/* ハンバーガー展開時 */
.p-hamburger[aria-expanded=true] .p-hamburger__line {
  background-color: transparent;
}
.p-hamburger[aria-expanded=true] .p-hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #ffffff;
}
.p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #ffffff;
}

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

/* SP Navigation */
.c-navigation {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.c-navigation.is-active {
  opacity: 1;
  z-index: 100;
  visibility: visible;
}
.c-navigation__list {
  list-style: none;
  display: block;
  padding: 80px;
  margin: 0;
  text-align: center; /* SPメニューは見やすいよう中央寄せ推奨 */
}
.c-navigation__item {
  margin-bottom: 1rem;
}
.c-navigation__link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: 18px;
}
.c-navigation__link:hover {
  color: #fa723e;
}

.c-navigation__btn {
  background: #fa723e;
  color: #ffffff;
  padding: 10px 34px;
  border-radius: 4px;
  font-weight: 500;
  display: inline-block;
  margin-top: 16px;
}
.c-navigation__btn:hover {
  background-color: #ffffff;
  color: #fa723e;
  opacity: 1;
}

/* PC表示のとき（768px～） */
@media screen and (min-width: 768px) {
  .p-hamburger,
  #global-nav {
    display: none;
  }
}
/* Header PC版 */
.header-pc {
  background: transparent;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  z-index: 10;
  transform: translateX(-50%);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

/* --- 背景が明るいページ用のヘッダー色調整 --- */
.header--colored {
  /* ロゴとナビの文字色を黒に */
}
.header--colored .logo a {
  color: #333333;
  text-shadow: none;
}
.header--colored .nav-pc li a {
  color: #333333;
  text-shadow: none;
}
.header--colored {
  /* SPハンバーガーメニューの通常時（三本線）は黒 */
}
.header--colored .p-hamburger {
  border-color: #333333;
}
.header--colored .p-hamburger .p-hamburger__line {
  background-color: #333333;
}
.header--colored .p-hamburger .p-hamburger__line::before, .header--colored .p-hamburger .p-hamburger__line::after {
  background-color: #333333;
}
.header--colored .p-hamburger[aria-expanded=true] {
  border-color: #ffffff;
}
.header--colored .p-hamburger[aria-expanded=true] .p-hamburger__line {
  background-color: transparent;
}
.header--colored .p-hamburger[aria-expanded=true] .p-hamburger__line::before, .header--colored .p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  background-color: #ffffff;
}

/* ロゴ */
.logo a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 34px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* ナビゲーション */
.nav-pc {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-pc ul {
  display: flex;
  gap: 40px;
}
.nav-pc li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.nav-pc li a:hover {
  opacity: 0.7;
}

/* お問い合わせボタン */
.contact-btn {
  background: #fa723e;
  color: #ffffff;
  padding: 10px 34px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s;
}
.contact-btn:hover {
  background-color: #ffffff;
  color: #fa723e;
}

/* SPでは非表示 */
@media screen and (max-width: 767px) {
  .header-pc {
    display: none;
  }
}
/* ====================================
   FV (First View)
   ==================================== */
.fv {
  position: relative;
  width: 100%;
  height: 780px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-color: #000;
}
.fv__inner {
  position: absolute;
  left: 12.8472222222%;
  bottom: 16.9230769231%;
  z-index: 5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.fv__inner .fv__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .fv__inner .fv__title {
    font-size: 35px;
  }
}
.fv__inner .fv__sub {
  margin-top: 10px;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .fv__inner .fv__sub {
    font-size: 20px;
  }
}

/* 背景スライダー */
.fv-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fvFade 20s infinite;
}

.slide01 {
  background-image: url("../img/fv01.png");
  animation-delay: 0s;
}

.slide02 {
  background-image: url("../img/fv02.png");
  animation-delay: 5s;
}

.slide03 {
  background-image: url("../img/fv03.png");
  animation-delay: 10s;
}

.slide04 {
  background-image: url("../img/fv04.png");
  animation-delay: 15s;
}

@keyframes fvFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* About */
.about {
  background-color: #ffffff;
  background: url("../img/bgimg-about.png") no-repeat center top/cover;
  padding: 120px 0;
  overflow-x: hidden;
}
.about__inner {
  width: min(1070px, 90%);
  margin: 0 auto;
}
.about {
  /* 共通ブロック設定 */
}
.about__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
  /* スマホ設定 */
}
@media screen and (max-width: 768px) {
  .about__block {
    flex-direction: column;
    gap: 50px;
  }
}
.about__text {
  width: 53%;
}
@media screen and (max-width: 768px) {
  .about__text {
    width: 100%;
  }
}
.about {
  /* --- ブロック1（左画像・右テキスト） --- */
}
.about__block--1 .about__img--left {
  position: relative;
  width: 447px;
  max-width: 45%;
  margin-left: -80px;
  margin-right: 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 1280px) {
  .about__block--1 .about__img--left {
    margin-left: 0;
    margin-bottom: 30px;
  }
}
.about__block--1 .about__img--left img {
  width: 100%;
  height: auto;
  aspect-ratio: 447/333;
  border-radius: 0 4px 4px 0;
}
@media screen and (max-width: 1280px) {
  .about__block--1 .about__img--left img {
    border-radius: 4px;
  }
}
.about__block--1 {
  /* サブ画像 */
}
.about__block--1 .about__img-sub {
  position: absolute;
  z-index: 2;
  width: 274px;
  right: -47px;
  bottom: -100px;
}
.about__block--1 .about__img-sub img {
  width: 100%;
  height: auto;
  aspect-ratio: 274/183;
  border-radius: 4px;
}
.about__block--1 .about__img-sub {
  /* 画面幅が狭くなった時の調整 */
}
@media screen and (max-width: 1280px) {
  .about__block--1 .about__img-sub {
    width: 60%;
    right: -20px;
    bottom: -30px;
  }
}
.about__block--1 {
  /* スマホ調整 */
}
@media screen and (max-width: 768px) {
  .about__block--1 .about__img--left {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .about__block--1 .about__img-sub {
    width: 50%;
    right: 0;
    bottom: -30px;
  }
}
.about {
  /* --- ブロック2（左テキスト・右画像） --- */
}
.about__block--2 {
  flex-direction: row-reverse;
}
.about__block--2 .about__img--right {
  position: relative;
  width: 45%;
  margin-right: -80px;
  margin-left: -50px;
}
@media screen and (max-width: 1280px) {
  .about__block--2 .about__img--right {
    margin-right: 0;
    margin-left: 30px;
    width: 45%;
  }
}
.about__block--2 .about__img--right img {
  width: 100%;
  border-radius: 4px 0 0 4px;
  box-shadow: -10px 10px 30px rgba(51, 51, 51, 0.1);
}
@media screen and (max-width: 1280px) {
  .about__block--2 .about__img--right img {
    border-radius: 4px;
  }
}
.about__block--2 {
  /* 青い装飾 */
}
.about__block--2__square {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 210px;
  height: 142px;
  background: #1b67c3;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .about__block--2__square {
    right: -20px;
    bottom: -20px;
    width: 180px;
    height: 120px;
  }
}
.about__block--2 {
  /* スマホ調整 */
}
@media screen and (max-width: 768px) {
  .about__block--2 {
    flex-direction: column;
  }
  .about__block--2 .about__img--right {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
.about {
  /* .about__square をネスト外でも認識させる用（念のため） */
}
.about .about__square {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 300px;
  height: 220px;
  background: #1b67c3;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .about .about__square {
    right: -20px;
    bottom: -20px;
    width: 180px;
    height: 120px;
  }
}
@media screen and (max-width: 768px) {
  .about .about__square {
    width: 220px;
    height: 180px;
    right: 0;
  }
}
.about {
  /* 見出し・説明文 */
}
.about__heading {
  font-size: 26px;
  line-height: 1.6;
  font-weight: 700;
  color: #1b67c3;
  margin-bottom: 16px;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 768px) {
  .about__heading {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.about__desc {
  font-size: 16px;
  line-height: 2;
  color: #333333;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .about__desc {
    font-size: 14px;
  }
}

/* ====================================
   Service
   ==================================== */
.service {
  background: #e6f1ff; /* 背景水色 */
  padding: 100px 0;
}

.service__inner {
  width: min(1070px, 90%);
  margin: 0 auto;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service__item {
  position: relative;
  text-align: center;
  background: #ffffff; /* カード背景白 */
  padding-bottom: 20px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
  /* ホバー時 */
}
.service__item:hover .service__overlay {
  opacity: 0;
}
.service__item:hover .service__img img {
  transform: scale(1.05);
}

.service__img {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}

.service__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 22, 43, 0.7); /* 青色の透過オーバーレイ */
  transition: opacity 0.3s ease;
}

.service__item-title {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  z-index: 2;
  pointer-events: none;
  width: 100%; /* 文字折り返し用 */
  padding: 0 10px;
}

.service__item-title {
  top: 105px; /* 210pxの半分 */
}

.service__item-desc {
  text-align: left;
  margin-top: 20px;
  font-size: 16px;
  color: #333333;
  padding: 0 15px;
  line-height: 1.6;
}

/* SP：1列 */
@media screen and (max-width: 767px) {
  .service__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service__img {
    height: auto;
    aspect-ratio: 16/9;
  }
  .service__img img {
    width: 100%;
    height: 100%;
  }
  .service__item-title {
    font-size: 20px;
    top: 40%;
  }
}
/* ====================================
   Company
   ==================================== */
.company {
  background: #e6f1ff; /* 背景水色 */
  padding: 100px 0;
}

.company__inner {
  width: min(1070px, 90%);
  margin: 0 auto;
  background: #ffffff;
  padding: 60px 80px;
  border-radius: 4px;
}

.company__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  color: #333333;
}
.company__table th,
.company__table td {
  padding: 18px 10px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}
.company__table th {
  width: 120px;
  font-weight: 700;
  color: #333333;
  text-align: left;
}

/* SP */
@media screen and (max-width: 767px) {
  .company__inner {
    padding: 40px 20px;
  }
  .company__table th,
  .company__table td {
    display: block;
    width: 100%;
  }
  .company__table th {
    margin-top: 20px;
  }
  .company__table td {
    padding-top: 5px;
  }
}
/* ====================================
   Contact
   ==================================== */
.contact {
  background: linear-gradient(#ffffff 0%, #ffffff 70%, #333333 70%, #333333 100%);
  padding: 100px 0 0;
}

.contact__inner {
  width: min(1070px, 90%);
  margin: 0 auto;
}

.contact__boxes {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.contact__box {
  background: #1b67c3; /* 青色 */
  color: #ffffff;
  padding: 64px 50px;
  width: 515px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact__box-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact__box-text {
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 30px;
}

.contact__btn {
  display: inline-block;
  background: #ffffff;
  color: #1b67c3; /* 青色文字 */
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 12px;
}
.contact__btn:hover {
  background-color: #333333;
  color: #ffffff;
}

.contact__tel {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
}

.contact__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 10px;
}
.contact__item img {
  width: 40px;
}

.contact__time {
  font-size: 15px;
  opacity: 0.9;
}

/* SP：縦並び */
@media screen and (max-width: 767px) {
  .contact {
    background: linear-gradient(#ffffff 0%, #ffffff 70%, #333333 70%, #333333 100%);
  }
  .contact__btn {
    padding: 8px 16px;
  }
  .contact__boxes {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .contact__box {
    padding: 48px 32px;
    width: 100%;
    max-width: 420px;
  }
  .contact__tel {
    font-size: 26px;
  }
  .contact__item img {
    width: 30px;
  }
}
/* ====================================
   Footer
   ==================================== */
.footer {
  background: #333333; /* 黒背景 */
  color: #ffffff;
  padding: 50px 0 30px;
  font-size: 16px;
}
.footer__inner {
  width: min(1070px, 90%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer__logo {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer__left p {
  line-height: 1.8;
  margin-bottom: 10px;
  opacity: 0.8;
}
.footer__nav {
  list-style: none;
  display: flex;
  font-size: 18px;
  gap: 40px;
  align-items: flex-start;
}
.footer__nav li {
  position: relative;
}
.footer__nav li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}
.footer__nav li a:hover {
  color: #fa723e;
}
.footer__nav li {
  /* 子メニュー */
}
.footer__nav li.has-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__nav li.has-child .child {
  list-style: none;
  padding-left: 0;
}
.footer__nav li.has-child .child li a {
  font-size: 16px;
  opacity: 0.7;
}
.footer__nav li.has-child .child li a:hover {
  opacity: 1;
  color: #fa723e;
}
.footer__line {
  width: min(1070px, 90%);
  height: 1px;
  background: #555;
  margin: 40px auto 20px;
}
.footer__copy {
  text-align: center;
  font-size: 14px;
  color: #888;
}

/* SP対応 */
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    gap: 30px;
  }
  .footer__nav {
    flex-direction: column;
    text-align: left;
    gap: 20px;
  }
  .footer__nav li.has-child {
    gap: 4px;
  }
}
/* ====================================
   Variables (Color & Font)
   ==================================== */
.sub-fv {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("../img/service-fv.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.sub-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.sub-fv__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.sub-fv__title {
  font-family: "Jost", sans-serif;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .sub-fv__title {
    font-size: 36px;
  }
}
.sub-fv__sub {
  font-size: 20px;
  color: #fa723e;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sub-fv__sub {
    font-size: 16px;
  }
}

/* サービスページ全体エリア（変更なし） */
.p-service {
  background-color: #e6f1ff;
  padding: 80px 0 120px;
}
.p-service__inner {
  width: min(1070px, 90%);
  margin: 0 auto;
}

/* ページ内リンクナビゲーション */
.p-service-nav {
  margin-bottom: 100px;
}
.p-service-nav__list {
  display: flex;
  justify-content: left; /* 折り返した2段目を中央寄せにする */
  flex-wrap: wrap; /* 折り返しを許可する */
  gap: 20px;
}
.p-service-nav__list li {
  width: calc((100% - 60px) / 4);
}
.p-service-nav__list li a {
  display: block;
  background-color: #1b67c3;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap; /* 文字の折り返し禁止 */
}
.p-service-nav__list li a:hover {
  background-color: #ffffff;
  color: #1b67c3;
}
@media screen and (max-width: 960px) {
  .p-service-nav {
    margin-bottom: 60px;
  }
  .p-service-nav__list {
    gap: 10px;
  }
  .p-service-nav__list li {
    width: calc((100% - 10px) / 2);
  }
  .p-service-nav__list li a {
    font-size: 13px;
    padding: 10px;
    white-space: normal; /* スマホでは文字折り返し許可 */
  }
}

/* 各サービスセクション */
.p-service-item {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #d8d7d7;
  /* スクロール位置調整 */
  scroll-margin-top: 120px;
}
.p-service-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.p-service-item__title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  border-left: 6px solid #1b67c3;
  padding-left: 15px;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-service-item__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.p-service-item__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 30px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-service-item__desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.p-service-item__imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.p-service-item__imgs img {
  width: 100%;
  height: auto;
  aspect-ratio: 340/230;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(51, 51, 51, 0.1);
}
@media screen and (max-width: 768px) {
  .p-service-item__imgs {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .p-service-item__imgs img {
    aspect-ratio: 16/9;
  }
}

/* ====================================
   Variables (Color & Font)
   ==================================== */
/* ====================================
   Privacy Policy Page
   ==================================== */
/* タイトルエリア（FVではなくテキストのみ） */
.p-privacy-title-area {
  width: 100%;
  padding: 180px 0 60px;
  background-color: #e6f1ff;
  text-align: center;
}
.p-privacy-title-area__inner {
  width: min(1070px, 90%);
  margin: 0 auto;
}
.p-privacy-title-area__main {
  font-family: "Jost", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333333;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-privacy-title-area__main {
    font-size: 28px;
  }
}
.p-privacy-title-area__sub {
  font-size: 16px;
  color: #fa723e;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-privacy-title-area__sub {
    font-size: 14px;
  }
}

.p-privacy-content {
  background-color: #e6f1ff;
  padding: 0 0 120px;
}
.p-privacy-content__inner {
  width: min(900px, 90%);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-privacy-content {
    padding-bottom: 100px;
  }
}

.p-privacy-paper {
  background-color: #ffffff;
  padding: 80px;
  border-radius: 4px;
  color: #333333;
  line-height: 1.8;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .p-privacy-paper {
    padding: 40px 20px;
    font-size: 14px;
  }
}
.p-privacy-paper__lead {
  margin-bottom: 50px;
}

.p-privacy-block {
  margin-bottom: 40px;
}
.p-privacy-block:last-child {
  margin-bottom: 0;
}
.p-privacy-block__title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
  color: #333333;
}
.p-privacy-block__text {
  margin-bottom: 15px;
  text-align: justify;
}
.p-privacy-block__text:last-child {
  margin-bottom: 0;
}
.p-privacy-block__list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}
.p-privacy-block__list li {
  margin-bottom: 5px;
}
.p-privacy-block__list--alpha {
  list-style-type: lower-alpha;
}

.p-privacy-address {
  font-style: normal;
  margin-top: 10px;
  line-height: 1.8;
}

/* ====================================
   Variables (Color & Font)
   ==================================== */
.contact-fv-bg {
  background-image: url("../img/contact-fv.jpg");
}

.p-contact-page {
  background-color: #ffffff;
  padding: 80px 0 120px;
}

.p-contact-page__inner {
  width: min(800px, 90%);
  margin: 0 auto;
}

.p-contact-page__lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 50px;
  font-weight: 500;
}

.p-contact-form-box {
  background-color: #e6f1ff;
  padding: 60px 80px;
  border-radius: 4px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .p-contact-form-box {
    padding: 40px 20px;
  }
}
/* フォーム本体 */
.p-form__item {
  margin-bottom: 30px;
}

.p-form__item:last-of-type {
  margin-bottom: 0;
}

.p-form__label {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
  color: #333333;
}

/* 必須タグ (赤色) */
.p-form__required {
  display: inline-block;
  background-color: #cc0000;
  color: #ffffff;
  font-size: 12px;
  padding: 2px 6px;
  margin-left: 10px;
  border-radius: 2px;
  vertical-align: middle;
  font-weight: 500;
}

/* 入力エリア */
.p-form__input {
  width: 100%;
}

.p-form__input input[type=text],
.p-form__input input[type=email],
.p-form__input input[type=tel],
.p-form__input textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 12px 15px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  font-family: inherit;
}

.p-form__input input[type=text]:focus,
.p-form__input input[type=email]:focus,
.p-form__input input[type=tel]:focus,
.p-form__input textarea:focus {
  border-color: #1b67c3;
  box-shadow: 0 0 5px rgba(27, 103, 195, 0.3);
}

.p-form__input input[type=text]::-moz-placeholder, .p-form__input input[type=email]::-moz-placeholder, .p-form__input input[type=tel]::-moz-placeholder, .p-form__input textarea::-moz-placeholder {
  color: #bbbbbb;
  opacity: 1;
}

.p-form__input input[type=text]::placeholder,
.p-form__input input[type=email]::placeholder,
.p-form__input input[type=tel]::placeholder,
.p-form__input textarea::placeholder {
  color: #bbbbbb;
  opacity: 1;
}

.p-form__input textarea {
  height: 200px;
  resize: vertical;
}

.p-form__input--checkboxes,
.p-form__input--radios {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.p-form__input--checkboxes label,
.p-form__input--radios label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  margin-right: 20px;
}

.p-form__input--checkboxes label:last-child,
.p-form__input--radios label:last-child {
  margin-right: 0;
}

.p-form__input--checkboxes input,
.p-form__input--radios input {
  transform: scale(1.2); /* チェックボックス・ラジオを少し大きく */
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .p-form__input--checkboxes,
  .p-form__input--radios {
    flex-direction: column;
    gap: 10px;
  }
}
/* プライバシーポリシー */
.p-form__privacy {
  margin: 40px 0;
  text-align: center;
  font-size: 16px;
}

.p-form__privacy label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.p-form__privacy input[type=checkbox] {
  transform: scale(1.2);
}

.p-form__privacy a {
  color: #1b67c3;
  text-decoration: underline;
  font-weight: 500;
  transition: 0.3s;
}

.p-form__privacy a:hover {
  color: #fa723e;
  text-decoration: none;
}

/* 送信ボタン */
.p-form__btn {
  text-align: center;
}

.p-form__btn button {
  background-color: #1b67c3;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 80px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.p-form__btn button:hover {
  background-color: #fa723e;
  opacity: 1;
}

/* 採用ブロック */
.p-contact-recruit {
  background-color: #e6f1ff;
  padding: 50px;
  border-radius: 4px;
  text-align: center;
}

.p-contact-recruit__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333333;
}

.p-contact-recruit__text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.p-contact-recruit__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-contact-recruit__tel img {
  width: 38px;
}

.p-contact-recruit__tel p {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
}

.p-contact-recruit__time {
  font-size: 13px;
  color: #666;
}

@media screen and (max-width: 768px) {
  .p-contact-recruit {
    padding: 40px 20px;
  }
  .p-contact-recruit__tel p {
    font-size: 26px;
  }
}
/* ====================================
   Confirm & Thanks Page (Additions)
   ==================================== */
/* --- 確認画面用スタイル --- */
/* 入力内容の確認テキスト */
.p-form__confirm-text {
  padding: 12px 0;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

/* ボタンエリア（2つ並べる用） */
.p-form__btn-group {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 30px; /* ボタン同士の間隔 */
  margin-top: 40px;
  width: 100%;
}

/* 共通ボタンスタイル */
.p-form__btn-group button {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 0;
  width: 200px;
  max-width: 45%;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1.2;
  text-align: center;
  box-sizing: border-box;
}

/* 戻るボタン（グレー） */
.p-form__btn-back {
  background-color: #e0e0e0;
  color: #333333;
}

.p-form__btn-back:hover {
  background-color: #ccc;
}

/* 送信ボタン（青→オレンジ） */
.p-form__btn-submit {
  background-color: #1b67c3;
  color: #ffffff;
}

.p-form__btn-submit:hover {
  background-color: #fa723e;
}

/* SP対応 */
@media screen and (max-width: 768px) {
  .p-form__btn-group {
    gap: 15px; /* 間隔を狭める */
  }
  .p-form__btn-group button {
    padding: 12px 0;
    font-size: 14px;
    width: 48%; /* スマホでは画面半分ずつの幅にする */
    max-width: none; /* リセット */
  }
}
/* --- 送信完了画面用スタイル --- */
.p-thanks-box {
  text-align: center;
  padding: 60px 0 100px;
}

.p-thanks-box__title {
  font-size: 28px;
  font-weight: 700;
  color: #1b67c3;
  margin-bottom: 30px;
  line-height: 1.4;
}

.p-thanks-box__text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 50px;
}

.p-thanks-box__btn a {
  display: inline-block;
  background-color: #fa723e;
  color: #ffffff;
  padding: 15px 60px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.p-thanks-box__btn a:hover {
  background-color: #1b67c3;
}

@media screen and (max-width: 768px) {
  .p-thanks-box {
    padding: 30px 0 60px;
  }
  .p-thanks-box__title {
    font-size: 22px;
  }
  .p-thanks-box__text {
    font-size: 14px;
    text-align: left;
    display: inline-block;
    text-align: center;
  }
  /* スマホで改行させる用クラス */
  .u-sp-only {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */