@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=Shippori+Mincho:wght@400;700&display=swap');




/* -------------------------------------------

base

------------------------------------------- */
:root {
	--red: #8f2344;
	--pink: #dd8faf;
	--grey: #3a3a3a;
	--blue-1: #78ccd9;
	--blue-2: #009bb4;
	--brown: #ae8564;
	--bg-red: #fdeff3;
	--bg-blue: #eefcfe;
	--prime: #8f2344;
	--font-shippori: "Shippori Mincho", serif;
}
body {
	color: var(--grey);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.3rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
a {
	color: var(--grey);
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
}



/* -------------------------------------------

header

------------------------------------------- */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 8rem;
	padding: 0 8rem;
}
/* ---- summary ---- */
header .summary,
footer .summary  {
	font-size: 0.9rem;
	font-weight: bold;
	color: #b0b0b0;
	margin-bottom: 0.5rem;
}	
/* ---- h1 ---- */
header h1 {
	width: 20rem;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	header {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 6rem;
		padding: 0;
	}
	header h1 {
		width: 16rem;
	}	
}



/* -------------------------------------------

nav

------------------------------------------- */
ul.gnav-menu {
	display: flex;
	align-items: center;
}
ul.gnav-menu > li {
	font-weight: 500;
	white-space: nowrap;
}
ul.gnav-menu > li:not(:last-child) {
	margin-right: 3rem;
}
ul.gnav-menu a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 8rem;
	position: relative;
	line-height: 1.7;
}
ul.gnav-menu a span {
	color: var(--pink);
	font-weight: 900;
	font-size: 1.1rem
}
ul.gnav-menu a:hover {
	opacity: 1;
}
ul.gnav-menu a::before {
	content: "";
	transition: ease-in-out .3s;
	opacity: 0;
	width: 100%;
	height: 0.5rem;
	background: #f4dfe5;
	position: absolute;
	left: 0;
	bottom: 0;	
}
ul.gnav-menu a:hover::before {
	opacity: 1;
}



/* -------------------------------------------

footer

------------------------------------------- */
footer .wrap {
	display: flex;
	justify-content: space-between;
	padding: 5rem 8rem;
}
footer .logo a {
	display: block;
	width: 20rem;
}
footer nav {
	display: flex;
	font-weight: 500;
}
footer nav ul:not(:last-of-type) {
	margin-right: 6rem;
}
footer nav ul li:not(:last-child) {
	margin-bottom: 1.5rem;
}
footer nav a {
	display: flex;
	align-items: center;
}
footer nav a::before {
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--pink);
	margin-top: 0.15rem;
	margin-right: 0.5rem;
}
footer small {
	display: block;
	text-align: center;
	font-size: 1rem;
	background: #555;
	color: #adadad;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 8rem;
	height: 4.8rem;
}
@media screen and (max-width: 768px) {
	footer {
		box-shadow: 0 0 1rem rgba(0,0,0,0.3);
	}
	footer .wrap {
		flex-direction: column;
		align-items: center;
		padding: 3rem 0 0 0;
	}
	footer .logo a {
		display: block;
		width: 20rem;
	}
	footer nav {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	footer nav ul:not(:last-of-type) {
		margin-right: 0;
		margin: 3rem 0;
	}
	footer nav ul:first-of-type {
		margin-right: 4rem;
	}
	footer nav ul:last-of-type {
		width: 100%;
		display: flex;
	}
	footer nav ul li:not(:last-child) {
		margin-bottom: 1rem;
	}
	footer nav ul:last-of-type {
		background: #f7f7f7;
		position: relative;
		padding: 1.5rem 0;
	}
	footer nav ul:last-of-type::before {
		content: "";
		width: 0.12rem;
		height: 50%;
		background: #555555;
		position: absolute;
		left: 50%;
		top: 25%;
	}
	footer nav ul:last-of-type li {
		width: 50%;
		text-align: center;
	}
	footer nav ul:last-of-type li:not(:last-child) {
		margin-bottom: 0;
	}
	footer nav ul:last-of-type li a {
		justify-content: center;
	}
	footer nav ul:last-of-type li a::before {
		display: none;
	}
	footer small {
		padding: 0;
		justify-content: center;
	}
}



/* -------------------------------------------

layout

------------------------------------------- */
/* ---- base-width ---- */
.base-width {
	width: 88rem;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
	}
}
/* ---- page-top ---- */
#page-top {
    position: fixed;
	bottom: 0.7rem;
	right: 1rem;	
	z-index: 999;	
}
#page-top a {
	background: var(--red);
	color: #fff;	
	width: 3.4rem;
	height: 3.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 1.6rem;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {

}



/* -------------------------------------------

style

------------------------------------------- */
/* ---- heading ---- */
.heading-1 {
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	line-height: 1;
	background: url(../img/bg-ttl.png) no-repeat left top;
	background-size: auto 100%;
	height: 7rem;
	padding-left: 1rem;
	padding-top: 1rem;
}
.heading-1 .en {
	display: flex;
	align-items: flex-end;
	font-family: var(--font-shippori);
	font-weight: bold;
	font-size: 3.2rem;
	color: var(--pink);
}
.heading-1.blue .en {
	color: var(--blue-1);
}
.heading-1 .en img {
	width: 2.5rem;
	margin-left: 1rem;
}
.heading-1 .jp {
	font-size: 1rem;
	margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
	.heading-1 .en {
		font-size: 3.6rem;
	}
}
.heading-2 {
	color: var(--red);
	text-align: center;
	line-height: 1;
	margin-bottom: 5rem;
	font-size: 2.4rem;
	border-bottom: solid 0.15rem var(--red);
	padding-bottom: 1.5rem;
}
.heading-2 .en {
	font-size: 1.2rem;
	color: var(--pink);
	font-weight: 900;
	display: block;
	margin-top: 1rem;
}
.heading-2.blue {
	color: var(--blue-2);
	border-bottom: solid 0.15rem var(--blue-2);
}
.heading-2.blue .en {
	color: var(--blue-1);
}
.heading-3 {
	background: var(--red);
	color: #fff;
	border-radius: 0.4rem;
	padding: 1.5rem 2.5rem 1.65rem 2.5rem;
	font-size: 1.6rem;
	margin-bottom: 1.5rem;
}
.heading-3.blue {
	background: var(--blue-1);
}

/* ---- more ---- */
.more-wrap {
	margin-top: 6rem;
}
.more {
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 30rem;
	padding: 1.8rem 0 2rem 0;
	margin: 0 auto;
	border-radius: 0.3rem;
	font-weight: 500;
	position: relative;
	box-shadow: 0.3rem 0.3rem 0.2rem rgba(0,0,0,0.4)
}
.more i {
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translate(0,-50%);
	font-size: 1rem;
}
.more.red {
	background: var(--red);
}
.more.blue {
	background: var(--blue-2);
}



/* -------------------------------------------

hamburger

------------------------------------------- */
.gnav-sp {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
	background: #fff;	
}
.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.gnav-sp-menu li {
	font-size: 1.6rem;
	text-align: center;
	font-weight: 500;
	line-height: 1.4;
}
.gnav-sp-menu li span {
	display: block;
	font-weight: 900;
	color: var(--pink);
	font-size: 1.2rem;
	margin-top: 0.2rem;
}
.gnav-sp-menu li a {
	display: block;
	padding: 1.2rem 0;
	white-space: nowrap;
}
/* toggle */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: transparent;
}
.toggle-btn span {
	display: block;
	position: absolute;
	left: 1.5rem;
	width: 3rem;
	height: 0.2rem;
	background-color: #3a3a3a;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 1.9rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.7rem;
	width: 2.5rem;
	left: 2rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.5rem;
	width: 2rem;
	left: 2.5rem;
}
/* open */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span:nth-child(1) {
	-webkit-transform: translateY(0.8rem) rotate(-45deg);
	transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	-webkit-transform: translateY(-0.8rem) rotate(45deg);
	transform: translateY(-0.8rem) rotate(45deg);
	width: 3rem;
	left: 1.5rem;
}



/* -------------------------------------------

class

------------------------------------------- */
/* txt-vertical */
.txt-vertical {
	writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
	.txt-vertical.not {
		writing-mode: horizontal-tb;
		white-space: normal;
	}
}
/* list */
ul.list-group li {
	margin-left: 2rem;
	list-style: disc;
}
ul.list-group li:not(:last-child) {
	margin-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
	ul.list-group li:not(:last-child) {
		margin-bottom: 1.2rem;
	}
}
/* prepare */
.prepare {
    text-align: center;
    padding: 8rem 0;
    font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.3em;
}
/* map */
.gmap iframe {
	width: 100%;
	height: 36rem;
}
.gmap.grey iframe {
	filter:grayscale(100%);
}
/* display */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}
/* margin */
.mb-10 { margin-bottom: 1rem !important; }
.mb-15 { margin-bottom: 1.5rem !important; }
.mb-20 { margin-bottom: 2.0rem !important; }
.mb-25 { margin-bottom: 2.5rem !important; }
.mb-30 { margin-bottom: 3.0rem !important; }
.mb-35 { margin-bottom: 3.5rem !important; }
.mb-40 { margin-bottom: 4.0rem !important; }
.mb-45 { margin-bottom: 4.5rem !important; }
.mb-50 { margin-bottom: 5.0rem !important; }
.mb-55 { margin-bottom: 5.5rem !important; }
.mb-60 { margin-bottom: 6.0rem !important; }
.mb-65 { margin-bottom: 6.5rem !important; }
.mb-70 { margin-bottom: 7.0rem !important; }
.mb-75 { margin-bottom: 7.5rem !important; }
.mb-80 { margin-bottom: 8.0rem !important; }
.mb-85 { margin-bottom: 8.5rem !important; }
.mb-90 { margin-bottom: 9.0rem !important; }
.mb-95 { margin-bottom: 9.5rem !important; }
.mb-100	{ margin-bottom: 10.0rem !important; }



/* -------------------------------------------

fade

------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(2rem);
}
.fade.is-animation {
    animation: fade 0.5s ease;
    animation-fill-mode: both;
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}



/* -------------------------------------------

記事一覧

------------------------------------------- */
.article-list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 10;
}
.article-list li {
    width: calc((100% - 4rem) / 3);
    margin-right: 2rem;
	background: #fff;
    box-shadow: 0.2rem 0.5rem 0.6rem rgba(0,0,0,0.3);	
}
.article-list li:nth-child(3n) {
    margin-right: 0;
}
.article-list li:nth-child(n + 4) {
    margin-top: 2.5rem;
}
.article-list figure img {
	height: 18rem;
	object-fit: cover;
}
.article-list dl {
	padding: 1.5rem;
}
.article-list dt {
    color: var(--red);
    font-weight: 900;
    margin-bottom: 0.5rem;
}
.article-list.blue dt {
	color: #425682;
}
@media screen and (max-width: 768px) {
	.article-list {
		display: block;
	}
	.article-list li {
		width: 100%;
		margin-right: 0;
	}
	.article-list li:not(:last-child) {
		margin-bottom: 3rem;
	}
	.article-list li:nth-child(n + 4) {
		margin-top: 0;
	}
	.article-list figure img {
		height: 25rem;
	}
}
/* ---- narrow ---- */
.article-list.narrow figure img {
	height: 13rem;
}
.article-list.narrow dl {
	padding: 1.0rem 1.3rem;
	font-size: 1.1rem;
}
.article-list.narrow dt {
    margin-bottom: 0.2rem;
}
@media screen and (max-width: 768px) {
	.article-list.narrow figure img {
		height: 25rem;
	}
	.article-list.narrow dl {
		padding: 1.5rem;
		font-size: 1.3rem;
	}
	.article-list.narrow dt {
		margin-bottom: 0.5rem;
	}
}



/* -------------------------------------------

下層レイアウト

------------------------------------------- */
/* ---- article ---- */
article.low {
	display: flex;
}
article.low .contents {
	padding-left: calc((100% - 96rem) / 2);
	padding-right: 4rem;
	padding-top: 4rem;
	padding-bottom: 6rem;
	width: 68%;
	background: url(../img/bg-deco-1.jpg) no-repeat left -10rem top -10rem;
	background-size: 60rem auto;
}
article.low aside {
	background: #f7f7f7;
	padding-right: calc((100% - 96rem) / 2);
	padding-bottom: 3rem;
	padding-left: 3rem;
	padding-top: 8rem;
	width: 32%;
	display: flex;
	flex-direction: column;
}
article.low aside > * {
	margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
	article.low {
		display: block;
	}
	article.low .contents {
		padding: 2rem 2rem 4rem 2rem;
		width: 100%;
		background: url(../img/bg-deco-1.jpg) no-repeat left -10rem top -10rem;
		background-size: 40rem auto;
	}
	article.low aside {
		padding: 4rem 2rem;
		width: 100%;
		background: none;
	}
	article.low aside > *:not(:last-of-type) {
		margin-bottom: 3rem;
	}
}
/* ---- breadcrumbs ---- */
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	font-size: 1.1rem;
	margin-bottom: 6rem;
}
.breadcrumbs span {
	display: flex;
	align-items: center;
}
.breadcrumbs span:not(:last-child) {
	white-space: nowrap;
}
.breadcrumbs span:not(:last-child)::after {
	content: "";
	width: 0.6rem;
	height: 0.6rem;
	border-top: solid 0.12rem var(--grey);
	border-right: solid 0.12rem var(--grey);
	transform: rotate(45deg);
	display: block;
	box-sizing: border-box;
	margin-top: 0.1rem;
	margin-right: 1rem;
	margin-left: 1rem;
}
@media screen and (max-width: 768px) {
	.breadcrumbs {
		margin-bottom: 3rem;
		font-size: 0.9rem;
		gap: 0.2rem 0;
	}
}
/* ---- side-article ---- */
.side-article {
	background: #fff;
	box-shadow: 0 0 0.6rem rgba(0,0,0,0.3);
	padding: 1.2rem 1.5rem 3rem 1.5rem;
}
.side-article dt {
	color: var(--blue-2);
	font-weight: 500;
	letter-spacing: 0.2em;
	text-align: center;
	font-size: 1.5rem;
	border-bottom: solid 0.12rem var(--blue-2);
	padding-bottom: 0.8rem;
	margin-bottom: 1.5rem;
}
.side-article li a {
	display: flex;
}
.side-article li:not(:last-child) {
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: solid 0.12rem #eee;
}
.side-article li a figure {
	width: 8rem;
}
.side-article li a figure img {
	height: 8rem;
	object-fit: cover;
}
.side-article li a > div {
	width: calc(100% - 8rem);
	padding-left: 0.8rem;
	font-size: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	line-height: 1.5;
}
.side-article li a > div > div {
	color: #e7677e;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-weight: bold;
	font-size: 0.9rem;
	border-bottom: solid 0.12rem var(--pink);
}
.side-article li a > div > div i {
	margin-left: 0.5rem;
	font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
	.side-article {
		padding: 1.5rem 2rem 3.5rem 2rem;
	}
	.side-article dt {
		font-size: 2rem;
		padding-bottom: 1rem;
		margin-bottom: 1.5rem;
	}
	.side-article li a figure {
		width: 10rem;
	}
	.side-article li a figure img {
		height: 10rem;
	}
	.side-article li a > div {
		width: calc(100% - 10rem);
		padding-left: 1.5rem;
		font-size: 1.3rem;
	}
	.side-article li a > div > div {
		font-size: 1.3rem;
	}
	.side-article li a > div > div i {
		font-size: 1.8rem;
	}
	.side-bnr {
		order: 3;
	}
	.side-article.popular {
		order: 1;
	}
	.side-article.latest {
		order: 2;
	}
}


/* -------------------------------------------

404ページ

------------------------------------------- */
.not-found {
	padding: 6rem 0;
}

.not-found-img {
}

.not-found-title {
	margin-top: 6rem;
	font-size: 2rem;
	font-weight: bold;
}

.not-found-text {
	margin-top: 2rem;
	font-size: 1.2rem;
	line-height: 2;
}

.wp-block-image a {
    display: flex;
    gap: 1rem;
}

/*colors*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.pagination .arrow, .pagination .num, .pagination .more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  color: #8f2344;
  background-color: #ffffff;
  border-radius: 3em;
  margin: 10px 5px;
  font-weight: bold;
  transition: 0.5s;
}
.pagination .arrow img, .pagination .num img, .pagination .more img {
  filter: invert(18%) sepia(75%) saturate(1755%) hue-rotate(315deg) brightness(91%) contrast(94%);
  width: 24px;
  height: 24px;
}
.pagination .arrow:hover, .pagination .num:hover, .pagination .more:hover {
  background-color: #dff6ff;
}
.pagination .more {
  background-color: unset;
}
.pagination .more:hover {
  background-color: unset;
}
.pagination .arrow.left img, .pagination .arrow.right img {
  width: 20px;
  height: 20px;
}
.pagination .num.active {
  background-color: #8f2344;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .pagination .arrow, .pagination .num, .pagination .more {
    margin: 10px 2px;
  }
}/*# sourceMappingURL=pagination.css.map */