@charset "UTF-8";
/*
Theme Name: m-depot
Author: HAKU
Description: m-depot オリジナルテーマ
Version: 1.0
*/
/* 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;
}

a {
  text-decoration: unset;
  color: currentColor;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* 変数 */
:root {
  --f1: 2.44em; /* 39.04px */
  --f2: 1.95em; /* 31.2px */
  --f3: 1.56em; /* 24.96px */
  --f4: 1.25em; /* 20px */
  --f5: 1em; /* 16px */
  --f6: 0.8em; /* 12.8px */
  --myw: 1000px; /* 標準幅 */
  --main: #D8C3A5;
  --red: #C4414F;
  --text: #1E130F;
  --bp-sm: 480;
  --bp-md: 768;
  --bp-lg: 1024;
  --bp-xl: 1200;
}

html {
  scroll-behavior: smooth;
}

img,
iframe,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

span.inline-block {
  display: inline-block;
}

.alignleft {
  float: left;
  margin-left: 0;
  margin-right: 1em;
}

.alignright {
  float: right;
  margin-left: 1em;
  margin-right: 0;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-categories.aligncenter,
.wp-block-latest-posts.aligncenter,
.wp-block-archives.aligncenter,
.wp-block-tag-cloud.aligncenter,
.wp-block-latest-comments.aligncenter,
.wp-block-rss.aligncenter {
  text-align: center;
}

figure {
  margin-left: 0;
  margin-right: 0;
}

body {
  box-sizing: border-box;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

body *,
body *::before,
body *::after {
  box-sizing: border-box;
}

/* フォント */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--text);
}

.roboto {
  font-family: "Roboto", sans-serif;
}

.self p {
  font-size: var(--f5);
}
.self h1 {
  font-size: var(--f1);
}
.self h2 {
  font-size: 40px;
  font-weight: bold;
  font-family: "Lilita One", sans-serif;
  letter-spacing: 0.05em;
}
.self h3 {
  font-size: 18px;
  font-weight: bold;
}
.self h4 {
  font-size: var(--f4);
  color: var(--red);
  font-weight: bold;
  text-align: center;
  font-size: 18px !important;
  line-height: 1.6;
}
.self h5 {
  font-size: var(--f5);
}
.self h6 {
  font-size: var(--f6);
}

/* スクリーンリーダー用のテキスト */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* 前後の記事へのリンク */
/* ページネーション */
.container {
  padding: 0 16px;
}

.alignfull {
  margin-inline: -16px;
  max-width: none;
  width: auto;
}

strong {
  font-weight: 700;
}

@media (min-width: 1024px) {
  .self h3 {
    font-size: 32px;
  }
  .alignfull {
    margin-inline: calc((100vw - var(--myw) + 48px) / 2 * -1);
  }
}
.fade-in {
  opacity: 0; /* 初期状態は透明 */
  transform: translateY(8px); /* 少し下からスタート */
  transition: opacity 0.8s ease, transform 0.8s ease; /* アニメーションの設定 */
}
.fade-in.visible {
  opacity: 1; /* 表示状態 */
  transform: translateY(0); /* 元の位置に戻す */
}

.sec-ttl {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--text);
}
.sec-ttl__ja {
  font-size: 14px;
}
.sec-ttl__en {
  font-size: 32px;
  font-family: "roboto", sans-serif;
}
.sec-ttl__en::first-letter {
  color: var(--red);
}

.header {
  background-color: transparent;
  transition: background-color 0.3s ease;
  height: 64px;
  display: flex;
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1100;
  color: white;
}
.header-left {
  flex: 1 1 0;
  display: flex;
  align-items: center;
}
.header-left .header-sns {
  display: none;
}
.header-left .header-sns img {
  display: block;
}
.header-right {
  flex: 1 1 0;
}
.header-center {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}
.header-center > span:first-child {
  font-size: 20px;
  font-weight: 700;
}
.header-center > span:first-child::first-letter {
  color: var(--red);
}
.header-center > span:last-child {
  font-size: 12px;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .header-center > span:first-child {
    font-size: 24px;
    line-height: 1.2;
  }
  .header-center > span:last-child {
    font-size: 14px;
  }
}
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-right__menu {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  z-index: 1200;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  transition: all 0.3s ease;
}
.header-right__menu span {
  display: block;
  height: 4px;
  background: #fff;
  transition: transform 0.3s ease, width 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.header-right__menu span:first-child {
  width: 32px;
}
.header-right__menu span:last-child {
  width: 24px;
  margin-top: 6px;
}
.header-right__menu.is-open {
  top: 24px;
}
.header-right__menu.is-open span:first-child {
  width: 32px;
  transform: translateY(2px) rotate(45deg);
}
.header-right__menu.is-open span:last-child {
  width: 32px;
  transform: translateY(-2px) rotate(-45deg);
  margin-top: 0;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.site-loader__box {
  width: 260px;
  height: 260px;
  position: relative;
  display: grid;
  place-items: center;
}
.site-loader__logo {
  position: absolute;
  width: 160px;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.site-loader__ring {
  width: 220px;
  height: 220px;
  border: 5px solid transparent;
  border-radius: 50%;
  border-top-color: #00e5ff;
  border-right-color: #00e5ff;
  position: relative;
  animation: siteLoaderSpin 1.5s linear infinite;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.9));
}
.site-loader__ring::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-bottom-color: #00e5ff;
  border-left-color: #00e5ff;
  animation: siteLoaderSpin 1s linear infinite reverse;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.6));
}
.site-loader__text {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.92);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.45);
  animation: siteLoaderBlink 1.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes siteLoaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes siteLoaderBlink {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
.header.is-scrolled {
  background-color: black;
}

.bottom-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  display: flex;
  z-index: 900;
}
.bottom-cta__item {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 16px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}
.bottom-cta__item--contact {
  background: #c70018;
}
.bottom-cta__item--instagram {
  background: #333333;
}
.bottom-cta__main {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bottom-cta__icon {
  width: 32px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.bottom-cta__label {
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}
.bottom-cta__arrow {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.global-nav {
  position: fixed;
  inset: 0;
  background-color: #000;
  color: #fff;
  z-index: 1000;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  z-index: 1200;
}
.global-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.global-nav__inner {
  width: 100%;
  padding: 0 24px;
}
.global-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.global-nav__item + .global-nav__item {
  margin-top: 16px;
}
.global-nav__item a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.global-nav__item--contact a {
  color: var(--red);
  font-weight: 700;
}

@media (min-width: 1024px) {
  .header {
    height: 80px;
  }
  .header-left .header-sns {
    display: block;
    margin-left: 16px;
  }
  .header-left .header-sns img {
    width: 24px;
    height: 24px;
  }
  .header-right {
    justify-content: flex-end;
  }
  .header-right__menu {
    display: none;
  }
  .global-nav {
    position: fixed;
    top: 0;
    right: 32px;
    left: auto;
    bottom: auto;
    background-color: transparent;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: flex;
    align-items: center;
    z-index: 1200;
  }
  .global-nav__inner {
    width: auto;
    padding: 24px 0 0;
  }
  .global-nav__list {
    display: flex;
    gap: 32px;
  }
  .global-nav__item + .global-nav__item {
    margin-top: 0;
  }
  .global-nav__item a {
    font-size: 16px;
    font-weight: bold;
  }
  .global-nav__item--contact,
  .global-nav__item--instagram {
    display: none;
  }
  .bottom-cta {
    display: none;
  }
}
.front-hero {
  position: relative;
}
.front-hero__figure {
  height: 100vh;
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.front-hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 70% 60%;
     object-position: 70% 60%;
  display: block;
}
.front-hero__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/front/hero_dot.svg");
  background-repeat: repeat;
  pointer-events: none;
}
.front-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}
.front-hero__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.front-hero__logo img {
  width: 216px;
  height: 216px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media screen and (min-width: 768px) {
  .front-hero__logo img {
    width: 320px;
    height: 320px;
  }
}
.front-about {
  padding-top: 120px;
  padding-bottom: 120px;
}
.front-about__figure {
  margin-top: 40px;
  margin-bottom: 40px;
}
.front-about__figure img {
  box-shadow: 6px 6px 0 var(--text);
}
.front-about__txt {
  line-height: 2;
}
.front-service {
  padding-bottom: 120px;
}
.front-service__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
}
.front-service__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 350/280;
}
.front-service__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.front-service__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  z-index: 1;
}
.front-service__content {
  position: relative;
  z-index: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: #fff;
}
.front-service__title {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  z-index: 3;
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.9);
}
.front-service__title::first-letter {
  color: var(--red);
}
.front-service__brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.6));
}
.front-service__content.has-brand {
  padding-top: 16px;
}
.front-service__content.has-brand .front-service__txt {
  margin-top: 44px;
}
@media screen and (min-width: 768px) {
  .front-service__brand {
    width: 240px;
  }
  .front-service__content.has-brand .front-service__txt {
    margin-top: 52px;
  }
}
.front-service__txt {
  font-size: 16px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.9);
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .front-service__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .front-service__item {
    min-height: 320px;
  }
}
.front-service__more {
  margin-top: 40px;
  text-align: center;
}
.front-service__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  background: #333;
  color: #fff;
  border-radius: 28px;
  font-size: 16px;
  position: relative;
  width: 284px;
  font-family: "roboto", sans-serif;
}
.front-service__btn:hover {
  opacity: 0.8;
}
.front-service__btn-arrow {
  position: absolute;
  height: auto;
  display: block;
  width: 6px;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.front-news {
  padding-bottom: 120px;
}
.front-news__list {
  margin-top: 40px;
  display: grid;
  gap: 40px;
}
.front-news__item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 24px;
}
.front-news__link {
  display: flex;
  gap: 20px;
  color: inherit;
  align-items: flex-start;
}
.front-news__thumb {
  flex: 0 0 36%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 8px;
}
.front-news__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.front-news__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.front-news__date {
  font-size: 14px;
  color: #666;
}
.front-news__title {
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: 8px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.front-news__more {
  font-size: 14px;
  color: var(--red);
}
.front-news__morewrap {
  margin-top: 40px;
  text-align: center;
}
.front-news__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 284px;
  background: #333;
  color: #fff;
  border-radius: 28px;
  font-size: 16px;
  position: relative;
  font-family: "roboto", sans-serif;
}
.front-news__btn:hover {
  opacity: 0.8;
}
.front-news__btn-arrow {
  position: absolute;
  height: auto;
  width: 6px;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.front-news__more {
  margin-top: 40px;
  text-align: center;
}
.front-news__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 284px;
  background: #333;
  color: #fff;
  border-radius: 28px;
  font-size: 16px;
  position: relative;
  font-family: "roboto", sans-serif;
}
.front-news__btn:hover {
  opacity: 0.8;
}
.front-news__btn-arrow {
  position: absolute;
  height: auto;
  width: 6px;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.front-insta #sb_instagram {
  padding-bottom: unset !important;
}
.front-insta .sb_instagram_header {
  margin-top: 32px !important;
}
.front-insta .sbi_feedtheme_header_text {
  flex: 0 0 auto;
}
.front-insta .sbi_header_text {
  justify-content: center !important;
}
.front-message {
  padding-bottom: 120px;
}
.front-message__inner {
  margin-top: 64px;
}
.front-message__lead {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.front-message__txt {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 16px;
  width: 80%;
  margin-inline: auto;
}
.front-message__figure {
  margin-top: 40px;
  text-align: center;
  width: 80%;
  margin-inline: auto;
}
.front-message__figure img {
  width: 100%;
  height: auto;
  display: inline-block;
}
.front-message__caption {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  text-align: end;
}
.front-message__role {
  font-size: 12px;
}
.front-message__name-ja {
  font-size: 16px;
  font-weight: 700;
}
.front-message__name-en {
  font-size: 12px;
}
.front-contact {
  padding-bottom: 120px;
}
.front-contact__inner {
  margin-top: 40px;
}
.front-contact__txt {
  font-size: 16px;
  line-height: 2;
  width: 80%;
  margin: 0 auto 54px;
  max-width: 500px;
}
.front-contact__btn-wrap {
  text-align: center;
}
.front-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  width: 284px;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  font-family: "roboto", sans-serif;
  position: relative;
}
.front-contact__btn-arrow {
  width: 6px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  /* News & Instagram：PCでは横並び2カラム */
  .front-news-insta {
    max-width: 1000px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 80px;
         column-gap: 80px;
    align-items: flex-start;
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 1024px) {
  /* 共通：各セクションの横幅を1000pxに制限 */
  .front-about,
  .front-service,
  .front-news,
  .front-insta,
  .front-message,
  .front-contact {
    max-width: 1000px;
    margin-inline: auto;
  }
  /* News & Instagram：PCでは横並び2カラム */
  .front-news-insta {
    max-width: 1000px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 80px;
         column-gap: 80px;
    align-items: flex-start;
    margin-bottom: 120px;
  }
  .front-news-insta .front-news,
  .front-news-insta .front-insta {
    max-width: none;
    margin-inline: 0;
    padding: 0;
  }
  /* About us：PCでは画像とテキストを横並びに */
  .front-about {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
    align-items: start;
  }
  .front-about .sec-ttl {
    grid-column: 1/-1;
  }
  .front-about__figure {
    grid-column: 1/2;
    margin-top: 40px;
    margin-bottom: 0;
  }
  .front-about__txt {
    grid-column: 2/3;
    margin-top: 40px;
  }
  /* Service：PCではグリッドの余白を少し広く */
  .front-service__list {
    max-width: 1000px;
    margin-inline: auto;
    -moz-column-gap: 32px;
         column-gap: 32px;
    row-gap: 32px;
  }
  /* Message：PCでは画像＋テキストの2カラムレイアウト */
  .front-message__inner {
    margin-top: 80px;
    max-width: 740px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    -moz-column-gap: 48px;
         column-gap: 48px;
    align-items: flex-start;
    /* テキストを右側（HTML上は先に来る） */
    /* 画像を左側（HTML上は後に来る） */
  }
  .front-message__inner > div:first-child {
    grid-column: 2;
    grid-row: 1;
  }
  .front-message__inner > div:last-child {
    grid-column: 1;
    grid-row: 1;
  }
  .front-message__inner > div:first-child {
    /* 画像＆キャプションのカラム（左） */
  }
  .front-message__inner > div:last-child {
    /* テキストカラム（右） */
  }
  .front-message__lead {
    justify-content: flex-start;
    font-size: 26px;
    margin-bottom: 32px;
  }
  .front-message__txt {
    width: 100%;
    margin-inline: 0;
    text-align: left;
  }
  .front-message__figure {
    width: 100%;
    margin-inline: 0;
    margin-top: 0;
  }
  .front-message__caption {
    text-align: left;
    align-items: flex-start;
  }
}
.footer {
  background: #000;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  font-family: "roboto", sans-serif;
}
.footer__inner {
  width: 90%;
  margin: 0 auto;
}
.footer__brand {
  margin-bottom: 40px;
}
.footer__logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer__logo::first-letter {
  color: var(--red);
}
.footer__area {
  font-size: 12px;
  margin-top: 4px;
}
.footer__sns {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  margin-top: 20px;
}
.footer__sns img {
  width: 24px;
  height: auto;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  font-size: 16px;
}
.footer__nav a {
  color: #fff;
  letter-spacing: 1px;
}
.footer__copy {
  font-size: 12px;
  opacity: 0.8;
}

.pc-floating-contact {
  display: none;
}

@media (min-width: 1024px) {
  .footer__nav {
    grid-template-columns: repeat(4, 1fr);
    max-width: 740px;
    margin-inline: auto;
  }
  .pc-floating-contact {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    opacity: 0.9;
  }
  .pc-floating-contact img {
    width: 28px;
  }
}
.pc-floating-contact__sub {
  font-size: 14px;
  letter-spacing: 0.1em;
}

.pc-floating-contact__arrow {
  width: 8px !important;
  height: auto;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.service {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .service {
    padding-top: 146px;
  }
  .service-page-title__text {
    font-size: 40px;
    line-height: 1.4;
  }
}
.service-page-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  max-width: 1400px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .service-page-title {
    flex-direction: row;
    margin-bottom: 56px;
  }
}
.service-page-title__main::first-letter {
  color: var(--red);
}
.service-page-title__text {
  margin-left: 24px;
  flex: 1 1 40.3%;
}
.service-page-title__img {
  margin-left: 24px;
  flex: 0 0 59.7%;
}
.service-hero {
  margin-bottom: 120px;
}
.service-hero__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.service-hero__logo img {
  width: 128px;
  height: auto;
}
@media (min-width: 768px) {
  .service-hero__logo {
    margin-bottom: 56px;
  }
  .service-hero__logo img {
    width: 160px;
  }
}
.service-hero__lead-top {
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .service-hero__lead-top {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.service-hero__lead-bottom {
  max-width: 640px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .service-hero__lead-bottom {
    font-size: 16px;
    line-height: 1.75;
  }
}
.service-company {
  max-width: 800px;
  margin: 0 auto 120px;
  padding: 0 24px;
}
.service-company__table {
  width: 100%;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.service-company__row {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-top: 1px solid #e5e5e5;
}
.service-company__row:first-child {
  border-top: none;
}
.service-company dt {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  color: #333;
}
.service-company dd {
  font-size: 16px;
  line-height: 1.7;
}
.service-company__map {
  margin-top: 40px;
}
.service-company__map img,
.service-company__map iframe {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .service-company__row {
    flex-direction: row;
    align-items: flex-start;
    padding: 18px 0;
  }
  .service-company dt {
    flex: 0 0 160px;
    margin-bottom: 0;
  }
  .service-company dd {
    flex: 1 1 auto;
  }
}
.service__menu {
  max-width: 1200px;
  margin-inline: auto;
  margin-bottom: 120px;
}
.service-block {
  margin-top: 48px;
  /* ▼ 下段のカード3つ（実績カード） */
}
@media (min-width: 768px) {
  .service-block {
    margin-top: 56px;
  }
}
.service-block:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}
.service-block:last-child .service-block__item {
  margin-bottom: 0;
}
.service-block__item {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .service-block__item {
    margin-bottom: 64px;
  }
}
.service-block__main {
  margin-bottom: 32px;
}
.service-block__main-img {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .service-block__main-img {
    margin-bottom: unset;
  }
}
.service-block__main-img img {
  width: 100%;
  height: auto;
  display: block;
}
.service-block__title {
  color: var(--red);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .service-block__title {
    font-size: 28px;
  }
}
.service-block__brand {
  margin-top: 18px;
}
.service-block__brand img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
}
@media (min-width: 768px) {
  .service-block__brand {
    margin-top: 22px;
  }
  .service-block__brand img {
    max-width: 640px;
  }
}
.service-block__cases {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}
.service-block__case {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  margin-inline: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.service-block__case-text-wrap {
  padding: 24px 16px 32px;
  background: #fff;
}
.service-block__case-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.service-block__case-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .service-block__case-title {
    font-size: 18px;
  }
}
.service-block__case-text {
  font-size: 14px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .service-block__case-text {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .service-block__main {
    display: flex;
    gap: 32px;
  }
  .service-block__main > * {
    flex: 1 1 50%;
  }
  .service-block:nth-child(even) .service-block__main {
    flex-direction: row-reverse;
  }
  .service-block__cases {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1000px;
    margin-inline: auto;
  }
  .service-block__cases .service-block__case {
    margin-inline: 0;
  }
}
.service-flow {
  margin-bottom: 120px;
  max-width: 1400px;
  margin-inline: auto;
}
.service-flow__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 64px 24px 0;
}
.service-flow__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.service-flow__card {
  background-color: #f8f5f3;
  border-radius: 0 24px 0 0;
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin-inline: auto;
  width: 100%;
}
.service-flow__icon {
  margin-bottom: 8px;
}
.service-flow__icon img {
  display: block;
  width: 240px;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}
.service-flow__content .step-num {
  font-size: 20px;
  color: var(--red);
  opacity: 0.7;
  margin-bottom: 4px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.4);
  padding-bottom: 4px;
}
.service-flow__content .step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-flow__content p {
  font-size: 14px;
  line-height: 1.7;
}
.service-flow__btn-wrap {
  margin-top: 16px;
}
.service-flow__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 10px 24px;
  border-radius: 999px;
  background-color: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.service-flow__arrow {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.service-flow__arrow-shape {
  display: block;
  width: 56px;
  height: 24px;
  background: url("./img/service/arrow_under.webp") no-repeat center/contain;
}
@media (min-width: 768px) {
  .service-flow__card {
    flex-direction: row;
    gap: 40px;
    padding: 32px 48px;
  }
  .service-flow__icon {
    margin-bottom: 0;
  }
  .service-flow__icon img {
    margin-inline: 0;
  }
  .service-flow__content {
    flex: 0 0 70%;
  }
  .service-flow__content .step-title {
    font-size: 18px;
  }
  .service-flow__content p {
    font-size: 15px;
  }
  .service-flow__arrow {
    margin-top: 24px;
  }
}
.service-faq {
  max-width: 1400px;
  margin-inline: auto;
  margin-bottom: 120px;
  padding-inline: 24px;
}
.service-faq__list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 64px;
}
.service-faq .faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #eee;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.service-faq .faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  position: relative;
}
.service-faq .faq-item summary::-webkit-details-marker {
  display: none;
}
.service-faq .faq-item summary::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.service-faq .faq-item summary::after {
  content: "+";
  margin-left: auto;
  font-size: 18px;
  font-weight: 700;
  color: #999;
  transition: transform 0.2s ease;
}
.service-faq .faq-item[open] summary::after {
  transform: rotate(45deg);
}
.service-faq .faq-item p {
  padding: 16px 20px 20px;
  border-top: 1px solid #f0f0f0;
  font-size: 14px;
  line-height: 1.7;
  background-color: #fff7f6;
  position: relative;
  padding-left: 52px;
}
.service-faq .faq-item p::before {
  content: "A";
  position: absolute;
  left: 24px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .service-faq .faq-item summary {
    padding: 18px 24px;
    font-size: 16px;
  }
  .service-faq .faq-item p {
    padding: 18px 24px 22px;
    padding-left: 60px;
    font-size: 15px;
  }
}

.news-single {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .news-single {
    padding-top: 120px;
  }
}

.news-single__section {
  padding-bottom: 120px;
}
.news-single__section .container {
  max-width: 840px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 1024px) {
  .news-single__section .container {
    padding-inline: 0;
  }
}

.single-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #111;
}
@media (min-width: 768px) {
  .single-title {
    font-size: 28px;
  }
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #555;
  margin-bottom: 32px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .single-meta {
    margin-bottom: 40px;
    padding-bottom: 16px;
  }
}

.single-date {
  font-variant-numeric: tabular-nums;
}

.single-content {
  font-size: 15px;
  line-height: 1.9;
  color: #222;
}
.single-content p {
  margin-bottom: 1.6em;
}
.single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px auto;
}
.single-content ul,
.single-content ol {
  margin: 0 0 1.6em 1.4em;
}
.single-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.single-content a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.single-navigation {
  margin: 64px 0 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  justify-content: center;
}
@media (min-width: 768px) {
  .single-navigation {
    margin: 80px 0 0;
  }
}
.single-navigation .prev-post,
.single-navigation .single-back,
.single-navigation .next-post {
  text-align: center;
}
.single-navigation .prev-post a,
.single-navigation .next-post a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 6px;
  background-color: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.25s;
}
.single-navigation .prev-post a:hover,
.single-navigation .next-post a:hover {
  opacity: 0.8;
}
.single-navigation .single-back .front-contact__btn--back {
  margin-inline: auto;
}

.single-back {
  margin: 0;
}
.single-back .front-contact__btn--back,
.single-back .single-back__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  padding: 6px 16px;
  font-size: 13px;
  background-color: var(--red);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}
.single-back .front-contact__btn--back:hover,
.single-back .single-back__link:hover {
  opacity: 0.8;
}

.news-archive {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .news-archive {
    padding-top: 96px;
  }
}

.news-archive__section {
  padding: 40px 0 120px;
}
@media (min-width: 768px) {
  .news-archive__section {
    padding: 56px 0 140px;
  }
}
.news-archive__section .container {
  max-width: 840px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 1024px) {
  .news-archive__section .container {
    padding-inline: 0;
  }
}

.news-archive__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  color: #111;
}
@media (min-width: 768px) {
  .news-archive__title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}

.news-archive__items {
  border-top: 1px solid #ddd;
}

.news-archive__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: background-color 0.2s;
}
@media (min-width: 768px) {
  .news-archive__item {
    flex-direction: row;
    align-items: flex-start;
    padding: 18px 0;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.news-archive__item:hover {
  background-color: #f7f7f7;
}

.news-archive__date {
  font-size: 13px;
  color: #777;
  font-variant-numeric: tabular-nums;
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .news-archive__date {
    width: 120px;
  }
}

.news-archive__ttl {
  flex: 0 1 auto;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  line-height: 1.6;
  min-width: 0;
  /* タイトルが長い場合の2行省略 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
@media (min-width: 768px) {
  .news-archive__ttl {
    font-size: 16px;
  }
}

.news-archive__none {
  text-align: center;
  color: #777;
  margin-top: 40px;
  font-size: 14px;
}

.news-archive__pagination {
  margin-top: 40px;
  text-align: center;
}
.news-archive__pagination .page-numbers {
  display: inline-block;
  min-width: 32px;
  margin: 0 4px;
  padding: 6px 10px;
  border-radius: 4px;
  background-color: #f0f0f0;
  color: #111;
  text-decoration: none;
  font-size: 14px;
}
.news-archive__pagination .page-numbers.dots {
  background: none;
  padding-inline: 2px;
}
.news-archive__pagination .page-numbers.current {
  background-color: var(--red);
  color: #fff;
}
.news-archive__pagination .page-numbers:hover:not(.current):not(.dots) {
  background-color: #e4e4e4;
}/*# sourceMappingURL=style.css.map */