@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");

/* -----------------------------------------------------------------------
	base
----------------------------------------------------------------------- */

html {
	box-sizing: border-box;
	width: 100%;
	font-size: 62.5%;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	position: relative;
	background: #fffffc;
	color: #444;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "游ゴシック", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 2;
	text-align: left;
}

@media print, screen and (min-width: 768.5px) {
	body {
		min-width: 1160px;
	}
}

@media screen and (max-width: 768.499px) {
	body {
		min-width: 320px;
		padding-top: 10px;
		font-size: 15px;
	}
}

@media print, screen and (min-width: 768.5px) {
	body.top {
		min-width: 1440px;
	}
}

a {
	display: inline-block;
	max-width: 100%;
	color: inherit;
	text-decoration: none;
}

@media print, screen and (min-width: 768.5px) {
	a {
		transition: opacity 400ms ease;
	}

	a:hover {
		opacity: 0.7;
	}
}

button {
	font: inherit;
}

@media print, screen and (min-width: 768.5px) {
	button {
		transition: opacity 400ms ease;
	}

	button:hover {
		opacity: 0.7;
	}
}

img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

img[src*=".svg"] {
	width: 100%;
	max-width: none;
}

svg {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

@media screen and (max-width: 768.499px) {
	#bodyInner .pcOnly {
		display: none;
	}
}

@media print, screen and (min-width: 768.5px) {
	#bodyInner .spOnly {
		display: none;
	}
}

.contentIn {
	position: relative;
	width: 1100px;
	margin-right: auto;
	margin-left: auto;
}

@media screen and (max-width: 768.499px) {
	.contentIn {
		width: auto;
		padding-right: 15px;
		padding-left: 15px;
	}
}

.upper {
	text-transform: uppercase;
}

/* -----------------------------------------------------------------------
	header
----------------------------------------------------------------------- */

#header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: 18px;
	background: #fffffc;
	border-top: 4px solid #f08200;
	box-shadow: 0 2px 3px rgba(106, 106, 106, 0.1);
	line-height: 1;
	z-index: 9999;
}

@media screen and (max-width: 768.499px) {
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		max-height: 100vh;
		padding: 0;
		border: none;
		box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
		overflow: auto;
	}
}

@media screen and (max-width: 768.499px) {
	#headerInner {
		padding: 0;
	}
}

#headerHead {
	display: flex;
	justify-content: space-between;
	align-items: start;
}

@media screen and (max-width: 768.499px) {
	#headerHead {
		align-items: center;
	}
}

#headerLogo {
	flex: 0 0 auto;
	padding-top: 5px;
}

@media screen and (max-width: 768.499px) {
	#headerLogo {
		padding-top: 0;
		margin-left: 15px;
	}
}

#headerLogo a:hover {
	opacity: 1;
}

#headerLogo img {
	width: 208px;
}

@media screen and (max-width: 768.499px) {
	#headerLogo img {
		width: 160px;
	}
}

#headerInquiry {
	flex: 0 0 auto;
}

@media screen and (max-width: 768.499px) {
	#headerInquiry {
		display: none;
	}
}

#headerInquiry a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 150px;
	height: 34px;
	padding-left: 50px;
	background: url("../images/ico_mail01.svg") no-repeat 19px center/18px auto;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: 13px;
}

#headerMenuButton {
	flex: 0 0 auto;
}

@media print, screen and (min-width: 768.5px) {
	#headerMenuButton {
		display: none;
	}
}

#headerMenuButton button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 60px;
	height: 60px;
	background: #f08200;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

#headerMenuButton button .text {
	display: block;
	position: relative;
	padding-top: 28px;
	transition: 350ms ease;
	transition-property: opacity;
}

#headerMenuButton button::before,
#headerMenuButton button::after,
#headerMenuButton button .text::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	width: 34px;
	height: 2px;
	background: #fffbf7;
	border-radius: 1px;
	transform: translateX(-50%);
	transition: 350ms ease;
	transition-property: transform, top;
}

#headerMenuButton button::before {
	top: 13px;
}

#headerMenuButton button::after {
	top: 29px;
}

#headerMenuButton button .text::before {
	top: 11px;
}

@media print, screen and (min-width: 768.5px) {
	#headerMenu {
		margin-top: 30px;
	}
}

@media screen and (max-width: 768.499px) {
	#headerMenu {
		height: 0;
		overflow: hidden;
		transition: 350ms ease;
		transition-property: height;
	}
}

#headerMenu .close {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	padding-bottom: 30px;
}

@media print, screen and (min-width: 768.5px) {
	#headerMenu .close {
		display: none;
	}
}

#headerMenu .close button {
	display: flex;
	justify-content: center;
	position: relative;
	padding-top: 35px;
	color: #f08200;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
}

#headerMenu .close button::before,
#headerMenu .close button::after {
	content: "";
	display: block;
	position: absolute;
	top: 13px;
	left: 50%;
	width: 30px;
	height: 2px;
	background: currentcolor;
	border-radius: 1px;
	transform: translateX(-50%) rotate(45deg);
}

#headerMenu .close button::after {
	transform: translateX(-50%) rotate(-45deg);
}

#headerNavi .mainList,
#headerNaviPc .mainList {
	font-size: 18px;
}

@media print, screen and (min-width: 768.5px) {
	#headerNavi .mainList {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	#headerRightGroup {
		display: flex;
		align-items: start;
		gap: 56px;
	}
	
	#headerNaviPc .mainList {
		display: flex;
		align-items: center;
	}
}

@media screen and (max-width: 768.499px) {
	#headerNavi .mainList {
		border-top: 1px solid #ddd;
		font-weight: 500;
		line-height: 1.7777777778;
	}
}

#headerNavi .mainList > li,
#headerNaviPc .mainList > li {
	flex: 0 0 auto;
}

@media print, screen and (min-width: 768.5px) {
	#headerNavi .mainList > li:nth-child(n+2) {
		margin-left: 64px;
	}
	
	#headerNaviPc .mainList > li:nth-child(n+2) {
		margin-left: 40px;
	}
}

@media screen and (max-width: 768.499px) {
	#headerNavi .mainList > li {
		border-bottom: 1px solid #ddd;
	}
}

#headerNavi .mainList a,
#headerNaviPc .mainList a {
	padding: 9px 0 30px;
}

@media print, screen and (min-width: 768.5px) {
	#headerNavi .mainList a.current,
	#headerNavi .mainList a:hover,
	#headerNaviPc .mainList a.current,
	#headerNaviPc .mainList a:hover {
		background: linear-gradient(to bottom, #f08200 0%, #f08200 100%) no-repeat left bottom/100% 2px;
		opacity: 1;
	}
}

@media screen and (max-width: 768.499px) {
	#headerNavi .mainList a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 15px 30px;
	}

	#headerNavi .mainList a::after {
		content: "";
		flex: 0 0 auto;
		display: block;
		width: 11px;
		height: 16px;
		margin-left: 44px;
		background: url("../images/ico_arrow01.svg") no-repeat center/contain;
	}
}

#headerNavi .subList {
	margin-top: 38px;
	padding: 0 30px;
	line-height: 1.3;
}

@media print, screen and (min-width: 768.5px) {
	#headerNavi .subList {
		display: none;
	}
}

#headerNavi .subList > li:nth-child(n+2) {
	margin-top: 20px;
}


@media screen and (max-width: 768.499px) {
	#header.open #headerMenuButton button .text {
		opacity: 0;
	}

	#header.open #headerMenuButton button::before {
		top: 50%;
		transform: translateX(-50%) rotate(45deg);
	}

	#header.open #headerMenuButton button::after {
		top: 50%;
		transform: translateX(-50%) rotate(-45deg);
	}
}

/* -----------------------------------------------------------------------
	main
----------------------------------------------------------------------- */

#pankuzu {
	padding: 18px 0;
	font-size: 14px;
	line-height: 1.3;
}

@media screen and (max-width: 768.499px) {
	#pankuzu {
		padding: 12px 0;
		font-size: 12px;
	}
}

#pankuzu .list {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

#pankuzu .list > li {
	flex: 0 0 auto;
}

#pankuzu .list > li:nth-child(1) {
	text-transform: uppercase;
}

#pankuzu .list > li:nth-child(n+2) {
	position: relative;
	padding-left: 24px;
}

#pankuzu .list > li:nth-child(n+2)::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 5px;
	width: 8px;
	height: 8px;
	border: 1px #ccc;
	border-style: solid solid none none;
	transform: translateY(-50%) rotate(45deg);
}

#pankuzu .list > li:nth-last-child(1) {
	flex: 1 1 auto;
	width: 1px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

#pankuzu .list a:hover {
	text-decoration: underline;
	opacity: 1;
}

#pageTitle {
	padding: 27px 0;
	background: #fff8f0;
}

@media screen and (max-width: 768.499px) {
	#pageTitle {
		padding: 14px 0;
	}
}

#pageTitle .title {
	display: block;
	padding: 9px 0 9px 26px;
	border-left: 6px solid #f08200;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
}

@media screen and (max-width: 768.499px) {
	#pageTitle .title {
		padding: 3px 0 3px 16px;
		border-left-width: 4px;
		font-size: 22px;
	}
}

.gutenbergContent > :nth-child(n+2) {
	margin-top: 35px;
}

.gutenbergContent h1,
.gutenbergContent h2,
.gutenbergContent h3,
.gutenbergContent h4,
.gutenbergContent h5,
.gutenbergContent h6 {
	font-size: inherit;
	font-weight: inherit;
}

.gutenbergContent p a {
	color: inherit;
	text-decoration: underline;
}

.gutenbergContent p a:hover {
	opacity: 1;
}

.gutenbergContent strong {
	font-weight: 700;
}

.gutenbergContent em {
	font-style: italic;
}

#notFound {
	padding: 80px 0;
}

#notFound .text {
	text-align: center;
}

#notFound .text a:hover {
	text-decoration: underline;
	opacity: 1;
}

/* -----------------------------------------------------------------------
	footer
----------------------------------------------------------------------- */

#footer {
	border-top: 1px solid #ddd;
}

#footer .navigationArea {
	padding: 64px 0;
}

.footerContentIn {
	max-width: 940px;
}

@media screen and (max-width: 768.499px) {
	#footer .navigationArea {
		padding: 40px 0;
	}
}

@media print, screen and (min-width: 768.5px) {
	#footer .navigationArea .contentIn {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
	}
}

#footerLogo {
	flex: 0 0 auto;
}

@media screen and (max-width: 768.499px) {
	#footerLogo {
		margin-left: 3px;
	}
}

#footerLogo a:hover {
	opacity: 1;
}

#footerLogo img {
	width: 235px;
}

@media screen and (max-width: 768.499px) {
	#footerLogo img {
		width: 174px;
	}
}

#footerNavi {
	flex: 1 1 auto;
	margin: 2px 0 0 120px;
	line-height: 1.5714285714;
}

@media print, screen and (min-width: 768.5px) {
	#footerNavi {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
	}
}

@media screen and (max-width: 768.499px) {
	#footerNavi {
		margin: 40px 5px 0;
	}
}

#footerNavi a:hover {
	text-decoration: underline;
	opacity: 1;
}

#footerNavi .contents {
	flex: 0 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	font-size: 15px;
	font-weight: 500;
}

#footerNavi .contents .part {
	flex: 0 0 auto;
}

@media screen and (max-width: 768.499px) {
	#footerNavi .contents {
		flex-direction: column;
	}
	
	#footerNavi .contents .part {
		flex: 0 0 auto;
		width: 100%;
	}
}

#footerNavi .contents .part > :nth-child(n+2) {
	margin-top: 24px;
}

@media screen and (max-width: 768.499px) {
	#footerNavi .contents .part > :nth-child(n+2) {
		margin-top: 20px;
	}
}

#footerNavi .contents .part + .part {
	margin-left: 80px;
}

@media screen and (max-width: 768.499px) {
	#footerNavi .contents .part + .part {
		margin-left: 0;
		margin-top: 24px;
	}
}

@media screen and (max-width: 768.499px) {
	#footerNavi .contents .indent {
		display: inline-block;
		text-indent: -0.5em;
	}
}

#footerNavi .relation {
	flex: 1 1 auto;
	margin-left: 80px;
	font-size: 12px;
}

@media screen and (max-width: 768.499px) {
	#footerNavi .relation {
		margin: 40px 0 0;
	}
}

#footerNavi .relation .title {
	font-weight: 700;
}

#footerNavi .relation .links {
	margin-top: 10px;
}

#footerNavi .relation .links > :nth-child(n+2) {
	margin-top: 10px;
}

#footerNavi .relation a::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 10px;
	margin-left: 8px;
	background: url("../images/ico_window01.svg") no-repeat center/contain;
}

#footerCopy {
	padding: 10px 0;
	background: #f08200;
	color: #fff;
	font-size: 13px;
	line-height: 1;
	text-align: center;
}

#footerNavi a.external-link::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 10px;
	background-image: url("../images/ico_window01.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-left: 7px;
}

@media screen and (max-width: 768.499px) {
	#footerCopy {
		font-size: 10px;
	}
}

/* -----------------------------------------------------------------------
	title
----------------------------------------------------------------------- */

.titleStyle01 {
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
}

.titleStyle01 > * {
	display: block;
}

.titleStyle01 .ja {
	font-size: 34px;
	line-height: 1.4411764706;
}

@media screen and (max-width: 768.499px) {
	.titleStyle01 .ja {
		font-size: 26px;
		line-height: 1.4230769231;
	}
}

.titleStyle01 .en {
	margin-top: 4px;
	color: #f08200;
	text-transform: uppercase;
}

@media screen and (max-width: 768.499px) {
	.titleStyle01 .en {
		margin: 0;
		font-size: 12px;
	}
}

.titleStyle01.green .en {
	color: #4a9a06;
}

.titleStyle02 {
	position: relative;
	padding: 2px 18px 4px 26px;
	border-bottom: 3px solid #ddd;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
}

@media screen and (max-width: 768.499px) {
	.titleStyle02 {
		padding-bottom: 8px;
		font-size: 20px;
	}
}

.titleStyle02::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 8px;
	height: calc(100% + 3px);
	background: #ef8200;
}

.titleStyle03 {
	padding-bottom: 25px;
	border-bottom: 5px solid currentcolor;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
}

@media screen and (max-width: 768.499px) {
	.titleStyle03 {
		padding-bottom: 13px;
		font-size: 24px;
	}
}

.titleStyle04 {
	position: relative;
	padding-bottom: 15px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
}

@media screen and (max-width: 768.499px) {
	.titleStyle04 {
		font-size: 20px;
	}
}

.titleStyle04::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 66px;
	height: 4px;
	background: linear-gradient(to right, #ef8200 0%, #ef8200 100%) no-repeat left top/20px 100%, linear-gradient(to right, #d10d1d 0%, #d10d1d 100%) no-repeat 23px top/20px 100%, linear-gradient(to right, #4a9a06 0%, #4a9a06 100%) no-repeat right top/20px 100%;
	transform: translateX(-50%);
}

@media screen and (max-width: 768.499px) {
	.titleStyle04::after {
		height: 4px;
	}
}

.titleStyle05 {
	padding-bottom: 11px;
	border-bottom: 5px solid #f08200;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
}

@media screen and (max-width: 768.499px) {
	.titleStyle05 {
		padding-bottom: 9px;
		font-size: 24px;
	}
}

/* -----------------------------------------------------------------------
	link
----------------------------------------------------------------------- */

.linkStyle01 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 320px;
	height: 64px;
	background: #ffebd6;
	border-radius: 32px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}

@media screen and (max-width: 768.499px) {
	.linkStyle01 {
		width: 300px;
		font-size: 16px;
	}
}

.linkStyle01::after {
	content: "";
	display: block;
	width: 8px;
	height: 100%;
	margin-left: 13px;
	background: url("../images/ico_arrow01.svg") no-repeat center/contain;
}

@media screen and (max-width: 768.499px) {
	.linkStyle01::after {
		margin-left: 10px;
	}
}

.linkStyle01.green {
	background: rgba(186, 226, 150, 0.26);
}

@media screen and (max-width: 768.499px) {
	.linkStyle01.green {
		background: #e1f5cc;
	}
}

.linkStyle01.green::after {
	background-image: url("../images/ico_arrow02.svg");
}

.spring .linkStyle01 {
	background: #ffebed;
}

.spring .linkStyle01::after {
	background-image: url("../images/ico_arrow03.svg");
}

.summer .linkStyle01 {
	background: rgba(186, 226, 150, 0.26);
}

@media screen and (max-width: 768.499px) {
	.summer .linkStyle01 {
		background: #e1f5cc;
	}
}

.summer .linkStyle01::after {
	background-image: url("../images/ico_arrow02.svg");
}

.autumn-winter .linkStyle01 {
	background: #f8e9d1;
}

.autumn-winter .linkStyle01::after {
	background-image: url("../images/ico_arrow04.svg");
}

/* -----------------------------------------------------------------------
	list
----------------------------------------------------------------------- */

.listStyle01 > li {
	position: relative;
	padding-bottom: 15px;
}

@media screen and (max-width: 768.499px) {
	.listStyle01 > li {
		padding-bottom: 10px;
	}
}

.listStyle01 > li::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, #ccc 50%, transparent 50%) repeat-x left top/4px 1px;
}

.listStyle01 > li:nth-child(n+2) {
	margin-top: 14px;
}

.listStyle01 > li.nodata .title {
	margin: 0;
}

.listStyle01 a {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

@media screen and (max-width: 768.499px) {
	.listStyle01 a {
		flex-wrap: wrap;
	}
}

.listStyle01 a:hover {
	opacity: 1;
}

.listStyle01 a:hover .title {
	text-decoration: underline;
}

.listStyle01 .date {
	flex: 0 0 auto;
	color: #666;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.7;
}

@media screen and (max-width: 768.499px) {
	.listStyle01 .date {
		font-size: 12px;
	}
}

.listStyle01 .category {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 24px;
	margin-left: 25px;
	border-radius: 5px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}

@media screen and (max-width: 768.499px) {
	.listStyle01 .category {
		width: 80px;
		height: 20px;
		margin-left: 10px;
		border-radius: 3px;
		font-size: 12px;
	}
}

.listStyle01 .title {
	flex: 1 1 auto;
	margin-left: 29px;
	line-height: 1.5;
}

@media screen and (max-width: 768.499px) {
	.listStyle01 .title {
		flex: 0 0 auto;
		width: 100%;
		margin: 10px 0 0;
	}
}

.listStyle02 {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}

.listStyle02 > li {
	flex: 0 0 auto;
}

@media print, screen and (min-width: 768.5px) {
	.listStyle02 > li {
		width: calc((100% - 80px) / 3);
		margin-left: 40px;
	}

	.listStyle02 > li:nth-child(3n+1) {
		margin-left: 0;
	}

	.listStyle02 > li:nth-child(n+4) {
		margin-top: 55px;
	}
}

@media screen and (max-width: 768.499px) {
	.listStyle02 > li {
		width: calc((100% - 19px) / 2);
		margin-left: 19px;
	}

	.listStyle02 > li:nth-child(2n+1) {
		margin-left: 0;
	}

	.listStyle02 > li:nth-child(n+3) {
		margin-top: 30px;
	}
}

.listStyle02 .image {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
}

@media screen and (max-width: 768.499px) {
	.listStyle02 .image {
		border-radius: 10px;
	}
}

.listStyle02 .image::before {
	content: "";
	display: block;
	padding-top: 230px;
}

@media screen and (max-width: 768.499px) {
	.listStyle02 .image::before {
		padding-top: 67.4846625767%;
	}
}

.listStyle02 .image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.listStyle02 .head {
	margin-top: 10px;
}

@media print, screen and (min-width: 768.5px) {
	.listStyle02 .head {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
}

@media screen and (max-width: 768.499px) {
	.listStyle02 .head {
		margin-top: 18px;
	}
}

.listStyle02 .category {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 57px;
	height: 30px;
	background: #444;
	border-radius: 3px;
	color: #fff;
	font-weight: 700;
	line-height: 1;
}

@media screen and (max-width: 768.499px) {
	.listStyle02 .category {
		width: 50px;
		height: 28px;
		font-size: 14px;
	}
}

.listStyle02 .name {
	margin-left: 10px;
	font-size: 24px;
	font-weight: 700;
}

@media screen and (max-width: 768.499px) {
	.listStyle02 .name {
		margin: 7px 0 0;
		font-size: 18px;
	}
}

.listStyle02 .introduction {
	margin-top: 5px;
	line-height: 1.8125;
}

@media screen and (max-width: 768.499px) {
	.listStyle02 .introduction {
		margin-top: 3px;
	}
}

.all-season .listStyle02 .category {
	background: #ef8200;
}

.spring .listStyle02 .category {
	background: #ea6670;
}

.summer .listStyle02 .category {
	background: #4a9a06;
}

.autumn-winter .listStyle02 .category {
	background: #c68318;
}

.listStyle03 {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}

.listStyle03 > li {
	flex: 0 0 auto;
}

@media print, screen and (min-width: 768.5px) {
	.listStyle03 > li {
		width: calc((100% - 80px) / 3);
		margin-left: 40px;
	}

	.listStyle03 > li:nth-child(3n+1) {
		margin-left: 0;
	}

	.listStyle03 > li:nth-child(n+4) {
		margin-top: 60px;
	}
}

@media screen and (max-width: 768.499px) {
	.listStyle03 > li {
		width: calc((100% - 17px) / 2);
		margin-left: 17px;
	}

	.listStyle03 > li:nth-child(2n+1) {
		margin-left: 0;
	}

	.listStyle03 > li:nth-child(n+3) {
		margin-top: 40px;
	}
}

.listStyle03 a {
	display: block;
	height: 100%;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
	overflow: hidden;
}

@media screen and (max-width: 768.499px) {
	.listStyle03 a {
		border-radius: 10px;
	}
}

.listStyle03 .image {
	position: relative;
	width: 100%;
}

.listStyle03 .image::before {
	content: "";
	display: block;
	padding-top: 230px;
}

@media screen and (max-width: 768.499px) {
	.listStyle03 .image::before {
		padding-top: 67.4846625767%;
	}
}

.listStyle03 .image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.listStyle03 .textArea {
	padding: 20px 24px 30px;
}

@media screen and (max-width: 768.499px) {
	.listStyle03 .textArea {
		padding: 15px 10px;
	}
}

.listStyle03 .title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
}

@media screen and (max-width: 768.499px) {
	.listStyle03 .title {
		font-size: 18px;
	}
}

.listStyle03 .title::after {
	content: "";
	flex: 0 0 auto;
	display: block;
	width: 7px;
	height: 13px;
	margin-left: 12px;
	background: url("../images/ico_arrow01.svg") no-repeat center/contain;
}

@media screen and (max-width: 768.499px) {
	.listStyle03 .title::after {
		margin-left: 15px;
	}
}

.listStyle03 .description {
	margin-top: 21px;
	line-height: 1.8125;
}

@media screen and (max-width: 768.499px) {
	.listStyle03 .description {
		margin-top: 11px;
		font-size: 13px;
		line-height: 1.6923076923;
	}
}

/* -----------------------------------------------------------------------
	table
----------------------------------------------------------------------- */

.tableStyle01 {
	width: 100%;
	line-height: 1.3;
}

.tableStyle01,
.tableStyle01 th,
.tableStyle01 td {
	border: 1px solid #ddd;
}

.tableStyle01 th,
.tableStyle01 td {
	padding: 20px 40px;
}

.tableStyle01 th {
	width: 239px;
	background: #fffbf7;
	vertical-align: middle;
}

@media screen and (max-width: 768.499px) {
	.tableStyle01 th {
		width: auto;
		padding: 17px 15px 17px 10px;
		white-space: nowrap;
	}
}

@media screen and (max-width: 768.499px) {
	.tableStyle01 td {
		padding: 17px 15px;
	}
}

/* -----------------------------------------------------------------------
	pagination
----------------------------------------------------------------------- */

.paginationStyle01 {
	display: flex;
	justify-content: center;
	align-items: stretch;
	font-weight: 500;
	line-height: 1;
}

.paginationStyle01 .page-numbers {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid #444;
}

.paginationStyle01 .page-numbers:nth-child(n+2) {
	margin-left: 10px;
}

.paginationStyle01 .page-numbers.current {
	background: #444;
	color: #fff;
	font-weight: 700;
}

.paginationStyle01 .page-numbers.first,
.paginationStyle01 .page-numbers.last {
	display: none;
}

.paginationStyle01 .page-numbers.prev,
.paginationStyle01 .page-numbers.next {
	width: 20px;
	border: none;
	font-size: 0;
}

.paginationStyle01 .page-numbers.prev::before,
.paginationStyle01 .page-numbers.next::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border: 2px #444;
	border-style: solid none none solid;
	transform: rotate(-45deg);
}

.paginationStyle01 .page-numbers.prev {
	margin: 0;
}

.paginationStyle01 .page-numbers.next::before {
	border-style: solid solid none none;
	transform: rotate(45deg);
}

.paginationStyle01 .page-numbers.dots {
	width: auto;
	border: none;
}

/* -----------------------------------------------------------------------
	passwordInputLayout
----------------------------------------------------------------------- */

.passwordInputLayout {
	line-height: 1.5;
}

.passwordInputLayout p + p {
	margin-top: 10px;
}

.passwordInputLayout [type="password"] {
	padding: 0 5px;
}

.passwordInputLayout [type="submit"] {
	margin-left: 5px;
	padding: 2px 10px;
}
