@charset "UTF-8";


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


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

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

/*タイトル(共通)*/
.spot-heading01{
	font-size: clamp(40px,6vw,70px);
	/* font-style: italic; */
	text-align: center;
	/* font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
	font-family: "Dancing Script", cursive;
  	font-weight: 400;
	color:#2d2d2d;
}
.spot-heading01::first-letter {
	color: var(--main-color)
  }

  .spot-heading02-img {
	width: 50%;
    margin: 5px auto 0 auto;
  }

.spot-heading02{
	font-size: clamp(24px, 2.7vw, 28px);
    line-height: 1.5em;
    font-weight: 700;
    text-align: center;
    min-height: 0vw;
    color: #444;
	padding-bottom: 0.5em;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 500;
	font-style: normal;
}
.spot-heading02+p{
    margin-top: 0.5em;
    margin-bottom: 1.5em;
    font-size: 15px;
    inline-size: fit-content;
    margin-inline: auto;
}
.line{
	width: 1px;
	height: auto;
	padding-top: clamp(20px,6vw,30px);
	background-color: #2d2d2d;
	margin: 0% auto;
	margin-bottom: 2%;
}
.line2{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #FFF;
	margin: 1.9607% auto;
}
  


/*======= FONT ======*/
/*英字*/
nav.nav ul li::before, 
.heading06::before , 
.heading,
.heading14::before
 {
	font-family: "Comic Neue", serif;
	font-weight: 700;
	font-style: normal;
}

/*日本語*/
@media (min-width: 569px) {
    .nav ul {
		font-family: "Noto Sans JP", serif;
		font-optical-sizing: auto;
		font-weight: 500;
		font-style: normal;
    }
}

@media (max-width: 568px) {
    .nav ul {
		font-family: "Noto Sans JP", serif;
		font-optical-sizing: auto;
		font-weight: 500;
		font-style: normal;
    }
}

.heading06,
.heading span,
.spot-heading02,
.heading-decoration,
.flow01 > li dl dt,
.greeting-card__item H4,
.sec1-card__item H4,
.heading-decoration2,
.sec2__title ,
.sec2__catch01,
.sec2__subtitle
 {
	font-family: "Noto Sans JP", serif !important;
	font-optical-sizing: auto !important;
	font-weight: 500 !important;
	font-style: normal !important;
}



/*======= 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;
}

.spot-heading02 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(28px, 2.7vw, 32px);
    text-align: center;
    border: 0;
    color: var(--main-color);
    margin: 10px;
    font-weight: bold !important;
}

.spot-heading02::before {
    margin-right: 30px;
    transform: rotate(-35deg);
}

.spot-heading02::after {
    margin-left: 30px;
    transform: rotate(35deg);
}
.spot-heading02::before, .spot-heading02::after {
    content: '';
    width: 1px;
    height: 40px;
    background-color: var(--accent-color2);
}

/*カード*/
.greeting-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.greeting-card__item{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.greeting-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.greeting-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/*ここまで*/

	padding: 20px;
	background-color: #f5f8f2;
	border-radius: 20px;
	box-sizing: border-box;
}
.greeting-card__item img{
	width: 30%;
	margin: 0 auto;
}
.greeting-card__item H4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	border-top: 2px dotted var(--main-color);
}
.greeting-card__item p{
	display: inline-block;
    font-size: 15px;
    line-height: 1.5;
}

.greeting-heading {
	position: relative;
	color: #fff;
	font-size: clamp(16px,1.5vw,25px);
	text-align: center;
	padding: 1em;
	background-color: var(--main-color);
	margin-bottom: 25px;
}
.greeting-heading::after {
	width: 0;
	height: 0;
	position: absolute;
	top: 100%;
	left: 50%;
	margin: 0 0 0 -25px;
	border: 25px solid transparent;
	border-top-color: var(--main-color);
	content: '';
}

.greeting-container {
	display: grid;
	grid-template-columns: 1fr 200px;
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	align-items: center;
}

@media only screen and (max-width: 768px) {
	
	.greeting-container {
		grid-template-columns: 1fr;
		grid-template-rows: 2fr;
	}
	.greeting-container img{
		max-width: 300px;
		margin: 0 auto;
	}

}

  /*会話風*/
  .balloon-color {
	display: flex;
	flex-wrap: nowrap;
}
/* 左の吹き出し */
.balloon-color.left {
	flex-direction: row; /* 左から右に並べる */
}
.left .chatting-color {
	position: relative;
	display: inline-block; /* 吹き出しが文字幅に合わせます */
	margin: 15px 20px 20px;
	padding: 10px 20px;
	background: #696969; /* ◯）カラー変更はこちら */
	text-align: left; /* テキスト左揃え */
	border-radius: 15px; /* 枠の丸みの設定はこちら */
}
.left .chatting-color::after {
	content: "";
	border: 15px solid transparent;
	border-top-color: #696969; /* （◯）とカラーを合わせる */
	position: absolute;
	top: 30px; /* 三角部分の高さ */
	left: -15px; /* 三角部分の位置 */
}
/* 右の吹き出し */ 
.balloon-color.right {
	flex-direction: row-reverse; /* 右から左に並べる */ 
}
.right .chatting-color {
	position: relative;
	display: inline-block; /* 吹き出しが文字幅に合わせます */
	margin: 15px 20px 20px;
	padding: 10px 20px;
	background: var(--accent-color1); /* （△）カラー変更はこちら */
	text-align: left; /* テキストの位置変更はこちら */
	border-radius: 15px; /* 枠の丸みの設定はこちら */
}
.right .chatting-color::after {
	content: "";
	border: 15px solid transparent;
	border-top-color: var(--accent-color1); /* （△）とカラーを合わせる */
	position: absolute;
	top: 30px; /* 三角部分の高さ */
	right: -15px; /* 三角部分の位置 */
}
.chatting-color {
	align-items: center;
}
/* アイコンの作成 */
.balloon-color figure img {
	border-radius: 0; /* 画像を丸くしたいときに利用 */
	margin: 0;
}
/* アイコンの大きさ */
.icon-color {
	width: 150px;
	/*height: 150px;*/
}
/* アイコンの名前 */
.name-color {
	width: 150px; /* アイコンの大きさと合わせる */
	font-size: 12px;
	text-align: center; /* 名前は真ん中に */
}
.text-color {
	color: #fff; /* テキストのカラー変更はこちら */
	font-size: 16px; /* テキストサイズの変更はこちら（なければデフォルトのサイズになります） */
}
@media (min-width: 568px) {
	.text-color {
	}
}

/*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);
	}
}


/*======= BLOGBLOG ======*/

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


/*======= コンテンツ ======*/

/*section1*/
.sec1 {
	padding: var(--v-space) 0;
	background-color: #9ab26921;
	background-image: repeating-linear-gradient(45deg, #9ab26920 0, #9ab26920 1px, #ffffff00 0, #ffffff00 50%);
	background-size: 10px 10px;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/*section2*/
.sec2 {
	padding: var(--v-space) 0 var(--v-space2);
	background:var(--base-color);

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


.sec2-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
	
.sec2-container-item1 { 	
	grid-area: 1 / 1 / 2 / 2;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../img/bg_02.jpg);	
	background-position: bottom right;
}
@media print {
	.sec2-container-item1 {
		background-image: url(../img/bg_02.jpg);
		background-size: 100vw;
	}
}
.sec2-container-item2 { 	
	grid-area: 1 / 2 / 2 / 3;
	padding: 100px;
	margin: 0 auto;
}

@media only screen and (max-width: 1100px) {
	.sec2-container {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(1, 70vw 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
		background-color: #fff;
	}
		
	.sec2-container-item1 { grid-area: 1 / 1 / 2 / 2; }
	.sec2-container-item2 {
		grid-area: 2 / 1 / 3 / 2;
		padding: 30px 15px 50px 15px;
	 }
}
@media only screen and (max-width: 568px) {
	.sec2-container {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(1, 70vw 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}
		
	.sec2-container-item1 { grid-area: 1 / 1 / 2 / 2; }
	.sec2-container-item2 {
		grid-area: 2 / 1 / 3 / 2;
		padding: 30px 15px 50px 15px;
	 }
	 .sec2-container-item2 img{
		width: 60%;
		margin: 0 auto;
	 }
}

.sec2__title {
    font-size: clamp(30px, 5vw, 40px);
    font-weight: 700;
    text-align: center;
    font-family: 'Kiwi Maru';
}

.sec2__title span {
    font-size: clamp(40px, 5vw, 60px);
}


.sec2__catch01 {
    font-size: clamp(18px, 5vw, 25px);
    text-align: center;
    width: 160px;
    margin-inline: auto;
    border: 1.5px solid var(--main-color);
    font-weight: 700;
    font-family: 'Kiwi Maru';
}

.sec2__subtitle {
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    position: relative;
    font-size: clamp(25px, 5vw, 40px);
    font-family: 'Kiwi Maru';
    background-image: url(../img/sec3__title.png);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.sec2__subtitle span {
    font-size: clamp(35px, 5vw, 60px);
    color: var(--main-color);
    font-family: 'ヒラギノ丸ゴ Pro W4', 'ヒラギノ丸ゴ Pro', 'Hiragino Maru Gothic Pro', 'HG丸ｺﾞｼｯｸM-PRO', 'HGMaruGothicMPRO', sans-serif;
}


ul.sec2__list{
    margin-top: 10px;
    /* font-size: clamp(18px, 5vw, 25px); */
	line-height: 2.5;
    list-style-type: none;
    column-count: 1;		/*リスト横並び数を指定*/
}
.sec2__list li+li {
    margin-top: 5px;
}
.sec2__list li {
    position: relative;
    padding-left: 35px;
    border-bottom: 1px solid #ccc;
}
.sec2__list li:before {
    content: "";
    position: absolute;
    width: clamp(2px,3vw,14px);
    height: clamp(17px,5vw,25px);
    top: 0em;
    left: 6px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    border-right: 3px solid var(--main-color);
    border-bottom: 3px solid var(--main-color);
}
.sec2__list li:after {
    content: "";
    position: absolute;
    top: .2em;
    left: 0;
    width: clamp(18px,5vw,25px);
    height: clamp(18px,5vw,25px);
    border: 1px solid #9c9c9c;
    border-radius: 2px;
}

/*======= ABOUT ======*/

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

/*フロー*/
.flow_design02 {
	display: flex;
	justify-content: center;
	align-items: center;
}
.flow_design02 ul {
	padding: 0;
}
.flow_design02 li {
	list-style-type: none;
}
.flow_design02 dd.flow-cc {
	margin-left: 0;
	width: 100%;
}
.flow02 > li {
	padding: 40px 10px;
}
.flow02 > li:not(:last-child) {
	border-bottom: 3px solid var(--main-color);
	position: relative;
}
.flow02 > li:not(:last-child)::before,
.flow02 > li:not(:last-child)::after {
	content: "";
	border: solid transparent;
	position: absolute;
	top: 100%;
	left: 15%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.flow02 > li:not(:last-child)::before {
	border-width: 22px;
	border-top-color: var(--main-color);
}
.flow02 > li:not(:last-child)::after {
	border-width: 18px;
	border-top-color: #f8f6f2;/*三角部分の色*/
}
.flow02 > li dl.flow-aa {
	margin: 0;
}
.flow02 > li dl.flow-aa dt.flow-bb {
	font-size: 1.3em;
	font-weight: 600;
	border-bottom: 2px dotted #878787;
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	display: flex;
	width: 100%;
}
.flow02 > li dl.flow-aa dt.flow-bb .icon02 {
	display: flex;
	align-items: center;
	justify-content: center;
	max-height: 100px;/*50pxなら2行折り返しまで、100pxなら3行折り返しまで対応可*/
	font-size: 0.6em;
	color: #fff;
	background: var(--main-color);
	padding: 5px 10px;
	/*display: inline-block;*/
	margin-right: 0.5em;
}
@media screen and (max-width: 568px) {
	.flow02 > li dl.flow-aa dt.flow-bb {
		background: #f8f6f2;
	}
}


/*======= 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 var(--accent-color2);
	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: bottom;

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

/*会社概要*/
.bg_b{
	background: rgba(85, 114, 59, 0.8);
	padding:40px;
	border-radius: 20px;
}
@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; /* 背景画像より上に表示 */ 
}



/*======= リスト ======*/
@media (max-width: 1024px) {
	ul.sidelist2 li {
		font-size: 13px;
		padding: 5px 4px;
	}
}

ul.sidelist2 li {
    box-sizing: border-box;
    list-style-type: none;
    float: left;
    --widthA: calc(100% - 10px);
    --widthB: calc(var(--widthA) / 2);
    width: var(--widthB);
    margin: 2.5px 5px 2.5px 0;
    text-align: left;
    text-decoration: none;
    font-size: 15px;
    padding: 5px;
	color: --txt-color;
    border: dashed 1px var(--main-color);
    background: #fff;
}

 .mb-20 {
	margin-bottom: 20px !important;
 }

 .cleafix {
	content: '';
    display: block;
    clear: both;
    padding-top: 20px;
 }


/*======= 電話 ======*/
 .sec3-heading {
    display: flex
;
    justify-content: center;
    align-items: center;
    font-size: clamp(14px, 1vw, 18px);
    text-align: center;
    border: 0;
    color: var(--txt-color);
    margin: 10px;
}

.sec3-heading::before {
    margin-right: 30px;
    transform: rotate(-35deg);
    content: '';
    width: 1px;
    height: 40px;
    background-color: var(--main-color);
}

.sec3-heading::after {
    margin-left: 30px;
    transform: rotate(35deg);
    content: '';
    width: 1px;
    height: 40px;
    background-color: var(--main-color);
}

a.btn_01 {
    display: block;
    text-align: center;
    text-decoration: none;
    position: relative;
    width: 200px;
    margin: 0 auto;
    padding: 1rem 4rem;
    font-weight: bold;
    color: #fff;
    background: var(--main-color);
    transition: 0.3s ease-in-out;
}

a.btn_01::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 1px solid var(--accent-color1);
    transition: 0.2s;
}

/*======= 調整 ======*/
.l-c {
    margin-right: auto;
    margin-left: auto;
}
.c {
margin: 5px auto 0 auto;
}