@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}

/*タイトル(共通)*/
.spot-heading01{
	font-size: clamp(50px,6vw,70px);
	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;
}
.spot-heading02+p{
	margin-top: 0.5em;
	margin-bottom: 1em;
	font-size: 22px;
	font-weight: bold;
	inline-size: fit-content;
	margin-inline: auto;
	font-family: 'YakuHanJPs','Noto Sans Japanese',sans-serif,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial,Helvetica, Verdana;
}
.line{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #2d2d2d;
	margin: 1.9607% auto;
}
.line2{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #FFF;
	margin: 1.9607% auto;
}


/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0;
	background-color: var(--base-color);
	background-image: url(../img/bg_01a.png),url(../img/bg_01b.png);
	background-position:top left, top right;
	background-repeat: repeat-y,repeat-y;
	background-size: 20%,20%;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media only screen and (max-width: 768px) {

	.greeting {
		padding: clamp(40px, 6vw, 90px) 0;
		background-color: var(--base-color);
		background-image: url(../img/bg_01c.png),url(../img/bg_01d.png);
		background-position: top,bottom;
		background-repeat: no-repeat,no-repeat;
		background-size: 100%,100%;
	}
	
}

/*======= お知らせ欄 ======*/

/*NEWS ワク*/
div.news_haba{
	margin: 0 16%;
	padding: 30px 0;
}
@media only screen and (max-width: 1068px)  {
	div.news_haba{
		margin: 0 8%;
		padding: 30px 1%;
	}
}
@media only screen and (max-width: 768px)  {
	div.news_haba{
		margin: 0;
		padding: 30px 1%;
	}
}
.newsbg {
	background: rgba(255, 255, 255, 0.7);
    padding: 40px 40px 20px 40px;
	border: 1px solid var(--main-color); /* 枠線の追加&#xff08;色と太さを指定&#xff09; */
	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:last-child {
	border-bottom: none;
}
.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: #fff;
    padding: 1px 5px 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;
	}

}


/*======= 取扱商品 ======*/

/*section1*/
.sec1 {
	padding: var(--v-space) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.sec1-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

/*======= ご予約について ======*/

/*section2*/
.sec2 {
	padding: var(--v-space) 0;
	background-image: url(../img/bg_02.jpg);
	background-size: cover;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* 流れ */
.sec2__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px 40px;
}
.sec2__steps > li:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -20px;
    display: block;
    width: 15px;
    height: 50px;
    content: "";
    background-image: url(../img/arrow.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
    transform: translate(50%, -50%);
}
.sec2__steps li{
	/*子要素のそれぞれの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/*ここまで*/
}
.sec2__steps > li:not(:last-child) {
    position: relative;
}
.sec2__steps img{
	position: relative;
	border-radius: 0px 0px 10px 10px;
	bottom: -10px;
}
.sec2__steps h3{
    position: relative;
	margin-bottom: 5px;
	font-size: 15px;
	min-height: 0vw;
	text-align: center;
	background: var(--main-color);/*背景色*/
	color: #fff;
	border-radius: 10px;
  	padding: 0.5em;/*文字まわり（上下左右）の余白*/
	font-family: 'ヒラギノ丸ゴ Pro W4', 'ヒラギノ丸ゴ Pro', 'Hiragino Maru Gothic Pro', 'HG丸ｺﾞｼｯｸM-PRO', 'HGMaruGothicMPRO', sans-serif;
}
.sec2__steps p{
	font-size:12px;
	padding: 0.4em;/*文字まわり（上下左右）の余白*/
}
.sec2__card {
    display: grid;
    min-height: 100px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 768px)  {
	.sec2__steps {
		grid-template-columns: repeat(1, 1fr);
		gap: 40px 10px;
	}
	.sec2__steps > li:not(:last-child)::after {
		position: static;		
		margin: 0 auto;
		margin-bottom: -100px;
		transform: rotate(90deg);/* 回転 */
	}
	.sec2__steps li{
		display: grid;
		grid-template-rows:auto;	/*subgrid解除*/
		gap: 0px 0px;
	}
}

/* コンテナ― */
.sec2__container{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}
@media only screen and (max-width: 768px)  {
	.sec2__container{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 20px;
		grid-row-gap: 20px;
	}
}

/*section3*/
.sec3 {
    padding: var(--v-space) 0;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}



/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
div.faq2 p.b {
	font-weight: bold;
	color: #444;
}
div.faq2 p.b::first-letter {
	color: var(--main-color);
	font-size: 130%;
}
div.faq2 p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: left;
	text-indent: -1.4em;
	padding-left: 1.4em;
	display: block;
}
div.faq2 p::first-letter {
	color: var(--accent-color2);
	font-size: 130%;
	font-weight: bold;
}
hr.faqHr{
	height: 0px;
	border: 1px dashed var(--accent-color1);
	margin: 20px auto;
}



/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_04.jpg);
	background-size: cover;
	background-position: center right;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 5.25em;
}
.info2 {
	border-bottom: 1px dashed #999;
	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%;
	}
}

/*会社概要*/
.bg_b{
	background: rgba(255, 255, 255, 0.7);
	padding:40px;
}
@media screen and (max-width: 568px) {
	.bg_b {
		background: rgba(255, 255, 255, 0.8);
		padding: 20px;
	}
}

.access_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}



