@charset "UTF-8";
/*
Theme Name: レスポンシブテンプレート
Theme URI: 
Description: サインズ
Version: 1.0
Author: sains
Author URI: 
*/


@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');



/******************
オールクリア
******************/

body,div,pre,p,blockquote,
form,fieldset,input,textarea,select,option,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
table,th,td,embed,object{
	margin: 0;
	padding: 0;
}
button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	font-size: 1.6rem;
}

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

html {
	font-size: 62.5%;
}

body {
	font-family: "Noto Serif JP", serif;
	font-size: 1.6rem;
	font-weight: 500;
	background-color: #f8f7f2;
	color: #42210b;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
	word-break: break-all;
}
img {
	border: none;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
a {
	color: #42210b;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	backface-visibility: hidden;
}
a:hover {
	color: #8e8681;
	backface-visibility: hidden;
}

a img {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	outline: none;
	box-shadow: #000 0 0 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a:hover img {
	opacity: 0.7;
	-moz-opacity: 0.7;
	-webkit-opacity: 0.7;
}

table {
	border-collapse: collapse;
	border-color: #333333;
}
th {
	font-weight:500;
}


@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
}

/******************
メニュー
******************/
.menu-btn {
	position: fixed;
	top: 3em;
	right: 30px;
	font-size: 1.5rem;
	padding: 0 20px;
	z-index: 999999;
}
.menu-btn:before,
.menu-btn:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 11px;
	height: 30px;
	background-repeat: no-repeat;
	background-size: contain;
	transition: .3s all ease;
}
.menu-btn:before {
	left: 0;
	background-image: url(./images/common/menu_btn_l.svg);
}
.menu-btn:after {
	right: 0;
	background-image: url(./images/common/menu_btn_r.svg);
}
.menu-btn .menu-btn-inner {
	width: 70px;
	height: 30px;
	text-align: center;
	position: relative;
}
.menu-btn .menu-btn-inner:before,
.menu-btn .menu-btn-inner:after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #42210b;
	transition: .3s all ease;
}
.menu-btn .menu-btn-inner:before {
	top: 0;
}
.menu-btn .menu-btn-inner:after {
	bottom: 0;
}
.menu-btn .menu-btn-inner span {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
}
.menu-btn .menu-btn-inner span:before {
	font-family: "Roboto", sans-serif;
	content: "Menu";
	color: #42210b;
	font-size: 1.5rem;
	font-weight: 400;
	transition: .3s all ease;
}



.global-nav {
	position: fixed;
	top: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	transition: .3s all ease;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: 9999;
}
.global-nav-inner {
	width: 100%;
	max-width: 520px;
	margin-left: auto;
	background-color: #e7e3d2;
	height: 100%;
	transform: translateX(100%);
	transition: .3s all ease;
	overflow: auto;
}
.global-nav ul {
	padding-top: 120px;
	width: 70%;
	margin: 0 auto;
	padding-bottom: 3em;
	border-bottom: 1px solid #d0cdc0;
}
.global-nav ul li {
	list-style: none;
	margin-bottom: 3rem;
}
.global-nav ul li:last-child {
	margin-bottom: 0;
}
.global-nav ul li a {
	text-decoration: none;
	font-size: 1.9rem;
}
.global-nav .sub-menu {
	width: 70%;
	margin: 2rem auto 6em;
	display: flex;
	justify-content: space-between;
}
.global-nav .sub-menu a {
	text-decoration: none;
	font-size: 1.2rem;
}
.global-nav .sub-menu a span {
	padding-right: 20px;
	position: relative;
}
.global-nav .sub-menu a span:before {
	content: "";
	position: absolute;
	top: 4px;
	right: 0;
	width: 12px;
	height: 12px;
	background: url(./images/common/external_link_icon.svg) center / 100% no-repeat;
}


/*メニューopen*/
.menu-btn.open:before,
.menu-btn.open:after {
	opacity: 0;
}
.menu-btn.open .menu-btn-inner span:before {
	opacity: 0;
}
.menu-btn.open .menu-btn-inner:before {
	transform: rotate(20deg);
	top: 14px;
}
.menu-btn.open .menu-btn-inner:after {
	transform: rotate(-20deg);
	bottom: 15px;
}

.global-nav.open {
	opacity: 1;
	visibility: visible;
}
.global-nav.open .global-nav-inner {
	transform: none;
}


@media screen and (max-width: 600px) {
	.menu-btn {
		top: 2.5em;
		right: 15px;
		padding: 0 15px;
	}
	.menu-btn:before, .menu-btn:after {
		width: 8px;
		height: 25px;
	}
	.menu-btn .menu-btn-inner {
		width: 60px;
		height: 25px;
	}
	.menu-btn.open .menu-btn-inner:before {
		top: 11px;
	}
	.menu-btn.open .menu-btn-inner:after {
		bottom: 13px;
	}
	
	.global-nav-inner {
		max-width: 100%;
	}
	.global-nav ul {
		width: 80%;
	}
	.global-nav .sub-menu {
		width: 80%;
	}
	.global-nav ul li a {
		font-size: 1.6rem;
	}
}


/******************
メインビジュアル
******************/
#main-visual {
	position: relative;
}
#main-visual .section-inner {
	display: flex;
}
#main-visual .nav-container {
	width: 20%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
#main-visual .nav-container .logo {
	width: 100%;
	max-width: clamp(120px, 11vw, 150px);
	margin: 4em 0;
}
#main-visual .nav-container .logo a {
	display: block;
}
#main-visual .nav-container nav {
	margin-bottom: 3em;
}
#main-visual .nav-container nav ul li {
	list-style: none;
	margin-bottom: 1rem;
}
#main-visual .nav-container nav ul li:last-child {
	margin-bottom: 0;
}
#main-visual .nav-container nav ul li a {
	display: inline-block;
	color: #42210b;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: 600;
	position: relative;
	transition: .3s all ease;
}
#main-visual .nav-container nav ul li a:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #42210b;
	transition: .3s all ease;
}
#main-visual .nav-container nav ul li a:hover:before {
	width: 100%;
}

#main-visual .img-container {
	width: 50%;
}
#main-visual .img-container .main-swiper {
	height: 100%;
}
#main-visual .img-container .main-swiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#main-visual .copy-container {
	width: 30%;
	display: flex;
	justify-content: center;
	margin-top: 120px;
	position: relative;
}
#main-visual .copy-container h1 {
	width: 100%;
	writing-mode: vertical-rl;
	font-size: clamp(2.6rem, 2.8vw , 4.4rem);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: .6rem;
	white-space: nowrap;
	margin-right: 12vw;
}
#main-visual .copy-container h1 span {
	display: block;
}
#main-visual .copy-container h1 span:nth-child(2) {
	margin-top: 5rem;
	transition-delay: 0.3s;
}
#main-visual .copy-container h1 span:nth-child(3) {
	margin-top: 14rem;
	transition-delay: 0.6s;
}
#main-visual .copy-container .eng {
	position: absolute;
	right: 30px;
	writing-mode: vertical-rl;
	font-size: 1.4rem;
	letter-spacing: .2rem;
	margin-top: 1em;
}
#main-visual .copy-container .eng.element {
	transform: none;
	opacity: 1;
	visibility: visible;
	transition: none;
}
#main-visual .ec-banner {
	width: 100%;
	max-width: 120px;
	position: absolute;
	right: 0;
	bottom: 1em;
}
#main-visual .ec-banner a {
	display: block;
}

@media screen and (max-width: 960px) {
	#main-visual .section-inner {
		flex-direction: column;
	}
	#main-visual .nav-container {
		width: 100%;
		align-items: stretch;
	}
	#main-visual .nav-container .logo {
		margin: 2em 0 4em 5%;
	}
	#main-visual .nav-container nav {
		display: none;
	}
	#main-visual .img-container {
		width: 100%;
		order: 3;
	}
	#main-visual .img-container .main-swiper {
		height: auto;
	}
	#main-visual .img-container .main-swiper img {
		height: auto;
		aspect-ratio: 4/3;
	}
	#main-visual .copy-container {
		width: auto;
		display: block;
		margin-top: 0;
		margin-left: 5%;
		margin-bottom: 3em;
	}
	#main-visual .copy-container h1 {
		writing-mode: horizontal-tb;
		margin-right: 0;
		margin-bottom: 1rem;
	}
	#main-visual .copy-container h1 span {
		display: inline-block;
	}
	#main-visual .copy-container h1 span:nth-child(2),
	#main-visual .copy-container h1 span:nth-child(3) {
		margin-top: 0;
		transition-delay: 0s;
	}
	#main-visual .copy-container .eng {
		position: static;
		writing-mode: horizontal-tb;
		display: inline-block;
		margin-top: 0;
	}
}
@media screen and (max-width: 600px) {
	#main-visual .nav-container .logo {
		max-width: 80px;
		margin: 2em 0 3em 5%;
	}
	#main-visual .copy-container h1 {
		line-height: 2;
		letter-spacing: .3rem;
	}
	#main-visual .copy-container h1 span {
		display: block;
	}
	#main-visual .copy-container h1 span:nth-child(2) {
		transition-delay: .3s;
	}
	#main-visual .copy-container h1 span:nth-child(3) {
		transition-delay: .6s;
	}
	#main-visual .copy-container .eng {
		transition-delay: .6s;
	}
	#main-visual .img-container .main-swiper img {
		aspect-ratio: 1/1;
	}
	#main-visual .ec-banner {
		display: none;
	}
}


/******************
コンテンツ共通
******************/
#contents {
	margin-top: 6em;
}
.common-section {
	width: 90%;
	max-width: 1600px;
	margin: 0 auto 8em;
}
.top-h2 {
	margin-bottom: 2em;
}
.top-h2 h2 {
	font-size: 2.8rem;
	font-weight: 500;
	letter-spacing: .1rem;
	line-height: 1.6;
}
.top-h2 span {
	font-size: 2.6rem;
}
.top-h3 {
	font-size: clamp(2.4rem, 2.8vw , 4rem);
	letter-spacing: .8rem;
	font-weight: 500;
	margin-bottom: 1em;
}

.common-dl {
	width: 100%;
	display: grid;
	grid-template-columns: 100px 1fr;
	align-items: center;
}
.common-dl dt {
	background-color: #eee6de;
	padding: 2rem 0;
	height: calc(100% - 4rem);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.common-dl dd {
	padding: 2rem 2rem;
	height: calc(100% - 4rem);
	display: flex;
	align-items: center;
	position: relative;
}
.common-dl dt:before,
.common-dl dd:before {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #42210b;
	position: absolute;
	left: 0;
	bottom: 0;
}
.common-dl dt:last-of-type:before,
.common-dl dd:last-of-type:before {
  content: none;
}
.common-link a {
	text-decoration: none;
	display: block;
	background-color: #fff;
	padding: 1em 0;
	border: 1px solid #42210b;
	border-radius: 9999999px;
	text-align: center;
	transition: .3s all ease;
}
.common-link a:hover {
	color: #fff;
	background-color: #42210b;
}

@media screen and (max-width: 1024px) {
	.top-h2 {
		margin-bottom: 1em;
	}
	.top-h2 h2 {
		font-size: 2.2rem;
	}
	.top-h2 span {
		font-size: 2rem;
	}
	.top-h3 {
		letter-spacing: .5rem;
	}
}
@media screen and (max-width: 768px) {
	.top-h2 h2 {
		font-size: 1.8rem;
	}
	.top-h2 span {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 600px) {
	.common-section {
		margin: 0 auto 6em;
	}
	.common-dl {
		display: flex;
		flex-direction: column;
	}
	.common-dl dt {
		padding: 1rem 0;
		width: 100%;
	}
	.common-dl dt:before, .common-dl dd:before {
		display: none;
	}
	.common-dl dd {
		padding: 1rem 0 3rem;
	}
}

/******************
オーガニックフェスタ
******************/
#top-award {
	text-align: center;
	margin-bottom: 6em;
}
.top-award-inner {
	max-width: 530px;
	margin: 0 auto;
	position: relative;
	padding: 0 35px;
}
.top-award-inner:before,
.top-award-inner:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 35px;
	height: 60px;
}
.top-award-inner:before {
	left: 0;
	background: url(./images/top/award_l.svg) center / 100% no-repeat;
}
.top-award-inner:after {
	right: 0;
	background: url(./images/top/award_r.svg) center / 100% no-repeat;
}
#top-award .award-label {
	width: 100%;
	max-width: 130px;
	margin: 0 auto 20px;
}
#top-award p {
	display: inline-block;
	font-size: 2.6rem;
	padding-bottom: 10px;
}
#top-award p span {
	margin-right: 1rem;
}

@media screen and (max-width: 1024px) {
	.top-award-inner {
		max-width: 380px;
	}
	.top-award-inner:before, .top-award-inner:after {
		width: 25px;
		height: 45px;
	}
	#top-award .award-label {
		max-width: 100px;
	}
	#top-award p {
		font-size: 2.1rem;
	}
}
@media screen and (max-width: 470px) {
	.top-award-inner {
		padding: 0;
	}
	.top-award-inner:before, .top-award-inner:after {
		display: none;
	}
	#top-award .award-label {
		max-width: 80px;
		padding: 0 80px;
		position: relative;
	}
	#top-award .award-label:before,
	#top-award .award-label:after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		width: 20px;
		height: 35px;
	}
	#top-award .award-label:before {
		left: 0;
		background: url(./images/top/award_l.svg) center / 100% no-repeat;
	}
	#top-award .award-label:after {
		right: 0;
		background: url(./images/top/award_r.svg) center / 100% no-repeat;
	}
	#top-award p {
		font-size: 1.8rem;
	}
}

/******************
産地について
******************/
.top-about-upper {
	display: flex;
	gap: 5em;
}
.top-about-upper .txt-box {
	width: calc(45% - 1.33em);
}
.top-about-upper .txt-box .top-h2 {
	margin-left: 10%;
}
.top-about-upper .txt-box .top-h3 {
	margin-left: 10%;
}
.top-about-upper .txt-box p {
	letter-spacing: .1rem;
	line-height: 2.5;
	width: 80%;
	max-width: 470px;
	margin: 0 auto 8em;
}
.top-about-upper .img-01-02 {
	width: calc(20% - 1.66em);
	display: flex;
	align-items: center;
}
.top-about-upper .img-01 {
	display: flex;
	align-items: center;
}
.top-about-upper .img-01 img {
	aspect-ratio: 9/16;
	width: 100%;
	object-fit: cover;
}
.top-about-upper .img-02 {
	display: none;
}
.top-about-upper .img-03-04 {
	width: calc(35% - 1.33em);
	display: flex;
	flex-direction: column;
	gap: 5em;
}
.top-about-upper .img-03 img {
	aspect-ratio: 1/1;
	object-fit: cover;
}
.top-about-upper .img-04 {
	width: 50%;
}
.top-about-lower {
	display: flex;
	gap: 5em;
}
.top-about-lower .img-05 {
	margin-left: 10%;
	width: 25%;
}
.top-about-lower .img-05 img {
	width: 100%;
}
.top-about-lower .img-06 {
	width: 65%;
	text-align: left;
	position: relative;
}
.top-about-lower .img-06 img {
	width: 100%;
}
.top-about-lower .img-06 .inner-img {
	width: 52%;
	position: absolute;
	top: calc(24.5% - 35px);
	left: 5%;
	border-bottom: 1px solid;
}
.top-about-lower .img-06 .inner-img:before {
	content: "";
	position: absolute;
	bottom: -4px;
	right: -4px;
	width: 8px;
	height: 8px;
	background: #42210b;
	border-radius: 100%;
}
.top-about-lower .img-06 .inner-img img {
	width: 65%;
}
.top-about-lower .img-06 .inner-img span {
	width: 100%;
	font-size: 14px;
	height: 35px;
	letter-spacing: .1rem;
	display: flex;
	align-items: center;
}

@media screen and (max-width: 1024px) {
	.top-about-upper .txt-box .top-h2,
	.top-about-upper .txt-box .top-h3 {
		margin-left: 0;
	}
	.top-about-upper .txt-box p {
		width: 100%;
		max-width: 100%;
	}
}
@media screen and (max-width: 960px) {
	.top-about-upper {
		gap: 0;
		flex-direction: column;
	}
	.top-about-upper .img-01-02 {
		width: 100%;
		order: 3;
		gap: 10em;
		align-items: stretch;
	}
	.top-about-upper .img-01 {
		width: 55%;
	}
	.top-about-upper .img-01 img {
		aspect-ratio: 1/1;
	}
	.top-about-upper .img-02 {
		display: block;
		width: 40%;
		margin-top: 2.5em;
		margin-right: 5%;
	}
	.top-about-upper .txt-box {
		width: 80%;
		margin: 0 auto;
		order: 2;
	}
	.top-about-upper .txt-box .top-h3 br {
		display: none;
	}
	.top-about-upper .txt-box p {
		margin: 0 auto 7em;
		width: 100%;
	}
	.top-about-upper .img-03-04 {
		width: 100%;
		margin: 0 auto 2.5em;
		flex-direction: row;
		align-items: flex-end;
		gap: 10em;
	}
	.top-about-upper .img-03-04 .img-03 {
		margin-left: 5%;
		padding-bottom: 7em;
		width: 65%;
	}
	.top-about-upper .img-03 img {
		aspect-ratio: 3/2;
	}
	.top-about-upper .img-04 {
		width: 30%;
	}
	.top-about-lower {
		flex-direction: column;
		gap: 0;
	}
	.top-about-lower .img-05 {
		display: none;
	}
	.top-about-lower .img-06 {
		width: 95%;
		margin-left: 5%;
		margin-top: 2.5em;
	}
	.top-about-lower .img-06 .inner-img {
		width: 57%;
		left: 0;
	}
	.top-about-lower .img-06 .inner-img img {
		width: 59%;
	}
}
@media screen and (max-width: 768px) {
	.top-about-upper .img-01-02 {
		gap: 5em;
	}
	.top-about-upper .txt-box {
		width: 90%;
	}
	.top-about-upper .img-03-04 {
		margin: 0 auto;
		gap: 5em;
	}
}
@media screen and (max-width: 600px) {
	#top-about {
		margin-bottom: 6em;
	}
	.top-about-upper .img-01-02 {
		gap: 3em;
		flex-direction: column;
	}
	.top-about-upper .img-01 {
		width: 55%;
		margin-left: 5%;
		order: 2;
	}
	.top-about-upper .img-02 {
		width: 45%;
		margin-top: 0;
		margin-right: 0;
		margin-left: 50%;
	}
	.top-about-upper .img-03-04 {
		gap: 3em;
		flex-direction: column;
		align-items: stretch;
	}
	.top-about-upper .img-03-04 .img-03 {
		margin-left: 10%;
		padding-bottom: 0;
		width: 70%;
	}
	.top-about-upper .img-04 {
		margin-left: 70%;
	}
	.top-about-upper .img-04 img {
		aspect-ratio: 1/1;
		width: 100%;
		object-fit: cover;
	}
	.top-about-upper .txt-box .top-h3 br {
		display: block;
	}
	.top-about-upper .txt-box p {
		margin: 0 auto 3em;
	}
}

/******************
サンロードの特徴
******************/
#top-features {
	max-width: 820px;
}
.top-features-table {
	
}
#top-features .top-features-table {
	max-width: 740px;
	margin: 0 auto;
}
#top-features .top-features-table .common-dl {
	grid-template-rows: repeat(4, 1fr);
	margin-top: 4rem;
}

/******************
商品について
******************/
#top-lineup .lineup-items {
	display: flex;
	flex-wrap: wrap;
	gap: 5em 5%;
}
#top-lineup .lineup-items .item {
	width: 30%;
	text-align: center;
}
#top-lineup .lineup-items .item img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}
#top-lineup .lineup-items .item-name {
	margin: 1.2em 0 .3em;
	font-size: 1.8rem;
	font-weight: 600;
}
#top-lineup .lineup-items .item-price {
	font-weight: 600;
}
#top-lineup .lineup-items .item-price .tax-label {
	font-size: 1.4rem;
}
#top-lineup .lineup-items .item-link a {
	max-width: 280px;
	margin: 1.3em auto 0;
}
.top-lineup-table {
	max-width: 1200px;
	margin: 6em auto 0;
}
.top-lineup-table .common-dl {
	grid-template-rows: repeat(3, 1fr);
}
.top-lineup-table .common-dl dd span {
	font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
	#top-lineup .lineup-items .item {
		width: 47.5%;
	}
}
@media screen and (max-width: 600px) {
	#top-lineup .lineup-items {
		gap: 3em 5%;
	}
	#top-lineup .lineup-items .item {
		text-align: left;
	}
	#top-lineup .lineup-items .item-name {
		margin: 0.8em 0 .3em;
		font-size: 1.5rem;
	}
	#top-lineup .lineup-items .item-price {
		text-align: right;
	}
	#top-lineup .lineup-items .item-link a {
		padding: .6em 0;
	}
	.top-lineup-table {
		margin: 4em auto 0;
	}
}

/******************
生産者の想い
******************/
#top-passion {
	background: url(./images/top/top_passion_bkg.svg) right top / 20% no-repeat;
	margin-bottom: 8em;
}
.top-passion-inner {
	display: flex;
	align-items: center;
	gap: 7%;
}
.top-passion-inner .img {
	width: 33%;
}
.top-passion-inner .img img {
	
}
.top-passion-inner .txt-box {
	width: 55%;
	margin-right: 5%;
}
.top-passion-inner .txt-box p {
	line-height: 2.5;
}

@media screen and (max-width: 768px) {
	#top-passion {
		background: url(./images/top/top_passion_bkg.svg) right top 20% / 35% no-repeat;
	}
	.top-passion-inner {
		align-items: flex-start;
		gap: 0;
		flex-direction: column;
		width: 90%;
		margin: 0 auto;
	}
	.top-passion-inner .img {
		width: 55%;
		margin: 0 auto 3em;
		margin-bottom: 3em;
	}
	.top-passion-inner .txt-box {
		width: 100%;
		margin-right: 0;
	}
	.top-passion-inner .txt-box .top-h3 br {
		display: none;
	}
}
@media screen and (max-width: 600px) {
	#top-passion {
		background: url(./images/top/top_passion_bkg.svg) right top 20% / 40% no-repeat;
		margin-bottom: 6em;
	}
	.top-passion-inner .img {
		width: 80%;
		margin: 0 0 3em -5%;
	}
	.top-passion-inner .img img {
		aspect-ratio: 8/9;
		object-fit: cover;
		object-position: bottom;
	}
	.top-passion-inner .txt-box .top-h3 br {
		display: block;
	}
}

/******************
お知らせ
******************/
#top-news {
	background-color: #e7e3d2;
}
.top-news-inner {
	width: 90%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 8em 0;
}
.top-news-inner .top-h2 {
	text-align: center;
}
.news-container {
	max-width: 900px;
	margin: 0 auto;
}
.news-container li {
	list-style: none;
	display: flex;
	gap: 3rem;
	border-bottom: 1px solid #42210b;
	padding: 1.2em 0;
}
.news-container li .news-date {
	white-space: nowrap;
}
.news-container li .news-title {
	
}
.news-container li .news-title a {
	text-decoration: none;
}
.top-news-inner .news-link a {
	max-width: 320px;
	margin: 4em auto 0;
}

@media screen and (max-width: 600px) {
	.top-news-inner {
		padding: 6em 0;
	}
	
	.news-container li {
		gap: 0;
		flex-direction: column;
	}
	.news-container li .news-title {
		width: 95%;
		margin: 0 auto;
	}
	.top-news-inner .news-link a {
		margin: 3em auto 0;
	}
}

/******************
お問い合わせ
******************/
#top-contact {
	background-color: rgba(152, 114, 67, 0.65);
	color: #fff;
}
.top-contact-inner {
	width: 90%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 8em 0;
}
.top-contact-inner .top-h2 {
	text-align: center;
}
.top-contact-inner .txt-box {
	text-align: center;
}
.top-contact-inner .txt-box p {
	letter-spacing: .1rem;
	line-height: 2;
}
.top-contact-inner .txt-box p br {
	display: none;
}
.top-contact-link a {
	display: block;
	background-color: #fff;
	text-align: center;
	padding: 1.5em 0;
	max-width: 540px;
	margin: 3em auto 0;
	text-decoration: none;
	color: #42210b;
	letter-spacing: .1rem;
	font-weight: 600;
	transition: .3s all ease;
}
.top-contact-link a:hover {
	background-color: #42210b;
	color: #fff;
}
.top-contact-link a span {
	padding-left: 40px;
	position: relative;
}
.top-contact-link a span:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	width: 25px;
	height: 20px;
	background: url(./images/common/mail_icon.svg) center / 100% no-repeat;
	transition: .3s all ease;
}
.top-contact-link a:hover span:before {
	filter: brightness(0) invert(1);
}
@media screen and (max-width: 640px) {
	.top-contact-inner .txt-box p br {
		display: block;
	}
	.top-contact-inner .txt-box p br.br-370 {
		display: none;
	}
}
@media screen and (max-width: 600px) {
	.top-contact-inner {
		padding: 6em 0;
	}
}
@media screen and (max-width: 370px) {
	.top-contact-inner .txt-box p br.br-370 {
		display: block;
	}
}
@media screen and (max-width: 340px) {
	.top-contact-link a {
		font-size: 1.3rem;
	}
	.top-contact-link a span {
		padding-left: 30px;
	}
	.top-contact-link a span:before {
		width: 20px;
		height: 15px;
	}
}

/******************
マップ
******************/
#top-map {
	background-color: rgba(152, 114, 67, 0.65);
}
#top-map .notes {
	color: #fff;
	width: calc(90% - 1.8rem);
	max-width: 1600px;
	margin: 0 auto 2rem;
	letter-spacing: .1rem;
	position: relative;
	padding-left: 1.8rem;
	line-height: 1.5;
}
#top-map .notes:before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
#top-map iframe {
	margin: 0 !important;
	padding: 0 !important;
	display: block;
}

/******************
フッター
******************/
.footer {
	color: #fff;
	background-color: #1C1C1C;
	padding: 3em 0 1em;
	position: relative;
}
.footer .logo {
	width: 90%;
	max-width: 90px;
	margin: 0 auto 3em;
}
.footer .logo a {
	display: block;
}

.footer-lower {
	width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	color: #a1a1a1;
	font-size: 1.2rem;
}
.footer-lower .privacy-policy a {
	text-decoration: none;
	color: #a1a1a1;
}
.footer-lower .copyright {
	word-break: normal;
}

.page-top {
	position: absolute;
	top: 2rem;
	right: 5%;
}
.page-top a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	font-size: 1.4rem;
}

@media screen and (max-width: 600px) {
	.footer .logo {
		max-width: 70px;
	}
	.footer-lower {
		flex-direction: column;
	}
	.footer-lower .privacy-policy {
		margin-bottom: 1rem;
	}
	.footer-lower .copyright {
		font-size: 1.1rem;
	}
	.page-top a {
		font-size: 1.2rem;
	}
}

/******************
プリントレイアウト
******************/

@media print{

body{
	width:1600px;
}

#wrapperTop,#wrapper{
	padding-top:0;
	overflow:visible !important;
}

#wrapperTop #header, #wrapper #header{
	position: relative;
}

}

@page{
	margin: 16mm 10mm;
}

@-moz-document url-prefix(){
@page{
	margin: auto;
}
}

@media screen and (-webkit-min-device-pixel-ratio:0){
@page{
	margin: auto;
}
}

@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}