@charset "UTF-8";

/* 共通 */
* {
	min-width: 0;
	min-height: 0;
}

/* 共通 */
body {
	margin: 0;
	padding: 0;
}

.main {
	padding-top: 88px;
}
@media (max-width: 600px) {
	.main {
		padding-top: 0px;
	}
}
p,
h1,
h2,
h3,
h4,
h5,
ul,
li,
a,
div {
	color: #333333;
	letter-spacing: 26;
	font-family: "Yu Gothic", "YuGothic", "ユゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, メイリオ, sans-serif;
	font-size: 16px;
	letter-spacing: 1.8px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a {
	margin: 0;
	padding: 0;
}

ul,
li {
	list-style: none;
}

a {
	text-decoration: none;
	display: block;
}

a:hover {
	opacity: 0.8;
	transition: 0.3s;
	text-decoration: none;
}

@media (max-width: 600px) {
	.pc {
		display: none;
	}
}

@media (max-width: 1150px) {
	.pc-p {
		display: none;
	}
}

.pad {
	display: none;
}

@media (max-width: 1150px) {
	.pad {
		display: block;
	}
}

.sp {
	display: none;
}

@media (max-width: 600px) {
	.sp {
		display: block;
	}
}

.wrap {
	max-width: 80%;
	/* full-width 1400pxに対して、1000px maxを想定 */
	margin: 0 auto;
}

@media (max-width: 800px) {
	.wrap {
		max-width: 100%;
		padding: 0 3%;
	}
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fixed {
	position: fixed;
}

div img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	vertical-align: top;
}

.inner-b {
	max-width: 1150px;
	margin: 0 auto;
}

@media (max-width: 1150px) {
	.inner-b {
		max-width: 95%;
	}
}

@media (max-width: 600px) {
	.inner-b {
		max-width: 100%;
		padding: 0 3%;
		box-sizing: border-box;
	}
}

.inner {
	max-width: 1000px;
	margin: 0 auto;
}

@media (max-width: 1150px) {
	.inner {
		max-width: 90%;
	}
}

@media (max-width: 600px) {
	.inner {
		max-width: 100%;
		padding: 0 3%;
		box-sizing: border-box;
	}
}

.more-btn {
	width: 280px;
}

.more-btn a {
	padding: 20px 0;
	padding-left: 30px;
	box-sizing: border-box;
	font-size: 17px;
	font-weight: bold;
	color: #003D20;
	border: 1px solid #003D20;
	border-radius: 40px;
}

.more-btn a::after {
	content: "";
	display: inline-block;
	width: 30px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background-image: url(/wp-content/uploads/2023/06/arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.more-btn a:hover {
	color: #fff;
	background-color: #003D20;
}

.more-btn a:hover:after {
	background-image: url(/wp-content/uploads/2023/06/arrow-r.png);
}

/* header */
#header {
	position: fixed;
	width: 100%;
	z-index: 100;
	background-color: #F8F8F4;
}

@media (max-width: 1150px) {
	#header {
		position: relative;
	}
}

.header-wrap {
	width: 100%;
	max-width: 1150px;
	align-items: center;
	padding: 20px 30px;
	box-sizing: border-box;
	z-index: 1;
	background-color: #F8F8F4;
}

.header-wrap .header-logo {
	width: 20%;
}

.header-wrap .header-logo a {
	height: 100%;
}

.header-wrap .header-logo a img {
	width: auto;
	height: 30px;
}

.header-wrap .header-menu {
	width: 80%;
}

@media (max-width: 1150px) {
	.header-wrap .header-menu {
		display: none;
	}
}

.header-wrap .header-menu ul {
	justify-content: flex-end;
	align-items: center;
}

.header-wrap .header-menu ul li {
	margin-right: 20px;
}

.header-wrap .header-menu ul li:last-child {
	margin-right: 0;
}

.header-wrap .header-menu ul li a {
	color: #003D20;
	font-weight: bold;
}

.header-wrap .header-menu ul .contact a {
	display: block;
	padding: 10px 20px;
	box-sizing: border-box;
	background-color: #003D20;
	color: #fff;
	border-radius: 40px;
	align-items: center;
}

.header-wrap .header-menu ul .contact a:before {
	content: "";
	width: 20px;
	height: 16px;
	display: inline-block;
	margin-right: 10px;
	background-image: url(/wp-content/uploads/2023/06/logo008.png);
	background-size: contain;
	background-repeat: no-repeat;
}

/*ハンバーガーメニュー*/
nav {
	display: block;
	position: fixed;
	top: 0;
	right: -300px;
	bottom: 0;
	width: 300px;
	background: #ffffff;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all 0.5s;
	z-index: 3;
	opacity: 0;
}

nav .inner {
	padding: 75px 25px;
}

nav .inner ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

nav .inner ul li {
	position: relative;
	margin: 0;
	border-bottom: 1px solid #333;
}

nav .inner ul li a {
	display: block;
	font-size: 14px;
	padding: 1em;
	text-decoration: none;
	transition-duration: 0.2s;
	color: #003D20;
	font-weight: bold;
}

nav .inner ul li a:hover {
	background: #e4e4e4;
}

@media (max-width: 600px) {
	nav {
		right: -220px;
		width: 220px;
	}
}

.toggle_btn {
	display: none;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0, -50%);
	width: 20px;
	height: 20px;
	transition: all 0.5s;
	cursor: pointer;
	z-index: 3;
}

@media (max-width: 1150px) {
	.toggle_btn {
		display: block;
		z-index: 10;
		position: fixed;
		top: 35px;
		width: 55px;
		height: 55px;
		background-color: #133739;
		padding: 15px;
		box-sizing: border-box;
		border-radius: 50%;
	}
}

.toggle_btn .toggle_line {
	width: 20px;
	height: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.toggle_btn .toggle_line span {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 4px;
	transition: all 0.5s;
}

.toggle_btn .toggle_line span:nth-child(1) {
	top: 0;
}

.toggle_btn .toggle_line span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.toggle_btn .toggle_line span:nth-child(3) {
	bottom: 0px;
}

.toggle_btn.open span {
	color: #003D20;
}

.toggle_btn.open span:nth-child(1) {
	top: 50%;
	transform: translateY(50%) rotate(-315deg);
}

.toggle_btn.open span:nth-child(2) {
	opacity: 0;
}

.toggle_btn.open span:nth-child(3) {
	top: 50%;
	transform: translateY(50%) rotate(315deg);
}

.open nav {
	right: 0;
	opacity: 1;
}

.open #mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.8;
	z-index: 2;
	cursor: pointer;
}

#mask {
	display: none;
	transition: all 0.5s;
}

/* top scroll */
.top_jump {
	display: none;
	visibility: hidden;
	width: 60px;
	height: 60px;
	background-color: #666666;
	position: fixed;
	z-index: 999;
	bottom: 0;
	right: 0;
	transition: 0.6s;
	opacity: 0;
}

.top_jump::before {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 8px;
	height: 8px;
	border-top: 2px solid #dddddd;
	border-right: 2px solid #dddddd;
	transform: translate(-50%, -15%) rotate(-45deg);
}

.view {
	visibility: visible;
	opacity: 1;
}

.top_jump a {
	display: block;
	height: 100%;
}

/* header */
#content {
	padding: 110px 0 80px 0;
}

@media (max-width: 600px) {
	#content {
		padding: 50px 0 30px 0;
	}
}

#content:before {
	content: "";
	display: block;
	height: 100px;
	width: 100%;
	background-color: #F8F8F4;
	position: absolute;
	top: 50px;
	left: 0;
	display: none;
}

#content::after {
	content: "";
	display: block;
	height: 100px;
	width: 100%;
	background-image: url(/wp-content/uploads/2023/06/wave.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 100px;
	left: 0;
	display: none;
}

@media (max-width: 600px) {
	#content::after {
		background-image: url(/wp-content/uploads/2023/06/back008.png);
	}
}

/* footer */
.footer {
	padding: 70px 0 15px 0;
	box-sizing: border-box;
	background-image: url(/wp-content/uploads/2023/06/back05-e1686885245591.png);
	background-size: contain;
	background-repeat: repeat;
	background-position: top;
	background-color: #fff;
}

@media (max-width: 1150px) {
	.footer {
		padding: 50px 0 15px 0;
		background-size: cover;
		background-image: url(/wp-content/uploads/2023/06/sp-foot.png);
	}
}

.footer .inner {
	justify-content: space-between;
}

@media (max-width: 600px) {
	.footer .inner .left {
		width: 100%;
	}
}

.footer .inner .left .logo {
	height: 40px;
	margin-bottom: 40px;
}

.footer .inner .left .logo img{
	width:auto;
}

.footer .inner .left .area {
	color: #fff;
	padding-left: 80px;
	box-sizing: border-box;
}

@media (max-width: 600px) {
	.footer .inner .right {
		width: 100%;
		margin-top: 50px;
		text-align: center;
	}
}

.footer .inner .right .list {
	margin-bottom: 80px;
	border-left: 1px solid #809294;
	padding-left: 20px;
	box-sizing: border-box;
}

@media (max-width: 600px) {
	.footer .inner .right .list {
		margin: 0 auto;
		margin-bottom: 50px;
		border: none;
		text-align: center;
		padding: 0;
	}

	.footer .logo-sp img {
		height: 80px;
	}

	.footer .logo-sp {
		height: 80px !important;
		margin-bottom: 10px !important;
		text-align:center;
	}

	.footer .inner .left .area {
		text-align: center;
		padding-left: 0px;
	}
}

.footer .inner .right .list .url {
	margin-bottom: 15px;
}

.footer .inner .right .list .url a {
	color: #A2B46D;
	line-height: 1;
}

.footer .inner .right .copy_right {
	color: #637B7E;
	text-align: right;
}

@media (max-width: 600px) {
	.footer .inner .right .copy_right {
		text-align: center;
	}
}

/*# sourceMappingURL=common.css.map */

/* 追記 */

.news-content .headline {
	text-align: left;
}

.purpose-content .subtitle {
	margin: 0 auto 20px auto;
}

.headline h3 {
	font-size: 38px;
	display: block;
	color: #133739;
	margin-bottom: 20px;
	line-height: 1;
}

.headline .subtitle {
	height: 10px;
	margin-bottom: 50px;
	width: auto;
	display: block;
	margin-bottom: 25px;
}

.headline .border {
	width: 70px;
	height: auto;
}

.outline-content .subtitle {
	margin: 0 auto 20px auto;
}

@media (max-width:700px) {
	.headline h3 {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.outline-content .headline {
		margin-bottom: 30px !important;
	}

	.outline-content .row {
		padding: 10px !important;
	}
}

.search-cont .inner {
	z-index: 1;
	padding-top: 60px;
}

.search-cont .inner .left {
	width: calc(80% - 70px);
	margin-right: 70px;
}

@media (max-width: 600px) {
	.search-cont .inner .left {
		width: 100%;
		margin-right: 0px;
		margin-bottom: 20px;
	}
	.search-cont .inner {
		padding-top: 0px;
	}
}

.inner .left .search-form {
	max-width: 60%;
	width: 100%;
	margin: 0 auto 30px auto;
}

.inner .left .search-form label {
	width: calc(100% - 110px);
	margin-right: 20px;
}

.inner .left .search-form label input {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	display: block;
}

.inner .left .search-form button {
	appearance: none;
	font-size: 16px;
	padding: 5px 0;
	box-sizing: border-box;
	width: 90px;
	border: none;
	background-color: #133739;
	color: #fff;
	border-radius: 30px;
}

.inner .left .event-content .headline {
	height: 70px;
	margin-bottom: 50px;
}

@media (max-width: 600px) {
	.inner .left .event-content .headline {
		height: 40px;
	}

	.inner .left .search-form {
		max-width: 100%;
	}
}

.inner .left .event-content .headline img {
	width: auto;
}

.inner .left .event-content .list .box {
	width: calc(50% - 27px);
	margin-right: 50px;
	margin-bottom: 30px;
	border: 1px solid #7F7437;
}

@media (max-width: 800px) {
	.inner .left .event-content .list .box {
		width: 100%;
		margin-right: 0px;
	}
}

.inner .left .event-content .list .box:nth-child(2n) {
	margin-right: 0;
}

.inner .left .event-content .list .box:nth-last-child(-n+2) {
	margin-bottom: 0;
}

@media (max-width: 600px) {
	.inner .left .event-content .list .box:nth-last-child(-n+2) {
		margin-bottom: 30px;
	}
	
	.inner .left .event-content .list .box:last-child {
		margin-bottom: 0px;
	}
}

.inner .left .event-content .list .box .content {
	padding: 15px 20px;
	box-sizing: border-box;
	background-color: #fff;
}

.inner .left .event-content .list .box .content .info {
	align-items: flex-start;
	margin-bottom: 10px;
}

.event-content .list .box .content .info .right .time-area {
    margin-bottom: 20px;
}

.inner .left .event-content .list .box .content .info .date {
	color: #7F7437;
	font-size: 14px;
	margin-right: 15px;
	padding-right: 10px;
	box-sizing: border-box;
	border-right: 1px solid #7F7437;
}

.inner .left .event-content .list .box .content .info .date span {
	display: block;
	font-size: 24px;
}

.inner .left .event-content .list .box .content .info .time-area .time {
	font-size: 14px;
	font-weight: bold;
	color: #222222;
}

.inner .left .event-content .list .box .content .info .time-area .area {
	font-size: 14px;
	font-weight: bold;
	color: #777777;
}

.inner .left .event-content .list .box .content .title {
	color: #003D20;
	font-size: 20px;
	font-weight: bold;
}

.inner .right {
	width: 20%;
}

@media (max-width: 600px) {
	.inner .right {
		width: 100%;
	}
}

.inner .right .headline {
	width: 100%;
	padding-bottom: 15px;
	box-sizing: border-box;
	border-bottom: 1px solid #7F7437;
	margin-bottom: 30px;
	font-size:25px;
	font-weight: bold;
	color: #133739;
}

.inner .right .headline img {
	width: auto;
	height: 15px;
}

.inner .right ul {
	padding-left:10px;
}

.inner .right ul li {
	width: 100%;
	border-bottom: 1px solid #222222;
}

.inner .right ul li a {
	color: #003D20;
	position: relative;
}

.inner .right ul li a:after {
	content: "";
	width: 5px;
	height: 10px;
	background-image: url(/wp-content/uploads/2023/06/arrow01.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.event-content ul.page-numbers {
	max-width: 50%;
	margin: 0 auto;
	margin-top: 70px;
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
}

@media (max-width: 600px) {
	.event-content ul.page-numbers {
		max-width: 100%;
	}

	.inner .right ul li {
		margin-bottom: 60px;
	}
}

.event-content ul.page-numbers li span {
	width: 48px;
	height: 48px;
	border: 1px solid #133739;
	border-radius: 50%;
	margin-right: 10px;
	border-radius: 50%;
	display: block;
	text-align: center;
	line-height: 48px;
	background-color: #133739;
	border-radius: 50%;
	color: #fff;
	margin-right: 10px;
}

.event-content ul.page-numbers li a {
	width: 48px;
	height: 48px;
	border: 1px solid #133739;
	border-radius: 50%;
	margin-right: 10px;
	border-radius: 50%;
	line-height: 48px;
	text-align: center;
	color: #133739;
	margin-right: 10px;
}

.event-content ul.page-numbers li a.next {
	margin-left: 50px;
	margin-right: 0;
}

.event-content ul.page-numbers li a.next {
	margin-right: 50px;
}

.event-content .list .box .content .info .left{
	width: 70px;
    margin-right: 20px;
}

.event-content .list .box .content .info .right{
	width: calc(100% - 90px);
}

.slick-track {
	display: flex;
}

.slick-slide {
	height: auto !important;
}
.single-content .image{
	max-width:50%;
}

@media (max-width:600px){
	.project-content .inner .list .box a .content{
		height:190px;
	}
	.single-content .image{
		max-width:100%;
	}
	.single-content .inner span{
		    overflow-wrap: break-word;
	}
}

