@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@100..900&display=swap');

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

html{
	scroll-padding-top: calc((var(--headerHeight, 80px)) + 20px); 
	scroll-behavior: smooth;
}
html.scroll-prevent {
	height: 100%;
	overflow: hidden;
}
body {
	font-family: "Zen Old Mincho", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
	-webkit-text-size-adjust: 100%;
	width: 100%;
	background: #fff;
}
p,th,td,dt,dd,li,span,small,figcaption {
	color: #000;
	font-size: clamp(0.813rem, 0.752rem + 0.3vw, 1rem); /* 16px→13px */
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.08em;
	line-height: 2.125;
	text-align: justify;
	word-break: break-all;
}

/*
================================
　追従バナー
================================
*/
.follow-box {
}
.follow-box a.follow-box-base {
	z-index: 100;
	position: fixed;
	bottom: 90px;
	right: -140px;
	display: block;
	width: 200px;
	background: #A81D1D;
	padding: 18px 20px;
}
.follow-box a.follow-box-base:hover {
	right: 0px;
	background: #A81D1D;
	opacity: 0.9;
	transition: all 0.3s ease 0s;
}
@media screen and (max-width: 960px) {
.follow-box {
	display: none;
}
}

/* Web申込（追従、バーガー） */
.btn-entry a {
	display: block;
	position: relative;
}
.btn-entry a:after {
	content: "";
	position: absolute;
	top: calc(50% - 8px);
	left: 0;
	background: url(../img/common/icon_mail.svg) no-repeat;
	background-size: cover;
	width: 23px;
	height: 16px;
}
.btn-entry a span {
	padding-left: 43px;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0;
	color: #fff;
	display: block;
	transition : .3s;
}
.btn-entry a:hover span {
	opacity: 0.6;
	transition : .3s;
}

/* SP表示 関連 */
.disp-pc {
	display: block;
}
.disp-sp {
	display: none;
}
.disp-tab {
	display: none;
}
@media screen and (max-width: 1080px) {
.disp-pc {
	display: none;
}
.disp-tab {
	display: block;
}
.disp-sp {
	display: none;
}
}
@media screen and (max-width: 430px) {
.disp-pc {
	display: none;
}
.disp-tab {
	display: none;
}
.disp-sp {
	display: block;
}
}

/* PC時、電話番号タップ不可にする　 */
@media (min-width: 667px) {
a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	color: #1B2B40;
}
}


#wrap {
	padding-top: 80px;
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 375px;
	overflow: hidden;
}
article {
	width: 100%;
}
section {
	width: 100%;
}
section .inner {
	position: relative;
	margin: 0 auto;
	width: calc(100% - 5.2vw);
	max-width: 1320px;
}
@media screen and (max-width: 430px) {
#wrap {
	padding-top: 60px;
}
section .inner {
	width: calc(100% - 40px);
}
}

/*
================================
　ヘッダー
================================
*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: rgba(255, 255, 255, 0.8);
	z-index: 1000;
}
.header-inner {
	display: grid;
	grid-template-columns: 18vw auto;
	align-items: center;
	padding: 0 128px 0 2.6vw;
	margin: 0 auto;
	height: 100%;
}
header .logo {
	display: block;
	width: 18vw;
	max-width: 250px;
	transition : .5s;
}
header .logo a {
	width: 100%;
	height: 100%;
}	
header .logo a:hover {
	opacity: 0.6;
	filter: alpha(opacity=60);
	transition : .5s;
}
@media screen and (max-width: 1280px) {
.header-inner {
	padding: 0 100px 0 2.6vw;
}
}
@media screen and (max-width: 960px) {
.header-inner {
	grid-template-columns: 50.76vw auto;
}
header .logo {
	width: 50.76vw;
}
}
@media screen and (max-width: 430px) {
header {
	height: 60px;
}
.header-inner {
	grid-template-columns: 198px auto;
	padding: 0 0 0 20px;
}
header .logo {
	width: 198px;
}
}

.hd-contact {
	display: none;
}
@media screen and (max-width: 960px) {
.hd-contact {
	display: block;
	position:fixed;
	right: 100px;
	top: 0;
	width: 100px;
	height: 80px;
	background: #A81D1D;
}
.hd-contact a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.hd-contact img {
	width: 26px;
}
}
@media screen and (max-width: 680px) {
.hd-contact {
	right: 80px;
	width: 80px;
}
}
@media screen and (max-width: 430px) {
.hd-contact {
	right: 70px;
	width: 70px;
	height: 60px;
}
}

nav {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
nav li a {
	position: relative;
	padding: 0 1.5vw;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
nav li a span {
	font-size: clamp(0.688rem, 0.188rem + 0.83vw, 0.875rem); /*14→11px*/
	font-weight: 600;
	transition : .5s;
}
nav li a:hover span {
	color: #000;
	opacity: 0.6;
	filter: alpha(opacity=60);
	transition : .5s;
}
@media screen and (max-width: 1280px) {
nav li a {
	padding: 0 1vw;
}
}
@media screen and (max-width: 960px) {
nav .fl-end {
	display: none;
}
}

/*
================================
　ナビゲーション
================================
*/
/* ハンバーガーボタン */
.openbtn{
	display: flex;
	align-items: center;
	justify-content: center;
	position:fixed;
	right: 0;
	top: 0;
	cursor: pointer;
	margin: 0 auto;
	width: 124px;
	height: 80px;
	z-index: 100000000;
	background: #fff;
}
.openbtn.active {
	background: #F8F7F5;
}
.openbtn-inner {
	position: relative;
	width: 26px;
	height: 18px;
}
.openbtn span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #373636;
}
.openbtn span:nth-of-type(1) {
	top: 0px;	
}
.openbtn span:nth-of-type(2) {
	top: 8px;
}
.openbtn span:nth-of-type(3) {
	top: 17px;
}
.openbtn.active span:nth-of-type(1) {
	top: 6px;
	left: 0px;
	transform: translateY(2px) rotate(-25deg);
	width: 100%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
	top: 6px;
	left: 0px;
	transform: translateY(2px) rotate(25deg);
	width: 100%;
}
@media screen and (max-width: 1280px) {
.openbtn{
	width: 100px;
	height: 80px;
}
}
@media screen and (max-width: 680px) {
.openbtn{
	width: 80px;
}
}
@media screen and (max-width: 430px) {
.openbtn{
	width: 70px;
	height: 60px;
}
}

#overlay {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 100;
	transition: opacity 0.3s;
}
#overlay.panelactive {
	visibility: visible;
	opacity: 1;
}
#g-nav {
	display: block;
	position:fixed;
	top: 0px;
	right: -120%;
	width: 100%;
	max-width: 360px;
	z-index: 10000000;
	background: #F8F7F5;
}
#g-nav.panelactive {
	right: 0;
	transition-timing-function: ease-out;
	transition-duration: 0.3s;
}

#g-nav-list { /*縦スクロール*/
	position: relative;
	width:100%;
	height: 100dvh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 999; 
}
.g-nav-pagelist {
	padding: 100px 0 60px;
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
}
.g-nav-pagelist .menu01 {
	margin: 0 auto;
	width: calc(100% - 180px);
}
.g-nav-pagelist .menu01 li {
}
.g-nav-pagelist .menu01 li a {
	display: block;
	width: 100%;
	padding: 14px 0;
	transition : .5s;
}
.g-nav-pagelist .menu01 li a:hover {
	opacity: 0.6;
	filter: alpha(opacity=60);
	transition : .5s;
}
.g-nav-pagelist .menu01 li span {
	display: block;
	color: #000;
	font-size: clamp(0.875rem, 0.795rem + 0.4vw, 1.125rem); /*18→14px*/
	font-weight: 900;
}
.g-nav-pagelist .menu01 li small {
	display: block;
	color: #000;
	font-size: clamp(0.625rem, 0.585rem + 0.2vw, 0.75rem); /*12→10px*/
	font-weight: 500;
	font-family: "Saira", sans-serif;
}
@media screen and (max-width: 430px) {
#g-nav {
	max-width: 100%;
	top: 60px;
}
.g-nav-pagelist {
	padding: 20px 0;
}
.g-nav-pagelist .menu01 {
	width: calc(100% - 100px);
}
#overlay {
	top: 60px;
}
}

/*
================================
　フッター
================================
*/

/* お問い合わせ */
.ft-contact {
	padding: 80px 0;
	margin: 50px auto;
	width: calc(100% - 5.2vw);
	background: url(../img/common/bk_contact.jpg) no-repeat 40% center;
	background-size: cover;
}
.ft-contact .cmn-title1 {
	margin: 0 0 20px;
	text-align: center;
}
.ft-contact .cmn-title1 small {
	text-align: center;
}
.ft-contact-text {
	margin: 0 0 60px;
}
.ft-contact-text p {
	text-align: center;
}
@media screen and (max-width: 430px) {
.ft-contact {
	padding: 40px 0;
	margin: 30px auto;
	width: calc(100% - 40px);
}
}


/* フッター */
footer {
	padding: 80px 0 50px;
	background: #3E3D36;
}
footer .inner {
	position: relative;
	margin: 0 auto;
	width: calc(100% - 5.2vw);
	max-width: 1320px;
	text-align: center;
}
.ft-logo a {
	margin: 0 auto 50px;
	display: block;
	width: 219px;
}
.ft-logo a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition-timing-function: ease-out;
	transition-duration: 0.6s;
}
.ft-info {
	margin: 0 auto 50px;
}
.ft-info p {
	text-align: center;
	color: #fff;
}
.ft-info p span {
	padding: 0 20px;
	color: #fff;
}
.ft-nav {
	margin: 0 auto 70px;
	padding: 10px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	display: inline-block;
}
.ft-nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.ft-nav ul li a {
	padding: 10px 20px;
	transition : .5s;
}
.ft-nav ul li a:hover {
	opacity: 0.6;
	filter: alpha(opacity=60);
	transition : .5s;
}
.ft-nav ul li span {
	color: #fff;
	font-size: clamp(0.688rem, 0.627rem + 0.3vw, 0.875rem); /* 14→11px */
}
address p {
	font-size: clamp(0.5rem, 0.409rem + 0.45vw, 0.75rem); /*12→8px*/
	font-family: "Saira", sans-serif;
	font-weight: 500;
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 960px) {
footer .inner {
	width: calc(100% - 10.2vw);
}
}
@media screen and (max-width: 430px) {
footer {
	padding: 60px 0 30px;
}
.ft-logo a {
	margin: 0 auto 40px;
	width: 180px;
}
.ft-info p span {
	display: none;
}
.ft-nav {
	margin: 0 auto 40px;
	padding: 5px 0;
}
.ft-nav ul li a {
	padding: 10px 10px;
}
}




/*
================================
　共通ボタン
================================
*/

/* お問い合わせ（電話・メール） */
.cmn-contact-box {
	margin: 0 auto;
	width: 100%;
	max-width: 600px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 50px;
	align-items: center;
}
.button-tel {
	padding: 5px 0;
	border-right: 0.5px solid #373636;
}
.button-tel a {
	display: flex;
	width: 100%;
	height: 54px;
	align-items: center;
}
.button-tel span {
	position: relative;
	padding-left: 56px;
	display: block;
	font-family: "Saira", sans-serif;
	font-size: clamp(1.125rem, 1.065rem + 0.3vw, 1.313rem); /*21→18px*/
	font-weight: 500;
	line-height: 1;
	color: #373636;
}
.button-tel span:before {
	content: "";
	position: absolute;
	left: 0;
	top: calc(50% - 20px);
	background: url(../img/common/icon_tel.svg);
	background-size: cover;
	width: 38px;
	height: 40px;
}
.button-contact a {
	position: relative;
	display: block;
	width: 100%;
	max-width: 260px;
	background: #B9B4AA;
	border: 1px solid #B9B4AA;
	text-align: center;
	transition : .5s;
}
.button-contact span {
	position: relative;
	font-size: 14px;
	font-weight: 500;
	line-height: 54px;
	color: #fff;
}
.button-contact a:hover {
	background: #fff;
	opacity: 0.6;
	filter: alpha(opacity=60);
	transition : .5s;
}
.button-contact a:hover span {
	color: #000;
}
@media screen and (max-width: 960px) {
.cmn-contact-box {
	grid-template-columns: 1fr;
	row-gap: 20px;
	max-width: 300px;
}
.button-tel {
	border: none;
}
.button-tel a {
	height: 70px;
	border: 1px solid #373636;
	background: #fff;
	justify-content: center;
}
.button-contact a {
	max-width: 100%;
	height: 70px;
}
.button-contact span {
	line-height: 70px;
}
}

/*  */
.cmn-button1 {
	margin: 54px 0 0;
}
.cmn-button1 a {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 200px;
	background: #fff;
	border: 1px solid #B9B4AA;
	text-align: center;
	transition : .5s;
}
.cmn-button1 span {
	position: relative;
	z-index: 10;
	font-size: clamp(0.75rem, 0.71rem + 0.2vw, 0.875rem); /*14→12px*/
	line-height: 46px;
	color: #000;
}
.cmn-button1 small {
	position: relative;
	z-index: 10;
	font-size: clamp(0.75rem, 0.71rem + 0.2vw, 0.875rem); /*14→12px*/
	font-weight: 500;
	font-family: "Saira", sans-serif;
	line-height: 46px;
	color: #000;
}
.cmn-button1 a:hover {
	background: #F8F7F5;
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition : .5s;
}
@media screen and (max-width: 430px) {
.cmn-button1 {
	margin: 40px 0 0;
}
.cmn-button1 a {
	max-width: 150px;
}
.cmn-button1 span {
	line-height: 40px;
}
.cmn-button1 small {
	line-height: 40px;
}
}


/*
================================
　共通タイトル
================================
*/
/* */
.cmn-title1 {
	margin: 0 0 40px;
}
.cmn-title1 span {
	position: relative;
	font-weight: 500;
	font-family: "Saira", sans-serif;
	font-size: clamp(0.875rem, 0.735rem + 0.7vw, 1.313rem); /* 21→14px */
	line-height: 1;
	color: #B9B4AA;
	padding: 0 20px;
}
.cmn-title1 span:before {
	content: "";
	position: absolute;
	top: calc(50% - 10px);
	left: 0;
	width: 1px;
	height: 20px;
	background: #B9B4AA;
	transform:rotate(30deg);
}
.cmn-title1 span:after {
	content: "";
	position: absolute;
	top: calc(50% - 10px);
	right: 0;
	width: 1px;
	height: 20px;
	background: #B9B4AA;
	transform:rotate(30deg);
}

.cmn-title1 small {
	position: relative;
	margin: 10px 0 0;
	display: block;
	font-size: clamp(1rem, 0.76rem + 1.2vw, 1.75rem); /*28→16px*/
	font-weight: 500;
	line-height: 1.8;
	color: #000;
}
@media screen and (max-width: 430px) {
.cmn-title1 {
	margin: 0 0 30px;
}
.cmn-title1 span {
	padding: 0 10px;
}
.cmn-title1 span:before {
	top: calc(50% - 8px);
	height: 16px;
}
.cmn-title1 span:after {
	top: calc(50% - 8px);
	height: 16px;
}
}

/* */
.cmn-title2 {
	margin: 0 0 40px;
}
.cmn-title2 span {
	display: block;
	font-size: clamp(1rem, 0.84rem + 0.8vw, 1.5rem); /*24→16px*/
	font-weight: 600;
	line-height: 1;
	color: #000;
	text-align: center;
}
.cmn-title2 small {
	display: block;
	margin: 40px 0 0;
	font-family: "Saira", sans-serif;
	font-size: clamp(0.625rem, 0.585rem + 0.2vw, 0.75rem); /* 12→10px */
	font-weight: 500;
	line-height: 1;
	color: #000;
	text-align: center;
}
@media screen and (max-width: 430px) {
.cmn-title2 {
	margin: 0 0 30px;
}
.cmn-title2 small {
	margin: 20px 0 0;
}
}

/* */
.cmn-title3 {
	position: relative;
	margin: 0 0 40px;
}
.cmn-title3 span {
	font-weight: 500;
	font-size: clamp(1.125rem, 0.925rem + 1vw, 1.75rem); /* 28→18px */
	line-height: 1;
}
.cmn-title3 small {
	position: absolute;
	bottom: 16px;
	left: 0;
	font-family: "Saira", sans-serif;
	font-size: clamp(1.75rem, 1.51rem + 1.2vw, 2.5rem); /*40→28px*/
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
	color: #F8F7F5;
	z-index: -1;
}
@media screen and (max-width: 430px) {
.cmn-title3 {
	margin: 0 0 30px;
}
}

.cmn-copy1 {
	margin: 0 0 50px;
	text-align: center;
}
.cmn-copy1 span {
	font-size: clamp(1rem, 0.76rem + 1.2vw, 1.75rem); /* 28→16px */
	font-weight: 500;
	line-height: 1.8;
}
@media screen and (max-width: 430px) {
.cmn-copy1 {
	margin: 0 0 30px;
	text-align: left;
}
}

.cmn-name {
	font-family: "Yu Mincho", "YuMincho";
	font-weight: 500;
}

/*
================================
　共通テキスト
================================
*/
.txt_red {
	color: #ff0000;
}
.txt_orange {
	color: #FF8800;
}

/*
================================
　共通テーブル
================================
*/
.cmn-table {
	width: 100%;
}
.cmn-table table {
	width: 100%;
}
.cmn-table tr {
	border-bottom: 2px solid #F8F7F5;
}
.cmn-table th {
	padding: 20px 30px;
	width: 22%;
	background: #fff;
	border-right: 2px solid #F8F7F5;
	vertical-align: middle;
}
.cmn-table td {
	padding: 20px 30px;
	width: auto;
	background: #fff;
}
@media screen and (max-width: 960px) {
.cmn-table th {
	display: block;
	width: 100%;
	background: #B9B4AA;
	color: #fff;
}
.cmn-table td {
	display: block;
	width: 100%;
}
}
@media screen and (max-width: 430px) {
.cmn-table th {
	padding: 10px 20px;
}
.cmn-table td {
	padding: 10px 20px;
}
}


/*
================================
　メインイメージ
================================
*/
.kv {
	margin: 0 0 160px;
	position: relative;
	width: 100%;
}
.kv-inner {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}
.kv-info {
	position: absolute;
	left: 9.3vw;
	z-index: 10;
}
.kv-info span {
	display: block;
	font-family: "Saira", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-size: clamp(1rem, 0.52rem + 2.4vw, 2.5rem); /* 40→16px */
}
.kv-info small {
	display: block;
	font-size: clamp(1.313rem, 1.093rem + 1.1vw, 2rem); /* 32→12px */
	font-weight: 500;
	text-align: center;
}
.kv-inner .swiper-contents {
	position: relative;
	margin: 0 0 0 auto;
	width: 100%;
	max-width: 67.7%;
	height: 100%;
        aspect-ratio: 1300 / 820;
	overflow: hidden;
}
.kv-inner .swiper-contents .swiper-wrapper {
	z-index: 0;
}
.kv-inner .swiper-contents .swiper-slide {
	position: relative;
	width: 100%;
	height: auto;
}
.kv-inner .swiper-contents .swiper-slide img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.kv-inner .swiper-pagination {
	bottom: -30px !important;
	text-align: right;
}

.kv-inner .swiper-pagination-bullet {
	width: 50px;
	height: 5px;
	border-radius: 0;
	background: #DBD6CD;
}
.kv-inner .swiper-pagination-bullet-active {
	background: #000;
}

@media screen and (max-width: 960px) {
.kv {
	margin: 0 0 100px;
}
.kv-inner .swiper-contents {
	max-width: 86%;
/*	max-height: 600px;
	height: calc(100svh - 120px); */
}
.kv-inner .swiper-pagination-bullet {
	width: 30px;
}
}



/* 下層 */
#sub-main {
	position: relative;
	width: 100%;
}
#sub-main .inner {
	border-top: 0.5px solid #B9B4AA;
	max-width: 100%;
}
#sub-main h2 {
	margin: 70px 0 100px;
	text-align: center;
}
#sub-main h2 span {
	font-size: clamp(1.313rem, 1.093rem + 1.1vw, 2rem); /* 32→21px */
	line-height: 1;
}
#sub-main h2 small {
	display: block;
	font-family: "Saira", sans-serif;
	font-weight: 500;
	font-size: clamp(0.875rem, 0.735rem + 0.7vw, 1.313rem); /* 21→14px */
	text-align: center;
}
#sub-main figure {
	margin: 0 0 70px;
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 1820 / 350;
}
#sub-main figure img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pankuzu {
	margin: 30px auto;
	font-family: "Zen Old Mincho", sans-serif;
	font-size: clamp(0.563rem, 0.525rem + 0.19vw, 0.75rem); /*12→9px*/
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.08em;
	line-height: 2.125;
}
.pankuzu span {
	font-size: clamp(0.563rem, 0.525rem + 0.19vw, 0.75rem); /*12→9px*/
}
.pankuzu a {
	transition : .5s;
}
.pankuzu a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition : .5s;
}
@media screen and (max-width: 960px) {
.pankuzu {
	margin: 20px auto;
}
#sub-main h2 {
	margin: 40px 0 60px;
}
#sub-main figure {
	margin: 0 0 30px;
	aspect-ratio: 1000 / 300;
}
}
@media screen and (max-width: 430px) {
.pankuzu {
	margin: 10px auto;
}
#sub-main h2 {
	margin: 30px 0 40px;
}
}


/*
================================
　ページトップ
================================
*/
#pagetop {
	z-index: 100;
	position: fixed;
	bottom: 0;
	right: 4.3vw;
}
#pagetop a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 40px;
	background: #000;
	opacity: 0.5;
	transition-timing-function: ease-out;
	transition-duration: 0.6s;
}
#pagetop a img {
	position: relative;
	z-index: 100000;
	width: 10px;
}
#pagetop a:hover {
	opacity: 0.8;
}
@media screen and (max-width: 430px) {
#pagetop {
	right: 5.12vw;
}
#pagetop a {
	width: 40px;
	height: 30px;
}
#pagetop a img {
	width: 10px;
}
}


/*
================================
　トップページ
================================
*/
/* 新着情報 */
.top-news {
	padding: 0 0 70px;
	width: 100%;
}
.top-news .inner {
	max-width: 1180px;
	display: grid;
	grid-template-columns: 300px auto;
	column-gap: 20px;
}
.top-news-title h3 {
	margin: 0 0 80px;
}
.top-news-title h3 span {
	font-size: clamp(1.125rem, 1.065rem + 0.3vw, 1.313rem); /*21→18px*/
	font-weight: 600;
}
.top-news .cmn-button1 a {
	max-width: 150px;
}
@media screen and (max-width: 960px) {
.top-news .inner {
	grid-template-columns: 1fr;
	column-gap: unset;
}
.top-news-title {
    display: grid;
    grid-template-columns: auto 140px;
	align-items: center;
}
.top-news-title h3 {
	margin: 0;
}
.top-news-title .cmn-button1 {
	margin: 0;
}
}
@media screen and (max-width: 430px) {
.top-news {
	padding: 0 0 50px;
}
.top-news-title {
	margin: 0 0 20px;
	align-items: center;
}
}

/* 事業案内 */
.top-service {
	padding: 50px 0 120px;
	width: 100%;
}
.top-service-box {
	display: grid;
	grid-template-columns: 50% auto;
	column-gap: 7.5%;
	align-items: center;
}
.top-service-box figure img {
	width: 100%;
}
@media screen and (max-width: 960px) {
.top-service-box {
	grid-template-columns: 1fr;
	column-gap: unset;
	row-gap: 40px;
}
.top-service-box figure {
        margin: 0 auto;
        max-width: 500px;
}
}
@media screen and (max-width: 430px) {
.top-service {
	padding: 0 0 60px;
}
}

/* 選ばれる理由 */
.top-reasons {
	padding: 0 0 120px;
	width: 100%;
}
.top-reasons-text {
	margin: 0 0 60px;
}
.top-reasons-text p {
	text-align: center;
}
.top-reasons figure {
	text-align: center;
}
.reasons-list {
	margin: 0 auto;
	width: 100%;
	max-width: 880px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 10px;
}
.reasons-item {
	position: relative;
	border: 1px solid #B9B4AA;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
}
.reasons-item small {
	position: absolute;
	top: -35px;
	left: 0;
	color: #B9B4AA;
	font-family: "Saira", sans-serif;
	font-size: clamp(3.75rem, 3.35rem + 2vw, 5rem); /* 80→60px */
	font-weight: 500;
	line-height: 1;
	width: 100%;
	text-align: center;
}
.reasons-item span {
	color: #3E3D36;
	font-size: clamp(0.688rem, 0.547rem + 0.7vw, 1.125rem); /* 18→11px */
	font-weight: 600;
	text-align: center;
}
@media screen and (max-width: 540px) {
.reasons-list {
	max-width: 380px;
	grid-template-columns: 1fr 1fr;
	column-gap: 10px;
	row-gap: 60px;
}
}
@media screen and (max-width: 430px) {
.top-reasons {
	padding: 0 0 60px;
	width: 100%;
}
.top-reasons-text p {
	text-align: left;
}
}

/* 取扱商品カテゴリー */
.top-products {
	padding: 120px 0;
	background: #F8F7F5;
}
.top-products-text {
	margin: 0 0 60px;
}
.top-products-text p {
	text-align: center;
}

.products-layout-first {
	margin-bottom: 1.3vw;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 0.8vw;
	grid-row-gap: 0.8vw;
}
.products-layout-first .photo1 { grid-area: 1 / 1 / 3 / 3; }
.products-layout-first .photo2 { grid-area: 1 / 3 / 2 / 4; }
.products-layout-first .photo3 { grid-area: 1 / 4 / 2 / 5; }
.products-layout-first .photo4 { grid-area: 2 / 3 / 3 / 4; }
.products-layout-first .photo5 { grid-area: 2 / 4 / 3 / 5; }

.products-layout-second {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 0.8vw;
	grid-row-gap: 0.8vw;
}

.products-layout-second .photo1 { grid-area: 1 / 1 / 2 / 2; }
.products-layout-second .photo2 { grid-area: 1 / 2 / 2 / 3; }
.products-layout-second .photo3 { grid-area: 2 / 1 / 3 / 2; }
.products-layout-second .photo4 { grid-area: 2 / 2 / 3 / 3; }
.products-layout-second .photo5 { grid-area: 1 / 3 / 3 / 5; }

.top-products a {
	transition : .5s;
}
.top-products a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition : .5s;
}
.top-products figure {
	position: relative;
	width: 100%;
	aspect-ratio: 1000 / 1000;
	overflow: hidden;
	display: flex;
	justify-content: center;
}
.top-products figure img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top-products figcaption {
	position: absolute;
	bottom: 2vw;
	background: rgba(255, 255, 255, 0.7);
	padding: 0 15px;
	font-weight: 500;
}
@media screen and (max-width: 960px) {
.top-products figcaption {
	padding: 0 10px;
	font-size: 12px;
}
}
@media screen and (max-width: 680px) {
.page-products-layout {
	margin: 0 0 50px;
}
.products-layout-first {
	margin-bottom: 2.6vw;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(4, 1fr);
	grid-column-gap: 2.8vw;
	grid-row-gap: 2.6vw;
}
.products-layout-first .photo1 { grid-area: 1 / 1 / 3 / 3; }
.products-layout-first .photo2 { grid-area: 3 / 1 / 4 / 2; }
.products-layout-first .photo3 { grid-area: 3 / 2 / 4 / 3; }
.products-layout-first .photo4 { grid-area: 4 / 1 / 5 / 2; }
.products-layout-first .photo5 { grid-area: 4 / 2 / 5 / 3; }

.products-layout-second {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(4, 1fr);
	grid-column-gap: 2.8vw;
	grid-row-gap: 2.6vw;
}
.products-layout-second .photo1 { grid-area: 1 / 1 / 3 / 3; }
.products-layout-second .photo2 { grid-area: 3 / 1 / 4 / 2; }
.products-layout-second .photo3 { grid-area: 3 / 2 / 4 / 3; }
.products-layout-second .photo4 { grid-area: 4 / 1 / 5 / 2; }
.products-layout-second .photo5 { grid-area: 4 / 2 / 5 / 3; }
}
@media screen and (max-width: 430px) {
.top-products {
	padding: 60px 0;
}
.top-products-text {
	margin: 0 0 40px;
}
}

/* 会社概要 */
.top-company {
	padding: 50px 0 120px;
	width: 100%;
}
.top-company-box {
	display: grid;
	grid-template-columns: 50% auto;
	column-gap: 7.5%;
	align-items: center;
}
.top-company-box figure {
	order: 1;
}
.top-company-text {
	order: 0;
}
.top-company-box figure img {
	width: 100%;
}
@media screen and (max-width: 960px) {
.top-company-box {
	grid-template-columns: 1fr;
	column-gap: unset;
	row-gap: 40px;
}
.top-company-box figure {
	order: 0;
        margin: 0 auto;
        max-width: 500px;
}
.top-company-text {
	order: 1;
}
}
@media screen and (max-width: 430px) {
.top-company {
	padding: 0 0 60px;
}
}


/*
================================
　事業案内
================================
*/
.page-service-intro {
	margin: 0 0 120px;
	text-align: center;
}
.page-service-intro .intro-text {
	margin: 0 0 60px;
}
.page-service-intro .intro-text p {
	text-align: center;
}
@media screen and (max-width: 430px) {
.page-service-intro .intro-text p {
	text-align: left;
}
}

.serviceintro-list {
	margin: 0 auto;
	width: 100%;
	max-width: 880px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 10px;
}
.serviceintro-item {
	position: relative;
	border: 1px solid #B9B4AA;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
}
.serviceintro-item small {
	background: #B9B4AA;
	color: #fff;
}
.serviceintro-item span {
	color: #373636;
	font-size: #B9B4AA; /* 16→11px */
	font-weight: 600;
	text-align: center;
}


/* ビジョン */
.page-service-vison {
	padding: 0 0 120px;
	width: 100%;
}
.page-service-vison .vision-box {
	display: grid;
	grid-template-columns: 50% auto;
	column-gap: 7.5%;
	align-items: center;
}
.page-service-vison .vision-box figure img {
	width: 100%;
}
@media screen and (max-width: 960px) {
.page-service-vison .vision-box {
	grid-template-columns: 1fr;
	column-gap: unset;
	row-gap: 30px;
}
.page-service-vison .vision-box figure {
	margin: 0 auto;
	max-width: 500px;
}
}
@media screen and (max-width: 430px) {
.page-service-vison {
	padding: 0 0 60px;
}
}

/* 取扱商品カテゴリー */
.page-service-poducts {
	padding: 120px 0;
	background: #F8F7F5;
}
.category-nav {
	margin: 0 0 100px;
}
.category-nav ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 1vw;
}
.category-nav li a {
	display: block;
	background: #fff;
	line-height: 60px;
	padding: 0 30px;
	transition : .5s;
}
.category-nav li a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition : .5s;
}

.category-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.1vw;
}
.category-item h4 {
	margin: 0 0 60px;
}
.category-item h4 span {
	position: relative;
	font-size: clamp(0.875rem, 0.795rem + 0.4vw, 1.125rem); /* 18→14px */
	font-weight: 500;
	line-height: 1;
}
.category-item h4 span:before {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0;
	background: #B9B4AA;
	width: 30px;
	height: 1px;
}
.category-photo {
	margin: 0 0 40px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1vw;
}
.category-photo figure {
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 300 / 300;
}
.category-photo figure img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 960px) {
.category-nav ul {
	grid-template-columns: 1fr 1fr;
}
.category-list {
	grid-template-columns: 1fr;
	gap: 40px;
}
}
@media screen and (max-width: 430px) {
.page-service-poducts {
	padding: 60px 0;
}
.category-nav li a {
	line-height: 30px;
	padding: 0 20px;
}
.category-nav {
	margin: 0 0 40px;
}
.category-item h4 {
	margin: 0 0 40px;
}
.category-item h4 span:before {
	bottom: -15px;
	width: 20px;
}
.category-photo {
	margin: 0 0 20px;
}
}

/* 納品までの流れ */
.page-service-flow {
	padding: 120px 0 100px;
}
.flow-list {
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
}
.flow-item {
	position: relative;
	margin: 0 0 60px;
	display: grid;
	grid-template-columns: 120px auto;
}
.flow-item:before {
	content: "";
	position: absolute;
	bottom: -40px;
	left: calc(50% - 10px);
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 21px solid transparent;
	border-left: 21px solid transparent;
	border-top: 20px solid #b9b4aa;
	border-bottom: 0;
}
.flow-item:last-of-type {
	margin: 0;
}
.flow-item:last-of-type:before {
	display: none;
}
.flow-no {
	display: flex;
	background: #B9B4AA;
	align-items: center;
	justify-content: center;
}
.flow-no span {
	color: #fff;
	font-family: "Saira", sans-serif;
	font-weight: 500;
}
.flow-text {
	padding: 40px 50px;
	background: #F8F7F5;
}
.flow-text h4 {
	font-size: clamp(0.875rem, 0.795rem + 0.4vw, 1.125rem); /* 18→14px */
	font-weight: 900;
	line-height: 1.8;
}
.flow-text a {
	position: relative;
	color: #CB3030;
	transition : .5s;
}
.flow-text a:before {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #CB3030;
}
.flow-text a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition : .5s;
}
.flow-text a:hover:before {
	display: none;
}
@media screen and (max-width: 960px) {
.flow-text {
	padding: 30px 20px;
}
}
@media screen and (max-width: 430px) {
.page-service-flow {
	padding: 60px 0 50px;
}
.flow-item {
	grid-template-columns: 80px auto;
}
}


/*
================================
　会社概要
================================
*/
.page-company-intro {
	margin: 0 0 120px;
	text-align: center;
}
.page-company-intro .intro-text p {
	text-align: center;
}
@media screen and (max-width: 430px) {
.page-company-intro {
	margin: 0 0 60px;
	text-align: left;
}
.page-company-intro .intro-text p {
	text-align: left;
}
}

/* 私たちの行動指針 */
.page-company-conduct {
	padding: 0 0 120px;
	width: 100%;
}
.page-company-conduct .conduct-box {
	display: grid;
	grid-template-columns: 50% auto;
	column-gap: 7.5%;
	align-items: center;
}
.page-company-conduct .conduct-box figure img {
	width: 100%;
}
.conduct-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	background: url(../img/company/img_logo.svg) no-repeat center center;
}
.conduct-item h4 {
	font-size: clamp(0.875rem, 0.795rem + 0.4vw, 1.125rem); /* 18→14px */
	font-weight: 500;
}
.conduct-item h4 strong {
	color: #E3AA46;
}
@media screen and (max-width: 960px) {
.page-company-conduct .conduct-box {
	grid-template-columns: 1fr;
	row-gap: 30px;
}
.page-company-conduct .conduct-box figure {
	margin: 0 auto;
	max-width: 500px;
}
}
@media screen and (max-width: 430px) {
.page-company-conduct {
	padding: 0 0 60px;
}
}



.page-company-message {
	margin: 0 0 120px;
}
.page-company-message .inner {
	max-width: 980px;
}
.message-text p {
	margin: 0 0 1em;
}
.message-text p:last-of-type {
	margin: 0;
}
.page-company-message .sign {
	margin: 60px 0 0;
	text-align: right;
}
.page-company-message .sign small {
	font-size: clamp(0.75rem, 0.71rem + 0.2vw, 0.875rem); /*14→12px*/
}
.page-company-message .sign span {
	margin-left: 14px;
	font-family: "Yu Mincho", "YuMincho";
	font-size: clamp(0.875rem, 0.795rem + 0.4vw, 1.125rem); /*18→14px*/
	font-weight: 500;
}
@media screen and (max-width: 430px) {
.page-company-message {
	margin: 0 0 60px;
}
.page-company-message .inner {
	max-width: 100%;
}
.page-company-message .sign {
	margin: 30px 0 0;
}
}


.page-company-profile {
	padding: 120px 0;
	background: #F8F7F5;
}
.profile-tbl {
	margin: 0;
}
@media screen and (max-width: 430px) {
.page-company-profile {
	padding: 60px 0;
}
.profile-tbl {
	margin: 0 0 30px;
}
}

/* 沿革 */
.page-company-history {
	padding: 120px 0;
}
.history-list {
	margin: 0 auto;
	max-width: 1100px;
}
.history-item {
	display: grid;
	grid-template-columns: 290px auto;
	border-bottom: 0.5px solid #B9B4AA;
}
.history-item .date {
	padding: 20px 75px;
	color: #000;
	font-size: clamp(0.813rem, 0.752rem + 0.3vw, 1rem); /* 16px→13px */
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.08em;
	line-height: 2.125;
	text-align: justify;
	word-break: break-all;
}
.history-item .content {
	padding: 20px 100px;
	color: #000;
	font-size: clamp(0.813rem, 0.752rem + 0.3vw, 1rem); /* 16px→13px */
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.08em;
	line-height: 2.125;
	text-align: justify;
	word-break: break-all;
}
@media screen and (max-width: 960px) {
.history-list {
	max-width: 100%;
}
.history-item {
	grid-template-columns: 1fr;
}
.history-item .date {
	width: 100%;
	padding: 20px 0 5px;
}
.history-item .content {
	width: 100%;
	padding: 5px 0 20px;
}
}
@media screen and (max-width: 430px) {
.page-company-history {
	padding: 60px 0;
}
.history-item .date {
	padding: 20px 0 5px;
}
.history-item .content {
	padding: 5px 0 20px;
}
}

/* アクセス */
.page-company-access {
	padding: 120px 0;
	background: #F8F7F5;
}
.page-company-access .google-map {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 38%;
}
.page-company-access .google-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.page-company-access .access-text {
	margin: 40px 0 0;
}
.page-company-access .access-photo {
	margin: 100px 0 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 1.8%;
}
@media screen and (max-width: 430px) {
.page-company-access {
	padding: 60px 0;
}
.page-company-access .google-map {
	padding-top: 100%;
}
.page-company-access .access-text {
	margin: 20px 0 0;
}
}

/*
================================
　採用情報
================================
*/
.page-recruit {
	padding: 0 0 120px;
}
.page-recruit .inner {
	max-width: 1100px;
}
@media screen and (max-width: 430px) {
.page-recruit {
	padding: 0 0 60px;
}
}

/*
================================
　お問い合わせ
================================
*/
.page-contact {
	padding: 0 0 120px;
}
.page-contact .inner {
	max-width: 1000px;
}
.contact-text {
	margin: 0 0 100px;
}
.contact-text p {
	text-align: center;
}
@media screen and (max-width: 667px) {
.page-contact {
	padding: 0 0 60px;
}
.contact-text {
	margin: 0 0 50px;
}
}

/* プライバシーポリシー */
.page-contact-privacy {
	padding: 0 0 100px;
}
.privacy-scroll-box {
	height: 500px;    
	overflow: auto;  
	padding: 50px;
	border: 1px solid rgba(16,16,16,0.3);
	background: #fff;
}
.privacy-box {
	padding: 0 0 40px;
}
.privacy-box:last-of-type {
	padding: 0;
}
.privacy-box p + ul {
	margin: 30px 0 0;
}
.privacy-box ul + p {
	margin: 30px 0 0;
}
.privacy-box dt {
	margin-bottom: 10px;
	font-size: clamp(0.875rem, 0.795rem + 0.4vw, 1.125rem); /*18→14px*/
	font-weight: 700;
}
.privacy-box dd {
	margin-bottom: 50px;
}
.privacy-box ul {
	counter-reset: number 0;
}
.privacy-box li {
	padding-left: 1.6em;
	text-indent: -1.6em;
}
.privacy-box li:before {
	counter-increment: number 1;
	content: counter(number) ".";
	margin: 0 10px 0 0;
	font-weight: 700;
}
.privacy-contact {
	margin: 50px 0 0;
	border: 1px dotted #666;
	text-align: center;
	padding: 10px 50px;
}
.privacy-contact p {
	text-align: center;
}
.privacy-contact a {
	text-decoration: underline;
}
@media screen and (max-width: 667px) {
.page-contact-privacy {
	padding: 0 0 60px;
}
.privacy-scroll-box {
	height: 400px;    
	padding: 30px 20px;
}
.privacy-box {
	padding: 0 0 20px;
}
.privacy-box dt {
	margin-bottom: 5px;
}
.privacy-box dd {
	margin-bottom: 30px;
}
.privacy-contact {
	margin: 30px 0 0;
	padding: 10px;
}
}


/* フォーム */
.grecaptcha-badge { visibility: hidden; }

.siteform {
}
.siteform a {
	transition : .5s;
}
.siteform a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition : .5s;
}
.siteform table {
}
.siteform tr {
	border-bottom: 2px solid #fff;
}
.siteform th {
	width: 30%;
	background: #F8F7F5;
	border-bottom: 2px solid #fff;
}
.siteform span.req {
	display: inline-block;
	background: #A81D1D;
	color: #fff;
	font-size: clamp(0.625rem, 0.6rem + 0.13vw, 0.75rem); /*12→10px*/
	line-height: 1;
	padding: 3px 6px 4px;
	margin: 0 0 0 1em;
}
.siteform .fsize-s {
	width: 180px;	/*郵便番号、日付など*/
}
.siteform .fsize-m {
	width: 60%;
}
.siteform .fsize-l {
	width: 100%;
}
.siteform .explanation {
	margin: 10px 0 0;
	display: block;
	font-size: clamp(0.75rem, 0.725rem + 0.13vw, 0.875rem);
	color: #666;
	text-align: left;
}
.siteform td input[type="text"],
.siteform td textarea {
	padding: 10px;
	min-height: 40px;
	border: 1px solid #ccc;
	background: #fff;
	-webkit-appearance: none;
	font-family: "Zen Old Mincho", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
.siteform td textarea {
	width: 100%;
}
.siteform td select {
	position: relative;
	padding: 10px 26px 10px 10px;
	min-height: 40px;
	border: 1px solid #ccc;
	font-family: "Zen Old Mincho", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
	background: url(../img/common/arrow_b_brown.svg) #fff no-repeat;
	background-size: 10px auto;
	background-position: right 8px center;
}
.siteform .contact-btn {
	margin: 40px auto;
	text-align: center;
}
.siteform .contact-btn .send {
	margin: 5px;
	display: inline-block;
	width: 100%;
	max-width: 260px;
	line-height: 54px;
	border: none;
	outline: none;
	background: #B9B4AA;
	color: #fff;
	font-size: clamp(0.75rem, 0.71rem + 0.2vw, 0.875rem); /*14→12px*/
	font-weight: 500;
	letter-spacing: 0.06em;
	text-align: center;
	cursor: pointer;
	-webkit-appearance: none;
	font-family: "Zen Old Mincho", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
.siteform .contact-btn .back {
	margin: 5px;
	display: inline-block;
	width: 100%;
	max-width: 260px;
	line-height: 54px;
	border: none;
	outline: none;
	background: #333;
	color: #fff;
	font-size: clamp(0.75rem, 0.71rem + 0.2vw, 0.875rem); /*14→12px*/
	font-weight: 500;
	letter-spacing: 0.06em;
	text-align: center;
	cursor: pointer;
	-webkit-appearance: none;
	font-family: "Zen Old Mincho", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}


.siteform .contact-attn {
	margin: 40px 0;
	background: #FDF7E6;
	padding: 40px;
}
.siteform .contact-attn ul {
	padding-left: 1em;
	text-indent: -1em;
}
.siteform .privacy-check {
	margin: 40px 0;
}
.siteform .privacy-check p {
	text-align: center;
	margin: 0 0 20px;
}
.siteform .privacy-check p:last-of-type {
	margin: 0;
}
.siteform .contact-ssl {
	margin: 40px 0;
}
.siteform .contact-ssl ul {
	padding-left: 1em;
	text-indent: -1em;
}
.siteform .contact-ssl li {
	font-size: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem); /*14→10px*/
	text-align: center;
}
.siteform .thanks {
	background: #F8F7F5;
	padding: 60px 60px;
}
.siteform .thanks h3 {
	text-align: left;
	margin-bottom: 10px;
}
.siteform .thanks h3 span {
	font-size: clamp(1.063rem, 1.025rem + 0.19vw, 1.25rem);
	font-weight: 700;
}
@media screen and (max-width: 960px) {
.siteform .fsize-m {
	width: 100%;
}
.siteform .fsize-l {
	width: 100%;
}
.siteform .mwform-radio-field {
	display: block;
	white-space: nowrap;
}
.siteform .mwform-radio-field.horizontal-item {
	margin-left: 0 !important;
}
.siteform .contact-btn {
	margin: 30px auto;
	text-align: center;
}
.siteform .contact-btn .send, .siteform .contact-btn .back {
	width: 240px;
	line-height: 50px;
}
.siteform .contact-attn {
	margin: 20px 0;
	padding: 40px 20px;
}
.siteform .privacy-check {
	margin: 20px 0;
}
.siteform .privacy-check p {
	margin: 0 0 10px;
}
.siteform .contact-ssl {
	margin: 20px 0;
}
.siteform th {
	width: 100%;
	color: #000;
}
.siteform td {
	padding: 10px 0;
}
}


/*
================================
　ブログ 一覧ページ
================================
*/
.page-blog {
	margin: 0 0 120px;
}
.page-blog-text {
	margin: 0 0 80px;
}
@media screen and (max-width: 430px) {
.page-blog {
	margin: 0 0 60px;
}
.page-blog-text {
	margin: 0 0 40px;
}
}


/* お知らせ（一覧） */
.bloglist02 {
	margin: 0 auto;
	width: 100%;
}
.bloglist02-layout {
	width: 100%;
}
.bloglist02 .blog-item a {
	margin: 0 auto;
	padding: 14px 50px;
	display: grid;
	grid-template-columns: 110px auto;
	column-gap: 30px;
	align-items: center;
	border-bottom: 0.5px solid #B9B4AA;
}
.bloglist02 .blog-item:first-of-type a {
	padding: 0 50px 14px;
}
.bloglist02 .blog-item:last-of-type a {
	border-bottom: none;
}
.bloglist02 .blog-item a {
	transition : .5s;
}
.bloglist02 .blog-item a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition : .5s;
}
.bloglist02 .blog-item .date-cate {
	display: grid;
	grid-template-columns: 120px auto;
	width: 100%;
	align-items: center;
}
.bloglist02 .blog-item .date {
	font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem); /* 16px→14px */
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 2.375;
	color: #000;
}
.bloglist02 .blog-item .title {
	font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem); /* 16px→14px */
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 2.375;
	color: #000;
}
@media screen and (max-width: 960px) {
.bloglist02 .blog-item a {
	grid-template-columns: 1fr;
	column-gap: unset;
}
.bloglist02 .blog-item a {
	padding: 14px 0;
}
.bloglist02 .blog-item:first-of-type a {
	padding: 0 0 14px;
}
}
@media screen and (max-width: 430px) {
.bloglist02 .blog-item .date-cate {
	grid-template-columns: 120px auto;
	width: 100%;
	align-items: center;
}
.bloglist02 .blog-item .date {
	font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem); /* 16px→14px */
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 2.375;
	color: #2D2D2D;
}
.bloglist02 .blog-item .category span {
	padding: 4px 0 5px;
	width: 70px;
}
}

/* 写真付き・横並び */
.bloglist03 {
	margin: 0 auto;
}
.bloglist03 a {
	transition : .5s;
}
.bloglist03 a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition : .5s;
}
.bloglist03-layout {
	display: grid;
	gap: 60px 2.6%;
	grid-template-columns: repeat(3, 1fr);
	align-items: start;
}
.bloglist03 .blog-item {
	margin: 0 auto;
	overflow: hidden;
	width: 100%;
}
.bloglist03 .blog-item figure {
	margin: 0 0 20px;
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 410 / 250;
}
.bloglist03 .blog-item figure img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bloglist03 .blog-item .category {
	margin: 0 0 10px;
}
.bloglist03 .blog-item .category span {
	padding: 6px 8px 8px;
	display: inline-block;
	font-size: clamp(0.625rem, 0.6rem + 0.13vw, 0.75rem); /*12→10px*/
	line-height: 1;
	background: #3E3D36;
	color: #fff;
}
.bloglist03 .blog-item .category small {
	margin: 0 0 0 25px;
	display: inline-block;
	font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem); /*14→12px*/
}
.bloglist03 .blog-item .title span {
	font-size: clamp(0.875rem, 0.795rem + 0.4vw, 1.125rem); /*18→14px*/
	font-weight: 500;
}
@media screen and (max-width: 1080px) {
.bloglist03-layout {
	gap: 30px 4%;
	grid-template-columns: repeat(2, 1fr);
}
.bloglist03 .blog-item figure {
	margin: 0 0 20px;
}
}
@media screen and (max-width: 667px) {
.bloglist03-layout {
	grid-template-columns: 1fr;
}
}


/*
================================
　投稿ページネーション
================================
*/
.page-nav {
	padding: 80px 0 0;
	text-align: center;
}
@media screen and (max-width: 667px) {
.page-nav {
	padding: 40px 0 0;
}
}

.wp-pagenavi {/* 全体 */
	font-size: clamp(0.813rem, 0.752rem + 0.3vw, 1rem); /* 16px→13px */
}
.wp-pagenavi a {/* フォント色 */
	color: #000;
	font-size: clamp(0.813rem, 0.752rem + 0.3vw, 1rem); /* 16px→13px */
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.08em;
	line-height: 1;
	text-align: justify;
	word-break: break-all;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .extend,
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .current,
.wp-pagenavi a.page {/* ボタン */
	margin: 0 20px 6px 0;
	display: inline-block;
	border: solid 1px #3E3D36;
	width: 40px;
	height: 40px;
	line-height: 32px;
	text-align: center;
}
.wp-pagenavi .current {/* カレント数字 */
	color: #fff;
	border: solid 1px #3E3D36;
	background: #3E3D36;
}
.wp-pagenavi a.page:hover {/* マウスオーバー */
	color: #fff;
	border: solid 1px #3E3D36;
	background: #3E3D36;
}
.wp-pagenavi .first,
.wp-pagenavi .last {/* ... */
	color: #3E3D36;
}
.wp-pagenavi .extend {/* ... */
	color: #3E3D36;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {/* 記号の削除 */
	color: #3E3D36;
}
.wp-pagenavi .material-icons {
	font-size: clamp(0.625rem, 0.375rem + 0.5vw, 1rem);
}

@media screen and (max-width: 667px) {
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .extend,
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .current,
.wp-pagenavi a.page {/* ボタン */
	margin: 0 20px 6px 0;
}
}

/*
================================
　ブログ 記事ページ
================================
*/
.page-blog-single {
	margin: 0 0 120px;
}
.page-blog-single .inner {
	max-width: 1100px;
}
.page-blog-single .title {
	margin: 0 0 80px;
	padding: 20px 0 40px;
	border-bottom: 1px solid #B9B4AA;
}
.page-blog-single .title span {
	font-size: clamp(1.125rem, 1.005rem + 0.6vw, 1.5rem); /*24→18px*/
	font-weight: 500;
	line-height: 1.8;
}
.page-blog-single .category {
	text-align: right;
}
.page-blog-single .category span {
	padding: 6px 8px 8px;
	display: inline-block;
	font-size: clamp(0.625rem, 0.6rem + 0.13vw, 0.75rem); /*12→10px*/
	line-height: 1;
	background: #3E3D36;
	color: #fff;
}
.page-blog-single .category small {
	margin: 0 0 0 25px;
	display: inline-block;
	font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem); /*14→12px*/
}
.page-blog-single .cmn-button1 {
	margin: 80px auto 0;
	text-align: center;
}
@media screen and (max-width: 430px) {
.page-blog-single {
	margin: 0 0 60px;
}
.page-blog-single .title {
	margin: 0 0 40px;
	padding: 10px 0 20px;
}
.page-blog-single .category {
	text-align: left;
}
.page-blog-single .cmn-button1 {
	margin: 50px auto 0;
}
}



/* wp編集用レイアウト */
.editlayout {
}
.editlayout h2 {
	margin: 0 0 40px;
	font-size: clamp(0.938rem, 0.818rem + 0.6vw, 1.313rem); /*21→15px*/
	font-weight: 500;
	letter-spacing: 0.08em;
	color: #000;
	border-left: 3px solid #B9B4AA;
	padding: 8px 10px 10px 20px;
	line-height: 1.6;
}
.editlayout h3 {
	margin: 0 0 40px;
	padding: 0 0 14px;
	border-bottom: 1px solid #B9B4AA;
	font-size: clamp(0.938rem, 0.818rem + 0.6vw, 1.313rem); /*21→15px*/
	font-weight: 500;
	letter-spacing: 0.08em;
	color: #000;
	line-height: 1.6;
}

.editlayout h4 {
	margin: 0 0 30px;
	padding: 10px 30px;
	color: #000;
	font-size: clamp(0.875rem, 0.795rem + 0.4vw, 1.125rem); /*18→14px*/
	font-weight: 500;
	letter-spacing: 0.08em;
	background: #F8F7F5;
	line-height: 1.6;
}
.editlayout h5 {
	margin: 0 0 20px;
	color: #000;
	font-size: clamp(0.813rem, 0.752rem + 0.3vw, 1rem); /* 16→13px */
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.6;
}
.editlayout a {
	position: relative;
	color: #CB3030;
	transition : .5s;
}
.editlayout a:before {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #CB3030;
}
.editlayout a:hover, .editlayout a:active {
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition : .5s;
}
.editlayout a:hover:before, .editlayout a:active:before {
	display: none;
}
.editlayout blockquote {
	position: relative;
	background: #fff;
	padding: 25px 85px;
	border-radius: 5px;
}
.editlayout blockquote:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "“";
	color: #B9B4AA;
	font-size: clamp(3.125rem, 0.493rem + 5.26vw, 5.625rem);
	width: 80px;
	text-align: center;
}
.editlayout blockquote:after {
	position: absolute;
	top: 0;
	right: 0;
	content: "”";
	color: #B9B4AA;
	font-size: clamp(3.125rem, 0.493rem + 5.26vw, 5.625rem);
	width: 80px;
	text-align: center;
}
.editlayout ol {
	margin-left: 20px;
}
.editlayout ul {
	margin-left: 20px;
	list-style-type: disc;
}
.editlayout strong {
	font-weight: 700;
}
.editlayout em {
	font-style: italic;
}
.editlayout .aligncenter {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.editlayout .aligncenter img {
	display: block;
	height: auto;
	max-width: 100%;
}
.editlayout .alignright {
	display: block;
	height: auto;
	margin-left: auto;
	max-width: 100%;
}
.editlayout .alignright img {
	display: block;
	height: auto;
	max-width: 100%;
}
.editlayout .alignleft {
	display: block;
	height: auto;
	margin-right: auto;
	max-width: 100%;
}
.editlayout .alignleft img {
	display: block;
	height: auto;
	max-width: 100%;
}
.editlayout .alignnone {
	display: block;
	height: auto;
	max-width: 100%;
}
.editlayout .alignnone img {
	display: block;
	height: auto;
	max-width: 100%;
}
.editlayout .float-left {
	float: left;
	margin: 0 60px 60px 0;
}
.editlayout .float-right {
	float: right;
	margin: 0 0 60px 60px;
}
.editlayout .float-clear {
	clear: both;
}
.editlayout p {
	text-align: start;
}
.editlayout img {
	max-width: 100%;
}
.editlayout iframe {
	max-width: 100%;
}
.editlayout .wp-embedded-content {
	margin:  0 auto;
	width: 100%;
	max-width: 50%;
}
.editlayout table {
	width: 100%;
	border-top: 1px solid #B9B4AA;
	border-right: 1px solid #B9B4AA;
}
.editlayout th {
	border-bottom: 1px solid #B9B4AA;
	border-left: 1px solid #B9B4AA;
	padding: 20px 30px;
	background: #F8F7F5;
	font-weight: 700;
	vertical-align: middle;
}
.editlayout td {
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	padding: 20px 30px;
	vertical-align: middle;
	background: #fff;
}
@media screen and (max-width: 1280px) {
.editlayout th {
	padding: 20px 20px;
}
.editlayout td {
	padding: 20px 20px;
}
}
@media screen and (max-width: 1080px) {
.editlayout h2 {
	margin: 0 0 20px;
	padding: 6px 8px 8px 14px;
}
.editlayout h3 {
	margin: 0 0 20px;
	padding: 0 0 10px;
}
.editlayout h4 {
	margin: 0 0 20px;
	padding: 4px 10px 6px 14px;
}
.editlayout h5 {
	margin: 0 0 10px;
}
.editlayout blockquote {
	padding: 25px 45px;
}
.editlayout blockquote:before {
	width: 40px;
}
.editlayout blockquote:after {
	width: 40px;
}
.editlayout .wp-embedded-content {
	margin:  0 auto;
	min-width: 100%;
	width: 100%;
}
.editlayout .float-left {
	float: left;
	margin: 0 20px 20px 0;
}
.editlayout .float-right {
	float: right;
	margin: 0 0 20px 20px;
}
.editlayout th {
	width: 100%;
	display: block;
	padding: 10px 10px;
}
.editlayout td {
	width: 100%;
	display: block;
	padding: 10px 10px;
}
}

