@charset "utf-8";



/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Murecho:wght@100..900&display=swap');


/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #f89faf;		/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;	/*上のprimary-colorの対となる色*/
	
	--global-space: 7vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*fadeInのキーフレーム設定（テキストのフェードインに使用）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}


/*slide1のキーフレーム設定（footer背景に使用）
---------------------------------------------------------------------------*/
@keyframes slide1 {
	0% {background-position: center bottom;}
	50% {background-position: 50px bottom;}
	100% {background-position: center bottom;}
}


/*spin（回転するキーフレーム）
---------------------------------------------------------------------------*/
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		html, body {
			font-size: 16px;	/*基準となるフォントサイズ。*/
		}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: "Murecho", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	font-optical-sizing: auto;
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
	letter-spacing: 1px;
}


/*トップ画像に重ねる飾り*/
#kazari {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/*トップページのヘッダー下の背景画像*/
body.home {
	background: #fff url("../images/bg_header.png") no-repeat center top / 100%;
}

/*リセット他*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
	

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
#content2_warp_main section + section {
    margin-top: 0;
}
section + section {
	margin-top: var(--global-space);
}



/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
	text-decoration: none;
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.9;			/*色を90%だけ出す*/
}


/*コンテナー（サイト全体を囲むブロック）
コンテンツ内容が少なくてもフッターが画面下に配置される為の指示なので変更不要。
---------------------------------------------------------------------------*/
#container {
	height: 100vh;
	display: flex;
	flex-direction: column;
}


/*コンテンツ
---------------------------------------------------------------------------*/
.container0 {
    background-color: #fdf7fd;
    padding: 1rem 4rem 0.1rem 4rem ;
	border-radius: 50px;
    margin-bottom: 1%;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	padding: 0 var(--global-space);	/*上下、左右へのコンテンツ内の余白。左右の余白についてはcss冒頭のglobal-spaceを読み込みます。*/
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	flex-shrink: 0;
	display: flex;					/*flexボックスを使う指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	justify-content: space-between;
	height: 60px;					/*ヘッダーの高さ*/
	padding: 0 var(--global-space);	/*上下、左右へのヘッダー内の余白。左右の余白についてはcss冒頭のglobal-spaceを読み込みます。*/
	font-optical-sizing: auto;
	font-weight: 300;				/*文字の太さ。100〜900で指定ができます。*/
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: #3f3f3f;	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
}

header a {color: inherit;}

/*ロゴ*/
.logo a {display: block;text-decoration: none;}
.logo img {display: block;}
.logo {
	margin: 0;padding: 10px;
	width: 200px;		/*ロゴ画像の幅*/
	font-size: 1.5rem;	/*ロゴをテキストで使用する場合の文字サイズ*/
	font-weight: 500;	/*文字の太さ。100〜900で指定ができます。*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少しだけ広く*/

}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*ヘッダーブロック*/
	header {
		height: 120px;	/*ヘッダーの高さ*/
	}
	
	/*ロゴ*/
	.logo {
		width: 300px;	/*ロゴ画像の幅*/
	}

	}/*追加設定ここまで*/

/******* 20250415ヘッダーのスタイル ********/
#simple {
    position: fixed; /*** ← fixedで固定 ***/
    width: 100%; 
    height: 72px; 
    background: #fff; 
    padding: 20px 60px; 
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    display: flex; 
    align-items: center; 
	z-index: 100;
  
   /* ロゴとメニューを横並びにする */
    display: flex; 
    justify-content:space-between;
}

#simple .nav .menu {
    display: flex; 
}

#simple .nav .menu li {
    list-style: none; 
    margin-left: 15px;
	width: 190px;
}

#simple .nav .menu li a{
    color: #E35173 ;
    font-weight: 500;
   text-decoration: none;
   text-align: center;
}



.ly_subHeader_inner.__about {
    background-image: url(../images/title.jpeg);
}

.ly_subHeader {
    padding-top: 50px;
    position: relative;
    margin-bottom: 80px;
}

.ly_subHeader_inner {
    height: 306px;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.ly_subHeader_inner .ly_contBase {
    height: 100%;
    position: relative;
}

.ly_contBase {
    width: 1150px;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.ly_subHeader_bread {
    position: absolute;
    bottom: 80px;
    left: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ly_subHeader_breadItem {
    position: relative;
    margin-right: 25px;
    font-size: 1.2rem;
	list-style: none;
}

.ly_subHeader_breadItem::after {
    content: ">";
    display: block;
    position: absolute;
    top: 0;
    right: -20px;
}

.ly_subHeader_breadItem a {
    color: #EC889F;
	text-decoration: none;
}

.ly_subHeader_breadItem::after {
    content: ">";
    display: block;
    position: absolute;
    top: 0;
    right: -20px;
}

.container {
	width: 1000px;
	margin: auto;
}

.btn {
	position: relative;
	width: 300px;
	height: 160px;
	margin: 0 auto;
	display: block;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
}
.btn img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	display: block;
}
.btn:hover img:nth-of-type(2) {
	opacity: 0;
}

.group-1,
.group-2,
.group-3,
.group-4{
	position:relative;
}
.group-1u {
	width: 150px;
    height: 80px;
    position: absolute;
    top: 3.5%;
    left: 50%;
}


.group-1v {
	width: 140px;
	height: 80px;
    position: absolute;
	top: 46.4%;
    left: 49.6%;
}

.group-2st {
	width: 160px;
    position: absolute;
    top: -11%;
    left: 49.8%;
}

.group-2uv {
	width: 155px;
    position: absolute;
    top: 0%;
    left: 49.5%;
}

/*.group-4s {
	width: 150px;
    height: 80px;
    position: absolute;
    top: 46%;
    left: 34.7%;
}*/

.group-4u {
	width: 150px;
    position: absolute;
    top: 2.7%;
    left: 50.2%;
    height: 80px;
}

.group-4-tv {
	height: 160px;
}

.test{
	position: relative;
}

/*フロアマップ20250522*/
.floorname:before {
    top: 7px;
    left: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ea7178;
}

.floorname:after {
    top: 7px;
    left: 6px;
    width: 1px;
    height: 100%;
    background: #ea7178;
}

.floorname {
    display: none;
    position: absolute;
    left: 0;
    top: 35px;
    height: 100%;
    padding-left: 30px;
}
.floorname {
	display: block;
	top: 10%;
	padding-left: 20px;
}
.floorname:before,
.floorname:after {
    content: "";
    position: absolute;
}

.floorname:before {
    top: 7px;
    left: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ea7178;
}

.floorname-span {
    background:linear-gradient(transparent 60%, #ff6 60%);
	font-size: 24px;
    padding: 0px 10px;
}

/*  clearfix
------------------------- */

.cf {
	zoom: 1;
   }
   
.cf:before, .cf:after {
	   display: table;
	   content: "";
   }
   .cf:after {
	   clear: both;
   }

   .cf:before, .cf:after {
    display: table;
    content: "";
}

/*
ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {display: none;}

   @media screen and (max-width: 900px) {
	#simple {
		display: none;
	}
	   
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
		header  {
			display: none;
		}
		
	/*メニューブロック全体の設定*/
	header > nav > ul {
		display: flex;		/*横並びにする*/
		font-size: 1.1rem;	/*文字サイズ。85%。*/
	}

	/*メニュー１個あたりの設定*/
	header nav li a {
		display: block;text-decoration: none;
		padding: 0.5rem ;	/*メニュー内の余白。上下、左右へ。*/
	}
	
	}/*追加設定ここまで*/


/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
	position: absolute;z-index: 100;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
	background: var(--primary-inverse-color);	/*背景色。css冒頭のprimary-inverse-colorを読み込みます。*/
	color: var(--primary-color);				/*文字色。css冒頭のprimary-colorを読み込みます。*/
	padding: 0.3em;							/*上下、左右へのメニュー内の余白*/
	margin-top: 3px;							/*上に空けるスペース。ドロップダウン同士の隙間です。*/
	border: 1px solid var(--primary-color);		/*枠線の幅、線種、varは色の事でcss冒頭のprimary-colorを読み込みます。*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 10vw 50px;				/*ブロック内の余白。上、左右、下への順番。*/
	background: #E35173;		/*背景色*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	animation: animation1 0.2s both;		/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*20250625*/
.spbk{
	background-color: #fff;
	margin-top: 20px;
}

/*子メニューの設定*/
.small-screen #menubar ul ul {
	margin: 2rem;	/*外側に空けるスペース。２文字分。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	border: 1px solid var(--primary-inverse-color);	/*枠線の幅、線種、varは色の事でcss冒頭のprimary-inverse-colorを読み込みます。*/
	margin: 1rem 0;			/*メニューの外側に空けるスペース。上下、左右への順番。*/
	border-radius: 5px;		/*角を丸くする指定*/
}
.small-screen #menubar a {
	color: inherit;
	padding: 1rem 2rem;	/*メニュー内の余白。上下、左右へ。*/
}

/*マウスオン時*/
.small-screen #menubar a:hover {
	color: var(--primary-color);				/*文字色。css冒頭のprimary-colorを読み込みます。*/
	background: var(--primary-inverse-color);	/*背景色。css冒頭のprimary-inverse-colorを読み込みます。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 5px;		/*上からの配置場所*/
	right: 10px;	/*右からの配置場所*/
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	padding: 15px;	/*ブロック内の余白*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	background: #E35173;	/*背景色*/
	border-radius: 50%;	/*円形にする。四角形がいいならこの１行を削除。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*３本バーを囲むブロック*/
	#menubar_hdr {
		top: 34px;		/*上からの配置場所*/
		display: none;
	}
    
}/*追加設定ここまで*/


/*マウスオン時に120%にする*/
#menubar_hdr:hover {
	transform: scale(1.2);
}

/*×アイコンになった場合にサイズを大きくする*/
#menubar_hdr.ham {
	width: 80px;	/*幅*/
	height: 80px;	/*高さ*/
}

/*ここは変更不要*/
#menubar_hdr div {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 2px;	/*線の太さ*/
	background-color: var(--primary-inverse-color);	/*線の色。css冒頭のprimary-inverse-colorを読み込みます。*/
	border-radius: 2px;		/*コーナーを少しだけ丸く*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {top: 50%;transform: translateY(-50%);}
#menubar_hdr div span:nth-child(3) {bottom: 0;}
#menubar_hdr.ham div span:nth-child(1) {top: 50%;transform: translateY(-50%) rotate(45deg);}
#menubar_hdr.ham div span:nth-child(2) {opacity: 0;}
#menubar_hdr.ham div span:nth-child(3) {top: 50%;transform: translateY(-50%) rotate(-45deg);}


/*main
---------------------------------------------------------------------------*/
/*mainブロック*/
/*
main {
	padding: var(--global-space) 0;	/*上下、左右へのブロック内の余白。上下については、css冒頭のglobal-spaceを読み込みます。
}
*/

/*h2(見出し)要素*/
main h2 {
	color: #E35173;	/*文字色。css冒頭のprimary-colorを読み込みます。*/
	font-size: 1.8rem;	/*文字サイズ。180%。*/
	font-weight: 500;	/*文字の太さ。100〜900で指定ができます。*/
}

/*bg1背景上でのh2*/
main .bg1 h2 {
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	border-color: var(--primary-inverse-color);	/*線色をprimary-inverse-colorにします。*/
}

/*box1背景上でのh2*/
h2.box1 {
	font-size: 2.4rem;		/*文字サイズを240%*/
	letter-spacing: 0.3em;	/*文字間隔を広く*/
}

/*h2内の小文字*/
main h2 .small {
	display: block;
	font-weight: normal;	/*文字の太さを標準に。100〜900の数値での指定も可能です。*/
	font-size: 0.8rem;		/*文字サイズを80%*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広く*/
    margin-top: 12px;
}

/*h3(見出し)要素*/
main h3 {
	font-weight: 500;	/*文字の太さ。100〜900で指定ができます。*/
}

/*20250417*/
h4 {
	font-size: x-large;		/*文字サイズ*/
}
/*box1
---------------------------------------------------------------------------*/
main .box1 {
	/*border: 1px solid var(--primary-color);枠線の幅、線種、varは色の事でcss冒頭のprimary-colorを読み込みます*/
	padding: 2vw;	/*ボックス内の余白。画面幅100% = 100vwです。*/
	font-size: 2.5em;
	color: #E35173;
	letter-spacing: 0.1em;
	width: 75%;
	margin: 0 auto 40px auto;
    font-weight: 600;
    background-image: url(../images/title.jpeg);
}
}

/*box1の中にある最後のlist-freeの下マージンをなくす*/
.box1 .list-free:last-of-type {
	margin-bottom: 0;
}


/*style1（アクセント画像）
---------------------------------------------------------------------------*/
main .style1 {
	position: relative;
	font-weight: normal;	/*文字の太さを標準に。100〜900の数値での指定も可能です。*/
	margin-bottom: 2rem;	/*下に２文字分のスペース*/
}

main .style1::before {
	content: "";
	background: url("../images/bg2.svg") repeat-x left bottom / auto 6px;	/*アクセント用画像を指定。6pxは高さで、下のheightと数字を合わせます。*/
	display: block;
	position: absolute;
	left: 0px;
	top: 2em;		/*上から２文字分の所に表示。ここを0pxにしておくとテキストの上に出ます。*/
	width: 102px;	/*表示させる幅。お好みで変更して下さい。*/
	height: 6px;	/*高さ。上のbackgroundの最後の数字と合わせます。*/
}


/*pointアイコン
---------------------------------------------------------------------------*/
/*pointブロック全体*/
.point {
	order: -1;
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	width: 20vw;	/*幅*/
	height: 20vw;	/*高さ*/
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0.8rem;		/*文字サイズを80%*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広く*/
	line-height: 1.2;		/*行間を狭く*/
	position: relative;
	background: url("../images/bg1.svg") no-repeat center center / 100%;	/*アイコンの背景画像の読み込み。幅を100%に。*/
}

/*回転させる場合の指定*/
.point.spin::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url("../images/bg1.svg") no-repeat center center / 100%;	/*アイコンの背景画像の読み込み。幅を100%に。*/
	animation: spin 30s linear infinite;	/*30s（30秒）が１回転する速度です。お好みで変更して下さい。*/
}

/*テキストブロック*/
.point span {
	position: relative;z-index: 1;
}
/*大きな文字（1や2などの数字に使用）*/
.point span span {
	display: block;
	font-size: 2rem;	/*文字サイズを２倍*/
}
	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*pointブロック*/
	.point {
		width: 10vw;	/*幅を変更*/
		height: 10vw;	/*高さを変更*/
	}
	
	}/*追加設定ここまで*/


/*フッター
---------------------------------------------------------------------------*/
footer {
	font-size: 0.8rem;	/*文字サイズを80%*/
	border-top: 3px solid var(--primary-color);	/*上の線の幅、線種、varは色の事でcss冒頭のprimary-colorを読み込みます*/
	padding: var(--global-space);				/*フッター内の余白。css冒頭のglobal-spaceを読み込みます*/
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 3vw;
	color: #555;	/*文字色。css冒頭のprimary-colorを読み込みます*/
	background: url("../images/bg_footer.png") no-repeat center bottom / 100%;	/*背景画像の読み込み。ブロックの中央下部に配置して幅を100%。*/
	animation: slide1 10s linear infinite;	/*アニメーション設定。10秒かけてcss冒頭のslide1を実行します。*/
	background-color: #fafff2;	/*#f7f5ff*/
}

footer a {
	text-decoration: none;
	color: #564f6a;
}

/*フッター内のnavメニュー*/
footer nav {
	display: flex;
	gap: 1vw;
	font-weight: bold;	/*文字を太字に。100〜900の数値での指定も可能です。*/
    margin-right: 30%;
	width: 43%;
}

footer nav ul {
	flex: 1;
}
footer nav a {
	font-weight: normal;	/*文字の太さを標準に。100〜900の数値での指定も可能です。*/
}

.box5 {

    display: block;
    margin: 10px;
    border-radius: 27px;
	font-size:large; 
	padding: 6px;
	text-align: center;
	background-image: url("../images/tile.jpg")
}

.box5 a{
    background-color: #f9f4f4;
    padding: 5px;
    border-radius: 30px;
    display: block;
}

/*著作部分*/
footer .pr {display: block;}
#copyright {width: 100%;}

/*400px未満では非表示*/

   @media screen and (max-width: 400px) {
	   
.point {
	width: 45vw;	/*幅*/
	height: 45vw;	/*高さ*/
}

	   
footer {
	background: none;	/*背景画像の読み込み。ブロックの中央下部に配置して幅を100%。*/

}
	
.container0 {
    padding: 1rem;
    margin-bottom: 5%;
}

footer nav {
	display: none;
}
	   
.box5 {
    width: 100%;
    background-color: beige;
    display: block;
    margin: 10px;
    padding: 10px;
    border-radius: 27px;
moz-border-radius: 10px; 
	-webkit-border-radius: 10px; 
	border-radius: 27px; 
	font-size:large; 
	padding: 6px;
	text-align: center;
	background-image: url("../images/10.jpeg")
}
     

}

/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
ul.icons {
	list-style: none;
	margin: 1.5rem;
	padding: 0;
	display: flex;
	gap: 1rem;	/*アイコン同士のマージン的な要素。１文字分。*/
}
.icons i {
	font-size: 30px;	/*アイコンサイズ*/
}

/*202050423追加
---------------------------------------------------------------------------*/
.title {
	font-size: larger;
    color: #E35173;
    font-weight: bold;
}


/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.1」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.2s linear both;
}


/*list-grid1（３カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list 
 	* {margin: 0;padding: 0;
	border-radius: 0 20px 0 0;
}

/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
	margin-bottom: var(--global-space);	/*下に空けるスペース*/
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を狭くする*/
	text-align: center;
}

/*ボックス１個あたり*/
.list-grid1 .list {
	padding: 1rem;			/*ボックス内の余白。１文字分。*/
	background-image: url(../images/btn_bk.jpeg);
	color: #555;			/*文字色*/
    grid-template-rows: auto 1fr auto;	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(236,136,159,0.5);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	border-radius: 0 20px 0 20px;
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 3vw;	/*ブロックの間に空けるマージン的な指定*/
	}

	/*ボックス１個あたり*/
	.list-grid1 .list {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}

	}/*追加指定ここまで*/


/*list-free（レイアウトフリー用）
---------------------------------------------------------------------------*/
/*.list-free * {margin: 0;padding: 0;}*/

/*list-freeボックス*/
.list-free {
	display: flex;			/*直接の子要素を横並びに*/
    flex-direction: column;	/*一旦縦並びにしておく*/
	margin: 5vw;	/*ボックスの下（外側）に空けるスペース*/
	gap: 5vw;				/*子要素同士に空けるマージン的な要素。画面幅100%＝100vwです。*/
}

/*bg1,bg2背景の中にある最後のlist-freeの下マージンをなくす*/
.bg1 .list-free:last-of-type,
.bg2 .list-free:last-of-type {
	margin-bottom: 0;
}

/*テキストブロック*/
.list-free .text {
    align-self: flex-start;
	flex: 1;
}

.text h4 {
    text-align: center;
	margin-top: 34px;
}

.text p {
    color: #333;
}

/*h3見出し*/
.list-free h3 {
	margin-top: 0;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする*/
	font-size: 1.5rem;		/*文字サイズを150%に*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	position: relative;	/*カギカッコを絶対配置する為に必要な指定*/
}

/*bg1背景上でのh3*/
.bg1 .list-free h3 {
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
}

/*縦書きスタイル*/
.list-free .vertical-text {margin: auto;}
.list-free .vertical-text::before,
.list-free .vertical-text::after {
	content: "";
	position: absolute;
	width: 20px;	/*カギカッコの幅。お好みで。*/
	height: 50px;	/*カギカッコの高さ。お好みで。*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-colorを読み込みます*/
}

/*bg1背景上で枠線の色のみ変更*/
.bg1 .list-free .vertical-text::before,
.bg1 .list-free .vertical-text::after {
	border-color: var(--primary-inverse-color);	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-inverse-colorを読み込みます*/
}

.list-free .vertical-text::before {
	top: -15px;		/*テキストからの距離。お好みで。*/
	left: -15px;	/*テキストからの距離。お好みで。*/
	border-right: none;		/*右の線は消す*/
	border-bottom: none;	/*下の線は消す*/
}

.list-free .vertical-text::after {
	bottom: -15px;	/*テキストからの距離。お好みで。*/
	right: -15px;	/*テキストからの距離。お好みで。*/
	border-left: none;	/*左の線は消す*/
	border-top: none;	/*上の線は消す*/
}

/*画像ブロック*/
.list-free .image {
	position: relative;
}
.list-free .image img {
	box-shadow: 0px 10px 40px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかす量。0,0,0は黒のことで0.1は色が10%出た状態。。*/
	margin-bottom: 1rem;	/*画像の下に空けるマージン。２枚以上画像を配置した場合に間のスペースになります。*/
}

/*iframeを使う場合の設定（shop.htmlのGoogleMapに使用）*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 0%;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
}
.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

/*画像の上にポイントアイコンを置いた場合の設定*/
.list-free .image.order3 .point {
	position: absolute;
	left: -20px;
	top: -20px;
}
.list-free .image.order1 .point {
	position: absolute;
	right: -20px;
	top: -20px;
}

/*画像ブロック内のdivタグ。テキストを囲むブロックです。*/
.list-free .image > div {
	font-size: 0.7rem;	/*文字サイズを70%*/
	padding: 1rem 2rem;	/*上下、左右への余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*list-freeボックス*/
	.list-free {
		flex-direction: row;		/*縦並びから横並びにする*/
		align-items: flex-start;	/*中のボックス類を上に寄せる*/
		width: 75%;
    	margin: 50px auto 0 auto;
    	line-height: 2.1;
	}
	
	.list-free .vertical-text {
		writing-mode: vertical-rl;	/*縦書きの指定。*/
		text-orientation: upright;	/*文字の向き*/
		padding: 1rem 0.5rem;	/*上下、左右へのh3内の余白*/
	}
	
	/*画像ブロックが３番目（右側）になった場合に画面右側いっぱいまで広げる*/
	.list-free .image.order3 {
		margin-right: calc(-1 * var(--global-space));
	}
	.list-free .image.order3 img {
		border-radius: 30px 0px 0px 30px;	/*角丸の指定。左上、右上、右下、左下への順番。*/
	}
	
	/*画像ブロックが１番目（左側）になった場合に画面左側いっぱいまで広げる*/
	.list-free .image.order1 {
		margin-left: calc(-1 * var(--global-space));
	}
	.list-free .image.order1 img {
		border-radius: 0px 30px 30px 0px;	/*角丸の指定。左上、右上、右下、左下への順番。*/
	}

	/*その他（汎用向け）お好みでもっと追加して使ってもOK*/
	.list-free .w1 {width: 30%;}
	.list-free .w2 {width: 28%;}
	.list-free .order1 {order: 1;}
	.list-free .order2 {order: 2;}
	.list-free .order3 {order: 3;}
	.list-free .align-self-start {align-self: flex-start;}
	.list-free .align-self-center {align-self: center;}
	.list-free .align-self-end {align-self: flex-end;}

	}/*追加指定ここまで*/


/*ボタン1、ボタン2の共通設定
---------------------------------------------------------------------------*/
.btn1 a, .btn2 a {
	display: block;text-decoration: none;
	font-size: 1rem;
	margin-top: 1rem !important;	/*ボタンの外（上）に空けるスペース*/
}




/*ボタン2（btn2）
---------------------------------------------------------------------------*/
.btn2 {
	text-align: right;	/*テキストを右寄せ*/
}
.btn2 a {
	display: inline-block;
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	position: relative;
	padding-right: 80px;	/*矢印のアイコンと重ならないように余白をとる*/
}



/*お知らせブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.new {
	flex: 1;
	border-top: 1px solid #ccc;	/*ブロックの上の線幅、線種、色*/
}

/*日付(dt)設定*/
.new dt {
	padding: 1rem;	/*dt内の余白*/
}

/*記事(dd)設定*/
.new dd {
	padding: 0 1rem 1rem;	/*上、左右、下へのdd内の余白*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	margin-right: -1rem;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	border-radius: 3px;		/*角を丸くする指定*/
	padding: 0 0.5rem;		/*上下、左右へのブロック内の余白*/
	width: 8rem;			/*幅。8文字分。*/
	transform: scale(0.8);	/*80%のサイズに縮小*/
	background: #fff;		/*背景色*/
	color:#777;				/*文字色*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}

/*icon-bg1*/
.new .icon-bg1 {
	background: #EC889F;		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	border-color: transparent;				/*枠線を出したくないので透明にする*/
}

/*bg1背景の上で使うicon-bg1*/
.bg1 .new .icon-bg1 {
	background: var(--primary-inverse-color);	/*背景色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	color: var(--primary-color);				/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}


/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.thumbnail-view {
	max-width: 1000px;		/*最大幅*/
	margin: 0 auto 1rem;	/*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
	text-align: center;		/*画像が小さい場合でもセンタリングされるように*/
}

/*サムネイル全体を囲むブロック*/
.thumbnail {
	display: flex;				/*flexを使う指定*/
	justify-content: center;	/*並びかたの種類の指定。これはセンタリングする指定。*/
	margin-bottom: 2rem;		/*下に空けるスペース。２文字分。*/
}

/*サムネイル画像*/
.thumbnail img {
	width: 100px;		/*サムネイルの幅*/
	margin: 2px;		/*サムネイル間のスペース*/
	cursor: pointer;	/*リンクタグではないが、クリックできる事をわかりやすくする為にリンクと同じポインターにしておきます。*/
	transition: 0.3s;	/*マウスオンまでにかける時間。3秒。*/
}
.thumbnail img:hover {
	opacity: 0.8;	/*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*文字を太字に。100〜900の数値での指定も可能です。*/
	padding: 0.5rem 1rem;	/*ボックス内の余白*/
	background: #999;		/*背景色*/
	color: #fff;			/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid #ccc;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;				/*幅*/
	margin-bottom: 5rem;		/*テーブルの下に空けるスペース。5文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
	background: #f5f5f5;	/*背景色*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		/*th（左側）のみの設定*/
		.ta1 th {
			width: 20%;		/*幅*/
		}

	}/*追加指定ここまで*/


/*bg1背景
---------------------------------------------------------------------------*/
.bg1 {
	background: #f5f4ef;		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	padding: var(--global-space);			/*ボックス内の余白。css冒頭のglobal-spaceを読み込みます。*/
	
    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}


/*bg2背景
---------------------------------------------------------------------------*/
.bg2 {
	background: #f0f0f0;
	color: var(--primary-color);	/*文字色。css冒頭のprimary-colorを読み込みます。*/
	padding: var(--global-space);			/*ボックス内の余白。css冒頭のglobal-spaceを読み込みます。*/
	
    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}


/*marker（マーカー風スタイル）
---------------------------------------------------------------------------*/
.marker {
	display: inline-block;
	background: linear-gradient(transparent 80%, yellow 80%);
}
h3.marker {
	font-size: 2rem;
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.bg1 .color-check, .bg1 .color-check a {color: yellow !important;}
.bg1 .look .color-check, .bg1 .look .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.bg1 .look,.bg2 .look {background: #fff;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/

/*7.10　追加*/

/*  clearfix  */
a {
  text-decoration: none;
}
.cf {
  zoom: 1;
}

.cf:before,
.cf:after {
  display: table;
  content: "";
}
.cf:after {
  clear: both;
}

.cf:before,
.cf:after {
  display: table;
  content: "";
}

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

.container_floor {
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.btn {
  position: relative;
  width: 300px;
  height: 160px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
}

.btn:hover img:nth-of-type(2) {
  opacity: 0;
}

.group-1,
.group-2,
.group-3,
.group-4 {
  position: relative;
}
.group-1u {
  width: 150px;
  height: 80px;
  position: absolute;
  top: 13.5%;
  left: 50%;
}

.group-1v {
  width: 150px;
  height: 80px;
  position: absolute;
  top: 36%;
  left: 50%;
}

.group-2st {
  width: 160px;
  position: absolute;
  top: -11%;
  left: 49.8%;
}

.group-2uv {
  width: 155px;
  position: absolute;
  top: 0%;
  left: 49.5%;
}

.group-3uv {
  width: 155px;
  position: absolute;
  top: 0%;
  left: 49.5%;
}

.group-4s {
  width: 150px;
  height: 80px;
  position: absolute;
  top: 36.1%;
  right: 50%;
}

.group-4u {
  width: 150px;
  position: absolute;
  top: 13.7%;
  left: 50%;
  height: 80px;
}

.group-4-tv {
  height: 160px;
}

.floorname_label:before {
  top: 7px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ea7178;
}

.floorname_label:after {
  top: 7px;
  left: 6px;
  width: 1px;
  height: 100%;
  background: #ea7178;
}

.floorname_label {
  display: none;
  position: absolute;
  left: 0;
  top: 35px;
  height: 100%;
  padding-left: 30px;
}
.floorname_label {
  display: block;
  top: 10%;
  padding-left: 20px;
}
.floorname_label:before,
.floorname_label:after {
  content: "";
  position: absolute;
}

.floorname_label:before {
  top: 7px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ea7178;
}

.floorname-span {
  background: linear-gradient(transparent 60%, #ff6 60%);
  font-size: 24px;
  padding: 0px 10px;
  font-weight: bold;
}

.floorname_detail {
  font-size: 16px;
  margin-left: 56px;
  position: relative;
  z-index: 100;
}


h6 {
  border-bottom: 1px solid #000;
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 16px
}

.wrapper-item {
  display: flex;
  flex-direction: row;
}

.side {
  width: 20%;
  text-align: center;
  border: 1px solid #f1989c;
  margin-left: 20px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

.side:hover {
    background-color: #ffc9d7;
    }

.side a {
  display: block;
    padding: 16px 0;
    border-color: #f1989c;
    color: #f17178;
}

.group-4s-name {
  color: #f17178;
    width: 100px;
    position: absolute;
    border: 1px solid;
    top: 50px;
    left: 130px;
    text-align: center;
}

.group-4tv-name {
  color: #f17178;
    width: 100px;
    position: absolute;
    border: 1px solid;
    top: -40px;
    left: 430px;
    text-align: center;
}

.group-4u-name {
  color: #f17178;
    width: 100px;
    position: absolute;
    border: 1px solid;
    top: 50px;
    right: 110px;
    text-align: center;
}

.group-3st-name {
  color: #f17178;
    width: 100px;
    position: absolute;
    border: 1px solid;
    top: 50px;
    left: 130px;
    text-align: center;
}

.group-3uv-name {
  color: #f17178;
    width: 100px;
    position: absolute;
    border: 1px solid;
    top: 50px;
    right: 110px;
    text-align: center;
}

.group-2st-name {
  color: #f17178;
    width: 100px;
    position: absolute;
    border: 1px solid;
    top: 50px;
    left: 130px;
    text-align: center;
}

.group-2uv-name {
  color: #f17178;
    width: 100px;
    position: absolute;
    border: 1px solid;
    top: 50px;
    right: 110px;
    text-align: center;
}

.group-1st-name {
  color: #f17178;
    width: 100px;
    position: absolute;
    border: 1px solid;
    top: 50px;
    left: 130px;
    text-align: center;
}

.group-1u-name {
  color: #f17178;
    width: 100px;
    position: absolute;
    border: 1px solid;
    top: 0px;
    right: 110px;
    text-align: center;
}

.group-1v-name {
  color: #f17178;
    width: 100px;
    position: absolute;
    border: 1px solid;
    top: 90px;
    right: 110px;
    text-align: center;
}

.group-1u-name:hover,
  .group-1v-name:hover,
  .group-1st-name:hover,
  .group-2uv-name:hover,
  .group-2st-name:hover,
  .group-3uv-name:hover,
  .group-3st-name:hover,
  .group-4u-name:hover,
  .group-4tv-name:hover,
.group-4s-name:hover {
  background: #f17178;
  color: white;
}

@media screen and (max-width: 1024px) {
	/* 959px以下に適用されるCSS（タブレット用） */

  .group-4tv-name {
    left: 380px;
  }
}

@media screen and (max-width: 959px) {
	/* 959px以下に適用されるCSS（タブレット用） */
  .group-1u-name,
  .group-1v-name,
  .group-1st-name,
  .group-2uv-name,
  .group-2st-name,
  .group-3uv-name,
  .group-3st-name,
  .group-4u-name,
  .group-4tv-name,
  .group-4s-name
  {
    display: none;
  }
  
  .wrapper-item {
    flex-wrap: wrap; 
    justify-content: space-between; 
  }

  .side {
    width: 48%; 
    margin: 10px 0; 
  }

  h6 {
    font-size: 14px; 
    padding-top: 30px;
  }
  
  .floorname {
    margin-left: 30px;
  }
  
  .group-4tv-name {
    left: 380px;
  }
}

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

  /* 480px以下に適用されるCSS（スマホ用） */
	
	
#contents_department {
    padding-bottom: 20px;
	}
	
  .group-1u-name,
  .group-1v-name,
  .group-1st-name,
  .group-2uv-name,
  .group-2st-name,
  .group-3uv-name,
  .group-3st-name,
  .group-4u-name,
  .group-4tv-name,
  .group-4s-name
	
#contents_department {
    padding-bottom: 20px;
	}

  .wrapper-item {
    flex-wrap: wrap;
    justify-content: center;
  }

  .side {
    width: 100%; 
    margin: 5px 0; 
  }

  h6 {
    font-size: 12px;
    padding-top: 5px;
    
  }

  .side a {
    font-size: 14px;
    padding: 12px 0; 
  }
  
  .floorname_label {
    padding-left: 0;
    margin-top: -20px;
  }
  .floorname_label:before {
    display: none;
  }

  .floorname_label:after {
    display: none;
  }
  
  .wrapper {
    margin-bottom: 20px;
  }
  
  .wrapper-item {
    margin: 0px 20px;
  }
  
  .floorname-span {
    background: linear-gradient(transparent 60%, #ff6 60%);
    font-size: 24px;
    padding: 0px 10px;
  }
}

.container_floor:hover a {
  opacity: 1;
}

#contents_department {
  flex: 1;
  padding: 0 var(--global-space);
  background-color: white;
}

.training-box {
  margin-bottom: 30px;
  border-left: 6px solid #ec889f;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  width: 75%;
  margin: 20px auto;
}

.training-box h2 {
  color: #2980b9;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.training-box h3 {
  font-size: 1.1rem;
  margin-top: 15px;
  color: #2c3e50;
}

.training-box ul,
.training-box ol {
  margin-left: 1rem;
  padding-left: 1rem;
}

.training-box ul li,
.training-box ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
}
/* レスポンシブ対応 */
@media screen and (max-width: 600px) {

	
  body {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 1.4rem;
  }

  .training-box h2 {
    font-size: 1.2rem;
  }

  .training-box h3 {
    font-size: 1rem;
  }

  .container {
    padding: 15px;
  }
  
  #content2_warp_main section + section {
    margin-top: 0;
}
}