@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}

/*タイトル(共通)*/
.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;
}
.spot-heading02+p{
	margin-top: 0.5em;
	margin-bottom: 1em;
	font-size: clamp(17px, 2.7vw, 25px);
	font-weight: bold;
	inline-size: fit-content;
	text-align: center;
	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 var(--v-space) ;
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.greeting-haba{
	max-width: 950px;
	margin: 0 auto;
}
.top-card__item{
	display: grid;
	grid-template-columns: 0.59fr 2fr;
	gap:5px;
}
@media (max-width: 568px) {
	.top-card__item{
		display: grid;
		grid-template-columns: 1fr;
		gap:5px;
	}
	.img-width-sp{
		width: 200px;
	}
}
.top-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	/* margin-bottom: 20px; */
	/*ここまで*/

}
.top-card__item p{
	text-align: center;
	font-size: 12px;
}
.top-card__item img{
	margin: 0 auto;
}


/*TELバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}
@media (max-width: 568px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
	}
}


/*======= 取扱い内容 ======*/
.sec1 {
    padding: var(--v-space) 0 0;
    background-color: #f5f5f5;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/* メリット */
.sec1-card__item{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:20px;
}
@media only screen and (max-width: 668px) {
	.sec1-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.sec1-card__item div.frame{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	gap:0px;
	/*ここまで*/

	background-color: var(--accent-color2);;
	border-radius: 0;
	box-sizing: border-box;
	border: solid 1px var(--accent-color2);
}
.sec1-card__point {
    color: #FFF;
    padding: 20px;
    text-align: center;
    position: relative;
}

.sec1-card__point p.puti-title{

	color:var(--accent-color1);
	font-size:20px;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;

}
.sec1-card__point p.no{
	color:#FFF;
	font-size: clamp(30px,4vw,40px);
	line-height: 1em;
	font-family: "Montserrat", sans-serif;
}
.sec1-card__point h5{
	color:#FFF;
	font-size: clamp(25px,1.8vw,30px);
	font-family: "Kiwi Maru", serif;
	font-weight: 400;
	font-style: normal;
}

.sec1-card__point::after {
    content: "▼";
    position: absolute;
    bottom: -30px; /* Adjust based on your layout */
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px; /* Adjust size as needed */
    color: var(--accent-color2); /* Arrow color */
}

.sec1-card__txt{
	padding: 20px;
	background-color: #ffffff;
    background-size: 6px 6px;
    background-image: repeating-linear-gradient(0deg, #e9ebf3, #e9ebf3 1px, #ffffff 1px, #ffffff);
}

/* 文字をアーチ状にする（POINT用） */
.arc-text {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-top: 20px;
}

.arc-text span {
	position: absolute;
	transform-origin: bottom center;
	transform: rotate(calc(var(--angle) * 1deg)) translateY(-50%);
}

.arc-text span:nth-child(1) { --angle: -60; }
.arc-text span:nth-child(2) { --angle: -30; }
.arc-text span:nth-child(3) { --angle: 0; }
.arc-text span:nth-child(4) { --angle: 30; }
.arc-text span:nth-child(5) { --angle: 60; }

.sec1__bk{
	padding: var(--v-space2) 0 var(--v-space);
	background-size:auto,6px 6px;
	background-image: url(../img/bg_01.png),repeating-linear-gradient(0deg, #d9e7eb, #d9e7eb 1px, #f5f5f5 1px, #f5f5f5);
	background-repeat: no-repeat,repeat;
	background-color: #f5f5f5;
}
.sec1-haba{
	max-width: 800px;
	margin: 0 auto;
}

/*======= コース案内 ======*/
.sec2 {
    padding: var(--v-space) 0;
    background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #f7f7f7;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
div.faq2 p.b {
	font-weight: bold;
	color: #444;
}
div.faq2 p.b::first-letter {
	color: var(--accent-color1);
	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 #bebebe;
	margin: 20px auto;
}



/*======= 会社案内ページ ======*/

/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_02.jpg);
	background-size: cover;
	background-position: center bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* 会社案内写真コンテナ */
.info-sec1-container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 10px 10px;
}

.info-sec1-container img{
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
}

@media (min-width: 568px) {
	.info-sec1-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* 概要部分のテーブル */
.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.8);
	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; /* 背景画像より上に表示 */ 
}

/* アクセス部分のテーブル */
.access1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 5.25em;
}
.access2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.access1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.access2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}



