:root {
    /* ベースカラー */
    --color-base: #0B6EB3;
    /* サブカラー */
    --color-sub: #3ead81;
    /* 強調カラー */
    --color-accent: #e60012;
    /* その他 */
    --color-text: #333;
    --color-white: #fff;
    --color-light-gray: #f4f4f4;
    --color-yellow: #fff100;
    --color-lightyellow: #fff9b0;
    --color-lightgreen: #f7f8e9;
    --color-ecochan: #44af35;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    color: var(--color-base);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-sub);
}

h1, h2, h3 {
    margin-bottom: 0.8em;
    font-weight: 700;
}

/* メインの見出しスタイル */
h2 {
    font-size: 2.2em;
/*
    border-left: 8px solid var(--color-base);
*/
    padding-left: 15px;
    margin: 40px 0 20px;
}

h2 {
	position: relative;
	padding-left: 0px;
	color: var(--color-ecochan);

}



/* 中見出しスタイル */
h3 {
    font-size: 1.7em;
    color: #18a881;
    border-bottom: 3px solid #18a881;
    padding-bottom: 5px;
    margin: 30px 0 15px;
}


h4 {
    font-size: 1.2em;
    color: var(--color-text);
    margin: 24px 0 8px;
}

.txtL{
text-align: center;
}

.txtC{
text-align: center;
}

img{
	max-width: 100%;
}

.int{
font-size: 1.4rem;
}

.introduction{
font-size: 1.2rem;
}

.point{
color: var(--color-ecochan);
}

/* Header */
header {
    background-color: var(--color-base);
    color: var(--color-white);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
/*
    position: sticky;
    top: 0;
    z-index: 100;
*/
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-link {
    background-color: var(--color-sub);
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--color-white);
    transition: background-color 0.3s;
    font-size: 0.95em;
    font-weight: 500;
    display: block;
    text-align: center;
    border: 1px solid var(--color-sub);
}

.nav-link:hover, .nav-link.active {
    background-color: #3ead81; /* Lighter shade for hover/active */
    filter: brightness(1.1);
    border-color: var(--color-white);
    color: var(--color-white);
}

/* Main Content */
main {
    padding-bottom: 80px;
}

/* Main Visual */
.main-visual {
    background-color: var(--color-sub);
    color: var(--color-white);
    text-align: center;
    padding: 0;
}

.main-visual h1 {
    font-size: 2.5em;
    margin-bottom: 0;
    line-height: 0;
}

.main-visual h1 img{
	margin: auto;
}

.visual-image-placeholder {
    width: 100%;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 20px;
    border: 3px dashed var(--color-white);
    color: var(--color-white);
}

/* Summary Box (概要) - 強調表示 */
.summary-box {
    background-color: var(--color-lightgreen);
    padding: 25px;
    margin: 30px 0 60px 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}



/* Summary Box2 (事業の目的説明ない背景) - 強調表示 */
.summary-box2 {
    background-color: #E6F7E3;
    padding: 22px;
    margin: 0px 0 60px 0;
    border-radius: 0 0 12px 12px;
}



/* スマホ Summary Box2 (事業の目的説明ない背景) - 強調表示 */
@media only screen and (max-width: 768px) {
.summary-box2 {
    background-color: #E6F7E3;
    padding: 15px;
    margin: 0px 0 60px 0;
    border-radius: 0 0 12px 12px;
}
}




.summary-box h3 {
    color: var(--color-accent);
    font-size: 1.8em;
    margin-top: 0;
    border: none;
    padding-bottom: 0;
}

.summary-details {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.summary-details .schedule{
	font-size: 2rem;
}

.summary-details .schedule .int{
	font-size: 3rem;
}


.detail-item {
    background-color: var(--color-white);
    padding: 15px 20px;
    border-radius: 8px;
    flex-basis: 45%;
    min-width: 250px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.detail-item span {
    display: block;
    font-size: 1rem;
    color: var(--color-text);
}

.detail-item strong {
    font-size: 2rem;
    color: var(--color-base);
}

/* Page Links */
.page-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.page-links li {
    flex: 1 1 200px;
    min-width: 150px;
}

.page-links a {
    display: block;
    background-color: var(--color-sub);
    color: var(--color-white);
    font-size: 1.2rem;
    padding: 15px 10px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.1s;
}

.page-links a:hover {
    background-color: var(--color-base);
}

/* Table Style (補助額) */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.data-table th, .data-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.data-table th {
    background-color: #18a881;
    color: var(--color-white);
    font-weight: bold;
}


.data-table td:last-child {
    font-weight: bold;
    color: var(--color-accent);
    font-size: 1.1em;
}

.data-table .int{
	font-size: 1.4rem;
}





/* Footer */
footer {
    background-color: var(--color-base);
    color: var(--color-white);
    padding: 30px 0 80px;
    text-align: center;
}

.contact-info{
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 1rem;
}

.contact-info h3{
	margin-top: 0;
}

.contact-info p {
    margin: 5px 0;
    color: var(--color-text);
}

.contact-info strong {
    color: var(--color-sub);
    font-size: 1rem;
}

.contact-info .tel{
    font-size: 2rem;
}

.copyright {
    margin-top: 20px;
    padding-top: 10px;
    font-size: 1rem;
}



.arrow {
  position: relative;
  display: inline-block;
  width: 26.6px;
  height: 15.3px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 20px;
  border-radius: 9999px;
  background-color: var(--color-base);
  transform-origin: 50% 2px;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}



.PConly{
		display: block;
	}

.SPonly{
	display: none;
}


main section{
margin: 6rem 0;
}

main section.main-visual{
margin: 0;
}

main section#shop-main{
margin: 0;
}

main section#summary-area{
margin: 0;
}

main section:last-child{
margin: 6rem 0 0;
}





.imgL:after,.imgR:after {
    content: "";
    display: block;
    clear: both
}


.imgL figure,.imgR figure {
    max-width: 34%
}

.imgL figure.wid20,.imgR figure.wid20 {
    max-width: 20%
}

.imgL figure.wid50,.imgR figure.wid50 {
    max-width: 50%
}

.imgL figure.wid55,.imgR figure.wid55 {
    max-width: 55%
}




@media only screen and (max-width: 768px) {
    .imgL figure,.imgR figure {
        max-width: 80%;
        margin: 1rem auto;
        text-align: center
    }

.imgL figure.wid20,.imgR figure.wid20 {
    max-width: 80%
}

.imgL figure.wid50,.imgR figure.wid50 {
    max-width: 100%;
    margin: 0;
}

.imgL figure.wid55,.imgR figure.wid55 {
    max-width: 100%;
    margin: 0;
}

}

.imgR figure {
    float: right;
    margin: 0rem 0px 0.5rem 80px;
}

.imgR figure.wid50 {
    margin: 0rem 0px 0.5rem 10px;
}

.imgR figure.wid55 {
    margin: 0rem 0px 0.5rem 10px;
}


@media only screen and (max-width: 768px) {
    .imgR figure {
        float:none;
        margin: 1rem auto
    }

.imgR figure.wid50 {
    margin: 0;
}

.imgR figure.wid55 {
    margin: 0;
}


}

.imgL figure {
    float: left;
    margin: 0em 80px 1em 0
}

@media only screen and (max-width: 768px) {
    .imgL figure {
        float:none;
        margin: 1rem auto
    }
}


.contact-info .citizen{
margin-bottom: 20px;
}

.contact-info .shop{
margin-bottom: 10px;
}

.contact-info .notice{
color: #f00;
text-indent: -1em;
padding-left: 1em;
}











/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 10px;
        align-items: unset;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .nav-link {
        flex: 1;
    }

    .main-visual {
        padding: 10px 0 0;
    }

	.main-visual .container{
	width: 100%;
	padding: 0;
	}

	.container{
	width: 100%;
	}

    h2 {
        font-size: 1.8em;
        margin: 30px 0 15px;
    }

    h3 {
        font-size: 1.3em;
    }

    .summary-details {
        flex-direction: column;
        gap: 10px;
    }

    .detail-item {
        flex-basis: 100%;
        min-width: unset;
    }

    .data-table th, .data-table td {
        padding: 8px;
        font-size: 0.9em;
    }

    .page-links {
        flex-direction: row;
        gap: 10px;
    }

    .page-links li{
		flex: 1 1 0;
    }

.page-links a {
    font-size: 1rem;
}

	.PConly{
		display: none;
	}
	.SPonly{
		display: block;
	}

	.summary-box h3{
		font-size: 1.6rem;
	}
	
	.summary-details .schedule{
		font-size: 1.2rem;
	}
	.summary-details .schedule .int{
		font-size: 2rem;
	}
	.emphasis-text{
		font-size: 1.2rem;
	}
	.login-section {
		flex-direction: column;
	}

h2 {
	padding-left: 0px;
}

h2::before{
	width: 36px;
	height: 36px;
}

.contact-info .notice{
text-align: left;
}

.normal-table th {
    width: 33%;
}

}








/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 950px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

@media only screen and (max-width: 950px) {
    img { max-width: 100%; }
}
}








/* 文字系　 */



/* 文字 */

.text_16 {
  color: #000000;
  font-size: clamp(8px, 2.8vw, 16px);
  line-height:150%;
}
.text_18 {
  color: #000000;
  font-size: clamp(10px, 2.8vw, 18px);
  line-height:150%;
}
.text_20 {
  color: #000000;
  font-size: clamp(12px, 2.8vw, 20px);
  line-height:150%;
}
.text_22 {
  color: #000000;
  font-size: clamp(14px, 2.8vw, 22px);
  line-height:150%;
}
.text_24 {
  color: #000000;
  font-size: clamp(16px, 2.8vw, 24px);
  line-height:150%;
}
.text_26 {
  color: #000000;
  font-size: clamp(18px, 2.8vw, 26px);
  line-height:150%;
}
.text_28 {
  color: #000000;
  font-size: clamp(20px, 2.8vw, 28px);
  line-height:150%;
}
.text_30 {
  color: #000000;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height:150%;
}
.text_32 {
  color: #000000;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height:150%;
}
.text_34 {
  color: #000000;
  font-size: clamp(26px, 2.8vw, 34px);
  line-height:150%;
}
.text_36 {
  color: #000000;
  font-size: clamp(28px, 2.8vw, 36px);
  line-height:150%;
}

.text_38 {
  color: #000000;
  font-size: clamp(30px, 2.8vw, 38px);
  line-height:150%;
}





.text_22_b {
  color: #333333;
  font-size: clamp(14px, 2.8vw, 22px);
  font-weight:bold;
  line-height:150%;
}
.text_24_b {
  color: #333333;
  font-size: clamp(16px, 2.8vw, 24px);
  font-weight:bold;
  line-height:150%;
}
.text_26_b {
  color: #333333;
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight:bold;
  line-height:150%;
}
.text_28_b {
  color: #333333;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight:bold;
  line-height:150%;
}
.text_30_b {
  color: #333333;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight:bold;
  line-height:150%;
}
.text_32_b {
  color: #333333;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight:bold;
  line-height:150%;
}

.text_34_b {
  color: #333333;
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight:bold;
  line-height:150%;
}

.text_36_b {
  color: #333333;
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight:bold;
  line-height:150%;
}

.text_42_b {
  color: #333333;
  font-size: clamp(34px, 2.8vw, 42px);
  font-weight:bold;
  line-height:150%;
}





/* 上部文字色赤系 */
.text_red_b {
  color: #CC0000;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight:bold;
  line-height:130%;
}

/* 上部の文字色青系 */
.text_blue_b {
  color: #006699;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight:bold;
  line-height:130%;
}



.text_24_answer {
  color: #000000;
  font-size: clamp(18px, 2.8vw, 24px);
  line-height:140%;
  text-shadow: 2px 2px 2px #ffffff;
}





/* 34文字色青系 */
.text_34_b_blue {
  color: #006699;
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight:bold;
  line-height:140%;
}

/* 42文字色青系 */
.text_42_b_blue {
  color: #006699;
  font-size: clamp(34px, 3.2vw, 42px);
  font-weight:bold;
  line-height:130%;
}









/* ▼文字色緑系 別▼ */

.text_30_b_green {
  color: #44af35;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight:bold;
  line-height:140%;
}

.text_32_b_green {
  color: #44af35;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight:bold;
  line-height:140%;
}

/* ▲文字色緑系 別▲ */





/* 34文字色緑系 */
.text_34_b_green {
  color: #18a881;
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight:bold;
  line-height:140%;
}

/* 40文字色緑系 */
.text_40_b_green {
  color: #18a881;
  font-size: clamp(28px, 3.0vw, 40px);
  font-weight:bold;
  line-height:130%;
}

/* 42文字色緑系 */
.text_42_b_green {
  color: #18a881;
  font-size: clamp(32px, 3.2vw, 42px);
  font-weight:bold;
  line-height:130%;
}

/* 48文字色緑系 */
.text_48_b_green {
  color: #18a881;
  font-size: clamp(38px, 4.0vw, 48px);
  font-weight:bold;
  line-height:130%;
}





/* 30文字色ピンク系 */
.text_30_b_pink {
  color: #FF6E93;
  font-size: clamp(20px, 3.2vw, 30px);
  font-weight:bold;
  line-height:140%;
}

/* 34文字色ピンク系 */
.text_34_b_pink {
  color: #FF6E93;
  font-size: clamp(23px, 3.2vw, 34px);
  font-weight:bold;
  line-height:140%;
}

/* 38文字色ピンク系 */
.text_38_b_pink {
  color: #FF6E93;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight:bold;
  line-height:130%;
}

/* 42文字色ピンク系 */
.text_42_b_pink {
  color: #FF6E93;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight:bold;
  line-height:130%;
}





/* キャンペーン対象商品部分 */

.box26 {
    position: relative;
    margin: 2em 0;
    padding: 1em 1.5em;
    border: solid 3px #18A881;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #f7f8e9;
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -18px;
    left: 18px;
    padding: 10px 15px;
    line-height: 1;
    font-size: 24px;
    background: #18A881;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px;
}
.box26 p {
    margin: 0; 
    padding: 0;
}








/* ヘッダータイトル */
.head_title {
display:block;padding-left:0.3em;background-color:#009151; padding:10px 10px 10px 10px;text-align:left;font-size: 10px;text-align:center;color:#ffffff;font-weight:bold;line-height:120%;
}

@media only screen and (max-width: 950px) {
.head_title {
display:block;padding-left:0.1em;background-color:#009151; padding:10px 10px 10px 10px;text-align:left;font-size: 6px;text-align:center;color:#ffffff;font-weight:bold;line-height:120%;
}
}




.container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


  .column22 {
    width: calc(50% - 16.18px / 2);
}

@media only screen and (max-width: 950px) {
  .column22 {
    width: calc(100% - 16.18px / 2);
}
}



a.btn_18 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	width: 60%;
	margin: auto;
	padding: 1rem 3rem;
	font-weight: bold;
	border-radius: 10px;
	color: #44af35;
	border: 2px solid #44af35;
	box-shadow: 5px 5px #44af35;
	transition: 0.2s ease-in-out;
}
a.btn_18:hover {
	box-shadow: none;
	transform: translate(5px, 5px);
	color: #44af35;
}


@media only screen and (max-width: 768px) {

a.btn_18 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	width: 100%;
	margin: auto;
	padding: 1rem 3rem;
	font-weight: bold;
	border-radius: 10px;
	color: #44af35;
	border: 2px solid #44af35;
	box-shadow: 5px 5px #44af35;
	transition: 0.2s ease-in-out;
}
a.btn_18:hover {
	box-shadow: none;
	transform: translate(5px, 5px);
	color: #44af35;
}
}




