* 共通 */
* {
	box-sizing: border-box;
	font-family: 'Noto Serif JP', serif;
}

html {
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
}

p {
	margin-bottom: 40px;
	line-height: 1.8;
}

img {
	max-width: 100%;
	height: auto;
}

/* container */
.container {
	margin: 0 auto;
	padding: 0px 20px;
	max-width: 800px;
	line-height: 1.6;
}

/* セクション全体の背景色（全体適用用） */
.container.container--large {
	background-color: transparent;
	/* セクションの背景色を透明に */
	padding: 0;
	/* 外側の余白を削除 */
}

.about {
	padding: 60px 0px 20px;
	text-align: center;
}

.about .heading__01 {
	font-size: 2rem;
	font-weight: bold;
	color: #333;
}

.about__content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.about__text {
	flex: 1;
	min-width: 300px;
	text-align: left;
	order: 1;
}

.about__text p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #555;
	margin: 15px;
	margin-bottom: 20px;
	text-align: center;
	white-space: normal;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.about__image {
	flex: 1;
	order: 2;
}

.about__image img {
	flex: 0 0 40%;
	max-width: 300px;
	min-width: 200px;
	height: auto;
	border-radius: 8px;
}

.about__button {
	text-align: center;
	margin-top: 0px;
	margin-bottom: 30px;
}

.about__button .btn {
	display: inline-block;
	padding: 15px 25px;
	background-color: #4caf50;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.about__button .btn:hover {
	background-color: #388e3c;
}

/* ニュースセクション */
.news {
	padding: 60px 0 0 20px;
	text-align: center;
}

.news .heading__01 {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	margin-bottom: 30px;
}

.news__slider {
    overflow: hidden;
    position: relative;
    max-width: 100%; /* 全体の幅を調整 */
    margin: 0 auto; /* 中央揃え */
}

.news__slides {
    display: flex;
    gap: 20px; /* カード間のスペース */
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    overflow-x: auto; /* 横スクロールを有効に */
    scrollbar-width: none; /* Firefox用：スクロールバーを非表示 */
}

.news__slides::-webkit-scrollbar {
    display: none; /* Chrome/Safari用：スクロールバーを非表示 */
}

.news__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.news__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sus__button {
    margin-top: 40px; /* ボタンの位置を調整 */
    text-align: center;
	margin-bottom: 60px;
}

/* ニュースカード */
.news__card {
	flex: 0 0 250px;
	margin: 0 10px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news__card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* カード画像 */
.news__image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

/* ニュースカードの内容 */
.news__date {
	font-size: 14px;
	color: #888;
	margin: 15px 0;
}

.news__title {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	padding: 0 10px;
	line-height: 1.4;
}

/* 「View More」ボタン */
.news__view-more {
	text-align: center;
	margin: 25px;
}

.news__view-more .btn {
	display: inline-block;
	padding: 15px 25px;
	background-color: #4caf50;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.news__view-more .btn:hover {
	background-color: #388e3c;
	/* 濃い緑に変更 */
}

/* レスポンシブ対応 */

/* 中画面 */
@media screen and (min-width: 768px) {
	.news__view-more {
		margin-top: 40px;
		/* 中画面用の調整 */
	}
}

/* 大画面 */
@media screen and (min-width: 1024px) {
	.news__slides {
		gap: 20px;
	}

	.news__view-more {
		margin-top: 50px;
		/* 大画面用の調整 */
	}
}

.sus {
	padding: 0px 0px 60px;
	text-align: center;
}

.sus .heading__01 {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	margin-bottom: 30px;
}

.sus__content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
	/* 要素間のスペース */
}

.sus__text {
	flex: 1;
	min-width: 300px;
	text-align: center;
	order: 1;
	/* デフォルトの順序 */
}

.sus__text p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #555;
	margin: 15px;
	margin-bottom: 20px;
	white-space: normal;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.sus__image {
	flex: 1;
	order: 2;
	/* デフォルトの順序 */
	max-width: 300px;
}

.sus__image img {
	flex: 0 0 40%;
	/* 横幅を全体の40%に固定 */
	max-width: 300px;
	min-width: 200px;
	height: auto;
	border-radius: 8px;
	/* 画像の角を丸める */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	/* 影を追加 */
}

.sus__button {
	order: 3;
	/* デフォルトの順序 */
	text-align: center;
}

.__button .btn {
	display: inline-block;
	padding: 15px 25px;
	background-color: #4caf50;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.sus__button .btn:hover {
	background-color: #388e3c;
}

/* スマホサイズで順序を変更 */
@media (max-width: 768px) {
	.sus__content {
		flex-direction: column;
	}

	.sus__text {
		order: 1;
	}

	.sus__image {
		order: 2;
	}

	.sus__button {
		order: 3;
	}
}

/* メッセージセクション */
.message {
	padding: 0px 60px 20px;
	/* 上下の余白を調整 */
	text-align: left;
}

.message .heading__01 {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 15px;
	color: #333;
	text-align: center;
	/* 中央揃え */
}

.message__text p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #555;
	text-align: center;
	/* 中央揃え */
}

.message__content {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

.message__text {
	flex: 1;
	max-width: 45%;
}

.message__text p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #555;
}

.message__list {
	text-align: center;
	flex: 1;
	max-width: 45%;
	margin-top: 20px;
	padding: 20px;
}
/* スマホや小さい画面用のレスポンシブスタイル */
@media screen and (max-width: 768px) {
    .message__text {
        width: 90%; /* テキストの幅を画面の90%に広げる */
        max-width: 600px; /* 最大幅を設定して見やすさを確保 */
        margin: 0 auto; /* 中央揃え */
        text-align: center; /* テキストを中央揃え */
        padding: 10px; /* 適切な余白を追加 */
    }

    .message__content {
        width: 100%; /* コンテンツ全体を幅いっぱいに */
        padding: 0 10px; /* サイドの余白を追加 */
        box-sizing: border-box; /* パディングを含む幅調整 */
    }

    .about__button {
        margin-top: 20px; /* ボタン上部に余白を追加 */
        text-align: center; /* ボタンを中央揃え */
    }

    /* 画像部分を非表示にする */
    .message__list {
        display: none; /* 小画面では非表示 */
    }
}

/* column */
/* カラムアイテムのスタイル（2番目のセクション） */
.column {
	display: flex;
	justify-content: space-between;
	/* 均等配置 */
	gap: 20px;
}

/* カード内のボタンの横揃え */
.column__item {
	display: flex;
	/* フレックスボックスを使用 */
	flex-direction: column;
	/* 縦方向に配置 */
	justify-content: space-between;
	/* 上下でスペースを均等に */
	align-items: center;
	/* 横方向を中央揃え */
	text-align: center;
	/* テキストを中央揃え */
	padding: 20px;
	background-color: #fafafa;
	/* 背景色 */
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ボタンのスタイルを調整 */
.column__item .btn {
	display: inline-block;
	margin-top: auto;
	/* ボタンをカードの一番下に揃える */
	width: auto;
	/* 自動幅に設定 */
	min-width: 120px;
	/* ボタンの最小幅を指定 */
	text-align: center;
	/* テキストを中央揃え */
	white-space: nowrap;
	/* テキストを改行させない */
	padding: 10px 20px;
	/* ボタン内の余白を調整 */
	font-size: 1rem;
	/* フォントサイズを調整 */
	font-weight: bold;
	/* 太字で目立たせる */
	background-color: #4caf50;
	/* 背景色 */
	color: #fff;
	/* 文字色 */
	border: none;
	border-radius: 4px;
	/* ボタンの角を丸める */
	cursor: pointer;
	transition: background-color 0.3s ease;
}

/* ボタンのホバー効果 */
.column__item .btn:hover {
	background-color: #388e3c;
	/* ホバー時に少し濃い緑色に変更 */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.column__item .btn {
		width: 100%;
		/* スマホではボタンを全幅に */
	}
}

.column__item img {
	max-width: 100%;
	border-radius: 8px;
	/* 画像の角を丸める */
	margin-bottom: 20px;
}

.column__title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}

.column__item p {
	margin-bottom: 20px;
	color: #555;
}

/* heading */
/* 見出しのスタイルを強調 */
.heading__01 {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	color: #3a3a3a;
	margin-bottom: 40px;
	border-bottom: 2px solid #ccc;
	/* 下線を追加 */
	padding-bottom: 10px;
}

/* ボタンスタイル */
.btn {
	display: inline-block;
	background-color: #4caf50;
	/* 緑色のボタン */
	color: #fff;
	padding: 10px 20px;
	font-size: 1rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.btn:hover {
	background-color: #388e3c;
	/* 濃い緑に変化 */
}

/* site-header layout*/
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	width: 100%;
	height: 70px;
	line-height: 1;
	z-index: 10;
}

.site-header .site-logo {
	display: flex;
	align-items: center; /* 上寄せに変更 */
	gap: 15px; /* ロゴと文字の間隔を調整 */
	font-size: 20px;
}

.site-logo__image {
	margin: 0px 0px 0px 5px;
	width: 25px; /* ロゴ画像の幅を文字サイズに近いサイズに調整 */
	height: auto; /* アスペクト比を維持 */
}


@media (min-width:768px) {
	.site-header {
		align-items: center;
		justify-content: space-between;
	}

	.site-header .site-logo {
		display: inline-block;
		width: 200px;
		padding: 0 0 0 10px;
	}
}

.site-header .site-nav {
	width: 100%;
}

@media (min-width:768px) {
	.site-header .site-nav {
		width: auto;
	}
}

.site-header .main-nav {
	display: none;
	padding: 0;
	margin: 0;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
}

@media (min-width:768px) {
	.site-header .main-nav {
		display: block;
		margin: 0;
		border-bottom: none;
		line-height: 0;
	}
}

.site-header .main-nav li {
	list-style: none;
}

.site-header .main-nav__item a {
	display: block;
	padding: 15px 13px;
	border-top: 1px solid #ccc;
	font-size: 13px;
	color: #000;
}

@media (min-width:768px) {
	.site-header .main-nav__item a {
		border-top: none;
	}
}

.site-header .main-nav__item a:hover {
	background-color: #000;
	color: #fff;
}

/* hamburger switch */
.site-header input[type="checkbox"]:checked~.main-nav {
	display: block;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.site-header input[type="checkbox"]:checked~.main-mav {
	flex: 1;
	line-height: 0;
}

@media (min-width:768px) {

	.site-header input[type="checkbox"]:checked~.main-nav,
	.site-header input[type="checkbox"]~.main-nav {
		display: flex;
		flex-direction: row;
	}
}

/* hamburger icon */
.site-header .site-nav__toggle {
	display: none;
}

.site-header .site-nav__toggle-label {
	position: absolute;
	display: block;
	top: 10px;
	right: 10px;
}

.site-header .site-nav__toggle-label span {
	display: block;
	width: 40px;
	height: 39px;
	background-color: #333;
	cursor: pointer;
}

.site-header .site-nav__toggle-label span span {
	display: block;
	overflow: hidden;
	width: 1px;
	height: 1px;
}

.site-header .site-nav__toggle-label span span::before,
.site-header .site-nav__toggle-label span span::after,
.site-header .site-nav__toggle-label span::after {
	position: absolute;
	left: 10px;
	content: "";
	width: 20px;
	height: 3px;
	background-color: #FFF;
}

.site-header .site-nav__toggle-label span span::before {
	top: 10px;
}

.site-header .site-nav__toggle-label span span::after {
	top: 18px;
}

.site-header .site-nav__toggle-label span::after {
	bottom: 10px;
}

@media (min-width:768px) {
	.site-header .site-nav__toggle-label {
		display: none;
	}
}

/* hamburger icon checked */
.site-header input[type="checkbox"]:checked~.site-nav__toggle-label span span::before {
	top: 19px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.site-header input[type="checkbox"]:checked~.site-nav__toggle-label span span::after {
	display: none;
}

.site-header input[type="checkbox"]:checked~.site-nav__toggle-label span::after {
	top: 19px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.site-main {
	margin-top: 60px;
}

/* main-visual */

.main-visual {
	background-image: url(img/main-v.jpeg);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	height: 500px;
	color: #fff;
}

@media (min-width:768px) {
	.main-visual {
		height: 700px;
	}
}

.main-visual .container {
	flex: 1 1 auto;
}

.main-visual .container__inner {
	background-color: rgba(000, 000, 000, 0.5);
	max-width: 650px;
	padding: 20px;
}

.service .column {
	flex-direction: column;
}

.service .column__item {
	flex: 1 1 auto;
}

@media (min-width:768px) {
	.service .column {
		flex-direction: row;
	}

	.service .column__item {
		flex: 1;
		text-align: center;
	}
}

/* 事業紹介セクション */
.feature {
	padding: 60px 20px;
	/* 背景色を他セクションと統一 */
	text-align: center;
}

.feature .heading__01 {
	text-align: center;
	max-width: 800px;
	/* 最大幅を設定 */
	margin: 0 auto;
	/* テキストを中央に揃える */
	word-break: keep-all;
	/* 単語の途中で改行を防ぐ */
	line-height: 1.8;
	/* 行間を適切に設定 */
}

.feature p {
	font-size: 1.3rem;
	/* フォントサイズをやや大きく */
	font-weight: normal;
	/* 通常の太さに設定 */
	line-height: 1.8;
	/* 行間を適切に調整 */
	color: #555;
	/* やや薄めの文字色 */
	text-align: center;
	/* 中央揃え */
	margin-bottom: 40px;
	/* 下部に余白を追加 */
}

.column__item p {
	font-size: 1.5rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 20px;
	text-align: justify;
	/* テキストを整列 */
	overflow: hidden;
	/* はみ出し部分を非表示 */
	text-overflow: ellipsis;
	/* 必要に応じて省略記号 */
	word-wrap: break-word;
	/* 単語を適切に折り返す */
}

/* カラムアイテム（事業ごとのスタイル） */
.feature .column {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	/* カードを中央揃え */
	margin-top: 20px;
	/* 上部に少し余白 */
}

.feature .column__item {
	flex: 1 1 calc(33.333% - 20px);
	/* 幅を自動調整 */
	max-width: 300px;
	/* 最大幅を設定 */
	padding: 20px;
	box-sizing: border-box;
	/* パディングを含めた幅調整 */
	text-align: center;
	word-wrap: break-word;
	/* テキスト折り返し */
}

.feature .column__item:hover {
	transform: translateY(-10px);
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.feature .column__img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 20px;
}

.feature .column__title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}

.feature .column__item p {
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 20px;
}

/* ボタンのスタイル */
.feature .column__item .btn {
	display: inline-block;
	margin-top: auto;
	padding: 10px 20px;
	font-size: 1rem;
	font-weight: bold;
	background-color: #4caf50;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.feature .column__item .btn:hover {
	background-color: #388e3c;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.feature .column__item {
		flex: 1 1 100%;
		/* スマホでは1カラム表示 */
	}

	.feature .heading__01 {
		font-size: 2rem;
		/* フォントサイズを縮小 */
		max-width: 100%;
		/* 幅制限を解除 */
	}

	.feature p {
		font-size: 1.2rem;
		/* 小さい画面でのフォントサイズ */
		line-height: 1.6;
		/* 行間も少し詰める */
		margin-bottom: 20px;
		/* 下部の余白を調整 */
	}
}

/* gallery */
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin-top: 0;
}

@media (min-width:768px) {
	.gallery {
		flex-wrap: nowrap;
	}
}

.gallery__item {
	list-style: none;
	width: 33.333%;
	line-height: 0;
}

.gallery__item img {
	width: 100%;
	height: auto;
}

/* access */

.access__text {
	font-size: 18px;
	line-height: 1.8;
	text-align: center;
	margin-bottom: 20px;
	color: #333;
}

.google-maps {
	position: relative;
	padding-bottom: 60%;
	height: 0;
	overflow: hidden;
}

@media (min-width:768px) {
	.google-maps {
		padding-bottom: 30%;
	}
}

.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

/* コンテナ全体 */
.container-shop {
	max-width: 800px;
	margin: 40px auto;
	padding: 20px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-align: left;
	color: #333;
	font-family: 'Noto Serif JP', serif;
}

/* タイトル */
.container-shop .shop-data dt {
	font-size: 24px;
	font-weight: bold;
	color: #2c3e50;
	margin-bottom: 10px;
	/* タイトル下の余白を小さく */
	text-align: center;
	/* 中央揃え */
}


/* 情報リスト */
.container-shop .shop-data dd dl {
	display: flex;
	flex-direction: column;
	gap: 10px;
	/* 情報同士の間隔を縮小 */
	margin-top: 10px;
	/* タイトルとリストの間隔を小さく */
}

/* 各情報項目 */
.container-shop .shop-data dd dl div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	position: relative;
	/* 下線の調整に必要 */
}

/* 下線のスタイル */
.container-shop .shop-data dd dl div::after {
	content: '';
	position: absolute;
	bottom: 0;
	/* 下部に配置 */
	left: 5%;
	/* 左端から5%に配置 */
	width: 90%;
	/* 下線の幅を調整 */
	height: 1px;
	/* 下線の太さ */
	background-color: #ddd;
	/* 下線の色 */
}

.container-shop .shop-data dd dl dt {
	font-size: 16px;
	font-weight: bold;
	color: #555;
	flex: 1;
	text-align: center;
}

.container-shop .shop-data dd dl dd {
	font-size: 16px;
	color: #333;
	flex: 2;
	text-align: center;
	white-space: nowrap;
	/* 改行を防ぐ */
	text-overflow: ellipsis;
	/* 省略記号を表示 */
}

#access .shop-data dt,
#access .shop-data dd {
    margin: 0;
    padding: 0;
}

/* 地図のスタイル */
.google-maps iframe {
	width: 100%;
	height: 300px;
	border-radius: 8px;
	margin-bottom: 20px;
	/* 地図と情報ボックスの間隔を調整 */
	border: none;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* site-footer */

.site-footer {
	border-top: 1px solid #ccc;
	padding: 20px 0;
}

.copyright {
	text-align: center;
	font-size: 12px;
	margin-bottom: 0;
}

/* go-to-top */

.go-to-top {
	position: fixed;
	z-index: 1;
	font-size: 12px;
	right: 20px;
	bottom: 20px;
}

.go-to-top button {
	display: inline-block;
	padding: 10px;
	background-color: #222;
	border: none;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
}

/* ページ全体の背景色 */
body {
	/* 和紙のような柔らかい生成り色 */
	font-family: 'Noto Serif JP', serif;
	/* 和風を意識したフォント */
	margin: 0;
	padding: 0;
	line-height: 1.8;
	/* 読みやすい行間 */
	color: #333;
	/* 落ち着いた文字色 */
}

/* お問い合わせセクション */
.contact {
	padding: 60px 20px;
	text-align: center;
}

.contact__text {
	font-size: 16px;
	margin-bottom: 20px;
	color: #555;
}

.contact__form {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
	text-align: left;
	align-items: center;
}

.contact__form label {
	text-align: left;
	font-weight: bold;
	color: #333;
}

.contact__form input,
.contact__form textarea {
	width: 80%;
	max-width: 400px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	margin: o auto;
}

.contact__form button {
	width: 30%;
	max-width: 400px;
	background-color: #4caf50;
	color: #fff;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s;
	margin: 0 auto;
	margin-top: 20px;
}


.contact__form button:hover {
	background-color: #1a1a1a;
}

/* フッター部分のスタイル */
footer {
	background-color: #a5c29b;
	/* 自然を感じさせる薄い抹茶色 */
	color: #ffffff;
	/* 白文字でコントラストを確保 */
	padding: 30px 20px;
	/* 上下に余裕を持たせたパディング */
	text-align: center;
	border-top: 4px solid #8b9985;
	/* 和のアクセントとなる濃いライン */
}

/* フッター内のテキストスタイル */
footer address {
	font-size: 15px;
	margin: 0 auto;
	max-width: 800px;
	/* 幅を制限して中央揃え */
}

/* 会社名を目立たせる */
footer address dl dt {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	letter-spacing: 0.1em;
	/* 少し広めの文字間隔で和の雰囲気を演出 */
}

/* その他のテキスト */
footer address dl dd {
	margin-bottom: 8px;
	font-size: 14px;
	margin: 0;
	margin-bottom: 10px;
}

/* SNSリンクを横並びにするスタイル */
footer address dl dd:last-child {
	display: flex;
	/* 横並びに配置 */
	justify-content: center;
	/* 中央揃え */
	align-items: center;
	/* 垂直方向も中央揃え */
	gap: 15px;
	/* 各アイコン間のスペース */
	margin-top: 10px;
	/* 上部の余白 */
}

/* SNSアイコンのスタイル */
footer address dl dd a img {
	width: 24px;
	/* アイコンの幅を適切に設定 */
	height: auto;
	/* 縦横比を維持 */
	transition: transform 0.2s ease;
	/* ホバー時のアニメーション */
}

footer address dl dd a img:hover {
	transform: scale(1.2);
	/* ホバー時に少し拡大 */
}

/* レスポンシブ対応（小さい画面用） */
@media screen and (max-width: 480px) {
	footer address {
		font-size: 13px;
		padding: 20px;
	}
}
/* 訪問済みリンクを通常のリンクと同じ色に設定 */
footer address a {
    color: #ffffff; /* 希望する文字色 */
    text-decoration: none; /* 下線を消す場合 */
}

footer address a:visited {
    color: #ffffff; /* 訪問済みリンクの色 */
    text-decoration: none; /* 下線を消す場合 */
}

/* リンクのホバー時に色を変更する */
footer address a:hover {
    color: #ffffff; /* ホバー時の色 */
    text-decoration: underline; /* ホバー時に下線を追加 */
}
/* 私たちについて（aboutセクション） */
.container .about {
    background-color: #f7f7f7; /* 明るいグレー */
}

/* 事業紹介（featureセクション） */
.feature {
    background-color: #e9f4e9; /* 薄い緑 */
}


/* サステナビリティ（susセクション） */
.sus {
    background-color: #f0f8ff; /* 薄い青 */
}


/* お問い合わせ（contactセクション） */
.contact {
    background-color: #f8f5ec; /* 現在の和紙のような生成り色 */
}
/* container */
.container {
    margin: 0 auto;
    padding: 0px 20px;
    max-width: 800px;
    line-height: 1.6;
}

/* サステナビリティセクション */
.sus {
    padding: 60px 0 60px; /* 上下のパディングを調整 */
    margin-top: 60px; /* セクション全体の上に余白を追加 */
    background-color: #f0f8ff; /* 薄い青 */
    text-align: center;
}

.sus .container {
    margin-top: 0; /* コンテナ内の余白をリセット */
}

.sus .heading__01 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.sus__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sus__text {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.sus__text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin: 15px 0;
}

.sus__image {
    flex: 1;
    max-width: 300px;
}

.sus__image img {
    max-width: 300px;
    min-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sus__button {
    margin-top: 40px;
    text-align: center;
}

.sus__button .btn {
    display: inline-block;
    padding: 15px 25px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sus__button .btn:hover {
    background-color: #388e3c;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .sus__content {
        flex-direction: column;
    }

    .sus__text {
        order: 1;
    }

    .sus__image {
        order: 2;
    }

    .sus__button {
        order: 3;
    }
}
/* ギャラリー全体のリセット */
.gallery {
    margin: 0; /* ul 要素のデフォルトの外側余白をリセット */
    padding: 0; /* ul 要素の内側余白をリセット */
    list-style: none; /* リストスタイルを消す */
}

.about, .feature, .access .heading__01 {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	margin-bottom: 30px;
	margin-top: 70px;
}

