/* ========================
共通レイアウト
======================== */
.resp-container {
width: 100%;
margin: auto;
box-sizing: border-box;
}
.box {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
margin-bottom: 20px;
align-items: flex-start; /* 画像とテキストを上揃え */
gap: 20px; /* 画像と文章の間隔 */
}
.text-01 {
display: flex;
flex-direction: column; /* 縦並びで <br> が効く */
align-items: flex-start;
justify-content: flex-start;
text-align: left;
padding-left: 20px;
flex: 1.5;
box-sizing: border-box;
line-height: 1.6; /* 読みやすく */
}
.align-c {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
}
.img-size {
width: 100%;
height: auto;
object-fit: contain;
display: block;
max-width: 320px; /* PC時の画像最大幅 */
}
/* ========================
スマホ対応
======================== */
@media screen and (max-width: 600px) {
.resp-container {
width: 90%;
}
.box {
flex-direction: column;
text-align: center;
gap: 15px; /* スマホは少し狭め */
}
.text-01 {
padding-left: 0;
width: 100%;
}
.align-c {
width: 100%;
display: block;
}
.img-size {
width: 100%;
height: auto;
max-width: none;
}
}
/* ========================
アイコンブロック
======================== */
.icon-row {
display: flex;
align-items: flex-start;
}
.icon-col {
width: 30%;
min-width: 60px;
}
.icon-col img {
width: 100%;
height: auto;
max-width: 120px;
display: block;
}
.content-block {
border: 1px solid #000;
padding: 10px;
margin-top: 10px;
background: #fff;
box-sizing: border-box;
}
/* ========================
見出し
======================== */
.section-title {
text-align: left;
margin: 40px 0 20px;
color: #0b3954;
}
#mb-recommend-title {
text-align: left;
margin: 30px 0 15px;
color: #0b3954;
}
/* ========================
メゾンボワール おすすめブロック
======================== */
#maisonboire-recommend {
background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
padding: 28px 20px;
border-radius: 8px;
box-shadow: 0 1px 3px rgba(0,0,0,0.04);
margin: 24px 0;
color: #222;
}
#maisonboire-recommend .mb-inner {
max-width: 980px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 320px;
gap: 18px;
align-items: start;
}
@media (max-width: 880px) {
#maisonboire-recommend .mb-inner {
grid-template-columns: 1fr;
}
}
#mb-recommend-desc {
margin-bottom: 12px;
}
.mb-points {
list-style: none;
padding: 0;
margin: 0;
}
.mb-points li {
display: flex;
gap: 10px;
align-items: flex-start;
padding: 8px 0;
border-bottom: 1px dashed rgba(0,0,0,0.04);
}
.mb-points li:last-child {
border-bottom: none;
}
.mb-icon {
min-width: 36px;
height: 36px;
border-radius: 50%;
background: #f5f8fa;
display:flex;
align-items:center;
justify-content:center;
font-weight: 700;
color: #0b3954;
}
.mb-point-title {
font-weight: 700;
margin-bottom: 4px;
}
.mb-point-desc {
color: #444;
}
.mb-cta {
display:flex;
flex-direction:column;
gap:10px;
align-items:stretch;
}
.mb-cta .note {
color:#666;
}
.mb-cta .btn {
display:inline-block;
text-align:center;
padding:10px 14px;
border-radius:6px;
text-decoration:none;
font-weight:600;
}
.btn-primary {
background: #0b3954 !important;
color: #fff !important;
}
.btn-primary:hover {
background: #082736 !important;
color: #fff !important;
text-decoration: none;
}

table {
border-collapse: collapse;
width: 100%;
table-layout: fixed;
font-family: sans-serif;
}
col.kind     { width: 10%; }
col.product  { width: 30%; }
col.other    { width: 8.57%; }
th, td {
border: 1px solid #999;
padding: 8px;
vertical-align: middle;
text-align: center;
}
.product {
text-align: left;
}
.circle, .double-circle {
display: inline-block;
width: 20px;
height: 20px;
border-radius: 50%;
text-align: center;
line-height: 20px;
font-weight: bold;
}
.circle {
border: 2px solid #555;
}
.double-circle {
border: 3px double #000;
}
th {
background-color: #f2f2f2;
}
.double-circle {
display: inline-block;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: #fce8e6; /* 淡い赤 */
border: 2px solid #cc0000; /* 外枠の色 */
box-shadow: 0 0 0 3px white inset; /* 内側に白のリングで二重風に見せる */
}