@charset "UTF-8";
/*!
Theme Name: FLAG Inc.
Theme URL:
Author: FLAG Inc.
Author URL:
Version: 1.0
*/
.services-main {
  background: #d3d3d3;
  padding: 190px 0 160px;
  text-align: left;
  position: relative;
  overflow: hidden;
  /* 右側の画像枠：最大 448×520、縮むときも比率維持 */
  /* service-card だけは全体 section padding を無効化 */
  /* ついでに、全体の section h2 の padding-bottom:60px も無効化 */
}
.services-main::before {
  content: "";
  position: fixed;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  top: -5%;
  right: -10%;
  z-index: 0;
  pointer-events: none;
}
.services-main .services-inner {
  padding-inline: clamp(40px, 19.53125vw - 110px, 140px);
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 710px) {
  .services-main .services-inner {
    padding-inline: clamp(40px, 40px + (100vw - 480px) * 0.3043478261, 110px);
  }
}
@media screen and (max-width: 600px) {
  .services-main .services-inner {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 480px) {
  .services-main .services-inner {
    padding-inline: 40px;
  }
}
.services-main .services-header {
  margin-bottom: 40px;
}
.services-main .services-title {
  font-size: clamp(40px, 4vw, 45px);
  font-weight: 400;
  text-align: left;
}
.services-main .service-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 32px; /* 好きな角丸 */
  overflow: hidden; /* ← 角丸を画像にも効かせるため必須 */
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.services-main .service-card__text {
  font-size: 14px;
  line-height: 1.8;
  flex: 1 1 auto;
  padding: 150px clamp(40px, 2.857vw + 15.7px, 50px) 150px;
}
.services-main .service-card__text p {
  font-size: 14px;
}
.services-main .service-card__heading {
  font-size: 30px;
  margin-bottom: 30px;
  text-align: left;
}
.services-main .service-card__lead {
  font-weight: 600;
  margin-bottom: 20px;
}
.services-main .service-card__body {
  line-height: 1.8;
}
.services-main .service-card__image {
  flex: 0 0 auto;
  width: clamp(260px, 35vw, 448px); /* ← 最大448、縮む */
  aspect-ratio: 448/520; /* ← 幅に合わせて高さが自動で決まる */
  overflow: hidden;
}
.services-main .service-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* ← 枠いっぱい（トリミングあり） */
  object-position: center; /* 切り取り中心 */
}
.services-main section.service-card {
  padding: 0; /* ← これで上下の余白が消える */
}
.services-main section.service-card h2 {
  padding-bottom: 0;
}
@media screen and (max-width: 835px) {
  .services-main {
    padding: 130px 0 120px;
  }
  .services-main .service-card__text {
    padding: 110px 40px 110px 40px;
  }
  .services-main .services-header {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 710px) {
  .services-main {
    padding: 110px 0 120px;
  }
  .services-main .services-title {
    text-align: center;
  }
  .services-main .service-card {
    flex-direction: column;
  }
  .services-main .service-card__text {
    padding: 60px 40px;
  }
  .services-main .service-card__image {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 480px) {
  .services-main {
    padding: 110px 0 120px;
  }
  .services-main .service-card__text {
    padding: 40px 30px;
  }
  .services-main .service-card__text p {
    font-size: 12px;
  }
  .services-main .services-inner {
    gap: 40px;
  }
}

.works-archive {
  background: #d3d3d3;
  padding: 190px 0 160px;
  position: relative;
  overflow: visible;
  text-align: left;
  /* ✅ Worksアーカイブの時だけ丸を出す */
  /* 中身（グリッドやボタン、スライダーなど）は丸より手前に */
}
.works-archive .works-inner .works-header {
  margin-bottom: 100px;
}
.works-archive .works-title {
  font-size: clamp(40px, 4vw, 45px);
  font-weight: 400;
  text-align: left;
}
.works-archive .works-wrap {
  width: 100%;
  margin: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 20px;
}
@media screen and (max-width: 710px) {
  .works-archive .works-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.works-archive .works-wrap .works-link {
  width: 100%;
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
.works-archive .works-wrap .works-link:hover {
  color: inherit;
}
.works-archive .works-wrap .works-link:hover .works-thumbnail-wrap {
  background: linear-gradient(to right, #2f2f2f, #191818);
  /* 既存の背景エフェクトと同時に文字をフェードイン */
}
.works-archive .works-wrap .works-link:hover .works-thumbnail-wrap .works-thumbnail {
  opacity: 0.1; /* ← ホバーした時の画像の透明度 ０は真っ暗 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.works-archive .works-wrap .works-link:hover .works-thumbnail-wrap .works-overlay {
  opacity: 1;
  visibility: visible;
}
.works-archive .works-wrap .works-card {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1/1;
  background: #303030;
  padding: 8px 8px 10px;
  display: flex;
  flex-direction: column;
  color: #fff;
  border-radius: 5px;
  border: 1px solid rgb(129, 129, 129);
}
.works-archive .works-wrap .works-thumbnail-wrap {
  width: 100%;
  aspect-ratio: 16/9; /* ← 常に長方形を維持（レスポンシブ） */
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  background: #000;
  /* ===== ホバー時に表示されるタイトル・カテゴリ ===== */
}
.works-archive .works-wrap .works-thumbnail-wrap .works-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.works-archive .works-wrap .works-thumbnail-wrap .works-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none; /* クリックを妨げない */
}
.works-archive .works-wrap .works-thumbnail-wrap .works-overlay .works-category {
  font-size: clamp(10px, 1vw, 12px);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.works-archive .works-wrap .works-thumbnail-wrap .works-overlay .works-title {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: bold;
}
.works-archive .works-wrap .works-meta {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.works-archive .works-wrap .works-meta .works-title {
  font-size: 16px;
  line-height: 1.4;
}
.works-archive .works-wrap .works-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.works-archive .works-wrap .works-tag {
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.post-type-archive-works .works-archive::before {
  content: "";
  position: fixed;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  top: -5%;
  right: -10%;
  z-index: 0;
  pointer-events: none;
}
.works-archive h1,
.works-archive .works-wrap,
.works-archive .button-wrap,
.works-archive .works-slider {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 835px) {
  .works-archive {
    padding: 130px 0 120px;
  }
  .works-archive .works-inner .works-header {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 710px) {
  .works-archive {
    padding: 110px 0 120px;
  }
  .works-archive .works-title {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .works-archive {
    padding: 110px 0 120px;
  }
  .works-archive .works-inner {
    padding: 0 20px;
  }
  .works-archive .works-inner .works-header {
    margin-bottom: 40px;
  }
  .works-archive .works-wrap .works-card .works-meta .works-title {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* ================================
    共通コンテンツ幅（services以外）
================================ */
.value-inner,
.works-inner,
.news-inner,
.product-inner {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-inline: clamp(40px, 19.53125vw - 110px, 140px);
}
@media screen and (max-width: 710px) {
  .value-inner,
  .works-inner,
  .news-inner,
  .product-inner {
    padding-inline: clamp(40px, 40px + (100vw - 480px) * 0.3043478261, 110px);
  }
}
@media screen and (max-width: 600px) {
  .value-inner,
  .works-inner,
  .news-inner,
  .product-inner {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 480px) {
  .value-inner,
  .works-inner,
  .news-inner,
  .product-inner {
    padding-inline: 40px;
  }
}

#hero {
  width: 100%;
  height: 80vh;
  background-position: center;
  background-size: cover;
  background-image: url(images/background-hero.jpg);
  position: relative;
  background-repeat: no-repeat;
}
#hero .hero-inner {
  width: 100%;
  height: 100%;
}
#hero .hero-inner .hero-drop { /* ← 新設：位置・サイズをこちらへ移動 */
  position: absolute;
  top: 355px;
  left: 132px;
  width: 200px;
  height: 221px;
}
#hero .hero-inner .hero-tagline {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 221px;
  line-height: 240px;
  letter-spacing: 6.63px;
  text-align: center;
  opacity: 1;
  /* ⬇ パララックス用（JSがここを更新） */
  transform: translateX(0);
  will-change: transform;
  transition: none;
}
@media screen and (max-width: 480px) {
  #hero .hero-inner .hero-tagline {
    font-size: 6em;
  }
}
#hero .hero-inner .hero-tagline span {
  display: block;
  text-align: left;
}

/* hero-tagline を “横移動(parallax)の親 + 縦落下の子” に分離 */
#hero .hero-inner .hero-tagline {
  display: inline-flex; /* 子spanを横並びで制御しやすく */
  letter-spacing: 6.63px; /* 既存の追い込みそのまま活かせます */
}

/* 各文字の初期状態（画面上から） */
#hero .hero-inner .hero-tagline > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-100vh); /* 画面上の外から */
  will-change: transform, opacity;
}

/* 読み込み完了で各文字を順番に落下 */
.loaded #hero .hero-inner .hero-tagline > span {
  animation: flag-drop 1s ease-out both;
}

/* ディレイで “左→右” に順番落下 FLAGの各文字の落下開始の時間ここで調整（開始のズレをコントロール）*/
.loaded #hero .hero-inner .hero-tagline > span:nth-child(1) {
  animation-delay: 0.2s;
}

.loaded #hero .hero-inner .hero-tagline > span:nth-child(2) {
  animation-delay: 0.25s;
}

.loaded #hero .hero-inner .hero-tagline > span:nth-child(3) {
  animation-delay: 0.3s;
}

.loaded #hero .hero-inner .hero-tagline > span:nth-child(4) {
  animation-delay: 0.38s;
}

/* 落下キーフレーム（小さくバウンス） */
@keyframes flag-drop {
  0% {
    opacity: 0;
    transform: translateY(-100vh);
  }
  85% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(-4px);
  } /* ごく小さな跳ね返り */
}
@keyframes loaddone {
  0% {
    opacity: 0;
    transform: translateY(-100vh); /* 画面上の外からスタート */
  }
  85% {
    opacity: 1;
    transform: translateY(0); /* 所定の位置に着地 */
  }
  100% {
    transform: translateY(-4px); /* ごく小さなバウンス */
  }
}
/* 835px以下：FLAG落下地点を画面中央に */
@media screen and (max-width: 835px) {
  #hero .hero-inner {
    position: relative; /* absolute の基準 */
  }
  #hero .hero-inner .hero-drop {
    top: 50%; /* ←上下は変えたくない時は355pxにする */
    left: 50%;
    transform: translate(-50%, -50%); /* ←これが本体（中央寄せ） */
    /* PCの固定サイズがズレの原因になりやすいので解除 */
    width: fit-content;
    height: auto;
    /* 画面からはみ出す保険（必要なら） */
    max-width: 100%;
  }
}
.banner {
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 1000;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 835px) {
  .banner {
    bottom: auto;
    top: 0;
    position: fixed;
  }
}
.banner.is-sticky, .banner.banner-fixed {
  position: fixed;
  top: 0;
  bottom: auto;
  background-color: transparent;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.banner.is-sticky .grid, .banner.banner-fixed .grid {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  margin-top: 16px;
  position: relative;
}
.banner .grid {
  width: 96%;
  height: 60px;
  margin: auto;
  padding: 0 40px;
  background: transparent;
  border-radius: 9999px;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  position: relative; /* ← icon-menu の absolute 基準を白い枠にする */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner .grid .logo {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.12em;
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.banner .grid .logo:hover {
  fill: #2f2f2f;
}
.banner .navigation-wrap {
  text-align: center;
}
@media screen and (max-width: 835px) {
  .banner .navigation-wrap {
    display: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    width: 100%;
    height: 0;
    top: 0;
    right: 0;
    z-index: 998;
    padding-top: 50px;
  }
}
.banner .navigation-wrap ul {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 835px) {
  .banner .navigation-wrap .nav__list {
    display: block;
  }
}
.banner .navigation-wrap .nav__list .nav__list-item a {
  height: 50px;
  line-height: 50px;
  width: 130px;
  text-align: center;
  display: block;
  font-size: 1.2em;
  font-family: futura-pt, sans-serif;
  font-weight: 300;
  color: #191818;
}
@media screen and (max-width: 835px) {
  .banner .navigation-wrap .nav__list .nav__list-item a {
    width: auto;
    text-align: right;
    padding-right: 5%;
    color: #fff;
  }
}
.banner .navigation-wrap .nav__list .nav__list-item a:hover {
  color: #2f2f2f !important;
}
.banner [data-navicon=button] {
  display: flex; /* ← flexにして中央寄せ */
  align-items: center;
  height: 100%;
  margin: 0; /* ← 右端でズレるの防止 */
  padding: 0;
  line-height: 0; /* ← ここでも効く */
  border: none;
  background: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.banner [data-navicon=button] > * {
  display: block;
}
.banner [data-navicon=button]:focus {
  outline: none;
}
.banner .navicon {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 0;
  margin: 0;
}
.banner .navicon__lines {
  display: inline-block;
  width: 1.75rem;
  height: 0.1166666667rem;
  background: #222;
  border-radius: 0.125rem;
  transition: 0.3s;
  position: relative;
}
.banner .navicon__lines:after, .banner .navicon__lines:before {
  display: inline-block;
  width: 1.75rem;
  height: 0.1166666667rem;
  background: #222;
  border-radius: 0.125rem;
  transition: 0.3s;
  position: absolute;
  left: 0;
  content: "";
  -webkit-transform-origin: 0.125rem center;
  -ms-transform-origin: 0.125rem center;
  transform-origin: 0.125rem center;
}
.banner .navicon__lines:before {
  top: 0.4375rem;
}
.banner .navicon__lines:after {
  top: -0.4375rem;
}
.is--closed .banner .navicon__lines {
  -webkit-transform: scale3d(0.8, 0.8, 0.8);
  transform: scale3d(0.8, 0.8, 0.8);
}
.banner .navicon-x.is--closed .navicon__lines {
  background: transparent;
}
.banner .navicon-x.is--closed .navicon__lines:after, .banner .navicon-x.is--closed .navicon__lines:before {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: 0;
  width: 1.75rem;
}
.banner .navicon-x.is--closed .navicon__lines:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.banner .navicon-x.is--closed .navicon__lines:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.banner .icon-menu {
  display: none;
}
@media screen and (max-width: 835px) {
  .banner .icon-menu {
    display: block;
    position: static;
    margin-left: auto;
    height: 100%;
    display: flex; /* ← 中身を中央揃え */
    align-items: center; /* ← 縦中央 */
    justify-content: center; /* ← 横方向も安定 */
    line-height: 0; /* ← baselineズレ対策（超重要） */
    padding: 0; /* ← 余白でズレるの防止 */
    z-index: 1000;
  }
}
@media screen and (max-width: 835px) {
  .banner.is-open {
    /* WPの出力（menu-item）にも確実に当たる(ハンバーガー開いた時にフォントサイズ変わらなかったので追加） */
  }
  .banner.is-open .navigation-wrap {
    display: block;
    height: 100vh;
    /* 右側に縦メニューを置く（スクショのレイアウト） */
    display: flex;
    justify-content: center;
    padding-top: 110px; /* ロゴ/×の下に落とす */
  }
  .banner.is-open .navigation-wrap ul {
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: center; /* 中央揃え */
    gap: 28px; /* 行間 */
  }
  .banner.is-open .navigation-wrap ul > li > a {
    font-size: 24px !important; /* ハンバーガーメニューのフォントサイズ */
    line-height: 1.2;
    color: #fff;
    height: auto;
    width: auto;
    display: inline-block;
    text-align: center;
  }
  .banner.is-open .logo-image {
    fill: #fff;
  }
  .banner.is-open .navicon__lines {
    background: #fff;
  }
  .banner.is-open .navicon__lines:before, .banner.is-open .navicon__lines:after {
    background: #fff;
  }
}

.value {
  width: 100%;
  position: relative;
  overflow: hidden;
  /* 711px以上：valueだけ特別な上下余白 */
  /* ▼ 背景画像レイヤー */
}
@media screen and (min-width: 711px) {
  .value {
    padding-top: 160px;
    padding-bottom: 190px;
  }
}
.value .value-inner {
  max-width: 1280px;
  margin: 0 auto;
  /* 1280pxのとき140px、縮むと比例して小さく、最小40px（共通mixin） */
  padding-inline: clamp(40px, 19.53125vw - 110px, 140px);
  display: block;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 710px) {
  .value .value-inner {
    padding-inline: clamp(40px, 40px + (100vw - 480px) * 0.3043478261, 110px);
  }
}
@media screen and (max-width: 600px) {
  .value .value-inner {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 480px) {
  .value .value-inner {
    padding-inline: 40px;
  }
}
.value .value__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.value .value__image .value-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.value .value-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 700px;
}
.value .value-copy .value-tagline {
  color: #fff;
  margin: 0px;
  text-align: left;
  width: 425px;
  height: 37px;
  padding-bottom: 0; /* ← style.scss/section h2 の padding: 80px を打ち消す */
  margin-bottom: 28px; /* ← 正式な余白をmargin で作る */
}
.value .value-copy .value-lead {
  width: 100%;
  max-width: 640px;
  color: #fff;
  margin: 0 0 40px;
  white-space: nowrap;
  font-size: 18px;
}
.value .value-copy .value-text {
  width: 100%;
  max-width: 425px;
  margin: 0;
  color: #fff;
  white-space: normal;
  overflow-wrap: break-word;
}
@media screen and (max-width: 801px) {
  .value .value-copy .value-text {
    width: 90%;
  }
}
.value .value-copy .value-text p {
  text-align: justify;
  line-height: 2;
  font-size: 15px;
}
@media screen and (max-width: 600px) {
  .value .value-copy .value-tagline {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 710px) {
  .value .value-copy {
    align-items: center;
    width: 100%;
    max-width: none;
  }
  .value .value-copy .value-tagline,
  .value .value-copy .value-lead {
    width: 100%;
    max-width: none;
    text-align: center;
  }
  .value .value-copy .value-text {
    width: 100%;
    max-width: none; /* ← 425px制限を解除 */
    margin: 0;
  }
  .value .value-copy .value-text p {
    text-align: left;
    line-height: 2;
  }
  .value .value-text {
    width: 100% !important;
  }
}

.services .services-inner {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  /* 1280pxのとき140px、縮むと比例して小さく、最小40px（共通mixin） */
  padding-inline: clamp(40px, 19.53125vw - 110px, 140px);
}
@media screen and (max-width: 710px) {
  .services .services-inner {
    padding-inline: clamp(40px, 40px + (100vw - 480px) * 0.3043478261, 110px);
  }
}
@media screen and (max-width: 600px) {
  .services .services-inner {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 480px) {
  .services .services-inner {
    padding-inline: 40px;
  }
}
.services .services-inner .services-tagline {
  text-align: left;
}

/* 横並びラッパー */
.svc-row {
  padding: 0;
  margin: 0;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  /* カード下と3つのボタンの距離↓ここで調整 */
  margin-bottom: var(--svc-card-clearance, clamp(96px, 12vw, 160px));
  position: relative; /* 重なり制御の土台（保険） */
}

/* ベース（中の <img> を枠にフィット） */
.svc-swiper {
  position: relative;
  overflow: visible;
  /* ← スライドのはみ出しは隠す */
}
.svc-swiper .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.svc-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.svc-swiper .swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* 中央の画像スライド枠 */
.svc-swiper--center {
  /* 親（services-inner）に対して 53% 分を使う */
  flex: 0 0 53%;
  width: 53%;
  max-width: 530px;
  height: auto;
  aspect-ratio: 530/340; /* 比率はこれまで通り */
  overflow: visible;
  flex-shrink: 0;
  position: relative; /* カードの絶対配置はこの中を基準にする */
  z-index: 2;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* ===== Services 左右矢印の調整用トークン ===== */
:root {
  --svc-arrow-len: clamp(20px, 4vw, 40px); /* ▶︎ シェブロンの“辺の長さ” */
  --svc-arrow-stroke: 2px; /* ▶︎ 線の太さ（細くするなら 1px〜） */
  --svc-arrow-inset: clamp(30px, 5vw, 60px); /* ▶︎ 左右端からのオフセット */
  --svc-dim-opacity: .34; /* ホバー時の暗幕濃さ */
}

/* 左右は “1/4 サイズ相当” */
.svc-swiper--left,
.svc-swiper--right {
  /* 親（services-inner）に対して 23.5% ずつ割り当て */
  flex: 0 0 23.5%;
  width: 23.5%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 280/200;
  opacity: 0.95; /* ほんの少しだけ差を出すなら */
  cursor: pointer; /* カーソルを手にする */
  z-index: 1; /* カードより下にするための基準値 */
  position: relative; /* 擬似要素の基準にする */
  isolation: isolate; /* 子と擬似要素のZ順を分離（重要） */
  flex-shrink: 0;
  /* ▼ ホバー時の暗幕と矢印（クリックは画像に通すため pointer-events: none） */
}
.svc-swiper--left::after,
.svc-swiper--right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0, 0, 0, var(--svc-dim-opacity));
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 90;
}
.svc-swiper--left::before,
.svc-swiper--right::before {
  content: "";
  position: absolute;
  top: 50%;
  width: var(--svc-arrow-len);
  height: var(--svc-arrow-len);
  /* 右矢印形の“L”を45°回転： > */
  border-right: var(--svc-arrow-stroke) solid #fff;
  border-bottom: var(--svc-arrow-stroke) solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 91;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35)); /* ほんのり縁取り */
}
.svc-swiper--left:hover::after, .svc-swiper--left:hover::before,
.svc-swiper--right:hover::after,
.svc-swiper--right:hover::before {
  opacity: 1;
}

/* 右側だけ記号を「›」に変更 */
.svc-swiper--right::before {
  right: var(--svc-arrow-inset);
  transform: translateY(-50%) rotate(-45deg);
}

/* 位置調整：左は左寄せ／右は右寄せ（端からの距離は --svc-arrow-offset） */
.svc-swiper--left::before {
  left: var(--svc-arrow-inset);
  transform: translateY(-50%) rotate(135deg);
}

/* 念のため：左右の中身（.swiper）を下層へ固定 */
.svc-swiper--left .swiper,
.svc-swiper--right .swiper {
  position: relative;
  z-index: 1;
}

/* サイドは操作UI不要なら念のため非表示（中央だけ表示） */
.svc-swiper--left .swiper-pagination,
.svc-swiper--right .swiper-pagination,
.svc-swiper--left .swiper-button-prev,
.svc-swiper--left .swiper-button-next,
.svc-swiper--right .swiper-button-prev,
.svc-swiper--right .swiper-button-next {
  display: none;
}

/* カードの見た目＆配置 */
.svc-card {
  position: absolute;
  left: 50%;
  /* ★ 3枚の写真の縦方向の「中より少し下あたり」に固定 */
  top: 60%;
  transform: translateX(clamp(40px, 9vw, 120px));
  width: min(333px, 26.015625vw);
  max-width: 100%;
  height: auto;
  background: #F7F7F7;
  z-index: 10;
  overflow: hidden;
  box-sizing: border-box;
  /* ▼ ここがContainer Queryのスイッチ */
  container-type: inline-size;
}
.svc-card .services-text {
  /* 1280px以上: 14px / 1100px以下: 12px / 間はスムーズに変化 */
  font-size: clamp(12px, 12px + (100vw - 1100px) * 0.0111111111, 14px);
  line-height: 1.9;
  overflow-wrap: anywhere; /* ← 長い語のはみ出し対策（任意） */
}

/* 中身の体裁（お好みで） */
.svc-card__title {
  margin: 0 0 clamp(8px, 1.2vw, 12px);
  font-size: clamp(20px, 2vw, 28px);
}

/* ▼ テキストやスライドの“内側余白”をここで確実に付与 */
.svc-card-swiper .swiper,
.svc-card__pane {
  padding: clamp(16px, 2vw, 28px);
  box-sizing: border-box; /* パディング込みでサイズを安定させる */
}

/* 2ペインをカード内で重ねてスライドさせるための土台 */
.svc-card__pane {
  position: absolute;
  inset: 0; /* ← パディング内にフィット */
  will-change: transform;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 1;
}

.svc-card__pane.is-active {
  z-index: 2;
}

/* Swiper のナビUIがカードの下に潜らないよう少し上げる */
.svc-swiper--center .swiper-button-prev,
.svc-swiper--center .swiper-button-next,
.svc-swiper--center .swiper-pagination {
  z-index: 9;
}

/* ===== Servicesボタン（Another Sky風） 強制上書き ===== */
.svc-card .svc-view-more {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px !important;
  padding: 6px 18px !important; /* ← ボタンの高さと幅 */
  background: #fff !important;
  color: #111 !important;
  font-weight: 600;
  font-size: 12px !important; /* ← 文字の大きさ */
  letter-spacing: 0.05em;
  border: 1px solid #111 !important;
  border-radius: 24px !important;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: none !important; /* 念のため */
  font-family: futura-pt, sans-serif;
}
.svc-card .svc-view-more:hover {
  background: #c8c8c8 !important;
  border-color: #9c9c9c !important;
}

/* カード内のボタン用にマージンをリセット */
.svc-card .button-wrap {
  position: absolute;
  left: clamp(16px, 2vw, 28px); /* パディングと合わせて自然に配置 */
  bottom: clamp(16px, 2vw, 28px); /* 下に固定 */
  margin: 0; /* 共通のmarginを打ち消す */
  text-align: left; /* 左寄せ */
  width: auto; /* ボタン幅を自動 */
}

.svc-tabs {
  /* 画面中央寄せ & 1行センター配置 */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  margin-inline: auto;
  margin-top: clamp(16px, 2.2vw, 24px);
  user-select: none;
}

.svc-tab {
  cursor: pointer;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 23px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  border-bottom: 1px solid transparent;
  outline: none;
  font-weight: 700;
  color: var(--svc-tab-inactive, #BBB);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.svc-tab:hover,
.svc-tab:focus-visible {
  border-bottom-color: currentColor;
}

/* 中央に表示中のキー（アクティブ）は黒字 */
.svc-tab.is-active,
.svc-tab[aria-selected=true] {
  color: #111;
}

/* --------------------------------------------- */
/*  1279px〜601px：カードの横幅を少しずつ広げる    */
/*  ・基準は1280px時の見え方                     */
/*  ・右端の位置を固定して、左方向にだけ広げる   */
/* --------------------------------------------- */
@media screen and (max-width: 1279px) and (min-width: 601px) {
  .svc-card {
    /* 1280px 以上のレイアウトはそのままにしたいので
       このレンジだけ right 基準に切り替える */
    left: auto;
    right: -30%;
    transform: none;
    /* 横幅：1280px のとき → 333px（今と同じ）画面幅が小さくなるほど → 少しずつ広がる
       ただし広がりすぎ防止で最大 520px に制限 */
    width: clamp(333px, 333px + (1280px - 100vw) * 0.15, 335px);
  }
}
@media screen and (max-width: 710px) {
  .services .services-inner .services-tagline {
    text-align: center;
  }
  :root {
    --svc-tabs-mt: 150px; /* 上 */
    --svc-tabs-mb: 0; /* 下 */
  }
  /* card ↔ tabs の距離 */
  .svc-row {
    margin-bottom: var(--svc-gap);
  }
  /* tabs 自身の上下マージンを整理 */
  .svc-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    margin-inline: auto;
    margin-top: var(--svc-tabs-mt);
    margin-bottom: var(--svc-tabs-mb);
    user-select: none;
  }
}
/* ✅ 710px〜601pxの時だけ左右40pxにする（例外ゾーン） */
@media screen and (max-width: 710px) and (min-width: 601px) {
  .services .services-inner {
    padding-inline: 40px;
  }
}
/* --------------------------------------------- */
/*  ▼ 600px以下：Services を超シンプルな縦並びに */
/* --------------------------------------------- */
@media screen and (max-width: 600px) {
  .services .services-inner .services-tagline {
    text-align: center;
  }
  /* 600px以下では重なり順をフラットにする */
  .svc-row {
    position: relative;
    margin-bottom: var(--svc-gap);
    width: 100%;
    justify-content: center;
  }
  /* 3枚の写真：スマホでは中央の1枚だけでOKにする（左右を非表示） */
  .svc-swiper--left,
  .svc-swiper--right {
    position: absolute;
    top: 0;
    width: 40%;
    max-width: none;
    aspect-ratio: 16/11;
    pointer-events: none;
    z-index: 0;
    display: block;
    flex: none;
  }
  .svc-swiper--left {
    left: 0;
  }
  .svc-swiper--right {
    right: 0;
  }
  .svc-swiper--center {
    flex: none; /* ★これが最重要：53%縛りを解除 */
    width: 80%;
    max-width: none;
    margin: var(--svc-center-drop) auto 8px;
    position: relative;
    z-index: 1;
    aspect-ratio: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  /* 中身だけはみ出しを隠す（影は外枠に出す） */
  .svc-swiper--center .swiper {
    overflow: hidden;
    box-shadow: none;
    aspect-ratio: 530/340;
    height: auto;
  }
  /* カード：中央画像のすぐ下に全幅表示 */
  .svc-card {
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
    /* 念のため PC 用指定を再度打ち消し */
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: auto;
    aspect-ratio: auto;
    height: auto;
    overflow: hidden;
  }
  /* 中身は通常フローで縦並び */
  .svc-card__pane {
    position: static;
    inset: auto;
  }
  /* ボタンはカードの一番下に自然に配置 */
  .svc-card .button-wrap {
    position: static;
    text-align: left;
    margin-top: 16px;
  }
  :root {
    --svc-tabs-mt: 70px;
    --svc-tabs-mb: 0;
    --svc-center-drop: 90px;
  }
  /* タブも少し詰め気味で縦レイアウトに馴染ませる */
  .svc-tabs {
    margin-top: var(--svc-tabs-mt);
    margin-bottom: var(--svc-tabs-mb);
    position: static;
    z-index: auto;
  }
}
/* --------------------------------------------- */
/*  ▼ 480px以下：Services を超シンプルな縦並びに */
/* --------------------------------------------- */
@media screen and (max-width: 480px) {
  .services .services-inner .services-tagline {
    text-align: center;
  }
  /* 600px以下では重なり順をフラットにする */
  .svc-row {
    position: relative;
    display: block;
    padding-top: var(--svc-center-drop); /* ← ここで下げ幅を作る */
    margin-bottom: var(--svc-gap);
  }
  /* 3枚の写真：スマホでは中央の1枚だけでOKにする（左右を非表示） */
  .svc-swiper--left,
  .svc-swiper--right {
    position: absolute;
    top: 0;
    width: 50%;
    max-width: none;
    aspect-ratio: 4/3;
    pointer-events: none;
    z-index: 0;
    display: block;
  }
  .svc-swiper--left {
    left: -8%;
  }
  .svc-swiper--right {
    right: -8%;
  }
  .svc-swiper--center {
    flex: none;
    width: 100%; /* 画面幅いっぱい */
    max-width: none;
    margin: 0 auto 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    aspect-ratio: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .svc-swiper--center .swiper {
    aspect-ratio: 530/340;
    height: auto;
  }
  /* カード：中央画像のすぐ下に全幅表示 */
  .svc-card {
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
    /* 念のため PC 用指定を再度打ち消し */
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: auto;
    aspect-ratio: auto;
    height: auto;
    overflow: hidden;
  }
  /* 中身は通常フローで縦並び */
  .svc-card__pane {
    position: static;
    inset: auto;
  }
  /* ボタンはカードの一番下に自然に配置 */
  .svc-card .button-wrap {
    position: static;
    text-align: left;
    margin-top: 16px;
  }
  :root {
    --svc-tabs-mt: 60px;
    --svc-tabs-mb: 0;
    --svc-center-drop: 28%;
  }
  /* タブも少し詰め気味で縦レイアウトに馴染ませる */
  .svc-tabs {
    margin-top: var(--svc-tabs-mt);
    margin-bottom: var(--svc-tabs-mb);
    position: static;
    z-index: auto;
  }
}
.works-front {
  /* 全体：左・中央・右の3カラム */
  /* 左右は同じ幅 */
  /* 中央ブロックは残り全部 */
  /* 中央の中を左右に分割 */
  /* 大きい枠（縦に2マスぶん） */
  /* 小さい枠 2枚を横並びにする行 */
  /* 画像セル（全部正方形にする） */
}
.works-front .works-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  padding-inline: clamp(40px, 19.53125vw - 110px, 140px);
}
@media screen and (max-width: 710px) {
  .works-front .works-inner {
    padding-inline: clamp(40px, 40px + (100vw - 480px) * 0.3043478261, 110px);
  }
}
@media screen and (max-width: 600px) {
  .works-front .works-inner {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 480px) {
  .works-front .works-inner {
    padding-inline: 40px;
  }
}
.works-front .works-tagline {
  text-align: left;
}
.works-front .works-front-grid {
  display: flex;
  gap: 2px;
}
.works-front .works-front-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.works-front .works-front-col--left,
.works-front .works-front-col--right {
  flex: 0 0 30%;
}
.works-front .works-front-col--center {
  flex: 1 1 auto;
  display: flex;
  gap: 2px;
}
.works-front .works-front-center-left,
.works-front .works-front-center-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.works-front .works-front-large {
  flex: 2;
}
.works-front .works-front-row {
  flex: 1;
  display: flex;
  gap: 2px;
}
.works-front .works-front-row .works-front-item {
  flex: 1;
}
.works-front .works-front-item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  /* 正方形比率用ダミー */
}
.works-front .works-front-item::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.works-front .works-front-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  /* ▼ フワッと用 */
  opacity: 1;
  transition: transform 0.35s ease, opacity 1.2s ease;
}
.works-front .works-front-item:hover .works-front-image {
  transform: scale(1.06);
}

@media screen and (max-width: 710px) {
  .works-front {
    /* SP(600px以下)：Worksタイトルを中央寄せ */
    /* PCと同じ “写真間の余白(=2px)” を維持したまま、2段構成にする */
    /* 直下4カラムを “箱” として強制復活（display: contents 対策） */
    /* 中央ブロックも PC と同じ構造（左右2分割）を維持 */
    /* 上段：左大(3/5) + 中央左(2/5) ＝ PCと同じ比率 */
    /* 下段：中央右(2/5) + 右大(3/5) ＝ PCと同じ比率 */
    /* PCの “左右30%固定” をSPでは解除（2列グリッドに素直に乗せる） */
  }
  .works-front .works-tagline {
    text-align: center;
  }
  .works-front .works-front-grid {
    display: grid;
    /* 5分割：3:2 / 2:3 を作るため */
    grid-template-columns: repeat(5, 1fr);
    gap: 2px; /* ← PCの gap:2px を維持 */
    margin-bottom: 40px;
    /* コラージュ全体を小さくする（値は好みで調整） */
    max-width: min(480px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
  .works-front .works-front-grid > .works-front-col {
    display: flex !important;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    min-width: 0;
  }
  .works-front .works-front-grid > .works-front-col--center {
    display: flex !important;
    gap: 2px;
  }
  .works-front .works-front-center-left,
  .works-front .works-front-center-right {
    display: flex !important;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
  }
  .works-front .works-front-row {
    display: flex !important;
    gap: 2px;
  }
  .works-front .works-front-grid > .works-front-col--left {
    grid-column: 1/span 3; /* 1〜3 */
    grid-row: 1;
  }
  .works-front .works-front-grid > .works-front-col--center:nth-child(2) {
    grid-column: 4/span 2; /* 4〜5 */
    grid-row: 1;
  }
  .works-front .works-front-grid > .works-front-col--center:nth-child(3) {
    grid-column: 1/span 2; /* 1〜2 */
    grid-row: 2;
  }
  .works-front .works-front-grid > .works-front-col--right {
    grid-column: 3/span 3; /* 3〜5 */
    grid-row: 2;
  }
  .works-front .works-front-col--left,
  .works-front .works-front-col--right {
    flex: none;
  }
}
.news .news-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(40px, 19.53125vw - 110px, 140px);
}
@media screen and (max-width: 710px) {
  .news .news-inner {
    padding-inline: clamp(40px, 40px + (100vw - 480px) * 0.3043478261, 110px);
  }
}
@media screen and (max-width: 600px) {
  .news .news-inner {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 480px) {
  .news .news-inner {
    padding-inline: 40px;
  }
}
.news .news-tagline {
  text-align: left;
}
.news.section-black {
  background-color: #191818;
  color: red;
}
.news.section-black .news-category {
  border-color: #fff !important;
}
.news.section-black .lnr {
  fill: #fff !important;
}
.news.section-gray {
  background-color: #E5E5E5;
  color: #191818;
}
.news.section-gray .news-wrap .news-content {
  background-color: #fff;
  margin-bottom: 10px;
}
.news.section-gray .news-wrap .news-content:last-of-type {
  margin-bottom: 0;
}
.news.section-gray .news-wrap .news-content .lnr {
  right: 1em;
}
.news .news-wrap {
  margin: auto;
}
.news .news-wrap .news-content {
  position: relative;
  width: 100%;
  padding: 1em;
}
.news .news-wrap .news-content:hover {
  color: inherit;
}
@media screen and (max-width: 801px) {
  .news .news-wrap .news-content .news-content-body {
    display: block;
  }
}
@media screen and (max-width: 801px) {
  .news .news-wrap .news-content .news-postdate {
    display: inline-block;
  }
}
@media screen and (max-width: 801px) {
  .news .news-wrap .news-content .news-category-wrap {
    display: inline-block;
  }
}
.news .news-wrap .news-content .news-category {
  margin: 0 2em;
  border: 1px solid #000;
  font-size: 0.8em;
  padding: 0 1em;
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 801px) {
  .news .news-wrap .news-content .news-category {
    margin: 0 0 0 1em;
    font-size: 0.7em;
    width: 80px;
  }
}
.news .news-wrap .news-content .news-title {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 1em;
}
@media screen and (max-width: 801px) {
  .news .news-wrap .news-content .news-title {
    margin-top: 1em;
  }
}
.news .news-wrap .news-content .lnr {
  width: 0.8em;
  height: 0.8em;
  fill: #000;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media screen and (max-width: 801px) {
  .news .news-wrap .news-content .lnr {
    right: 1em;
  }
}
.news .button-wrap {
  width: 90%;
}
.news .button-wrap .button {
  background-color: #fff;
  color: #191818;
}
@media screen and (max-width: 710px) {
  .news .news-inner .news-tagline {
    text-align: center;
  }
}

.product {
  padding: 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #393939;
  /* ↓ 710px時：セクション上下余白を 100px にする */
  /* ↓ スマホ時：セクション上下余白を 100px にする */
}
.product .section-inner {
  padding: 150px 0 70px 0;
  margin: 0 auto;
  /* ★ ここでは左右余白を持たせない（max-width管理もしない） */
  padding-left: 0;
  padding-right: 0;
}
.product .product-tagline {
  text-align: left;
  margin: 0 0 clamp(24px, 5vw, 56px);
  padding-bottom: 0; /* ← style.scss/section h2 の padding: 80px を打ち消す */
  margin-bottom: 70px; /* ← 正式な余白をmargin で作る */
}
@media screen and (max-width: 710px) {
  .product .product-tagline {
    margin-bottom: 60px;
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .product .product-tagline {
    margin-bottom: 40px;
  }
}
.product .product-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(40px, 19.53125vw - 110px, 140px);
  width: 100%;
  justify-content: space-between;
  /* 最低100pxの余白を保証（広い時はもう少し広がる） */
  column-gap: clamp(20px, 6vw, 180px);
  /*↓ 縦並びの時は余白を作らないように*/
  row-gap: 0;
  /* 念のため：縦位置が揃いすぎて崩れるのを防ぐ */
  align-items: flex-start;
  /* まずは「縮む」→ それでも無理になったら（600px以下で）縦並びにする */
  flex-wrap: nowrap;
  /* ★ 左カラム（Product見出し + 本文） */
}
@media screen and (max-width: 710px) {
  .product .product-inner {
    padding-inline: clamp(40px, 40px + (100vw - 480px) * 0.3043478261, 110px);
  }
}
@media screen and (max-width: 600px) {
  .product .product-inner {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 480px) {
  .product .product-inner {
    padding-inline: 40px;
  }
}
.product .product-inner .product-content-title {
  padding-left: 50px;
  font-size: 16px;
  /* ▼ スマホ時だけ上書き */
}
@media screen and (max-width: 480px) {
  .product .product-inner .product-content-title {
    padding-left: 20px;
    font-size: 13px;
  }
}
.product .product-inner .product-left {
  /* 左は伸び縮みOK。ただし小さくなりすぎない */
  flex: 0 1 500px;
  width: auto;
  max-width: 500px;
  min-width: 300px;
  box-sizing: border-box;
}
@media screen and (max-width: 710px) {
  .product .product-inner .product-left {
    display: contents;
  }
}
@media screen and (max-width: 710px) {
  .product .product-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
.product .product-inner .product-content {
  width: 100%;
}
@media screen and (max-width: 710px) {
  .product .product-inner .product-content {
    width: 100%;
    order: 3;
    margin-top: 50px;
  }
}
.product .product-inner .product-content .product-content-header {
  margin-bottom: 40px;
}
.product .product-inner .product-content svg {
  width: 100px;
  height: 50px;
  fill: #2f2f2f;
  margin-right: 2em;
}
@media screen and (max-width: 801px) {
  .product .product-inner .product-content svg {
    margin-right: 0;
  }
}
.product .product-inner .product-content .product-content-footer p {
  text-align: justify;
  line-height: 2;
  white-space: normal;
  overflow-wrap: break-word;
  font-size: 15px;
}
.product .product-inner .product-content .product-content-footer .product-button-wrap {
  width: auto;
  text-align: center;
}
.product .product-inner .product-content .product-content-footer .product-button-wrap .button {
  font-size: 0.9em;
  background-color: #2f2f2f;
  color: #191818;
  padding: 13px 2em;
}
.product .product-inner .product-image-wrap {
  text-align: center;
  /* 画像側は基本サイズを確保（必要に応じて調整OK） */
  flex: 0 0 225px;
  min-width: 225px;
  flex-shrink: 0;
}
@media screen and (max-width: 801px) {
  .product .product-inner .product-image-wrap {
    order: 2;
  }
}
.product .product-inner .product-image-wrap .product-image-inner {
  width: 225px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 480px) {
  .product .product-inner .product-image-wrap .product-image-inner {
    width: 225px;
  }
}
.product .product-inner .product-image-wrap .product-image {
  height: 450px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .product .product-inner .product-image-wrap .product-image {
    height: 400px;
  }
}
.product .product-inner .product-image-wrap #slider {
  width: 201px;
  height: 398px;
  position: absolute;
  left: 50%;
  top: 41px;
  transform: translateX(-50%);
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .product .product-inner .product-image-wrap #slider {
    width: 178px;
    height: 355px;
    top: 36px;
  }
}
.product .product-inner .product-image-wrap ul {
  position: relative;
}
.product .product-inner .product-image-wrap li {
  float: left;
}
.product .product-inner .product-image-wrap .mock-image {
  width: 201px;
  height: 398px;
}
@media screen and (max-width: 480px) {
  .product .product-inner .product-image-wrap .mock-image {
    width: 178px;
    height: 355px;
  }
}
.product .button-wrap {
  width: 1024px;
  text-align: center;
}
@media screen and (min-width: 801px) and (max-width: 1025px) {
  .product .button-wrap {
    width: 800px;
  }
}
@media screen and (max-width: 801px) {
  .product .button-wrap {
    width: 90%;
  }
}
.product .button-wrap .button {
  background-color: #fff;
  color: #191818;
}
.product .gmark {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 25px;
  margin-bottom: 20px;
}
@media screen and (max-width: 710px) {
  .product .gmark {
    padding: 20px;
  }
}
@media screen and (max-width: 480px) {
  .product .gmark {
    padding: 15px;
  }
}
.product .gmark svg {
  display: block;
  margin: auto;
  width: 300px;
  height: 50px;
}
@media screen and (max-width: 480px) {
  .product .gmark svg {
    width: 200px;
  }
}
@media screen and (max-width: 710px) {
  .product .section-inner {
    padding: 100px 0;
  }
}
@media screen and (max-width: 480px) {
  .product .section-inner {
    padding: 60px 0;
  }
}

.client .swiper-wrapper {
  transition-timing-function: linear;
  padding: 25px 0;
}
.client .swiper-wrapper img {
  width: 100%;
  height: auto;
}

#footer {
  padding: 50px 0;
  background-color: #191818;
  color: #fff;
  position: relative;
  z-index: 5;
}
#footer .social-icon-list {
  text-align: center;
}
#footer .social-icon-list .social {
  margin-right: 25px;
  padding: 1em;
}
#footer .social-icon-list .social:last-of-type {
  margin-right: 0;
}
#footer .footer-inner {
  padding: 50px 0;
}
#footer .footer-inner li {
  margin-right: 50px;
}
#footer .footer-inner li:last-of-type {
  margin-right: 0;
}
#footer .copylight {
  text-align: center;
}

.single-page {
  width: 50%;
  margin: 50px auto;
  padding: 100px 0;
}
@media screen and (max-width: 801px) {
  .single-page {
    width: 90%;
  }
}
.single-page .single-title {
  font-size: 1.5em;
  text-align: left;
  line-height: 1.5;
}
@media screen and (max-width: 801px) {
  .single-page .single-title {
    font-size: 1.2em;
  }
}
.single-page .news-postdate-wrap {
  margin-top: 25px;
}
.single-page .news-postdate-wrap .news-category {
  margin-left: 2em;
  border: 1px solid #000;
  font-size: 0.8em;
  padding: 0 1em;
  width: 100px;
  text-align: center;
}
.single-page .page-content {
  padding-top: 50px;
}
.single-page .page-content .single-content {
  text-align: justify;
  word-break: break-all;
}
.single-page .page-content .single-thumbnail {
  width: 100%;
  height: 0;
  padding-top: 52.5%;
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}
.single-page .page-content img {
  width: 100%;
}
.single-page .page-content a {
  text-decoration: underline;
}
.single-page .page-content .works-content {
  margin-top: 50px;
}
.single-page .works-movie,
.single-page .iframe-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  cursor: pointer;
}
.single-page .works-movie iframe,
.single-page .iframe-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.single-page .works-category {
  margin-top: 15px;
}
.single-page .works-list {
  padding-top: 100px;
}
@media screen and (max-width: 480px) {
  .single-page .works-list {
    padding-top: 50px;
  }
}
.single-page .works-list .list-tr {
  width: 100%;
  margin-bottom: 25px;
}
.single-page .works-list .list-tr:last-of-type {
  margin-bottom: 0;
}
.single-page .works-list .list-tr .list-th {
  width: 30%;
}

.company .company-inner {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 480px) {
  .company .company-inner {
    width: 90%;
  }
}
.company .company-inner h3 {
  padding-bottom: 50px;
  font-size: 1.3em;
  font-weight: bold;
}
.company .company-inner .company-list-wrap .company-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .company .company-inner .company-list-wrap .company-list {
    width: 100%;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 480px) {
  .company .company-inner .company-list-wrap .company-list:last-of-type {
    margin-bottom: 0;
  }
}
.company .company-inner .company-list-wrap .company-list .list-tr {
  width: 50%;
  margin-bottom: 25px;
  display: flex;
}
@media screen and (max-width: 480px) {
  .company .company-inner .company-list-wrap .company-list .list-tr {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .company .company-inner .company-list-wrap .company-list .list-tr:nth-of-type(2) {
    order: 5;
  }
  .company .company-inner .company-list-wrap .company-list .list-tr:nth-of-type(4) {
    order: 6;
  }
  .company .company-inner .company-list-wrap .company-list .list-tr:nth-of-type(6) {
    order: 7;
  }
  .company .company-inner .company-list-wrap .company-list .list-tr:nth-of-type(8) {
    order: 8;
  }
}
.company .company-inner .company-list-wrap .company-list .list-tr:last-of-type {
  margin-bottom: 0;
}
.company .company-inner .company-list-wrap .company-list .list-tr .list-th {
  width: 30%;
}
@media screen and (max-width: 480px) {
  .company .company-inner .company-list-wrap .company-list .list-tr .list-th {
    width: auto;
    font-weight: bold;
    margin-bottom: 5px;
  }
}
.company .company-inner .company-list-wrap .company-list .list-tr .list-td {
  width: 70%;
}
@media screen and (max-width: 480px) {
  .company .company-inner .company-list-wrap .company-list .list-tr .list-td {
    width: auto;
  }
}
.company .company-inner .company-list-wrap .company-list .list-tr .list-td ul {
  margin-bottom: 10px;
}
.company .company-inner .company-list-wrap .company-list .list-tr .list-td ul:last-of-type {
  margin-bottom: 0;
}
.company #map-canvas {
  max-width: 100%;
  height: 335px;
  padding: 0;
  margin-top: 100px;
}
@media screen and (max-width: 480px) {
  .company #map-canvas {
    height: 300px;
  }
}
@media screen and (min-width: 480px) and (max-width: 801px) {
  .company #map-canvas {
    height: 280px;
  }
}
.company #map-canvas img {
  max-width: none;
}
.company #infowindow-content ul {
  list-style: none;
  padding: 0;
}
.company #infowindow-content li {
  padding-bottom: 3px;
  color: #000;
}
.company #infowindow-content .btn {
  margin-bottom: 0;
  margin-top: 1em;
  background-color: #2f2f2f;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 5px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
}

#contact {
  width: 70%;
  margin: auto;
}
@media screen and (max-width: 801px) {
  #contact {
    width: 100%;
  }
}
#contact .contact-description {
  margin-bottom: 50px;
}
#contact .wpcf7-list-item {
  display: block;
  margin: 0;
}
#contact .contact-box-text {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.8;
  position: relative;
}
#contact .inquiry {
  position: relative;
  background: #f7f7f7;
  display: inline-block !important;
  width: 50%;
}
#contact .inquiry:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0.7em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
  z-index: 10;
}
#contact select {
  width: 100%;
  cursor: pointer;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 38px;
  padding: 10px 25px 10px 10px;
  line-height: 1;
  border: none;
}
#contact select:focus {
  background-color: #fff;
}
#contact .checkbox-text {
  text-align: center;
  margin: 30px;
}
#contact .wpcf7 {
  font-size: 0.8em;
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  #contact .wpcf7 {
    font-size: 0.9em;
  }
}
#contact .wpcf7 dl {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  #contact .wpcf7 dl {
    margin-bottom: 2em;
  }
}
#contact .wpcf7 dt {
  position: relative;
  margin-bottom: 5px;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  #contact .wpcf7 dt {
    margin-bottom: 0.5em;
  }
}
#contact .wpcf7 dt .label {
  margin-top: -1px;
  display: inline-block;
  padding: 3px 4px 2px;
  color: #fff;
  font-size: 0.74em;
  font-weight: normal;
  margin-right: 10px;
  border-radius: 2px;
}
#contact .wpcf7 dt .required {
  background-color: #e11619;
}
#contact .wpcf7 dt .optional {
  background-color: #ccc;
}
#contact .wpcf7 dd {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}
#contact .wpcf7 dd .wpcf7-radio .wpcf7-list-item {
  display: block;
}
#contact .wpcf7 .wpcf7-text,
#contact .wpcf7 .wpcf7-date {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  height: 38px;
}
#contact .wpcf7 .wpcf7-text:focus,
#contact .wpcf7 .wpcf7-date:focus {
  background-color: #fff;
  border: 1px solid #fff;
  border-bottom: 1px solid #dddddd;
}
#contact .wpcf7 .wpcf7-textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
#contact .wpcf7 .wpcf7-textarea:focus {
  background-color: #fff;
  border: 1px solid #fff;
  border-bottom: 1px solid #dddddd;
}
#contact .wpcf7 .wpcf7-number {
  width: 10%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  height: 38px;
}
#contact .wpcf7 .wpcf7-number:focus {
  background-color: #fff;
  border: 1px solid #fff;
  border-bottom: 1px solid #dddddd;
}
#contact .wpcf7 .wpcf7-submit {
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding: 5px 30px;
  border: 1px solid #000;
  color: #fff;
  border-radius: 50px;
  background-color: #222;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 16px;
}
#contact .wpcf7 .wpcf7-submit:active, #contact .wpcf7 .wpcf7-submit:hover {
  text-decoration: none;
  color: #222;
  border-color: #222;
  background: #ddd;
}
#contact .wpcf7 .wpcf7-submit span {
  display: inline-block;
  position: relative;
  padding-right: 0;
  -webkit-transition: padding-right 0.5s;
  -o-transition: padding-right 0.5s;
  transition: padding-right 0.5s;
}
#contact .wpcf7 .wpcf7-submit span:after {
  content: " ";
  position: absolute;
  top: 0;
  right: -18px;
  opacity: 0;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  background: rgba(0, 0, 0, 0);
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  -webkit-transition: opacity 0.5s, top 0.5s, right 0.5s;
  -o-transition: opacity 0.5s, top 0.5s, right 0.5s;
  transition: opacity 0.5s, top 0.5s, right 0.5s;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#contact .wpcf7 .wpcf7-submit:active span, #contact .wpcf7 .wpcf7-submit:hover span {
  padding-right: 30px;
}
#contact .wpcf7 .wpcf7-submit:active span:after,
#contact .wpcf7 .wpcf7-submit:hover span:after {
  -webkit-transition: opacity 0.5s, top 0.5s, right 0.5s;
  -o-transition: opacity 0.5s, top 0.5s, right 0.5s;
  transition: opacity 0.5s, top 0.5s, right 0.5s;
  opacity: 1;
  border-color: #fff;
  right: 0;
  top: 50%;
}
#contact .wpcf7 input,
#contact .wpcf7 textarea {
  outline: none !important;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font-size: 0.9em;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#contact .wpcf7 input:focus,
#contact .wpcf7 textarea:focus {
  -webkit-box-shadow: 0 0 7px #2f2f2f;
  box-shadow: 0 0 7px #2f2f2f;
  border: 1px solid #2f2f2f;
}
#contact .wpcf7 input[type=radio] {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}
#contact .wpcf7 .accept {
  text-align: center;
  margin: 100px 0;
}
#contact .wpcf7 input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
#contact .wpcf7 input[type=checkbox] + span {
  position: relative;
  cursor: pointer;
  padding: 0;
}
#contact .wpcf7 input[type=checkbox] + span:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: #ddd;
}
#contact .wpcf7 input[type=checkbox]:hover + span:before {
  background: #2f2f2f;
}
#contact .wpcf7 input[type=checkbox]:focus + span:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
#contact .wpcf7 input[type=checkbox]:checked + span:before {
  background: #2f2f2f;
}
#contact .wpcf7 input[type=checkbox]:checked + span:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  #contact .wpcf7 dl {
    display: table;
    width: 100%;
    border-top: 1px solid #ccc;
    margin-bottom: 0;
    -webkit-margin-before: 0;
  }
  #contact .wpcf7 dl:first-of-type {
    border: none;
  }
  #contact .wpcf7 dt {
    display: table-cell;
    width: 35%;
    margin-bottom: 0;
    padding: 32px 20px 20px;
    height: 38px;
  }
  #contact .wpcf7 dt .label {
    position: absolute;
    right: 20px;
    margin-right: 0;
  }
  #contact .wpcf7 dd {
    display: table-cell;
    width: 65%;
    padding: 20px;
  }
  #contact .wpcf7 .wpcf7-text {
    padding: 10px;
  }
}
#contact .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
#contact .ajax-loader {
  display: block !important;
  margin: 1em auto;
}
#contact .contact-button-wrap {
  margin-top: 50px;
  text-align: center;
}
#contact .wpcf7-not-valid-tip {
  margin-top: 1em;
}

.loadingAnim {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.loadingAnim:before, .loadingAnim:after {
  line-height: 1;
  position: fixed;
  z-index: 1002;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  margin-right: auto;
  margin-left: auto;
  content: " ";
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: 0.6s;
  background-color: #2f2f2f;
}
.loadingAnim:before {
  top: 0;
}
.loadingAnim:after {
  bottom: 0;
}

.loaded .loadingAnim:before {
  height: 0;
  -webkit-transform: translateY(-1%);
  -ms-transform: translateY(-1%);
  transform: translateY(-1%);
}
.loaded .loadingAnim:after {
  height: 0;
  -webkit-transform: translateY(1%);
  -ms-transform: translateY(1%);
  transform: translateY(1%);
}

.loadingAnim_line {
  line-height: 1;
  position: fixed;
  z-index: 1003;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 160px;
  height: 1.25em;
  margin: auto;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: 0.6s;
  text-align: center;
}
.loadingAnim_line:after {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto auto auto 0;
  content: " ";
  -webkit-animation: loadingAnim 2s ease-in-out 0.1s infinite normal backwards;
  animation: loadingAnim 2s ease-in-out 0.1s infinite normal backwards;
  background-color: #fff;
  will-change: transform, width;
}
.loadingAnim_line:before {
  font-family: "Poppins", sans-serif;
  font-size: 1.25em;
  font-weight: bold;
  font-style: normal;
  line-height: 1;
  display: block;
  content: "LOADING";
  -webkit-animation: loadingAnim_text 1s ease 0.1s infinite alternate both;
  animation: loadingAnim_text 1s ease 0.1s infinite alternate both;
  letter-spacing: 0.5em;
  color: #fff;
  will-change: opacity;
}

.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0;
}
.loaded .loadingAnim_line:after {
  -webkit-animation: none;
  animation: none;
}
.loaded .loadingAnim_line:before {
  -webkit-animation: none;
  animation: none;
  content: "LOADED!";
}

@-webkit-keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@-webkit-keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #cba166;
  }
  50% {
    color: #333;
  }
  100% {
    opacity: 0.5;
    color: #fff;
  }
}
@keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #cba166;
  }
  50% {
    color: #333;
  }
  100% {
    opacity: 0.5;
    color: #fff;
  }
}
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-arround {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.m25 {
  margin: 25px 0 !important;
}

.m50 {
  margin: 50px 0 !important;
}

.m1 {
  margin: 1em 0 !important;
}

.m2 {
  margin: 2em 0 !important;
}

.m3 {
  margin: 3em 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt1 {
  margin-top: 1em !important;
}

.mt2 {
  margin-top: 2em !important;
}

.mt3 {
  margin-top: 3em !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb1 {
  margin-bottom: 1em !important;
}

.mb2 {
  margin-bottom: 2em !important;
}

.mb3 {
  margin-bottom: 3em !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.p25 {
  padding: 25px 0 !important;
}

.p50 {
  padding: 50px 0 !important;
}

.p1 {
  padding: 1em 0 !important;
}

.p2 {
  padding: 2em 0 !important;
}

.p3 {
  padding: 3em 0 !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt1 {
  padding-top: 1em !important;
}

.pt2 {
  padding-top: 2em !important;
}

.pt3 {
  padding-top: 3em !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb1 {
  padding-bottom: 1em !important;
}

.pb2 {
  padding-bottom: 2em !important;
}

.pb3 {
  padding-bottom: 3em !important;
}

.text-underline {
  text-decoration: underline;
}

.text-bold {
  font-weight: bold;
}

.wrap-60 {
  width: 60% !important;
  margin: auto !important;
}
@media screen and (max-width: 480px) {
  .wrap-60 {
    width: 90% !important;
  }
}

.wrap-90 {
  width: 90% !important;
  margin: auto !important;
}

.wrap-100 {
  width: 100% !important;
}

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
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 display-role reset for older browsers */
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;
}

.admin-bar .is-sticky,
.admin-bar .banner-fixed {
  top: 32px;
}

body {
  font-weight: 300;
  color: #222;
  background-color: #fff;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
}
body.pined {
  overflow: hidden;
  height: 100%;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html.pinned {
  overflow: hidden;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1 {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
}

h2 {
  font-size: clamp(35px, 4vw, 37px);
  font-weight: 500;
  text-align: center;
  font-family: classico-urw, sans-serif;
}
h2 span {
  font-size: 1.5em;
}
@media screen and (max-width: 480px) {
  h2 {
    font-size: 1.5em;
  }
}

p {
  font-size: 0.9em;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  p {
    font-size: 0.8em;
  }
}

.en {
  font-family: classico-urw, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover {
  color: #2f2f2f;
}

.button-wrap {
  text-align: center;
  margin: 60px auto 0;
}
@media screen and (max-width: 480px) {
  .button-wrap {
    margin-top: 50px;
  }
}
.button-wrap .button {
  background-color: #393737;
  color: #fff;
  border-radius: 50px;
  padding: 10px 2em 13px;
  display: inline-block;
  font-size: 1.2em;
  font-family: classico-urw, sans-serif;
  font-weight: 200;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}

section {
  padding-top: 130px;
  padding-bottom: 70px;
}
@media screen and (max-width: 710px) {
  section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
section h2 {
  padding-bottom: 60px;
  font-weight: 500;
  font-size: clamp(40px, 4vw, 50px);
  line-height: 1;
  text-align: left;
}
@media screen and (max-width: 480px) {
  section h2 {
    font-size: 2em;
    padding-bottom: 40px;
  }
}

.pagination {
  text-align: center;
  padding: 150px 0 0;
}
@media screen and (max-width: 480px) {
  .pagination {
    padding: 100px 0 0;
  }
}
.pagination .screen-reader-text {
  display: none;
}
.pagination .page-numbers {
  margin-right: 10px;
  padding: 5px;
  color: #222;
  display: inline-block;
  font-size: 1em;
  width: 2em;
  height: 2em;
  line-height: 1.3;
}
@media screen and (max-width: 480px) {
  .pagination .page-numbers {
    font-size: 1em;
  }
}
.pagination .next {
  margin-right: 0;
}
.pagination a {
  font-size: 1em;
}
.pagination .current {
  background-color: #222;
  color: #fff;
  display: inline-block;
}
.pagination svg {
  width: 0.8em;
  height: 0.8em;
}

#breadcrumb {
  width: 100%;
  margin: 100px auto 0;
  font-size: 0.8em;
}
@media screen and (max-width: 480px) {
  #breadcrumb {
    margin-top: 50px;
    font-size: 0.7em;
  }
}
#breadcrumb .breadcrumb-list {
  text-align: right;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  #breadcrumb .breadcrumb-list {
    padding: 0.5em 0;
  }
}
#breadcrumb .breadcrumb-list li {
  display: inline;
}
#breadcrumb .current-crumb a {
  color: inherit;
  pointer-events: none;
  text-decoration: inherit;
  display: inline;
}
#breadcrumb li a {
  text-decoration: underline;
  line-height: 1.5;
}

.social-button {
  padding-top: 100px;
}
@media screen and (max-width: 480px) {
  .social-button {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
.social-button .share-button {
  padding: 5px;
  margin-right: 25px;
  border-radius: 3px;
}
@media screen and (max-width: 480px) {
  .social-button .share-button {
    font-size: 0.8em;
  }
}
.social-button .share-button:first-of-type {
  padding-left: 0;
}
.social-button .share-button:last-of-type {
  margin-right: 0;
}

.page-body {
  width: 80%;
  margin: auto;
  text-align: justify;
}
@media screen and (max-width: 480px) {
  .page-body {
    width: 90%;
  }
}
.page-body .page-doc-content {
  margin-top: 50px;
}
.page-body .page-doc-content .doc-title {
  font-size: 1.5em;
  margin-bottom: 25px;
}
@media screen and (max-width: 480px) {
  .page-body .page-doc-content .doc-title {
    font-size: 1em;
  }
}
.page-body .page-doc-content p {
  text-align: justify;
}

/*# sourceMappingURL=style.css.map */
