/* 共通設定 */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
}

/* header 共通 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  padding: 0 20px;
  z-index: 1000;
  gap: 20px;
}

/* 左エリア： subtitle + ロゴ 縦並び左揃え */
.header-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}

.subtitle {
  font-size: 12px;
  color: #727171;
  margin: 0;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.logo-img {
  width: 100%;
  height: auto;
}

/* ハンバーガー */
.hamburger {
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: gray;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 11px;
}
.hamburger span:nth-child(3) {
  top: 22px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

/* ====================== PC用スタイル ====================== */
@media (min-width: 501px) {
  .pc { display:inline; }
  .sp { display:none; }

  /* 固定追従ヘッダー */
  header {
    height: 85px;
    padding: 0 20px;
  }

  .header-left {
    min-width: 120px;
    max-width: 200px;
  }

  .logo-img {
    max-width: 90px;
  }

  /* 中央にメニューとインスタアイコン横並び */
  .header-center {
    display: flex;
    justify-content: flex-end; /* 右寄せ */
    align-items: center;
    gap: 32px;
    flex: 1;
  }

  /* PCメニュー表示 */
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    gap: 32px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    white-space: nowrap;
  }

  .nav-links a {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    height: 50px;
    font-size: 20px;
    color: #000;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
    width: auto !important;
    padding: 0 10px;
  }

  .instagram-icon {
    display: flex !important;
    align-items: center;
  }



  .instagram-icon i {
    font-size: 30px;
    line-height: 1;
    
  }


  .instagram-icon a{
    color: #000;
  }

  /* SPアイコン・ハンバーガーは非表示 */
  .sp-icons {
    display: none !important;
  }

  /* ハンバーガー非表示 */
  .hamburger {
    display: none;
  }

  /* メニューは画面幅内 */
  .menu {
    display: none !important;
  }

  /* 固定追従ヘッダー */

  /* TOPスライドショー */
  .slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 150px;
  }

  .slider-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
  }

  .slider-track img {
    height: 500px;
    width: auto;
    margin-right: 20px;
    vertical-align: middle;
  }

  /* about */
  h1 {
    max-width: 50%;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 50px;
    margin: 100px auto;
    line-height: 100px;
  }

  #about {
    max-width: 50%;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    margin: 0px auto;
    line-height: 40px;
  }

  /* 問い合わせボタン */
  #toiawase {
    background-color: #000;
    margin: 100px auto;
    width: 300px;
  }
   #toiawase a{
      color: #fff;
      text-decoration: none;
   }

  #toiawase {
    padding: 2px 20px;
    font-size: 20px;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    text-align: center;
  }
  /* 問い合わせボタン */

  /* WORK */
  #work {
    background-color: #e5e5e5;
  }

  #work2 {
    margin: 200px auto;
    padding: 150px 0;
    max-width: 50%;
  }

  h2 {
    max-width: 50%;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 80px;
    margin: 50px 0 150px 10px;
    line-height: 50px;
  }

  .works-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* PCは3列 */
    gap: 40px !important;
     grid-auto-flow: row; /* 横方向に順序通り配置 */
  }

  .work {
    position: relative;
    width: 100%;
    break-inside: avoid;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.96);
    animation: fadeIn 0.6s ease forwards;
  }

  .work img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease, transform 0.3s ease;
  }

  .work-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .work:hover img,
  .work.active img {
    filter: brightness(70%);
    transform: scale(1.05);
  }

  .work:hover .work-overlay,
  .work.active .work-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .work-overlay span {
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 700;
    font-style: normal;
    padding: 5px;
    text-align: center;
   -webkit-user-select: none; /* Safari用 */
    user-select: none;         /* 標準 */
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

 /* WORKFLOW */

 #WORKFLOW{
  padding-bottom: 100px;
  max-width: 50%;
  margin: 0 auto;
 }

#flow01 ul {
  margin-left: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start; /* テキストの上に揃えたい場合 */
  gap: 20px; /* アイコンとテキストの間のスペース */
}

  #flow01 ul li{
  list-style: none;
  align-items: center;
 }

#flowicon {
  position: relative; /* 縦線を絶対配置するため親要素をrelativeに */
   flex: 0 0 80px; /* 幅高さを固定 */
  background-color: #000;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;             /* 追加 */
  justify-content: center;   /* 横方向中央揃え */
  align-items: center;       /* 縦方向中央揃え */
  box-sizing: border-box;  /* 追加 */
}


/* 縦線部分 */
#flowicon::after {
  content: "";
  position: absolute;
  top: 60px; /* アイコンの下端 */
  left: 50%; /* アイコン中央 */
  transform: translateX(-50%);
  width: 2px; /* 線の太さ */
  height: 250px; /* 線の長さ。調整可能 */
  background-color: #000; /* 線の色 */
}

/* 最後の flowicon の線を消す */
#flow01:last-of-type #flowicon::after {
  content: none;
}

ul {
  padding-inline-start: 0;
}

  #flowicon i{
  color: #fff;
 }

 h3{
  margin: 18px 0;
  align-items: center;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
 }


 #flowtext{
    font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
 }
/* WORKFLOW */


 /* FAQ */

 #FAQ{
  padding-bottom: 100px;
  max-width: 50%;
  margin: 0 auto;
 }

#FAQnaiyou{
  margin-left: 50px;
}

h4{
  margin: 18px 0;
  align-items: center;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  border-bottom: solid 1px;
    padding-bottom: 10px;
}

#answer{
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 100px;
}

#answer2{
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 50px;
}


  /* 表 */
:root{
  --text:#000;          /* 文字色 */
  --muted:#000;         /* 補助テキスト（片面など） */
  --line:#d1d5db;          /* 区切り線 */
}

.wrap{
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
  font-size: 20px;
    font-weight:600;
  margin-inline:auto;
 margin-bottom: 100px;
}

.price-table{
  width:100%;
  border-collapse:collapse;
  table-layout:fixed;
}


.price-table tr{
  border-bottom:1.5px solid var(--line);
}


.price-table th,
.price-table td{
  padding:14px 8px;
  vertical-align:middle;
}

.price-table th{
  text-align:left;

}

.price-table td{
  text-align:right;
  white-space:nowrap;
  font-variant-numeric: tabular-nums;
}

.note{ 
  color:var(--muted); 
 
  margin-right:.35em; 
}

.unit{
  font-size:0.8em;  /* 円〜の部分だけ小さく */
}



  /* 表 */


  /* FAQ */


  /* Access */
 #ACCESS{
  padding-bottom: 100px;
  max-width: 50%;
  margin: 0 auto;
 }

 #ACCESS iframe{
  width: 100%;
  height: 400px;
 }


 #shamei{
  font-family: "zen-kaku-gothic-new", sans-serif;
   font-weight: 700;
   font-style: normal;
  font-size:20px;
  margin-left: 10px;
 }

  #shamei02{
  font-family: "zen-kaku-gothic-new", sans-serif;
   font-weight: 400;
   font-style: normal;
  font-size: 18px;
  margin-left: 10px;
 }

  #shamei02 a{
  color: #000;
 }


/* Access */

/* お問い合わせ */
#CONTACT{
  margin: 0 auto;
  background-color: #808080;
}

#CONTACT2{
  margin: 100PX auto 0 auto;
  background-color: #808080;
}
#CONTACT a{
   text-decoration: none;
}

#CONTACT2 a{
   text-decoration: none;
}


h5{
  margin-block-start: 0;
  margin-block-end: 0;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size:30px;
  text-align: center;
  color: #fff;
  padding: 10px 0;
}

/* お問い合わせ */

/* 会社概要 */
#gaiyou{
  background-color: #000;
 bottom: 0 ;
 position: relative;
   padding: 20px 0;
}

#gaiyou ul{
  max-width: 80%;
  list-style: none;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
padding-bottom: 20px;
}

#logo02 img{
  width: 8%;
}


  .instagram-icon02 {
    display: flex !important;
    align-items: center;
    color: #fff;
  text-decoration: none;
  }


  .instagram-icon02 i {
    font-size: 30px;
    line-height: 1;
  }

  #gaiyou p{
    font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size:15px;
  text-align: left;
  color: #fff;
  line-height: 30px;
  }

    #gaiyou a{
    text-decoration: none;
      color: #fff;
  }

  #gaiyoup{
    max-width: 80%;
    margin: 0 auto;
  }

  #copy{
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size:15px;
  text-align: center;
  color: #fff;
  line-height: 30px;

  }



/* 会社概要 */



  /* 問い合わせページ */
#CONTACT02 {
  padding-bottom: 100px;
  max-width: 50%;
  margin: 200px auto 0 auto;
}

#subt {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 40;
  font-style: normal;
  font-size: 20px;
  text-align: left;
  color: #000;
  line-height: 30px;
  margin-bottom: 1.5rem;
}

label{
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 30px;
}

/* 入力欄の背景色を #cccccc に */
.contact-form input,
.contact-form textarea {
  background-color: #cccccc;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 0.6rem;
  width: 100%;
  font-size: 1rem;
  margin-top: 0.4rem;
}

.required {
  color: red;
}

button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.8rem 1.5rem;
  margin: 0 20px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 3px;
}

button a{
  color: #fff;
    text-decoration: none;
}

button:hover {
  background: #333;
}

.notes {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #555;
  margin-top: 2rem;
  line-height: 1.5;
}

/* 必須マークと説明文を右端に寄せる */
.label-header {
  display: flex;
  justify-content: start;
  align-items: center;
}

.note-text {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #555;
  margin-left: 0.5rem;
  text-align: left;
}


  /* 問い合わせページ */

/* 実績ページ */
    #zissekit {
     margin: 200px auto 0 auto;
    max-width: 50%;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 40px;
  }

  #zissekis {
     margin: 50px auto 200px auto;
    max-width: 50%;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height:30px;
  }

    #zissekis2 {
     margin: 10px auto 10px auto;
    max-width: 50%;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height:30px;
  }

  #zissekis2 a{
     color: #000;
  }

/* 実績画像エリア */
#zissekiimg01{
  margin: 50px auto 0 auto;
  text-align: center;
}

#zissekiimg02{
  margin: 0 auto;
  text-align: center;
}

/* 実績画像 */
#zissekiimg01 img {
  display: block;      
  margin: 0 auto;       
  padding: 20px 0;
  max-width: 30%;
}

/* 実績画像 */
#zissekiimg02 img {
  display: block;       /* 縦並びにする */
  margin: 0 auto;       /* 中央寄せ */
  padding: 20px 0;
  max-width: 50%;
}
    /* 実績ページ */

/* プライバシーポリシー */

  #privacy {
     margin: 50px auto;
    max-width: 50%;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 40px;
  }

    #privacy2 {
     margin: 20px auto;
    max-width: 50%;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height:30px;
  }

/* プライバシーポリシー */

#tyushaku{
    font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 15px;
  margin-top: 50px;
  text-align: right;
}
}

/* ====================== スマホ用スタイル ====================== */
@media (max-width: 500px) {
  .pc { display:none; }
.sp { display:inline; }

  /* 固定追従ヘッダー */
  header {
    height: 80px;
    padding: 0 12px;
  }

  .header-left {
    min-width: 100px;
    max-width: 200px;
  }

  .logo-img {
    max-width: 80px;
  }

  .header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  /* メニューは横並び非表示 */
  .nav-links {
    display: none;
  }

  /* SPアイコン+ハンバーガー表示 */
  .sp-icons {
    display: flex !important;
    gap: 16px;
    align-items: center;
    margin-left: auto;
  }

  .sp-icons a{
    text-decoration: none;
    color: #000;
  }


  /* ハンバーガー表示 */
  .hamburger {
    display: block;
  }

  /* メニュー幅と位置 */
  .menu {
    top: 80px; /* ヘッダー下から */
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(255, 255, 255, 0.8);
  }
  .menu.active {
    transform: translateX(0);
  }

  /* メニュー（SP） */
  .menu {
    position: fixed;
    left: 0;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 20px;

    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 900; /* ヘッダーより下 */

    font-family: "zen-kaku-gothic-new", sans-serif;
    font-weight: 600;
    font-style: normal;
  }

  .menu nav a {
    display: block;
    margin: 30px 0;
    font-size: 30px;
    color: #000;
    text-decoration: none;
  }

  /* メニューオーバーレイ */
  .overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 80px);
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 899;
  }

  .overlay.active {
    display: block;
  }

  /* スライダー */
  .slider {
    margin-top: 100px;
    overflow: hidden;
  }

  .slider-track {
    display: flex;
    white-space: nowrap;
  }

  .slider-track img {
    height: 300px;
    width: auto;
    margin-right: 10px;
  }

  /* about */
  h1 {
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 32px;
    margin: 50px 20px 40px;
    line-height: 1.2;
  }

  #about {
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    margin: 0 20px 60px;
    line-height: 1.4;
  }

  /* 問い合わせボタン */
  #toiawase {
    margin: 0 20px 50px;
    background-color: #000;
    padding: 8px 0;
    text-align: center;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
  }
     #toiawase a{
      color: #fff;
      text-decoration: none;
   }

  /* WORK */
  #work {
    background-color: #e5e5e5;
  }

  #work2 {
    margin: 0 20px 100px;
    padding: 100px 0 40px;
  }

  h2 {
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    margin: 70PX 0 70px 10px;
    line-height: 1;
  }

  /* 2列グリッドに切替 */
.works-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important; /* 2列固定 */
  gap: 20px !important;
  grid-auto-flow: row;
  padding-bottom: 100px;
}

/* 横長画像の親要素は2列分を使う */
.work.wide {
grid-column: span 2 !important;
}

  .work {
    break-inside: avoid;
    margin-bottom: 20px;

    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.96);
    animation: fadeIn 0.6s ease forwards;
    z-index: 10; /* 画像より前面に */
     cursor: pointer;
  }

  .work img {
   width: 100%;
  height: auto;
  display: block;

    transition: filter 0.3s ease, transform 0.3s ease;
  }



  .work-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 20; /* 画像より上 */
  }

  .work:hover img,
  .work.active img {
    filter: brightness(70%);
    transform: scale(1.05);
  }

  .work:hover .work-overlay,
  .work.active .work-overlay {
    opacity: 1!important;;
    pointer-events: auto!important;;
  }

  .work-overlay span {
    color: #fff;
    position: absolute;
    font-size: 14px;
    line-height: 30px;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 700;
    font-style: normal;
    padding: 5px;
    text-align: center;
    -webkit-user-select: none; /* Safari用 */
    user-select: none;         /* 標準 */
    z-index: 99; 
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* インスタアイコン */

  .instagram-icon {
    display: flex !important;
    align-items: center;
  }


  .instagram-icon i {
    font-size: 30px;
    line-height: 1;

  }

  .instagram-icon i:hover {
    color: #000;
  }


    /* インスタアイコン */


 /* WORKFLOW */

 #WORKFLOW{
  padding-bottom: 100px;
 }

#flow01 ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start; /* テキストの上に揃えたい場合 */
  gap: 10px; /* アイコンとテキストの間のスペース */
}

  #flow01 ul li{
  list-style: none;
 }

#flowicon {
  position: relative; /* 縦線を絶対配置するため親要素をrelativeに */
   flex: 0 0 60px; /* 幅高さを固定 */
  background-color: #000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;             /* 追加 */
  justify-content: center;   /* 横方向中央揃え */
  align-items: center;       /* 縦方向中央揃え */
  box-sizing: border-box;  /* 追加 */
}


/* 縦線部分 */
#flowicon::after {
  content: "";
  position: absolute;
  top: 60px; /* アイコンの下端 */
  left: 50%; /* アイコン中央 */
  transform: translateX(-50%);
  width: 2px; /* 線の太さ */
  height: 250px; /* 線の長さ。調整可能 */
  background-color: #000; /* 線の色 */
}

/* 最後の flowicon の線を消す */
#flow01:last-of-type #flowicon::after {
  content: none;
}

ul {
  padding-inline-start: 0;
}

  #flowicon i{
  color: #fff;
 }

 h3{
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
 }


 #flowtext{
    font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
 }
/* WORKFLOW */


 /* FAQ */

 #FAQ{
  padding-bottom: 100px;

 }

#FAQnaiyou{
  margin: 0 5px;
}

h4{
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 19px;
  border-bottom: solid 1px;
  margin-left: 5px;
  padding-bottom: 10px;
}

#answer{
   font-family: "zen-kaku-gothic-new", sans-serif;
   font-weight: 400;
   font-style: normal;
  font-size: 14px;
  margin-bottom: 80px;
    margin-left: 5px;
}

#answer2{
   font-family: "zen-kaku-gothic-new", sans-serif;
   font-weight: 400;
   font-style: normal;
  font-size: 14px;
  margin-bottom: 50px;
  margin-left: 5px;
}

  /* 表 */
:root{
  --text:#000;          /* 文字色 */
  --muted:#000;         /* 補助テキスト（片面など） */
  --line:#d1d5db;          /* 区切り線 */
}

.wrap{
   font-family: "zen-kaku-gothic-new", sans-serif;
   font-weight: 400;
   font-style: normal;
  font-size: 14px;
  margin-inline:auto;
    margin-bottom: 80px;
}

.price-table{
  width:100%;
  border-collapse:collapse;
  table-layout:fixed;
}


.price-table tr{
  border-bottom:1.5px solid var(--line);
}


.price-table th,
.price-table td{
  padding:14px 0px;
  vertical-align:middle;
}

.price-table th{
  text-align:left;

}

.price-table td{
  text-align:right;
  white-space:nowrap;
  font-variant-numeric: tabular-nums;
}

.note{ 
  color:var(--muted); 
 
  margin-right:.35em; 
}

.unit{
  font-size:0.8em;  /* 円〜の部分だけ小さく */
}



  /* 表 */


  /* FAQ */


/* Access */
 #ACCESS{
  padding-bottom: 100px;
  margin: 0 auto;
 }

 #ACCESS iframe{
  width: 100%;
  height: 300px;
 }


 #shamei{
  font-family: "zen-kaku-gothic-new", sans-serif;
   font-weight: 700;
   font-style: normal;
  font-size: 18px;
  margin-left: 10px;
 }

  #shamei02{
  font-family: "zen-kaku-gothic-new", sans-serif;
   font-weight: 400;
   font-style: normal;
  font-size: 14px;
  margin-left: 10px;
 }

  #shamei02 a{
  color: #000;
 }


/* Access */



/* お問い合わせ */
#CONTACT{
  background-color: #808080;
}
#CONTACT a{
   text-decoration: none;
}

#CONTACT2{
  margin-top: 100PX;
  background-color: #808080;
}
#CONTACT2 a{
   text-decoration: none;
}

h5{
  margin-block-start: 0;
  margin-block-end: 0;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size:30px;
  text-align: center;
  color: #fff;
  padding: 10px 0;
}

/* お問い合わせ */


/* 会社概要 */
#gaiyou{
  background-color: #000;
 bottom: 0 ;
 position: relative;
   padding: 20px 0;
}

#gaiyou ul{
  max-width: 80%;
  list-style: none;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
padding-bottom: 20px;
}

#logo02 img{
  width: 30%;
}


  .instagram-icon02 {
    display: flex !important;
    align-items: center;
    color: #fff;
  text-decoration: none;
  }


  .instagram-icon02 i {
    font-size: 40px;
    line-height: 1;
  }

  #gaiyou p{
    font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size:15px;
  text-align: left;
  color: #fff;
  line-height: 30px;
  }

    #gaiyou a{
    text-decoration: none;
      color: #fff;
  }

  #gaiyoup{
    max-width: 80%;
    margin: 0 auto;
  }

  #copy{
    font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size:15px;
  text-align: center;
  color: #fff;
  line-height: 30px;
  }



/* 会社概要 */



  /* 問い合わせページ */
#CONTACT02 {
  padding-bottom: 100px;
  margin: 150px auto 0 auto;
}

#subt {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  color: #000;
  line-height: 30px;
  margin-bottom: 1.5rem;
  margin-left: 10px;
}

label{
  max-width: 95%;
  margin: 0 auto;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 30px;
}

/* 入力欄の背景色を #cccccc に */
.contact-form input,
.contact-form textarea {
  background-color: #cccccc;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 0.6rem;
  width: 100%;
  font-size: 1rem;
  margin-top: 0.4rem;
}

.required {
  color: red;
}

button {
  text-align: center;
  margin-left: 10px;
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  margin: 20px 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 3px;
}

button a{
  color: #fff;
      text-decoration: none;

}

button:hover {
  background: #333;
}

.notes {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #555;
  margin-top: 2rem;
  margin-left: 10px;
  line-height: 1.5;
}

/* 必須マークと説明文を右端に寄せる */
.label-header {
  display: flex;
  justify-content: start;
  align-items: center;
}

.note-text {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #555;
  margin-left: 0.5rem;
  text-align: left;
}


  /* 問い合わせページ */


  /* 実績ページ */
    #zissekit {
     margin: 150px auto 0 auto;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 40px;
    margin-left: 10px;
  }

#zissekis {
     margin: 50px auto 150px auto;
    max-width: 95%;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height:30px;
  }

#zissekis2 {
     margin: 10px auto 10px auto;
    max-width: 95%;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height:30px;
  }

  #zissekis2 a{
     color: #000;
  }

/* 実績画像エリア */
#zissekiimg01{
  margin: 50px auto 0 auto;
  text-align: center;
}

#zissekiimg02{
  margin: 0 auto;
  text-align: center;
}

/* 実績画像 */
#zissekiimg01 img {
  display: block;      
  margin: 0 auto;       
  padding: 20px 0;
  max-width: 95%;
}

/* 実績画像 */
#zissekiimg02 img {
  display: block;       /* 縦並びにする */
  margin: 0 auto;       /* 中央寄せ */
  padding: 20px 0;
  max-width: 95%;
}
    /* 実績ページ */



/* プライバシーポリシー */

  #privacy {
margin: 50px auto 0 auto;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 40px;
    margin-left: 10px;
  }

    #privacy2 {
     margin: 20px auto 0 auto;
    max-width: 95%;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height:30px;
  }

/* プライバシーポリシー */

#tyushaku{
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 14px;
  margin-top: 50px;
  text-align: left;
}
}