@charset "Utf-8";
@import url("drawer.css"); /*モバイルメニュー用読み込み*/

/**
濃いピンク #C23685
通常ピンク #DB7BB1
薄いピンク #EAA8BF
薄いピンク #F3D1E5
薄い緑 #C6EDDB
普通緑 #64C99B
濃い緑 #1BA466
薄い青 #CBE6F3
普通青 #6EB7DB
濃い青 #208DC3
***/


/*-----------------------------------------------------------------------------------*/
/*	リセット paddingリセット
/*-----------------------------------------------------------------------------------*/

*{
	font-family:'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    padding:0;
    margin:0;
}

*, *:before, *:after { /** paddingにboderを含める **/
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, th,{
	margin:0px;
	padding:0px;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
}

body {
	font-size: 14px;
	width: 100%;
	color: #333;
}

a{outline: none;}
a:link {}
a:visited {}
a:hover {}
a:active {}

/*-----------------------------------------------------------------------------------*/
/*	リンク画像透過共通指定　hr装飾
/*-----------------------------------------------------------------------------------*/

.link_img:hover {
    opacity: 0.75;
    filter: alpha(opacity=75);
}

.content a img {
    -webkit-transition: 0.2s ease-in-out;
       -moz-transition: 0.2s ease-in-out;
         -o-transition: 0.2s ease-in-out;
            transition: 0.2s ease-in-out;
	-moz-box-shadow: 0px 1px 2px #656565;
	-webkit-box-shadow: 0px 1px 2px #656565;
	box-shadow: 0px 1px 2px #656565;
}
.content a img:hover {
    opacity: 0.75;
    filter: alpha(opacity=75);
}


hr{
	border: 0;
	height: 1px;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	margin-top: 5px;
	margin-bottom: 5px;
}

/*********** youtube 地図 ***********/

.youtube_wrapp{
	max-width: 480px;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 460px !important;
  max-height: 315px !important;
}

.map{
	width: 95%;
	padding: 10px;
	margin-bottom: 50px;
	border: 1px solid #999999;
}

.map_full{
	width: 100%;
	padding: 10px;
	margin-bottom: 50px;
	border: 1px solid #999999;
}
/*********** 解除・調整・その他 ***********/

.clear{clear: both;}

/* clearfix */
.cf:after{
	content: "";
	clear: both;
	display: block;
}

.radius_5{  /*** boder角丸 ****/
	border-radius: 5px/5px;/*丸*/
	-webkit-border-radius: 5px;/*丸*/
	-moz-border-radius: 5px;/*丸*/
}

.pd_b30{padding-bottom: 30px;}

.mg_b10 {margin-bottom: 10px;}
.mg_b20 {margin-bottom: 20px;}
.mg_b30 {margin-bottom: 30px;}
.mg_b40 {margin-bottom: 40px;}
.mg_b50 {margin-bottom: 50px;}

.font_110{ font-size: 110%;}
.font_120{ font-size: 120%;}
.font_130{ font-size: 130%;}
.font_140{ font-size: 140%;}
.font_150{ font-size: 150%;}
.font_160{ font-size: 160%;}
.font_170{ font-size: 170%;}
.font_180{ font-size: 180%;}
.font_190{ font-size: 190%;}
.font_200{ font-size: 200%;}

.font_blue {color: #208DC3;}
.font_red {color: #C23685;}
.font_red2 {color: #FF3333;}

.marker_yellow{
	background: linear-gradient(transparent 50%, #fff799 50%);
	font-weight: bold;
	border-radius:6px;
}
.marker_blue{
	background: linear-gradient(transparent 50%, #DDEEFF 50%);
	font-weight: bold;
	border-radius:6px;
}


.align_center{ text-align: center;}
.align_right{ text-align: right;}
.align_left{ text-align: left;}
.mobile_center{ text-align: center;}

.img_max {max-width: 100%;}
.img_95 {max-width: 95%}

.only_pc {display: none;}
.only_mobile {}

/** Flex 指定 ********************/

.flex{
    display: -webkit-flex; /* Safari */
    display: flex;
}

.flex_r{
	-webkit-flex-direction: row-reverse; /* Safari */
	flex-direction:         row-reverse;
}

.flex_wrap{
	display: -webkit-flex; /* Safari */
    display: flex;
	flex-wrap: wrap;
}

/* 端詰め等間隔 */
.space_between{
	-webkit-justify-content: space-between; /* Safari */
	justify-content:         space-between;
}
/* 等間隔 */
.space_around{
	-webkit-justify-content: space-around; /* Safari */
	justify-content:         space-around;
}

/* センター寄せ */
.justify_center {
	-webkit-justify-content: center; /* Safari */
	justify-content:         center;
}

/* PC時Flex モバイル時Flexしない */
.flex_nonflex{
	text-align: center;
}

.flex_nonflex_noflex_around{
	text-align: center;
}


/** 基本レイアウト ********************************************/
.header{
	background-color: #EAA8BF;
}

.header_wrap{
	width: 100%;
	background-image: url(img/header_bg.png);
	background-position: top left;
	background-repeat: no-repeat;
	margin-left: auto;
	margin-right: auto;
}

.header_contents{
	width: 100%;
	padding-left: 1%;
	padding-right: 1%;
	color: #fff;
}

.contents_wrap{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.contents{
	width: 100%;
	padding-top: 20px;
	padding-bottom: 50px;
	padding-left: 1%;
	padding-right: 1%;
	color: #424242;
}

.footer{
	background-color: #EAA8BF;
}

.footer_wrap{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.footer_contents{
	width: 100%;
	text-align: center;
	padding-left: 1%;
	padding-right: 1%;
}

/** ヘッダー ********************************************/

.header_contents h1{
	font-size: 90%;
	font-weight: 400;
	padding-top: 2px;
	padding-right: 50px;
}

.header_logo{
	float: left;
	width: 200px;
}

.header_right{
	float: right;
}

.address{
	margin-bottom: 10px;
}

.header_right p{
	text-align: right;
	letter-spacing: 1px;
}

.header_right p a{
	color: white;
	font-size: 120%;
}

/** ヘッダメニュー ********************************************/
/*-----------------------------------------------------------------------------------*/
/*	モダンアップデート：ドロワーメニュー（モバイル）
/*-----------------------------------------------------------------------------------*/

/* メニュー全体のリスト外枠 */
.nav.drawer-nav ul.menu.drawer-menu {
	list-style-type: none;
	padding: 20px 15px; /* 内側に余白を設定 */
	background-color: #fff; /* メニュー本体の背景は白 */
}

/* 各メニュー項目（li） */
.nav.drawer-nav ul.menu.drawer-menu li {
	display: block;
	margin-bottom: 8px; /* 項目間に隙間を作る */
	border-bottom: none; /* 既存の下線を消す */
	position: relative;
	overflow: hidden;
	border-radius: 8px; /* 角を丸くする */
	transition: all 0.3s ease;
}

/* 住所・TELセクション（lastクラス）は除外 */
.nav.drawer-nav ul.menu.drawer-menu li:not(.last) {
	background-color: #fcf8fa; /* 通常時は非常に薄いピンク背景 */
	border: 1px solid #f0e2e9; /* 薄いボーダー */
}

/* メニューのリンク（aタグ） */
.nav.drawer-nav ul.menu.drawer-menu li a {
	display: flex; /* アイコンとテキストを横並びに */
	align-items: center; /* 垂直中央揃え */
	font-size: 15px; /* フォントサイズ調整 */
	font-weight: 600; /* 少し太く */
	color: #424242; /* 文字色 */
	text-decoration: none;
	padding: 16px 20px; /* タップ領域を広く */
	transition: all 0.3s ease;
	letter-spacing: 0.05em;
}

/* --- アイコンの設定 (Font Awesomeを使用) --- */
/* HTMLのheadにFont Awesomeの読み込みが必要です */
.nav.drawer-nav ul.menu.drawer-menu li a::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 15px;
	font-size: 18px;
	color: #DB7BB1; /* 通常ピンク */
	transition: all 0.3s ease;
	width: 20px; /* アイコンの幅を固定してテキストの位置を揃える */
	text-align: center;
}

/* 各メニューごとのアイコン指定 */
.nav.drawer-nav ul.menu.drawer-menu li:nth-child(1) a::before { content: "\f015"; } /* HOME: 家 */
.nav.drawer-nav ul.menu.drawer-menu li:nth-child(2) a::before { content: "\f0ae"; } /* 事業内容: タスク */
.nav.drawer-nav ul.menu.drawer-menu li:nth-child(3) a::before { content: "\f541"; } /* 施設案内: 建物 */
.nav.drawer-nav ul.menu.drawer-menu li:nth-child(4) a::before { content: "\f3c5"; } /* アクセス: ピン */
.nav.drawer-nav ul.menu.drawer-menu li:nth-child(5) a::before { content: "\f0e0"; } /* お問合せ: 封筒 */
.nav.drawer-nav ul.menu.drawer-menu li:nth-child(6) a::before { content: "\f0b1"; } /* 求人: 鞄 */

/* --- ホバー（タップ）時のスタイル --- */
.nav.drawer-nav ul.menu.drawer-menu li:not(.last):hover,
.nav.drawer-nav ul.menu.drawer-menu li:not(.last)a:active {
	background-color: #F3D1E5; /* 薄いピンクBACKGROUND */
}

/* ホバー時に左側に濃いピンクのラインを入れる */
.nav.drawer-nav ul.menu.drawer-menu li:not(.last)::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background-color: #C23685; /* 濃いピンク */
	transition: width 0.3s ease;
}

.nav.drawer-nav ul.menu.drawer-menu li:not(.last):hover::after {
	width: 6px; /* ホバー時にラインを表示 */
}

/* ホバー時にテキストとアイコンの色を濃くする */
.nav.drawer-nav ul.menu.drawer-menu li:not(.last):hover a {
	color: #C23685;
	padding-left: 24px; /* ラインの分だけ少し右にずらすアニメーション */
}

.nav.drawer-nav ul.menu.drawer-menu li:not(.last):hover a::before {
	color: #C23685;
}


/* --- [修正版] 住所・TELセクション（.last）のモダン化 --- */
.nav.drawer-nav ul.menu.drawer-menu li.last {
    background-color: #f5f5f5; /* 薄いグレー背景 */
    margin-top: 20px; /* 上のメニューと間隔を空ける */
    padding: 15px 20px; /* 余白調整 */
    border-radius: 8px;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

/* 住所テキスト部分のunderlineを消す */
.nav.drawer-nav ul.menu.drawer-menu li.last {
    text-decoration: none;
}

/* ホバーエフェクトを無効化 */
.nav.drawer-nav ul.menu.drawer-menu li.last:hover {
    background-color: #f5f5f5;
}

/* --- [ここが重要] TEL行のレイアウト --- */
/* 「TEL:」とボタンを横並びにする親要素 */
.nav.drawer-nav ul.menu.drawer-menu li.last .tel-row {
    display: flex; /* 横並びに */
    align-items: center; /* 垂直中央揃え */
    margin-top: 10px; /* 上（住所）との間隔 */
    flex-wrap: nowrap; /* 絶対に改行させない */
}

/* 「TEL:」の文字部分 */
.nav.drawer-nav ul.menu.drawer-menu li.last .tel-label {
    font-weight: bold;
    margin-right: 8px; /* ボタンとの間の隙間 */
    color: #333;
    white-space: nowrap; /* 文字自体も改行させない */
    font-size: 14px;
}

/* TELリンクをカプセルボタン化（修正） */
.nav.drawer-nav ul.menu.drawer-menu li.last a {
    display: inline-flex; /* インラインブロックに変更 */
    align-items: center;
    justify-content: center;
    background-color: #1BA466; /* 濃い緑 */
    color: #fff !important; /* 文字色を白に強制 */
    font-size: 16px; /* ボタン内の文字サイズを少し調整 */
    font-weight: 800;
    text-decoration: none !important;
    padding: 10px 20px; /* ボタンのパディング調整 */
    border-radius: 30px; /* カプセル型 */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* 軽い影 */
    transition: all 0.3s ease;
    white-space: nowrap; /* ボタン内の番号を改行させない */
    flex-grow: 0; /* 必要以上に横に広がらないように */
}

/* TELアイコンの追加（前回のまま） */
.nav.drawer-nav ul.menu.drawer-menu li.last a::before {
    content: "\f095"; /* 電話アイコン */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 7px;
    color: #fff;
    font-size: 16px;
    width: auto;
}

/* TELボタンのホバー（タップ）効果（前回のまま） */
.nav.drawer-nav ul.menu.drawer-menu li.last a:hover,
.nav.drawer-nav ul.menu.drawer-menu li.last a:active {
    background-color: #64C99B; /* 普通緑 */
    transform: translateY(-1px); /* 少し浮く */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/** コンテンツ ********************************************/

.top_menu_box{
	display: -webkit-flex; /* Safari */
    display: flex;
	flex-wrap: wrap;
	-webkit-justify-content: space-around; /* Safari */
	justify-content:         space-around;
}

.box{
	margin-bottom: 30px;
	text-align: center;
}

.a_box{
	display: block;
	width: 310px;
	margin-left: auto;
	margin-right: auto;
	background-color: #E6E6E6;
	text-decoration: none;
	border: 1px solid #999999;
}

.img_top_box{
	width: 100%;
	vertical-align: bottom;
}


.span_boxtitle{
	display: block;
	background-color: #EAA8BF;
	height: 50px;
	background-image: url(img/h2_bg_sakura.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	font-size: 120%;
	font-weight: 800;
	color: white;
	padding:10px 20px;
}

.a_box:hover{
	background-color: white;
	border: 1px solid #C23685;
}

.a_box:hover .span_boxtitle{
	color: #C23685;
}

.h2_contents{
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fcecfc+0,f3d1e5+31,eaa8bf+64,db7bb1+100 */
background: rgb(252,236,252); /* Old browsers */
background: -moz-linear-gradient(-45deg,  rgba(252,236,252,1) 0%, rgba(243,209,229,1) 31%, rgba(234,168,191,1) 64%, rgba(219,123,177,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg,  rgba(252,236,252,1) 0%,rgba(243,209,229,1) 31%,rgba(234,168,191,1) 64%,rgba(219,123,177,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg,  rgba(252,236,252,1) 0%,rgba(243,209,229,1) 31%,rgba(234,168,191,1) 64%,rgba(219,123,177,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcecfc', endColorstr='#db7bb1',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

	font-size: 130%;
	font-weight: 400;
	padding: 5px 10px;
	margin-bottom: 15px;
	border: 1px solid #999999;
	border-radius: 4px/4px;/*丸*/
	-webkit-border-radius: 4px;/*丸*/
	-moz-border-radius: 4px;/*丸*/
}

h3{
	font-size: 140%;
	font-weight: 400;
	border-bottom: 2px solid #EAA8BF;
	border-left: 10px #EAA8BF;
	border-left-style: groove;
	padding-left: 15px;
	margin-top: 20px;
	margin-bottom: 10px;
}

.contents p{
	line-height: 200%;
}
/* ==========================================
   モダンテーブルスタイル (モバイル用)
   ========================================== */

.table_info {
  width: 100%;
  display: block;
  border-collapse: collapse;
  margin-bottom: 25px;
}

.table_info caption {
  display: block;
  font-size: 110%;
  font-weight: bold;
  color: #C23685;
  margin-bottom: 10px;
}

.table_info tbody {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 行をひとつのカードとして定義 */
.table_info tr {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #f0e2e9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* 項目ラベル（ヘッダー） */
.table_info tr th {
  display: block;
  width: 100% !important;
  padding: 10px 15px;
  background-color: #f8ecf2 !important;
  color: #C23685;
  font-size: 90%;
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #f0e2e9 !important;
  border-top: none !important;
}

/* 内容データ */
.table_info tr td {
  display: block;
	text-align: left;
  width: 100% !important;
  padding: 12px 15px;
  color: #333333;
  font-size: 95%;
  line-height: 1.6;
  border-bottom: none !important;
  background-color: #ffffff !important;
}

/* モバイル用フォームフィールド最適化 */
.table_info tr td input[type="text"],
.table_info tr td input[type="tel"],
.table_info tr td input[type="email"],
.table_info tr td textarea {
  width: 100% !important;
  max-width: 100% !important;
  padding: 10px;
  font-size: 100% !important;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.table_yearevent{
	width: 100%;
	table-layout: fixed;
}

.table_yearevent .month{
	background-color: #F3D1E5;
	display: block;
	width: 100%;
	text-align: center;
	font-size: 120%;
	font-weight: 400;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-top: 0px;
	border-bottom: 1px dotted #999999;
}

.table_yearevent .event{
	display: block;
	padding: 10px;
	line-height: 150%;
}

.table_yearevent tr td{
	vertical-align: top;
	border-right: 1px solid #999999;
	border-bottom: 2px solid #999999;
}

.table_yearevent tr:first-child td{
	border-top: 2px solid #999999;
}

.table_yearevent tr td:first-child{
	border-left: 2px solid #999999;
}

.table_simple{
	width: 95%;
	margin-left: 2.5%;
	margin-bottom: 15px;
	table-layout: auto;
	border-collapse: collapse;
	border-top: 1px solid #808080;
	border-left: 1px solid #808080;
}

.table_simple tr th{
	padding: 7px 15px;
	background-color: #ffe4e1;
	border-right: 1px solid #808080;
	border-bottom: 1px solid #808080;
}

.table_simple tr td{
	padding: 7px 15px;
	border-right: 1px solid #808080;
	border-bottom: 1px solid #808080;
}




.ul_list{
	list-style-type: none;
}

.ul_list li:nth-child(2n+1){
	background-color: #f2f2f2;
}

.ul_list li:before{
	content: "≫";
}

.ul_list li{
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;

}

.bg_pink{
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fcecfc+0,f3d1e5+67 */
background: url(img/footer_bg.png) bottom right no-repeat, #fcecfc; /* Old browsers */
background: url(img/footer_bg.png) bottom right no-repeat, -moz-radial-gradient(center, ellipse cover,  #fcecfc 0%, #f3d1e5 67%); /* FF3.6-15 */
background: url(img/footer_bg.png) bottom right no-repeat, -webkit-radial-gradient(center, ellipse cover,  #fcecfc 0%,#f3d1e5 67%); /* Chrome10-25,Safari5.1-6 */
background: url(img/footer_bg.png) bottom right no-repeat, radial-gradient(ellipse at center,  #fcecfc 0%,#f3d1e5 67%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcecfc', endColorstr='#f3d1e5',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	border: 1px solid #999999;
	padding: 20px;
	font-size: 100%;
	border-radius: 8px/8px;/*丸*/
	-webkit-border-radius: 8px;/*丸*/
	-moz-border-radius: 8px;/*丸*/
}

.ol_number{
	list-style-position: inside;
	margin-bottom: 20px;
}

.ol_number li{
	padding-top: 8px;
	padding-bottom: 8px;
}

.read_more{
	text-align: right;
	padding-right: 20px;
}

.img_photo{
	padding-top: 20px;
	padding-bottom: 20px;
}

.img_photo img{
	max-width: 480px;
	width: 90%;
}


.img_photo_l{
	padding-top: 20px;
	padding-bottom: 20px;
}

.img_photo_l img{
	width: auto;
	max-height: 480px;
}


.photo_area_4 {
	display: -webkit-flex; /* Safari */
	display: flex;
	flex-wrap: wrap;
	-webkit-justify-content: space-around; /* Safari */
	justify-content:         space-around;
}

.photo_area_4 img{
	margin: 15px;
}

.section{
	margin-bottom: 50px;
}

.section_block{
	padding-bottom: 30px;
}
/* 親要素：テキストとボタンの並び調整 */
.span_phone {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #424242;
}

/* 電話番号リンク（カプセル状ボタン） */
.span_phone a {
  display: inline-flex;
  align-items: center;
  gap: 6px;                       /* アイコンと数字の間隔 */
  background: #ffffff;
  color: #C23685;
  border: 2px solid #C23685;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(194, 54, 133, 0.12);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 受話器記号のサイズ・位置の調整 */
.span_phone a::first-letter, 
.span_phone {
  font-size: 110%;                /* 記号をわずかに大きく */
}

/**VトップピクトグラムエリアV**/
/* ==========================================
   トップページ サービスコンテンツ（モバイル用）
   ========================================== */

.flex.space_around {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 0 15px;
}

.top_contents_box {
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.top_contents_box > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 100%;
}

/* 円形コンテナ */
.top_contents_box .img_wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.top_contents_box .img_top_icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* タップ/ホバー時の全体拡大 */
.top_contents_box:active .img_wrap,
.top_contents_box:hover .img_wrap {
  transform: scale(1.05);
}

/* タイトルテキスト */
.top_contents_box .span_icon_boxtitle {
  display: inline-block;
  background-color: #EAA8BF;
  color: #ffffff;
  font-size: 105%;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* 説明文 */
.top_contents_box p {
  padding: 0 10px;
  font-size: 95%;
  line-height: 1.6;
  color: #333333;
  margin: 0;
  text-align: left;
}

.top_contents_box p strong {
  color: #C23685;
}
/**ΛトップピクトグラムエリアΛ**/

/** さくらからのお知らせNews ********************************************/
#feed{
	width: 100%;
}

#feed ul{
	list-style-type: none;
	display: -webkit-flex; /* Safari */
	display: flex;
	flex-wrap: wrap;
	-webkit-justify-content: space-between; /* Safari */
	justify-content:         space-between;
}

#feed ul li{
	display: block;
	margin-bottom: 20px;
}

#feed ul li:after{
	content: "";
	clear: both;
	display: block;
}

#feed ul li a{
	display: inline-block;
	float: left;
	background-color: #FBEFF5;
	padding: 10px;
	margin-left: 5px;
	margin-right: 15px;
	border-radius: 5px/5px;/*丸*/
	-webkit-border-radius: 5px;/*丸*/
	-moz-border-radius: 5px;/*丸*/
}

#feed ul li a img{
	height: 120px;
	width: 160px !important;
	max-width: 100% !important;
	object-fit: cover;
	vertical-align: bottom;
	border-radius: 5px/5px;/*丸*/
	-webkit-border-radius: 5px;/*丸*/
	-moz-border-radius: 5px;/*丸*/
}

.feeddate{
	display: inline-block;
	font-weight: 800;
	color: #666666;
	margin-bottom: 10px;
}

.feednew{
	font-weight: 800;
	color: #C7243A;
	margin-left: 20px;
	margin-bottom: 10px;
}

#feed ul li h4{
	font-weight: 400;
	font-size: 130%;
	margin-bottom: 10px;
}

#feed_status{
	background-color: #FCF4FB;
	padding: 10px 10px 20px 10px;
	margin-bottom: 30px;
	border: 1px solid #E7A5C9;
	border-radius: 5px/5px;/*丸*/
	-webkit-border-radius: 5px;/*丸*/
	-moz-border-radius: 5px;/*丸*/
}

.h4_status{
	display: block;
	width: 100%;
	font-size: 18px;
	color: #CE579B;
	text-align: center;
}

.status_title{
	display: block;
	font-size: 16px;
	font-weight: 800;
	color: #666666;
	text-align: right;
	margin-bottom: 15px;
}

.status_content{}


/** ▲BLOGフィード▲ *********************/
/** V病後児保育室V ********************************************/
.border_pink{
	border: 2px solid #C23685;
	padding: 5px;
	border-radius: 10px;
}
#newsList{
	list-style-type: none;
}
#newsList li{
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #DB7BB1;
	margin-bottom: 10px;
}
.up_ymd{
	font-size: 110%;
    font-weight: 800;
    margin-right: 10px;
}
.catName{
	display:inline-block;
	padding:3px 8px;
	border:1px solid #ccc;
	border-radius:6px;
	font-size:110%;
	line-height:100%;
	margin-right: 10px;
}
.title{
	display: inline-block;
	font-size: 120%;
    font-weight: 800;
    margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.newMark{
	display:inline-block;
	border:1px solid #F00;
	padding:1px 4px;
	font-size:110%;
	line-height:100%;
	background:#F00;
	color:#fff;
	box-shadow:1px 1px 1px #999;
	border-radius:8px;
	font-style:italic;
}
.thumbNailWrap{
	display: block;
	text-align: center;
}
.comment{
	background-color: #ffffcc;
	display: block;
	line-height: 150%;
}
.copyright a{
	display: inline !important;
}
.details_azukaruko {
	margin-bottom: 20px;
	transition: all .5s ease;
}
.details_azukaruko summary{
	color: #ffffff;
	font-size: 120%;
	font-weight: 900;
	line-height: 250%;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-left: 15px;
	background-color: #CA3C6E;
	transition: 0.3s;
	border-radius: 5px;
	cursor: pointer;
	transition: all .3s ease;
}
.details_azukaruko summary:hover{
	background-color: #DF81A2;
	transition: 0.3s;
}

.details_azukaruko[open]{
	height: auto;
}
.details_azukaruko[open] .details_contents{
	border: 2px solid #C23685;
	padding: 15px;
	overflow: auto;
	animation: ani 1s ;
	border-radius: 10px;
}
@keyframes ani {
	0%{
		opacity: 0;
		transform: translateY(-20px);
	}
	100%{
		opacity: 1;
		transform: none;
	}
}
.img_azukaruko_step{
	width: 300px;
	height: auto;
}
.img_button_azukaruko{
	height: 42px;
	width: auto;
}
/** Λ病後児保育Λ **/

/** フッター **************************************/

.footer_wrap{
	background-image: url(img/footer_bg.png);
	background-position: bottom right;
	background-repeat: no-repeat;
}

.footer_contents{
	padding-top: 20px;
	padding-bottom: 30px;
}

.footer_contents p{
	letter-spacing: 1px;
}

.footer_contents p a{
	color: #333;
}

/** 基本グリッド **************************************/


.one_half{
	display: block;
	width: 100%;
	margin-bottom: 30px;
}

.one_thread{
	width: 100%;
	text-align: center;
}

.two_third{
	width: 100%;
	text-align: center;
}

.one_fourth{
	width: 230px;
}

.three_fourth{
	width: 730px;
}

/** コンタクトボタン *****/

.button_contact{
	background-color: white;
  display: inline-block;
  height: 27px;
  position: relative;
  text-decoration: none;
  line-height: 25px;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #756C67;
  padding-left:40px;
  padding-right: 10px;
  color: #756C67;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  	margin-top: 10px;
	margin-bottom: 5px;
	border-radius: 5px/5px;/*丸*/
	-webkit-border-radius: 5px;/*丸*/
	-moz-border-radius: 5px;/*丸*/
}

.button_contact i{
  display: block;
  position: absolute;
  top:0;
  left:0px;
  height: 25px;
  width: 25px;
  line-height:25px;
  text-align: center;
  background:#756C67;
  color: #fff;
}

.table_kyujin tr td:first-child{
	white-space: nowrap;
	font-weight: 800;
	-moz-text-align-last: justify; /*均等*/
	text-align-last: justify;　/*均等*/
  text-justify:inter-ideograph; /*均等*/
}

.a_button{
	display: inline-block;
	width: 170px;
	text-align: center;
	color: #ffffff;
	font-weight: 900;
	line-height: 200%;
	margin-top: 5px;
	margin-bottom: 5px;
	background-color: #CA3C6E;
	transition: 0.3s;
	border-radius: 5px;
	text-decoration: none;
}
.a_button:hover{
	background-color: #DF81A2;
	transition: 0.3s;
}
.sakurachan_qr{
	width: 200px;
	height: auto;
	border: 4px solid #00B900;
	border-radius: 15px;
}
.rireki{
	height: 300px;
	overflow-y: scroll;
}
.sendbuttons{
text-align: center;
}
/**V目次V**/
/*-----------------------------------------------------------------------------------*/
/*	[モバイル用] コンパクト目次エリア（再修正）
/*-----------------------------------------------------------------------------------*/

/* 目次コンテナ全体 */
#toc_area.toc_container {
	background-color: #fdfafc; /* 非常に薄いピンク背景 */
	border: 1px solid #f0e2e9; /* 薄いボーダー */
	border-radius: 6px;
	padding: 12px 15px; /* 余白を最小限に */
	margin-left: 1%; /* 既存の幅に合わせる */
	margin-right: 1%;
	width: auto;
}

/* 目次のタイトル（「目次」） */
#toc_area .toc_title {
	font-size: 13px; /* 小さく */
	font-weight: 700;
	color: #666;
	margin-bottom: 8px;
	text-align: left;
}

/* タイトルの下の装飾線は削除 */
#toc_area .toc_title::after {
	display: none;
}

/* 目次のリスト（ul） */
#toc_area .toc_list {
	counter-reset: toc-counter;
	padding: 0;
	margin: 0;
	list-style: none;
}

/* 目次のリスト項目（li） */
#toc_area .toc_list li {
	margin-bottom: 4px; /* 隙間を極狭に */
	padding-left: 0;
	font-size: 13px; /* 小さく */
	line-height: 1.3;
	display: flex;
}

#toc_area .toc_list li:last-child {
	margin-bottom: 0;
}

/* シンプルな数字（疑似要素） */
#toc_area .toc_list li::before {
	counter-increment: toc-counter;
	content: counter(toc-counter) "."; /* 「1. 」形式 */
	font-weight: 600;
	color: #DB7BB1;
	margin-right: 6px;
	width: auto; height: auto; background: none; border-radius: 0; display: inline; position: static; /* リセット */
}

/* 目次のリンク（a） */
#toc_area .toc_list li a {
	display: inline;
	color: #424242;
	text-decoration: none;
	padding: 0;
	background: none; border: none; border-radius: 0; /* リセット */
}

/* タップ時のスタイル */
#toc_area .toc_list li a:active {
	color: #C23685;
	background: none; /* リセット */
}
/**Λ目次Λ**/