@charset "utf-8";

html {
  scroll-behavior: smooth;
}

body {
  height: 100%;
  font-family: "Josefin Sans", '游ゴシック', "YuGothic", "游ゴシック体 Pr6N M", "Yu Gothic Pr6N M", 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', "Meiryo", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  font-optical-sizing: auto;
  font-style: normal;
  color: #333;
  background-color: #fff;
}

/*========= ヘッダー部のCSS ===============*/
header {
  max-width: 600px;
  /* width: 30%; */
  width: 100%;
  margin: 0 auto;
  /* position: fixed; */
  top: 0;
  z-index: 9999;
  height: 60px;
  padding: 10px;
  display: flex;
  justify-content: center;
  background-color: #3B2C29;
  box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, .2);
}

header h1 {
  margin-right: auto;
  margin-top: 5px;
}

header h1 a {
  width: 111px;
  /* color: #fff; */
  /* font-size: 1.6rem; */

}



/*========= 中央画面のCSS ===============*/
.center_screen {
  width: 30%;
  margin: 0 auto;
}

.content-set {
  position: relative;
}

.content-set.nav {
  width: 360px;
  max-width: 360px;
  height: 450px;
  /* margin-left: -10px; */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 2px 8px 15px rgba(106, 120, 128, 0.5);
  border-radius: 20px;
}

.content-set .set1 {
  width: 100%;
  position: absolute;
  left: 50%;
  /* top: 10%; */
  top: 5%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  /* gap: 30px; */
  gap: clamp(0px, 2.0vw, 32px);
}

.content-set .set2 {
  width: 85%;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
}

.content-set .set1 h2.img08-title {
  display: block;
  width: auto;
  max-width: 500px;
  margin: 0 auto;
  padding: 0px 0 1.6vw;
}

.content-set .set1 p.img08-content {
  width: 70%;
  max-width: 400px;
  margin: 0 auto;
}

.content-set .set1 p.img08-content.cot3 {
  width: 90%;
  max-width: none;
}

.content-set .set1 p.img08-content.cot10 {
  width: 60%;
  max-width: none;
}

.content-set .set1 p.img08-btn {
  display: block;
  width: auto;
  max-width: 350px;
  margin: 0 auto;
  padding: 3% 0 0px;
}

.content-set .set1 p.img08-btn a {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.content-set .set1 .img08-btn {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 24px);
}

.content-set .set1 .img08-btn p {
  width: 40%;
  max-width: 180px;
}

.content-set .set1 p.img08-str {
  margin: 0 auto;
  margin-top: 25px;
  font-size: 20px;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
}


/*========= 左側画面のCSS ===============*/
.left_screen {
  background-image: url("../images/post-1181/left_column.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9990;
  width: 35%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(240, 221, 221, 0.22);
}

.left_screen section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.left_screen h1 {
  width: auto;
  max-width: 270px;
}

.left_screen p {
  width: auto;
  max-width: 170px;
}


/*========= 右側画面のCSS ===============*/
.right_screen {
  background-image: url("../images/post-1181/right_column.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9990;
  width: 35%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  padding-bottom: 7.7%;
  background-color: rgba(240, 221, 221, 0.22);
}

.right_screen section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.right_screen h2 {
  width: auto;
  max-width: 330px;
}

.right_screen p {
  width: auto;
  max-width: 300px;
}


/* フッター */
footer {
  margin: 0 auto;
  border-top: 0.5px solid rgba(217, 217, 217, 1);
}

footer p.set1 {
  font-size: 0.8vw;
  text-align: center;
  margin-top: 10px;
}

footer p.set2 {
  width: 80%;
  margin: 10px auto;
}

footer small {
  display: block;
  font-size: 1.0vw;
  text-align: center;
  margin-bottom: 10px;
}

.hidden {
  display: none;
}

.key_list {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;

}

.contact {
  margin: 100px auto;
  text-align: center;
  font-size: 2.5vw;
}

/* お問い合わせフォーム */
.project8 h2 {
  width: 120px;
  margin: 0 auto;
  padding-top: 50px;
  margin-bottom: 30px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 6px;
  background: #FFF;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

form .form-group {
  margin-bottom: 20px;
}

.flex-group {
  display: flex;
  gap: 20px;
}

.flex-group .form-group {
  flex: 1;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

input.error,
textarea.error {
  border-color: red;
  background-color: #fff0f0;
}

textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background: #f00;
  color: #fff;
  border: 1px solid #f00;
  font-size: 16px;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #fff;
  color: #f00;
}


/*========= スライド ===============*/
.line-section {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.line-text {
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.line-btn {
  padding: 12px 30px;
  background: #00c300;
  color: #fff;
  border: 1px solid #00c300;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1.6rem;
}

.line-btn:hover {
  background: #fff;
  color: #00c300;
}


.lady-slider-wrap {
  /* max-width: 600px; */
  width: 100%;
  margin: 0 auto;
}

.lady-set {
  display: flex !important;
  justify-content: space-between;
  gap: 24px; /* ← 画像と画像の間だけ 24px */
  padding: 0 30px; /* ← 左右の余白 30px */
}

.lady-item {
  position: relative;
  overflow: hidden;
}

.lady-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


/*========= ボタンのアクション ===============*/
.btn-img {
  display: inline-block;
  transition: transform 0.15s ease;
  cursor: pointer;
}

.btn-img:hover {
  transform: scale(1.03);
}

.btn-img:active {
  transform: scale(1.08);
}


/*========= 画像のアクション ===============*/
.fade-up {
  opacity: 0;                  /* 最初は透明 */
  transform: translateY(30px); /* 下に30pxズラしておく */
  transition: all 0.8s ease;   /* アニメーション速度 */
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);    /* 通常位置に戻す */
}

/*========= スマホ用ボタン ===============*/
.fixed-line-btn {
  display: none;
}

@media screen and (max-width:1080px) {
  .right_screen {
    display: none;
  }

  header {
    max-width: none;
    width: 100%;
    position: fixed;
  }

  .center_screen {
    width: 100%;
  }

  .center_screen {
    margin-top: 60px; 
  }

  .fixed-line-btn {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: row;
    gap: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
  }

  .fixed-line-btn p {
    width: 50%;
    padding: 0;
  }

  footer {
    margin-bottom: 6vw;
  }

  /*========= ハンバーガーメニューのCSS ===============*/
  #g-nav1 {
    position: fixed;
    z-index: 9999;
    top: 50px;
    left: -120%;
    width: 100%;
    height: 100vh;
    transition: all 0.6s;
    background-color: #fff;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav1.panelactive {
    left: 0;
  }

  /* 背景スクロール禁止 */
  body.is-menu-open {
    overflow: hidden;
  }


  /*========= ボタンのためのCSS ===============*/
  .open_btn {
    position: absolute;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 5px;
    right: 5px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #5D514E;
    border-radius: 50%;
  }

  .open_btn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }

  .open_btn span:nth-of-type(1) {
    top: 15px;
  }

  .open_btn span:nth-of-type(2) {
    top: 23px;
  }

  .open_btn span:nth-of-type(3) {
    top: 31px;
  }

  .open_btn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .open_btn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .open_btn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }

  .glass-figma {
    /* あなたの指定色（背景色） */
    background-color: #5D514E;

    /* ガラス感（フロスト + 透明感） */
    background:
      linear-gradient(-45deg,
        rgba(255, 255, 255, 0.45) 0%,
        /* ライト強め（Figma 80%） */
        rgba(255, 255, 255, 0.08) 40%,
        rgba(255, 255, 255, 0.00) 100%),
      rgba(255, 255, 255, 0.22);
    /* フロスト25相当の乳白感 */

    backdrop-filter: blur(22px) saturate(160%) contrast(110%);
    -webkit-backdrop-filter: blur(22px) saturate(160%) contrast(110%);

    /* ガラス境界線（淡い白） */
    border: 1px solid rgba(255, 255, 255, 0.22);

    /* 角丸 */
    border-radius: 24px;

    /* Figmaの 奥行き + 散布度 を再現 */
    box-shadow:
      2px 8px 15px rgba(106, 120, 128, 0.35),
      inset 1px 1px 3px rgba(255, 255, 255, 0.35);
  }
}

@media screen and (max-width:430px) {

  .left_screen h1 {
    max-width: 200px;
  }

  .left_screen p {
    max-width: 150px;
  }

  .content-set.nav {
    width: 300px;
    height: 300px;
  }

  .content-set .set2 {
    gap: 10px;
    height: 300px;
    margin: 0px auto;
  }
}
