html{
	margin:0;
	padding:0;
}
body{
    margin:0;
	padding:0;
	font-family:
    "Noto Sans JP",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "YuGothic",
    sans-serif;

  -webkit-text-size-adjust: 100%;
}
/* =========================
Header
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 9999;

  padding: 70px 85px 0;

  box-sizing: border-box;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
Logo
========================= */

.header-logo {
  margin: 0;
}

.header-logo a {
  width: 136px;
  height: 48px;
  background: #fff;
  color: #111;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;

  transition: 0.3s;
    font-family:
    "Noto Sans JP",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Meiryo",
    sans-serif;

}

/* =========================
PC Navigation
========================= */

.header-nav {
  margin-left: auto;
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 42px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav__list a {
  color: #fff;
  text-decoration: none;
  text-shadow:
    0 0 8px rgba(0,0,0,0.35),
    0 0 2px rgba(0,0,0,0.5);

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;

  transition: 0.3s;
}

.header-nav__list a:hover {
  opacity: 0.7;
}

/* =========================
Hamburger
========================= */

.hamburger {
  display: none;
filter: drop-shadow(0 0 2px rgba(0,0,0,0.4));
  width: 40px;
  height: 40px;

  position: relative;

  background: transparent;
  border: none;
  cursor: pointer;

  z-index: 10001;
}

.hamburger span {
  position: absolute;
  left: 50%;

  width: 35px;
  height: 2px;

  background: #fff;

  transform: translateX(-50%);
  transition: 0.3s;
}

.hamburger span:nth-child(1) {
  top: 11px;
	
}

.hamburger span:nth-child(2) {
  top: 19px;
}

.hamburger span:nth-child(3) {
  top: 27px;
}

/* active */

.hamburger.active span:nth-child(1) {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}

/* =========================
SP Menu
========================= */

.sp-menu {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.92);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s;

  z-index: 9990;
}

.sp-menu.active {
  opacity: 1;
  visibility: visible;
}

.sp-menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;

  text-align: center;
}

.sp-menu-nav li + li {
  margin-top: 28px;
}

.sp-menu-nav a {
  color: #fff;
  text-decoration: none;

  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
/* =========================================
FV
========================================= */

.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* =========================
背景
========================= */

.fv-bg {
  position: absolute;
  inset: 0;
}

.fv-bg__item {
  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 1.8s ease,
    visibility 1.8s ease;
}

.fv-bg__item.active {
  opacity: 1;
  visibility: visible;
}

.fv-bg__item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1);

  will-change: transform;
}

/* active時にズーム */
.fv-bg.start .fv-bg__item img {
  transition:
    transform 7s ease,
    opacity 1.8s ease;
}

.fv-bg__item.active img {
  transform: scale(1.12);
}
/* =========================
Overlay
========================= */

.fv-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.25);

  z-index: 1;
}

/* =========================
Content
========================= */

.fv-content {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: flex-end;

padding: 0 3vw 1.5vw;

  box-sizing: border-box;
}

.fv-title {
  margin: 0;

  color: #fff;

  font-family: 'Oswald', sans-serif;

font-size: clamp(125px, 16vw, 500px);

  font-weight: 700;

  line-height: 1;

  letter-spacing: -0.04em;

  text-transform: uppercase;

  transform: scaleX(0.96);

  transform-origin: left bottom;

  display: inline-flex;

  flex-wrap: wrap;

  overflow: visible;

  width: 100%;

  /* Safari対策 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  will-change: transform;
}
/* 1文字ずつ */
.fv-title span {
  display: inline-block;

  opacity: 0;

  transform: translateY(120%);

  animation:
    wtapsTextUp 0.7s cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}

/* スペース */
.fv-title .space {
  width: 0.28em;
}
.fv-title .line-break {
  flex-basis: 100%;
  width: 100%;
  height: 0;
  display: block;

  opacity: 1;
  transform: none;
  animation: none;
}
/* 遅延 */
.fv-title span:nth-child(1)  { animation-delay: 0.03s; }
.fv-title span:nth-child(2)  { animation-delay: 0.06s; }
.fv-title span:nth-child(3)  { animation-delay: 0.09s; }
.fv-title span:nth-child(4)  { animation-delay: 0.12s; }
.fv-title span:nth-child(5)  { animation-delay: 0.15s; }
.fv-title span:nth-child(6)  { animation-delay: 0.18s; }
.fv-title span:nth-child(7)  { animation-delay: 0.21s; }
.fv-title span:nth-child(8)  { animation-delay: 0.24s; }
.fv-title span:nth-child(9)  { animation-delay: 0.27s; }
.fv-title span:nth-child(10) { animation-delay: 0.30s; }
.fv-title span:nth-child(11) { animation-delay: 0.33s; }
.fv-title span:nth-child(12) { animation-delay: 0.36s; }
.fv-title span:nth-child(13) { animation-delay: 0.39s; }
.fv-title span:nth-child(14) { animation-delay: 0.42s; }

.fv-title span:nth-child(16) { animation-delay: 0.48s; }
.fv-title span:nth-child(17) { animation-delay: 0.51s; }
.fv-title span:nth-child(18) { animation-delay: 0.54s; }
.fv-title span:nth-child(19) { animation-delay: 0.57s; }
.fv-title span:nth-child(20) { animation-delay: 0.60s; }
.fv-title span:nth-child(21) { animation-delay: 0.63s; }
.fv-title span:nth-child(22) { animation-delay: 0.66s; }
.fv-title span:nth-child(23) { animation-delay: 0.69s; }
.fv-title span:nth-child(24) { animation-delay: 0.72s; }
.fv-title span:nth-child(25) { animation-delay: 0.75s; }
.fv-title span:nth-child(26) { animation-delay: 0.78s; }
.fv-title span:nth-child(27) { animation-delay: 0.81s; }

/* アニメーション */
@keyframes wtapsTextUp {
  0% {
    opacity: 0;
    transform: translateY(120%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
/* =========================================
NEWS
========================================= */

.top-news {
  padding: 110px 0 90px;
}

.top-news__inner {
  width: min(1000px, calc(100% - 80px));
  margin: 0 auto;
}

/* =========================
タイトル
========================= */

.top-news__head {
  margin-bottom: 65px;
}

.top-news__title {
  display: flex;
  align-items: center;
  gap: 20px;

  margin: 0;
}

.top-news__title .en {
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.top-news__title .line {
  width: 90px;
  height: 1px;

  background: #222;

  margin-top: 8px;
}

.top-news__sub {
  margin:
    14px 0 0;

  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* =========================
一覧
========================= */

.top-news__list {
  border-top: 1px solid #222;
}

.top-news__item {
  display: flex;
  align-items: center;

  gap: 50px;

  padding: 32px 0;

  border-bottom: 1px solid #222;

  text-decoration: none;
  color: #111;

  transition: 0.3s;
}

.top-news__item:hover {
  opacity: 0.65;
}

.top-news__date {
  min-width: 100px;

  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.top-news__text {
  margin: 0;

  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

/* =========================
ボタン
========================= */

.top-news__btn-wrap {
  text-align: center;
  margin-top: 55px;
}

.top-news__btn {
  width: 210px;
  height: 58px;

  border: 1px solid #222;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #111;
  text-decoration: none;

  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;

  transition: 0.3s;
}

.top-news__btn:hover {
  background: #111;
  color: #fff;
}
/* =========================================
LINKS
========================================= */

.top-links {
  padding: 180px 0 220px;

  background: #fff;
}

.top-links__inner {
  width: min(1500px, calc(100% - 120px));

  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  gap: 100px;
}

/* =========================
アイテム
========================= */

.top-links__item {
  flex: 1;

  text-decoration: none;

  color: #000;

  transition: opacity 0.4s ease;
}

.top-links__item:hover {
  opacity: 0.6;
}

/* =========================
番号
========================= */

.top-links__num-wrap {
  display: flex;
  align-items: center;
  gap: 24px;

  margin-bottom: 70px;
}

.top-links__num {
  font-size: 24px;
  font-weight: 700;

  line-height: 1;
}

.top-links__line {
  width: 46px;
  height: 1px;

  background: #000;
}

/* =========================
本文
========================= */

.top-links__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* =========================
英語
========================= */

.top-links__en {
  margin: 0;

  font-family: 'Oswald', sans-serif;

  font-size: clamp(56px, 4.2vw, 92px);
  font-weight: 700;

  line-height: 0.9;

  letter-spacing: -0.03em;

  color: #000;

  -webkit-font-smoothing: antialiased;
}

/* =========================
日本語
========================= */

.top-links__title {
  margin: 28px 0 0;

  color: #000;

  font-size: 24px;
  font-weight: 700;

  letter-spacing: 0.08em;

  line-height: 1.5;
}

/* =========================
矢印
========================= */

.top-links__arrow {
  display: inline-block;

  margin-top: 80px;

  font-size: 60px;
  font-weight: 300;

  line-height: 1;

  transition: transform 0.4s ease;
}

.top-links__item:hover .top-links__arrow {
  transform: translateX(10px);
}
/* =========================================
CONTACT CTA
========================================= */

.contact-cta {
  position: relative;
  width: 100%;
  min-height: 420px;

  background-image: url("../images/contact-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* 黒フィルタ */
.contact-cta__overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.36);

  z-index: 1;
}

/* 中身 */
.contact-cta__inner {
  position: relative;
  z-index: 2;

  width: min(744px, calc(100% - 80px));
  margin: 0 auto;
}

/* 白ボックス */
.contact-cta__box {
  background: #fff;

  padding: 34px 40px 36px;

  text-align: center;
  box-sizing: border-box;
}

/* タイトル */
.contact-cta__title {
  margin: 0;

  color: #1d1d1f;

  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* サブ */
.contact-cta__sub {
  margin: 18px 0 0;

  color: #111;

  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

/* 説明文 */
.contact-cta__text {
  margin: 26px 0 0;

  color: #111;

  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* ボタン */
.contact-cta__btn-wrap {
  margin-top: 34px;
}

.contact-cta__btn {
  width: 136px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #333;
  color: #fff;

  text-decoration: none;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;

  border-radius: 4px;

  transition: 0.3s;
}

.contact-cta__btn:hover {
   background: #fff;
  color: #333;
}
/* =========================================
Footer
========================================= */

.site-footer {
  background: #333;
  color: #fff;

  padding: 56px 0 18px;
}

.footer-inner {
  width: min(1080px, calc(100% - 80px));

  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* =========================================
左側
========================================= */

.footer-left {
  width: 260px;
}

.footer-logo a {
  width: 210px;
  height: 60px;

  background: #f2f2f2;
  color: #1a1a1a;

  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-text {
  margin: 14px 0 0;

  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.footer-contact-btn {
  margin-top: 22px;

  width: 130px;
  height: 42px;

  background: #fff;
  color: #222;

  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 4px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;

  transition: 0.3s;
}

.footer-contact-btn:hover {
  opacity: 0.75;
}

/* =========================================
右ナビ
========================================= */

.footer-nav {
  display: flex;
  gap: 52px;
}

.footer-nav__head {
  margin: 0 0 16px;

  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.footer-nav__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav__col li + li {
  margin-top: 12px;
}

.footer-nav__col a {
  color: #fff;
  text-decoration: none;

  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;

  transition: 0.3s;
}

.footer-nav__col a:hover {
  opacity: 0.7;
}

/* Company / News */

.footer-nav__col:nth-child(2) a,
.footer-nav__col:nth-child(3) a {
  font-size: 15px;
  font-weight: 700;
}

/* =========================================
コピーライト
========================================= */

.footer-copy {
  margin: 48px 0 0;

  text-align: center;

  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
/* =========================================
News Archive
========================================= */

.news-archive {
  padding: 140px 0 120px;

  background: #f5f5f5;

  min-height: 100vh;
}

.news-archive__inner {
  width: min(920px, calc(100% - 80px));

  margin: 0 auto;
}

/* =========================================
タイトル
========================================= */

.news-archive__head {
  margin-bottom: 70px;
}

.news-archive__title {
  display: flex;
  align-items: center;
  gap: 18px;

  margin: 0;
}

.news-archive__title .en {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.news-archive__title .line {
  width: 90px;
  height: 1px;

  background: #222;

  margin-top: 8px;
}

.news-archive__sub {
  margin: 14px 0 0;

  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* =========================================
一覧
========================================= */

.news-archive__list {
  border-top: 1px solid #222;
}

.news-archive__item {
  display: flex;
  align-items: center;

  gap: 55px;

  padding: 34px 0;

  border-bottom: 1px solid #222;

  color: #111;
  text-decoration: none;

  transition: 0.3s;
}

.news-archive__item:hover {
  opacity: 0.7;
}

.news-archive__date {
  min-width: 95px;

  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.news-archive__text {
  margin: 0;

  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
/* =========================================
Single News
========================================= */

.single-news {
  padding: 140px 0 120px;

  background: #f5f5f5;

  min-height: 100vh;
}

.single-news__inner {
  width: min(920px, calc(100% - 80px));

  margin: 0 auto;
}

/* =========================================
タイトル
========================================= */

.single-news__head {
  margin-bottom: 55px;
}

.single-news__title {
  display: flex;
  align-items: center;
  gap: 18px;

  margin: 0;
}

.single-news__title .en {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.single-news__title .line {
  width: 90px;
  height: 1px;

  background: #222;

  margin-top: 8px;
}

.single-news__sub {
  margin: 14px 0 0;

  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* =========================================
記事情報
========================================= */

.single-news__meta {
  padding-bottom: 34px;

  border-bottom: 1px solid #222;
}

.single-news__date {
  display: block;

  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.single-news__post-title {
  margin: 18px 0 0;

  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

/* =========================================
画像
========================================= */

.single-news__thumbnail {
  margin-top: 34px;
}

.single-news__thumbnail img {
  width: 470px;
  max-width: 100%;

  height: auto;

  display: block;
}

/* =========================================
本文
========================================= */

.single-news__content {
  margin-top: 48px;

  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.03em;
}

.single-news__content p {
  margin: 0 0 2em;
}

/* =========================================
ボタン
========================================= */

.single-news__btn-wrap {
  margin-top: 70px;
}

.single-news__btn {
  width: 150px;
  height: 48px;

  border: 1px solid #222;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #111;
  text-decoration: none;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;

  transition: 0.3s;
}

.single-news__btn:hover {
  background: #111;
  color: #fff;
}
/* =========================================
Contact Page
========================================= */
.required{
	color:red;
}
.contact-page {
  padding: 120px 0 110px;
}

.contact-page__inner {
  width: min(720px, calc(100% - 80px));
  margin: 0 auto;
}

/* title */

.contact-page__head {
  margin-bottom: 70px;
}

.contact-page__title {
  display: flex;
  align-items: center;
  gap: 14px;

  margin: 0;
}

.contact-page__title span {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.contact-page__title i {
  width: 94px;
  height: 1px;
  background: #222;
  display: block;
  margin-top: 7px;
}

.contact-page__sub {
  margin: 8px 0 0;

  font-size: 16px;
  font-weight: 600;
}

.contact-page__lead {
  margin-top: 28px;

  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.contact-page__lead p {
  margin: 0;
}

.required-text {
  color: #e60000;
}

/* =========================================
Form
========================================= */

.contact-form {
  width: 700px;
  margin: 0 auto;
}

.form-row {
  border-top: 1px solid #222;
  padding: 34px 0 38px;
}

.form-row:last-of-type {
  border-bottom: 1px solid #222;
}

.form-label {
  display: block;

  margin: 0 0 0px;


  font-size: 14px;
  font-weight: 700;
}

.form-row--checkbox .wpcf7-checkbox {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

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

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  font-weight: 600;
}

.wpcf7-list-item input[type="checkbox"] {
  width: 13px;
  height: 13px;
  margin: 0;
  appearance: none;
  border: 1px solid #222;
  background: #fff;
}

.wpcf7-list-item input[type="checkbox"]:checked {
  background: #222;
}

.form-input {
  width: 160px;
  height: 38px;

  border: 1px solid #222;
  background: #fff;

  box-sizing: border-box;
}

.form-textarea {
  width: 285px;
  height: 70px;

  border: 1px solid #222;
  background: #fff;

  resize: vertical;
  box-sizing: border-box;
}

.privacy-box {
  width: 500px;
  height: 75px;
  border: 1px solid #222;
  background: #fff;
  overflow-y: auto;
  padding: 6px;
  font-size: 12px;
  line-height: 1.5;
  box-sizing: border-box;
}

.form-label--privacy {
  margin-bottom: 10px;
}

.privacy-check {
  margin-top: 10px;
}

.form-submit {
  margin-top: 36px;
}

.submit-btn,
.wpcf7-submit {
  width: 150px;
  height: 40px;

  border: 1px solid #222;
  background: #fff;
  color: #111;

  font-size: 11px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.submit-btn:hover,
.wpcf7-submit:hover {
  background: #111;
  color: #fff;
}

/* CF7余白リセット */

.wpcf7 p {
  margin: 0;
  margin-bottom:10px;
  margin-top:10px;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  margin: 24px 0 0 !important;
  font-size: 13px;
}
/* =========================================
Company Page
========================================= */

.company-page {
  padding: 100px 0 90px;
  margin-top:60px;
}

.company-page__inner {
  width: min(980px, calc(100% - 80px));
  margin: 0 auto;
}

/* =========================================
タイトル
========================================= */

.company-page__head {
  margin-bottom: 48px;
}

.company-page__title {
  display: flex;
  align-items: center;
  gap: 14px;

  margin: 0;
}

.company-page__title span {
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.company-page__title i {
  width: 100px;
  height: 1px;

  background: #222;

  display: block;

  margin-top: 6px;
}

.company-page__sub {
  margin: 10px 0 0;

  font-size: 14px;
  font-weight: 600;
}

/* =========================================
テーブル
========================================= */

.company-table {
  border-top: 1px solid #cfcfcf;
}

.company-table__row {
  display: flex;

  border-bottom: 1px solid #cfcfcf;
}

/* 左 */

.company-table__head {
  width: 110px;

  background: #2f2f31;
  color: #fff;

  padding: 26px 18px;

  box-sizing: border-box;

  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;

  display: flex;
  align-items: flex-start;
}

/* 右 */

.company-table__body {
  width: calc(100% - 110px);

  padding: 26px 50px;

  box-sizing: border-box;

  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

/* =========================================
所在地
========================================= */

.company-address {
  margin: 0;
}

.company-map {
  width: 320px;
  height: 190px;

  margin-top: 20px;
}

.company-map iframe {
  width: 100%;
  height: 100%;
}

/* =========================================
取引先
========================================= */

.company-client-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.company-client-list li + li {
  margin-top: 8px;
}
/* =========================================
Message
========================================= */

.message-section {

  padding: 100px 0;
}

.message-inner {
  width: min(980px, calc(100% - 80px));

  margin: 0 auto;
}

/* =========================================
タイトル
========================================= */

.message-head {
  margin-bottom: 48px;
}

.message-head__en {
  margin: 0;

  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.message-head__jp {
  margin: 12px 0 0;

  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

/* =========================================
コンテンツ
========================================= */

.message-content {
  display: flex;
  align-items: flex-start;
  gap: 52px;
}

/* 左画像 */

.message-image {
  width: 210px;

  flex-shrink: 0;

  position: sticky;
  top: 120px;
}

.message-image img {
  width: 100%;
  display: block;
}

/* =========================================
右
========================================= */

.message-text {
  flex: 1;

  padding-top: 8px;
}

.message-title {
  margin: 0;

  font-size: 24px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.message-description {
  margin-top: 34px;
}

.message-description p {
  margin: 0;

  font-size: 16px;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.03em;
}

.message-description p + p {
  margin-top: 32px;
}
/* =========================================
署名
========================================= */

.message-sign {
  margin-top: 54px;

  text-align: right;

  font-size: 16px;
  font-weight: 700;
  line-height: 2;

  letter-spacing: 0.08em;
}
/* =========================================
Service Detail
========================================= */

.service-detail {

  padding: 100px 0;
}

.service-detail__inner {
  width: min(1180px, calc(100% - 80px));

  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 80px;
}

/* =========================================
左
========================================= */

.service-detail__content {
  width: 52%;
}

.service-detail__sub {
  margin: 0;

  font-size: 18px;
  font-weight: 500;
}

.service-detail__title {
  margin: 18px 0 0;

  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}

.service-detail__lead {
  margin: 58px 0 0;

  font-size: 22px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.service-detail__text {
  margin-top: 42px;
}

.service-detail__text p {
  margin: 0;

  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.03em;
}

.service-detail__text p + p {
  margin-top: 38px;
}

/* =========================================
ポイント
========================================= */

.service-detail__points {
  margin-top: 72px;
}

.service-point {
  display: flex;
  align-items: flex-start;

  gap: 26px;
}

.service-point + .service-point {
  margin-top: 60px;
}

.service-point__circle {
  width: 34px;
  height: 34px;

  border: 2px solid #222;
  border-radius: 50%;

  flex-shrink: 0;
}

.service-point__title {
  margin: 0;

  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
}

.service-point__text {
  margin: 14px 0 0;

  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

/* =========================================
ボタン
========================================= */

.service-detail__btn-wrap {
  margin-top: 90px;

  text-align: center;
}

.service-detail__btn {
  width: 180px;
  height: 58px;

  background: #2f2f31;
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  font-size: 18px;
  font-weight: 600;

  border-radius: 4px;

  transition: 0.3s;
}

.service-detail__btn:hover {
  background: #fff;
  color: #2f2f31;
}

/* =========================================
右
========================================= */

.service-detail__gallery {
  width: 48%;

  position: sticky;
  top: 120px;
}

.service-gallery {
  display: flex;
  align-items: flex-start;

  gap: 22px;
}

/* メイン */

.service-gallery__main {
  width: 410px;
}

.service-gallery__main img {
  width: 100%;
  display: block;
}

/* サムネ */

.service-gallery__thumbs {
  display: flex;
  flex-direction: column;

  gap: 16px;
}

.service-thumb {
  width: 92px;

  border: none;
  background: none;

  padding: 0;

  cursor: pointer;

  opacity: 0.5;

  transition: 0.3s;
}

.service-thumb.is-active {
  opacity: 1;
}
.service-thumb img {
  width: 100%;
  display: block;
}













/* =========================
Responsive
========================= */

@media screen and (max-width: 767px) {
	
  .company-page {
    padding: 100px 0 80px;
  }

  .company-page__inner {
    width: calc(100% - 40px);
  }

  /* title */

  .company-page__head {
    margin-bottom: 40px;
  }

  .company-page__title {
    gap: 10px;
  }

  .company-page__title span {
    font-size: 42px;
  }

  .company-page__title i {
    width: 58px;
    margin-top: 4px;
  }

  .company-page__sub {
    margin-top: 8px;

    font-size: 13px;
  }

  /* table */

  .company-table__row {
    flex-direction: column;
  }

  .company-table__head {
    width: 100%;

    padding: 14px 16px;

    font-size: 13px;
  }

  .company-table__body {
    width: 100%;

    padding: 20px 16px 24px;

    font-size: 13px;
    line-height: 2;
  }

  .company-map {
    width: 100%;
    height: 220px;

    margin-top: 16px;
  }

  .company-client-list li + li {
    margin-top: 6px;
  }


  .site-header {
    padding: 18px 20px;
  }

  .header-logo a {
    width: 110px;
    height: 42px;
    font-size: 16px;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .fv {
   height: auto;
    min-height: auto;

    background: #000;
    overflow: hidden;
  }

  .fv-bg__item img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: top center;
  }

  .fv-overlay {
    background: rgba(0, 0, 0, 0.25);
  }

  .fv-content {
    align-items: flex-end;


    box-sizing: border-box;
  padding-top:70px;
align-items: flex-start;
  }

  .fv-title {
    width: 100%;

    font-size: 10vw;
    line-height:1;
    letter-spacing: -0.045em;

	  padding-top:50px;
    transform: scaleX(0.96);
    transform-origin: left bottom;

    overflow: visible;
	  
  }

  .fv-title .line-break {
    flex-basis: 100%;
    width: 100%;
    height: 0;

    display: block;

    opacity: 1;
    transform: none;
    animation: none;
  }

  /* =========================
  タイトル
  ========================= */

  .top-news__head {
    margin-bottom: 45px;
  }

  .top-news__title {
    gap: 14px;
  }

  .top-news__title .en {
    font-size: 42px;
  }

  .top-news__title .line {
    width: 60px;
    margin-top: 5px;
  }

  .top-news__sub {
    margin-top: 10px;

    font-size: 14px;
    letter-spacing: 0.04em;
  }

  /* =========================
  一覧
  ========================= */

  .top-news__item {
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;

    padding: 24px 0;
  }

  .top-news__date {
    min-width: auto;

    font-size: 13px;
  }

  .top-news__text {
    font-size: 17px;
    line-height: 1.7;
  }

  /* =========================
  ボタン
  ========================= */

  .top-news__btn-wrap {
    margin-top: 40px;
  }

  .top-news__btn {
    width: 180px;
    height: 52px;

    font-size: 14px;
  }

  .top-links {
    padding: 100px 0 120px;
  }

  .top-links__inner {
    width: calc(100% - 48px);

    flex-direction: column;

    gap: 90px;
  }

  /* =========================
  番号
  ========================= */

  .top-links__num-wrap {
    gap: 18px;

    margin-bottom: 40px;
  }

  .top-links__num {
    font-size: 18px;
  }

  .top-links__line {
    width: 34px;
  }

  /* =========================
  英語
  ========================= */

  .top-links__en {
    font-size: clamp(48px, 16vw, 72px);

    line-height: 0.9;

    letter-spacing: -0.03em;
  }

  /* =========================
  日本語
  ========================= */

  .top-links__title {
    margin-top: 18px;

    font-size: 18px;

    letter-spacing: 0.06em;
  }

  /* =========================
  矢印
  ========================= */

  .top-links__arrow {
    margin-top: 36px;

    font-size: 42px;
  }
  .top-links__item {
    padding-bottom: 40px;

    border-bottom: 1px solid #d9d9d9;
  }

  .top-links__arrow {
    margin-top: 28px;

    font-size: 42px;

    display: block;
  }
  /* =========================
  画像
  ========================= */

  .top-links__image img {
    aspect-ratio: 1 / 0.62;
  }

  /* =========================
  下帯
  ========================= */

  .top-links__body {
    height: 68px;
  }

  /* =========================
  タイトル
  ========================= */

  .top-links__title {
    font-size: 20px;
  }
	  .contact-cta {
    min-height: 420px;
    padding: 70px 0;

    background-position: center center;
  }

  .contact-cta__inner {
    width: calc(100% - 40px);
  }

  .contact-cta__box {
    padding: 36px 22px 34px;
  }

  .contact-cta__title {
    font-size: 38px;
  }

  .contact-cta__sub {
    margin-top: 14px;
    font-size: 14px;
  }

  .contact-cta__text {
    margin-top: 22px;

    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }

  .contact-cta__btn-wrap {
    margin-top: 28px;
  }

  .contact-cta__btn {
    width: 132px;
    height: 40px;

    font-size: 13px;
  }
 .site-footer {
    padding: 52px 0 18px;
  }

  .footer-inner {
    width: calc(100% - 40px);

    flex-direction: column;
    gap: 40px;
  }

  /* =========================================
  左側
  ========================================= */

  .footer-left {
    width: 100%;
  }

  .footer-logo a {
    width: 180px;
    height: 54px;

    font-size: 20px;
  }

  .footer-text {
    margin-top: 14px;

    font-size: 12px;
    line-height: 1.8;
  }

  .footer-contact-btn {
    margin-top: 20px;

    width: 126px;
    height: 40px;

    font-size: 12px;
  }

  /* =========================================
  ナビ
  ========================================= */

  .footer-nav {
    width: 100%;

    flex-direction: column;
    gap: 28px;
  }

  .footer-nav__head {
    margin-bottom: 12px;

    font-size: 18px;
  }

  .footer-nav__col li + li {
    margin-top: 10px;
  }

  .footer-nav__col a {
    font-size: 13px;
  }

  .footer-nav__col:nth-child(2) a,
  .footer-nav__col:nth-child(3) a {
    font-size: 15px;
  }

  /* =========================================
  コピーライト
  ========================================= */

  .footer-copy {
    margin-top: 42px;

    font-size: 10px;
    line-height: 1.6;
  }
	
  .news-archive {
    padding: 110px 0 80px;

    min-height: auto;
  }

  .news-archive__inner {
    width: calc(100% - 40px);
  }

  /* =========================================
  タイトル
  ========================================= */

  .news-archive__head {
    margin-bottom: 46px;
  }

  .news-archive__title {
    gap: 12px;
  }

  .news-archive__title .en {
    font-size: 42px;
    line-height: 1;
  }

  .news-archive__title .line {
    width: 58px;
    margin-top: 4px;
  }

  .news-archive__sub {
    margin-top: 10px;

    font-size: 13px;
    letter-spacing: 0.04em;
  }

  /* =========================================
  一覧
  ========================================= */

  .news-archive__item {
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;

    padding: 24px 0;
  }

  .news-archive__date {
    min-width: auto;

    font-size: 12px;
    line-height: 1;
  }

  .news-archive__text {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
  .single-news {
    padding: 110px 0 80px;
  }

  .single-news__inner {
    width: calc(100% - 40px);
  }

  /* タイトル */

  .single-news__head {
    margin-bottom: 42px;
  }

  .single-news__title {
    gap: 12px;
  }

  .single-news__title .en {
    font-size: 42px;
  }

  .single-news__title .line {
    width: 58px;
    margin-top: 5px;
  }

  .single-news__sub {
    margin-top: 10px;

    font-size: 13px;
  }

  /* 記事情報 */

  .single-news__meta {
    padding-bottom: 24px;
  }

  .single-news__date {
    font-size: 13px;
  }

  .single-news__post-title {
    margin-top: 14px;

    font-size: 17px;
    line-height: 1.8;
  }

  /* 画像 */

  .single-news__thumbnail {
    margin-top: 26px;
  }

  .single-news__thumbnail img {
    width: 100%;
  }

  /* 本文 */

  .single-news__content {
    margin-top: 36px;

    font-size: 14px;
    line-height: 2;
  }

  /* ボタン */

  .single-news__btn-wrap {
    margin-top: 50px;
  }

  .single-news__btn {
    width: 140px;
    height: 44px;

    font-size: 13px;
  }
  .contact-page {
    padding: 105px 0 80px;
  }

  .contact-page__inner {
    width: calc(100% - 40px);
  }

  .contact-page__head {
    margin-bottom: 50px;
  }

  .contact-page__title span {
    font-size: 42px;
  }

  .contact-page__title i {
    width: 60px;
  }

  .contact-page__sub {
    font-size: 14px;
  }

  .contact-page__lead {
    margin-top: 24px;
    font-size: 14px;
  }

  .contact-form {
    width: 100%;
  }

  .form-row {
    padding: 28px 0 32px;
  }

  .form-row--checkbox .wpcf7-checkbox {
    flex-direction: column;
    gap: 12px;
  }

  .form-input,
  .form-textarea,
  .privacy-box {
    width: 100%;
  }

  .form-input {
    height: 36px;
  }

  .form-textarea {
    height: 120px;
  }

  .privacy-box {
    height: 110px;
    font-size: 10px;
  }
	  .company-page {
    padding: 100px 0 80px;
  }

  .company-page__inner {
    width: calc(100% - 40px);
  }

  /* =========================================
  タイトル
  ========================================= */

  .company-page__head {
    margin-bottom: 38px;
  }

  .company-page__title {
    gap: 10px;
  }

  .company-page__title span {
    font-size: 40px;
    line-height: 1;
  }

  .company-page__title i {
    width: 54px;
    margin-top: 4px;
  }

  .company-page__sub {
    margin-top: 8px;

    font-size: 12px;
    line-height: 1.6;
  }

  /* =========================================
  テーブル
  ========================================= */

  .company-table {
    border-top: 1px solid #d5d5d5;
  }

  .company-table__row {
    flex-direction: column;

    border-bottom: 1px solid #d5d5d5;
  }

  /* 左見出し */

  .company-table__head {
    width: 100%;

    padding: 14px 16px;

    font-size: 13px;
    line-height: 1.6;

    box-sizing: border-box;
  }
	.company-table__head br{
		display:none;
	}
  /* 右本文 */

  .company-table__body {
    width: 100%;

    padding: 18px 16px 22px;

    font-size: 13px;
    line-height: 2;

    box-sizing: border-box;
  }

  /* =========================================
  所在地
  ========================================= */

  .company-address {
    line-height: 2;
  }

  .company-map {
    width: 100%;
    height: 220px;

    margin-top: 16px;
  }

  .company-map iframe {
    width: 100%;
    height: 100%;
  }

  /* =========================================
  取引先
  ========================================= */

  .company-client-list li + li {
    margin-top: 6px;
  }
	  .message-section {
    padding: 80px 0;
  }

  .message-inner {
    width: calc(100% - 40px);
  }

  /* =========================================
  タイトル
  ========================================= */

  .message-head {
    margin-bottom: 34px;
  }

  .message-head__en {
    font-size: 13px;
    line-height: 1;
  }

  .message-head__jp {
    margin-top: 10px;

    font-size: 30px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.03em;
  }

  /* =========================================
  コンテンツ
  ========================================= */

  .message-content {
    flex-direction: column;

    gap: 26px;
  }

  /* =========================================
  左画像
  ========================================= */

  .message-image {
    width: 190px;

    position: static;

    flex-shrink: 0;
  }

  .message-image img {
    width: 100%;
    display: block;
  }

  /* =========================================
  右テキスト
  ========================================= */

  .message-text {
    width: 100%;

    padding-top: 0;
  }
	.message-title br{
		display:none;
	}
  .message-title {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.03em;
  }

  .message-description {
    margin-top: 22px;
  }

  .message-description p {
    margin: 0;

    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.03em;
  }

  .message-description p + p {
    margin-top: 22px;
  }
	  .service-detail {
    padding: 0px 0;
    padding-bottom:60px;
  }

  .service-detail__inner {
    width: calc(100% - 40px);

    flex-direction: column;

    gap: 42px;
  }

  /* 左 */

  .service-detail__content {
    width: 100%;
  }

  .service-detail__sub {
    font-size: 14px;
  }

  .service-detail__title {
    margin-top: 14px;

    font-size: 37px;
  }

  .service-detail__lead {
    margin-top: 42px;

    font-size: 16px;
    line-height: 1.8;
  }

  .service-detail__text {
    margin-top: 28px;
  }

  .service-detail__text p {
    font-size: 14px;
    line-height: 2;
  }

  .service-detail__text p + p {
    margin-top: 28px;
  }

  /* point */

  .service-detail__points {
    margin-top: 50px;
  }

  .service-point {
    gap: 18px;
  }

  .service-point + .service-point {
    margin-top: 38px;
  }

  .service-point__circle {
    width: 26px;
    height: 26px;
  }

  .service-point__title {
    font-size: 19px;
    line-height: 1.8;
  }

  .service-point__text {
    margin-top: 10px;

    font-size: 14px;
    line-height: 1.9;
  }

  /* btn */

  .service-detail__btn-wrap {
    margin-top: 60px;
  }

  .service-detail__btn {
    width: 160px;
    height: 52px;

    font-size: 16px;
  }

  /* 右 */

  .service-detail__gallery {
    width: 100%;

    position: static;
  }

  .service-gallery {
    flex-direction: column;

    gap: 16px;
  }

  .service-gallery__main {
    width: 100%;
  }

  .service-gallery__thumbs {
    width: 100%;

    flex-direction: row;

    gap: 12px;
  }

  .service-thumb {
    width: calc((100% - 24px) / 3);
  }
}