@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');

/*
================================
　共通
================================
*/
p,th,td,dt,dd,li,span,small,strong,em,figcaption {
	font-family: "Noto Sans JP", sans-serif;
	color: #333333;
	font-size: clamp(0.938rem, 0.869rem + 0.34vw, 1.125rem); /*18→15px*/
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.1em;
	line-height: 2.2;
	text-align: justify;
	word-break: break-all;
}

/* SP表示 関連 */
.disp-pc {
	display: block;
}
.disp-sp {
	display: none;
}
.disp-tab {
	display: none;
}
@media screen and (max-width: 960px) {
.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: 835px) {
a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	color: #1B2B40;
}
}

/* テキスト色 */
.txt-orange {
	color: #D07B28;
}
.txt-brown {
	color: #A68B62;
}

/* ナンバリングリスト */
.number {
	counter-reset: number 0;
}
.number li {
	padding-left: 1.6em;
	text-indent: -1.6em;
}
.number li:before {
	counter-increment: number 1;
	content: counter(number) ".";
}

/* ボタン */
.cmn-button1 {
	margin: 60px 0 0;
}
.cmn-button1 a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 320px;
	height: 65px;
	background: #fff;
	border: 1px solid #0496C9;
	border-radius: 30px;
	overflow: hidden;
}
.cmn-button1 a:after {
	content: "";
	position: absolute;
	right: 15px;
	top: calc(50% - 15px);
	background: url(../img/common/icon_arrow.svg) no-repeat;
	width: 30px;
	height: 30px;
}
.cmn-button1 a:before {
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	background: #0496C9;
	border-radius: 30px;
	transition: transform 0.6s ease;
	transform: scaleX(0);
	transform-origin: right;
}
.cmn-button1 a:hover:after {
	background: url(../img/common/icon_arrow_hover.svg) no-repeat;
}
.cmn-button1 a:hover:before {
	transform: scaleX(1);
	transform-origin: left;
}
.cmn-button1 span {
	display: block;
	position: relative;
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
	font-weight: 700;
	color: #0496C9;
}
.cmn-button1 a:hover span {
	color: #fff;
}
@media screen and (max-width: 960px) {
.cmn-button1 {
	margin: 40px 0 0;
}
.cmn-button1 a {
	max-width: 260px;
	height: 54px;
}
}

/* タイトル */
.cmn-title1 {
	margin: 0 0 80px;
}
.cmn-title1 small {
	display: block;
	margin: 0 0 25px;
	font-family: "M PLUS 1", sans-serif;
	font-size: clamp(1.313rem, 0.56rem + 3.09vw, 2.875rem); /*46→21px*/
	font-weight: 500;
	font-style: normal;
	letter-spacing: 0.15em;
	line-height: 1;
	color: #333;
}
.cmn-title1 span {
	display: block;
	font-family: "M PLUS 1", sans-serif;
	font-size: clamp(0.75rem, 0.545rem + 1.02vw, 1.313rem); /*21→12px*/
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.15em;
	line-height: 1;
	color: #0496C9;
}
@media screen and (max-width: 960px) {
.cmn-title1 {
	margin: 0 0 40px;
}
.cmn-title1 small {
	margin: 0 0 10px;
}
}

.cmn-title2 {
	margin: 0 0 50px;
}
.cmn-title2 small {
	display: block;
	margin: 0 0 25px;
	font-family: "M PLUS 1", sans-serif;
	font-size: clamp(1rem, 0.85rem + 0.62vw, 1.313rem); /*21→16px*/
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.15em;
	line-height: 1;
	color: #0496C9;
}
.cmn-title2 span {
	display: block;
	font-family: "M PLUS 1", sans-serif;
	font-size: clamp(1.125rem, 0.704rem + 1.73vw, 2rem); /*32→18px*/
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.15em;
	line-height: 1;
	color: #333;
}
@media screen and (max-width: 960px) {
.cmn-title2 {
	margin: 0 0 40px;
}
.cmn-title2 small {
	margin: 0 0 10px;
}
}

.cmn-title3 {
	margin: 0 0 50px;
}
.cmn-title3 small {
	display: inline-block;
	font-family: "M PLUS 1", sans-serif;
	font-size: clamp(1rem, 0.636rem + 1.82vw, 2rem); /*32→16px*/
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.15em;
	line-height: 1;
	color: #0496C9;
}
.cmn-title3 span {
	display: inline-block;
	font-family: "M PLUS 1", sans-serif;
	font-size: clamp(1rem, 0.636rem + 1.82vw, 2rem); /*32→16px*/
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.15em;
	line-height: 1;
	color: #333;
}
@media screen and (max-width: 960px) {
.cmn-title3 {
	margin: 0 0 20px;
}
}

/* 共通コピー */
.cmn-copy1 {
	margin: 0 0 30px;
}
.cmn-copy1 span {
	font-family: "M PLUS 1", sans-serif;
	font-size: clamp(1rem, 0.85rem + 0.62vw, 1.313rem); /*21→16px*/
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.15em;
	color: #333;
}
@media screen and (max-width: 960px) {
.cmn-copy1 {
	margin: 0 0 16px;
}
.cmn-copy1 div {
	margin: 0 0 5px;
}
.cmn-copy1 span {
	padding: 6px;
}
}

.cmn-copy2 {
	margin: 0 0 26px;
}
.cmn-copy2 span {
	position: relative;
	font-weight: 700;
	line-height: 3;
}
.cmn-copy2 span:after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 0;
	width: 100%;
	height: 6px;
	background: #0496C9;
	border-radius: 3px;
}

.cmn-copy3 {
	margin: 0 0 20px;
}
.cmn-copy3 span {
	font-family: "M PLUS 1", sans-serif;
	font-size: clamp(1.188rem, 0.917rem + 1.11vw, 1.75rem); /*28→16px*/
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.15em;
	color: #0496C9;
	line-height: 1.8;
}
@media screen and (max-width: 960px) {
.cmn-copy3 {
	margin: 0 0 10px;
}
}


/* テーブル */
.cmn-table {
	width: 100%;
}
.cmn-table table {
	width: 100%;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #CCCCCC;
	border-left: 1px solid #CCCCCC;
}
.cmn-table tr {
	border-bottom: 1px solid #CCCCCC;
}
.cmn-table th {
	padding: 30px 50px;
	width: 30%;
	font-weight: 700;
	vertical-align: middle;
	background: #EBF6FB;
}
.cmn-table td {
	padding: 30px 50px;
	width: auto;
}
@media screen and (max-width: 960px) {
.cmn-table th {
	padding: 10px 16px;
	display: block;
	width: 100%;
	border-bottom: 1px solid #CCCCCC;
}
.cmn-table td {
	padding: 10px 16px;
	display: block;
	width: 100%;
}
}


/* お知らせ（一覧） */
.bloglist02 {
	margin: 0 auto;
	width: 100%;
}
.bloglist02-layout {
	width: 100%;
}
.bloglist02 .blog-item a {
	margin: 0 auto;
	padding: 20px 60px;
	display: grid;
	grid-template-columns: 27% auto;
	align-items: center;
	border-bottom: 0.5px solid #ccc;
}
.bloglist02 .blog-item:last-of-type a {
	border-bottom: none;
}
.bloglist02 .blog-item a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition-timing-function: ease-out;
	transition-duration: 0.6s;
}
.bloglist02 .blog-item .date-cate {
	width: 100%;
	align-items: center;
}
.bloglist02 .blog-item .title span {
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 2.2;
}
@media screen and (max-width: 960px) {
.bloglist02 .blog-item a {
	padding: 20px 0;
	grid-template-columns: 30% auto;
}
}
@media screen and (max-width: 430px) {
.bloglist02 .blog-item a {
	padding: 10px 0;
	grid-template-columns: 1fr;
}
}

/* 写真付き・横並びリスト */
.bloglist03 {
	margin: 0 auto;
}
.bloglist03-layout {
	display: grid;
	gap: 60px 2%;
	grid-template-columns: repeat(4, 1fr);
	align-items: start;
}
.bloglist03 .blog-item {
	margin: 0 auto;
	overflow: hidden;
	width: 100%;
}
.bloglist03 .blog-item a {
	transition : .5s;
}
.bloglist03 .blog-item a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
	transition : .5s;
}
.bloglist03 .blog-item figure {
	margin: 0 0 20px;
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 280 / 210;
	border-radius: 30px;
	border: 1px solid #ccc;
}
.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 .title {
}
.bloglist03 .blog-item .title span {
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
	font-weight: 700;
	line-height: 1.5;
}
.bloglist03 .blog-item .date {
	font-size: clamp(0.625rem, 0.505rem + 0.49vw, 0.875rem); /* 14→10px */;
}
@media screen and (max-width: 960px) {
.bloglist03 .blog-item figure {
	margin: 0 0 10px;
	border-radius: 20px;
}
}
@media screen and (max-width: 730px) {
.bloglist03-layout {
	gap: 30px 4%;
	grid-template-columns: repeat(2, 1fr);
}
}


html{
	scroll-padding-top: calc(90px + 20px); 
	scroll-behavior: smooth;
}
html.scroll-prevent {
	height: 100%;
	overflow: hidden;
}
@media screen and (max-width: 960px) {
html{
	scroll-padding-top: calc(60px + 20px); 
}
}
body {
	font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: 100%;
	width: 100%;
	background: #fff;
}

#wrap {
	position: relative;
	margin: 0 auto;
	padding-top: 120px;
	width: 100%;
	min-width: 375px;
	overflow: hidden;
	animation: fadein 2s forwards;
}
@keyframes fadein {
	0% {opacity: 0.8}
	100% {opacity: 1}
}
section {
	width: 100%;
}
section .inner {
	position: relative;
	margin: 0 auto;
	width: calc(100% - 100px);
	max-width: 1200px;
}
@media screen and (max-width: 1280px) {
#wrap {
	padding-top: 70px;
}
}
@media screen and (max-width: 760px) {
section .inner {
	width: calc(100% - 70px);
}
}
@media screen and (max-width: 430px) {
section .inner {
	width: calc(100% - 40px);
}
}

/*
================================
　ヘッダー
================================
*/

/* お問い合わせボタン */
.hd-contact {
	display: inline-block;
}
.hd-contact a {
	position: relative;
	display: flex;
	width: 114px;
	height: 60px;
	background: #0496C9;
	border: 1px solid #0496C9;
	border-radius: 30px;
	align-items: center;
	justify-content: center;
	transition : .5s;
}
.hd-contact span {
	position: relative;
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
	font-weight: 500;
	line-height: 1;
	color: #fff;
}
.hd-contact a:hover {
	background: #fff;
	transition: .5s;
}
.hd-contact a:hover span {
	color: #0496C9;
}
/* 電話番号 */
.hd-tel span {
	position: relative;
	font-family: "M PLUS 1", sans-serif;
	font-size: clamp(1rem, 0.85rem + 0.62vw, 1.313rem); /*21→16px*/
	font-weight: 700;
	line-height: 1;
	color: #0496C9;
}
.hd-tel small {
	display: block;
	font-size: 10px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	z-index: 1000;
}
.header-inner {
	padding: 0 50px;
	height: 100%;
	display: grid;
	grid-template-columns: 26vw auto;
	column-gap: 50px;
	align-items: center;
	background: #fff;

}
header .logo {
	display: block;
	width: 26vw;
	min-width: 240px;
	max-width: 500px;
}
header .logo a {
	display: block;
	width: 100%;
	height: 100%;
}
nav {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
nav li {
	float: left;
	margin: 0 0 0 20px;
}
nav a {
	display: block;
	padding: 16px 32px;
	background: #fff;
	border-radius: 30px;
	transition: .5s;
}
nav a span {
	font-family: "M PLUS 1", sans-serif;
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
	font-weight: 700;
	font-style: normal;
	line-height: 1;
}
nav a:hover {
	background: #EBF6FB;
	transition: .5s;
}
@media screen and (max-width: 1280px) {
header {
	height: 70px;
}
.header-inner {
	padding: 0 50px;
	display: flex;

}
nav {
	display: none;
}
}
@media screen and (max-width: 960px) {
.header-inner {
	padding: 0 20px;
}
}


/*
================================
　ナビゲーション
================================
*/
/* ハンバーガーボタン */
.openbtn{
	display: none;
}
@media screen and (max-width: 1280px) {
.openbtn{
	display: flex;
	align-items: center;
	justify-content: center;
	position:fixed;
	right: 50px;
	top: 10px;
	cursor: pointer;
	margin: 0 auto;
	width: 50px;
	height: 50px;
	background: #0496C9;
	border-radius: 30px;
	z-index: 100000000;
}
.openbtn-inner {
	position: relative;
	width: 16px;
	height: 14px;
}
.openbtn span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 0px;
	width: 16px;
	height: 2px;
	background: #fff;
}
.openbtn span:nth-of-type(1) {
	top: 0px;	
}
.openbtn span:nth-of-type(2) {
	top: 6px;
}
.openbtn span:nth-of-type(3) {
	top: 12px;
}
.openbtn.active {
	background: #fff;
}
.openbtn.active span {
	background: #0496C9;
}
.openbtn.active span:nth-of-type(1) {
	top: 4px;
	transform: translateY(2px) rotate(-40deg);
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
	top: 4px;
	transform: translateY(2px) rotate(40deg);
}
}
@media screen and (max-width: 960px) {
.openbtn{
	right: 20px;
}
}

#g-nav {
	display: block;
	position:fixed;
	top: 0;
	right: -120%;
	width: 93vw;
	min-width: 350px;
	z-index: 10000000;
	background: #EBF6FB;
}
#g-nav.panelactive {
	right: 0;
	transition-timing-function: ease-out;
	transition-duration: 0.3s;
}

#g-nav-list { /*縦スクロール*/
	position: relative;
	width:100%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 999; 
}
.g-nav-pagelist {
	padding: 100px 7.6vw;
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
}
.g-nav-pagelist .menu01 {
	margin: 0 auto;
	width: 100%;
}
.g-nav-pagelist .menu01 li a {
	margin: 0 0 15px;
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 247px;
	transition : .5s;
}
.g-nav-pagelist .menu01 li a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
	transition : .5s;
}
.g-nav-pagelist .menu01 li span {
	display: block;
	position: relative;
	z-index: 10;
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
	font-weight: 500;
	line-height: 1.86;
	width: 100%;
	color: #333;
}
.g-nav-pagelist .menu02 {
	margin: 0 0 15px;
	display: grid;
	grid-template-columns: 110px auto;
}
.g-nav-pagelist .menu02 p {
	color: #A68B62;
	font-size: 12px;
}
.g-nav-pagelist .menu02 li a {
	margin: 0 0 10px;
}
.g-nav-pagelist .hd-tel {
	padding: 20px 0 0;
	margin: 0 0 20px;
}	
.g-nav-pagelist .hd-contact a {
	width: 170px;
	height: 50px;
}

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

/* お問い合わせ */
.ft-contact {
	padding: 120px 0;
	background: url(../img/common/bk_area.svg) no-repeat center top;
	background-size: 160%;
}
.ft-contact .cmn-title1 small,
.ft-contact .cmn-title1 span {
	text-align: center;
}
.area-box {
	margin: 0 auto 60px;
	max-width: 920px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 16%;
	align-items: center;
}
.area-boxtext p {
	font-weight: 700;
	line-height: 3;
}
.contact-box {
	margin: 0 auto 120px;
	display: grid;
	grid-template-columns: 50% auto;
	column-gap: 4.1%;
	align-items: center;
}
.contact-boxtext p {
	margin: 0 0 1.2em;
}
.contact-boxtext p span {
	color: #0496C9;
	font-weight: 700;
}
.contact-boxtext p:last-of-type {
	margin: 0;
}
.contact-boxbutton {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}
.btn-contact {
	margin: 60px 0 0;
}
.btn-contact a {
	display: block;
	max-width: 400px;
	background: #0496C9;
	border: 1px solid #0496C9;
	border-radius: 30px;
	text-align: center;
	transition : .5s;
}
.btn-contact span {
	position: relative;
	color: #fff;
	text-align: center;
	line-height: 100px;
}
.btn-contact a:hover {
	background: #fff;
	transition : .5s;
}
.btn-contact a:hover span {
	color: #0496C9;
}
.msg-box .cmn-copy3 {
	text-align: center;
}
.msg-box p { 
	text-align: center;
}
@media screen and (max-width: 1280px) {
.area-box {
	column-gap: 8%;
	max-width: 820px;
}
}
@media screen and (max-width: 960px) {
.ft-contact {
	padding: 80px 0;
}
.area-box {
	column-gap: 5%;
	max-width: 680px;
}
.area-boxtext p {
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
	line-height: 2.2;
}
.btn-contact {
	margin: 30px auto 0;
}
.btn-contact a {
	margin: 0 auto;
	max-width: 400px;
	border-radius: 20px;
}
.btn-contact span {
	line-height: 80px;
}
}
@media screen and (max-width: 730px) {
.contact-box {
	margin: 0 auto 60px;
	grid-template-columns: 1fr;
	row-gap: 30px;
}
.contact-box figure {
	margin: 0 auto;
	max-width: 500px;

}
}
@media screen and (max-width: 430px) {
.ft-contact {
	padding: 60px 0;
}
}

/* フッター */
footer {
	padding: 100px 0 30px;
	background: #EBF6FB;
}
footer .inner {
	position: relative;
	margin: 0 auto;
	width: calc(100% - 100px);
	max-width: 1200px;
}
footer a {
	transition : .5s;
}
footer a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
	transition : .5s;
}
.ft-box {
	display: grid;
	grid-template-columns: auto 26%;
	align-items: center;
}
.ft-box figure {
	margin: 0 0 0 auto;
	max-width: 260px;
}
.ft-logo {
	margin: 0 0 30px;
	display: block;
	width: 26vw;
	min-width: 240px;
	max-width: 500px;
}
.ft-info p {
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
}
address {
	margin: 80px 0 0;
}
address p {
	text-align: right;
	font-family: "M PLUS 1", sans-serif;
	font-size: clamp(0.5rem, 0.364rem + 0.68vw, 0.875rem); /* 14→8px */;
	font-weight: 700;
	font-style: normal;
}
@media screen and (max-width: 960px) {
footer {
	padding: 80px 0 30px;
}
.ft-box {
	grid-template-columns: 1fr;
	row-gap: 20px;
}
.ft-box figure {
	margin: 0 auto 0 0;
	max-width: 240px;
}
.ft-logo {
	margin: 0 0 20px;
	width: 160px;
}
address {
	margin: 80px 0 0;
}
address p {
	text-align: center;
}
}
@media screen and (max-width: 760px) {
footer .inner {
	width: calc(100% - 70px);
}
}
@media screen and (max-width: 430px) {
footer {
	padding: 60px 0 20px;
}
footer .inner {
	width: calc(100% - 40px);
}
.ft-box figure {
	margin: 0 auto;
}
.ft-info p {
	font-size: 13px;
}
address {
	margin: 60px 0 0;
}
}




/*
================================
　メインイメージ
================================
*/
.kv {
	position: relative;
	width: 100%;
	height: 55vw;
	max-height: 900px;
	margin: 0 0 60px;
	background: url(../img/common/ill_machi.svg) no-repeat bottom center;
	background-size: contain;
}
.kv:after {
	content: "";
	position: absolute;
	bottom: -599px;
	width: 100%;
	height: 600px;
	background: linear-gradient(#92d2ea 0%, #b7e1f1 15%, #fff 100%);
}
.kv-inner {
	margin: 0 auto;
	width: calc(100% - 100px);
	max-width: 1400px;
	aspect-ratio: 1400 / 700;
}
@media screen and (max-width: 960px) {
.kv {
	margin: 10px 0 60px;
}
.kv-inner {
	width: calc(100% - 40px);
}
}
@media screen and (max-width: 430px) {
.kv {
	margin: 10px 0 30px;
	height: 160vw;
	min-height: 600px;
}
.kv-inner {
	aspect-ratio: 350 / 530;
}
}


/* 下層 */
#sub-main {
	position: relative;
	width: 100%;
	height: 25vw;
	min-height: 160px;
	margin: 0 0 100px;
	background: url(../img/common/ill_machi.svg) no-repeat bottom center;
	background-size: contain;
}
#sub-main:after {
	content: "";
	position: absolute;
	bottom: -399px;
	width: 100%;
	height: 400px;
	background: linear-gradient(#92d2ea 0%, #b7e1f1 15%, #fff 100%);
}
#sub-main .inner {
	max-width: 100%;
}
#sub-main h2 {
	width: 100%;
	height: 14vw;
	min-height: 80px;
	display: grid;
	align-items: center;
}
#sub-main h2 span {
	font-family: "M PLUS 1", sans-serif;
	font-size: clamp(1.125rem, 0.704rem + 1.73vw, 2rem); /*32→18px*/
	font-weight: 700;
	font-style: normal;
	line-height: 1;
	text-align: center;
}
@media screen and (max-width: 960px) {
#sub-main {
	margin: 0 0 60px;
}
}
@media screen and (max-width: 430px) {
#sub-main {
	margin: 0 0 30px;
}
}

/*
================================
　ページトップ
================================
*/
#pagetop {
	z-index: 100;
	position: absolute;
	top: -40px;
	right: 50px;
}
#pagetop a {
	display: block;
	width: 60px;
	height: 60px;
	transition : .5s;
}
#pagetop a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
	transition : .5s;
}
@media screen and (max-width: 960px) {
#pagetop {
	top: -25px;
	right: 50px;
}
#pagetop a {
	width: 50px;
	height: 50px;
}
}
@media screen and (max-width: 430px) {
#pagetop {
	top: -20px;
	right: 20px;
}
#pagetop a {
	width: 40px;
	height: 40px;
}
}


/*
================================
　トップページ
================================
*/

/* イントロ */
.top-intro {
	margin: 0 0 120px;
}
.top-intro h3 {
	margin: 0 0 20px;
	text-align: center;
}
.top-intro h3 span {
	font-size: clamp(1.125rem, 0.704rem + 1.73vw, 2rem); /*32→18px*/
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.7;
	text-align: center;
	color: #fff;
	text-shadow: 1px 1px 6px rgba(51, 51, 51, 0.3);
}
.top-intro p {
	text-align: center;
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
}
@media screen and (max-width: 960px) {
.top-intro {
	margin: 0 0 80px;
}
}
@media screen and (max-width: 430px) {
.top-intro {
	margin: 0 0 60px;
}
}

/* 新着情報 */
.top-news {
	margin: 0 auto 120px;
}
.top-news .cmn-button1 {
	text-align: right;
}
.top-news-box {
	display: grid;
	grid-template-columns: 27% auto;
}
.top-news-box .cmn-title1 {
	position: relative;
	margin: 0;
}
.top-news-box .cmn-title1:before {
	content: "";
	position: absolute;
	top: -100px;
	left: calc(50% - 120px);
	width: 240px;
	height: 116px;
	background: url(../img/top/ill_choucho.svg) no-repeat;
	background-size: cover;
}
.top-news-box .cmn-title1 small,
.top-news-box .cmn-title1 span {
	text-align: center;
}
@media screen and (max-width: 960px) {
.top-news {
	margin: 0 auto 60px;
}
.top-news-box {
	align-items: center;
}
.top-news-box .cmn-title1:before {
	top: -50px;
	left: calc(50% - 60px);
	width: 120px;
	height: 58px;
}
}
@media screen and (max-width: 640px) {
.top-news {
	padding-top: 50px;
}
.top-news-box {
	grid-template-columns: 1fr;
	row-gap: 30px;
}
}
@media screen and (max-width: 430px) {
.top-news {
	margin: 0 auto 40px;
}
}


/* 私たちの活動 */
.top-about {
	position: relative;
	margin: 0 0 120px;
}
.top-about .inner {
	max-width: 1400px;
}
.about-box {
	margin: 0 100px 0 0;
	display: grid;
	grid-template-columns: auto 35.7%;
	column-gap: 5vw;
	align-items: center;
}
.about-box-text {
	position: relative;
	padding: 0 0 0 100px;
}
.about-box-text:before {
	content: "";
	position: absolute;
	left: 10px;
	top: 0;
	width: 21px;
	height: 317px;
	background: url(../img/top/img_aboutus.svg) no-repeat;
	background-size: cover;
}
.about-box-text .waku-blue {
	padding: 60px;
	background: #EBF6FB;
	border-radius: 30px;
}
.about-box-text .waku-blue ul {
	margin: 0 0 30px;
}
.about-box-text .waku-blue li {
	position: relative;
	margin: 0 0 10px;
	padding-left: 30px;
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
	line-height: 1.6;
}
.about-box-text .waku-blue li:before {
	content: "";
	position: absolute;
	left: 0;
	top: calc(50% - 6px);
	width: 15px;
	height: 12px;
	background: url(../img/common/icon_check.svg) no-repeat;
	background-size: cover;
}
.about-box-text .waku-blue p {
	font-weight: 700;
	color: #0496C9;
}
@media screen and (max-width: 1280px) {
.about-box {
	margin: 0;
}
.about-box-text {
	padding: 0 0 0 50px;
}
.about-box-text .waku-blue {
	padding: 30px;
}
}
@media screen and (max-width: 960px) {
.top-about {
	margin: 0 0 80px;
}
.about-box {
	margin: 0;
	grid-template-columns: 1fr;
	row-gap: 50px;
}
.about-box-text {
	order: 2;
	padding: 0 0 0 30px;
}
.about-box-text:before {
	left: 0;
	width: 10px;
	height: 151px;
}
.about-box-text .waku-blue {
	padding: 30px;
	border-radius: 20px;
}
.about-box figure {
	margin: 0 auto;
	max-width: 600px;
	order: 1;
	padding: 0 40px;
}
}
@media screen and (max-width: 430px) {
.top-about {
	margin: 0 0 60px;
}
}

/* みんなの願いは */
.top-wish {
	margin: 0 0 120px;
	padding: 115px 0 0;
}
.top-wish .cmn-title2:before {
	content: "";
	position: absolute;
	top: -115px;
	left: calc(50% - 222.5px);
	width: 445px;
	height: 89px;
	background: url(../img/top/ill_hana.svg);
	background-size: cover;
}
.top-wish .cmn-title2 span {
	text-align: center;
}
.top-wish .cmn-title2 small {
	text-align: center;
}
.wish-box {
	padding: 50px 30px 30px;
	background: #EBF6FB;
}
.wish-box p {
	margin: 0 0 50px;
	text-align: center;
}
.wish-box p span {
	color: #0496C9;
}
.wish-box-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	column-gap: 10px;
}
.wish-box-listitem {
	padding: 15px 15px 20px;
	background: #fff;
}
.wish-box-listitem h4 {
	margin: 0 0 15px;
	background: #0496C9;
	border-radius: 30px;
	text-align: center;
	line-height: 40px;
}
.wish-box-listitem h4 span {
	font-weight: 700;
	color: #fff;
}
.wish-box-listitem p {
	margin: 0;
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
}
.wish-box-listitem:nth-of-type(2) {
	background: #FBFBE2;
}
.wish-box-listitem:nth-of-type(2) h4 {
	background: #CF8E0D;
}
.wish-box-listitem:nth-of-type(2) p + p {
	margin: 16px 0 0;
}
.wish-box-listitem:nth-of-type(2) p span {
	color: #CF8E0D;
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
	font-weight: 700;
}
@media screen and (max-width: 960px) {
.top-wish {
	margin: 0 0 80px;
	padding: 60px 0 0;
}
.top-wish .cmn-title2:before {
	top: -60px;
	left: calc(50% - 140px);
	width: 280px;
	height: 56px;
}
.wish-box {
	padding: 30px 20px;
}
.wish-box p {
	margin: 0 0 30px;
	text-align: left;
}
.wish-box-list {
	grid-template-columns: 1fr;
	row-gap: 10px;
}
.wish-box-listitem {
        padding: 15px;
        display: grid;
        grid-template-columns: 30% 1fr;
        column-gap: 15px;
        align-items: center;
}
.wish-box-listitem h4 {
	margin: 0;
}
.wish-box-listitem p {
	margin: 0;
	text-align: left;
}
}
@media screen and (max-width: 430px) {
.top-wish {
	margin: 0 0 60px;
}
}

/* 施工事例 */
.top-works {
	position: relative;
	margin: 0 0 120px;
}
.top-works .cmn-title1 span, .top-works .cmn-title1 small {
	text-align: center;
}
.top-works .blog-item figure {
	aspect-ratio: 280 / 210;
}
.top-works .cmn-button1 {
	text-align: center;
}
.top-works .cmn-button1 a {
	max-width: 320px;
}
@media screen and (max-width: 960px) {
.top-works {
	margin: 0 0 80px;
}
.top-works .cmn-button1 a {
	max-width: 260px;
}
}
@media screen and (max-width: 430px) {
.top-works {
	margin: 0 0 60px;
}
}


/*
================================
　私たちの活動について
================================
*/
.page-about-intro {
	margin: 0 0 120px;
}
.page-about-intro .inner {
	padding: 100px;
	background: #fff;
	border-radius: 100px 100px 0 0;
	max-width: 1400px;
}
.page-about-intro .intro-box {
	display: grid;
	grid-template-columns: auto 35.7%;
	column-gap: 10%;
}
@media screen and (max-width: 1280px) {
.page-about-intro .inner {
	padding: 80px;
	border-radius: 80px 80px 0 0;
}
.page-about-intro .intro-box {
	column-gap: 5%;
}
}
@media screen and (max-width: 960px) {
.page-about-intro {
	margin: 0 0 80px;
}
.page-about-intro .inner {
	padding: 60px 40px;
	border-radius: 60px 60px 0 0;
}
.page-about-intro .intro-box {
	grid-template-columns: 1fr;
	row-gap: 30px;
}
}
@media screen and (max-width: 430px) {
.page-about-intro {
	margin: 0 0 60px;
}
.page-about-intro .inner {
	padding: 40px 20px;
	border-radius: 40px 40px 0 0;
}
}

.page-about-service {
	margin: 0 0 120px;
}
.page-about-service .cmn-title1 span,
.page-about-service .cmn-title1 small {
	text-align: center;
}
.service-listitem {
	margin: 0 0 40px;
}
.service-listitem h4 {
	margin: 0 0 50px;
	padding: 20px 40px;
	background: #EBF6FB;
	border-radius: 30px;
}
.service-listitem h4 span {
	color: #0496C9;
	font-weight: 700;
}
.service-listitem p {
	padding: 0 50px;
}
@media screen and (max-width: 960px) {
.page-about-service {
	margin: 0 0 80px;
}
}
@media screen and (max-width: 430px) {
.page-about-service {
	margin: 0 0 60px;
}
.service-listitem {
	margin: 0 0 30px;
}
.service-listitem h4 {
	margin: 0 0 20px;
	padding: 16px 16px;
	border-radius: 20px;
}
.service-listitem p {
	padding: 0 16px;
}
}


.page-about-example {
	margin: 0 0 120px;
}
.example-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 20px;
}
.example-list figure {
	margin: 0 0 20px;
}
.example-list h4 {
	margin: 0 0 20px;
}
.example-list h4 span {
	font-weight: 700;
}
@media screen and (max-width: 960px) {
.page-about-example {
	margin: 0 0 80px;
}
.example-list {
	grid-template-columns: repeat(2, 1fr);
	row-gap: 20px;
}
}
@media screen and (max-width: 430px) {
.page-about-example {
	margin: 0 0 60px;
}
.example-list {
	grid-template-columns: 1fr;
}
.example-list figure {
	margin: 0 0 10px;
}
.example-list h4 {
	margin: 0 0 10px;
}
}

/*
================================
　事業所概要
================================
*/
/* 代表挨拶 */
.page-office-message {
	margin: 0 0 120px;
}
.page-office-message .inner {
	padding: 100px;
	background: #fff;
	border-radius: 100px 100px 0 0;
	max-width: 1400px;
}
.message-box p {
	margin: 0 0 2em;
}
.message-box p:last-of-type {
	margin: 0;
}
.message-box .sign {
	margin: 40px 0 0 0;
	text-align: right;
}
.message-box .sign span {
	margin: 0 0 0 15px;
	font-size: clamp(1rem, 0.85rem + 0.62vw, 1.313rem); /*21→16px*/
	font-weight: 500;
}
@media screen and (max-width: 1280px) {
.page-office-message .inner {
	padding: 80px;
	border-radius: 80px 80px 0 0;
}
}
@media screen and (max-width: 960px) {
.page-office-message {
	margin: 0 0 80px;
}
.page-office-message .inner {
	padding: 60px 40px;
	border-radius: 60px 60px 0 0;
}
}
@media screen and (max-width: 430px) {
.page-office-message {
	margin: 0 0 60px;
}
.page-office-message .inner {
	padding: 40px 20px;
	border-radius: 40px 40px 0 0;
}
.message-box .sign {
	margin: 20px 0 0 0;
}
}


/* 会社概要 */
.page-office-overview {
	margin: 0 0 120px;
}
.page-office-overview .cmn-button1 {
	margin: 30px 0 0;
	text-align: right;
}
.overview-box {
	margin: 0 0 120px;
}
.overview-box .cmn-title1 small,
.overview-box .cmn-title1 span {
	text-align: center;
}
.overview-tbl a {
	position: relative;
	color: #EB7171;
	transition : .5s;
	text-decoration: underline;
}
.overview-tbl a:hover, .overview-tbl a:active {
	opacity: 0.8;
	filter: alpha(opacity=80);
	transition : .5s;
	text-decoration: none;
}
.google-map {
	margin: 0 0 40px;
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 43.75%;
}
.google-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 960px) {
.page-office-overview {
	margin: 0 0 80px;
}
.overview-box {
	margin: 0 0 80px;
}
}
@media screen and (max-width: 430px) {
.page-office-overview {
	margin: 0 0 60px;
}
.overview-box {
	margin: 0 0 60px;
}
.google-map {
	margin: 0 0 20px;
	padding-top: 120%;
}
}

/*
================================
　お問い合わせ
================================
*/
.page-contact {
	margin: 0 0 120px;
}
.page-contact .inner {
	padding: 100px 100px 0 100px;
	background: #fff;
	border-radius: 100px 100px 0 0;
	max-width: 1400px;
}
.contact-text {
	margin: 0 auto 100px;
	max-width: 1000px;
}
.contact-text p {
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
	text-align: center;
}
.contact-text .hd-tel {
	margin: 30px auto 0;
	text-align: center;
}
.contact-text .hd-tel small {
	text-align: center;
}
@media screen and (max-width: 1280px) {
.page-contact .inner {
	padding: 80px 80px 0 80px;
	border-radius: 80px 80px 0 0;
}
}
@media screen and (max-width: 960px) {
.page-contact {
	margin: 0 0 80px;
}
.page-contact .inner {
	padding: 60px 40px 0 40px;
	border-radius: 60px 60px 0 0;
}
.contact-text {
	margin: 0 auto 60px;
}
}
@media screen and (max-width: 430px) {
.page-contact {
	margin: 0 0 60px;
}
.page-contact .inner {
	padding: 40px 20px 0 20px;
	border-radius: 40px 40px 0 0;
}
.contact-text p {
	text-align: left;
}
}

/* プライバシーポリシー */
.page-contact-privacy {
	margin: 0 0 120px;
}
.page-contact-privacy .cmn-title1 small,
.page-contact-privacy .cmn-title1 span {
	text-align: center;
}
.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-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: 500;
}
.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: 960px) {
.page-contact-privacy {
	margin: 0 0 80px;
}
.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;
}
}
@media screen and (max-width: 430px) {
.page-contact-privacy {
	margin: 0 0 60px;
}
}

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

.siteform {
}
.siteform a {
	transition : .5s;
}
.siteform a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
	transition : .5s;
}
.siteform table {
}
.siteform th {
	width: 35%;
	text-align: left;
}
.siteform span.req {
	display: inline-block;
	background: #D00000;
	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 #D8D3C9;
	background: #fff;
	-webkit-appearance: none;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 0em;
}
.siteform td textarea {
	width: 100%;
}
.siteform td select {
	position: relative;
	padding: 10px 26px 10px 10px;
	min-height: 40px;
	border: 1px solid #D8D3C9;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 0em;
	background: url(../img/common/arrow_b_brown.svg) #fff no-repeat;
	background-size: 10px auto;
	background-position: right 8px center;
}
.siteform .contact-btn {
	margin: 50px auto;
	text-align: center;
}
.siteform .contact-btn .send {
	margin: 5px;
	display: inline-block;
	width: 100%;
	max-width: 260px;
	line-height: 65px;
	border: none;
	outline: none;
	background: #0496C9;
	border-radius: 30px;
	color: #fff;
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
	cursor: pointer;
	-webkit-appearance: none;
	font-family: "Noto Sans JP", sans-serif;
	font-style: normal;
}
.siteform .contact-btn .back {
	margin: 5px;
	display: inline-block;
	width: 100%;
	max-width: 260px;
	line-height: 65px;
	border: none;
	outline: none;
	background: #333;
	border-radius: 30px;
	color: #fff;
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 16→14px */
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
	cursor: pointer;
	-webkit-appearance: none;
	font-family: "Noto Sans JP", sans-serif;
	font-style: normal;
}


.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 auto;
	max-width: 600px;
}
.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 li {
	font-size: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem); /*14→10px*/
	text-align: center;
}
.siteform .thanks {
	padding: 60px 60px;
	background: #EBF6FB;
}
.siteform .thanks h3 {
	text-align: left;
	margin-bottom: 10px;
}
.siteform .thanks h3 span {
	font-size: clamp(1rem, 0.85rem + 0.62vw, 1.313rem); /*21→16px*/
	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 .thanks {
	padding: 40px 20px;
}
.siteform .contact-attn {
	margin: 20px 0;
	padding: 40px 20px;
}
.siteform .privacy-check {
	margin: 20px auto;
}
.siteform .privacy-check p {
	margin: 0 0 10px;
}
.siteform .contact-ssl {
	margin: 20px 0;
}
.siteform th {
	width: 100%;
}
}
@media screen and (max-width: 430px) {
.siteform .contact-ssl li {
	text-align: left;
}
}

/*
================================
　ブログ 一覧ページ
================================
*/
.page-blog {
	margin: 0 0 120px;
}
.page-blog .inner {
	padding: 100px;
	background: #fff;
	border-radius: 100px 100px 0 0;
	max-width: 1400px;
}
@media screen and (max-width: 1280px) {
.page-blog .inner {
	padding: 80px;
	border-radius: 80px 80px 0 0;
}
}
@media screen and (max-width: 960px) {
.page-blog {
	margin: 0 0 80px;
}
.page-blog .inner {
	padding: 60px 40px;
	border-radius: 60px 60px 0 0;
}
}
@media screen and (max-width: 430px) {
.page-blog {
	margin: 0 0 60px;
}
.page-blog .inner {
	padding: 40px 20px;
	border-radius: 40px 40px 0 0;
}
}


/*
================================
　投稿ページネーション
================================
*/
.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: #0496C9;
	font-size: clamp(0.813rem, 0.752rem + 0.3vw, 1rem); /* 16px→13px */
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0;
	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 #0496C9;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 36px;
	text-align: center;
}
.wp-pagenavi .current {/* カレント数字 */
	color: #fff;
	border: solid 1px #0496C9;
	background: #0496C9;
}
.wp-pagenavi a.page:hover {/* マウスオーバー */
	color: #fff;
	border: solid 1px #0496C9;
	background: #0496C9;
}
.wp-pagenavi .first,
.wp-pagenavi .last {/* ... */
	color: #0496C9;
}
.wp-pagenavi .extend {/* ... */
	color: #0496C9;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {/* 記号の削除 */
	color: #0496C9;
}
.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 auto 120px;
}
.page-blog-single .inner {
	padding: 100px;
	background: #fff;
	border-radius: 100px 100px 0 0;
	max-width: 1400px;
}
.page-blog-single .title {
	margin: 0 0 80px;
	padding: 0 0 30px;
	border-bottom: 1px solid #ccc;
}
.page-blog-single .title p {
	font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem); /*24→18px*/
	font-weight: 500;
	line-height: 1.5;
}
.page-blog-single .date-cate {
	margin: 20px 0 0;
	display: flex;
	align-items: center;
	justify-content: end;
}
.page-blog-single .date {
	font-size: clamp(0.625rem, 0.505rem + 0.49vw, 0.875rem); /* 14→10px */;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1;
}
.page-blog-single .cmn-button1 {
	margin: 80px auto 0;
	text-align: right;
}
@media screen and (max-width: 1280px) {
.page-blog-single .inner {
	padding: 80px;
	border-radius: 80px 80px 0 0;
}
}
@media screen and (max-width: 960px) {
.page-blog-single {
	margin: 0 auto 80px;
}
.page-blog-single .inner {
	padding: 60px 40px;
	border-radius: 60px 60px 0 0;
}
.page-blog-single .title {
	margin: 0 0 40px;
	padding: 0 0 20px;
}
.page-blog-single .date-cate {
	margin: 10px 0 0;
}
.page-blog-single .category {
	margin: 0 0 0 10px;
	padding: 3px 5px;
}
.page-blog-single .date {
	margin: 0 0 0 15px;
}
.page-blog-single .cmn-button1 {
	margin: 50px auto 0;
}
}
@media screen and (max-width: 430px) {
.page-blog-single {
	margin: 0 auto 60px;
}
.page-blog-single .inner {
	padding: 40px 20px;
	border-radius: 40px 40px 0 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;
	color: #413119;
	border-left: 3px solid #0496C9;
	padding: 8px 10px 10px 20px;
	line-height: 1.6;
}
.editlayout h3 {
	margin: 0 0 40px;
	padding: 0 0 14px;
	border-bottom: 1px solid #ccc;
	font-size: clamp(0.938rem, 0.818rem + 0.6vw, 1.313rem); /*21→15px*/
	font-weight: 500;
	letter-spacing: 0;
	color: #413119;
	line-height: 1.6;
}

.editlayout h4 {
	margin: 0 0 30px;
	padding: 10px 30px;
	color: #0496C9;
	font-size: clamp(0.875rem, 0.795rem + 0.4vw, 1.125rem); /*18→14px*/
	font-weight: 500;
	letter-spacing: 0;
	background: #EBF6FB;
	line-height: 1.6;
}
.editlayout h5 {
	margin: 0 0 20px;
	color: #0496C9;
	font-size: clamp(0.813rem, 0.752rem + 0.3vw, 1rem); /* 16→13px */
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.6;
}
.editlayout a {
	position: relative;
	color: #EB7171;
	transition : .5s;
	text-decoration: underline;
}
.editlayout a:hover, .editlayout a:active {
	opacity: 0.8;
	filter: alpha(opacity=80);
	transition : .5s;
	text-decoration: none;
}
.editlayout blockquote {
	position: relative;
	background: #fff;
	padding: 25px 85px;
	border-radius: 5px;
}
.editlayout blockquote:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "“";
	color: #D8D3C9;
	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: #D8D3C9;
	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: 500;
}
.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 {
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.editlayout th {
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	padding: 20px 30px;
	background: #EBF6FB;
	font-weight: 500;
	vertical-align: middle;
}
.editlayout td {
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	padding: 20px 30px;
	vertical-align: middle;
}
@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 {
	padding: 10px 10px;
}
.editlayout td {
	padding: 10px 10px;
}
}

