html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.loader-icon img {
  width: 100px;
  animation: float 2s ease-in-out infinite;
  margin-bottom: 20px; /* テキストとの余白 */
}
.loader-animation {
  font-size: 24px;
  color: #ff7a15;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

a {
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

.display-none__pc {
  display: none;
}
.display-inline__pc {
  display: inline;
}

@media screen and (max-width: 767px) {
  .display-none__pc {
    display: inline;
  }
  .display-inline__pc {
    display: none;
  }
}

/* ヘッダー基本 */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px; /* ロゴとテキストの間隔 */
}

.header__logo img {
  width: 60px;
  height: auto;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
}

.header__logo-en {
  font-size: 15px;
  color: #333;
}

.header__logo-jp {
  font-size: 25px;
  font-weight: bold;
  color: #111;
}

.header__nav {
  display: flex;
  gap: 0px;
  font-size: 18px;
}

.header__link,
.header__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  color: #111;
  padding: 5px 14px;
  border-radius: 3px;
}

.header__link-jp,
.header__button span {
  font-size: 12px;
  color: #ff7a15;
}

.header__link-highlight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #ff7a15, #ff4415);
  color: #fff;
}
.header__link-highlight span {
  color: #fff;
}
/* キラーンと光るアニメーション */
@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }
  5% {
    left: -100%;
    opacity: 0;
  }
  10% {
    left: -75%;
    opacity: 1;
  }
  30% {
    left: 120%;
    opacity: 1;
  }
  31% {
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}
.header__link-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 3s ease-in-out infinite;
  pointer-events: none;
}

/* ハンバーガーアイコン */
.drawer-icon {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
}

.drawer-icon__bar {
  width: 24px;
  height: 2px;
  background: #111;
  transition: all 0.3s ease;
}
/* is-openクラスがついたときの変形 */
.drawer-icon.is-open .drawer-icon__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.drawer-icon.is-open .drawer-icon__bar:nth-child(2) {
  opacity: 0;
}

.drawer-icon.is-open .drawer-icon__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ドロワーメニュー */
.drawer-content {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 998;
  padding: 48px 24px;
}

.drawer-content.open {
  right: 0;
  background: linear-gradient(to right, #ff4415, #ff7a15);
}

.drawer-content__menu {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 80px;
}

.drawer-content__link,
.drawer-content__button .button {
  position: relative;
  overflow: hidden;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  padding: 5px;
  border-bottom: 1px solid #fff;
}

.drawer-content__link-jp {
  padding-left: 12px;
  font-size: 14px;
}

/* キラーンと光るアニメーション */
@keyframes drawerShine {
  0% {
    left: -100%;
    opacity: 0;
  }
  5% {
    left: -100%;
    opacity: 0;
  }
  10% {
    left: -75%;
    opacity: 1;
  }
  30% {
    left: 120%;
    opacity: 1;
  }
  31% {
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}
.drawer-content__link-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 3s ease-in-out infinite;
  pointer-events: none;
}

/* メインビジュアル */
.mv {
  position: relative;
  height: calc(100vh - (60px + 16px * 2));
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.mv__text {
  position: absolute;
  bottom: 80px;
  left: 0%;
  text-align: left;
  z-index: 1;
  padding: 0px;
  width: 100%;
  max-width: 1200px;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 初期状態（非表示） */
.mv__lead1,
.mv__description {
  opacity: 0;
}
/* アニメーション適用 */
.mv__lead1.animate {
  animation: slideInLeft 2s ease-out forwards;
}

.mv__description.animate {
  animation: slideInLeft 2s ease-out forwards;
  animation-delay: 0.5s; /* 0.5秒遅らせて順番に表示 */
}

.mv__lead1 {
  display: inline-block;
  background: rgba(255, 122, 21, 0.7);
  color: #fff;
  font-style: italic;
  font-size: 42px;
  font-weight: bold;
  padding: 16px 80px 16px 7%;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
  line-height: 1.6;
}

.mv__description {
  display: inline-block;
  background: rgba(255, 122, 21, 0.7);
  color: #fff;
  font-style: italic;
  margin-top: 12px;
  padding: 16px 80px 16px 7%;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  font-size: 20px;
  font-weight: 500;
}

.mv__image video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* レスポンシブ */
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 16px;
  }
  .header__logo {
    gap: 5px;
  }
  .header__logo img {
    width: 40px;
  }
  .header__logo-jp {
    font-size: 16px;
  }

  .header__nav {
    display: none;
  }

  .drawer-icon {
    display: flex;
  }

  /* メインビジュアル */
  .mv {
    position: relative;
    height: calc(100vh - (40px + 16px * 2));
  }
  .mv__lead1 {
    font-size: 16px;
    padding: 12px 30px 12px 5%;
  }

  .mv__description {
    font-size: 13px;
    padding: 12px 30px 12px 5%;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  }

  .mv__text {
    bottom: 60px;
  }
}

/* 共通セクション余白 */
.section {
  padding: 120px 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 100px 0;
  }
}

/* セクション見出し（共通パーツ） */
.section-title {
  text-align: left;
  margin-bottom: 48px;
}

.section-title__en {
  font-size: 36px;
  font-weight: bold;
  font-style: italic;
  color: #111;
  position: relative;
  display: inline-block;
  padding-left: 18px;
}

.section-title__en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 6px;
  height: 1.2em;
  background: #ff7a15;
  border-radius: 6px;
  transform: rotate(20deg);
}

.section-title__en--no-bar::before {
  display: none;
}

.section-title__jp {
  display: block;
  font-size: 18px;
  color: #ff7a15;
  font-style: italic;
  margin-top: 4px;
  margin-left: 15px;
  font-weight: 500;
}

/* ABOUTセクション */
.about__inner {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}
/* コンテンツ2カラム */
.about__content {
  display: flex;
  gap: 90px;
  align-items: center;
  flex-wrap: wrap;
}

.about__img img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.about__text {
  flex: 1;
  min-width: 300px;
}

.about__catch {
  font-size: 50px;
  font-weight: 800;
  font-style: italic;
  color: #ff7a15;
  margin-bottom: 24px;
  line-height: 1.6;
}

.about__lead {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 38px;
  line-height: 1.8;
}

.about__desc {
  font-size: 16px;
  line-height: 2.4;
  color: #444;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .about__content {
    flex-direction: column;
    gap: 32px;
  }

  .about__catch {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .about__lead {
    font-size: 18px;
  }

  .about__desc {
    font-size: 16px;
    line-height: 2.1;
  }
}

/* NEWSセクション */
.news {
  background: #f8eee3;
}

.news__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.news__content {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.news__box {
  min-width: 600px;
}

/* お知らせリスト */
.news__list {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 700px;
  min-height: 300px;
}

.news__item {
  display: block;
  padding: 26px 0 16px;
  border-bottom: 1px solid #ff7a15;
  text-decoration: none;
  color: #111;
}

.news__item:last-child {
  border-bottom: none;
}

.news__date {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 4px;
}

.news__title {
  font-size: 16px;
  line-height: 1.6;
  white-space: nowrap; /* 1行表示に制限 */
  overflow: hidden; /* はみ出た部分を隠す */
  text-overflow: ellipsis; /* 「…」を表示 */
}

.news__link {
  text-align: right;
  margin-top: 32px;
}

.news__link a {
  font-weight: bold;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.news__link a::after {
  content: "";
  display: inline-block;
  width: 30px; /* 必要に応じて調整 */
  height: 30px;
  background-image: url("../img/arrow-button.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px; /* テキストとの間隔 */
}

/* SNS（Instagram） */
.news__sns {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-start;
  max-width: 400px;
}

.news__sns-label {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #ff7a15, #ff4415);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.3em;
  padding: 12px 30px;
  border-radius: 999px;
}
/* 擬似要素でキラーンを走らせる */
.news__sns-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 3s ease-in-out infinite;
  pointer-events: none;
}

.news__sns-list {
  width: 100%;
  display: flex;
  gap: 12px;
}

.news__sns-list img {
  max-width: 120px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .news__content {
    flex-direction: column;
  }

  .news__box {
    min-width: 0;
    width: 100%;
  }

  .news__sns-list {
    justify-content: center;
  }

  .news__list {
    max-width: 100%;
    padding: 32px;
    min-height: 0;
  }
  .news__sns {
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
  }
  .news__sns-list img {
    max-width: 90px;
  }
}

/* DRONEセクション */
.drone__inner {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

.drone__card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8ffd1;
  border-radius: 80px;
  padding: 32px 100px;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.drone__icon {
  margin: 0 auto;
}

/* ドローンアイコンを上下にふわふわ動かす */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.drone__icon img {
  width: 140px;
  height: auto;
  padding-top: 20px;
  animation: float 3s ease-in-out infinite;
}

.drone__info {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
  gap: 16px;
  flex-shrink: 0;
  min-width: 220px;
}

.drone__lead {
  font-size: 24px;
  font-weight: bold;
  color: #111;
}

.drone__button {
  display: inline-block;
  background: linear-gradient(to right, #ff7a15, #ff4415);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.drone__button:hover {
  opacity: 0.7;
}

.drone__desc {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  /* flex: 1; */
}

/* SP表示対応 */
@media screen and (max-width: 767px) {
  .drone__card {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
    border-radius: 24px;
  }

  .drone__info {
    gap: 30px;
  }

  .drone__desc {
    font-size: 16px;
    margin-top: 16px;
    margin: 0 auto;
    text-align: center;
  }

  .drone__button {
    font-size: 13px;
    padding: 10px 20px;
  }
}

/* WORKSセクション */
.works {
  background: #f8eee3;
}
.works__inner {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

.works__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* 各業務ブロック */
.works__item {
  display: flex;
  gap: 40px;
  padding: 32px;
  border-radius: 24px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 背景色切り替え */
.works__item--orange {
  background: linear-gradient(to right, #ff9a3c, #ff6a2c);
  color: #fff;
}

.works__item--white {
  background: #fff;
  color: #111;
}

.works__img img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* テキストブロック */
.works__text {
  flex: 1;
  /* min-width: 280px; */
}

.works__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 16px;
}

.works__title--orange {
  color: #ff7a15;
}

.works__lead {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.works__list-items {
  font-size: 16px;
  line-height: 1.8;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.works__list-items li {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.8;
}
.works__list-items li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7em;
  line-height: 1;
}

.works__list-items--orange li::before {
  color: #ff7a15;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .works__item {
    flex-direction: column;
    padding: 24px;
  }

  .works__img img {
    max-width: 100%;
  }

  .works__title {
    font-size: 28px;
  }

  .works__lead {
    font-size: 15px;
  }

  .works__list-items {
    font-size: 14px;
    gap: 4px 16px;
  }
}

/* COMPANYセクション */
.company {
  background: #fff;
}

.company__inner {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

.company__content {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.company__info {
  flex: 1;
  min-width: 400px;
}

.company__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.company__item {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.company__item dt {
  background: #ff9a3c;
  background: linear-gradient(to right, #ff9a3c, #ff6a2c);
  color: #fff;
  font-weight: bold;
  padding: 12px 20px;
  min-width: 105px;
  text-align: center;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company__item dd {
  margin: 0;
  padding: 12px 20px;
  background: #fff;
  font-size: 15px;
  line-height: 1.8;
  flex: 1;
}

.company__map {
  min-width: 400px;
  flex: 1;
  display: flex;
  align-items: stretch;
}

.company__map-frame {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  height: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.company__map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .company__content {
    flex-direction: column;
  }

  .company__info {
    width: 100%;
    min-width: 0;
  }

  .company__map {
    width: 100%;
    min-width: 0;
  }

  .company__map-frame {
    max-width: 100%;
    height: 320px;
  }
}

/* HISTORYセクション */
.history {
  background: #f8eee3;
}

.history__inner {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

.history__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.history__item {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.history__date {
  background: linear-gradient(to right, #ff9a3c, #ff6a2c);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  min-width: 140px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.history__text {
  padding: 12px 20px;
  font-size: 16px;
  line-height: 1.8;
  flex: 1;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .history__item {
    flex-direction: column;
  }

  .history__date {
    width: 100%;
    justify-content: flex-start;
    padding-left: 20px;
  }

  .history__text {
    font-size: 15px;
    padding: 12px 16px;
  }
}

/* LICENSEセクション */
.license {
  background: #fff;
}

.license__inner {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

.license__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.license__item {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* 部門ラベル部分 */
.license__label {
  background: linear-gradient(to right, #ff9a3c, #ff6a2c);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  min-width: 140px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 資格リスト */
.license__text {
  display: flex;
  flex-direction: column;
  gap: 8px;

  padding: 12px 20px;
  font-size: 16px;
  line-height: 1.8;
  flex: 1;
}

.license__text li {
  position: relative;
  padding-left: 1.2em;
}

.license__text li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7em;
  color: #ff7a15;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .license__item {
    flex-direction: column;
  }

  .license__label {
    width: 100%;
    justify-content: flex-start;
    padding-left: 20px;
  }

  .license__text {
    font-size: 15px;
    padding: 12px 16px;
  }
}

/* フッター */
.footer {
  background: linear-gradient(to right, #ff9a3c, #ff6a2c);
  color: #fff;
  padding: 80px 24px 10px 24px;
}

.footer__inner {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

.footer__heading .section-title__en,
.footer__heading .section-title__jp {
  color: #fff;
}

.footer__contact {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
  text-align: center;
}

.footer__contact p {
  background: #fff;
  color: #ff7a15;
  font-weight: bold;
  border-radius: 999px;
  padding: 16px 32px;
  font-size: 20px;
  letter-spacing: 0.1em;
  min-width: 290px;
}

.footer__contact02 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.footer__info {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  align-items: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

.footer__address p {
  margin: 4px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
}

.footer__sns img {
  width: 65px;
  height: auto;
}
.footer__sns-link:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 30px;
  flex-wrap: wrap;
}

.footer__logo img {
  width: 65px;
  height: auto;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  font-weight: bold;
}

.footer__logo-en {
  font-size: 16px;
}

.footer__logo-jp {
  font-size: 20px;
  font-weight: bold;
}

.at-img {
  width: 20px;
  margin-right: 2px;
}

/* SP対応 */
@media screen and (max-width: 767px) {
  .footer__contact {
    flex-direction: column;
  }

  .footer__contact p {
    font-size: 16px;
    padding: 12px 24px;
    min-width: 240px;
  }

  .footer__address p {
    margin: 12px 0;
    font-size: 16px;
  }

  .footer__contact02 {
    flex-direction: column;
  }
  .footer__info {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .footer__sns img {
    width: 90px;
  }

  .footer__logo {
    flex-direction: column;
    align-items: center;
  }
  .footer__logo img {
    width: 120px;
  }
  .footer__logo-text {
    align-items: flex-start;
  }

  .footer__logo-en {
    font-size: 14px;
  }

  .footer__logo-jp {
    font-size: 17px;
    font-weight: bold;
  }
  .at-img {
    width: 16px;
  }
}

.footer__copyright {
  text-align: center;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 14px;
  }
}

/* NEWSページ（記事詳細ページ）スタイル */
.news__list {
  background: #fff;
  padding: 42px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.news__item {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid #ff7a15;
  text-decoration: none;
  color: #111;
}

.news__item:last-child {
  border-bottom: none;
}

.news__date {
  font-weight: bold;
  font-size: 16px;
}

.news__title {
  font-size: 18px;
  line-height: 1.6;
}

.news__pager {
  margin-top: 24px;
  text-align: center;
}

.news__pager-link {
  display: inline-block;
  margin: 0 4px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #ff7a15;
  border-radius: 4px;
  color: #ff7a15;
  text-decoration: none;
  font-weight: bold;
}

/* NEWS詳細ページ */
.news-detail__inner {
  max-width: 800px;
  padding: 0 24px;
  margin: 0 auto;
}

.news-detail__date {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
}

.news-detail__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}

.news-detail__body {
  font-size: 16px;
  line-height: 1.8;
}

/* 投稿本文（.news-detail__body）用のスタイル */
.news-detail__body {
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}

/* 段落 */
.news-detail__body p {
  margin-bottom: 1.5em;
}

/* リンク */
.news-detail__body a {
  color: #ff7a15;
  text-decoration: underline;
}
.news-detail__body a:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* 見出し（h2〜h4） */
.news-detail__body h2,
.news-detail__body h3,
.news-detail__body h4 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: bold;
}
.news-detail__body h2 {
  font-size: 24px;
  border-left: 5px solid #ff7a15;
  padding-left: 12px;
}
.news-detail__body h3 {
  font-size: 20px;
  border-left: 4px solid #ff7a15;
  padding-left: 10px;
}
.news-detail__body h4 {
  font-size: 18px;
  border-left: 3px solid #ff7a15;
  padding-left: 8px;
}

/* リスト（ul, ol） */
.news-detail__body ul,
.news-detail__body ol {
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}
.news-detail__body ul li {
  list-style: disc;
  margin-left: 1em;
}
.news-detail__body ol li {
  list-style: decimal;
  margin-left: 1em;
}

/* 画像 */
.news-detail__body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em auto;
}

/* 引用 */
.news-detail__body blockquote {
  margin: 1.5em 0;
  padding: 1em;
  background: #f8f8f8;
  border-left: 5px solid #ff7a15;
  font-style: italic;
}

/* テーブル */
.news-detail__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.news-detail__body th,
.news-detail__body td {
  border: 1px solid #ccc;
  padding: 0.75em;
  text-align: left;
}
.news-detail__body th {
  background: #f2f2f2;
}

/* ページャー（基本） */
.news__pager {
  margin-top: 40px;
  text-align: center;
}
/* WordPressのpaginate_links()でtype => 'list'を指定した場合 */
.news__pager .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
}

.news__pager ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px; /* ページリンクの間隔 */
  padding: 0;
  list-style: none; /* デフォルトのリストマークを消す */
}

.page-numbers li {
  border-radius: 3px;
}
.page-numbers li span {
  border-radius: 3px;
}
.page-numbers li:hover {
  background: #ff7a15;
  color: #fff;
  border-color: #ff7a15;
}

/* 現在のページ番号 */
.news__pager .page-numbers.current {
  background: #ff7a15;
  color: #fff;
  font-weight: bold;
  border-color: #ff7a15;
  pointer-events: none;
}

/* 矢印（Prev/Next）も同様にデザインを統一 */
.news__pager .page-numbers.prev,
.news__pager .page-numbers.next {
  /* background: #fff; */
  color: #333;
  border-color: #ccc;
}

.news__pager .page-numbers.prev:hover,
.news__pager .page-numbers.next:hover {
  background: #ff7a15;
  color: #fff;
  border-color: #ff7a15;
}
