/* ------------------------------------------------------------

	スマッピー 共通

------------------------------------------------------------ */

:root {
	/* ===== フォントサイズ ===== */
	--font-size-13_14: clamp(1.3rem, 0.8566rem + 0.5780vw, 1.4rem);
	--font-size-14_16: clamp(1.4rem, 0.5133rem + 1.1561vw, 1.6rem);
	--font-size-16_18: clamp(1.6rem, 0.7133rem + 1.1561vw, 1.8rem);
	--font-size-18_20: clamp(1.8rem, 0.9133rem + 1.1561vw, 2rem);
	--font-size-20_22: clamp(2rem, 1.1133rem + 1.1561vw, 2.2rem);
	--font-size-22_24: clamp(2.2rem, 1.3133rem + 1.1561vw, 2.4rem);

	/* ===== 余白 ===== */
	--mt8_16: clamp(8px, -2.7468rem + 4.6243vw, 16px);
	--mt14_24: clamp(14px, -3.0335rem + 5.7803vw, 24px);
	--mt15_30: clamp(15px, 0.5044rem + 2.6549vw, 30px);
	--mt20_40: clamp(20px, -6.8671rem + 11.5607vw, 40px);
	--mt30_60: clamp(30px, -10.3006rem + 17.3410vw, 60px);
	--mt40_80: clamp(40px, -13.7341rem + 23.1214vw, 80px);
}


img{
	vertical-align: bottom;
	object-fit: contain;
}

a{
	color: var(--color-link);
}
/* ------------------------------------------------------------
	レイアウト
------------------------------------------------------------ */

.w940 {
	width: calc(100% - 16px);
	padding-inline: 0;
}

.section {
	margin-top: 4rem;
	margin-top: var(--mt30_60);
}

.section + .section {
	margin-top: 6rem;
	margin-top: var(--mt30_60);
}

.shadow_wrap.bg_gray + .section {
	margin-top: 0;
}

.shadow_wrap.bg_gray + .section .inner{
	padding-top: 0;
}


/* --- 背景グレー --- */
.bg-gray + .bg-gray {
	margin-top: 0;
}

.section.bg-gray {
    background-color: var(--color-bg-gray);
}

.section.bg-gray .inner {
	padding: 40px 0;
}

.heading-underline + .heading-simple.green {
    margin-top: var(--mt20_40);
	text-align: left;
}

.bg-gray .heading-simple + .left_img_grid_list {
    margin-top: 8px;
}



/* - 追加パーツ
-------------------------------------------------- */

/* --- 改行時のみ左寄せ --- */
p.center {
    display: grid;
    justify-content: center;
    inline-size: fit-content;
    width: 100%;
}

/* --- 改行位置の指定 --- */
.br_block {
	display: inline-block;
}

span.block {
	display: block;
}



/* - コンテンツヘッダーエリア
-------------------------------------------------- */

.shadow_wrap {
    position: relative;
    overflow: hidden;
    /* 擬似要素のの高さの半分 */
    padding-bottom: 4vw;
	padding-bottom: clamp(15px,4vw,50px);
    width: 100%;
}

.head_area {
    position: relative;
    padding-bottom: 20px;
}

.head_area::before {
    content: "";
    width: 160vw;
    height: 8vw;
    height: clamp(30px,8vw,100px);
    border-radius: 50%;
    position: absolute;
    display: block;
    left: 50%;
    top: 100%;
    bottom: 0;
    transform: translateX(-50%);
    box-shadow: inset 0px 0 2vw rgba(0, 120, 83, 0.2);
    box-shadow: inset 0px 0 clamp(1.5rem, 4vw, 2rem) rgb(from var(--main-color) r g b / 20%);
}

.shadow_wrap.bg_gray .head_area::before {
	background-color: var(--color-bg-gray);
}


/* - アイコン付き見出し（h1）
-------------------------------------------------- */
.heading-simple.left_icon{
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
    gap: 0.2em 0.5em;
    margin-top: 24px;
    margin-top: clamp(16px, 3vw, 24px);
	line-height: 1;
	font-size: 2.3rem;
	font-size: var(--font-size-22_24);
}

.heading-simple.left_icon .icon {
	grid-row: 1 / span 2;
	width: 44px;
	height: auto;
}

.heading-simple.left_icon .head_txt {
	font-size: 1.3rem;
	font-size: clamp(1.2rem, 0.3133rem + 1.1561vw, 1.4rem);
}

.heading-simple.left_icon .main_txt {
	grid-column-start: 2;
}

/* - ローカルナビ
-------------------------------------------------- */
.nav_block {
	margin-top: 16px;
}

/* - 画像・テキスト横並びユニット
-------------------------------------------------- */
.left_img_grid_list {
	display: grid;
	grid-template-columns: auto;
	gap: 24px;
	place-content: center;
}

.left_img_grid_list.left {
	place-content: start;
}

.left_img_grid_list.col2 {
	grid-template-columns: repeat(2,auto);
}

.left_img_grid_list .item {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 8px;
}


/* - コンポーネント調整
-------------------------------------------------- */
/* --- 見出し --- */

.heading-underline {
	font-size:  var(--font-size-20_22);
}

.heading-leftline {
	font-size:  var(--font-size-20_22);
}

/* --- ボタンリスト --- */

.button-list {
	gap: clamp(6px, 0.3345rem + 0.7080vw, 10px);
}

.button-list > div > a {
	padding: 12px clamp(6px, 0.2018rem + 1.0619vw, 12px);;
}

.button-list .wide {
	grid-column: 1 / -1;
}

.btn_group {
    display: flex;
    flex-wrap: wrap;
}
.btn_group.center {
	justify-content: center;
}

.btn_group a {
	color: var(--color-link);
}


/* --- リンクボーダー無し --- */

.btn_group.no_border {
    gap: 30px;
}

.btn_group.no_border .btn-def-simple{
    border: none;
    padding: 0;
	font-weight: var(--font-bolder);
    box-shadow: none;
	background-color: inherit;
}

/* --- 緑　見出し --- */

.heading-simple.green{
	color: var(--main-color);
}

.heading-simple.center {
	width: fit-content;
	margin: 0 auto;
}

.heading-simple.h3 {
	font-size: 1.7rem;
    font-size: var(--font-size-16_18);
}

/* --- 表 緑 --- */


table.basic tbody > tr > td {
	padding: 16px 4px;
}

table.basic.green thead > tr > th,
table.basic.green tfoot > tr > th {
    background-color: var(--color-dark-green);
    color: var(--color-white);
}

table.basic.green tbody > tr > th {
	background-color: var(--color-bg-lime);
}

table span.blue {
	color: #0378B7;
}

table span.red {
	color: #C24D42;
}
table .sm {
	font-size: 0.9em;
}


/* --- リンクエリア --- */

.button-list.guidance {
    grid-template-columns: 1fr 1fr;
}
.button-list > div > a {
    font-size: var(--font-size-13_14);
}



/* ------------------------------------------------------------
	959px以下
------------------------------------------------------------ */
@media screen and (max-width : 959px) {



}


/* ------------------------------------------------------------

	767px以下

------------------------------------------------------------ */
@media screen and (max-width : 767px) {


}

/* ------------------------------------------------------------
	639px以下
------------------------------------------------------------ */
@media screen and (max-width : 639px) {}



/* ------------------------------------------------------------
	479px以下
------------------------------------------------------------ */
@media screen and (max-width : 479px) {

	/* --- リンクエリア --- */
    .button-list {
        --card_size: 174px;
        grid-template-columns: repeat(auto-fit, minmax(var(--card_size), 1fr));
    }

	.unit_list {
		grid-template-columns: auto;
	}

	.unit_list .unit .shadow img {
		max-width: 200px;
	}
}