@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap");
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
/* =========================================
   全消しリセットCSS（フォームUIは残す）
   ========================================= */
/* すべての要素の余白・枠線・フォントサイズをリセット */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5要素のデフォルト表示をブロックに */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* ボディ初期化 */
body {
  line-height: 1;
}

/* リストマーカー削除 */
ol, ul {
  list-style: none;
}

/* 引用符削除 */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

/* テーブル初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===== フォームUIは基本残すが最小限調整 ===== */
/* フォント継承（見た目の統一感を出す） */
input, select, textarea, button {
  font: inherit;
  color: inherit;
}

/* iOS Safariのズーム防止（必要な場合） */
input, textarea, select {
  font-size: 16px;
}

/* ボタンはポインター */
button {
  cursor: pointer;
}

/* Webkit系での余計なスタイル防止（外観は保持） */
input[type=search] {
  -webkit-appearance: textfield;
}

/* プレースホルダーの色だけ少し整える */
::-moz-placeholder {
  color: #999;
}
::placeholder {
  color: #999;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  overflow-x: hidden;
  color: black;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  color: black;
}

/* ---------------------------------------------------------
  モード切替
  true  = 集団開発（clampで安全運用）
  false = 個人開発（calcで柔軟）
--------------------------------------------------------- */
/* ---------------------------------------------------------
  案件ごとの基準値（ここだけ変えればOK）
--------------------------------------------------------- */
/* ---------------------------------------------------------
  内部：root 用 fluid font-size
--------------------------------------------------------- */
/* ---------------------------------------------------------
  PC FV 専用 fluid（root を触らない）
--------------------------------------------------------- */
/* ---------------------------------------------------------
  実行
--------------------------------------------------------- */
/* ===== SPのみ root を fluid ===== */
:root {
  font-size: calc(10 * 100vw / 375);
}

/* ===== PCでは root を固定 ===== */
@media (min-width: 768px) {
  :root {
    font-size: 10px;
  }
}
/* ===== PCのFVだけ fluid を使う ===== */
@media (min-width: 768px) {
  .p-fv {
    font-size: clamp(9px, 10 * 100vw / 1920, 10px);
  }
}
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 1024px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
@media (max-width: 734px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
body {
  margin: 0;
}

/* 横幅制御解除 */
.container,
.site-content,
.wrap {
  max-width: 100%;
  padding: 0;
}

.header {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7rem;
  padding: 0 2rem;
}

/* ロゴ */
.logo img {
  height: 40px;
}

/* ナビ */
.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
}

/* CONTACTボタン */
.nav a.contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 24px; /* ←高さを低く・横を長く */
  border: 1px solid #fff;
  font-size: 12px;
  letter-spacing: 2px;
  height: 32px; /* ←高さ固定（細く） */
}

/* ハンバーガー */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  width: 25px;
  height: 2px;
  background: #fff;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 40px;
  height: 1px;
  background: #fff;
}

/* ===== ヘッダー補正（追加だけ） ===== */
.nav a {
  position: relative;
  display: inline-block;
}

/* 下線 */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}

/* ホバーで伸びる */
.nav a:hover::after {
  width: 100%;
}

/* CONTACTは下線なし */
.nav a.contact::after {
  display: none;
}

/* CONTACTは色変化 */
.nav a.contact {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #fff;
  color: #fff;
  transition: 0.3s;
}

.nav a.contact:hover {
  background: #fff;
  color: #2b2b2b;
}

.nav {
  display: flex;
  align-items: center; /* ← これが超重要 */
}

.nav a {
  display: flex;
  align-items: center; /* ← 縦中央 */
}

/* =========================
   フッター全体
========================= */
.footer {
  background: #2b2b2b;
  color: #fff;
  padding: 100px 0 40px;
  position: relative;
}

/* 横幅 */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ナビ */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: flex-start;
}

/* カラム */
.footer-col {
  width: auto;
}

/* 左（TOPとか） */
.footer-col:first-child p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 10px;
  color: #fff;
}

/* 見出し */
.footer-col h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 16px;
  border-bottom: 1px solid #aaa;
  display: inline-block;
  padding-bottom: 6px;
}

/* リンク */
.footer-col a {
  display: block;
  font-size: 14px;
  color: #ddd;
  margin-bottom: 6px;
  text-decoration: none;
}

/* ロゴ */
.footer-logo {
  position: absolute;
  top: 60px;
  right: 0;
  transform: translateX(-120px);
}

.footer-logo img {
  height: 50px;
}

/* SNS */
.footer-sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 20px;
}

/* コピー */
.copyright {
  font-size: 10px;
  color: #aaa;
  text-align: center;
}

/* ===== メディア ===== */
.page-header .breadcrumb {
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.page-header .breadcrumb::before,
.page-header .breadcrumb::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: #ddd;
}

.page-header .breadcrumb::before {
  left: -80px;
}

.page-header .breadcrumb::after {
  right: -80px;
}

.page-header .title {
  font-size: 56px;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.media-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.media-item img {
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
  max-width: 260px;
  margin: 0 auto;
  height: auto;
}

.media-inner {
  max-width: 980px;
  gap: 60px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-header img {
  width: auto;
}

.media-list .media-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  justify-items: start; /* ←横揃え */
  align-items: start; /* ←縦揃え */
}

/* カード */
.media-item {
  width: 100%;
  margin: 0;
  text-align: left;
}

/* 画像 */
.media-item img {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

/* タイトル */
.media-title {
  font-size: 16px;
  margin-top: 10px;
}

/* テキスト */
.media-text {
  line-height: 1.7;
}

.media-inner {
  align-items: start;
}

.media-list .media-item {
  margin: 0;
  width: 100%;
}

.page-header {
  background: #ffffff;
  padding: 80px 0 60px;
}

.page-header-inner {
  max-width: 1100px;
  margin: 0;
}

/* 小タイトル */
.page-header .sub {
  font-size: 13px;
  color: #777777;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

/* MEDIA */
.page-header .title {
  font-size: 50px;
  font-weight: 300;
  letter-spacing: 8px;
  color: #777777;
  padding: 100px 0 60px;
}

/* 説明文 */
.page-header .desc {
  text-align: center;
  font-size: 14px;
  color: #777777;
  letter-spacing: 1px;
}

.page-header .title {
  letter-spacing: 10px;
}

.page-header .desc {
  display: block;
  width: 100%;
  text-align: center;
  margin: 40px auto 0;
}

.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-header .sub {
  margin: 0;
  line-height: 1;
}

.page-header .title {
  margin: 0;
  line-height: 1;
}

.page-header .title {
  margin-top: -10px;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
}

.hero-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-btn {
  background: #E60012;
  color: #fff;
  padding: 16px 40px;
  font-size: 14px;
  letter-spacing: 3px;
}

/* ===== INFORMATION ===== */
.info {
  padding: 120px 20px;
  background: #fff;
  text-align: center;
}

.info-inner {
  max-width: 900px;
  margin: 0 auto;
}

.info-title {
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 60px;
}

/* ===== INFO ===== */
.info {
  background: #f5f5f5;
  padding: 60px 20px 40px;
  text-align: center;
}

/* タイトル */
.info-title {
  font-size: 30px;
  letter-spacing: 4.5px;
  color: #777777;
  font-weight: 400;
}

/* リスト */
.info-list {
  max-width: 600px;
  margin: 0 auto;
  color: #777777;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px; /* ←ボタンとの距離 */
}

/* 1行 */
.info-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 0;
  margin: 0 auto 8px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #777777;
  gap: 14px;
}

.info-item:last-child {
  margin-bottom: 0;
}

/* 日付 */
.info-item .date {
  width: 140px;
  color: #777777;
  font-size: 12px;
  text-align: left;
}

/* テキスト */
.info-item .text {
  text-align: left;
  color: #777777;
}

/* ボタン */
.info-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 40px;
  background: #2b2b2b;
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  letter-spacing: 1.5px;
  font-weight: 250;
  text-decoration: none;
  transition: 0.3s;
}

/* ホバー */
.info-more:hover {
  background: #000;
}

/* 最後だけ消す */
.info-item:last-child {
  border-bottom: none;
}

.info {
  border-top: none;
}

.info::before,
.info::after {
  display: none;
}

.info-title {
  border: none;
  margin-bottom: 30px; /* ←ここ統一 */
}

/* 最後だけ余白つける */
.info-item:last-child {
  margin-bottom: 30px;
}

/* ===== WORKS ===== */
.works {
  padding: 100px 40px;
  background: #fff;
}

.works-inner {
  display: flex;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start; /* ←重要 */
}

/* 左 */
.works-left {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ←全部左揃え */
  text-align: left;
}

/* アイコン */
.works-icon img {
  width: 150px;
  display: block;
}

/* タイトル */
.works-title {
  font-size: 30px;
  letter-spacing: 4.5px;
  color: #777777;
  font-weight: 400;
  margin-top: 20px;
}

/* テキスト */
.works-text {
  font-size: 12px;
  line-height: 2;
  color: #777;
  margin: 20px 0 30px;
}

/* ボタン（共通） */
.info-more {
  display: inline-block; /* ←これ重要 */
  padding: 12px 36px;
  background-color: #2b2b2b; /* ←background-colorにする */
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 300;
  line-height: 1;
}

/* ホバー */
.info-more:hover {
  background: #000;
}

/* 右（グリッド） */
.works-grid {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* カード */
.works-item {
  text-decoration: none;
  color: #333;
  overflow: hidden;
}

.works-item img {
  width: 100%;
  display: block;
  transition: 0.4s;
}

.works-item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* タイトル */
.works-name {
  font-size: 12px;
  margin-top: 8px;
}

/* タグ */
.works-name span {
  font-size: 10px;
  border: 1px solid #ccc;
  padding: 2px 6px;
  margin-left: 6px;
}

.works-title,
.works::before,
.works-left::before {
  border: none;
  content: none;
}

a.info-more {
  background-color: #2b2b2b;
}

/* ===== STORIES ===== */
.stories {
  padding: 100px 40px;
  background: #f5f5f5;
}

.stories-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
}

/* 左 */
.stories-left {
  width: 50%;
}

.stories-main {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.stories-caption {
  font-size: 12px;
  color: #777777;
  margin-bottom: 10px;
}

.stories-desc {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}

/* 右 */
.stories-right {
  width: 50%;
}

.stories-title {
  font-size: 30px;
  letter-spacing: 4.5px;
  color: #777;
  font-weight: 400;
  border-bottom: none;
}

.stories-title::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #165e83;
  margin-bottom: 15px;
}

.stories-title,
.stories-title::before,
.stories-title::after {
  border: none;
  content: none;
  background: none;
}

.stories-text {
  font-size: 12px;
  line-height: 2;
  color: #777;
  margin-bottom: 20px;
}

/* サムネ */
.stories-thumb {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.stories-thumb img {
  width: 120px;
  height: auto;
}

/* ボタンはそのまま流用 */
.info-more {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 12px 36px;
  background-color: #2b2b2b;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 3px;
}

.info-more::after {
  position: absolute;
  content: "→";
  font-size: 14px;
  margin-left: 10px;
  right: 1.5rem;
}

/* ===== LINKS ===== */
.links {
  padding: 80px 40px;
  background: none;
}

.links-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== 上カード ===== */
.links-top {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.link-card {
  flex: 1;
  height: 95px;
  padding: 18px 30px;
  background: #2b2b2b;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

/* テキストブロック */
.link-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(8px); /* ←中央補正 */
}

/* 英語タイトル */
.link-card h3 {
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 350;
  margin: 0;
  line-height: 1.15;
}

/* 日本語 */
.link-card p {
  font-size: 16px;
  font-weight: 350;
  letter-spacing: 1px;
  margin: 2px 0 0;
  line-height: 1.15;
  color: #fff;
}

/* 矢印 */
.link-arrow {
  width: 60px;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* ホバー時（カードにカーソル） */
.link-card:hover .link-arrow {
  background: transparent; /* 白 → 透明 */
  color: #fff; /* 矢印を白に */
  border: 1px solid #fff; /* 枠だけにする */
}

/* 不要な線対策 */
.link-card h3::after {
  display: none;
}

.link-card * {
  border: none;
}

/* ===== 下エリア ===== */
.links-bottom {
  display: flex;
  gap: 30px;
}

.link-list {
  flex: 1;
}

.link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: #333;
}

.link-item h4 {
  font-size: 22px;
  font-weight: 350;
  letter-spacing: 2px;
  margin: 0;
  color: #777777;
}

.link-item p {
  font-size: 16px;
  font-weight: 350;
  letter-spacing: 1px;
  margin: 4px 0 0;
  color: #777777;
}

.link-item span {
  width: 60px;
  height: 40px;
  border-radius: 999px;
  background: #2b2b2b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.link-item:hover span {
  background: transparent;
  color: #2b2b2b;
  border: 1px solid #2b2b2b;
}

/* ラベルの背景を消す */
.link-item h4 {
  background: none;
  padding: 0;
  border-radius: 0;
}

/* 下のリストも上と同じ余白にする */
.link-item {
  padding: 20px 30px; /* ←ここがポイント */
}

/* 下も上と同じ視覚位置に寄せる */
.link-item > div {
  transform: translateY(6px);
}

.link-item {
  border-bottom: 2px solid #e5e5e5; /* 下だけにする */
  color: #777777;
}

/* 最初の行だけ上に1本 */
.link-list .link-item:first-child {
  border-top: 2px solid #e5e5e5;
  color: #777777;
}

.links-bottom {
  background: none;
  padding: 0;
}

.link-list {
  background: none;
}

/* 名前・フリガナ横並び */
.wpcf7 input[name=your-name-first],
.wpcf7 input[name=your-name-last],
.wpcf7 input[name=your-kana-first],
.wpcf7 input[name=your-kana-last] {
  width: 48%;
  display: inline-block;
}

.wpcf7 input[name=your-name-last],
.wpcf7 input[name=your-kana-last] {
  margin-left: 4%;
}

/* 郵便番号 */
.wpcf7 input[name=your-zip1] {
  width: 30%;
  display: inline-block;
}

.wpcf7 input[name=your-zip2] {
  width: 65%;
  display: inline-block;
  margin-left: 5%;
} /* 行を横並び */
.wpcf7 form p {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ラベル */
.wpcf7 form p > label {
  width: 180px;
  flex-shrink: 0;
}

/* 入力エリア */
.wpcf7 form p > span {
  flex: 1;
}

/* textareaだけ高さ調整 */
.wpcf7 textarea {
  height: 140px;
} /* フォント */
.wpcf7 label {
  font-size: 12px;
  color: #777;
}

/* input */
.wpcf7 input,
.wpcf7 textarea {
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 13px;
}

.wpcf7 {
  max-width: 700px;
  margin: 0 auto;
}

/* 横並び */
.wpcf7 .form-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

/* ラベル */
.wpcf7 .form-group label {
  width: 180px;
  font-size: 13px;
  color: #555;
}

/* サブテキスト */
.wpcf7 .sub {
  font-size: 10px;
  color: #999;
}

/* 入力エリア */
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  padding: 0 10px;
  font-size: 14px;
}

/* テキストエリア */
.wpcf7 textarea {
  height: 160px;
  padding: 10px;
}

/* 横並びグループ */
.wpcf7 .inline {
  display: flex;
  gap: 10px;
  width: 100%; /* ←これ追加 */
  justify-content: flex-start; /* ←左に寄せる */
}

.wpcf7 .inline input {
  width: 180px;
}

/* 郵便番号 */
/* 質問だけ縦 */
.wpcf7 .form-group.full label {
  display: block;
  margin-bottom: 10px;
}

/* ボタン */
.submit-wrap {
  text-align: center;
  margin-top: 40px;
}

.submit-wrap input {
  width: 200px;
  height: 45px;
  border-radius: 999px;
  background: #2b2b2b;
  color: #fff;
  border: none;
}

.wpcf7 {
  background-color: #F2F2F2;
  padding: 60px;
  border-radius: 0px;
} /* STORIESと同じ幅にする */
.wpcf7 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px; /* ←左右余白合わせる */
}

.contact-head {
  text-align: center;
  margin-bottom: 20px;
}

.contact-head h2 {
   font-size: 30px;
  letter-spacing: 4.5px;
  font-weight: 400;
  margin-top: 20px;
  color: #777;
}

.contact-head p {
  font-size: 12px;
  color: #777;
}

.contact-section {
  background: #F2F2F2;
  padding: 100px 0;
  /* ←これが超重要 */
  width: 100%;
}

.contact-section {
  border-top: none;
}

.contact-head {
  margin-top: 0;
  padding-top: 40px;
}

.contact-section {
  margin-top: -1px;
}

/* 上の線を消す */
.contact-section {
  border-top: none;
}

/* タイトル周りの線を消す */
.contact-head {
  border-top: none;
  border-bottom: none;
}

/* h2の線を消す（テーマ対策） */
.contact-head h2 {
  border: none;
}

.submit-wrap {
  text-align: center;
}

.custom-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 220px;
  height: 50px;
  background: #2b2b2b;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

/* テキスト */
.custom-submit .text {
  letter-spacing: 1px;
}

/* 矢印 */
.custom-submit .arrow {
  font-size: 16px;
  transition: transform 0.3s;
}

/* ホバーで矢印動く（おすすめ） */
.custom-submit:hover .arrow {
  transform: translateX(5px);
}

.custom-submit {
  letter-spacing: 2px;
}

/* フォーム全体中央 */
.contact-section .wpcf7 form {
  max-width: 900px;
  margin: 0 auto;
}

.required {
  color: #BA0505;
} /* ボタン中央 */
.submit-wrap {
  display: flex;
  justify-content: center;
}

/* 郵便番号 */
.wpcf7 .zip {
  align-items: center;
}

.wpcf7 .zip span {
  padding: 0 5px;
} /* 行間詰める */
.wpcf7 .form-group {
  margin-bottom: 10px; /* ←ここが一番効く */
}

/* ラベルも少し詰める */
.wpcf7 .form-group label {
  line-height: 1.4;
}

/* input高さ少し下げる */
.wpcf7 input,
.wpcf7 select {
  height: 36px;
}

/* テキストエリア */
.wpcf7 textarea {
  height: 140px;
}

/* 横並びの余白 */
.wpcf7 .inline {
  gap: 8px;
} /* 行間を強制的に詰める */
.wpcf7 .form-group {
  margin-bottom: 6px;
} /* 行間 */
.wpcf7 .form-group {
  margin-bottom: 6px;
}

/* ラベルと入力の間 */
.wpcf7 .form-group label {
  margin-bottom: 0;
  line-height: 1.2;
}

/* input高さ */
.wpcf7 input,
.wpcf7 select {
  height: 3rem;
}

/* textarea */
.wpcf7 textarea {
  height: 120px;
}

/* 横並びの隙間 */
.wpcf7 .inline {
  gap: 6px;
}

.wpcf7 p {
  margin: 0;
}

.contact-head h2 {
  margin-bottom: 6px;
}

.contact-head p {
  margin-top: 0;
} /* CF7の余計な余白を消す（最重要） */
.wpcf7 p {
  margin: 0;
}

/* form-groupを横並び */
.wpcf7 .form-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* inlineも統一 */
.wpcf7 .inline {
  display: flex;
  gap: 10px;
  width: 100%;
}

/* wrapのズレ対策（これ超重要） */
/* form横並び */
.wpcf7 .form-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ラベル固定幅（これが超重要） */
.wpcf7 .form-group label {
  width: 180px;
  flex-shrink: 0;
}

/* 入力エリアだけ伸ばす */
/* input自体は100%でOK */
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
}

/* 通常（1列） */
.wpcf7 .form-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 2列のとき */
.wpcf7 .form-group.double {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
}

.wpcf7 label {
  width: 180px;
  flex-shrink: 0;
}

.wpcf7 .input-area {
  width: 100%;
}

.wpcf7 .inline {
  display: flex;
  gap: 10px;
  width: auto; /* ←これが超重要 */
}

/* 郵便番号専用 */
.wpcf7 .zip {
  display: flex;
  gap: 10px;
  align-items: center;
}

.wpcf7 .zip input {
  width: 80px;
}

/* =========================
   基本レイアウト
========================= */
.wpcf7 .form-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ラベル固定 */
.wpcf7 .form-group label {
  width: 180px;
  flex-shrink: 0;
}

/* =========================
   通常input（1列）
========================= */
/* =========================
   inline（2列・複数項目）
========================= */
.wpcf7 .inline {
  display: flex;
  gap: 20px;
  width: auto; /* ←重要 */
}

/* ←これが一番大事 */
/* inputサイズ調整（これで揃う） */
.wpcf7 .inline input {
  width: 200px;
}

/* =========================
   郵便番号
========================= */
.wpcf7 .zip input {
  width: 100px;
}

/* =========================
   生年月日
========================= */
.wpcf7 .inline span {
  display: flex;
  align-items: center;
  flex: 1;
  width: 100%;
  justify-content: space-between;
}

/* =========================
   全体リセット（まずこれ）
========================= */
.wpcf7 .form-group {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* ラベル固定 */
.wpcf7 .form-group label {
  width: 180px;
  flex-shrink: 0;
}

/* =========================
   ★ここが最重要（暴れてる原因）
========================= */
/* =========================
   通常1列
========================= */
/* =========================
   inline（名前とか）
========================= */
.wpcf7 .inline {
  display: flex;
  gap: 20px;
  flex: 1;
}

/* ←ここが超重要 */
/* inputサイズ固定（揃う） */
.wpcf7 .inline input {
  width: 200px;
}

/* =========================
   郵便番号
========================= */
.wpcf7 .zip input {
  width: 90px;
}

/* =========================
   生年月日
========================= */
.wpcf7 .inline span {
  display: flex;
  align-items: center;
}

.wpcf7 .name-wrap {
  display: flex;
  gap: 10px;
}

.wpcf7 .name-wrap input {
  width: 180px;
}

/* エラーメッセージ小さく */
.wpcf7-not-valid-tip {
  font-size: 11px; /* 好きなサイズに調整OK */
  line-height: 1.3;
}

/* =========================
   フッター全体
========================= */
.footer {
  background: #2b2b2b;
  color: #fff;
  padding: 100px 0 40px;
}

/* 横幅制御 */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

/* =========================
   ナビ（4カラム）
========================= */
.footer-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  text-align: left;
}

.footer-col {
  width: 22%;
}

.footer-col p {
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #aaa;
}

.footer-col a {
  display: block;
  font-size: 12px;
  color: #fff;
  margin-bottom: 6px;
  text-decoration: none;
}

/* =========================
   ロゴ
========================= */
.footer-logo {
  font-size: 24px;
  letter-spacing: 8px;
  margin-bottom: 30px;
}

/* =========================
   SNS
========================= */
.footer-sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

/* =========================
   コピーライト
========================= */
.copyright {
  font-size: 10px;
  color: #aaa;
}

.footer-logo {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 28px; /* ←これ重要（小さめが高級感） */
  width: auto;
  opacity: 0.9;
} /* フッター基準にする */
.footer-inner {
  position: relative;
}

/* ロゴを右上へ */
.footer-logo {
  position: absolute;
  top: 0;
  right: 40px;
}

.footer-logo img {
  height: 30px;
}

.footer-logo {
  top: -10px; /* 上に微調整 */
  right: 40px;
}

/* =========================
   カラムを上揃え
========================= */
.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* ←これが超重要 */
}

/* =========================
   見出し統一
========================= */
.footer-col h4 {
  font-size: 14px; /* ←サイズ統一 */
  font-weight: 500; /* ←太さ統一（重要） */
  letter-spacing: 3px;
  margin-bottom: 16px;
  border-bottom: 1px solid #777;
  display: inline-block;
  padding-bottom: 6px;
}

/* =========================
   左のTOPとかも揃える
========================= */
.footer-col p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.footer-col h4 {
  background: none;
  box-shadow: none;
}

.footer-col h4 {
  background-color: transparent;
}

.footer-col h4 {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.footer-col h4 {
  border-bottom: 1px solid #aaa; /* ←これだけ */
  display: inline-block;
  padding-bottom: 6px;
} /* =========================
   ロゴを大きく（右上）
========================= */
.footer-logo img {
  height: 40px; /* ←ここで調整（36〜48くらいでOK） */
  width: auto;
}

/* =========================
   左メニュー（TOP〜OTHERS）
========================= */
.footer-col:first-child p {
  color: #fff;
  font-weight: 350;
  letter-spacing: 2px;
}

/* =========================
   見出し（CONCEPT / PROFILE / CONTACT）
========================= */
.footer-col h4 {
  color: #fff;
  font-weight: 350;
  letter-spacing: 3px;
}

/* =========================
   リンク文字（中の説明文）
========================= */
.footer-col a {
  color: #ddd;
  font-weight: 350;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.footer-col {
  width: auto;
}

.footer-logo {
  margin-bottom: 60px; /* ←これが約1.5cmくらい */
}

.footer-nav {
  display: flex;
  justify-content: center; /* ←これに変更 */
  gap: 80px; /* ←カラム間の距離 */
  margin-bottom: 80px;
}

.footer-col {
  width: auto; /* ←これにする（固定幅やめる） */
}

.footer-logo {
  position: absolute;
  top: 10px;
  right: 80px; /* ←少し内側に */
}

.footer {
  position: relative;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: flex-start;
}

.footer-logo {
  position: absolute;
  top: 0;
  right: 40px; /* ←位置調整 */
}

.footer-logo img {
  height: 40px;
}

.footer {
  position: relative;
}

.footer-logo {
  position: absolute;
  top: 0;
  right: 40px;
  z-index: 10; /* ←これ重要（前に出す） */
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: flex-start;
}

.footer-logo {
  pointer-events: auto;
}

.footer-inner {
  position: static; /* ←relative消す */
}

.footer-nav {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo {
  top: 60px;
  right: 0px; /* ←今より小さく（内側に寄る） */
}

.footer-nav {
  transform: translateX(-100px); /* ←約2cm */
}

.footer-col h4 {
  margin-bottom: 20px; /* ←これで下に余白できる */
}

.footer-col a {
  line-height: 1.9; /* ←おすすめ（1.8〜2.2で調整） */
}

.footer-col:last-child h4 {
  border-bottom: none;
}

.footer-col:last-child a {
  font-size: 14px; /* ←揃える */
  font-weight: 350;
}

.footer-col a {
  font-size: 14px;
}

.footer-col:last-child a {
  margin-bottom: 10px; /* ←行と行の間 */
}

.footer-col {
  width: auto; /* ←これに変更 */
}

.footer-logo {
  right: 20px; /* ←ちょうど良いバランスになりやすい */
}

.footer-logo {
  right: 0;
  transform: translateX(-50px); /* ←中央寄せ */
}

.footer-logo {
  top: 60px;
  right: 0;
  transform: translateX(-120px); /* ←約3cm */
}

.footer-logo img {
  height: 50px; /* ←おすすめ（今より大きめ） */
}

.footer-logo {
  top: 60px;
  right: 0;
  transform: translateX(-120px);
}

.footer-logo img {
  height: 50px;
}

.footer-col:last-child a {
  letter-spacing: 2px; /* ←これで広がる */
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
  background: #fff;
}
html body {
  font-family: "Noto Sans JP", sans-serif, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
  color: #777777;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  letter-spacing: 0.1em;
  font-weight: 300;
  line-height: 2;
}
html body section {
  width: 100%;
}
html body .robo {
  font-family: "Roboto", sans-serif;
}
html body .contents {
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
}
html body img {
  width: 100%;
  height: auto;
}
html body h1 {
  font-size: 6.4rem;
  letter-spacing: 0.6rem;
  font-family: "Roboto", sans-serif;
}
html body h2 {
  font-size: 2.4rem;
  letter-spacing: 0.24rem;
}
html body h3 {
  font-size: 1.8rem;
}
html body p {
  font-size: 1.6rem;
  line-height: 3.2rem;
}
html body b {
  font-size: 1.6rem;
  font-weight: bold;
}
html body a {
  color: #777777;
  text-decoration: none;
}
html body li {
  list-style: none;
  font-size: 1.6rem;
}
html body footer {
  width: 100%;
}
@media (max-width: 734px) {
  html body .contents {
    max-width: 33.6rem;
    width: 100%;
    margin: 0 auto;
  }
  html body h1 {
    font-size: 2.8rem;
    letter-spacing: 0.3rem;
  }
  html body h2 {
    font-size: 1.6rem;
    letter-spacing: 0.15rem;
  }
  html body p {
    font-size: 1.4rem;
    line-height: 2.81rem;
  }
  html body li {
    font-size: 1.4rem;
  }
}

.header .header-inner {
  height: 7rem;
  padding: 0 2rem;
}
.header .header-inner .nav:last-of-type {
  margin: 0 3rem 0 auto;
}
.header a.contact {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #fff;
  color: #fff;
  transition: 0.3s;
}
.header a.contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13.7rem;
  border: 1px solid #fff;
  font-size: 12px;
  letter-spacing: 2px;
  height: 2.9rem;
  padding: 0;
}
.header a.contact:hover {
  background: #fff;
  color: #2b2b2b;
}
@media (max-width: 734px) {
  .header .nav {
    position: absolute;
    transform: translateY(-100vh);
  }
  .header .header-inner {
    padding: 0 1.6rem;
    height: 60px;
  }
  .header a.contact {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #fff;
    color: #fff;
    transition: 0.3s;
  }
  .header a.contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid #fff;
    font-size: 12px;
    letter-spacing: 2px;
    height: 32px;
  }
  .header a.contact:hover {
    background: #fff;
    color: #2b2b2b;
  }
  .header .logo img {
    height: 3rem;
  }
}

.contact-section {
  padding-top: 2.5rem;
}

.contact-head h2 {
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 10%;
}

.contact-section .wpcf7 form {
  max-width: 54.7rem;
  margin: 0 auto;
}

.contact-head p {
  font-size: 1.6rem;
  color: #777;
  margin-bottom: 4.3rem;
}

.wpcf7 .form-group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 1.9rem;
}

.wpcf7 .form-group label {
  width: 30rem;
  line-height: 2;
  font-size: 1.4rem;
}

.wpcf7 .name-wrap input {
  width: 17rem;
  height: 2.8rem;
  box-sizing: border-box;
  padding: 0 1rem;
}

.wpcf7 form p {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.wpcf7 .zip span {
  box-sizing: border-box;
  padding: 0;
}

.wpcf7 .inline.zip input {
  width: 6.2rem;
}

.wpcf7 .inline.mansion input {
  width: 36.4rem;
}

.wpcf7 .inline input {
  width: 17.4rem;
  box-sizing: border-box;
}

.birth p {
  gap: 0.86rem !important;
}

.wpcf7 input,
.wpcf7 select {
  width: 17.4rem;
  border: solid 1px #8c8c8c;
}

.wpcf7 textarea {
  width: 34.4rem;
  border: solid 1px #8c8c8c;
}

.wpcf7 textarea {
  height: 13.8rem;
}

@media (max-width: 734px) {
  .contact-head {
    margin-top: 0;
    padding-top: 0;
  }
  .contact-head h2 {
    margin-bottom: 1.8rem;
    font-size: 1.8rem;
  }
  .wpcf7 {
    max-width: 33.6rem;
    margin: 0 auto;
    padding: 0;
  }
  .contact-head p {
    font-size: 1.6rem;
    color: #777;
    margin-bottom: 2.5rem;
  }
  .wpcf7 .form-group {
    flex-flow: wrap;
    gap: 2.5rem;
    margin-bottom: 1.9rem;
  }
  .wpcf7 .form-group {
    flex-flow: wrap;
    gap: 0.5rem;
    margin-bottom: 1.9rem;
  }
  .wpcf7 .form-group > p {
    width: 100%;
  }
  .wpcf7 .inline input {
    width: 16rem;
  }
  .wpcf7 .inline.spwwid input {
    width: 33.5rem;
  }
  .wpcf7 textarea {
    width: 31.4rem;
  }
}
.footer .footer-sns img {
  width: 3.2rem;
}
.footer .front__sns.open__sns {
  position: fixed;
  right: 1.5rem;
  bottom: 3rem;
  z-index: 10000000;
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
@media (max-width: 734px) {
  .footer {
    padding: 4.3rem 0 4rem;
  }
  .footer .footer-logo {
    transform: none;
    position: static;
    margin-bottom: 1.7rem;
  }
  .footer .footer-inner {
    max-width: 33.6rem;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
  .footer .footer-nav {
    transform: none;
    flex-flow: column;
  }
  .footer .footer-nav {
    gap: 2rem;
  }
  .footer .footer-sns {
    flex-flow: column;
  }
  .footer .footer-sns img {
    width: 3rem;
  }
}

.fv {
  padding: 13.3rem 0 6.4rem;
}
.fv__contents {
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.fv__subttl {
  font-size: 2rem;
  letter-spacing: 0.2rem;
  margin-bottom: 1.6rem;
}
.fv__ttl {
  margin-bottom: 3.2rem;
}
@media (max-width: 734px) {
  .fv {
    padding: 9.3rem 0 3.4rem;
  }
  .fv__subttl {
    font-size: 1.4rem;
  }
  .fv__ttl {
    margin-bottom: 2.4rem;
  }
}

#work .fv .breadcrumb {
  margin-bottom: 4.3rem;
}
@media (max-width: 734px) {
  #work .fv .breadcrumb {
    margin-bottom: 2.6rem;
  }
  #work .fv__txt {
    line-height: 2.1rem;
  }
}

#stories .fv {
  padding-bottom: 4rem;
}
#stories .fv .breadcrumb {
  margin-bottom: 4.3rem;
}
@media (max-width: 734px) {
  #stories .fv .breadcrumb {
    margin-bottom: 2.6rem;
  }
  #stories .fv__txt {
    line-height: 2.1rem;
  }
}

#single-work .fv {
  padding-top: 7rem;
}
#single-work .fv__wrap {
  position: relative;
}
#single-work .fv__wrap img {
  -o-object-fit: cover;
     object-fit: cover;
}
#single-work .fv__wrap .breadcrumb {
  position: absolute;
  top: 4.5rem;
  left: 10rem;
  color: #fff;
}
#single-work .fv__wrap .breadcrumb a,
#single-work .fv__wrap .breadcrumb li {
  color: #fff;
}
@media (max-width: 734px) {
  #single-work .fv {
    padding-top: 5.8rem;
  }
  #single-work .fv__wrap {
    position: relative;
  }
  #single-work .fv__wrap img {
    height: 20rem;
  }
  #single-work .fv__wrap .breadcrumb {
    top: 2.2rem;
    left: 1.8rem;
    color: #fff;
  }
  #single-work .fv__wrap .breadcrumb a,
  #single-work .fv__wrap .breadcrumb li {
    color: #fff;
  }
}

#profile .fv {
  padding: 13.3rem 0 6.4rem;
}
#profile .fv .breadcrumb {
  margin-bottom: 5rem;
}
#profile .fv__pagenavi {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 2rem;
}
#profile .fv__pagenavi--item {
  font-weight: 500;
  font-size: 2rem;
}
#profile .fv__pagenavi--item span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: #fff;
  background-color: #777777;
  transform: rotate(90deg);
  font-size: 1.2rem;
  margin-right: 1rem;
  vertical-align: text-top;
}
@media (max-width: 734px) {
  #profile .fv {
    padding: 9.3rem 0 3.4rem;
  }
  #profile .fv .breadcrumb {
    margin-bottom: 3rem;
  }
  #profile .fv__pagenavi {
    gap: 1.8rem 1rem;
  }
  #profile .fv__pagenavi--item {
    font-weight: 500;
    font-size: 1.4rem;
  }
  #profile .fv__pagenavi--item span {
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
    margin-right: 0.6rem;
  }
}

#faq .fv {
  padding-bottom: 6rem;
}
#faq .fv .breadcrumb {
  margin-bottom: 4.3rem;
}
@media (max-width: 734px) {
  #faq .fv {
    padding-bottom: 3rem;
  }
  #faq .fv .breadcrumb {
    margin-bottom: 2.6rem;
  }
  #faq .fv__txt {
    line-height: 2;
  }
}

/* ローダー全体 */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* ロゴ */
.loader__inner img {
  width: 50rem;
  opacity: 0;
  transform: translateY(10px);
  animation: logoFade 1.5s ease forwards;
}
@media (max-width: 734px) {
  .loader__inner img {
    width: 20rem;
  }
}

/* ロゴふわっと */
@keyframes logoFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* フェードアウト用 */
#loader.is-hide {
  opacity: 0;
  visibility: hidden;
}

.archive__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 1.6rem;
}
.archive__pagination .page-numbers {
  text-decoration: underline;
}
.archive__pagination .current {
  color: #1b1b18;
}
.archive__pagination .next, .archive__pagination .prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 4.1rem;
  border-radius: 100rem;
  background: #1b1b18;
  color: #fff;
  text-decoration: none;
}
.card {
  background: white;
  border: 1px solid black;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}
.card__header {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.card__body {
  font-size: 1rem;
  color: black;
  line-height: 1.5;
}
.card__footer {
  margin-top: 1rem;
  text-align: right;
}

.breadcrumb ul {
  display: flex;
  gap: 8px;
  list-style: none;
}

.breadcrumb li::after {
  content: ">";
  margin: 0 12px;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  text-decoration: underline;
  color: #333;
}

@media (max-width: 734px) {
  .breadcrumb a {
    text-decoration: underline;
    color: #333;
    font-size: 1.2rem;
  }
  .breadcrumb li {
    font-size: 1.2rem;
    color: #333;
  }
}
.header .menu-btn {
  background-color: transparent;
  border: none;
  width: 5.2rem;
  height: 1.5rem;
}
.header .menu-btn span {
  transition: transform 0.7s;
  z-index: 1000000000;
}
.header .contact {
  z-index: 1000000000;
}
.header button.menu-open {
  z-index: 1000000000;
}
.header button.menu-open > span {
  background-color: #fff;
}
.header button.menu-open > span:nth-child(1) {
  transform: translateY(6px) rotate(135deg);
}
.header button.menu-open > span:nth-child(2) {
  transform: translateX(-18px) scaleX(0);
}
.header button.menu-open > span:nth-child(3) {
  transform: translateY(-6px) rotate(-135deg);
}
.header .menu-open {
  transform: none !important;
  transition: transform 0.7s;
}
.header .drow {
  display: flex;
  flex-flow: column;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 30vw;
  height: 100vh;
  transform: translateX(100vh);
  z-index: 1000000;
  background: rgba(0, 0, 0, 0.7);
  transition: transform 0.7s;
}
@media (max-width: 734px) {
  .header .drow {
    width: 70vw;
  }
}

.nav__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 10rem;
  width: 30rem;
  margin: 10rem 0;
}
.nav__grid a {
  display: block;
  margin-bottom: 2rem;
}
@media (max-width: 734px) {
  .nav__grid {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10rem;
    width: 20rem;
    margin: 10rem 0;
  }
  .nav__grid a {
    display: block;
    margin-bottom: 2rem;
  }
}

.home .pc {
  display: block;
}
.home .sp {
  display: none !important;
}
.home .info {
  box-sizing: border-box;
}
.home .works {
  box-sizing: border-box;
}
.home .links {
  box-sizing: border-box;
}
.home .front__sns {
  position: absolute;
  right: 1.5rem;
  bottom: 3rem;
  z-index: 10000000;
}
.home .front__sns a {
  display: block;
  margin-bottom: 1rem;
}
.home .front__sns img {
  width: 2.5rem;
}
.home .info-inner {
  max-width: 900px;
  display: flex;
  margin: 0 auto;
  flex-flow: column;
  justify-content: center;
}
.home .info-inner .info-btn {
  width: 16rem;
  margin: auto;
}
.home .sro-btn {
  width: 15rem;
}
.home .hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.home .hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.home .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  animation: heroFade 18s infinite;
}
.home {
  /* ずらし */
}
.home .hero-bg1 {
  animation-delay: 0s;
}
.home .hero-bg2 {
  animation-delay: 6s;
}
.home .hero-bg3 {
  animation-delay: 12s;
}
.home {
  /* 重なるフェード */
}
@keyframes heroFade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.home .stories {
  padding: 100px 40px 50px;
}
.home .stories-title {
  margin-bottom: 20px;
}
.home .stories-main-wrap {
  position: relative;
}
.home .stories-main-link {
  display: block;
}
.home .stories-main {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
.home .stories-caption {
  margin-top: 1.6rem;
  margin-bottom: 1.2rem;
}
.home .stories-caption-link {
  color: inherit;
  text-decoration: none;
}
.home .stories-thumb {
  display: flex;
  gap: 1.2rem;
}
.home .stories-thumb-link {
  display: block;
}
.home .stories-thumb img {
  display: block;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 3/2;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .stories-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1;
}
.home .stories-prev {
  left: -22px;
}
.home .stories-next {
  right: -22px;
}
.home .stories-fade {
  opacity: 1;
  transition: opacity 2.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.home .stories-fade.is-hide {
  opacity: 0;
}
.home .stories-left {
  width: 50%;
  height: 44rem;
}
@media (max-width: 734px) {
  .home .pc {
    display: none;
  }
  .home .sp {
    display: block !important;
  }
  .home .od1 {
    order: 1;
  }
  .home .od2 {
    order: 2;
  }
  .home .od3 {
    order: 3;
  }
  .home .od4 {
    order: 4;
  }
  .home h2 {
    font-size: 2rem !important;
    letter-spacing: 10% !important;
  }
  .home .hero-bg {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home .hero {
    height: 95vh;
  }
  .home .hero {
    margin-top: 60px;
  }
  .home .front__sns.open__sns {
    position: fixed;
  }
  .home .hero-btn {
    background: #e60012;
    color: #fff;
    font-size: 14px;
    letter-spacing: 3px;
    padding: 0;
    width: 3rem;
    display: flex;
    width: 21.5rem;
    height: 6rem;
    justify-content: center;
    align-items: center;
  }
  .home .info {
    background: #f5f5f5;
    padding: 60px 0 40px;
    text-align: center;
  }
  .home .info-title {
    color: #777777;
    font-weight: 400;
    max-width: 33.6rem;
    margin-bottom: 1.6rem;
  }
  .home .info-inner {
    max-width: 33.6rem;
    margin: 0 auto;
  }
  .home .info-item .date {
    width: 100%;
    font-size: 13px;
  }
  .home .info-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: wrap;
    padding: 6px 0;
    margin: 0 auto;
    font-size: 13px;
    letter-spacing: 1px;
    color: #777777;
    gap: 0px;
  }
  .home .info-item .text {
    font-size: 1.4rem;
  }
  .home .works {
    padding: 6.5rem 0;
  }
  .home .works-inner {
    display: flex;
    flex-flow: column;
    gap: 4.5rem;
    max-width: 33.6rem;
    margin: 0 auto;
    align-items: flex-start;
  }
  .home .works-left {
    width: 100%;
    position: relative;
  }
  .home .works-icon img {
    position: absolute;
    right: 0;
    top: 0;
    width: 8.5rem;
    margin-right: 1.5rem;
  }
  .home .works-title {
    margin-top: 3rem;
    margin-bottom: 1.8rem;
  }
  .home .works-text {
    line-height: 2;
    color: #777;
    margin: 0;
  }
  .home .works-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .home .stories {
    padding: 5.5rem 0;
  }
  .home .stories-inner {
    max-width: 33.6rem;
    margin: 0 auto;
    flex-flow: column;
    gap: 1.5rem;
  }
  .home .stories-left {
    width: 100%;
    height: auto;
  }
  .home .stories-right {
    width: 100%;
    text-align: center;
  }
  .home .stories-text {
    line-height: 2;
    color: #777;
    margin-bottom: 0;
  }
  .home .stories-caption {
    font-size: 16px;
    color: #777777;
    margin-bottom: 1.8rem;
  }
  .home .stories-desc {
    font-size: 14px;
    margin-bottom: 2rem;
    line-height: 2;
  }
  .home .stories-title {
    margin-bottom: 1.8rem;
  }
  .home .stories-thumb img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-right: 1.5rem;
  }
  .home .stories-thumb.sp {
    display: flex !important;
  }
  .home .stories-arrow {
    width: 30px;
    height: 30px;
  }
  .home .stories-prev {
    left: -15px;
  }
  .home .stories-next {
    right: -15px;
  }
  .home .info-more {
    margin: 0 auto;
    width: 15rem;
  }
  .home .links {
    padding: 5.5rem 0;
  }
  .home .links-inner {
    max-width: 33.6rem;
    margin: 0 auto;
  }
  .home .links-top {
    display: flex;
    gap: 20px;
    flex-flow: column;
    margin-bottom: 50px;
  }
  .home .link-card {
    flex: 1;
    height: 100px;
    padding: 2rem;
  }
  .home .links-bottom {
    display: flex;
    flex-flow: column;
    gap: 0;
  }
  .home .link-item {
    padding: 1.55rem 3rem;
  }
  .home .bbn {
    border-bottom: none;
  }
  .home .link-arrow {
    width: 46px;
    height: 27px;
  }
  .home .link-item span {
    width: 46px;
    height: 27px;
  }
  .home {
    /* 共通 */
  }
  .home .link-card,
  .home .link-item {
    display: flex;
    align-items: center;
    padding: 2rem 3rem 1.6rem;
    flex: auto;
    height: auto;
  }
  .home {
    /* 見出し */
  }
  .home .link-card h3,
  .home .link-item h4 {
    margin-bottom: 1.8rem;
    line-height: 1;
  }
  .home {
    /* テキスト */
  }
  .home .link-card p,
  .home .link-item p {
    margin-top: 0;
    line-height: 1;
  }
  .home {
    /* 子要素のtransformリセット */
  }
  .home .link-card > div,
  .home .link-item > div {
    transform: none;
  }
}

#faq .faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 8.2rem;
}
#faq .faq__item {
  border-bottom: 1px solid #777777;
}
#faq .faq__item summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1.6rem 0 2.3rem;
  list-style: none;
  margin-top: 0;
}
#faq .faq__item summary::-webkit-details-marker {
  display: none;
}
#faq .faq__item:first-child summary {
  padding-top: 0;
  margin-top: 1.4rem;
}
#faq .faq__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #777777;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
}
#faq .faq__icon--a {
  background: #fff;
  color: #777777;
  border: #777777 solid 1px;
}
#faq .faq__question {
  flex: 1;
  line-height: 2;
  font-size: 1.6rem;
}
#faq .faq__toggle {
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
}
#faq .faq__toggle::before, #faq .faq__toggle::after {
  content: "";
  position: absolute;
  background: #777777;
}
#faq .faq__toggle::before {
  width: 100%;
  height: 1px;
  top: 46%;
  left: 0;
}
#faq .faq__toggle::after {
  width: 1px;
  height: 100%;
  left: 46%;
  top: 0;
}
#faq .faq__item[open] .faq__toggle::after {
  display: none;
}
#faq .faq__answer {
  display: flex;
  gap: 1rem;
  padding: 0 0 2rem;
  align-items: center;
}
#faq .faq__answer p {
  width: 54.4rem;
  line-height: 1.5;
  font-size: 1.6rem;
}
#faq .faq__link {
  text-decoration: underline;
}
@media (max-width: 734px) {
  #faq .faq__grid {
    grid-template-columns: 1fr;
  }
  #faq .faq__ttl span {
    padding-right: 0.5rem;
  }
  #faq .faq__icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.4rem;
    display: flex;
  }
  #faq .faq__question {
    line-height: 1.5;
    font-size: 1.4rem;
  }
  #faq .faq__item:first-child summary {
    margin-top: 3rem;
  }
  #faq .faq__item summary {
    padding: 1rem 0 0.9rem;
  }
  #faq .faq__answer {
    padding: 1.1rem 0 1rem;
  }
  #faq .faq__answer p {
    width: 27rem;
    line-height: 1.5;
    font-size: 1.4rem;
  }
}

#concept .c-view {
  padding-bottom: 27rem;
}
@media (max-width: 734px) {
  #concept .c-view {
    padding-bottom: 3rem;
  }
  #concept .c-view img {
    height: 20rem;
  }
}
#concept .concept__btn {
  display: inline-block;
  font-size: 1.6rem;
}
#concept .concept__btn::after {
  display: none;
}
#concept .concept h2 {
  line-height: 1;
  margin-bottom: 4rem;
}
#concept .concept h3 {
  font-size: 2rem;
  margin-bottom: 4rem;
  font-weight: 500;
}
#concept .concept h4 {
  font-size: 1.8rem;
  margin-bottom: 4rem;
  font-weight: 500;
}
#concept .concept p {
  line-height: 2;
  margin-bottom: 2rem;
}
#concept .concept p:last-child {
  margin-bottom: 0;
}
#concept .concept .bold {
  font-weight: bold;
}
#concept .concept .right {
  margin: 0 0 0 auto;
}
#concept .concept .center {
  margin: 0 auto;
}
#concept .concept .u-right {
  margin: auto 0 0 auto;
}
#concept .concept .u-right p {
  margin-bottom: 5rem;
}
#concept .concept .left {
  margin: 0 auto 0 0;
}
#concept .concept .t-center {
  text-align: center;
}
#concept .concept .top {
  align-items: start !important;
}
#concept .concept .pt0 {
  padding-top: 0 !important;
}
#concept .concept .pb0 {
  padding-bottom: 0;
}
#concept .concept .c3 {
  width: 43.1rem;
  margin: 0 auto;
}
#concept .concept .c4 {
  height: 44.7rem;
  width: auto;
  margin: 0 auto;
}
#concept .concept .c7 {
  width: 60rem !important;
  height: 62rem;
  width: auto;
}
#concept .concept .mb0 {
  margin-bottom: 0;
}
#concept .concept .mb1 {
  margin-bottom: 1rem;
}
#concept .concept .pb12 {
  padding-bottom: 12rem;
}
#concept .concept .mb21 {
  margin-bottom: 21rem;
}
#concept .concept .w45 {
  width: 45rem;
}
#concept .concept .w600 {
  max-width: 60.03rem;
}
#concept .concept__contents {
  padding-bottom: 8rem;
  max-width: 140rem;
  margin: 0 auto;
}
#concept .concept__txt--grid {
  display: grid;
  grid-template-columns: 23.2rem 1fr;
  align-items: center;
  gap: 3.3rem;
}
#concept .concept__txt--grid p {
  font-size: 1.4rem;
}
#concept .concept__txt--card {
  padding: 1.8rem 2rem 3.4rem;
  background-color: #f2f2f2;
  margin-bottom: 1rem;
}
#concept .concept__txt--card:last-child {
  margin-bottom: 0;
}
#concept .concept__grid {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 7.5rem;
  align-items: center;
}
#concept .concept__grid--txt {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
}
#concept .concept__grid--img img {
  height: auto;
  max-width: 100%;
  display: block;
}
#concept .concept__r-contents {
  position: relative;
}
#concept .concept__r-contents .concept__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
#concept .concept__r-contents .concept__grid--img img {
  right: 0;
  top: 0;
}
#concept .concept__l-contents {
  position: relative;
}
#concept .concept__l-contents .concept__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
#concept .concept__l-contents .concept__grid--img img {
  left: 0;
  top: 0;
}
@media (max-width: 734px) {
  #concept .concept .contents {
    max-width: 100%;
    width: 33.6rem;
    margin: 0 auto;
  }
  #concept .concept__contents {
    padding-bottom: 5rem;
  }
  #concept .concept h2 {
    margin-bottom: 2rem;
  }
  #concept .concept h3 {
    font-size: 1.6rem;
    margin-bottom: 2.3rem;
  }
  #concept .concept h4 {
    line-height: 2;
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  #concept .concept p {
    line-height: 2;
    font-size: 1.4rem;
  }
  #concept .concept .c3 {
    width: 25.6rem;
  }
  #concept .concept .g2 {
    gap: 2rem;
  }
  #concept .concept .g55 {
    gap: 5.5rem;
  }
  #concept .concept .g23 {
    gap: 2.3rem;
  }
  #concept .concept .h179 {
    height: 17.9rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #concept .concept .h200 {
    height: 20rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #concept .concept .h400 {
    height: 40rem;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  #concept .concept .mb21 {
    margin-bottom: 0;
  }
  #concept .concept .pb7 {
    padding-bottom: 7rem;
  }
  #concept .concept .pb12 {
    padding-bottom: 7.5rem;
  }
  #concept .concept .pb35 {
    padding-bottom: 3.5rem;
  }
  #concept .concept .pb85 {
    padding-bottom: 8.5rem;
  }
  #concept .concept .w336 {
    width: 33.6rem;
  }
  #concept .concept .w45 {
    width: 33.6rem;
  }
  #concept .concept__txt--grid {
    grid-template-columns: 1fr;
    gap: 3.3rem;
  }
  #concept .concept__r-contents .concept__grid--img, #concept .concept__l-contents .concept__grid--img {
    height: auto !important;
  }
  #concept .concept__r-contents .concept__grid--img img, #concept .concept__l-contents .concept__grid--img img {
    position: static;
    width: 100%;
  }
  #concept .concept__grid {
    gap: 3rem;
    grid-template-columns: 1fr !important;
  }
  #concept .concept__grid--img img {
    width: 33.6rem;
    height: auto;
    margin: 0 auto;
  }
  #concept .concept__grid--txt, #concept .concept__grid--txt.left, #concept .concept__grid--txt.right {
    width: 33.7rem;
    margin: 0 auto !important;
  }
  #concept .concept__grid .s-order1 {
    order: 1;
  }
  #concept .concept__grid .s-order2 {
    order: 2;
  }
}

@media (max-width: 734px) {
  #media .fv {
    padding-bottom: 2rem;
  }
}
#media .media {
  text-align: center;
  padding: 0.9rem 0 5rem;
}
#media .media__ttl {
  font-size: 1.6rem;
  letter-spacing: normal;
  padding-bottom: 5.6rem;
}
#media .media__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7rem;
}
#media .media__txtarea {
  padding: 2.6rem 2rem 2rem;
  border: 1px solid #dddddd;
  border-top: none;
}
#media .media__date {
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
  display: block;
}
#media .media__subttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.9rem;
}
#media .media__subtitling {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}
#media .media__txt {
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: -0.01rem;
}
@media (max-width: 734px) {
  #media .media__ttl {
    font-size: 1.4rem;
    text-align: left;
    letter-spacing: normal;
    padding-bottom: 4rem;
    line-height: 1.8rem;
  }
  #media .media__grid {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
  #media .media__subttl {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  #media .media__subtitling {
    font-size: 1.4rem;
  }
}

#our-story .c-view {
  padding-bottom: 27rem;
}
@media (max-width: 734px) {
  #our-story .c-view {
    padding-bottom: 15rem;
  }
  #our-story .c-view img {
    height: 20rem;
  }
}
#our-story .story p {
  line-height: 2;
  margin-bottom: 2rem;
}
#our-story .story p:last-child {
  margin-bottom: 0;
}
#our-story .story .pt0 {
  padding-top: 0;
}
#our-story .story .p0 {
  padding: 0;
}
#our-story .story .mb0 {
  margin-bottom: 0 !important;
}
#our-story .story__subttl {
  margin-top: -1rem;
  margin-bottom: 3.4rem;
}
#our-story .story__contents {
  padding: 4rem 0;
  max-width: 140rem;
  margin: 0 auto;
}
#our-story .story__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7.5rem;
  align-items: center;
}
#our-story .story__grid--txt {
  width: 48rem;
  max-width: 48rem;
  margin: 0 auto;
}
#our-story .story__grid--txt.right {
  margin: 0 0 0 auto;
}
#our-story .story__grid--txt.u-right {
  margin: auto 0 0 auto;
}
#our-story .story__grid--txt.u-right p {
  margin-bottom: 5rem;
}
#our-story .story__grid--txt.left {
  margin: 0 auto 0 0;
}
#our-story .story__grid--img img {
  height: auto;
  max-width: 100%;
  display: block;
}
#our-story .story__grid--img img.o2 {
  height: 45rem;
  width: auto;
  margin: 0 auto;
}
#our-story .story__grid--img img.o6 {
  height: 30.3rem;
  width: auto;
  margin: 0 0 0 auto;
}
#our-story .story__grid--img img.o12 {
  height: 42.8rem;
  width: auto;
  margin: 0 auto;
}
#our-story .story__r-contents {
  position: relative;
}
#our-story .story__r-contents .story__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
#our-story .story__r-contents .story__grid--img img {
  right: 0;
  top: 0;
}
#our-story .story__l-contents {
  position: relative;
}
#our-story .story__l-contents .story__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#our-story .story__l-contents .story__grid--img img {
  left: 0;
  bottom: 0;
}
@media (max-width: 734px) {
  #our-story .story p {
    display: inline;
  }
  #our-story .story .spt0 {
    padding-top: 0;
  }
  #our-story .story .contents {
    width: 100%;
    margin: 0 auto;
  }
  #our-story .story .p0 {
    padding: 2.5rem 0;
  }
  #our-story .story .p2030 {
    padding: 0 0 0.5rem;
  }
  #our-story .story__contents {
    padding: 2.5rem 0;
  }
  #our-story .story__subttl {
    margin-top: 0;
    margin-bottom: 1.8rem;
  }
  #our-story .story__r-contents .story__grid--img, #our-story .story__l-contents .story__grid--img {
    height: auto !important;
  }
  #our-story .story__r-contents .story__grid--img img, #our-story .story__l-contents .story__grid--img img {
    position: static;
    width: 100%;
  }
  #our-story .story__r-contents .story__grid--img img.o1, #our-story .story__l-contents .story__grid--img img.o1 {
    -o-object-fit: cover;
       object-fit: cover;
    height: 20rem;
  }
  #our-story .story__r-contents .story__grid--img img.o4, #our-story .story__l-contents .story__grid--img img.o4 {
    height: 40rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #our-story .story__grid {
    gap: 3rem;
    grid-template-columns: 1fr !important;
  }
  #our-story .story__grid--img img {
    width: 33.6rem;
    height: auto;
    margin: 0 auto;
  }
  #our-story .story__grid--img img.o2 {
    height: 33.8rem;
  }
  #our-story .story__grid--img img.o3, #our-story .story__grid--img img.o9, #our-story .story__grid--img img.o11, #our-story .story__grid--img img.o13 {
    -o-object-fit: cover;
       object-fit: cover;
    height: 20rem;
  }
  #our-story .story__grid--img img.o6 {
    width: 33.1rem;
    height: auto;
    margin: 0 auto;
  }
  #our-story .story__grid--img img.o7 {
    height: 40rem;
  }
  #our-story .story__grid--img img.o12 {
    height: 34rem;
  }
  #our-story .story__grid--txt, #our-story .story__grid--txt.left, #our-story .story__grid--txt.right {
    width: 33.7rem;
    margin: 0 auto !important;
  }
  #our-story .story__grid--txt.u-right p {
    margin-bottom: 2rem;
  }
  #our-story .story__grid .s-order1 {
    order: 1;
  }
  #our-story .story__grid .s-order2 {
    order: 2;
  }
}
#our-story .image {
  padding: 10rem 0 8.5rem;
}
#our-story .image__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}
#our-story .image__img {
  margin-bottom: 3.5rem;
}
#our-story .image__subttl {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (max-width: 734px) {
  #our-story .image {
    padding: 2rem 0 3.9rem;
  }
  #our-story .image__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #our-story .image__img {
    margin-bottom: 1.7rem;
  }
  #our-story .image__subttl {
    margin-bottom: 1.8rem;
  }
}
#our-story .want {
  text-align: center;
  margin: 40vh auto 50vh auto;
}
#our-story .want__subttl .sub {
  font-size: 0.66em;
  vertical-align: middle;
  margin: 0 1.5rem;
}
#our-story .want__subttl {
  margin-bottom: 3.5rem;
}
#our-story .want__main {
  display: block;
  font-size: 3.2rem;
  letter-spacing: 0.33rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 734px) {
  #our-story .want {
    padding-bottom: 5rem;
  }
  #our-story .want__subttl {
    margin-bottom: 2.5rem;
  }
  #our-story .want__main {
    display: block;
    font-size: 2.4rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  #our-story .want .sp-in {
    display: none;
  }
}

#profile section {
  padding: 6rem 0;
}
@media (max-width: 734px) {
  #profile section {
    padding: 2.5rem 0;
  }
}
#profile .profile {
  padding-top: 0;
}
#profile .profile__wrap {
  background: #222723 25.5vw;
}
#profile .profile__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 7.8rem 0;
}
#profile .profile__txtarea {
  margin: 0 0 0 auto;
  max-width: 53rem;
  width: 100%;
  color: #fff;
  margin-top: 0.8rem;
  position: relative;
}
#profile .profile__ttl {
  display: flex;
  align-items: center;
  margin-bottom: 4.2rem;
}
#profile .profile__ttl::before {
  content: "";
  background: url(../img/w-tag-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 2.9rem;
  margin-right: 2rem;
}
#profile .profile__name {
  font-size: 2.4rem;
  margin-bottom: 4.9rem;
}
#profile .profile__name span {
  font-size: 1.6rem;
  padding: 0.2rem 0 0 0.9rem;
  vertical-align: text-bottom;
  font-family: "Roboto", sans-serif;
}
#profile .profile__item {
  font-size: 1.6rem;
  padding: 1.8rem 0 1.7rem 1rem;
  border-bottom: 1px solid #fff;
  line-height: 1;
}
#profile .profile__item:first-child {
  padding-top: 0;
}
#profile .profile__b-name {
  position: absolute;
  bottom: 0;
  font-size: 3.8vw;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 734px) {
  #profile .profile {
    padding-bottom: 6.8rem;
  }
  #profile .profile__contents {
    max-width: 100%;
  }
  #profile .profile__wrap {
    background-color: #222723;
  }
  #profile .profile__grid {
    padding: 0;
    grid-template-columns: 1fr;
    margin-bottom: 2.4rem;
    padding-bottom: 1.7rem;
  }
  #profile .profile__imgarea {
    margin-bottom: 3.5rem;
  }
  #profile .profile__txtarea {
    max-width: 33.6rem;
    margin: 0 auto;
  }
  #profile .profile__ttl {
    margin-bottom: 2.5rem;
  }
  #profile .profile__ttl::before {
    content: "";
    width: 1.9rem;
    height: 1.9rem;
    margin-right: 1.3rem;
  }
  #profile .profile__name {
    font-size: 1.6rem;
    margin-bottom: 3.8rem;
  }
  #profile .profile__name span {
    font-size: 1.4rem;
    vertical-align: top;
  }
  #profile .profile__item {
    font-size: 1.4rem;
    padding: 1.8rem 0 1.5rem 1rem;
  }
  #profile .profile__list {
    margin-bottom: 1.7rem;
  }
  #profile .profile__b-name {
    position: static;
    font-size: 4rem;
    max-width: 33.6rem;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 2.2rem;
  }
}
#profile .staff {
  text-align: center;
}
#profile .staff__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4.7rem;
}
#profile .staff__ttl::before {
  content: "";
  background: url(../img/tag-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 2.9rem;
  margin-right: 2rem;
}
#profile .staff__txt {
  margin-bottom: 4.5rem;
}
#profile .staff__category {
  margin-bottom: 3.9rem;
}
#profile .staff__category--list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: solid #dddddd 1px;
}
#profile .staff__category--list li {
  cursor: pointer;
}
#profile .staff__category--list li.is-active {
  position: relative;
}
#profile .staff__category--list li.is-active::after {
  content: "";
  position: absolute;
  background-color: #777777;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: -2.1rem;
}
#profile .staff__category--list li__card {
  display: block;
}
#profile .staff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7rem;
}
#profile .staff__card img {
  margin-bottom: 2.5rem;
}
#profile .staff__card--ttl {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}
#profile .staff__card p {
  font-size: 1.8rem;
}
@media (max-width: 734px) {
  #profile .staff {
    padding-top: 0;
  }
  #profile .staff__ttl {
    margin-bottom: 2.5rem;
  }
  #profile .staff__ttl::before {
    content: "";
    width: 1.9rem;
    height: 1.9rem;
    margin-right: 1.3rem;
  }
  #profile .staff__txt {
    margin-bottom: 3.5rem;
  }
  #profile .staff__category {
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #profile .staff__category--list {
    width: 81rem;
  }
  #profile .staff__grid {
    grid-template-columns: 1fr;
  }
}
#profile .company__contents {
  max-width: 104rem;
}
#profile .company__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 7.6rem;
}
#profile .company__ttl::before {
  content: "";
  background: url(../img/tag-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 2.9rem;
  margin-right: 2rem;
}
#profile .company__dital {
  margin-bottom: 6rem;
}
#profile .company__list {
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-bottom: #dddddd 1px solid;
  padding: 1rem 0 0.9rem 1.4rem;
  line-height: 2;
}
#profile .company__list:first-of-type {
  padding-top: 0;
}
#profile .company__item--ttl {
  width: 21.5rem;
}
#profile .company__ggmap {
  height: 53.8rem;
}
@media (max-width: 734px) {
  #profile .company {
    padding-top: 4.1rem;
  }
  #profile .company__ttl {
    margin-bottom: 3.1rem;
  }
  #profile .company__ttl::before {
    content: "";
    width: 1.9rem;
    height: 1.9rem;
    margin-right: 1.3rem;
  }
  #profile .company__contents {
    max-width: 33.6rem;
  }
  #profile .company__list {
    padding-left: 0;
    flex-flow: column;
    text-align: left;
    align-items: start;
  }
  #profile .company__list li {
    font-size: 1.6rem;
  }
  #profile .company__item--ttl {
    width: 100%;
    line-height: 2;
  }
  #profile .company__item--txt {
    line-height: 1.5;
  }
  #profile .company__dital {
    margin-bottom: 3rem;
  }
  #profile .company__ggmap {
    height: 17.3rem;
  }
}

#real .real {
  padding-top: 1rem;
  text-align: center;
  padding-bottom: 5.4rem;
}
#real .real__ttl {
  font-size: 3.6rem;
  letter-spacing: normal;
  margin-bottom: 3.8rem;
}
#real .real__txt {
  margin-bottom: 8.2rem;
  letter-spacing: normal;
}
#real .real__txt--bottom {
  margin-bottom: 4.8rem;
  letter-spacing: normal;
}
#real .real__subttl {
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.24rem;
  margin-bottom: 3.8rem;
}
#real .real__subttl::before {
  content: "";
  background: url(../img/tag-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 2.9rem;
  margin-right: 2rem;
}
#real .real__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7rem;
  margin-bottom: 3.1rem;
}
#real .real__card--txtarea {
  padding: 2.7rem 2rem 1.7rem;
  border: solid 1px #dddddd;
  border-top: none;
}
#real .real__card--txtarea p {
  border-bottom: solid 1px #dddddd;
  line-height: 3.1rem;
}
#real .real__card--txtarea p:last-child {
  border-bottom: none;
}
#real .real__card--ttl {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: bold;
}
#real .real__card--img {
  position: relative;
}
#real .real__card.is-hidden {
  display: none;
}
#real .real__category {
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: #fff;
  background-color: #777777;
  padding: 0.6rem 1rem;
}
#real .real__category li {
  font-size: 1.4rem;
}
#real .real__more {
  display: flex;
  justify-content: center;
}
#real .real__more--btn {
  background-color: #000;
  color: #fff;
  width: 21rem;
  height: 4.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.6rem;
  border-radius: 10rem;
  border: none;
}
#real .real__more--btn span {
  color: #fff;
  position: absolute;
  right: 1.5rem;
  font-size: 3rem;
}
@media (max-width: 734px) {
  #real .real__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  #real .real__ttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 2.8rem;
  }
  #real .real__txt {
    margin-bottom: 4.6rem;
    line-height: 2.1rem;
  }
  #real .real__txt--bottom {
    margin-bottom: 1.2rem;
  }
  #real .real__subttl {
    font-size: 1.6rem;
    letter-spacing: 0.15rem;
    margin-bottom: 2.8rem;
  }
  #real .real__subttl::before {
    content: "";
    width: 1.9rem;
    height: 1.9rem;
    margin-right: 1rem;
  }
  #real .real__card--txtarea {
    padding: 2.7rem 2rem 2.1rem;
    border: solid 1px #dddddd;
    border-top: none;
  }
  #real .real__card--txtarea p {
    border-bottom: solid 1px #dddddd;
    line-height: 2.6rem;
  }
  #real .real__card--txtarea p:last-child {
    border-bottom: none;
  }
  #real .real__card--ttl {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.6rem;
  }
  #real .real__card--img {
    position: relative;
  }
  #real .real__category {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: #fff;
    background-color: #777777;
    padding: 0.6rem 1rem;
  }
  #real .real__category li {
    font-size: 1.4rem;
  }
  #real .real__more--btn {
    width: 29rem;
  }
}

#single .single__contents {
  max-width: 100rem;
  width: 100%;
  margin-bottom: 8rem;
}
#single .single h1 {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 4rem;
}
#single .single h2 {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  letter-spacing: 10%;
}
#single .single h3 {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  letter-spacing: 10%;
}
#single .single h4 {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  letter-spacing: 10%;
}
#single .single p {
  line-height: 2;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  letter-spacing: 0;
}
#single .single ul li {
  line-height: 2;
  font-size: 1.6rem;
  letter-spacing: 0;
}
#single .single img {
  margin-bottom: 4rem;
}
#single .single .fv__txt p {
  margin-bottom: 12px;
  line-height: 1.8;
}
@media (max-width: 734px) {
  #single .single__contents {
    max-width: 33.6rem;
    width: 100%;
  }
  #single .single h1 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  #single .single h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    letter-spacing: 0;
  }
  #single .single h3 {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    letter-spacing: 10%;
  }
  #single .single h4 {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    letter-spacing: 10%;
  }
  #single .single p {
    line-height: 2;
    font-size: 1.4rem;
  }
  #single .single ul li {
    line-height: 2;
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

#single-work .single-work__contents {
  max-width: 100rem;
  padding-bottom: 10rem;
}
#single-work .single-work h1 {
  font-size: 2.4rem;
  margin-bottom: 4.9rem;
  letter-spacing: 0.24rem;
}
#single-work .single-work h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
#single-work .single-work h2.single-work__subttl {
  margin-bottom: 5.6rem;
}
#single-work .single-work h3 {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
#single-work .single-work h4 {
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin-bottom: 1.2rem;
}
#single-work .single-work__txt-contents {
  margin-bottom: 5.6rem;
}
#single-work .single-work__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  padding-bottom: 6rem;
}
#single-work .single-work__info--table table {
  font-size: 1.6rem;
  width: 100%;
}
#single-work .single-work__info--table table tr {
  border-bottom: solid 1px #dddddd;
}
#single-work .single-work__info--table table tr th,
#single-work .single-work__info--table table tr td {
  text-align: left;
  padding: 2rem 0 1.5rem 1rem;
}
#single-work .single-work__info--table table tr:first-child th,
#single-work .single-work__info--table table tr:first-child td {
  padding-top: 0;
}
#single-work .single-work__info--tags ul {
  display: flex;
  align-items: center;
  gap: 2rem 1.5rem;
  flex-flow: wrap;
}
#single-work .single-work__info--tags ul li {
  font-size: 1.4rem;
}
#single-work .single-work {
  /* ギャラリー全体 */
}
#single-work .single-work .content-gallery .wp-block-gallery.has-nested-images {
  display: block !important; /* flex解除 */
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 4.5rem;
       column-gap: 4.5rem;
}
#single-work .single-work {
  /* 各画像（figure） */
}
#single-work .single-work .content-gallery .wp-block-gallery.has-nested-images .wp-block-image {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 4rem;
}
#single-work .single-work {
  /* 画像 */
}
#single-work .single-work .content-gallery .wp-block-gallery img {
  width: 100%;
  height: auto;
  display: block;
}
#single-work .single-work {
  /* 念のためfigure余白リセット */
}
#single-work .single-work .content-gallery .wp-block-gallery figure {
  margin: 0;
}
#single-work .single-work .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
  width: auto;
}
@media (max-width: 734px) {
  #single-work .single-work__contents {
    max-width: 33.6rem;
    padding-bottom: 0;
  }
  #single-work .single-work h1 {
    font-size: 1.8rem;
    letter-spacing: 0.15rem;
    line-height: 2.5rem;
    margin-bottom: 2.2rem;
  }
  #single-work .single-work h2.single-work__subttl {
    margin-bottom: 1.2rem;
  }
  #single-work .single-work p {
    line-height: 2.11rem;
  }
  #single-work .single-work__txt-contents {
    margin-bottom: 5rem;
  }
  #single-work .single-work__info {
    grid-template-columns: 1fr;
  }
  #single-work .single-work__info--table table {
    font-size: 1.4rem;
  }
  #single-work .single-work__info--table table tr {
    height: 6.29rem;
  }
  #single-work .single-work__info--table table tr th,
  #single-work .single-work__info--table table tr td {
    padding: 0 0 0 1rem;
    vertical-align: middle;
  }
  #single-work .single-work__info--table table tr th {
    width: 14rem;
  }
  #single-work .single-work .content-gallery .wp-block-gallery.has-nested-images {
    -moz-column-count: 1;
         column-count: 1;
  }
}

#single-other .single-other {
  padding-bottom: 12rem;
}
#single-other .single-other__contents.contents {
  max-width: 102.2rem;
}
#single-other .single-other__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem 6.7rem;
  align-items: center;
}
#single-other .single-other .attachment-post-thumbnail {
  margin: 0 auto;
  width: 85%;
}
#single-other .single-other .wp-block-gallery {
  display: contents;
}
#single-other .single-other .wp-block-image {
  width: 100% !important;
}
@media (max-width: 734px) {
  #single-other .single-other {
    padding-top: 1.6rem;
  }
  #single-other .single-other__contents.contents {
    max-width: 33.6rem;
  }
  #single-other .single-other__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.7rem;
  }
}

#stories .a-stories {
  padding-bottom: 5.4rem;
}
#stories .a-stories__images {
  width: 100%;
  overflow: hidden;
  padding-right: 8rem;
  margin-bottom: 2.7rem;
}
#stories .a-stories .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
#stories .a-stories__img {
  width: 49rem;
  height: 32.6rem;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
#stories .a-stories__img img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
#stories .a-stories .swiper-slide {
  width: auto !important;
}
#stories .a-stories__post {
  display: flex;
  align-items: center;
  margin-bottom: 6.9rem;
}
#stories .a-stories__meta {
  margin-left: 1rem;
}
#stories .a-stories__list {
  font-size: 1.4rem;
}
#stories .a-stories__ttl {
  font-size: 1.4rem;
  margin-left: 3.5rem;
}
@media (max-width: 734px) {
  #stories .a-stories__post {
    display: block;
  }
  #stories .a-stories__ttl {
    margin-left: 1rem;
  }
  #stories .a-stories__images {
    max-width: 33.6rem;
    margin: 0 auto 2.7rem;
    padding-right: 4rem;
  }
  #stories .a-stories__img {
    width: 31.5rem;
    height: 20.5rem;
  }
  #stories .a-stories__img img {
    width: auto;
    height: -webkit-fill-available;
    height: -moz-available;
    height: stretch;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

#work .tag {
  padding: 0 0 6rem;
}
#work .tag__flex {
  display: flex;
  align-items: flex-start;
  gap: 7.5rem;
  border-bottom: 1px solid #777777;
  padding-bottom: 2.6rem;
}
#work .tag__subttl {
  display: flex;
  align-items: center;
  width: 23%;
}
#work .tag__subttl::before {
  content: "";
  background: url(../img/tag-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 2.9rem;
  margin-right: 2rem;
}
#work .tag__categorys--list {
  display: flex;
  align-items: center;
  gap: 1.8rem 1rem;
  flex-flow: wrap;
}
#work .tag__categorys--item {
  font-size: 1.4rem;
  margin-top: 0.5rem;
}
@media (max-width: 734px) {
  #work .tag__flex {
    flex-flow: column;
    gap: 1.5rem;
  }
  #work .tag__subttl {
    width: 100%;
  }
  #work .tag__categorys--list {
    gap: 1rem;
  }
}
#work .work {
  padding-bottom: 5.4rem;
}
#work .work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7rem;
  margin-bottom: 3.5rem;
}
#work .work__box--txtarea {
  padding: 2.7rem 0;
}
#work .work__box--ttl {
  text-align: center;
  margin-bottom: 1.8rem;
}
#work .work__category--list {
  display: flex;
  align-items: center;
  gap: 2rem 0.5rem;
  flex-flow: wrap;
}
#work .work__category--item {
  font-size: 1.4rem;
  font-size: 10px;
  border: 1px solid #ccc;
  padding: 2px 6px;
}
#work .work .real__more {
  display: flex;
  justify-content: center;
}
#work .work .real__more--btn {
  background-color: #000;
  color: #fff;
  width: 21rem;
  height: 4.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.6rem;
  border-radius: 10rem;
  border: none;
}
#work .work .real__more--btn span {
  color: #fff;
  position: absolute;
  right: 1.5rem;
  font-size: 3rem;
}
@media (max-width: 734px) {
  #work .work__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #work .work__box--txtarea {
    padding: 1rem 0 0;
  }
  #work .work__box--ttl {
    text-align: center;
    margin-bottom: 10;
  }
  #work .work .real__more--btn {
    width: 29rem;
  }
}

#work-category .work__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}
#work-category .work__box--ttl {
  text-align: left;
  margin-bottom: 0;
  font-size: 1.4rem;
}
#work-category .work__box--txtarea {
  padding: 0.7rem 0;
}
@media (max-width: 734px) {
  #work-category .work__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.post-type-archive-photo #work .work__grid,
.tax-photo_category #work .work__grid {
  display: block;
  -moz-column-count: 4;
       column-count: 4;
  gap: 0;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.post-type-archive-photo #work .work__card,
.tax-photo_category #work .work__card {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 2rem;
}
@media (max-width: 734px) {
  .post-type-archive-photo #work .work__grid,
  .tax-photo_category #work .work__grid {
    display: block;
    -moz-column-count: 2;
         column-count: 2;
  }
  .post-type-archive-photo #work .work__card,
  .tax-photo_category #work .work__card {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    margin-bottom: 2rem;
  }
}

#others .others {
  padding-top: 1rem;
  text-align: center;
  padding-bottom: 11.4rem;
}
#others .others__ttl {
  font-size: 3.6rem;
  letter-spacing: normal;
  margin-bottom: 3.8rem;
}
#others .others__txt {
  margin-bottom: 5.2rem;
}
#others .others__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7rem;
  margin-bottom: 3.1rem;
}
#others .others__card {
  position: relative;
  border: #dddddd 1px solid;
  padding-bottom: 2rem;
}
#others .others__card--txtarea {
  border-top: none;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 3.1rem;
}
#others .others__card--txtarea--ttl {
  font-weight: bold;
}
#others .others__card--img {
  width: 85%;
  margin: 0 auto 5.5rem;
}
#others .others__card.is-hidden {
  display: none;
}
#others .others__more {
  display: flex;
  justify-content: center;
}
#others .others__more--btn {
  background-color: #000;
  color: #fff;
  width: 21rem;
  height: 4.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.6rem;
  border-radius: 10rem;
  border: none;
}
#others .others__more--btn span {
  color: #fff;
  position: absolute;
  right: 1.5rem;
  font-size: 3rem;
}
@media (max-width: 734px) {
  #others .others__grid {
    grid-template-columns: 1fr;
    gap: 2.1rem;
    margin-bottom: 5.1rem;
  }
  #others .others__ttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 2.8rem;
  }
  #others .others__txt {
    margin-bottom: 2.7rem;
    line-height: 2.1rem;
  }
  #others .others__txt--bottom {
    margin-bottom: 1.2rem;
  }
  #others .others__card--txtarea {
    bottom: 3.1rem;
  }
  #others .others__card--img {
    margin-bottom: 4rem;
  }
  #others .others__more--btn {
    width: 29rem;
  }
}

#archive .archive {
  padding-bottom: 5.4rem;
}
#archive .archive a {
  display: block;
  border-bottom: 1px dashed #dfdee6;
}
#archive .archive a:first-child {
  border-top: 1px dashed #dfdee6;
}
#archive .archive a:hover {
  background-color: #dfdee6;
}
#archive .archive__txtarea {
  display: grid;
  grid-template-columns: 1fr 6fr;
  align-items: center;
  max-width: 105rem;
  width: 100%;
  margin: 0 auto;
  height: 6rem;
}
#archive .archive__date {
  font-size: 1.2rem;
}
@media (max-width: 734px) {
  #archive .archive__txtarea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    max-width: 32rem;
    width: 100%;
    margin: 0 auto;
    height: auto;
    padding: 1rem;
  }
  #archive .archive__date {
    font-size: 1.4rem;
  }
  #archive .archive__ttl {
    font-size: 14px;
  }
}

#warranty .warranty {
  padding: 2rem 0;
}
#warranty .warranty__contents {
  max-width: 109rem;
  width: 100%;
}
#warranty .warranty__ttl {
  font-size: 3.2rem;
  letter-spacing: 0;
  font-weight: bold;
  margin-bottom: 2rem;
}
#warranty .warranty__txt {
  font-size: 2rem;
  margin-bottom: 7.2rem;
}
#warranty .warranty__txt--sub {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 734px) {
  #warranty .warranty {
    padding: 6.1rem 0 3.5rem;
    max-width: 32.1rem;
    margin: 0 auto;
    line-height: 2;
  }
  #warranty .warranty p {
    line-height: 2;
  }
  #warranty .warranty__txt {
    margin-bottom: 11.2rem;
  }
}
#warranty .support {
  padding-bottom: 3rem;
}
#warranty .support__contents {
  max-width: 131.1rem;
}
#warranty .support__img--top {
  margin-bottom: 5.6rem;
}
#warranty .support__img--area {
  max-width: 125.1rem;
  margin: 0 auto 10.7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 6rem;
}
#warranty .support__img--bottom {
  max-width: 116.9rem;
  margin: 0 auto;
}
#warranty .support__card--ttl {
  font-size: 1.8rem;
}
#warranty .support__card--txt {
  font-size: 1.5rem;
}
#warranty .support__txt {
  font-size: 2rem;
  max-width: 116.9rem;
  margin: 0 auto 4.2rem;
}
@media (max-width: 734px) {
  #warranty .support__txt {
    line-height: 2;
    max-width: 33.5rem;
    margin-bottom: 0;
  }
  #warranty .support__img--top {
    margin-bottom: 2.9rem;
  }
  #warranty .support__img--area {
    max-width: 33.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2rem;
  }
  #warranty .support__card--ttl {
    font-size: 1rem;
  }
  #warranty .support__card--txt {
    font-size: 0.8rem;
    line-height: 1.2;
  }
}

#page .page__contents {
  max-width: 100rem;
  width: 100%;
}
#page .page h2 {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  letter-spacing: 10%;
}
#page .page h3 {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  letter-spacing: 10%;
}
#page .page h4 {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  letter-spacing: 10%;
}
#page .page p {
  line-height: 2;
  font-size: 1.6rem;
  margin-bottom: 6rem;
}
#page .page ul li {
  line-height: 2;
  font-size: 1.6rem;
}
#page .page img {
  margin-bottom: 4rem;
}
@media (max-width: 734px) {
  #page .page__contents {
    max-width: 33.6rem;
    width: 100%;
  }
  #page .page h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  #page .page h3 {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    letter-spacing: 10%;
  }
  #page .page h4 {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    letter-spacing: 10%;
  }
  #page .page p {
    line-height: 2;
    font-size: 1.4rem;
    margin-bottom: 5rem;
  }
  #page .page ul li {
    line-height: 2;
    font-size: 1.6rem;
  }
}