@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: 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;
}

.spot_photo{
	margin:0 auto;
	position: relative;
}
.spot_photo::after {
	content: "";
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	border-image-source: repeating-linear-gradient(45deg, #ffffffcc 0, #ffffffcc 2px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 6px);
	border-width: 15px;
	border-image-slice: 20;
	border-image-repeat: round;
	border-style: solid;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.spot_photo02{
	margin:0 auto;
	position: relative;
}
.spot_photo02::before,
.spot_photo02::after {
	content: "";
	width: 100px;
	height: 100px;
	position: absolute;
}
.spot_photo02::before {
	border-top: 2px solid var(--main-color);
	border-left: 2px solid var(--accent-color1);
	top:-10px;
	left:-10px;
}
.spot_photo02::after {
	border-right: 2px solid var(--main-color);
	border-bottom: 2px solid var(--accent-color1);
	bottom:-10px;
	right:-10px;
}

/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space) ;
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.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);
	}
}


/*======= サービス案内 ======*/

/*section1*/
.sec1 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_01.png),url(../img/bg_01bk.jpg);
	background-position: top,center;
	background-repeat: no-repeat,repeat;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/*======= ご利用の流れ ======*/
.sec2 {
    padding: var(--v-space) 0;
    background-color: #ebf4f8;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* 画像とテキスト */
.sec2__imgtext {
	position: relative;
	padding:clamp(45px, 7vw, 60px) 0;		
	border: solid 1px var(--main-color);
	border-radius: 20px;
	padding: 1.5em 1.5em 1.5em 3em;
	background-color: #FFF;
}

.sec2__imgtext + .sec2__imgtext {
	padding-top: 0;
}

.sec2__imgtext-container {
	display: flex;
	flex-direction: column;
	gap: clamp(0px, 2vw, 35px);	/* テンプレ初期値 */

	/*gap: clamp(25px, 6vw, 35px);*/
}


@media print, screen and (min-width: 768px) {
	.sec2__imgtext-container {
		flex-direction: row;
	}

	.sec2__imgtext-container.reverse {
		flex-direction: row-reverse;
	}

	.sec2__imgtext-container > .sec2__text {
		flex: 1;
		min-width: 17em;
  	}

	.sec2__imgtext-container > .sec2__img {
		/*flex: 2;*/	/* テンプレ初期値 */
		flex: 0.4;
		/* min-width: 250px; */
	}
	.sec2__img img{
		margin: 0 auto;	
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}
}
.step {
    position: absolute;
    top: 100px;
    left: 10px;
    color: #000;
    writing-mode: vertical-rl;
    text-align: left;
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    z-index: 3;
    padding-top: 5px;
    height: 150px;
}

.step::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 13px;
    height: 120px;
    width: 1px;
    background-color: #000;
}

/* スクロールで表示されたときのアニメーション */
.step.fade-in {
    opacity: 1;
    transform: translateY(0);
}
@media print {
	.step {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Javascriptが動作しない環境では最初から表示 */
@supports not (animation: fadeIn 1s forwards) {
    .step {
        opacity: 1;
        transform: translateY(0);
    }
}

/*======= 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-color1);
	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_02top.png),url(../img/bg_02btm.png),url(../img/bg_02.jpg);
	background-size: 100%,100%,100%;
	background-repeat: no-repeat,no-repeat,repeat;
	background-position: top,bottom,center;

	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.7);
	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%;
	}
}

/*お問い合わせ*/
.sec_contact{
	padding: var(--v-space) 0;
	background: rgba(0, 0, 0, 0.5);
}
.sec_contact__frame{
	line-height: 1.3;
	background: rgba(255, 255, 255, 0.9);
	padding: 30px 10px 30px 10px;
	display: inline-block;
	text-align: center;
	font-weight: 400;
	/* border: 1px solid var(--main-color); */
	border-radius: 15px;
	position: relative;
	top: 0px;
	width: 100%;
	box-sizing: border-box;
	max-width: 768px;
  	left: 50%;
    transform: translate(-50%);
}


@media (max-width: 768px) {
	.sec_contact__frame {
		width: 97%;
	}
}

.sec_contact__tel{
	font-size: clamp(28px, 5vw, 40px);
	font-weight: 600;
	color: var(--main-color);
}
