@charset "UTF-8";

/* TOPページや各ページ独自のレイアウト・背景・2カラム等をここに記述 */

/* ローディング画面 */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #565d6f; /* グレーベース */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transform: translateY(0);
  transition: transform 1s ease;
}

/* スライドアップ消去 */
#loading-screen.slide-up {
  transform: translateY(-100%);
}

/* 本文は最初透明 */
#main-content {
  opacity: 0;
  transition: opacity 1s ease;
}

/* ローディングと同時にフェードイン */
#main-content.is-revealing {
  opacity: 1;
}




/*❎TOPイメージ*/

/*あしらい*/
.top-deco{
	max-width: 200px;
	position: absolute;
	top:10px;
	right: 10px;
	z-index: 10;
}
@media screen and (max-width: 1100px) {
	.top-deco{
		display: none;
	}
}

/* --- スライドショー共通 --- */
.top-slider {
  position: relative;        /* ◀ フロー内に置く */
  overflow: hidden;
  width: 100%;
  margin: 0 auto;

}

/* 各スライド */
.top-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.top-slider .slide.active {
  opacity: 1;
  position: relative;        /* ◀ アクティブだけ高さを作る */
}

/* 画像の共通スタイル */
.top-img {
  display: block;
  width: 100%;
  border-radius:0px;
}

/* --- PC幅: 右上に“くっつける”が、重ならない（フロー内で右寄せ） --- */
@media screen and (min-width: 1100px) {
  .top-slider {
    width: 90%;          
    margin: 50px auto ;  
    height: 500px;       /* ✅縦幅を固定（例: 500px、調整可） */
  }

  .top-slider .slide {
    height: 100%;
  }

  .top-img {
    width: 100%;
    height: 100%;
    object-fit: cover;   
    border-radius:20px;
  }
}





/*❎TOPメッセージ*/

.message {
	justify-content: center; 
	align-items: center;     
	width: 90%;     
	margin: 0 auto;        
}
.message img{
	max-width: 90px;
	margin: 0 auto;
	justify-content: center;
	display: block;
	position: static;
}
.message h1{
	text-align: center;
	
}
.message p{
	margin-top: 10px;
	font-size: 1.5rem;
	line-height: 3rem;
	text-align: center;
		  font-family: "M PLUS Rounded 1c", "Kosugi Maru",
               "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro",
               "Yu Gothic", "游ゴシック体", "Meiryo", sans-serif;
		color: #996633;
	
}

/* アニメ前の行 */
.message .title .line {
  display: inline-block;         /* 変形のため */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

/* 表示状態 */
.message .title .line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 動きを控えたいユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  .message .title .line {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media screen and (max-width: 700px){
	.message h1{
	font-size: 1.5rem;
	
}
	.message p{

	font-size: 1.1rem;
		line-height: 2.5rem;

	
}
}


/*❎セクション01*/
.section-01{
	  width: min(1200px, 90%);
  max-width: 1100px;
  margin: 10px auto 100px;
  background-color: #FEF1D7;
  border: 8px solid #736357;
  border-radius: 18px;
  font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  text-align: center;
	padding: 50px 0;
}
.section-01 img{
	max-width: 200px;
}
.section01-text{
	width: 90%;
	margin: 0 auto;
	text-align: left;
}
.section-01 h2{
	text-align: center;
	color: #ff8c00;
	font-size: 1.2rem;
	font-weight: bold;
	font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
}
.section-01 p{
  font-family: "M PLUS Rounded 1c", "Kosugi Maru",
               "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro",
               "Yu Gothic", "游ゴシック体", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 3rem;
  letter-spacing: .02em;
  color: #6b4e2e; /* 少し温かい茶色に */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  /* 読みにくくしない“控えめシャドウ”を2層 */
  text-shadow:
    0 1px 0 rgba(255,255,255,.45),   /* 明るい下地っぽさ */
    0 2px 6px rgba(107,78,46,.15);   /* ふんわり空気感 */
}



/*❎こんな悩みはありませんか*/
.worry-icon {
background-color: #f5f5dc;
	padding: 40px 0;
	margin: 50px auto;
}
.worry-icon h1{
	text-align: center;
font-size: 2rem;
  font-weight: bold;
  font-family: "Kosugi Maru", "Rounded Mplus 1c", "Hiragino Maru Gothic ProN",
               "Yu Gothic", "Meiryo", sans-serif;
  color: #8fbc8f;
margin:20px auto 30px;
	border-bottom:solid #8fbc8f 3px;
	max-width: 500px;
}
.worry-icon ul{
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap:20px;
	list-style: none;
	justify-content: center;
}
.worry-icon li{
	
	min-width: 200px;
}
/* ベース（全アイコン共通設定） */
.worry-icon a {
  display: block;
  width: 200px;
  height: 200px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;

/* Safariのフォーカスリング/枠を殺す */

  -webkit-tap-highlight-color: transparent !important;
  -webkit-focus-ring-color: rgba(0,0,0,0) !important;
  outline: none !important;
  border: none !important;
}

/* iOS / Safari の “自動Tap時影” を殺す */
.worry-icon a:focus,
.worry-icon a:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}


/* ---- 通常状態 ---- */
.icon-01 { background-image: url("../img/index-img/worry-icon01.png")}
.icon-02 { background-image: url("../img/index-img/worry-icon02.png"); }
.icon-03 { background-image: url("../img/index-img/worry-icon03.png"); }
.icon-04 { background-image: url("../img/index-img/worry-icon04.png"); }
.icon-05 { background-image: url("../img/index-img/worry-icon05.png"); }
.icon-06 { background-image: url("../img/index-img/worry-icon06.png"); }
.icon-07 { background-image: url("../img/index-img/worry-icon07.png"); }

/* ---- ホバー時（切り替え画像）---- */
.icon-01:hover { background-image: url("../img/index-img/worry-icon01hover.png"); }
.icon-02:hover { background-image: url("../img/index-img/worry-icon02hover.png"); }
.icon-03:hover { background-image: url("../img/index-img/worry-icon03hover.png"); }
.icon-04:hover { background-image: url("../img/index-img/worry-icon04hover.png"); }
.icon-05:hover { background-image: url("../img/index-img/worry-icon05hover.png"); }
.icon-06:hover { background-image: url("../img/index-img/worry-icon06hover.png"); }
.icon-07:hover { background-image: url("../img/index-img/worry-icon07hover.png"); }


@media screen and (max-width: 700px){
	.worry-icon h1{
font-size: 1.2rem;
 
}
	
}





/*❎問い合わせ、コンタクト*/

.contact {
  margin: 100px auto 0;
}

.contact ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  justify-content: center;
}

.contact li {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 20px;
  text-align: center;
  width: 30%;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  transition: box-shadow .25s ease, transform .25s ease, background-color .25s ease;
}

.contact a {
  display: block;         /* li全体をクリック可能にする */
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
  color: #996633;
  font-size: 1.3rem;
  font-weight: 600;
  transition: transform .25s ease, opacity .25s ease;
}

.contact img {
  width: 100px;
  height: 100px;
  transition: transform .25s ease;
}

.contact p {
  margin-top: 10px;
  transition: opacity .25s ease, transform .25s ease;
}

.contact span {
  font-size: 1.1rem;
  transition: opacity .25s ease, transform .25s ease;
}

/* ホバー・フォーカス時の動き */
.contact li:hover,
.contact li:has(a:focus-visible) {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
	background-color: #fff3b8;
}

.contact li:hover a,
.contact li:has(a:focus-visible) a {
  transform: translateY(-1px);
}

.contact li:hover img,
.contact li:has(a:focus-visible) img {
  transform: scale(1.05);
}

.contact li:hover p,
.contact li:has(a:focus-visible) p {
  opacity: .95;
}

.contact li:hover span,
.contact li:has(a:focus-visible) span {
  opacity: 1;
}

/* キーボード操作でのフォーカス枠 */
.contact a:focus-visible {
  outline: 3px solid #c9b79f;
  outline-offset: 4px;
  border-radius: 16px;
}

/* タップ（スマホ）時の押し込み感 */
.contact a:active {
  transform: translateY(0);
}

.contact li:active {
  transform: translateY(-1px) scale(.997);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .10);
}

/* 画面幅が狭い時のレスポンシブ対応 */
@media screen and (max-width: 1250px) {
  .contact {
    display: block;
  }
  .contact li {
    width: 80%;
  }
}

/* 動きを控えめにしたいユーザー設定対応 */
@media (prefers-reduced-motion: reduce) {
  .contact li,
  .contact a,
  .contact img,
  .contact p,
  .contact span {
    transition: none;
  }
}

/*相談無料・秘密厳守・匿名OK*/
.contact-text{
	
	margin: 20px auto 100px;
}
.contact-text ul{
	display:flex;
	gap:30px;
	flex-wrap: wrap;
	list-style: none;
	text-align: center;
	justify-content: center;
}
.contact-text li{
	width: 30%;
padding: 15px 20px;
	border-radius: 15px;
	font-size: 1.2rem;
	font-weight: 600;
	color: #663300;
	min-width: 300px;
}
.contact-text li:nth-child(1) {
	background-color: #d4f5c9; /* 薄い緑系 */
 
}

.contact-text li:nth-child(2) {
   background-color: #f9caca; /* 薄い赤系 */
}

.contact-text li:nth-child(3) {
  
	background-color: #cce5ff; /* 薄い青系 */
}



/*❎ひとりじゃないよ*/
.contact00{
	width: 80%;
	margin: 0 auto;
	text-align: center;
	
}
.contact00 img{
	max-width:300px;
	justify-content: center;
}
.contact00 h1{
	margin-top: 20px;
	color: #9acd32;
}
.contact00 ul{
	list-style: none;
}
.contact00 p{
	font-size: 1.3rem;
	line-height: 3rem;
	color: #a86f4c;
	font-weight: bold;
}



/* --- ❎お知らせ --- */

.notice {
  width: 95%; 
  margin: 50px 0 50px auto ; 
  border-radius: 20px 0 0 20px;
  background-color: #fff;
  z-index: 5;
  padding: 40px;
  box-sizing: border-box;
min-height: 20vh;
}


@media screen and (max-width: 1100px) {


.area__label {
  max-width: 150px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  padding: 0 10px;
  background-color: #fff;
  border-radius: 20px;
  z-index: 2;
}

.area__contentz {
  max-height: 200px;
  overflow-y: auto;
  padding: 10px;
  scroll-behavior: smooth;
  z-index: 2;
}

.notice dl {
  margin: 15px auto;
}

.notice h2 {
  text-align: center;
  color: #F77831;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, "serif";
}

#new {
  
  display: flex;
  flex-wrap: wrap;
  
}

#new dt, #new dd {
  padding: 5px 0;
	text-align: left;
}

#new dt {
  display: flex;
  width: 30%;
	margin-left: 30px;
}

#new span {
  display: none;
}

#new dd {
	margin-left: 30px;
  width: calc(100% - 20%);
}
}
@media screen and (max-width: 900px){
	.notice {
 padding: 10px;
  width: 90%; 
}
#new {
  display: block;
}		
}
	




/*❎みそのらんぷの定期イベント*/

.event{
	width: 90%;
	margin: 100px auto;
	background-color: #fff;
	padding: 20px 30px;
	border-radius: 15px;
	border: dotted #66cdaa 6px;
}

.event-title{
	justify-content: center;
	max-width: 350px;
	margin: 0 auto;
	display: block;
	width: 80%;
}



.event ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event li {
  display: flex;
  align-items: center;
  gap: 20px;
  
	width: 90%;
	margin: 0 auto 40px;
}

.event li img {
  width: 45%;
  max-width: 300px;
  border-radius: 12px;
}

.event-text {
  width: 55%;
}

/* 女子カフェだけ逆にする（PC時） */
.event li:nth-child(2) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1510px){
  .event{
    margin: 10px auto;
  }
}

/* 画面幅が狭い時は完全縦並びにする（2つ目も含む） */
@media screen and (max-width: 768px) {
  
	.event{
		padding: 10px;
	}
	
	.event li {
    flex-direction: column !important;  /* ← ここがポイント */
    text-align: center;
  }

  .event li img {
    width: 80%;
  }

  .event-text {
    width: 100%;
  }
}




@media screen and (max-width: 900px){
	.event li{
	width: 80%;
}
}

/*ふわっと入る動き*/
.event li.fadein{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

/* 表示状態 */
.event li.fadein.scrollin{
  opacity: 1;
  transform: none;
}

/* PC時は方向演出（2つ目は右→左、それ以外は左→右） */
@media screen and (min-width: 769px){
  .event li.fadein.from-left   { transform: translateX(-40px); }
  .event li.fadein.from-right  { transform: translateX( 40px); }
  .event li.fadein.scrollin.from-left,
  .event li.fadein.scrollin.from-right{ transform: translateX(0); }
}

/* さりげない時間差（1,2,3番目を少しずつ遅延） */
.event li.fadein:nth-child(1){ transition-delay: 0s;   }
.event li.fadein:nth-child(2){ transition-delay: .15s; }
.event li.fadein:nth-child(3){ transition-delay: .30s; }



/*❎にんしんQ&Aセクション*/
.section-03  {
	background-color: #f5f5dc;
	padding: 50px 0;
	margin: 100px auto 30px;
}
.section-03 .qa{
	width: min(900px, 80%);
  margin: 0 auto 50px;
  text-align: left; /* 左寄せ */
	color: #8b4513;
	
}

.section-03 .qa h1 {
  font-size: 1.8rem;
  margin: 0 0 20px;
	text-align: center;
	  font-family: "M PLUS Rounded 1c", "Kosugi Maru",
               "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro",
               "Yu Gothic", "游ゴシック体", "Meiryo", sans-serif;
	color: #8fbc8f;
	font-weight: bold;
	
}

/* リスト基本 */
.section-03 .qa-list {
  list-style: none;
  margin: 0;
  padding: 0;
  
}



/* 質問ボタン */
.section-03 .qa-question {
  display: block;
  width: 100%;
  padding: 16px 40px 16px ;
  font: inherit;
  line-height: 1.6;
  background: none;
	background-color: #8fbc8f;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
	border-radius:20px;
	color: #fff;
	
}

.section-03 .qa-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 1.4rem;
	padding-right: 40px;
}

.section-03 .qa-question[aria-expanded="true"]::after {
  content: "−";
}

/* フォーカス見やすく */
.section-03 .qa-question:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* 回答（アコーディオン本体） */
.section-03 .qa-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
  will-change: max-height;
	
}

@media (prefers-reduced-motion: reduce) {
  .section-03 .qa-answer { transition: none; }
}

/* 回答内テキスト */
.qa-answer{
	width: 94%;
	margin: 5px auto;
}
.section-03 .qa-answer p {
  margin: 0 0 1em;
}
.section-03 .qa-answer span {
  color: #E77C00;
	font-weight: bold;
}
.section-03 .qa-answer h3,
.section-03 .qa-answer h4 {
  font-size: 1.05rem;
  margin: 1em 0 .4em;
}

.section-03 .qa-answer .qa-note {
  font-size: .95rem;
  opacity: .9;
}

.section-03 .qa-answer .qa-ol {
  padding-left: 1.2em;
  margin: .5em 0 1em;
}

@media screen and (max-width: 700px) {
  .section-03 .qa h1 { font-size: 1.5rem; }
  .section-03 .qa-question { padding: 14px 38px 14px 0; }
  .section-03 .qa-question {
    padding: 14px 20px 14px 20px;   /* ← 左右均等に */
  }

  .section-03 .qa-question::after {
    right: 20px; /* ← アイコン位置も調整 */
  }
}



/*❎ バナーリンク */
.banner{
  width: 90%;
  margin: 80px auto;
}

.banner ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0;
  margin: 0;
}

/* ✅ PC画面ではバナーを大きく (約280px幅) */
.banner li{
  list-style: none;
  flex: 0 0 280px;   /* ← ここで大きさUP */
  max-width: 280px;
  text-align: center;
}

/* 画像も拡大 */
.banner img{
  width: 100%;
  height: auto;
  display: block;
}

/* ホバー */
.banner li:hover a,
.banner li a:focus-visible{
  transform: translateY(-3px) scale(1.04);
}

/* ✅ スマホ（縦並び＆縮小） */
@media screen and (max-width: 700px){
  .banner ul{
    flex-direction: column;
    align-items: center;
  }
  .banner li{
    flex: 0 0 auto;
    width: 70%;
    max-width: 300px;
  }
}