@charset "UTF-8";
/* CSS Document */

/*common.cssにヘッダー、フッダーとリセット／ノーマライズ用途入っている*/

body.splash-active .header {
  display: none;
}

body{
background-color: #eae2c4;
}

section[id] {
 scroll-margin-top: 110px;
}

/* 背景（白の半透明） */
.splash__bg {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
}

/* メッセージブロックを中央＆左揃え */
.splash__message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  z-index: 10000;
  font-family: "Noto Sans JP", sans-serif;
}

/* 各行共通 */
.message {
  opacity: 0;
  font-size: 30px;
  color: #333;
  margin-bottom: 30px;
  animation: showMessage 0.5s forwards;
}

/* 順番に表示されるタイミング */
.message1 {
  animation-delay: 0s;
}
.message2 {
  animation-delay: 1.5s;
}
.message3 {
  animation-delay: 3s;
}

/* まとめてフェードアウト */
.splash__message {
  animation: fadeOutAll 1s ease forwards;
  animation-delay: 5.5s; /* 3行目が出たあと少し時間を置いてから */
}

/* ロゴ */
.splash__logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10000;
  animation: fadeInOutLogo 3s ease forwards;
  animation-delay: 7s;
}
.splash__logo img {
  width: 700px;
  height: auto;
  display: block;
}

@media(max-width:767px){
  .message {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .splash__message {
    width: 90%;
  }
  .splash__logo img {
  max-width: 80vw;
}
}

/* メッセージ出現 */
@keyframes showMessage {
  to {
    opacity: 1;
  }
}

/* メッセージ全体のフェードアウト */
@keyframes fadeOutAll {
  to {
    opacity: 0;
  }
}

/* ロゴのフェードイン → フェードアウト */
@keyframes fadeInOutLogo {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; }
}

.splash__close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #555;
  cursor: pointer;
  z-index: 11000;
}

/* ファーストビュー */
.first-view {
  position: relative;
  height: calc(100vh - 100px);
  overflow: hidden;
}

/* スライダー画像を画面いっぱいに */
.first-view .first-view__slider img {
  width: 100%;
  height: calc(100vh - 100px);
  object-fit: cover;
  object-position: 50% 100%;
  display: block;
}

/* ロゴを中央に */
.first-view .logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}

.first-view .logo img {
  width: 700px;
}
@media(max-width:767px){
.first-view .logo img{
width:90%;
}
}

/* 透明のオーバーレイ */
.first-view .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  z-index: 1;
}

/* Slick UI 非表示 */
.slick-dots { display: none !important; }
.slick-prev, .slick-next { display: none !important; }

.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* 表示状態：フェードイン＆位置リセット */
.fadein.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/* テキストに適用（やや遅く、柔らかく） */
.fadein.text {
  transition-duration: 1.2s;
}

/* 画像に適用（少し早く、きびきび） */
.fadein.image {
  transition-duration: 0.8s;
}

h2,h3{
font-family: "kinuta-shin-enpitsu-stdn", sans-serif;
font-weight: 700;
font-style: normal;
}

h2{
margin: 100px auto 40px auto;
/*height: 50px;*/
font-size: 35px;
text-align: center;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-thickness: 1px;
text-underline-offset:10px;
}

h3{
margin-bottom:20px;
font-size: 20px;
text-align: center;
line-height: 1.8;
}

h4{
font-size:18px;
margin:10px 0; 
}

.aboutCard1{
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 60px;
}
@media(max-width:767px){
.aboutCard1{
display: none;
}
}

.aboutCard1-sp{
display:none;
}
@media(max-width:767px){
.aboutCard1-sp{
display:flex;
flex-flow: column;
align-items: center;
}
}

.aboutCard1_image{
width:40%;
}
@media(max-width:767px){
.aboutCard1_image{
width:80%;
}
}

.aboutCard1_text{
width:50%
}
@media(max-width:767px){
.aboutCard1_text{
margin: 30px 0;
width:100%;
}
}

.aboutCard2{
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 60px;
}

.aboutCard2_image{
width: 900px;
}
@media(max-width:767px){
.aboutCard2_image{
width:115%;
}
}

.aboutCard2_text{
width:600px;
}
@media(max-width:767px){
.aboutCard2_text{
margin: 30px 0;
width:100%;
}
}

.aboutCard3{
display: flex;
justify-content: space-between;
align-items:center;
margin-bottom: 60px;
}
@media(max-width:767px){
.aboutCard3{
display: none;
}
}

.aboutCard3-sp{
display: none;
}
@media(max-width:767px){
.aboutCard3-sp{
display:flex;
flex-flow: column;
align-items: center;
}
}

.aboutCard3_image{
width:75%;
}
@media(max-width:767px){
.aboutCard3_image1{
width:100%;
}
.aboutCard3_image2{
width:80%;
margin:20px 0 50px 0;
}
}

.aboutCard3_text{
width:25%;
}
@media(max-width:767px){
.aboutCard3_text{
margin: 30px 0;
width:70%;
}
}

.aboutCard4{
display: flex;
justify-content: space-between;
align-items: center;
}
@media(max-width:767px){
.aboutCard4{
display:flex;
flex-flow: column-reverse;
align-items: center;
}
}

.aboutCard4 .btn{
margin-top:40px;
}
@media(max-width:767px){
.aboutCard4 .btn{
text-align:center; 
margin: 30px;
}
}

.aboutCard4_image{
width:45%;
}
@media(max-width:767px){
.aboutCard4_image{
width:100%
}
}


.aboutCard4_text{
width:50%
}
@media(max-width:767px){
.aboutCard4_text{
margin: 30px 0;
width:100%;
}
}

.Process .step__bg{
background-image: url("../images/step__bg.png");
background-size:125%;
background-position: center;
background-repeat: no-repeat;
}
@media(max-width:767px){
.Process .step__bg{
background-image: none;
}
}

.Process .step{
width: 600px;
margin: 0 auto;
}
@media(max-width:767px){
.Process .step{
max-width:100%;
}
}

.ProcessCard{
display: flex;
justify-content: space-between;
align-items: center;
margin: 60px;
}
@media(max-width:767px){
.ProcessCard{
margin:60px 0;
}
}

.ProcessCard__text{
width:450px;
}
@media(max-width:767px){
.ProcessCard__text{
width:70%;
}
}

.ProcessCard__text img{
width: 150px;
}

.ProcessCard__image{
width:110px;
}
@media(max-width:767px){
.ProcessCard__image{
width:auto;
}
}

.counselingCard{
display: flex;
justify-content: center;
align-items: center;
margin-top: 40px;
}
@media(max-width:767px){
.counselingCard{
flex-flow: column;
}
}

.counselingCard__text{
width:50%;
}
@media(max-width:767px){
.counselingCard__text{
width: 100%;
}
}

.counselingCard__list{
width:40%;
}
@media(max-width:767px){
.counselingCard__list{
width:100%;
margin: 20px 0;
}
}

.price-box{
display:flex;
background-color:rgba(255,255,255,0.6);
padding: 30px;
}

.price-box__list ul{
padding-left:30px
}

.price-box__list li{
margin: 5px;
}

.WorkshopCard{
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 60px;
}
@media(max-width:767px){
.WorkshopCard{
flex-flow: column;
}
}

.WorkshopCard__text{
width:55%;
}
@media(max-width:767px){
.WorkshopCard__text{
width: 100%;
}
}

.WorkshopCard__text h4{
display: flex;
align-items: center;
}

.WorkshopCard__text h4 img{
width:80px;
margin-right: 20px;
}

.WorkshopCard__image{
width: 40%;
}
@media(max-width:767px){
.WorkshopCard__image{
width: 90%;
margin-top:20px;
}
}

.Gallery__picture{
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 40px;
margin-top: 40px;
}
@media(max-width:767px){
.Gallery__picture{
flex-flow: column;
margin-bottom: 0px;
margin-top: 0px;
}
}

.GalleryCard{
display: flex;
width:30%;
background-color: #d1c6a9;
justify-content: center;
flex-flow: column;
padding: 10px 10px 10px 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
@media(max-width:767px){
.GalleryCard{
width:95%;
margin: 20px 0;
}
}

.GalleryCard__text{
text-align: center;
padding-top: 10px;
font-family: "kinuta-shin-enpitsu-stdn", sans-serif;
}

.Instagram-box{
text-align: center;
margin: 0 auto;
padding: 20px;
width: 30%;
}
@media(max-width:767px){
.Instagram-box{
width:80%;
}
}

.InstagramCard{
display: flex;
flex-flow: column;
align-items: center;
margin: 10px;
}

.InstagramCard__image{
display: flex;
justify-content: center;
align-items: center;
}

.InstagramCard__image img{
width:50px;
}

.InstagramCard__btn{
margin:15px 10px 10px 10px; 
}

.VoiceCard{
display: flex;
justify-content: space-between;
align-items: center;
width:80%;
background-color: #d1c6a9;
padding: 20px 20px 20px 20px;
box-shadow: 0 4px 6px rgba(0,0,0,0.2);
margin: 40px auto;
}
@media(max-width:767px){
.VoiceCard{
flex-flow: column;
width:95%;
padding: 20px 10px 10px 10px;
}
}

.VoiceCard__image{
width: 45%;
}
@media(max-width:767px){
.VoiceCard__image{
width: 90%;
height: auto;
}
}

.VoiceCard__text{
text-align: left;
width:55%;
padding: 20px;
font-size: 15px;
}
@media(max-width:767px){
.VoiceCard__text{
width: 100%;
padding: 30px 10px 10px 10px;
}
}

.VoiceCard__text .right{
margin-top:10px;
}

.gaikan{
display: flex;
justify-content: center;
width:700px;
margin: 20px auto;
}
@media(max-width:767px){
.gaikan{
width:100%;
}
}

.AccessCard{
display: flex;
justify-content: center;
align-items: center;
margin: 40px auto;
}
@media(max-width:767px){
.AccessCard{
flex-flow: column-reverse;
}
}

.AccessCard__map img{
width: 400px;
}

.AccessCard__text{
margin-left:30px; 
display: flex;
flex-flow: column;
align-items: center;
width: 300px;
padding:10px; 
}
@media(max-width:767px){
.AccessCard__text{
margin: 0;
}
}

.AccessCard__text__logo{
margin-bottom: 15px;
}

.AccessCard__text__logo img{
width: 200px;
}

.Access h3{
margin:50px 0 30px 0;
font-size: 28px;
}

/* ▼ カレンダー全体の基本レイアウト */
#calendar {
  max-width: 750px;
  margin: 20px auto;
  font-size: 18px;
  background-color: #fff;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* ▼ 定休日セル */
#calendar .fc-daygrid-day.is-closed .fc-daygrid-day-frame {
  background-color: #ffeaea;
}

/* ▼ 定休日のバッジ */
#calendar .closed-badge {
  white-space: nowrap;
  display: flex;
  justify-content: center;
  padding-bottom:2px; 
  font-size: 14px;
  line-height: 1;
  color: rgba(181,81,83,1.00)
}

/* ▼ 臨時休業日の背景イベント */
#calendar .fc .fc-bg-event {
  background: #ffe8c7 !important;
}

#calendar .fc-toolbar-title {
  font-size: 25px;
  font-family:"kinuta-shin-enpitsu-stdn", sans-serif;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
  margin: 0;
  height: auto;
}

/* ▼ FullCalendarのツールバー全体を中央揃え（親） */
#calendar .fc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 左・中央・右の分布 */
  flex-wrap: wrap;
}

/* ▼ 各チャンクも中央に揃える */
#calendar .fc-toolbar-chunk {
  display: flex;
  align-items: center;
}

/* ▼ ボタンのサイズと余白の微調整 */
#calendar .fc-button {
  font-size: 16px;
  padding: 5px 10px;
  line-height: 1.5;
  height: auto;
  margin: 0 4px;
  vertical-align: middle;
}

@media (max-width: 767px) {
  #calendar {
　　　max-height: 600px; /* スマホ時の最大高さ */
    overflow-y: auto;
  }

  #calendar .fc-toolbar-title {
    font-size: 18px;
  }

  #calendar .fc-button {
    font-size: 14px;
    padding: 4px 8px;
  }

  #calendar .fc-daygrid-day-number {
    font-size: 12px;
    padding: 2px;
  }

  #calendar .fc-daygrid-day-frame {
    min-height: 60px;
  }

#calendar .closed-badge { 
  font-size: 12px;
}
}

.calender__ul{
display: flex;
justify-content: center;
font-size: 0.8em;
}

.calender__ul Ul{
padding-left:20px;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #d1c6a9; /* やさしい背景色 */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-family: 'Noto Sans JP', sans-serif;
  
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: bold;
  color: #5c4a3f;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form button {
  font-size: 18px;
  display: block;
  margin: 0 auto;
  background: #cfaea4;
  color: white;
  font-weight: bold;
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #b89288;
}