@charset "UTF-8";
/* -----------------------------------------------------------------------------------
ブレイクポイント
----------------------------------------------------------------------------------- */
*,
::before,
::after {
  box-sizing: border-box;
}

:root {
  scroll-padding-top: 104px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 2.0833333333vw, 16px);
  color: #4e4e4e;
  background: #fff;
  -webkit-text-size-adjust: 100%; /*スマホ横画面で文字の拡大・収縮防止用*/
  -webkit-font-smoothing: antialiased; /* 文字の太さを整える。Safari環境用 */
}

img {
  width: 100%;
  vertical-align: top;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2em;
  word-break: break-all;
}
@media (1280px <= width) {
  a[href*=tel] {
    pointer-events: none; /* pcでリンクさせない */
  }
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.03em;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: clamp(17px, 2.34375vw, 18px);
}

nav {
  line-height: 1.5;
  letter-spacing: 0.05em;
}

header,
footer {
  line-height: 1.25;
}

main {
  font-size: clamp(15px, 2.0833333333vw, 16px);
  line-height: 1.625;
}
@media (1280px <= width) {
  main {
    font-size: 15px;
  }
}

/*-----------------------------------------------------------------------------------
微調整
-----------------------------------------------------------------------------------*/
/*--------------------------------------
改行
----------------------------------------*/
.br {
  display: inline-block;
}

/*--------------------------------------
表示・非表示
----------------------------------------*/
@media (768px <= width < 1280px) {
  .pc-only {
    display: none;
  }
}
@media (width < 768px) {
  .pc-only {
    display: none;
  }
}

@media (1280px <= width) {
  .tab-only {
    display: none;
  }
}
@media (width < 768px) {
  .tab-only {
    display: none;
  }
}

@media (1280px <= width) {
  .sp-only {
    display: none;
  }
}
@media (768px <= width < 1280px) {
  .sp-only {
    display: none;
  }
}

/*-----------------------------------------------------------------------------------
横幅設定
-----------------------------------------------------------------------------------*/
/*--------------------------------------
body直下
----------------------------------------*/
.body-inner[class] {
  display: block;
  width: 100%;
  min-width: 320px;
  overflow: hidden; /* 余白対策 */
}

/*--------------------------------------
コンテンツ幅

// ヘッダーとフッターは不使用
----------------------------------------*/
.container {
  width: min(100% - clamp(48px, 11.25vw, 144px), 1240px);
  margin: 0 auto;
}
@media (width < 768px) {
  .container {
    width: calc(100% - clamp(20px, 5.2083333333vw, 40px));
  }
}
@media (768px <= width < 1280px) {
  .container--tabwide {
    width: calc(100% - clamp(20px, 5.2083333333vw, 40px));
  }
}

/*-----------------------------------------------------------------------------------
header
-----------------------------------------------------------------------------------*/
/*--------------------------------------
<header>
----------------------------------------*/
.header {
  display: block;
  width: 100%;
  height: 72px;
  margin: auto;
  background: #fff;
  box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media (width < 768px) {
  .header {
    height: 58px;
  }
}
.header__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 clamp(24px, 3.125vw, 40px);
  width: 100%;
  height: 100%;
  padding: 0 0 0 clamp(10px, 2.34375vw, 30px);
}
.header__logo {
  width: 122px;
  font-size: 0;
}
@media (width < 768px) {
  .header__logo {
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 74px;
    font-size: clamp(5px, 0.9114583333vw, 7px);
    font-weight: 700;
    letter-spacing: 0;
  }
}

/*--------------------------------------
メニュー（グローバルナビ）

// PCの場合 = 横並びメニュー
// SPの場合 = ハンバーガーメニュー

// ハンバーガーアイコン押下時の設定は、以下のキーワードで検索
// .header-menu:has(.header-menu-check:checked)
----------------------------------------*/
.header-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 clamp(16px, 3.125vw, 40px);
  width: 100%;
  height: 100%;
}

@media (width < 768px) {
  .header-menu:has(.header-menu-check:checked) {
    display: block;
    width: max(100%, 320px);
    height: 100vh;
    min-height: 100vh;
    padding: clamp(64px, 20vh, 116px) 10px clamp(40px, 20vh, 80px);
    background: #4e4e4e;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transform: translateX(200%);
    animation: anima-h-menu 0.3s ease-out forwards;
  }
}

@keyframes anima-h-menu {
  0% {
    transform: translateX(200%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ----------------
// ハンバーガーメニュー

// トリガー（非表示）
---------------- */
.header-menu-check {
  display: none;
}

/* ----------------
// ハンバーガーメニュー

// アイコン（SPのみ表示）
---------------- */
.header-menu-label {
  display: none;
}
@media (width < 768px) {
  .header-menu-label {
    display: block;
    width: 60px;
    height: 58px; /* ヘッダーの高さ */
    background: #92e6fa;
    position: relative;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-label {
    width: 45px;
    height: 45px;
    background: transparent;
    position: fixed;
    top: 16px;
    left: 10px;
    z-index: 1000;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-label:not(:has(> span)) {
    /* .header-menu-list 子として設置 */
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .header-menu-label > span {
    display: block;
    width: 35px;
    height: 2px;
    background: #4e4e4e;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease-in-out;
  }
  .header-menu-label > span::before, .header-menu-label > span::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    background: #4e4e4e;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translate(-50%, 0);
    transition: transform 0.2s ease-in-out;
  }
  .header-menu-label > span::after {
    top: auto;
    bottom: -8px;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-label > span {
    background: transparent;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-label > span::before, .header-menu:has(.header-menu-check:checked) .header-menu-label > span::after {
    width: 45px;
    top: 50%;
    left: 50%;
    background: #92e6fa;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.2s 0.3s ease-in-out;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-label > span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* ----------------
// メニューリスト

// PCの場合 = 横並び
// SPの場合 = 縦並び
---------------- */
.header-menu-list a {
  font-family: unset;
  font-weight: unset;
  font-size: unset;
  color: unset;
}
@media (768px <= width) {
  .header-menu-list {
    width: 100%;
    height: 100%;
  }
  .header-menu-list > ul {
    display: flex;
    justify-content: flex-end;
    gap: 0 clamp(16px, 3.125vw, 40px);
    width: 100%;
    height: 100%;
  }
  .header-menu-list > ul > li {
    padding: 22px 0 0;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-align: left;
    color: #4e4e4e;
  }
  .header-menu-list > ul > li > a::after {
    display: block;
    margin: 0.2em 0 0;
    font-size: 9px;
    text-align: left;
    color: unset;
  }
  .header-menu-list > ul > li:has([href="/"]) {
    display: none;
  }
  .header-menu-list > ul > li:not(:has([href*="contact.html"])) {
    transition: color 0.3s ease;
  }
  .header-menu-list > ul > li:not(:has([href*="contact.html"])):hover {
    color: #68c2e7;
  }
  .header-menu-list > ul > li:has([href*="shop.html"]) > a::after {
    content: "SHOP LIST";
  }
  .header-menu-list > ul > li:has([href*="works.html"]) > a::after {
    content: "WORKS";
  }
  .header-menu-list > ul > li:has([href*="company.htm"]) > a::after {
    content: "COMPANY";
  }
  .header-menu-list > ul > li:has([href*="history.html"]) > a::after {
    content: "HISTORY";
  }
  .header-menu-list > ul > li:has([href*="contact.html"]) {
    display: flex;
    flex-direction: column;
    gap: 0.1em 0;
    width: 156px;
    height: 100%;
    padding: 0;
    margin: 0 0 0 10px;
    color: #fff;
    position: relative;
    z-index: 1;
  }
  .header-menu-list > ul > li:has([href*="contact.html"])::before, .header-menu-list > ul > li:has([href*="contact.html"])::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1a9ced 0%, #0c72d8 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  .header-menu-list > ul > li:has([href*="contact.html"])::after {
    background: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }
  .header-menu-list > ul > li:has([href*="contact.html"]):hover::after {
    opacity: 0.3;
  }
  .header-menu-list > ul > li:has([href*="contact.html"]) > a {
    width: 100%;
    height: 100%;
    padding: 22px 5.1282051282% 5.1282051282% 14.1025641026%;
    position: relative;
  }
  .header-menu-list > ul > li:has([href*="contact.html"]) > a::before {
    content: "";
    display: block;
    width: 8.9743589744%;
    height: auto;
    padding: 8.9743589744% 0 0;
    background: url(../img/icon_header_btn.svg) center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 5.1282051282%;
    transform: translate(-50%, -50%);
  }
  .header-menu-list > ul > li:has([href*="contact.html"]) > a::after {
    order: 2;
    content: "CONTACT";
  }
}
@media (width < 768px) {
  .header-menu-list {
    display: none;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list {
    display: block;
    width: 100%;
    max-height: min(80vh, 600px);
  }
}
@media (width < 768px) and (height < 500px) {
  .header-menu:has(.header-menu-check:checked) .header-menu-list {
    overflow-y: scroll;
  }
}
@media (width < 768px) {
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    line-height: 1;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul > li {
    padding: 0.6em 0;
    border-bottom: 1px solid #68c2e7;
    font-weight: 500;
    font-size: clamp(18px, 2.8645833333vw, 22px);
    line-height: 1.5;
    letter-spacing: 0.03em;
    text-align: left;
    color: #fff;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul > li:first-of-type {
    border-top: 1px solid #68c2e7;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul > li a {
    display: block;
    padding: 0 clamp(16px, 3.90625vw, 30px);
    transition: color 0.3s ease;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul > li a::after {
    display: none;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul > li a:hover {
    color: #68c2e7;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul > li:has(> ul) > span {
    display: none;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul > li:has(> ul) > ul > li {
    margin: 1.5em 0 0;
    font-weight: 400;
    font-size: 0.6em;
    letter-spacing: 0;
  }
}

@keyframes anima-popup {
  0% {
    transform: translateX(-50%) translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
/*-----------------------------------------------------------------------------------
footer
-----------------------------------------------------------------------------------*/
/*--------------------------------------
<footer>
----------------------------------------*/
.footer {
  display: block;
  width: 100%;
  background: #4e4e4e;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media (1280px <= width) {
  .footer {
    padding: 60px 0 56px;
  }
}
@media (768px <= width < 1280px) {
  .footer {
    padding: 60px 0 64px;
  }
}
@media (width < 768px) {
  .footer {
    padding: 80px 0 64px;
  }
}
.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/img_bg_footer.png) center no-repeat;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.footer__container {
  display: grid;
  margin: 0 auto;
}
@media (1280px <= width) {
  .footer__container {
    grid-template: "footer-item-1 footer-item-2 footer-item-3" minmax(434px, 1fr)/260px 1fr 260px;
  }
}
@media (768px <= width < 1280px) {
  .footer__container {
    grid-template: "footer-item-1 footer-item-2" minmax(450px, 1fr) "footer-item-3 footer-item-3" auto/1fr 1fr;
  }
}
@media (width < 768px) {
  .footer__container {
    grid-template: "footer-item-1" auto "footer-item-2" auto "footer-item-3" auto/1fr;
    gap: 96px 0;
  }
}
@media (768px <= width) {
  .footer__container {
    width: min(100% - 40px, 1240px);
    padding: 0 0 0 30px;
  }
}
@media (width < 768px) {
  .footer__container {
    width: min(100% - clamp(60px, 13.0208333333vw, 100px));
  }
}
.footer__item-1 {
  grid-area: footer-item-1;
}
.footer__item-2 {
  grid-area: footer-item-2;
}
.footer__item-3 {
  grid-area: footer-item-3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px 0;
}
.footer a {
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #68c2e7;
}

/*--------------------------------------
.footer__head
----------------------------------------*/
/* ----------------
// メニュー（グローバルナビ）

// .footer__item-1
---------------- */
.footer-menu {
  display: block;
  width: 100%;
}
.footer-menu > ul {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
@media (width < 768px) {
  .footer-menu > ul {
    flex-direction: column;
    gap: 24px 0;
  }
}
.footer-menu > ul > li > a {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: left;
}
@media (width < 768px) {
  .footer-menu > ul > li > a {
    font-size: clamp(17px, 2.4739583333vw, 19px);
    text-align: center;
  }
}

.footer-info > dl {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}
@media (width < 768px) {
  .footer-info > dl {
    font-size: clamp(16px, 2.34375vw, 18px);
  }
}
.footer-info > dl > dt {
  display: flex;
  flex-direction: column;
  gap: 0.25em 0;
  margin: 0 0 48px;
}
.footer-info > dl > dt .en {
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.90625vw, 30px);
}
.footer-info > dl > dd {
  display: block;
}
.footer-info > dl > dd > a,
.footer-info > dl > dd > span {
  display: block;
  padding: 0 0 0 calc(1.25em + 1em);
  line-height: 1.5;
  position: relative;
}
.footer-info > dl > dd > a::before,
.footer-info > dl > dd > span::before {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.625em;
  background: url(../img/icon_footer_fax.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translate(0, -50%);
}
.footer-info > dl > dd > a[href*=maps]::before,
.footer-info > dl > dd > span[href*=maps]::before {
  background-image: url(../img/icon_footer_map.svg);
}
.footer-info > dl > dd > a[href*="tel:"]::before,
.footer-info > dl > dd > span[href*="tel:"]::before {
  background-image: url(../img/icon_footer_tel.svg);
}
.footer-info > dl > dd > a[href*="mailto:"]::before,
.footer-info > dl > dd > span[href*="mailto:"]::before {
  background-image: url(../img/icon_footer_mail.svg);
}

/*--------------------------------------
.footer__foot
----------------------------------------*/
@media (width < 1280px) {
  .footer-item3-item {
    margin: 0 auto;
  }
}

.footer-btn {
  display: block;
  width: 230px;
  height: 46px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 0.85;
  text-align: center;
}
@media (width < 768px) {
  .footer-btn {
    width: min(100%, 300px);
    height: 60px;
  }
}
.footer-btn > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.6em;
  font-size: 1em;
  font-weight: unset;
  line-height: unset;
  color: #fff;
  position: relative;
  z-index: 1;
}
.footer-btn > a::before, .footer-btn > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #1a9ced 0%, #0c72d8 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.footer-btn > a::after {
  background: #fff;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.footer-btn > a:hover {
  color: unset;
}
.footer-btn > a:hover::after {
  opacity: 0.3;
}

/* ----------------
// コピーライト
---------------- */
.copy-right {
  font-family: Helvetica;
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  text-align: left;
}

/*-----------------------------------------------------------------------------------
main
-----------------------------------------------------------------------------------*/
/*--------------------------------------
<main>
----------------------------------------*/
.main {
  display: block;
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}
.body-inner:has(.header):not(:has(.mv)) .main {
  padding: 72px 0 0; /* ヘッダーの高さ */
}
@media (width < 768px) {
  .body-inner:has(.header):not(:has(.mv)) .main {
    padding: 58px 0 0; /* ヘッダーの高さ */
  }
}

.main:has(.head) {
  background: url(../img/img_bg_head_1.png) top 72px center no-repeat, #f2f2f2;
  background-size: 100%;
}
@media (width < 768px) {
  .main {
    background-position: top 58px center;
  }
}
.main--dark:has(.head) {
  background-image: url(../img/img_bg_head_2.png);
  background-color: #2f2f2f;
  color: #fff;
}

/*--------------------------------------
タイトルエリア
----------------------------------------*/
.head {
  display: block;
  width: 100%;
  padding: 96px 0 48px;
}

.head-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.head-ttl__en {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1em 0;
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  text-align: center;
  color: #4e4e4e;
}
.main--dark .head-ttl__en {
  color: unset;
}

.head-ttl__en::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #696767;
}
.head-ttl__ja {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: center;
  color: #222;
}
.main--dark .head-ttl__ja {
  color: unset;
}

/*--------------------------------------
コンテンツエリア
----------------------------------------*/
.contents {
  display: block;
  width: 100%;
  padding: 0 0 275px;
}

/*--------------------------------------
共通ボタン
----------------------------------------*/
.common-btn {
  display: block;
  width: 230px;
  height: 46px;
  background: linear-gradient(-90deg, #92e6fa 0%, #a3ffd8 100%);
  border-radius: 8px;
  box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #4e4e4e;
  position: relative;
  z-index: 1;
}
@media (width < 768px) {
  .common-btn {
    width: min(100%, 300px);
  }
}
.common-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.common-btn:hover::after {
  opacity: 0.3;
}
.common-btn > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.4em 1em calc(0.4em + 2px) 1em;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: unset;
}

/*--------------------------------------
店舗
----------------------------------------*/
.shop {
  display: flex;
  flex-direction: column;
  gap: 72px 0;
}
.shop-info {
  display: grid;
  grid-template: "shop-item-1 shop-item-1" min-content "shop-item-2 shop-item-2" min-content "shop-item-3 shop-item-4" minmax(400px, auto) "shop-item-3 shop-item-4" min-content/1fr 54.0322580645%;
  gap: clamp(16px, 3.125vw, 24px) clamp(24px, 5.625vw, 72px);
}
@media (width < 768px) {
  .shop-info {
    grid-template: "shop-item-1" min-content "shop-item-2" min-content "shop-item-3" auto "shop-item-4" min-content/1fr;
  }
}
.shop-info__ttl {
  grid-area: shop-item-1;
  font-weight: 600;
  font-size: clamp(24px, 3.90625vw, 30px);
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: left;
  color: #4e4e4e;
}
.shop-info__txt {
  grid-area: shop-item-2;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: left;
  color: #222;
}
.shop-info__img {
  grid-area: shop-item-3;
}
@media (width < 768px) {
  .shop-info__img {
    width: min(100%, 400px);
  }
}
.shop-info__list {
  grid-area: shop-item-4;
}
.shop-info__list > table {
  display: block;
  width: 100%;
}
.shop-info__list > table tbody {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  width: 100%;
}
.shop-info__list > table tr {
  display: grid;
  grid-template-areas: "shop-list-1 shop-list-2" "shop-list-1 shop-list-3";
  grid-template-rows: auto;
  gap: 8px 22px;
  padding: 1em 0;
  border-bottom: 1px solid #ccc;
  text-align: left;
  line-height: 1.5;
}
@media (1280px <= width) {
  .shop-info__list > table tr {
    grid-template-columns: 31.5789473684% 1fr;
  }
}
@media (768px <= width < 1280px) {
  .shop-info__list > table tr {
    grid-template-columns: 31.5789473684% 1fr;
  }
}
@media (width < 768px) {
  .shop-info__list > table tr {
    grid-template-columns: 1fr;
    grid-template-areas: "shop-list-1" "shop-list-2" "shop-list-3";
  }
}
.shop-info__list > table th {
  grid-area: shop-list-1;
  font-size: clamp(16px, 1.40625vw, 18px);
  letter-spacing: 0.04em;
  color: #4e4e4e;
}
@media (width < 768px) {
  .shop-info__list > table th {
    font-size: clamp(18px, 2.6041666667vw, 20px);
  }
}
.shop-info__list > table td {
  grid-area: shop-list-2;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #222;
}
.shop-info__list > table td > a {
  display: block;
  padding: 0 0 0 calc(20px + 0.5em);
  position: relative;
  transition: color 0.3s ease;
}
.shop-info__list > table td > a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translate(0, -50%);
}
.shop-info__list > table td > a:hover {
  color: #8e8e8e;
}
.shop-info__list > table td + td {
  grid-area: shop-list-3;
}
.shop-info__list > table td:has([href*=maps]) > a::before {
  background-image: url(../img/icon_shop_map.svg);
}
.shop-info__list > table td:has([href*="tel:"]) > a::before {
  background-image: url(../img/icon_shop_tel.svg);
}

/*--------------------------------------
事例紹介
----------------------------------------*/
.works {
  padding: 16px 0 0;
}
.works-heading {
  display: block;
  margin: 0 0 1em;
  font-weight: 600;
  font-size: clamp(24px, 3.90625vw, 30px);
  letter-spacing: 0.04em;
  line-height: 36px;
  text-align: left;
  color: #4e4e4e;
}
.works-lead {
  display: block;
  width: 100%;
  padding: 0 0 72px;
  position: relative;
}
@media (width < 1280px) {
  .works-lead {
    padding: 0 0 240px;
  }
}
.works-lead__contents-wrap {
  width: min(100%, 1020px);
  min-height: 520px;
  padding: 64px clamp(16px, 3.90625vw, 30px) 72px;
  position: relative;
}
@media (width < 768px) {
  .works-lead__contents-wrap {
    padding: 64px 0 72px;
  }
}
.works-lead__contents-wrap::before {
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media (768px <= width) {
  .works-lead__contents-wrap::before {
    right: 0;
  }
}
@media (width < 768px) {
  .works-lead__contents-wrap::before {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.works-lead__contents {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  width: min(100%, 770px);
  line-height: 2;
  text-align: left;
  letter-spacing: 0.04em;
  color: #222;
}
.works-lead__img-wrap {
  width: min(100%, 440px);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media (width < 1280px) {
  .works-lead__img-wrap {
    width: min(100%, 400px);
  }
}
.works-lead__img {
  display: block;
  width: 100%;
  padding: 75% 0 0;
  background: url(../img/img_works_1.jpg) center no-repeat;
  background-size: cover;
}
.works-lead__heading {
  font-weight: 600;
  font-size: clamp(20px, 2.8645833333vw, 22px);
  letter-spacing: 0.04em;
}
.works-lead__txt {
  display: flex;
  flex-direction: column;
  gap: 1em 0;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.works-list {
  display: block;
  margin: 120px 0 0;
}
.works-list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: subgrid;
  align-items: center;
  justify-content: space-between;
  gap: 30px 20px;
}
@media (768px <= width < 1280px) {
  .works-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .works-list ul {
    grid-template-columns: repeat(1, min(100%, 480px));
    justify-content: center;
  }
}
.works-list ul > li {
  width: 100%;
  height: 100%;
  min-height: 540px;
  background: #fff;
  border-bottom: 8px solid #ca7b35;
}
.works-list ul > li:nth-of-type(2) {
  border-color: #8a9244;
}
.works-list ul > li:nth-of-type(3) {
  border-color: #acadb5;
}
.works-list ul > li:nth-of-type(4) {
  border-color: #ff629e;
}
.works-list ul > li:nth-of-type(5) {
  border-color: #c6ebeb;
}
.works-list ul > li:nth-of-type(6) {
  border-color: #0e37e0;
}
.works-list ul > li:nth-of-type(7) {
  border-color: #b3eb67;
}
.works-list-img {
  display: block;
  width: 100%;
  padding: 75% 0 0;
  background: url(../img/img_works_2_1.jpg) center no-repeat;
  background-size: cover;
}
.works-list ul > li:nth-of-type(2) .works-list-img {
  background-image: url(../img/img_works_2_2.jpg);
}

.works-list ul > li:nth-of-type(3) .works-list-img {
  background-image: url(../img/img_works_2_3.jpg);
}

.works-list ul > li:nth-of-type(4) .works-list-img {
  background-image: url(../img/img_works_2_4.jpg);
}

.works-list ul > li:nth-of-type(5) .works-list-img {
  background-image: url(../img/img_works_2_5.jpg);
}

.works-list ul > li:nth-of-type(6) .works-list-img {
  background-image: url(../img/img_works_2_6.jpg);
}

.works-list ul > li:nth-of-type(7) .works-list-img {
  background-image: url(../img/img_works_2_7.jpg);
}

.works-list-item {
  display: grid;
  grid-template: minmax(3em, auto) max-content/1fr;
  gap: 16px 0;
  width: 100%;
  padding: clamp(20px, 2.1875vw, 28px) 24px clamp(24px, 2.5vw, 32px) clamp(24px, 2.34375vw, 30px);
  text-align: left;
  color: #222;
  letter-spacing: 0.04em;
}
.works-list-item > h3 {
  font-weight: 400;
  font-size: clamp(17px, 1.5625vw, 20px);
  line-height: 1.5;
}
.works-list-item > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

/*--------------------------------------
会社概要
----------------------------------------*/
.company {
  display: flex;
  flex-direction: column;
  gap: 64px 0;
  padding: 48px 0 0;
}
.company-table > table {
  width: 100%;
  border: 2px solid #b7b7b7;
  border-width: 2px 0;
  line-height: 1.5;
}
.company-table > table > tbody {
  width: 100%;
}
.company-table > table > tbody > tr {
  width: 100%;
  border-top: 1px solid #b7b7b7;
  font-size: clamp(15px, 2.2135416667vw, 17px);
  line-height: 1.2352941176;
  text-align: left;
  color: #222;
}
.company-table > table > tbody > tr:first-of-type {
  border: none;
}
@media (width < 768px) {
  .company-table > table > tbody > tr {
    padding: 0 0.5em;
  }
}
.company-table > table > tbody > tr > th {
  width: min(30%, 280px);
  font-weight: 600;
}
@media (768px <= width) {
  .company-table > table > tbody > tr > th {
    padding: 1em 0 1em 30px;
  }
}
@media (width < 768px) {
  .company-table > table > tbody > tr > th {
    display: block;
    padding: 1em 0 0.5em;
  }
}
.company-table > table > tbody > tr > td {
  padding: 0.6em 0;
  font-weight: 400;
}
@media (width < 768px) {
  .company-table > table > tbody > tr > td {
    display: block;
    padding: 0 0 1em;
  }
}
.company-map {
  width: 100%;
  height: 300px;
}
.company-map iframe {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

/*--------------------------------------
沿革
----------------------------------------*/
.history {
  padding: 64px 0 0 13px;
}
.history-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 0 0 29px;
  position: relative;
}
.history-list::before {
  content: "";
  display: block;
  width: 13px;
  height: 100%;
  background: linear-gradient(#a3ffd8 0%, #92cafa 100%);
  border: solid #fff;
  border-width: 0 3px;
  position: absolute;
  top: 0;
  left: 0;
}
.history-list__item {
  display: grid;
  gap: 0.5em;
  padding: 0 0 72px 25px;
  line-height: 1;
  position: relative;
}
@media (width < 768px) {
  .history-list__item {
    padding: 0 0 48px 25px;
  }
}
.history-list__item::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background: #a3ffd8;
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 0.5em;
  left: -65px;
  transform: translate(50%, -50%);
}
.history-list__item:nth-child(2)::before {
  background: #92faf6;
}
.history-list__item:nth-child(3)::before {
  background: #96d6f2;
}
.history-list__item:nth-child(4)::before {
  background: #92cafa;
}
.history-list__item:last-of-type {
  padding: 0 0 0 25px;
}
@media (1280px <= width) {
  .history-list__item {
    grid-template: "history-item-1 history-item-2 history-item-3" auto/160px 1fr 300px;
  }
}
@media (768px <= width < 1280px) {
  .history-list__item {
    grid-template: "history-item-1 history-item-2" auto "history-item-1 history-item-3" auto/160px 1fr;
  }
}
@media (width < 768px) {
  .history-list__item {
    grid-template: "history-item-1" auto "history-item-2" auto "history-item-3" auto/1fr;
    gap: 24px 0;
    padding: 0 0 72px 8px;
  }
}
@media (width < 768px) {
  .history-list__item:not(:has(.history-list__deta, .history-list__list)) {
    grid-template: "history-item-1" auto/1fr;
  }
}
.history-list__date {
  grid-area: history-item-1;
  font-weight: 600;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  line-height: 1;
  text-align: left;
  color: #222;
}
.history-list__list {
  grid-area: history-item-2;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.history-list__list > li {
  list-style-type: none;
  padding: 0 0 0 23px;
  line-height: 1.5;
  position: relative;
}
.history-list__list > li::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: linear-gradient(#a3ffd8 0%, #a3ffd8 100%);
  color: #fff;
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translate(0, -50%);
}
.history-list__item:nth-of-type(2) .history-list__list > li::before {
  background: #92faf6;
}

.history-list__item:nth-of-type(3) .history-list__list > li::before {
  background: #92e6fa;
}

.history-list__item:nth-of-type(4) .history-list__list > li::before {
  background: #92cafa;
}

.history-list__list > li .caption {
  display: block;
  margin: 0.25em 0 0;
  font-weight: 400;
  font-size: 14px;
}
.history-list__list > li .caption > li {
  list-style-type: disc;
  margin: 0.25em 0 0 1.5em;
}
.history-list__img {
  grid-area: history-item-3;
  display: grid;
  grid-template-columns: repeat(auto-fit, 140px);
  grid-auto-rows: 140px;
  justify-content: right;
  gap: 8px;
  margin: 8px 0 0;
}

/*--------------------------------------
CONTACT

入力画面 = contact.html
確認画面・送信完了画面 = mail.php
----------------------------------------*/
.contact {
  display: block;
  padding: 40px 0 0;
}

.form-lead {
  display: block;
  width: min(100%, 720px);
  margin: 0 0 24px;
  font-weight: 500;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 2;
  text-align: left;
  color: #fff;
}

.form-wrap {
  padding: 100px 30px 72px;
  border: 1px solid #696767;
}
@media (width < 768px) {
  .form-wrap {
    padding: 16px 10px 40px;
  }
}

/* 入力欄 */
.form {
  display: block;
  width: 100%;
}
.form table {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: clamp(16px, 2.34375vw, 18px);
  text-align: left;
  line-height: 1.5;
}
.form tbody {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  width: 100%;
}
.form tr {
  display: grid;
  grid-template: 1fr/clamp(200px, 20.3125vw, 260px) 1fr;
  gap: 0.5em 20px;
}
@media (width < 768px) {
  .form tr {
    grid-template: 1fr/1fr;
  }
}
.form th {
  display: flex;
  align-items: baseline;
}
.form th:has(.form-require) {
  gap: 0 0.5em;
}
.form td {
  width: 100%;
}
.form td input:not([type*=checkbox]),
.form td textarea,
.form td select {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 4px 8px;
  background: #ffffff;
    
    /*フォントサイズ修正*/
    font-size:1.2em;
}
.form td textarea {
  min-height: 110px;
  padding: 8px;
}
.form td select:invalid {
  color: #818b95;
}

/* 名前（入力欄） */
.form-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.form-name-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px 10px;
  width: min(100%, 330px);
}
.form-name-list__item input:not([type*=checkbox]) {
  display: inline-block;
  width: min(100%, 300px);
}

/* チェックボックス（入力欄）　wrapper */
.form-check-list-wrap {
  padding: 15px 0 20px;
}

/* チェックボックス（入力欄） */
.form-check-list {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}

/* チェックボックス（本体） */
.form-check-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 5px 10px;
}
.form-check-item input[type*=checkbox] {
  width: 28px;
  height: 28px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #707070;
}

/* テキスト　wrapper */
.form-text-cont {
  margin: 30px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7142857143;
  text-align: center;
}
@media (width < 520px) {
  .form-text-cont {
    text-align: justify;
  }
}
.form-text-cont a {
  color: #68c2e7;
  text-decoration: underline;
}

/* ボタン　wrapper */
.form-btn-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 60px 0 0;
}

.form-btn {
  display: block;
  width: 300px;
  height: 46px;
  background: linear-gradient(-90deg, #92e6fa 0%, #a3ffd8 100%);
  border-radius: 8px;
  box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #4e4e4e;
  position: relative;
  z-index: 1;
}
@media (width < 520px) {
  .form-btn {
    width: 240px;
  }
}
.form-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.form-btn:hover::after {
  opacity: 0.3;
}
.form-btn input {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0.4em 1em;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-family: unset;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: unset;
}

/* 必須事項アイコン */
.form-require {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 18px;
  background: #f00;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-align: left;
  color: #fff;
}

/* ----------------
// 確認画面　テーブル
---------------- */
.form-confirmation table {
  width: 100%;
  border-width: 1px 0 1px;
  text-align: left;
}
.form-confirmation table > tbody {
  width: 100%;
}
.form-confirmation table > tbody > tr {
  width: 100%;
  border-bottom: 1px solid #fff;
}
.form-confirmation table > tbody > tr:first-of-type {
  border-top: 1px solid #fff;
}
.form-confirmation table > tbody > tr > th,
.form-confirmation table > tbody > tr > td {
  padding: 1.15em 1em;
  font-size: clamp(18px, 1.5625vw, 20px);
}
.form-confirmation table > tbody > tr > th {
  width: 20%;
  min-width: 230px;
  padding-right: 0;
  font-weight: 500;
  line-height: 1.25;
}
.form-confirmation table > tbody > tr > td {
  font-weight: 300;
  line-height: 1.5;
}
.form-confirmation table > tbody > tr > td input {
  appearance: none;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  font-family: unset;
  font-weight: unset;
  font-size: 1em;
  letter-spacing: unset;
  line-height: unset;
  color: unset;
}
.form-confirmation table > tbody > tr > td:has(input[value=""]) {
  height: calc(0.8959090909em * 2 + 1em); /* 無入力の場合、高さを維持する */
}
@media (width < 768px) {
  .form-confirmation table > tbody > tr > th,
  .form-confirmation table > tbody > tr > td {
    display: block;
    width: 100%;
    padding: 1.0454545455em 0.5em;
    text-align: left;
  }
  .form-confirmation table > tbody > tr > th {
    padding-bottom: 0;
    padding-left: 0;
  }
}

/* mail.php　エラーメッセージ */
.contact .error_messe {
  color: #ff0000;
}

/*--------------------------------------
プライバシーポリシー
----------------------------------------*/
.policy {
  display: flex;
  flex-direction: column;
  gap: 72px 0;
}
.policy-lead {
  display: block;
  text-indent: 1em;
  font-weight: 400;
  font-size: clamp(15px, 2.34375vw, 18px);
  letter-spacing: 0.01em;
  line-height: 1.7777777778;
  text-align: left;
}
.policy-list > ul {
  counter-reset: number 0;
  display: flex;
  flex-direction: column;
  gap: 64px 0;
}
.policy-list > ul > li {
  counter-increment: number 1;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  line-height: 1.5;
}
.policy-list > ul > li > h2 {
  display: block;
  padding: 0 0 0 calc(34px + 0.5em);
  margin: 0 0 8px;
  font-weight: 400;
  font-size: clamp(17px, 2.8645833333vw, 22px);
  line-height: 1.25;
  position: relative;
}
.policy-list > ul > li > h2::before {
  content: counter(number);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.4166666667em;
  height: 1.4166666667em;
  padding: 0 0 2px;
  background: #1a9ced;
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.0909090909em;
  color: #fff;
  position: absolute;
  top: 0.625em;
  left: 0;
  transform: translate(0, -50%);
}
.policy-list > ul > li > p {
  font-weight: 400;
  font-size: clamp(16px, 2.34375vw, 18px);
}
@media (768px <= width) {
  .policy-list > ul > li > p {
    margin: 0 0 0 30px;
  }
}
.policy-list > ul > li > p a {
  margin: 0 0.25em;
  color: #68c2e7;
  text-decoration: underline;
}
.policy-list > ul > li > ol {
  counter-reset: number2 0;
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
@media (768px <= width) {
  .policy-list > ul > li > ol {
    margin: 0 0 0 30px;
  }
}
.policy-list > ul > li > ol li {
  counter-increment: number2 1;
  padding: 0 0 0 1.5em;
  line-height: 1.5;
  position: relative;
}
.policy-list > ul > li > ol li::before {
  content: counter(number2);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.1em;
  height: 1.1em;
  padding: 0.1em 0.1em calc(0.1em + 2px);
  border: 1px solid;
  border-radius: 50%;
  font-size: 0.8888888889em;
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translate(0, -50%);
}
@media (768px <= width) {
  .policy-info {
    margin: 16px 0 0 30px;
  }
}
@media (width < 768px) {
  .policy-info {
    margin: 16px 0 0;
  }
}
.policy-info > dl {
  display: block;
  width: min(100%, 590px);
  min-height: 200px;
  padding: 32px 40px 40px;
  border: 1px solid #fff;
}
.policy-info > dl > dt,
.policy-info > dl > dd {
  display: block;
  margin: 0 0 0.25em;
  font-weight: 400;
  font-size: clamp(16px, 2.34375vw, 18px);
}

/* -----------------------------------------------------------------------------------
HOME画面
----------------------------------------------------------------------------------- */
@media (768px <= width) {
  .body-inner:has(.mv) .header {
    display: none;
  }
}
@media (768px <= width) {
  .body-inner:has(.mv) .header.is-scroll {
    display: block;
  }
}

/*--------------------------------------
メインビジュアル
----------------------------------------*/
.mv {
  display: block;
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (768px <= width) {
  .mv::before {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% + 180px);
    background: url(../img/img_bg_mv.png) right bottom no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (768px <= width) {
  .mv {
    max-height: 1013px;
  }
}
@media (width < 768px) {
  .mv {
    height: calc(100vh + 120px);
    background: url(../img/img_bg_mv.png) right 60% bottom no-repeat;
    background-size: cover;
  }
}
.mv__mask {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (768px <= width) {
  .mv__mask {
    clip-path: ellipse(110% 99% at top right);
  }
}
@media (width < 768px) {
  .mv__mask {
    height: 80vh;
  }
}
.mv__slider {
  display: block;
  width: 100%;
  height: 100%;
  background: #222;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mv-gradation {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(198, 223, 255, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.mv-heading {
  display: inline-block;
  font-weight: 500;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-align: right;
  color: #fff;
  position: absolute;
  right: clamp(16px, 2.34375vw, 30px);
  bottom: 120px;
  z-index: 4;
}
@media (width < 768px) {
  .mv-heading {
    bottom: 20vh;
  }
}
.mv-heading__bald {
  display: inline-block;
  margin: 0 0.2em;
  font-family: "Zen Old Mincho";
  font-weight: 700;
  font-size: 2.5em;
}
.mv .slider {
  width: 100%;
  height: 100vh;
  max-height: 1013px;
  position: relative;
  z-index: 1;
}
.mv .slider-item01 {
  background: url(../img/mv-slider/img_mv_2.jpg);
}
.mv .slider-item02 {
  background: url(../img/mv-slider/img_mv_1.jpg);
}
.mv .slider-item03 {
  background: url(../img/mv-slider/img_mv_3.jpg);
}
.mv .slider-item04 {
  background: url(../img/mv-slider/img_mv_4.jpg);
}
.mv .slider-item {
  display: block;
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  max-height: 1013px;
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}

.mv-name {
  display: block;
  font-weight: 700;
  font-size: 14px;
  text-align: left;
  color: #fff;
  position: absolute;
  left: 30px;
  top: 40px;
  z-index: 6;
}
@media (width < 768px) {
  .mv-name {
    display: none;
  }
}

.mv-menu {
  display: block;
  width: 300px;
  position: absolute;
  left: 30px;
  bottom: 40px;
  z-index: 5;
}
.mv-menu__logo {
  width: 166px;
  margin: 0 0 16px;
}
.mv-menu > ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.mv-menu > ul > li {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.03em;
  text-align: left;
  color: #4e4e4e;
}
.mv-menu > ul > li > a {
  transition: color 0.3s ease;
}
.mv-menu > ul > li > a:hover {
  color: #68c2e7;
}
@media (width < 768px) {
  .mv-menu {
    display: none;
  }
}

/*--------------------------------------
セクションの見出し
----------------------------------------*/
.home-heading {
  display: block;
  margin: 0 0 2em;
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  text-align: center;
  color: #4e4e4e;
}

/*--------------------------------------
セクションのボタン
----------------------------------------*/
.home-btn-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 32px 0 0;
}
@media (width < 768px) {
  .home-btn-wrap {
    justify-content: center;
  }
}

/*--------------------------------------
セクション > OUR SERVICES
----------------------------------------*/
.home-services {
  display: block;
  padding: 200px 0 96px;
  background: url(../img/img_bg_home_1.png) center no-repeat;
  background-size: contain;
}
@media (width < 768px) {
  .home-services {
    padding: 0 0 200px;
  }
}
.home-services-contents {
  display: block;
  margin: 0 0 148px;
}
.home-services-lead {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  margin: 0 0 32px;
}
.home-services-lead > h3 {
  font-weight: 600;
  font-size: clamp(24px, 3.90625vw, 30px);
  letter-spacing: 0.04em;
  text-align: left;
  color: #4e4e4e;
}
.home-services-lead > p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: left;
  color: #222;
}
.home-services-shop {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}
.home-services-shop__img {
  display: block;
  background: url(../img/img_shop_1.jpg) center top 80% no-repeat;
  background-size: cover;
}
.home-services-shop__img--2 {
  background-image: url(../img/img_shop_2.jpg);
}
.home-services-slider .slider .img {
  display: block;
}
.home-services-slider .slider .img__inner {
  display: block;
  width: 100%;
  padding: 75.8620689655% 0 0;
  background: url(../img/works-slider/img_home_works_1.jpg) center no-repeat;
  background-size: cover;
}
.home-services-slider .slider .img__inner--2 {
  background-image: url(../img/works-slider/img_home_works_2.jpg);
}
.home-services-slider .slider .img__inner--3 {
  background-image: url(../img/works-slider/img_home_works_3.jpg);
}
.home-services-slider .slider .img__inner--4 {
  background-image: url(../img/works-slider/img_home_works_4.jpg);
}
.home-services-slider .slider .img__inner--5 {
  background-image: url(../img/works-slider/img_home_works_5.jpg);
}
.home-services-slider .slider .img__inner--6 {
  background-image: url(../img/works-slider/img_home_works_6.jpg);
}
.home-services-slider .slider .img__inner--7 {
  background-image: url(../img/works-slider/img_home_works_7.jpg);
}
.home-services-slider .slider .img__inner--8 {
  background-image: url(../img/works-slider/img_home_works_8.jpg);
}
.home-services-slider .slider .img__inner--9 {
  background-image: url(../img/works-slider/img_home_works_9.jpg);
}
.home-services-slider .slider .img__inner--10 {
  background-image: url(../img/works-slider/img_home_works_10.jpg);
}
.home-services-slider .slider .img__inner--11 {
  background-image: url(../img/works-slider/img_home_works_11.jpg);
}
.home-services-slider .slider .slick-slide {
  /*slickのJSで書かれるタグ内、スライド左右の余白調整*/
  margin: 0 10px;
}

/*--------------------------------------
セクション > ABOUT US
----------------------------------------*/
.home-about {
  display: block;
  padding: 0 0 400px;
  background: url(../img/img_bg_home_2.png) center bottom no-repeat;
  background-size: cover;
}
.home-about-txt-area {
  display: flex;
  flex-direction: column;
  gap: 2em 0;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 32px;
  text-align: left;
  color: #222;
}
@media (width < 768px) {
  .home-about-btn {
    margin: 64px 0 0;
  }
}