@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;
}

/*電話バナー*/
.tel_bnr {
	display: grid
	;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	padding: 20px 0;
}


.tel_bnr img{
	box-shadow: 0 8px 8px 0 rgba(0, 0, 0, .10);
}


@media (max-width: 568px) {
	.tel_bnr {
		grid-template-columns: repeat(1, 1fr);
	}
}


/*======= コンテンツ ======*/

/*=========サービス案内===============*/

.secS {
	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;
	background-color: #f1faf5;
	background-size: 6px 6px;
	background-image: repeating-linear-gradient(
	0deg,
	#cdeffc,          /* 水色寄りの薄い色 */
	#cdeffc 1px,
	#f1faff 1px,
	#f1faff
	);
}

.waku80{
	width:80%;
	margin:0 auto;
}

@media screen and (max-width: 568px) { 

	.waku80{
		width:initial;
		margin:initial;
	}
}

/*カード*/
.secS-card__item{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:10px;
}
@media only screen and (max-width: 568px) {
	.secS-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secS-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/*ここまで*/

	padding: 10px;
	background-color: var(--accent-color3);
	box-sizing: border-box;
	box-shadow: 0 13px 13px 0 rgba(19, 142, 214, .1);
}
.secS-card__item h4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: normal;
	line-height: 1.3;
	text-align: center;
	border-bottom: 2px dotted var(--accent-color2);
}
.secS-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
}


/*======Insurance 保険紹介==========*/

.secI {
	padding: var(--v-space) 0;
	background-color:#FBFEFF;
}

/*カード*/
.secI-card__item{
	display: grid;
	grid-template-columns: repeat(4, 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;
	/*ここまで*/

	padding: 10px;
	background-color: var(--accent-color3);
	box-sizing: border-box;

	box-shadow: 0 13px 13px 0 rgba(19,142,214, .1);
}
.secI-card__item h4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: normal;
	line-height: 1.3;
	text-align: center;
	border-bottom: 3px double var(--accent-color2);
}
.secI-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
}


/*======Insurance 保険紹介==========*/


/*カード*/
.secF-card__item{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.secF-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.secF-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secF-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 1;
	/*ここまで*/

	box-sizing: border-box;
}
.secF-card__item h4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	border-bottom: 2px dotted var(--main-color);
}
.secF-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
}



/*======= FLOW ======*/


/*リスト*/
.bullet-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* PC・タブレット */
.bullet-list li {
  position: relative;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 1em;
  padding-left: 1em;
  box-sizing: border-box;
  padding-bottom:0 !important;
}

/* 偶数項の右マージンなし */
.bullet-list li:nth-child(2n) {
  margin-right: 0;
}

/* ●マーク */
.bullet-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--accent-color2);
}

/* スマホでは1列で左右バランス・インデント調整 */
@media screen and (max-width: 767px) {
  .bullet-list li {
    width: 90%;
    margin-right: 0;
    padding-left: 1em;      /* インデント少し小さく */
    text-indent: 0em;
	margin-left:5%;
  }

}



span.scl{
	color:var(--accent-color2);
}


.secF{
	padding: var(--v-space) 0;
	background-color:white;
}


/*======= 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(--accent-color2);
	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;
}


/*======これまで一橋保険事務所では～、==========*/


.secN2 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_04.png);
	background-size:cover;
	background-position: bottom;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


@media screen and (min-width: 768px) { 
	.secN2 {
		padding: var(--v-space) 0;
		background-color: #FFF;
		background-image: url(../img/bg_04a.png);
		background-size:cover;
		background-position: bottom;
		position: relative; /* sectionの位置を相対的にする*/ 
		z-index: 1; /* 背景画像より上に表示 */ 
	}
}

/*カード*/
.secN2-card__item{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:10px;

}

.secN2-card__item p{

}
@media only screen and (max-width: 968px) {
	.secN2-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		margin-bottom:80px;
	}
}
@media only screen and (max-width: 568px) {
	.secN2-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secN2-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 1;
	/*ここまで*/

	padding: 10px;
	border-radius: 10px;
	box-sizing: border-box;
}

@media screen and (max-width: 568px) { 
	.secN2-card__item div{
		margin-bottom:70px;
		margin-top:-20px;
	}

}





.secN2-card__item h4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	border-bottom: 2px dotted var(--main-color);
}
.secN2-card__item p{
	display: inline-block;
	font-size: 20px;
	line-height: 1.5;
}






/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;
	background-color: #f7f7f7;
	background-image: repeating-linear-gradient(0deg, #e6e6e6 0, #e6e6e6 1px, transparent 1px, transparent 15px), repeating-linear-gradient(90deg, #e6e6e6 0, #e6e6e6 1px, transparent 1px, transparent 15px);
	background-size: 15px 15px;
}
/* 概要・アクセス部分のテーブル */
.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(40, 105, 143, 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; /* 背景画像より上に表示 */ 
}






/*======= 調整 ======*/
.l-c {
	margin-right: auto;
	margin-left: auto;
}



/*その他*/
strong{
	font-weight:normal;
}

/*全体共通の文字装飾*/
.fuchidori2 {
	text-shadow:
	1px 1px 0 #FFF, -1px -1px 0 #FFF,
	-1px 1px 0 #FFF, 1px -1px 0 #FFF,
	0 1px 0 #FFF, 0 -1px 0 #FFF,
	-1px 0 0 #FFF, 1px 0 0 #FFF,
	2px 0 0 #FFF, -2px 0 0 #FFF,
	0 2px 0 #FFF, 0 -2px 0 #FFF,
	2px 2px 0 #FFF, -2px -2px 0 #FFF,
	-2px 2px 0 #FFF, 2px -2px 0 #FFF,
	3px 0 0 #FFF, -3px 0 0 #FFF,
	0 3px 0 #FFF, 0 -3px 0 #FFF;
}

/*全体共通の枠装飾*/
.waku80A{
	width:80%;
	margin:0 auto;
	background-color: #f2f8fc;
	border-radius:10px;
	padding:20px;
	box-shadow: 0 8px 8px 0 rgba(0, 0, 0, .10);
}


