@charset "UTF-8";
/* ============= 要素大枠レイアウト設定（START） ============= */
/* ------------------------------------
*　　section 基本設定 （START）
------------------------------------ */
/* ------------------------------------
*　　section 基本設定 （END）
------------------------------------ */
/* ============= 要素大枠レイアウト設定（END） ============= */
/* ------------------------------------
*　　基本aリンク設定 （START）
------------------------------------ */
/* ------------------------------------
*　　基本aリンク設定 （END）
------------------------------------ */
/* ============= hover設定 （START） ============= */
/* ------------------------------------
*　　hoverで画像ズーム設定 （START）
------------------------------------ */
/* ------------------------------------
*　　hoverで画像ズーム設定 （END）
------------------------------------ */
/* ------------------------------------
*　　hoverで上に上がる設定 （START）
------------------------------------ */
/* 基本ボタンに使用 */
/* 大きめの要素に？ */
/* ------------------------------------
*　　hoverで上に上がる設定 （END）
------------------------------------ */
/* ============= hover設定 （END） ============= */
/* ====================================
*
*　　レイアウト用設定 （START）
*
==================================== */
/* ------------------------------------
*　　カラム数設定 （START）
------------------------------------ */
/* ------------------------------------
*　　カラム設定（END）
------------------------------------ */
/* ====================================
*
*　　レイアウト用設定 （END）
*
==================================== */
/* ====================================
*
*　　フォント&カラー （START）
*
==================================== */
/* ------------------------------------
*　　カラー一覧（START）
------------------------------------ */
/* ------------------------------------
*　　カラー一覧（END）
------------------------------------ */
/* ------------------------------------
*　　フォントサイズ設定（START）
------------------------------------ */
/* 大見出し */
/* 中見出し */
/* 小見出し */
/* 見出し装飾（Montserrat） */
/* 英語見出し（Montserrat） */
/* 本文 */
/* sm */
/* xs */
/* ------------------------------------
*　　フォントサイズ設定（END）
------------------------------------ */
/* ------------------------------------
*　　基本サブタイトル設定 （START）
------------------------------------ */
/* ------------------------------------
*　　基本サブタイトル設定 （END）
------------------------------------ */
/* ====================================
*
*　　フォント&カラー （END）
*
==================================== */
/* ------------------------------------
*　　カテゴリータグ設定  （START）
------------------------------------ */
/* ------------------------------------
*　　カテゴリータグ設定  （END）
------------------------------------ */
/* ------------------------------------
*　　制作事例カードレイアウト設定  （START）
------------------------------------ */
/* ------------------------------------
*　　制作事例カードレイアウト設定  （END）
------------------------------------ */
html {
  overflow: auto;
  font-size: 62.5%;
}

body {
  padding-top: var(--header-height);
  font-family: "Noto Sans JP", sans-serif;
  color: #42525c;
  background-color: #fff;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  body {
    font-size: 14px;
  }
}
body {
  line-height: 0;
  min-height: 100vh;
}
@media (width < 1024px) {
  body {
    height: 100%;
    width: 100%;
  }
}
@media (width < 768px) {
  body {
    overflow: hidden; /* position:sticky;と併用NG注意 */
  }
}

main {
  display: flex;
  flex-flow: column;
}

img {
  width: 100%;
}

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

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

a {
  display: inline-block;
  text-decoration: none;
  color: #42525c;
  text-decoration: none;
  transition: all 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}
@media (hover: none) {
  a:active {
    opacity: 0.5;
  }
}

th,
td {
  vertical-align: top;
  text-align: left;
}

/* ------------------------------------
*　　表示非表示設定 （START）
------------------------------------ */
.hidden {
  visibility: hidden;
  pointer-events: none;
}

.show--br-pc {
  display: inline-block;
}
@media (width < 768px) {
  .show--br-pc {
    display: none;
  }
}
.show--br-sp {
  display: none;
}
@media (width < 768px) {
  .show--br-sp {
    display: inline-block;
  }
}
.show--box-pc {
  display: block;
}
@media (width < 768px) {
  .show--box-pc {
    display: none;
  }
}
.show--box-sp {
  display: none;
}
@media (width < 768px) {
  .show--box-sp {
    display: block;
  }
}

/* ------------------------------------
*　　表示非表示設定 （END）
------------------------------------ */
/* ------------------------------------
*　　基本ボタン （START）
------------------------------------ */
.btn-base {
  width: 100%;
  text-align: center;
  margin-top: 5em;
}
@media (width < 1024px) {
  .btn-base {
    margin-top: 2.5em;
  }
}
.btn-base__item {
  text-decoration: none;
  transition: all 0.3s;
}
@media (hover: hover) {
  .btn-base__item:hover {
    opacity: 1;
  }
}
@media (hover: none) {
  .btn-base__item:active {
    opacity: 1;
  }
}
.btn-base__item {
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.btn-base__item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 10px rgba(66, 82, 92, 0.25);
}
@media (width < 480px) {
  .btn-base__item:hover {
    transform: translateY(0);
    box-shadow: none;
  }
}
.btn-base__item {
  padding: 0.8em 4em;
  border-radius: 50px;
  border: 1px solid #00449B;
  background-color: #00449B;
  color: #fff;
  position: relative;
}
@media (width < 768px) {
  .btn-base__item {
    padding: 1em 4em;
    border-radius: 0.5em;
  }
}
.btn-base__item.btn-02__item {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}
.btn-base__txt {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .btn-base__txt {
    font-size: 14px;
  }
}
.btn-base__txt {
  margin: 0;
  display: inline-flex;
  align-items: center;
}
.btn-base__txt::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  margin-left: 1em;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.btn-base__item:hover .btn-base__txt::after {
  transform: translateX(10px) rotate(45deg);
}

/* ------------------------------------
*　　基本ボタン （END）
------------------------------------ */
/* ------------------------------------
*　　アニメーション （START）
------------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease-out, transform 1s ease-out;
  transition-delay: var(--delay, 0s);
}
@media (width < 768px) {
  .fade-in {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------
*　　アニメーション （END）
------------------------------------ */
/* ====================================
*
*　　side（右側固定） （START）
*
==================================== */
.l-scroll {
  color: #42525c;
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 400;
  width: 100%;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}
@media (width < 768px) {
  .l-scroll {
    display: none;
  }
}
.l-scroll__main {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.l-scroll__copy {
  display: inline-block;
  transform: rotate(-90deg);
}

/* ====================================
*
*　　side（右側固定） （END）
*
==================================== */
/* ====================================
*
*　　お問い合わせボタン（右下固定） （START）
*
==================================== */
.contact-fixed {
  position: fixed;
  z-index: 9999;
  width: 250px;
  right: 50px;
  bottom: 50px;
}
@media (width < 480px) {
  .contact-fixed {
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: env(safe-area-inset-bottom);
  }
}
.contact-fixed__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.contact-fixed__card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 10px rgba(66, 82, 92, 0.25);
}
@media (width < 480px) {
  .contact-fixed__card:hover {
    transform: translateY(0);
    box-shadow: none;
  }
}
.contact-fixed__card {
  position: relative;
  border-radius: 1em;
  background-color: #f33233;
  box-shadow: 0px 15px 15px rgba(66, 82, 92, 0.1);
  overflow: hidden;
}
@media (width < 480px) {
  .contact-fixed__card {
    border-radius: 0;
    background-color: rgba(66, 82, 92, 0.85);
    box-shadow: none;
  }
}
.contact-fixed__card p {
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  padding: 1em 1.3em 0;
  text-align: center;
}
@media (width < 480px) {
  .contact-fixed__card p {
    display: none;
  }
}
.contact-fixed__arrow {
  width: 30px;
  margin-bottom: 0.5em;
  animation: contact-fixed-arrow 1.8s ease-in-out infinite;
}
@media (width < 480px) {
  .contact-fixed__arrow {
    display: none;
  }
}
.contact-fixed__tag {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media (width < 480px) {
  .contact-fixed__tag {
    padding: 20px;
    gap: 20px;
    flex-direction: row;
  }
}
.contact-fixed__tag-item {
  display: flex;
  width: 50%;
}
@media (width < 480px) {
  .contact-fixed__tag-item {
    width: 100%;
  }
  .contact-fixed__tag-item a {
    border-radius: 0.4em;
  }
}
.contact-fixed__tag-item:first-child a {
  border-right: 2px solid #fff;
  border-bottom-left-radius: 1em;
}
@media (width < 480px) {
  .contact-fixed__tag-item:first-child a {
    border-right: none;
    border-bottom-left-radius: 0.4em;
  }
}
.contact-fixed__tag-item:last-child a {
  border-bottom-right-radius: 1em;
}
@media (width < 480px) {
  .contact-fixed__tag-item:last-child a {
    border-bottom-right-radius: 0.4em;
  }
}
.contact-fixed__tag-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  padding: 1.2em 0;
  background-color: #42525c;
  color: #fff;
  transition: all 0.4s;
}
@media (width < 480px) {
  .contact-fixed__tag-link {
    padding: 1em 0 calc(1em + env(safe-area-inset-bottom));
    background-color: #f33233;
  }
}
.contact-fixed__tag-link:hover {
  opacity: 1;
  background-color: #f33233;
}
@media (width < 480px) {
  .contact-fixed__tag-link:hover {
    background-color: #42525c;
  }
}
.contact-fixed__tag-link span {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .contact-fixed__tag-link span {
    font-size: 14px;
  }
}
.contact-fixed__tag-link span {
  line-height: 1;
}
.contact-fixed__tag-link span span.sp-block {
  display: none;
}
@media (width < 480px) {
  .contact-fixed__tag-link span span.sp-block {
    display: inline-block;
  }
}
.contact-fixed__tag-icon {
  width: 35px;
}

/* ===== 矢印アニメーション ===== */
@keyframes contact-fixed-arrow {
  0% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }
}
/* ====================================
*
*　　お問い合わせボタン（右下固定） （END）
*
==================================== */
/* ====================================
*
*　　お問い合わせ（footer付近） （START）
*
==================================== */
.Box-contact {
  width: 100%;
}
@media (width < 480px) {
  .Box-contact {
    display: none;
  }
}
.Box-contact {
  background-color: #fff;
}
.Box-contact__main {
  width: 70%;
  margin: 0 auto;
  padding: 90px 0;
}
@media (width < 768px) {
  .Box-contact__main {
    width: 100%;
    padding: 50px 20px;
  }
}
.Box-contact__main {
  padding: 60px 0 80px;
}
@media (width < 1400px) {
  .Box-contact__main {
    width: 80%;
  }
}
.Box-contact__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media (width < 1024px) {
  .Box-contact__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media (width < 480px) {
  .Box-contact__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Box-contact__list {
  /* ===== 各アイテム ===== */
}
.Box-contact__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.Box-contact__list {
  /* ===== 説明テキスト ===== */
}
.Box-contact__list-txt {
  color: #42525c;
  font-size: clamp(1.7rem, 1.5vw, 2.1rem);
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.Box-contact__list {
  /* ===== リンク（クリック領域） ===== */
}
.Box-contact__list-link {
  text-decoration: none;
  transition: all 0.3s;
}
@media (hover: hover) {
  .Box-contact__list-link:hover {
    opacity: 1;
  }
}
@media (hover: none) {
  .Box-contact__list-link:active {
    opacity: 1;
  }
}
.Box-contact__list-link {
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.Box-contact__list-link:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 10px rgba(66, 82, 92, 0.25);
}
@media (width < 480px) {
  .Box-contact__list-link:hover {
    transform: translateY(0);
    box-shadow: none;
  }
}
.Box-contact__list-link {
  display: block;
  width: 100%;
  border-radius: 10em;
  background-color: #f33233;
}
.Box-contact__list {
  /* ===== ボタン本体 ===== */
}
.Box-contact__list-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 30px;
}
.Box-contact__list-btn img {
  width: 13%;
  max-width: 60px;
  height: auto;
}
.Box-contact__list-btn p {
  color: #fff;
  font-size: clamp(3.2rem, 2.5vw, 3.9rem);
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 700;
}
.Box-contact__list-btn p.mail {
  font-size: clamp(2.4rem, 2vw, 3rem);
}

@media (width >= 768px) {
  .tel-link {
    pointer-events: none;
    cursor: default;
  }
}
/* ====================================
*
*　　お問い合わせ（footer付近） （END）
*
==================================== */
/* ------------------------------------
*　　パンくずリスト （START）
------------------------------------ */
.header-sub {
  background-color: #e8ecf5;
}

.breadcrumb li {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 400;
  display: inline; /*横に並ぶように*/
}
.breadcrumb li:after {
  /* >を表示*/
  content: ">";
  padding: 0 0.2em;
  color: #000;
}
.breadcrumb li:last-child {
  color: #00449B;
  font-weight: 600;
}
.breadcrumb li:last-child:after {
  content: "";
}

/* ------------------------------------
*　　パンくずリスト （END）
------------------------------------ */
.header {
  /* =================================
   * header 共通設定
   * ================================= */
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  background: #e8ecf5;
  /* =================================
   * header 上段エリア（ロゴ・バナー）
   * ================================= */
}
.header__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}
@media (width < 768px) {
  .header__box {
    justify-content: center;
    height: 60px;
  }
}
.header {
  /* =================================
   * ロゴ
   * ================================= */
}
.header__logo {
  display: flex;
  align-items: center;
}
@media (width < 768px) {
  .header__logo {
    width: 150px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.header__logo a {
  display: flex;
  align-items: center;
}
.header__logo a img {
  width: 220px;
}
@media (width < 768px) {
  .header__logo a img {
    width: 100%;
  }
}
.header {
  /* =================================
   * headerバナーまとめ（PC / SP 共通）
   * - PC：header__box 内
   * - SP：JSで header-nav__box 内へ移動
   * ================================= */
}
.header-banner {
  /* PCでは表示 */
}
@media (width < 768px) {
  .header-banner {
    display: block;
    padding-top: 20px;
  }
}
.header-banner__list {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 20px;
}
@media (width < 768px) {
  .header-banner__list {
    display: block;
  }
}
.header-banner__list-item {
  width: 170px;
  display: flex;
  flex-direction: column;
}
@media (width < 768px) {
  .header-banner__list-item {
    width: 100%;
    margin: 1.5em 0;
  }
}
.header-banner__list {
  /* SNSアイコン */
}
.header-banner__list-sns {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #777;
}
@media (width < 768px) {
  .header-banner__list-sns {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: none;
  }
}
.header-banner__list-sns a {
  background-color: #fff;
  border: 1px solid #00449B;
  border-radius: 20px;
  width: 40px;
}
.header-banner__list-sns a img {
  padding: 5px;
}
.header-banner__list {
  /* バナー画像 */
}
.header-banner__list-img {
  background-color: #fff;
  width: 100%;
}
.header-banner__list-img img {
  width: 100%;
  padding: 0.5em 1.5em;
}
.header-banner__list-img img.pc-block {
  display: block;
}
@media (width < 768px) {
  .header-banner__list-img img.pc-block {
    display: none;
  }
}
.header-banner__list-img img.sp-block {
  display: none;
}
@media (width < 768px) {
  .header-banner__list-img img.sp-block {
    display: block;
  }
}
.header {
  /* =================================
   * header ナビゲーション（SPスライド）
   * ================================= */
}
.header-nav {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .header-nav {
    font-size: 14px;
  }
}
.header-nav {
  background-color: #00449B;
  /* ---------- SP用メニュー ---------- */
}
@media (width < 768px) {
  .header-nav {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100vh;
    padding: 100px 30px 30px;
    background: #fff;
    transition: all 0.6s;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header-nav.panel-active {
    left: 0;
    pointer-events: auto;
    background-color: #e8ecf5;
  }
  .header-nav {
    /* SP時：移動してきた header-banner を表示 */
  }
  .header-nav .header-banner {
    display: block;
    margin-top: 20px;
  }
}
.header-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 0.7em;
}
@media (width < 768px) {
  .header-nav__list {
    display: block;
    padding: 0;
  }
}
@media (width < 768px) {
  .header-nav__list-item {
    border-bottom: 1px solid rgba(66, 82, 92, 0.4);
    padding: 1em 0.2em;
  }
}
.header-nav__list-item a {
  display: block;
  text-align: center;
  transition: all 0.3s;
  color: #fff;
}
@media (width < 768px) {
  .header-nav__list-item a {
    display: inline-block;
    font-size: 16px;
    color: #42525c;
  }
}

/* =================================
 * ドロップダウン設定
 * ================================= */
.header-nav__dropdown {
  position: relative;
}
.header-nav__dropdown--arrow {
  display: inline-block;
  margin-left: 8px;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-5px);
}
.header-nav__dropdown--menu {
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: #fff;
  border-radius: 0.4em;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 10001;
}
@media (width < 768px) {
  .header-nav__dropdown--menu {
    position: static;
    transform: none;
    background: inherit;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: visible;
    margin-top: 0;
    padding: 0;
    transition: max-height 0.45s ease, opacity 0.3s ease, padding 0.3s ease;
  }
}
.header-nav__dropdown--menu li a {
  display: block;
  padding: 12px 16px;
  color: #42525c;
  text-align: left;
}
.header-nav__dropdown--menu li a:hover {
  background-color: #e8ecf5;
}
@media (width >= 768px) {
  .header-nav__dropdown:hover .header-nav__dropdown--menu {
    opacity: 1;
    visibility: visible;
  }
}

/* =================================
 * アコーディオン（SP）
 * ================================= */
@media (width < 768px) {
  .header-nav__dropdown--menu {
    position: static;
    transform: none;
    background: inherit;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: visible;
    margin-top: 0;
    padding: 0;
    transition: max-height 0.45s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  .header-nav__dropdown.open .header-nav__dropdown--menu {
    max-height: 500px;
    opacity: 1;
    padding: 10px 0;
  }
}
/* =================================
 * ハンバーガーボタン
 * ================================= */
.open-btn {
  display: none;
}
@media (width < 768px) {
  .open-btn {
    position: fixed;
    z-index: 10001;
    display: block;
    left: 20px;
    top: 30px;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    cursor: pointer;
  }
  .open-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #42525c;
    transition: 0.4s;
  }
  .open-btn span:nth-of-type(1) {
    top: 12px;
  }
  .open-btn span:nth-of-type(2) {
    top: 20px;
  }
  .open-btn span:nth-of-type(3) {
    top: 28px;
  }
  .open-btn.active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .open-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .open-btn.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}

/* =================================
 * ナビ用オーバーレイ（SP）
 * ================================= */
.nav-overlay {
  display: none;
}
@media (width < 768px) {
  .nav-overlay {
    position: fixed;
    z-index: 9998;
    display: block;
    inset: 0;
    background-color: rgba(66, 82, 92, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    cursor: pointer;
  }
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.footer {
  width: 100%;
  background-color: #e8ecf5;
}
@media (width < 480px) {
  .footer {
    padding-bottom: calc(var(--contact-fixed-height, 0px));
  }
}
.footer__main {
  width: 80%;
  margin: 0 auto;
  padding: 90px 0;
}
@media (width < 768px) {
  .footer__main {
    width: 100%;
    padding: 50px 20px;
  }
}
.footer-info {
  text-align: center;
}
.footer-info__logo {
  width: 300px;
  margin: 0 auto;
}
.footer-info__address {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .footer-info__address {
    font-size: 14px;
  }
}
.footer-info__address {
  margin: 30px 0;
}
.footer-info__address-sub {
  display: inline-block;
  border-bottom: 1px solid #42525c;
  margin-top: 20px;
}

.Top-topics {
  display: none;
  width: 100%;
  background-color: #00449B;
}
.Top-topics__main {
  width: 80%;
  margin: 0 auto;
  padding: 90px 0;
}
@media (width < 768px) {
  .Top-topics__main {
    width: 100%;
    padding: 50px 20px;
  }
}
@media (width < 480px) {
  .Top-topics__main {
    padding: 50px 0;
  }
}
.Top-topics {
  /* ===== カテゴリー（blog / newsなど） ===== */
}
.Top-topics__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media (width < 1024px) {
  .Top-topics__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media (width < 480px) {
  .Top-topics__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Top-topics__list-item {
  background-color: #fff;
  padding: 50px;
}
@media (width < 768px) {
  .Top-topics__list-item {
    padding: 30px;
  }
}
.Top-topics__ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4em;
}
@media (width < 1024px) {
  .Top-topics__ttl {
    margin-bottom: 30px;
  }
}
.Top-topics__ttl h2 {
  font-size: clamp(2.8rem, 4vw, 4.1rem);
  line-height: 1.3;
  letter-spacing: 0.19em;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: #00449B;
}
.Top-topics__btn {
  text-align: center;
}
.Top-topics__btn-link {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
  padding: 0.2em 1em;
  color: #00449B;
  border: 1px solid #00449B;
}
@media (width < 1024px) {
  .Top-topics__btn-link {
    font-size: 14px;
    padding: 0 0.8em 0.1em;
  }
}
.Top-topics {
  /* ===== 記事一覧 ===== */
}
.Top-topics__article {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 70px;
}
@media (width < 1024px) {
  .Top-topics__article {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
}
@media (width < 480px) {
  .Top-topics__article {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (width < 480px) {
  .Top-topics__article {
    gap: 30px;
  }
}
.Top-topics__article-item {
  position: relative;
}
.Top-topics__article-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35px;
  height: 1px;
  background: #00449B;
}
@media (width < 1024px) {
  .Top-topics__article-item:not(:last-child)::after {
    bottom: -25px;
  }
}
@media (width < 480px) {
  .Top-topics__article-item:not(:last-child)::after {
    bottom: -15px;
  }
}
.Top-topics__article-item {
  /* ul を横並びレイアウトに */
}
.Top-topics__article-item ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.Top-topics__article-item:hover img {
  transform: scale(1.1);
}
.Top-topics__article-img {
  display: block;
  overflow: hidden;
  transform: scale(1);
}
.Top-topics__article-img img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.6s ease;
}
.Top-topics__article-img:hover img {
  transform: scale(1.1);
}
.Top-topics__article-img {
  width: 30%;
  border-radius: 0.5em;
}
.Top-topics__article-txt {
  width: 64%;
}
.Top-topics__article-txt h3 {
  font-size: clamp(2rem, 2.4vw, 2.3rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0.4em 0;
}
@media (width < 480px) {
  .Top-topics__article-txt h3 {
    font-size: 1.6rem;
  }
}
.Top-topics__article-txt p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .Top-topics__article-txt p {
    font-size: 14px;
  }
}
.Top-topics__article-txt p {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (width < 480px) {
  .Top-topics__article-txt p {
    -webkit-line-clamp: 1;
    color: #89949c;
  }
}
.Top-topics__article-txt p.date {
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0.17em;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  opacity: 0.6;
}
@media (width < 480px) {
  .Top-topics__article-txt p.date {
    font-size: 1.4rem;
  }
}

/* ====================================
*　　Top - 制作事例 （START）
==================================== */
.Top-works {
  width: 100%;
  background-color: #e8ecf5;
}
.Top-works__main {
  width: 80%;
  margin: 0 auto;
  padding: 90px 0;
}
@media (width < 768px) {
  .Top-works__main {
    width: 100%;
    padding: 50px 20px;
  }
}
.Top-works__ttl {
  color: #42525c;
  text-align: center;
  margin: 0 auto 90px;
  width: 80%;
  max-width: 600px;
}
@media (width < 768px) {
  .Top-works__ttl {
    margin-bottom: 30px;
  }
}
@media (width < 480px) {
  .Top-works__ttl {
    width: 100%;
    max-width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.Top-works__ttl h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media (width < 768px) {
  .Top-works__ttl h2 {
    line-height: 1em;
  }
}
@media (width < 480px) {
  .Top-works__ttl h2 {
    display: inline-block;
  }
}
.Top-works__ttl span {
  font-size: clamp(1.2rem, 1.6vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: 0.66em;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
@media (width < 768px) {
  .Top-works__ttl span {
    letter-spacing: 0.4em;
  }
}
@media (width < 480px) {
  .Top-works__ttl span {
    line-height: 1em;
    margin-left: 10px;
  }
}
.Top-works__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (width < 1024px) {
  .Top-works__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (width < 480px) {
  .Top-works__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.Top-works__list-card {
  transform: translateY(0);
  transition: transform 0.6s ease;
}
.Top-works__list-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 15px rgba(66, 82, 92, 0.1);
}
@media (width < 480px) {
  .Top-works__list-card:hover {
    transform: translateY(0);
    box-shadow: none;
  }
}
.Top-works__list-card {
  position: relative;
  border-radius: 1em;
  background-color: #fff;
  height: 100%;
  transform: scale(1);
  height: 100%;
}
.Top-works__list-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
}
.Top-works__list-img {
  display: block;
  overflow: hidden;
  transform: scale(1);
}
.Top-works__list-img img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.6s ease;
}
.Top-works__list-img:hover img {
  transform: scale(1.1);
}
.Top-works__list-img {
  width: 100%;
  position: relative;
  border-radius: 1em 1em 0 0;
  z-index: 0;
  transition: transform 0.6s ease;
}
.Top-works__list-img img {
  aspect-ratio: 4/3;
  width: 100%;
}
.Top-works__list-card:hover .Top-works__list-img img {
  transform: scale(1.1);
}
.Top-works__list-txt .category-tag {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: #00449B;
  flex-wrap: wrap;
  padding-left: 0;
  margin-top: 1.2em;
}
.Top-works__list-txt .category-tag li {
  list-style: none;
}
.Top-works__list-txt .category-tag li a {
  position: relative;
  background-color: #e8ecf5;
  color: #00449B;
  border: 1px solid #00449B;
  padding: 0.2em 1em 0.3em;
  border-radius: 0.4em;
  transition: all 0.3s;
}
.Top-works__list-txt .category-tag li a::before {
  content: "#";
  margin-right: 0.2em;
}
@media (hover: hover) {
  .Top-works__list-txt .category-tag li a:hover {
    opacity: 1;
    background-color: #00449B;
    color: #fff;
  }
}
@media (hover: none) {
  .Top-works__list-txt .category-tag li a:active {
    opacity: 1;
    background-color: #00449B;
    color: #fff;
  }
}
.Top-works__list-txt {
  padding: 1.3em 1.5em 1.5em 1.5em;
  position: relative;
}
.Top-works__list-txt h3 {
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-bottom: 0.5em;
}
.Top-works__list-txt p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .Top-works__list-txt p {
    font-size: 14px;
  }
}
.Top-works__list-txt p {
  line-height: 1.6em;
}
.Top-works__list-txt .category-tag a {
  position: relative;
  z-index: 3;
}

/* ====================================
*　　Top - 制作事例 （END）
==================================== */
/* ====================================
*　　制作事例 （START）
==================================== */
.works {
  width: 100%;
  background-color: #e8ecf5;
}
.works__main {
  width: 80%;
  margin: 0 auto;
  padding: 90px 0;
}
@media (width < 768px) {
  .works__main {
    width: 100%;
    padding: 50px 20px;
  }
}
.works__main .category-tag {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1em;
  color: #00449B;
  flex-wrap: wrap;
  padding-left: 0;
  margin-top: 1.2em;
}
.works__main .category-tag li {
  list-style: none;
}
.works__main .category-tag li a {
  position: relative;
  background-color: #fff;
  color: #42525c;
  border: 1px solid #fff;
  padding: 0.3em 1em 0.4em;
  border-radius: 0.4em;
}
.works__main .category-tag li a::before {
  content: "#";
  margin-right: 0.2em;
}
.works__ttl {
  color: #00449B;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  padding: 70px;
  background-image: url("../images/page-ttl__img-bg.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (width < 1200px) {
  .works__ttl {
    background-size: 1300px auto; /* 幅固定 */
  }
}
@media (width < 768px) {
  .works__ttl {
    width: 90%;
    margin-bottom: 50px;
  }
}
.works__ttl h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  padding: 0.1em 0.7em 0.2em;
  background-color: #fff;
}
.works__wrap {
  display: flex; /* 2列レイアウトのためflexに変更 */
  gap: 50px; /* asideとの間隔 */
  align-items: flex-start;
}
@media (width < 1200px) {
  .works__wrap {
    flex-direction: column;
  }
}
.works__box {
  flex: 1;
  min-width: 0;
}
.works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (width < 1024px) {
  .works__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (width < 480px) {
  .works__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.works__list-card {
  transform: translateY(0);
  transition: transform 0.6s ease;
}
.works__list-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 15px rgba(66, 82, 92, 0.1);
}
@media (width < 480px) {
  .works__list-card:hover {
    transform: translateY(0);
    box-shadow: none;
  }
}
.works__list-card {
  position: relative;
  border-radius: 1em;
  background-color: #fff;
  height: 100%;
  transform: scale(1);
  height: 100%;
}
.works__list-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
}
.works__list-img {
  display: block;
  overflow: hidden;
  transform: scale(1);
}
.works__list-img img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.6s ease;
}
.works__list-img:hover img {
  transform: scale(1.1);
}
.works__list-img {
  width: 100%;
  position: relative;
  border-radius: 1em 1em 0 0;
  z-index: 0;
  transition: transform 0.6s ease;
}
.works__list-img img {
  aspect-ratio: 4/3;
  width: 100%;
}
.Top-works__list-card:hover .works__list-img img {
  transform: scale(1.1);
}
.works__list-txt .category-tag {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: #00449B;
  flex-wrap: wrap;
  padding-left: 0;
  margin-top: 1.2em;
}
.works__list-txt .category-tag li {
  list-style: none;
}
.works__list-txt .category-tag li a {
  position: relative;
  background-color: #e8ecf5;
  color: #00449B;
  border: 1px solid #00449B;
  padding: 0.2em 1em 0.3em;
  border-radius: 0.4em;
  transition: all 0.3s;
}
.works__list-txt .category-tag li a::before {
  content: "#";
  margin-right: 0.2em;
}
@media (hover: hover) {
  .works__list-txt .category-tag li a:hover {
    opacity: 1;
    background-color: #00449B;
    color: #fff;
  }
}
@media (hover: none) {
  .works__list-txt .category-tag li a:active {
    opacity: 1;
    background-color: #00449B;
    color: #fff;
  }
}
.works__list-txt {
  padding: 1.3em 1.5em 1.5em 1.5em;
  position: relative;
}
.works__list-txt h3 {
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-bottom: 0.5em;
}
.works__list-txt p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .works__list-txt p {
    font-size: 14px;
  }
}
.works__list-txt p {
  line-height: 1.6em;
}
.works__list-txt .category-tag a {
  position: relative;
  z-index: 3;
}
.works {
  /* ------------------------------------
  *　　制作事例 - カテゴリー （START）
  ------------------------------------ */
}
.works__category {
  background-color: #fff;
  padding: 40px 50px 50px;
  text-align: center;
}
@media (width < 768px) {
  .works__category {
    display: none;
  }
}
.works__category h3 {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 2;
  display: inline-block;
  margin-bottom: 1.5em;
}
.works__category--tag {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .works__category--tag {
    font-size: 14px;
  }
}
.works__category--tag {
  display: flex;
  align-items: center;
  gap: 1.3em;
  justify-content: center;
  flex-wrap: wrap;
}
.works__category--tag li {
  list-style: none;
  display: flex;
  align-items: center;
  border-right: 1px solid #777;
  padding-right: 1.2em;
}
.works__category--tag li:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
@media (width < 768px) {
  .works__category--tag li {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }
}
.works__category--tag li a {
  border: 2px solid #fff;
  padding: 0.3em 1.5em 0.4em;
  border-radius: 0.4em;
}
@media (hover: hover) {
  .works__category--tag li a:hover {
    opacity: 1;
    background-color: #00449B;
    color: #fff;
    border: 2px solid #00449B;
  }
}
@media (hover: none) {
  .works__category--tag li a:active {
    opacity: 1;
    background-color: #00449B;
    color: #fff;
    border: 2px solid #00449B;
  }
}
.works__category--tag li a.tg-link_none {
  background-color: #00449B;
  color: #fff;
  border: 2px solid #00449B;
}
@media (hover: hover) {
  .works__category--tag li a.tg-link_none:hover {
    opacity: 1;
  }
}
@media (hover: none) {
  .works__category--tag li a.tg-link_none:active {
    opacity: 1;
  }
}
.works__category--tag li a::before {
  content: "#";
  margin-right: 0.2em;
}
.works {
  /* ------------------------------------
  *　　制作事例 - カテゴリー （END）
  ------------------------------------ */
}

/* ------------------------------------
*　　カテゴリー - フィルター （START）
------------------------------------ */
.filter {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  position: sticky;
  top: 200px;
}
@media (width < 1200px) {
  .filter {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8em 1.5em;
    position: static;
  }
}
.filter__ttl {
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  border-bottom: 2px solid #777;
  margin-bottom: 1em;
  width: 100%;
}
.filter {
  /* -------------------------
  *　　カテゴリー （START）
  ------------------------- */
}
.filter-category__label {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .filter-category__label {
    font-size: 14px;
  }
}
.filter-category__label {
  display: flex;
  align-items: center;
  gap: 0.7em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (width < 1024px) {
  .filter-category__label {
    gap: 0.5em;
  }
}
.filter-category__checkbox[type=checkbox] {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #777;
  border-radius: 3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  /* チェックマーク（最初は非表示） */
}
.filter-category__checkbox[type=checkbox]::before {
  position: absolute;
  top: 1px;
  left: 4px;
  width: 7px;
  height: 11px;
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.filter-category__checkbox[type=checkbox] {
  /* チェックON */
}
.filter-category__checkbox[type=checkbox]:checked {
  border-color: #00449B;
  background-color: #00449B;
}
.filter-category__checkbox[type=checkbox]:checked::before {
  transform: rotate(45deg) scale(1);
  opacity: 1;
}
.filter-category__checkbox[type=checkbox] span {
  line-height: 1.4;
}
.filter {
  /* -------------------------
  *　　カテゴリー （END）
  ------------------------- */
}

/* ------------------------------------
*　　カテゴリー - フィルター （END）
------------------------------------ */
.number_works {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .number_works {
    font-size: 14px;
  }
}
.number_works {
  background-color: #fff;
  padding: 0.3em 1em;
  margin-top: 1em;
  border-radius: 0.4em;
}
.number_works span {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ====================================
*　　制作事例 （END）
==================================== */
/* ====================================
*　　制作事例 詳細ページ （START）
==================================== */
.works-detail {
  width: 100%;
  background-color: #e8ecf5;
}
.works-detail__main {
  width: 80%;
  margin: 0 auto;
  padding: 90px 0;
}
@media (width < 768px) {
  .works-detail__main {
    width: 100%;
    padding: 50px 20px;
  }
}
.works-detail__wrap {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
@media (width < 1024px) {
  .works-detail__wrap {
    flex-direction: column;
  }
}
.works-detail__txt .category-tag {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: #00449B;
  flex-wrap: wrap;
  padding-left: 0;
  margin-top: 1.2em;
}
.works-detail__txt .category-tag li {
  list-style: none;
}
.works-detail__txt .category-tag li a {
  position: relative;
  background-color: #e8ecf5;
  color: #00449B;
  border: 1px solid #00449B;
  padding: 0.2em 1em 0.3em;
  border-radius: 0.4em;
  transition: all 0.3s;
}
.works-detail__txt .category-tag li a::before {
  content: "#";
  margin-right: 0.2em;
}
@media (hover: hover) {
  .works-detail__txt .category-tag li a:hover {
    opacity: 1;
    background-color: #00449B;
    color: #fff;
  }
}
@media (hover: none) {
  .works-detail__txt .category-tag li a:active {
    opacity: 1;
    background-color: #00449B;
    color: #fff;
  }
}
.works-detail__txt {
  width: 350px;
  flex-shrink: 0;
  padding: 1.8em;
  border-radius: 2em;
  background-color: #fff;
  position: sticky;
  top: 200px;
}
@media (width < 1024px) {
  .works-detail__txt {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
    border-radius: 1em;
  }
}
.works-detail__txt-ttl {
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-bottom: 1.3em;
  margin-bottom: 1.3em;
  width: 100%;
  border-bottom: 1px solid #42525c;
}
.works-detail__txt p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .works-detail__txt p {
    font-size: 14px;
  }
}
.works-detail__txt p {
  margin-top: 1em;
}
.works-detail__txt p a {
  border-bottom: 1px solid #777;
  line-height: 1.5;
  padding: 0 0.2em;
}
.works-detail__box {
  flex: 1;
  min-width: 0;
}
.works-detail__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
}
@media (width < 1024px) {
  .works-detail__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media (width < 480px) {
  .works-detail__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.works-detail__list-item {
  width: 100%;
}
.works-detail__list-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 2em;
  overflow: hidden;
}
@media (width < 1024px) {
  .works-detail__list-card {
    border-radius: 1em;
  }
}
.works-detail__list-img {
  width: 100%;
}
.works-detail__list-img img {
  width: 100%;
  display: block;
  height: auto;
}

/* ====================================
*　　制作事例 詳細ページ （END）
==================================== */
.works__pagination {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-top: 40px;
  text-align: center;
}
.works__pagination a {
  display: inline-block;
  width: 35px;
  margin: 0 5px;
  padding: 1em 0;
  border-radius: 0.4em;
  border: 1px solid #00449B;
  background: #fff;
  color: #00449B;
  text-decoration: none;
  cursor: pointer;
}
.works__pagination a.active {
  background: #00449B;
  color: #fff;
  border-color: #00449B;
}

/* ====================================
*　　Top - サービス一覧 （START）
==================================== */
.Top-service {
  width: 100%;
  background-color: #fff;
}
.Top-service__main {
  width: 80%;
  margin: 0 auto;
  padding: 90px 0;
}
@media (width < 768px) {
  .Top-service__main {
    width: 100%;
    padding: 50px 20px;
  }
}
.Top-service__ttl {
  color: #42525c;
  text-align: center;
  margin: 0 auto 90px;
  width: 80%;
  max-width: 600px;
}
@media (width < 768px) {
  .Top-service__ttl {
    margin-bottom: 30px;
  }
}
@media (width < 480px) {
  .Top-service__ttl {
    width: 100%;
    max-width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.Top-service__ttl h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media (width < 768px) {
  .Top-service__ttl h2 {
    line-height: 1em;
  }
}
@media (width < 480px) {
  .Top-service__ttl h2 {
    display: inline-block;
  }
}
.Top-service__ttl span {
  font-size: clamp(1.2rem, 1.6vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: 0.66em;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
@media (width < 768px) {
  .Top-service__ttl span {
    letter-spacing: 0.4em;
  }
}
@media (width < 480px) {
  .Top-service__ttl span {
    line-height: 1em;
    margin-left: 10px;
  }
}
.Top-service__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
@media (width < 1024px) {
  .Top-service__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (width < 480px) {
  .Top-service__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Top-service__list-item {
  flex-direction: column;
}
.Top-service__list-img {
  display: block;
  overflow: hidden;
  transform: scale(1);
}
.Top-service__list-img img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.6s ease;
}
.Top-service__list-img:hover img {
  transform: scale(1.1);
}
.Top-service__list-img {
  width: 100%;
  border-radius: 2em;
}
@media (width < 768px) {
  .Top-service__list-img {
    border-radius: 1em;
  }
}
@media (width < 768px) {
  .Top-service__list-img img {
    aspect-ratio: 4/2.2;
  }
}
.Top-service__list-txt {
  padding: 1.7em 0;
}
@media (width < 768px) {
  .Top-service__list-txt {
    padding: 20px 0 0;
  }
}
.Top-service__list-txt h3 {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-bottom: 0.5em;
}
.Top-service__list-txt p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .Top-service__list-txt p {
    font-size: 14px;
  }
}
.Top-service__banner {
  width: 80%;
  max-width: 1300px;
  padding: 0;
  margin: 90px auto;
}
@media (width < 1024px) {
  .Top-service__banner {
    width: 100%;
    max-width: none;
    margin: 50px auto 0;
  }
}
.Top-service__banner__ttl {
  color: #fff;
  text-align: center;
  margin: 0 auto;
  width: 80%;
  max-width: 600px;
}
@media (width < 480px) {
  .Top-service__banner__ttl {
    width: 90%;
    max-width: none;
  }
}
.Top-service__banner__ttl h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.4;
}
@media (width < 768px) {
  .Top-service__banner__ttl h2 {
    line-height: 1em;
  }
}
@media (width < 480px) {
  .Top-service__banner__ttl h2 {
    display: inline-block;
  }
}
.Top-service__banner__ttl h2 br.pc-block {
  display: block;
}
@media (width < 1200px) {
  .Top-service__banner__ttl h2 br.pc-block {
    display: none;
  }
}
.Top-service__banner__ttl span {
  font-size: clamp(1.2rem, 1.6vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: 0.66em;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
@media (width < 768px) {
  .Top-service__banner__ttl span {
    letter-spacing: 0.4em;
  }
}
@media (width < 480px) {
  .Top-service__banner__ttl span {
    line-height: 1em;
    margin-left: 10px;
  }
}
.Top-service__banner__ttl p {
  margin-top: 1.5em;
  line-height: 2;
}
.Top-service__banner-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 450px;
  z-index: 1;
  flex-direction: column;
  text-align: center;
}
@media (width < 1200px) {
  .Top-service__banner-wrap {
    height: 400px;
  }
}
@media (width < 1024px) {
  .Top-service__banner-wrap {
    height: 350px;
  }
}
@media (width < 480px) {
  .Top-service__banner-wrap {
    height: 300px;
  }
}
.Top-service__banner-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: -2;
}
.Top-service__banner-wrap.banner-01::before {
  background-image: url("../images/Top-service__img-bnr-01.png");
}
.Top-service__banner-wrap.banner-02 {
  margin-top: 70px;
}
@media (width < 1200px) {
  .Top-service__banner-wrap.banner-02 {
    margin-top: 30px;
  }
}
.Top-service__banner-wrap.banner-02::before {
  background-image: url("../images/Top-service__img-bnr-02.png");
}
.Top-service__banner-wrap {
  /* ホバーで拡大 */
}
.Top-service__banner-wrap:hover::before {
  transform: scale(1.1);
}
.Top-service__banner-wrap {
  /* ★黒オーバーレイ */
}
.Top-service__banner-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
}
.Top-service__banner-wrap .btn-base {
  margin-top: 3.2em;
}
@media (width < 1200px) {
  .Top-service__banner-wrap .btn-base {
    margin-top: 30px;
  }
}

/* ====================================
*　　Top - サービス一覧 （END）
==================================== */
/* ====================================
*　　サービス一覧 （START）
==================================== */
.service {
  width: 100%;
  background-color: #e8ecf5;
}
.service__main {
  width: 80%;
  margin: 0 auto;
  padding: 90px 0;
}
@media (width < 768px) {
  .service__main {
    width: 100%;
    padding: 50px 20px;
  }
}
.service__main .category-tag {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1em;
  color: #00449B;
  flex-wrap: wrap;
  padding-left: 0;
  margin-top: 1.2em;
}
.service__main .category-tag li {
  list-style: none;
}
.service__main .category-tag li a {
  position: relative;
  background-color: #fff;
  color: #42525c;
  border: 1px solid #fff;
  padding: 0.3em 1em 0.4em;
  border-radius: 0.4em;
}
.service__main .category-tag li a::before {
  content: "#";
  margin-right: 0.2em;
}
.service__main {
  margin-top: 1.2em;
  max-width: 1200px;
  margin-top: 0;
}
.service__category {
  margin-bottom: 150px;
  border-radius: 2em;
}
.service__category-ttl {
  display: inline-block;
  margin-bottom: 1em;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  border-bottom: 2px solid #777;
}
.service__category .category-tag {
  margin-top: 0;
}
.service__ttl {
  color: #00449B;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  padding: 70px;
  background-image: url("../images/page-ttl__img-bg.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (width < 1200px) {
  .service__ttl {
    background-size: 1300px auto; /* 幅固定 */
  }
}
@media (width < 768px) {
  .service__ttl {
    width: 90%;
    margin-bottom: 50px;
  }
}
.service__ttl h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  padding: 0.1em 0.7em 0.2em;
  background-color: #fff;
}
.service__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media (width < 1024px) {
  .service__item {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
@media (width < 480px) {
  .service__item {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service__item {
  margin-bottom: 200px;
}
.service__item-txt {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
}
@media (width < 768px) {
  .service__item-txt {
    padding: 30px;
  }
}
.service__item-txt h3 {
  position: relative;
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-bottom: 0.7em;
}
@media (width < 480px) {
  .service__item-txt h3 {
    padding-bottom: 15px;
  }
}
.service__item-txt h3::before {
  content: "#";
  position: absolute;
  font-size: clamp(10rem, 10vw, 14rem);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.5);
  top: -0.4em;
  left: -0.4em;
  z-index: -1;
}
.service__item-p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .service__item-p {
    font-size: 14px;
  }
}
.service__item-p {
  line-height: 2;
}
.service__item-img {
  display: flex;
}
.service__item-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  border-radius: 1em;
}
@media (width < 1024px) {
  .service__item-img img {
    aspect-ratio: 16/7;
  }
}

/* ====================================
*　　サービス一覧 （END）
==================================== */
/* ====================================
*　　仮 - 私たちの強み （START）
==================================== */
.strengths {
  width: 100%;
  background-color: #e8ecf5;
}
.strengths__main {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-top: 0;
}
.strengths__ttl {
  color: #00449B;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  padding: 70px;
  background-image: url("../images/page-ttl__img-bg.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (width < 1200px) {
  .strengths__ttl {
    background-size: 1300px auto; /* 幅固定 */
  }
}
@media (width < 768px) {
  .strengths__ttl {
    width: 90%;
    margin-bottom: 50px;
  }
}
.strengths__ttl h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  padding: 0.1em 0.7em 0.2em;
  background-color: #fff;
}

/* ====================================
*　　仮 - 私たちの強み （END）
==================================== */
.company {
  width: 100%;
  background-color: #e8ecf5;
}
.company__main {
  width: 950px;
  margin: 0 auto;
  padding: 90px 0;
}
@media (width < 768px) {
  .company__main {
    width: 100%;
    padding: 50px 20px;
  }
}
@media (width < 768px) {
  .company__main {
    width: 100%;
  }
}
.company__ttl {
  color: #00449B;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  padding: 70px;
  background-image: url("../images/page-ttl__img-bg.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (width < 1200px) {
  .company__ttl {
    background-size: 1300px auto; /* 幅固定 */
  }
}
@media (width < 768px) {
  .company__ttl {
    width: 90%;
    margin-bottom: 50px;
  }
}
.company__ttl h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  padding: 0.1em 0.7em 0.2em;
  background-color: #fff;
}
.company__table {
  width: 100%;
  table-layout: fixed;
  line-height: 2;
}
@media (width < 768px) {
  .company__table tr {
    display: block;
  }
}
.company__table tr:not(:last-child) {
  border-bottom: 1px solid #777;
}
@media (width < 768px) {
  .company__table tr:not(:last-child) {
    border-bottom: none;
    margin-bottom: 1em;
  }
}
.company__table th {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .company__table th {
    font-size: 14px;
  }
}
.company__table th {
  width: 180px;
  padding: 30px;
  vertical-align: top;
}
@media (width < 768px) {
  .company__table th {
    display: block;
    width: 100%;
    padding: 0.2em 1em;
    margin-bottom: 8px;
    background-color: #fff;
    text-align: center;
  }
}
.company__table td {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .company__table td {
    font-size: 14px;
  }
}
.company__table td {
  width: auto;
  padding: 30px 30px 30px 0;
  word-break: break-word;
}
@media (width < 768px) {
  .company__table td {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 8px;
    line-height: 1.8;
  }
}
.company__map {
  padding-top: 90px;
}
.company__map iframe {
  aspect-ratio: 16/7;
}

.contact {
  width: 100%;
  background-color: #e8ecf5;
}
.contact__main {
  width: 950px;
  margin: 0 auto;
  padding: 90px 0;
}
@media (width < 768px) {
  .contact__main {
    width: 100%;
    padding: 50px 20px;
  }
}
.contact {
  /* ===============================
      フォーム全体
  ================================ */
}
.contact__form form {
  text-align: center;
}
.contact__form table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
.contact {
  /* ===============================
      行レイアウト（PC：横並び）
  ================================ */
}
.contact__box {
  display: flex;
  align-items: flex-start;
  padding: 1.5em 0;
}
.contact__box th {
  width: 30%;
  padding-right: 2em;
  text-align: left;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .contact__box th {
    font-size: 14px;
  }
}
.contact__box td {
  width: 70%;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .contact__box td {
    font-size: 14px;
  }
}
.contact__box:first-child {
  padding-top: 0;
}
.contact__box {
  /* input / textarea 共通（radio除外） */
}
.contact__box input:not([type=radio]),
.contact__box textarea {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .contact__box input:not([type=radio]),
  .contact__box textarea {
    font-size: 14px;
  }
}
.contact__box input:not([type=radio]),
.contact__box textarea {
  width: 100%;
  padding: 0.8em 1em;
  border-radius: 0.5em;
  border: none;
  background-image: none;
  resize: none;
  color: #89949c;
  border: 1px solid #777;
}
.contact__box textarea {
  line-height: 1.7;
  padding: 1.5em;
}
.contact__box {
  /* ===============================
      SP（md以下：縦並び）
  ================================ */
}
@media (width < 768px) {
  .contact__box {
    display: block;
    padding: 0;
  }
  .contact__box th,
  .contact__box td {
    width: 100%;
    display: block;
    padding: 0;
  }
  .contact__box th {
    margin: 2em 0 0.4em;
  }
  .contact__box:first-child th {
    margin-top: 0;
  }
}
.contact {
  /* ===============================
      ラジオボタン
  ================================ */
}
.contact__radio label {
  display: flex;
  align-items: center;
  gap: 0.6em;
  cursor: pointer;
  margin-bottom: 0.5em;
}
.contact__radio input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #777;
  background-color: #fff;
  transition: all 0.2s ease;
}
.contact__radio input[type=radio]:checked {
  border: 1px solid #00449B;
  background-color: #00449B;
}
@media (width < 768px) {
  .contact__radio input[type=radio] {
    width: 18px;
    height: 18px;
  }
}
.contact {
  /* ===============================
      送信ボタン
  ================================ */
}
.contact__btn input {
  text-decoration: none;
  transition: all 0.3s;
}
@media (hover: hover) {
  .contact__btn input:hover {
    opacity: 1;
  }
}
@media (hover: none) {
  .contact__btn input:active {
    opacity: 1;
  }
}
.contact__btn input {
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.contact__btn input:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 10px rgba(66, 82, 92, 0.25);
}
@media (width < 480px) {
  .contact__btn input:hover {
    transform: translateY(0);
    box-shadow: none;
  }
}
.contact__btn input {
  font-size: clamp(1.2rem, 2.3vw, 2.2rem);
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 50px;
  padding: 0.9em 4em 0.7em;
  border-radius: 0.5em;
  border: 1px solid #00449B;
  background-color: #00449B;
  color: #fff;
}
.contact {
  /* ===============================
      必須ラベル
  ================================ */
}
.contact__label {
  position: relative;
  top: -0.1em;
  padding: 0.2em 1.3em 0.4em;
  margin-left: 1em;
  border-radius: 0.4em;
  color: #fff;
  font-size: 10px;
  line-height: 1;
}
@media (width < 768px) {
  .contact__label {
    padding: 0.2em 0.9em;
  }
}
.contact__label--hissu {
  background-color: #f33233;
}
.contact__label--ninni {
  background-color: #89949c;
}

/* ====================================
*
*　　Top - メインビジュアル （START）
*
==================================== */
.Top-fv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  position: relative;
}
.Top-fv__main {
  width: 100%;
  position: relative;
  z-index: 0;
}
.Top-fv__main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/Top-video__deco.png) repeat;
  opacity: 0.5;
  pointer-events: none;
  background-size: 3px auto;
  z-index: 1;
}
@media (width < 480px) {
  .Top-fv__main {
    flex-direction: column;
  }
}
.Top-fv {
  /* ★ 重ねるテキスト */
}
.Top-fv__catch {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
  padding: 2rem;
}
.Top-fv__catch-text {
  font-size: clamp(4rem, 5vw, 10rem);
  font-weight: 800;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
.Top-fv__catch-text span {
  font-size: clamp(14rem, 14vw, 17rem);
}
.Top-fv__catch-text.is-active {
  opacity: 1;
  transform: translateY(0);
}
.Top-fv__catch-text br.sp-block {
  display: none;
}
@media (width < 768px) {
  .Top-fv__catch-text br.sp-block {
    display: block;
  }
}
@media (width < 768px) {
  .Top-fv__catch-text {
    font-size: 5rem;
  }
}
.Top-fv__video {
  width: 100%;
  aspect-ratio: 16/7;
  position: relative;
  overflow: hidden;
  flex: none;
}
@media (width < 480px) {
  .Top-fv__video {
    aspect-ratio: 4/3;
    width: 100%;
    order: -1;
  }
}
.Top-fv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* ====================================
*
*　　Top - メインビジュアル （END）
*
==================================== */
/* ====================================
*
*　　Top - 看板の種類 （START）
*
==================================== */
.Top-types {
  width: 100%;
  background-color: #fff;
}
.Top-types__main {
  width: 80%;
  margin: 0 auto;
  padding: 90px 0;
}
@media (width < 768px) {
  .Top-types__main {
    width: 100%;
    padding: 50px 20px;
  }
}
.Top-types__ttl {
  color: #42525c;
  text-align: center;
  margin: 0 auto 90px;
  width: 80%;
  max-width: 600px;
}
@media (width < 768px) {
  .Top-types__ttl {
    margin-bottom: 30px;
  }
}
@media (width < 480px) {
  .Top-types__ttl {
    width: 100%;
    max-width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.Top-types__ttl h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media (width < 768px) {
  .Top-types__ttl h2 {
    line-height: 1em;
  }
}
@media (width < 480px) {
  .Top-types__ttl h2 {
    display: inline-block;
  }
}
.Top-types__ttl span {
  font-size: clamp(1.2rem, 1.6vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: 0.66em;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
@media (width < 768px) {
  .Top-types__ttl span {
    letter-spacing: 0.4em;
  }
}
@media (width < 480px) {
  .Top-types__ttl span {
    line-height: 1em;
    margin-left: 10px;
  }
}
.Top-types__bg-img {
  width: 80%;
  border-radius: 2em;
  overflow: hidden;
  margin: 0 auto;
}
.Top-types__bg-img img {
  width: 100%;
}
@media (width < 1024px) {
  .Top-types__bg-img {
    width: 100%;
    border-radius: 1em;
  }
}

/* ====================================
*
*　　Top - 看板の種類 （END）
*
==================================== */
/* ====================================
*
*　　Top - 私たちの強み （START）
*
==================================== */
.Top-strengths {
  width: 100%;
  background-color: #00449B;
}
.Top-strengths__main {
  width: 80%;
  margin: 0 auto;
  padding: 90px 0;
}
@media (width < 768px) {
  .Top-strengths__main {
    width: 100%;
    padding: 50px 20px;
  }
}
.Top-strengths__main {
  max-width: 1200px;
}
.Top-strengths__ttl {
  color: #42525c;
  text-align: center;
  margin: 0 auto 90px;
  width: 80%;
  max-width: 600px;
}
@media (width < 768px) {
  .Top-strengths__ttl {
    margin-bottom: 30px;
  }
}
@media (width < 480px) {
  .Top-strengths__ttl {
    width: 100%;
    max-width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.Top-strengths__ttl h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media (width < 768px) {
  .Top-strengths__ttl h2 {
    line-height: 1em;
  }
}
@media (width < 480px) {
  .Top-strengths__ttl h2 {
    display: inline-block;
  }
}
.Top-strengths__ttl span {
  font-size: clamp(1.2rem, 1.6vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: 0.66em;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
@media (width < 768px) {
  .Top-strengths__ttl span {
    letter-spacing: 0.4em;
  }
}
@media (width < 480px) {
  .Top-strengths__ttl span {
    line-height: 1em;
    margin-left: 10px;
  }
}
.Top-strengths__ttl {
  margin: 0 auto 40px;
}
.Top-strengths__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (width < 1024px) {
  .Top-strengths__item {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
@media (width < 480px) {
  .Top-strengths__item {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Top-strengths__item {
  border-radius: 2em;
  background-color: #fff;
  box-shadow: 0px 15px 15px rgba(66, 82, 92, 0.2);
}
.Top-strengths__item-txt {
  flex-direction: column;
  padding: 4em;
}
@media (width < 768px) {
  .Top-strengths__item-txt {
    padding: 30px;
  }
}
.Top-strengths__item-txt h3 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  padding-bottom: 1em;
}
@media (width < 480px) {
  .Top-strengths__item-txt h3 {
    padding-bottom: 15px;
  }
}
.Top-strengths__item-txt p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (width < 480px) {
  .Top-strengths__item-txt p {
    font-size: 14px;
  }
}
.Top-strengths__item-txt p {
  line-height: 2;
}
.Top-strengths__item-txt .btn-base {
  margin-top: 3em;
}
.Top-strengths__item-img {
  display: flex;
}
.Top-strengths__item-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  border-radius: 0 2em 2em 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 0.6) 30%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 0.6) 30%, black 100%);
}
@media (width < 1024px) {
  .Top-strengths__item-img img {
    aspect-ratio: 16/7;
    border-radius: 0 0 2em 2em;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 0.6) 30%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 0.6) 30%, black 100%);
  }
}
.Top-strengths__bg-img.pc-block {
  display: block;
}
@media (width < 768px) {
  .Top-strengths__bg-img.pc-block {
    display: none;
  }
}
.Top-strengths__bg-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ====================================
*
*　　Top - 私たちの強み （END）
*
==================================== */
/* ====================================
*
*　　Top - ご注文の流れ （START）
*
==================================== */
.Top-flow {
  width: 100%;
  position: relative; /* 擬似要素を相対的に配置するため */
  background-image: url("../images/Top-flow__img-bg.png");
  background-size: cover;
  background-position: center;
  z-index: 1; /* コンテンツがオーバーレイの上に表示されるように */
}
.Top-flow ::before {
  content: ""; /* 擬似要素にはcontentプロパティが必要 */
  position: absolute; /* 親要素に対して絶対配置 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5); /* ここで半透明な色を設定 (R, G, B, 透明度) */
  z-index: -1; /* 背景画像のすぐ上に表示されるように */
}
.Top-flow__main {
  width: 70%;
  margin: 0 auto;
  padding: 90px 0;
}
@media (width < 768px) {
  .Top-flow__main {
    width: 100%;
    padding: 50px 20px;
  }
}
.Top-flow__main {
  max-width: 1400px;
  background-color: #fff;
}
.Top-flow__ttl {
  color: #42525c;
  text-align: center;
  margin: 0 auto 90px;
  width: 80%;
  max-width: 600px;
}
@media (width < 768px) {
  .Top-flow__ttl {
    margin-bottom: 30px;
  }
}
@media (width < 480px) {
  .Top-flow__ttl {
    width: 100%;
    max-width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.Top-flow__ttl h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media (width < 768px) {
  .Top-flow__ttl h2 {
    line-height: 1em;
  }
}
@media (width < 480px) {
  .Top-flow__ttl h2 {
    display: inline-block;
  }
}
.Top-flow__ttl span {
  font-size: clamp(1.2rem, 1.6vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: 0.66em;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
@media (width < 768px) {
  .Top-flow__ttl span {
    letter-spacing: 0.4em;
  }
}
@media (width < 480px) {
  .Top-flow__ttl span {
    line-height: 1em;
    margin-left: 10px;
  }
}
.Top-flow__img {
  width: 65%;
  max-width: 1000px;
  margin: 0 auto;
}
@media (width < 1200px) {
  .Top-flow__img {
    width: 80%;
  }
}
@media (width < 768px) {
  .Top-flow__img {
    width: 90%;
  }
}
@media (width < 480px) {
  .Top-flow__img {
    width: 100%;
  }
}
.Top-flow__img img {
  width: 100%;
}
.Top-flow__img img.pc-block {
  display: block;
}
@media (width < 768px) {
  .Top-flow__img img.pc-block {
    display: none;
  }
}
.Top-flow__img img.sp-block {
  display: none;
}
@media (width < 768px) {
  .Top-flow__img img.sp-block {
    display: block;
  }
}

/* ====================================
*
*　　Top - ご注文の流れ （END）
*
==================================== *//*# sourceMappingURL=style.css.map */