@charset"utf-8";

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

body {
    font-family: "Noto Serif", serif;
    color: #815d5d;
    line-height: 1.8;
    background-color: #fefff5;

}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

.pcNavi {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  background: url(./img/leaves.png) no-repeat left/cover;
  padding: 40px 20px; 
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2px;
}

.logo a {
  text-decoration: none;
  color: #000;
}

.pcNavi ul {
  list-style: none;
  margin-top: 40px;
}

.pcNavi li {
  margin-bottom: 20px;
}

.pcNavi a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.pcNavi a:hover {
  color: #c9a063;
}

/* SNSアイコン */
.icon {
  display: flex;
  gap: 15px;
}

.icon img {
  width: 22px;
  opacity: 0.7;
  transition: 0.3s;
}

.icon img:hover {
  opacity: 1;
}
.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333;
  left: 0;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { bottom: 0; }
/* =========================
   メインエリア
========================= */
.mainView {
  margin-left: 240px;
}

/* =========================
   ファーストビュー
========================= */
.firstView {
  height: 100vh;
  background: url(./img/woman.jpg.png) no-repeat right/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.firstView h2 {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 6px;
}
/* =========================
   News
========================= */

.news {
  padding: 140px 8%;
  max-width: 900px;
  margin: 0 auto;
}

.news h2 {
  text-align: center;
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 80px;
}

/* ニュースカード */

.news > div {
  background: #faf9f6;
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.news h3 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.news h4 {
  font-size: 14px;
  margin-bottom: 30px;
  color: #c9a063;
}

.course {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.oneWord {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* 鳥 */
.flyingBard img {
  width: 120px;
  position: absolute;
  top: 15%;
}

/* =========================
   Concept
========================= */
.lead {
  padding: 120px 10%;
  max-width: 1100px;
}

.lead h2 {
  font-size: 28px;
  margin-bottom: 40px;
  letter-spacing: 3px;
  text-align: center;
}

.lead p {
  margin-bottom: 30px;
  font-size: 15px;
}

.fadeContents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  gap: 50px;
}

.fadeText p {
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.leadImage img {
  width: 300px;
}

/* =========================
   TOPへ戻るボタン
========================= */
.pageTop {
  margin-top: 100px;
  text-align: center;
}

.pageTop img {
  width: 40px;
  opacity: 0.6;
  transition: 0.3s;
}

.pageTop img:hover {
  opacity: 1;
}


.hoverUnderLine {
    position: relative;
    padding-bottom: 5px;

}

.hoverUnderLine::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2d5a27;
    transform-origin: bottom left;
    transform: scale(0);
    transition: all 0.3s 0s ease-in-out;
}

.hoverUnderLine:hover::after {
    transform: scale(1);
    transform-origin: bottom left;
}

.logo:hover {
    transform: scale(1.05);
}

.iconInstagram {
    transition-duration: 0.5s;
}

.iconInstagram:hover img {
    transform: scale(1.05);
}

.iconLine {
    transition-duration: 0.5s;
}

.iconLine:hover img {
    transform: scale(1.05);
}

.fadeText p {
    /* margin-top: 30px;
    font-size: 50px;
    font-weight: bold;
    color: #f29baf; */
    animation: crossfade 3s infinite;
}

.fadeText p:last-child {
    animation-delay: -5s;
}

@keyframes crossfade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    65% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* =========================
   Menuページ
========================= */

.menuContainer {
  padding: 120px 8%;
  max-width: 1200px;
}

.menuContainer h2 {
  font-size: 30px;
  margin-bottom: 80px;
  letter-spacing: 4px;
  text-align: center;
}

/* 各メニュー */
.menuItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}

.menuItem h3 {
  font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.menuItem p {
  font-size: 15px;
  margin-bottom: 30px;
}

/* ボタン */
.linkButtonArea {
  margin-top: 20px;
}

.linkButton {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid #c9a063;
  text-decoration: none;
  color: #c9a063;
  font-size: 14px;
  letter-spacing: 2px;
  transition: 0.3s;
}

.linkButton:hover {
  background: #c9a063;
  color: #fff;
}

/* スライダー画像 */
   /* 高級エステ風（トリミングなし） */

/* =========================
   高級エステ風スライダー
========================= */

.slider {
  width: 450px;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.slider .slick-slide {
  height: 300px;
}

.slider img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

/* うっすら影をつけて高級感UP */
.slider img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* =========================
   Staff
========================= */

.staff {
  padding: 120px 8%;
  background: #fafafa;
}

.staff h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 60px;
  letter-spacing: 4px;
}

.staffInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-bottom: 50px;
}

.staffStory {
  flex: 1;
  font-size: 15px;
}

.owner img {
  width: 300px;
  border-radius: 20px;
}



/* =========================
   Contactページ
========================= */

.contactForm {
  padding: 120px 8%;
  max-width: 900px;
}

.contactForm h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 60px;
  letter-spacing: 4px;
}

#formWrap {
  background: #faf9f6;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.formTable {
  display: grid;
  grid-template-columns: 200px 1fr;
  row-gap: 25px;
  column-gap: 30px;
  align-items: center;
}

.formTable dt {
  font-size: 14px;
  letter-spacing: 1px;
}

.formTable dd {
  margin: 0;
}

.required::before {
  content: "必須 ";
  color: #c9a063;
  font-size: 12px;
}

.inputText,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  transition: 0.3s;
}

.inputText:focus,
textarea:focus {
  border-color: #c9a063;
  outline: none;
  box-shadow: 0 0 0 2px rgba(201, 160, 99, 0.2);
}

textarea {
  height: 120px;
  resize: vertical;
}

.radioButton {
  margin-right: 20px;
  font-size: 14px;
}

/* 送信ボタン */

.submitButton {
  margin-top: 50px;
  display: block;
  width: 250px;
  padding: 14px;
  border: 1px solid #c9a063;
  background: transparent;
  color: #c9a063;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 30px;
}

.submitButton:hover {
  background: #c9a063;
  color: #fff;
}
/* =========================
   確認画面
========================= */

.confirmArea {
  display: none;
  margin-top: 50px;
  padding: 40px;
  background: #faf9f6;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.confirmArea h3 {
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.confirmItem {
  /* margin-bottom: 15px;
  font-size: 14px; */
 padding:10px 0;
 border-bottom:1px solid #ddd;
}

.confirmItem strong{
 display:inline-block;
 width:150px;
}


.confirmButtons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.confirmButtons button {
  padding: 10px 30px;
  border: 1px solid #c9a063;
  background: transparent;
  color: #c9a063;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s;
}

.confirmButtons button:hover {
  background: #c9a063;
  color: #fff;
}
.confirmArea p {
  margin-top: 20px;
}
p.error_messe{
	margin:5px 0;
	color:red;
}

/* =========================
   注意事項
========================= */

.attention {
  padding: 100px 8%;
}

.attention h3 {
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.attention ol {
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
  font-size: 14px;
}

/* =========================
   thanksページ
========================= */

.thanksWrap{
  max-width:700px;
  margin:120px auto;
  text-align:center;
  padding:40px;
}

.thanksWrap h1{
  font-size:28px;
  margin-bottom:20px;
}

.thanksWrap p{
  line-height:1.8;
  margin-bottom:30px;
}

.thanksBtn{
  display:inline-block;
  padding:12px 30px;
  background:#333;
  color:#fff;
  text-decoration:none;
}

/* =========================
   Accessページ
========================= */

.accessView {
  padding: 120px 8%;
  max-width: 1100px;
}

.accessView h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 80px;
  letter-spacing: 4px;
}

/* 画像エリア */

/* =========================
   Accessスライダー（高級エステ風・トリミングあり）
========================= */

.accessPhoto {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 100px;
}

.accessPhoto .slider {
  width: 400px;
  height: 270px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.accessPhoto .slider .slick-slide {
  height: 270px;
}

.accessPhoto .slider img {
  width: 100%;
  height: 270px;
  object-fit: cover;     /* ← トリミングあり */
  object-position: center;
}

/* 電車案内 */

.train {
  text-align: center;
  margin-bottom: 80px;
}

.train h3 {
  margin-bottom: 20px;
  letter-spacing: 2px;
}

/* マップ */

.map {
  margin-bottom: 100px;
  text-align: center;
}

.map h3 {
  margin-bottom: 30px;
}

.map iframe {
  width: 100%;
  max-width: 800px;
  height: 400px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* 店舗情報テーブル */

.accessdata {
  max-width: 800px;
  margin: 0 auto 100px;
}

.accessdata table {
  width: 100%;
  border-collapse: collapse;
  background: #faf9f6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

.accessdata th,
.accessdata td {
  padding: 20px;
  text-align: left;
  font-size: 14px;
}

.accessdata th {
  width: 30%;
  background: #f3f1ea;
  letter-spacing: 1px;
}



@media screen and (max-width: 768px) {

  .pcNavi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 0 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background: url(./img/tulip.png) no-repeat left/cover;
    border-right: none;
    border-bottom: 1px solid #eee;
    z-index: 1000;
  }

  .mainView {
    margin-left: 0;
    padding-top: 80px;
  }

  .pcNavi nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    transform: translateY(-120%);
    transition: 0.4s;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  }

  .pcNavi nav ul {
    display: block;
    padding: 40px 0;
    text-align: center;
  }

  .pcNavi nav li {
    margin: 20px 0;
  }

  .hamburger {
    display: block;
    position: relative;
    z-index: 1100;
  }

  /* 開いた時 */
  .pcNavi.active nav {
    transform: translateY(0);
  }

  /* ×アニメーション */
  .pcNavi.active .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }

  .pcNavi.active .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .pcNavi.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 10px;
  }
  
  .firstView h2 {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .news {
    padding: 100px 6%;
  }

  .news > div {
    padding: 30px;
  }

  .fadeContents {
    flex-direction: column;
    text-align: center;
  }

  .leadImage img {
    width: 80%;
  }

   
     .menuItem {
    flex-direction: column;
    text-align: center;
  }


  .slider {
    width: 100%;
    height: 240px;
  }

  .slider .slick-slide {
    height: 240px;
  }

  .slider img {
    height: 240px;
  }


  .staffInfo {
    flex-direction: column;
    text-align: center;
  }

  .owner img {
    width: 70%;
  }
  
  .contact {
    padding: 30px;
  }

  .formTable {
    grid-template-columns: 1fr;
  }

  .submitButton {
    width: 100%;
  }

  .accessPhoto {
    flex-direction: column;
    align-items: center;
  }

  .accessPhoto .slider {
    width: 100%;
    height: 240px;
  }

  .accessPhoto .slider .slick-slide {
    height: 240px;
  }

  .accessPhoto .slider img {
    height: 240px;
  }

  .map iframe {
    height: 300px;
  }

  }