@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}



/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space);
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

.greeting-spot {
	color: var(--accent-color1);
	font-size: 1.2em;
}



/*======= コンテンツ ======*/

/*======= お知らせ欄 ======*/

/*NEWS ワク*/
div.news_haba{
	margin: 0 10%;
	padding: 10px 0;
}
@media only screen and (max-width: 1068px)  {
	div.news_haba{
		margin: 0 1%;
		padding: 10px 1%;
	}
}
@media only screen and (max-width: 768px)  {
	div.news_haba{
		margin: 0;
		padding: 10px 0px;
	}
}
.newsbg {
	background: rgba(255, 255, 255, 0.7);
    padding: 40px 40px 20px 40px;
/*	border: 1px solid #3c9dab; *//* 枠線の追加（色と太さを指定） */
	border-radius: 8px; /* 角を丸くする場合 */
}
@media screen and (max-width: 568px) {
	.newsbg {
		padding: 30px 15px 15px 15px;
	}
}

/*NEWS タイトル*/
.news-decoration {
	font-size: clamp(22px, 3vw, 26px);
	min-height: 0vw;
	font-weight: 400;
	line-height: 1.4;
	color: #444;
	font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700 !important;
    font-style: normal;
}

.news-decoration::after {
    display: block;
    content: '';
    width: 160px;
    height: 0px;
    margin-top: 0.6em;
    margin-bottom: 0.2rem;
    border-bottom: 2px solid var(--main-color);
    font-weight: bold;
    font-size: 26px;
    margin-left: auto;
    margin-right: auto;
}

.news-decoration + p {
    margin-top: 0.5em;
    margin-bottom: 1em;
	color: var(--main-color);
    font-size: 15px;
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 500;
    font-style: normal;
	letter-spacing: 0.1em;
	text-align: center;
}

@media screen and (max-width: 968px) {
	.news-decoration {
		text-align:center;
	}
	.news-decoration::after {
		margin-right:auto;
		margin-left:auto;
	}
	.news-decoration + p {
		text-align:center;
		margin-bottom: 20px;
	}
}

/*NEWS リスト*/
.news-list{
	list-style: none outside;
	margin: 0;
	padding: 0;
}
.news-list .item{
	display: flex;
	flex-wrap: wrap;
	/*flex-wrap: nowrap;　改行なしにするとき*/
	text-decoration: none;
	color: #333;
    border-bottom: 1px dashed #CCC;
	padding: 10px 10px;
}
.news-list .item:first-child a{
	border-bottom: 1px solid #CCC;
}
.news-list .item:first-child a:hover{
	color:var(--main-color);
	border-bottom: 1px solid #CCC;
}
.news-list .item .date{
	margin: 0;
	min-width: 120px;
	font-size: 16px;
	color: var(--main-color);
	padding: 0 20px 0 0;
}
.news-list .item .title{
	margin: 0;
	width: 100%;
    font-weight: bold;
}
.news-list .item .details{
    margin: 15px 0 0 0;
	width: 100%;
}

@media screen and (max-width: 767px){
	.news-list .item{
		flex-wrap: wrap;
		/*padding: 0px 0px;*/
	}
	.news-list .item .date{
		min-width: 100px;
	}
}

.new-icon {
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    background-color: var(--accent-color1);
    padding: 2px 5px;
    margin-right: 12px;
    border-radius: 3px;
    vertical-align: middle;
    width: 70px;
    text-align: center;
}

/* 日付の表 */
.news_time-table {
	width: 100%;
	border-collapse: collapse;
    margin: 1em 0;
	font-size: 15px;
	line-height: 1.6em;
}

.news_time-table th,
.news_time-table td {
	border: 1px solid #ccc;
	padding: 8px 10px;
	text-align: left;
}

.news_time-table td[data-label="日付"] {
	background-color: #f7f7f7;
	/*width: 30%;*/
}

.news_time-table th {
	background-color: #f2f2f2;
	color: #333;
}

@media screen and (max-width: 767px) {
	.news_time-table {
		border: none;
	}

	.news_time-table thead {
		display: none;
	}

	.news_time-table tr {
		display: block;
		border: 1px solid #ccc;
        margin-bottom: 0.5em;
		background-color: #fff;
		overflow: hidden;
	}

	.news_time-table td {
		display: block;
		border: none;
		padding: 6px 10px;
		font-size: 15px;
	}

	.news_time-table td[data-label="日付"] {
		background-color: #f7f7f7;
		font-size: 16px;
		width: 100%;
	}

	.news_time-table td[data-label="営業時間"] {
		color: #333;
		padding-top: 4px;
	}

}
/* おすすめ商品カードを2列にする */
.secI-card__item.secI-card__item--2col {
 display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* SPでは1列表示 */
@media only screen and (max-width: 568px) {
  .secI-card__item.secI-card__item--2col {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* 品名＋価格リスト */
.rec-item-list {
  list-style: none;
  margin: 10px 0 20px;
  padding: 0 10px 15px;
  font-size: 15px;
  line-height: 1.6;
}

.rec-item-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dotted #ddd;
  padding: 4px 0;
}

.rec-item-name {
  flex: 1;
  margin-right: 8px;
}

.rec-item-price {
  white-space: nowrap;
  font-weight: 600;
}

.only-tagline {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  margin: 15px 0;
  padding: 10px 5px;
}

.only-lead {
  display: inline-block;
  border-bottom: 2px solid #2a79c5;
  padding-bottom: 3px;
}

.only-strong {
  color: #2a79c5;
  font-weight: 600;
  font-size: 1.2rem;
}

/*======= About 弊社について ======*/
.secA {
	padding: var(--v-space) 0;
	background-color: var(--base-color);
	background-image: url(../img/bg_04.png);
	background-size: cover;
	background-repeat: no-repeat;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 

}

/* 背景を薄くするオーバーレイ */
.secA::before {
	content: "";
	position: absolute;
	inset: 0; /* top:0;right:0;bottom:0;left:0 */
	background-color: rgba(255, 255, 255, 0.9); /* 白を60%透過 */
	z-index: -1; /* 背景の下に置く */
}

/*画像とリード文並べる*/
.a-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 16px;
	margin-top:-40px;
}

/* グリッド全体 */
.a-container > div {
	display: grid;
	grid-template-columns: 1fr 4fr; /* 1:4 */
	gap: 20px;
	align-items: center;   /* 縦方向の中央寄せ */
	min-height: 200px;
	padding: 16px;
	border-radius: 8px;
}

/* 左のセル（画像用） */
.a-container > div > :first-child {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 画像のスタイル */
.a-container img {
	display: block;
	max-width: 200px;
	max-height: 170px;
	width: auto;
	height: auto;
	object-fit: cover;
}

@media screen and (max-width: 568px) { 
	.a-container img {
		max-width:initial;
	}
}

/* 右のセル（テキスト用） */
.a-container > div > :last-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* テキスト整形 */
.a-container p {
	margin: 0;
	line-height: 1.6;
	font-size: 16px;
	color: #222;
}

/* スマホ時 */
@media (max-width: 767px) {
	.a-container > div {
		grid-template-columns: 1fr; /* 1列 */
		gap: 12px;
		min-height: auto;
	}
	.a-container img {
		width: 100%;
		max-height: none;
	}
}

/*======= Service 業務案内 ======*/
.secSe {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_01a.png), url(../img/bg_01b.png);
	background-repeat: no-repeat, no-repeat;
	background-position: top center, bottom center;
	background-size: 100%, 100%;
	position: relative; /* 追加 */
}

.secSe::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.8); /* 不透明度を高めて効果を強調 */
	z-index: 0; 
}



/*======= Item 取扱酒類 ======*/
.secI {
	padding: var(--v-space) 0;
	/*
	background-color: var(--accent-color4);
	 */

background-color: white;
}

/*カード*/
.secI-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.secI-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.secI-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secI-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/*ここまで*/
	background-color: white;
	box-sizing: border-box;
	box-shadow: 0 6px 6px 0 rgba(0, 0, 0, .1);
}
.secI-card__item H4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	font-family: 'Noto Serif JP', serif !important;
	color:#666;
	font-weight:500;
	padding-top:20px;
}
@media screen and (max-width: 568px) { 
	.secI-card__item H4{
		font-size:22px;
		font-weight:600;
	}
}

.secI-card__item H4::after {
	margin:0 auto;
	display: block;
	content: '';
	width: 60px;
	height: 0px;
	margin-top: 0.6em;
	margin-bottom: 0.2rem;
	border-bottom: 3px double var(--main-color);
	font-weight: bold;
	font-size: 26px;
}



.secI-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
	margin-top:10px;
	padding:10px;
}


/*======= Select 当社が選ばれる理由 ======*/
.secSl {
	padding: var(--v-space) 0;
	background-color: #FFF;
}

/*カード*/
.secA-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.secA-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.secA-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secA-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	/*ここまで*/

	padding-top: 10px;
	background-color: white;
	box-sizing: border-box;
	box-shadow: 0 6px 6px 0 rgba(0, 0, 0, .1);
	/*
	background-color:var(--accent-color4);
	*/
}
.secA-card__item H4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	font-family: 'Noto Serif JP', serif !important;
	color:#666;
	font-weight:600;
	color:#222;
}


.secA-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
}


/*======= FAQ ======*/
.contentsbgA {
	margin-bottom: 30px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 13px 13px 0 rgba(0, 0, 0, .05);
}

.faq_sec1 {
	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;
	background-color: #f0faff; /* さらに淡い水色 */
	background-size: 6px 6px;
	background-image: repeating-linear-gradient(
	0deg,
	#d8f0ff, /* 線も薄めの水色 */
	#d8f0ff 1px,
	#f0faff 1px,
	#f0faff
	);
}

.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 5px;
}

.faq-label {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 110%;
	line-height: 1.5;
	border-radius: 3px;
	width: 1.5em;
	text-align: center;
	align-self: start;
	/* lavelを上揃えに */
}

.faq-label.q {
	background-color: var(--main-color);
}

.faq-label.a {
	background-color: var(--accent-color3);
}

.faq-question,
.faq-answer {
	margin: 0;
	line-height: 1.6;
	text-align: justify;
}

.faq-question {
	font-weight: bold;
}

hr.faqHr {
	height: 0px;
	border: 1px dashed var(--accent-color2);
	margin: 20px auto;
}


/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_03.jpg);
	background-size:cover;
	background-position: bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media screen and (max-width: 568px) { 
	.info_sec1{
		background-position: center;
	}
}

h3.title{
	font-family: 'Noto Serif JP', serif !important;
	text-align:center;
	font-size:24px;
}

h3.title::after {
	margin:0 auto;
	display: block;
	content: '';
	width: 60px;
	height: 0px;
	margin-top: 0.6em;
	margin-bottom: 1.6rem;
	border-bottom: 5px solid white;
	font-weight: bold;
	font-size: 26px;
}
span.min2{
	font-family: 'Noto Serif JP', serif !important;
	font-size:1.6em;
}

/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed var(--accent-color1);
	padding: 5px;
	width: 5.25em;
}
.info2 {
	border-bottom: 1px dashed var(--accent-color1);
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.info1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.info2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}

.info-sec1-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px 5px;
}

@media (min-width: 568px) {
	.info-sec1-container {
		grid-template-columns: repeat(6, 1fr);
	}
}
p.right{
	text-align:right;
}
.waku80{
	margin:0 auto;
	width:80%;
	padding:20px;
	border:1px solid #aaa;
}

@media screen and (max-width: 568px) { 

	.waku80{
		width:initial;
		padding:15px;
	}
}

/*会社概要*/
.bg_b{
	background: rgba(0,59,107, 0.9);
	padding:40px;
}
@media screen and (max-width: 568px) {
	.bg_b {
		padding: 20px;
	}
}

.access_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}



/*======= 調整 ======*/
.l-c {
	margin-right: auto;
	margin-left: auto;
}

.spot-heading01 {
	font-size: clamp(40px, 6vw, 60px);
	font-style: italic;
	text-align: center;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.spot-heading02 {
	font-size: clamp(22px, 2.7vw, 30px);
	line-height: 1em;
	font-weight: 700;
	text-align: center;
	font-family: 'YakuHanJPs', 'Noto Sans Japanese', sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial, Helvetica, Verdana;
}


/*全体*/
h3.heading-decoration + p {
	font-family: 'Noto Serif JP', serif !important;
}

strong{
	font-weight:normal;
}


/*マーカー*/
.mkr {
    background: linear-gradient(to bottom, transparent 60%, #b3e5fc 100%);
    padding: 0 2px; /* 左右の余白 */
}


/*大きいのみ影*/
.imgtext-container > figure.img {
	box-shadow: 6px 6px 1px #eee ;
}


/*=======印刷改行===========*/
/* 印刷時のみ有効 */
@media print {
    .print-break {
        display: block; /* ブロックにして改行 */
        content: "";    /* 空でもOK */
    }
}

/* 画面表示時は無視 */
@media screen {
    .print-break {
        display: inline; /* 元のまま */
    }
}
