@charset "utf-8";

/* 長い英文などを改行 */
body {
   word-wrap: break-word;
}

/* 強調 */
.font_bold{
	font-weight: bold;
}

/* 強調（赤） */
.font_bold_r{
	font-weight: bold;
	color: #d7003a;
}

/* sitename */
.sitename img {
	width: 250px;
	margin-bottom: 0.25em;
}

/* メニューSNS */
.sns a {
	color: var(--color-grey) !important;
}
.sns {
	margin-bottom:0.5em;
}
@media screen and (max-width:768px) {
	.sns {
		margin-bottom:0;
	}
}

/* ミコプロフ用 */
.miko_flexbox {
	display: flex;
	flex-direction: row;
	gap: 2em;
}
.miko_flex-item1 {
	flex: 3;
}
.miko_flex-item2 {
	flex: 2;
}
@media screen and (max-width: 1440px){
	.miko_flexbox{
	 	flex-direction: column;/*flexアイテムを縦並びに変更*/
	}
}

/* ミコプロフ用テーブル */
table.miko35 {
	width: 100%;
	margin: 1em 0 0;
	border-collapse: separate;
	border-spacing: 0 0.5rem;
	font-size: 1em;
	line-height: 1;
	border-left: 0;
}
table.miko35 th {
	background: rgba(244,179,194,1);
	vertical-align: middle;
	text-align: center;
	width: 35%;
	overflow: visible;
	position: relative;
	border-radius: 2.5rem 0 0 2.5rem;
	padding: 0.5rem 0 !important;
}
table.miko35 th:after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent;
	border-left-color: rgba(244,179,194,1);
	border-width: 10px;
	margin-top: -10px;
}
table.miko35 td {
	background: transparent;
	padding: 0.5rem 0 !important;
	vertical-align: middle;
	text-align: center;
	border: 2px solid rgba(244,179,194,1);
	box-sizing: border-box;
	border-radius:  0 2.5rem 2.5rem 0;
}

/* fuwaimg */
.grid{
	display:grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	margin: 0;
	gap:0.8em;
}
@media screen and (max-width: 1440px){
	.grid{
	grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}
@media screen and (max-width: 1024px){
	.grid{
	grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 768px){
	.grid{
	grid-template-columns: 1fr 1fr 1fr;
	}
}
@media screen and (max-width: 425px){
	.grid{
	grid-template-columns: 1fr 1fr;
	}
}
.item{
	letter-spacing: 0.15rem;
}
.square {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.62;
	border-radius: 10px;
	background-color: var(--color-pink);
	display: grid;
	place-items: center;
}
.square_img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.62;
	border-radius: 10px;
	object-fit: cover;
	object-position: center top;
}

/* fuwaimg 内部修正 */
p#fuwaimg_caption_text {
	margin: 10px 15px !important;
	font-size: 12.5px;
	line-height: 1.6em;
}
button#fuwaimg_zoom,  button#fuwaimg_close{
	padding: 0;
	border-radius: 0;
	color: var(--color-wh);
	letter-spacing: 0;
	background-color: var(--color-accent);
	box-shadow: none;
}
