@charset "utf-8";

/* ===================================================================
　基本
=================================================================== */
header{
	box-sizing: border-box;	
	width:100%;
	padding: 10px 10px 0px 10px;
	background-color: #FFFFFF;
}

header p{
	font-size: 1.2rem;
	height: 2.0rem;
	margin: 0;
	padding: 0;
	color: #000000;
	font-weight: normal;
    margin-bottom: 6px;
}

/*スマホロゴ非表示*/
a.sp_logo{
	display:none;
}


/* ===================================================================
　ボタン
=================================================================== */
ul#menu {
	display: flex;
	flex-flow: row;
	/*justify-content: flex-end;*/
	align-items:center;
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 100%;
    padding-bottom: 10px;
}

/*1行目のロゴ画像*/
ul#menu li:first-child  {
	margin-right: auto; 
	border-right: none;
}

ul#menu li img {
	/*width: 200px;
	min-width: 200px;*/
	height: auto;
	height: 15px;
    width: auto;    
}

ul#menu li img.d_r {
	/*width: 240px;
	min-width: 200px;*/
    
	height: 15px;
    width: auto;
    padding-right: 25px;
}

ul#menu li a {
	font-size: 1.6rem;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 16px;
	padding-right: 16px;
	color:#000000;
	display: block;
	text-decoration: none;
	border-radius: 8px;
 	transition: all 0.1s ease-out;
}

ul#menu li a:hover {
	color:#ffffff;
	background-color: #cf9dc6;
}

/*最後ボーダー削除*/
ul#menu li a:last-child {
	border-right: none;	
}


/* ===================================================================
　ページ内スクロール
=================================================================== */
.smooth {
    scroll-behavior: smooth;
}

.auto {
    scroll-behavior: auto;
}


/* ===================================================================
　お知らせ表示
=================================================================== */
/*ポップアップ部分
----------------------------------------------------------- */
.modal {
	width: 910px;
	position:fixed;
	display:none;
  	left: 50%;
  	top: 50%;
  	transform: translateX(-50%) translateY(-50%);
	z-index:99999;
	color:#FFF;
	text-align:center;
}

.modal img {
	width: 910px;
	height: auto;
	vertical-align:bottom;
	display: block;
	margin-left: auto;
	margin-right: auto;
box-shadow: 0 5px 12px 0 rgba(0, 0, 0, .5);	
}

.modal a {
	color: #3A1D06;
	text-align: right;
	display:block; 
	cursor:pointer;
	margin-top: 15px;
}










/*****************************************/
/* ===================================================================
	スマートフォン用記述（600px以下）
=================================================================== */
/*****************************************/
@media only screen and (min-width: 0px) and (max-width: 600px){

/* ===================================================================
　基本
=================================================================== */
header{
	padding: 0;
}
header p{
    text-align: center;
    padding-top: 1%;
}
/*スマホロゴ非表示*/
a.sp_logo{
	display: block;
    box-sizing: border-box;
	width: 100%;
    padding: 6%;
    padding-top: 1%;
}
a.sp_logo img{
        height: auto;
        width: 100%;
    }
    
    
	
/* ===================================================================
　ボタン
=================================================================== */
ul#menu {
	display: flex;
	flex-wrap: wrap;
	align-items:center;
	margin-bottom: 15px;
}
    
ul#menu li{
	width: 50%;
}
	
/*1行目のロゴ画像*/
ul#menu li:first-child  {
	display: none;
}
    
ul#menu li a {
	font-size: 1.5rem;
	padding: 4%;
	background-color: #cf9dc6;
	color:#ffffff;
	display: block;
	text-decoration: none;
	text-align: center;
	border-radius: 0;
 	transition: all 0.1s ease-out;
}
    
ul#menu li:last-child a {
padding-left: 1%;
padding-right: 1%;
}
    
ul#menu li a{
	border-bottom: #FFFFFF solid 1px;
	border-left: #FFFFFF solid 1px;
}
    
ul#menu li a:hover {
	color:#000000;
	background-color: #ffffff;
}


/* ===================================================================
　お知らせ表示
=================================================================== */
/*ポップアップ部分
----------------------------------------------------------- */
.modal {
	width: 100%;
  	left: 50%;
  	top: 50%;
  	transform: translateX(-50%) translateY(-50%);
	z-index:99999;
	color:#FFF;
	text-align:center;
}
.modal img {
	width: 95%;
}
.modal a {
	text-align: center;
	margin-top: 10px;
}







/*▼削除しない▼*/
}

