@charset 'utf-8';

body {
	font-family: "BIZ UDPGothic", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.875;
	color: #3B4043;
	background-color: #fff;
	position: relative;
}
body.home {
	opacity: 0;	
	-webkit-animation: mv-animation 0.3s ease 0.5s 1 forwards;
	animation: mv-animation 0.3s ease 0.5s 1 forwards;
}
@-webkit-keyframes mv-animation {
  100% {
    opacity: 1;
  }
}
@keyframes mv-animation {
  100% {
    opacity: 1;
  }
}
body.navi-open {
/*	background-color: #D6D6D6;*/
/*	filter: brightness(0.5);*/
}
main {
	margin-top: 77px;
}
section {
	padding: 5rem 0;
	position: relative;
}
@media (min-width:992px) {
	main {
		margin-top: 9.3rem;
	}
	section {
		padding: 10rem 0;
	}
}
a {
	display: block;
	opacity: 1;
	transition: .2s;
	cursor: pointer;
}
a:hover {
	opacity: .8;
}
img {
	width: 100%;
}
.meiryo {
	font-family: "meiryo", "BIZ UDPGothic", sans-serif;
	letter-spacing: 0.05em;
	font-style: italic;
}
.din2014 {
	font-family: "din-2014", "BIZ UDPGothic", sans-serif;
	letter-spacing: 0.05em;
	font-style: italic;
}
.yumincho {
	font-family: "yu-mincho-pr6n", "BIZ UDPGothic", sans-serif;
}
.italic {
	font-style: italic;
}
.color-green {
	color: #2E7568;
}
.color-white {
	color: #fff;
}
.color-red {
	color: #E50000;
}
.color-black {
	color: #3B4043;
}
.bold {
	font-weight: 700;
}
.fs16 {
	font-size: 16px;
}
.fs22 {
	font-size: 2.2rem;
}
.fs25 {
	font-size: 2.5rem;
}

/*animation*/
.fadein {
	opacity: 0;
	transition: .5s;
}
.fadein.is-show {
	transform: translate(0, 0);
	opacity: 1;
}
.fadein_left {
	transform: translate(-10%, 0);
}
.fadein_right {
	transform: translate(10%, 0);
}


/*
common
*/
.common-title {
	font-size: 3rem;
	text-align: center;
	line-height: 1;
	margin: -7px 0 2.5rem;
	letter-spacing: 0.05em;
}
.common-title_en {
	font-family: "din-2014", "BIZ UDPGothic", sans-serif;
	font-style: italic;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
	color: #2E7568;
	display: inline-block;
	margin-bottom: 8px;
}

.common-subtitle {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	position: relative;
	margin-bottom: 3rem;
	letter-spacing: 0.1em;
/*	margin-bottom: 3.6rem;*/
}
.common-subtitle:after {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	content: '';
	width: 5.4rem;
	height: 2px;
	background-color: #3F9877;
}

.common-btn, .common-btn_white {
	color: #fff;
	background-color: #2E7568;
	font-weight: 700;
	padding: 8px;
	text-align: center;
	border-radius: 2px;
	border: 2px solid #2E7568;
	width: 100%;
	max-width: 14.8rem;
	margin: 5rem auto 0;
	line-height: 1;
	position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
	overflow: hidden;
    transition: all 0.2s;
}
.common-btn:before, .common-btn_white:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fff;
	transform: translateX(-105%);
	transition: all 0.2s;
}
.common-btn:hover::before, .common-btn_white:hover::before {
	transform: translateY(0);
}
.common-btn:hover {
	color: #2E7568;
}
.common-btn_white {
	color: #333333;
	background-color: #fff;
	border: 1px solid #fff;
}
.common-btn_white:before {
	background-color: #333333;
}
.common-btn_white:hover {
	color: #fff;
}
.common-btn span, .common-btn_white span {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
}
.common-btn-arrow {
	width: 7px;
	height: 12px;
	background: url("../images/common/arrow_white.png") center / contain no-repeat;
}
.common-btn:hover .common-btn-arrow {
	background-image: url("../images/common/arrow_green.png");
}


.ankar {
	position: absolute;
	left: 0;
	top: 0;
	top: -80px;
}
@media (min-width:992px){
	.ankar {
		top: 0;
	}
}


/*
header
*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 18.8px 2.4rem 18.8px 3.11rem;
	background-color: #fff;
	z-index: 1000;
}
.navi-open header {
	background-color: transparent;
}
.navi-open .header-logo {
	display: none;
}
.header-logo img {
	max-width: 16rem;
}
.header-nav01, .header-nav02 {
	display: none;
}
.navi-open .header-right {
	background-color: rgba(255,255,255,.95);
	width: calc(100% - 30px);
	position: absolute;
	top: 2rem;
	left: 15px;
	border-radius: 8px;
	padding: 8px 3rem 3rem;
}
.header-nav01 {
	margin-left: auto;
	font-weight: 700;
}
.header-nav01 a {
	padding: 4px 0;
	text-align: center;
	font-size: 25px;
	letter-spacing: 0.1em;
	border-bottom: .5px solid #000000;
}
.header-nav01-parent {
	position: relative;
/*	pointer-events: none;*/
}
.header-nav01-parent::before,
.header-nav01-parent::after{
  position:absolute;
  content:'';
  top:1px;
  right:20px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#000000;
}
.header-nav01-parent::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.header-nav01-parent.open::after{
	transform:rotate(0deg);
}
.header-nav01-parent.no-child::before,
.header-nav01-parent.no-child::after {
	display: none;
}
.header-nav01-child {
	display: none;
}
.header-nav01-child a {
	color: #2E7568;
	font-size: 18px;
	font-weight: 400;
}
.header-nav01-child-title {
	display: none;
}
.header-nav01-child-top a {
	color: #2E7568;
	font-size: 20px;
	font-weight: 700;
}
.header-tel {
	display: none;
}
.header-tel img {
	max-width: 15px;
	margin-right: 2px;
}
.header-nav02 {
	margin-top: 30px;
}
.header-nav02 ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-nav02 a {
	color: #fff;
	background-color: #2E7568;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 2px;
	margin: 0 2px;
	border: 2px solid #fff;
	overflow: hidden;
	position: relative;
	transition: all 0.3s;
}
.header-nav02 a:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fff;
	transform: translateX(-100%);
	transition: all 0.3s;
}
.header-nav02 a:hover {
	color: #2E7568;
	opacity: 1;
	border: 2px solid #2E7568;
}
.header-nav02 a:hover::before {
	transform: translateY(0);
}
.header-nav02 span {
	position: relative;
}
.header-nav02 .header-contact {
	width: 200px;
	padding: 11px 17px;
	line-height: 1;
	font-weight: 700;
	margin: 30px auto 0;
}
.header-nav02 .header-contact span {
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
}
.header-nav02 .header-contact-img {
	width: 21px;
	height: 17px;
	margin-right: 9px;
	background: url("../images/common/icon_mail.png") center / contain no-repeat;
}
.header-nav02 .header-contact:hover .header-contact-img {
	background-image: url("../images/common/icon_mail_green.png");
}
.header-sns-img {
	position: relative;
	width: 100%;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.icon-x .header-sns-img {
	max-width: 26px;
	height: 26px;
	background-image: url("../images/common/icon_x.png");
}
.icon-x a:hover .header-sns-img {
	background-image: url("../images/common/icon_x_green.png");
}
.icon-instagram .header-sns-img {
	max-width: 30px;
	height: 30px;
	background-image: url("../images/common/icon_instagram.png");
}
.icon-instagram a:hover .header-sns-img {
	background-image: url("../images/common/icon_instagram_green.png");
}
.icon-youtube .header-sns-img {
	max-width: 30px;
	height: 25px;
	background-image: url("../images/common/icon_youtube.png");
}
.icon-youtube a:hover .header-sns-img {
	background-image: url("../images/common/icon_youtube_green.png");
}
@media (min-width:992px){
	header {
		display: flex;
		align-items: center;
		padding-bottom: 0;
	}
	.header-logo {
		margin-bottom: 1.2rem;
	}
	.header-logo img {
		max-width: 18rem;
	}
	.header-right {
		display: flex;
		align-items: center;
		margin-left: auto;
		padding: 0;
		background-color: #fff;
	}
	.header-nav01 {
		display: block;
		margin-right: 15px;
	}
	.header-nav01 ul, .header-nav02 ul {
		display: flex;
		align-items: center;
	}
	.header-nav01 ul {
		margin-right: -12px;
	}
	.header-nav01 a.header-tel {
		display: flex;
		align-items: center;
		line-height: 1;
		margin-left: auto;
		width: fit-content;
		font-size: 18px;
		margin-bottom: 3px;
		padding-bottom: 0;
	}
	.header-nav01 a {
		border-bottom: none;
		font-size: 16px;
	}
	.header-nav01 a:hover {
		opacity: 1;
	}
	.header-nav01 a.header-nav01-parent {
		text-align: left;
		font-size: 16px;
		padding-bottom: 2rem;
/*		pointer-events: auto;*/
	}
	.header-nav01-parent span {
		padding: 5px 12px;
		letter-spacing: 0;
		transition: .3s;
		position: relative;
		display: block;
		line-height: 1;
	}
	.header-nav01 li span:before {
		content: '';
		width: 21px;
		height: 9px;
		background: url("../images/common/arrow_green04.png") center / contain no-repeat;
		position: absolute;
		bottom: -12px;
		left: 0;
		right: 0;
		margin: 0 auto;
		transition: .3s;
		opacity: 0;
	}
	.header-nav01 li:hover span:before {
		opacity: 1;
	}
	.header-nav01-parent.no-child:hover span:before {
		display: none;
	}
	.header-nav01-parent::before, .header-nav01-parent::after {
		display: none;
	}
	.header-nav01-child {
		position: absolute;
		top: 9.3rem;
		left: 0;
		background-color: #000;
		padding: 2.5rem;
		width: 100%;
		border-bottom: 1px solid #fff;
	}
	.header-nav01-child-inner {
		margin: 0 auto;
		display: flex;
		align-items: flex-start;
		justify-content: center;
	}
	.header-nav01 a.header-nav01-child-title {
		display: block;
		font-size: 2rem;
		font-weight: 700;
		padding-right: 13rem;
		margin-right: 9.7rem;
		position: relative;
	}
	.header-nav01-child-title:before {
		content: '';
		width: 1px;
		height: 12rem;
		background-color: #fff;
		position: absolute;
		top: 0;
		right: 0;
	}
	.header-nav01-child ul {
		display: block;
	}
	.header-nav01-child ul + ul {
		margin-left: 21rem;
	}
	.header-nav01-child a {
		color: #fff;
		text-align: left;
	}
	.header-nav01-child a:hover {
		text-decoration: underline;
		text-underline-offset: 5px;
	}
	.header-nav02 {
		margin-top: 0;
		margin-bottom: 2rem;
		display: flex;
	}
	.header-nav02 a {
		width: 3.7rem;
		height: 37px;
		margin: 0 6.5px;
	}
	.header-nav02 .header-contact {
		margin: 0 0 0 6.5px;
		width: fit-content;
	}
	.icon-x .header-sns-img {
		max-width: 21px;
		height: 21px;
	}
	.icon-instagram .header-sns-img {
		max-width: 21.6px;
		height: 21.6px;
	}
	.icon-youtube .header-sns-img {
		max-width: 24.6px;
		height: 18px;
	}
	.page-id-21 #header-company span, .parent-pageid-21 #header-company span, .page-id-40 #header-service span, .parent-pageid-40 #header-service span, .page-id-86 #header-recruit span, .post-type-archive-news #header-news span, .single-news #header-news span, .tax-news-cat #header-news span, .tax-news-tag #header-news span, .post-type-archive-blog #header-blog span, .single-blog #header-blog span, .tax-blog-cat #header-blog span, .tax-blog-tag #header-blog span, .page-id-30 #header-company span {
		color: #fff;
		background-color: #2E7568;
		opacity: 1;
	}
}
@media (min-width:1200px){
	.header-logo img {
		max-width: 22.6rem;
	}
}


/* hamburger */
.hamburger {
  position: absolute;
  top: 17%;
  right: 3rem;
	width: 6rem;
	height: 6rem;
  margin-left: auto;
  cursor: pointer;
	color: #fff;
  }
.navi-open .hamburger {
	position: relative;
	right: 0;
	top: 0;
	border: none;
/*
	top: 535px;
	right: 0;
	left: 0;
*/
	background-color: #333333;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	margin: 3rem auto 0;
}
.hamburger .line {
  position: absolute;
  left: calc(50% - 11px);
  display: block;
  width: 27px;
  height: 2px;
  background-color: #2E7568;
  transition: 0.3s;
}
.navi-open .hamburger .line {
	background-color: #fff;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 4px;
	width: 20px;
	border-raodius: 10px;
}
.hamburger .line:nth-child(1){
    top: calc(50% - 9px);
}
.hamburger .line:nth-child(2){
    top: calc(50% - 1px);
}
.hamburger .line:nth-child(3){
    top: calc(50% + 7px);
}
.navi-open .hamburger .line:nth-child(2){
    opacity: 0;
}
.navi-open .hamburger .line:nth-child(1){
    top: 45%;
    transform: rotate(45deg);
}
.navi-open .hamburger .line:nth-child(3){
    top: 45%;
    transform: rotate(-45deg);
}
@media (min-width:992px) {
	.hamburger {
		display: none;
	}
}

/*
footer
*/
footer {
	position: relative;
}
.footer-contact {
	background-color: #F8F8F8;
	padding: 6rem 0;
}
.footer-contact .common-title {
	margin-bottom: 5rem;
}
.footer-contact-item {
	width: 100%;
	max-width: 56rem;
	margin: 0 auto;
}
.footer-contact-text {
	position: relative;
	margin-bottom: 15px;
	text-align: center;
	padding-bottom: 10px;
	letter-spacing: 0.05em;
}
.footer-contact-text:after {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	content: '';
	width: 4.5rem;
	height: .5px;
	background-color: #333333;
}
.footer-tel {
	margin-bottom: 5rem;
}
.tel-number {
	font-family: "din-2014-narrow", "BIZ UDPGothic", sans-serif;
	color: #333333;
	font-size: 4rem;
	font-weight: 400;
	display: flex;
	align-items: baseline;
	justify-content: center;
	line-height: 1;
	letter-spacing: 0.05em;
}
.tel-number span {
	font-size: 2.5rem;
	color: #2E7568;
	margin-right: 6px;
}
.footer-contact-btn {
	position: relative;
	margin: 0 auto;
	font-weight: 400;
	overflow: hidden;
    transition: all 0.3s;
	padding: 0;
	max-width: 22.6rem;
}
.footer-contact-btn span {
	position: relative;
	display: flex;
	align-items: center;
    justify-content: flex-start;
	padding: 8px 12px;
	width: 100%;
	max-width: 22.6rem;
}
.footer-contact-btn:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fff;
	transform: translateX(-100%);
	transition: all 0.3s;
}
.footer-contact-btn:after {
	position: absolute;
	top: calc(50% - 6px);
	right: 14px;
	width: 7px;
	height: 12px;
	content: '';
	background: url("../images/common/arrow_white.png") center / contain no-repeat;
	transition: .3s;
}
.footer-contact-btn:hover::after {
	background-image:  url("../images/common/arrow_green.png");
}
.footer-contact-img {
	margin-right: 15px;
	width: 100%;
	max-width: 20px;
	height: 15px;
	background: url("../images/common/icon_mail.png") center / contain no-repeat;
	transition: .3s;
}
.footer-contact-btn:hover .footer-contact-img {
	background-image: url("../images/common/icon_mail_green.png");
}
@media (min-width:768px) {
	.footer-contact {
		padding: 11.3rem 0;
	}
	.footer-contact-item {
		display: flex;
		align-items: center;
		text-align: left;
	}
	.footer-contact-text {
		width: 25rem;
		margin: 0 5rem 0 0;
		padding: 0;
		text-align: left;
	}
	.footer-contact-text:after {
		top: 0;
		left: auto;
		margin: auto;
		width: .5px;
		height: 4.5rem;
	}
	.footer-tel {
		margin-bottom: 7rem;
	}
	.tel-number {
		margin: 0;
		justify-content: flex-start;
	}
	.footer-form .footer-contact-text {
		margin-right: 6.3rem;
	}
	.footer-contact-btn {
		margin: 0;
	}
}

.footer-main {
	color: #fff;
	background-color: #000;
	padding: 2rem 0;
}
.footer-main-top {
	text-align: center;
	font-family: "din-2014-narrow", "BIZ UDPGothic", sans-serif;
	font-size: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 1.5;
	padding-bottom: 5px;
	border-bottom: 2px solid #fff;
	margin-bottom: 2rem;
}
.footer-logo {
	margin-bottom: 10px;
}
.footer-logo img {
	max-width: 6rem;
}
.footer-nav {
	margin-bottom: 5rem;
}
.footer-nav-left {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-nav-left div {
	margin-bottom: 3rem;
}
.footer-nav-title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
}
.footer-nav-list {
	padding-left: 2.5rem;
}
.footer-nav-list  {
	margin-top: 5px;
}
.footer-nav-list a {
	font-size: 1.6rem;
/*	padding: 7.5px 0 7.5px 15px;*/
	padding-left: 2.3rem;
	position: relative;
	line-height: 1.65;
}
.footer-nav-list a:before {
	position: absolute;
	top: 50%;
	left: 0;
	content: '';
	width: 11px;
	height: 0.5px;
	background-color: #fff;
}
.footer-nav-right {
	align-self: flex-end;
	font-size: 1.6rem;
}
.footer-sns {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 3.5rem;
}
.footer-sns li {
	margin: 0 5px;
}
.footer-sns a {
	background-color: #2E7568;
	width: 5.2rem;
	height: 5.2rem;
	border: 4px solid #fff;
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
    transition: all 0.2s;
}
.footer-sns a:hover {
	opacity: 1;
/*	border: 4px solid #2E7568;*/
}
.footer-sns a:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fff;
	transform: translateX(-100%);
	transition: all 0.3s;
}
.footer-sns a:hover::before {
	transform: translateY(0);
}
.footer-sns-img {
	width: 100%;
	max-width: 2.7rem;
	height: 3rem;
	position: relative;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.icon-x .footer-sns-img {
	background-image: url("../images/common/icon_x.png")
}
.icon-x a:hover .footer-sns-img {
	background-image: url("../images/common/icon_x_green.png")
}
.icon-instagram .footer-sns-img {
	background-image: url("../images/common/icon_instagram.png")
}
.icon-instagram a:hover .footer-sns-img {
	background-image: url("../images/common/icon_instagram_green.png")
}
.icon-youtube .footer-sns-img {
	background-image: url("../images/common/icon_youtube.png")
}
.icon-youtube a:hover .footer-sns-img {
	background-image: url("../images/common/icon_youtube_green.png")
}
.copyright {
	letter-spacing: 0.05em;
	text-align: center;
	font-size: 1.6rem;
}
.floating-menu {
	display: flex;
	justify-content: center;
	color: #fff;
	font-size: 17px;
	line-height: 1;
	width: 90%;
	max-width: 50rem;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	z-index: 100;
}
.floating-menu a {
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
}
.floating-tel {
	background-color: #2E7568;
	width: 32%;
}
.floating-tel img {
	max-width: 18px;
	margin-right: 4px;
}
.floating-contact {
	background-color: #000000;
	width: 68%;
	margin-left: 2px;
}
.floating-contact img {
	max-width: 20px;
	margin-left: 10px;
}
@media (min-width:576px) {
	.footer-nav-left {
		margin-bottom: 3rem;
		width: 100%;
	}
	.footer-nav-left div {
		margin: 0 2rem 0 0;
	}
	.floating-menu {
		font-size: 22px;
	}
}
@media (min-width:768px) {
	.footer-nav-title {
		font-size: 2.5rem;
	}
	.footer-nav-list a, .footer-nav-right {
		font-size: 2rem;
	}
}
@media (min-width:992px) {
	.floating-menu {
		display: none;
	}
}
@media (min-width:1200px) {
	.footer-nav {
		display: flex;
		padding: 0 5rem;
	}
	.footer-nav-left {
		width: 80%;
		justify-content: flex-start;
		margin-bottom: 0;
	}
	.footer-nav-left div {
		margin-right: 11.5rem;
	}
	.footer-nav-left div:last-child {
		margin-right: 0;
	}
	.footer-nav-right {
		width: 20%;
		text-align: right;
	}
}

/*
titlearea
*/
.titlearea1 {
	padding: 3rem 0;
}
.titlearea1 h1 {
	font-size: 3rem;
	text-align: center;
	margin-bottom: 8px;
	line-height: 1;
}
@media (min-width:768px) {
	.titlearea1 {
		padding: 4rem 0;
	}
}

.titlearea2 {
	padding: 0 0 12px 0;
}
.titlearea2-inner {
	padding: 5rem 0 6.7rem;
	background: url("../images/service/service_common_mv.jpg") left / cover no-repeat;
	margin-bottom: 10px;
}
.titlearea2 h1 {
	font-size: 3rem;
	font-weight: 700;
	width: fit-content;
	line-height: 1;
	display: flex;
	flex-direction: column;
}
.titlearea2 h1 .common-title_en {
	margin:  0 auto 10px;
}

.titlearea3 {
	padding-bottom: 3rem;
}
.titlearea3-mv {
	width: 100%;
	height: 13.4rem;
	background: url("../images/contact/contact_mv.jpg") center / cover no-repeat;
	margin-bottom: 10px;
}


/*
breadcrumbs
*/
.breadcrumbs {
	display: flex;
	font-size: 13px;
	align-items: center;
	flex-wrap: wrap;
}
.breadcrumbs span {
	margin: 0 5px;
}
.breadcrumbs li:last-child {
	font-weight: 700;
	color: #2E7568;
}

/*
pagination
*/
.pagination {
	margin-top: 5rem;
}
.pagination ul.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "din-2014", "BIZ UDPGothic", sans-serif;
	color: #98A6B5;
	font-size: 1.8rem;
	
}
.pagination a, .pagination span {
	padding: 0 12.5px;
}
.pagination span.current {
	color: #3F9877;
}
.pagination .prev, .pagination .next {
	background-color: #FAFAFA;
	border: 2px solid #F0F3F5;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 5rem;
	margin-right: 22.5px;
}
.pagination .next {
	margin: 0 0 0 22.5px;
}
.pagination .prev img, .pagination .next img {
	max-width: 1.6rem;
}
.pagination .next img {
	transform: rotate(180deg);
}


/*
sidebar
*/
.sidebar {
	color: #333333;
	background-color: #F8F8F8;
	border-radius: 5px;
	padding: 2.5rem 1.6rem;
	margin-top: 5rem;
}
.sidebar-title {
	font-weight: 700;
	line-height: 1;
	padding: 0 0 7px 7px;
	margin-bottom: 3px;
	border-bottom: 2px solid #333333;
}
.sidebar-title-jp {
	font-size: 2.3rem;
	display: block;
	margin-bottom: 3px;
}
.sidebar-title-en {
	font-size: 11px;
	display: block;
}
.sidebar-list li a {
	padding-left: 2rem;
	position: relative;
	font-size: 13px;
}
.sidebar-list li a:hover {
	color: #2E7568;
	opacity: 1;
}
.sidebar-list li a:before {
	content: '';
	width: 13px;
	height: 7px;
	background: url("../images/common/arrow_black02.png") center / cover no-repeat;
	position: absolute;
	top: calc(50% - 5px);
	left: 0;
	transform: rotate(-90deg);
}
.sidebar-list li a:hover::before {
	background-image: url("../images/common/arrow_green04.png");
}
@media (min-width:992px) {
	.sidebar-flex {
		display: flex;
		align-items: flex-start;
		justify-content: space-around;
	}
	.sidebar-flex-left {
		width: calc(80% - 7rem);
	}
	.sidebar {
		width: 20%;
		margin: 0 0 0 7rem;
	}
}


/*Editor-content*/
.editor-content p, .editor-content .has-medium-font-size {
	line-height: 2;
}
.editor-content > * + * {
    margin-top: 3rem;
}
.editor-content > h3 + *{
    margin-top: 3.5rem;
}
.editor-content > h4 + *{
    margin-top: 2rem;
}
.editor-content > h5 + *{
    margin-top: 1rem;
}
.editor-content > h2 + h3,
.editor-content > h2 + *,
.editor-content h2 + ul,
.editor-content h2 + ol {
    margin-top: 2rem;
}
.editor-content ul + *,
.editor-content ol + * {
	margin-top: 3rem;
}
.editor-content ol{
    padding-left: 20px;
}
.editor-content ul li{
    list-style: none;
    padding-left: 8rem;
    position: relative;
}
.editor-content ul li:before {
    position: absolute;
    top: 0;
    left: 5rem;
    content: '⚫︎';
	font-size: 13px;
}
.editor-content ol li{
    list-style: decimal;
}
.editor-content ol li::marker {
	font-family: "din-2014", "BIZ UDPGothic", sans-serif;
	letter-spacing: 0.05em;
	font-style: italic;
	font-weight: 700;
	font-size: 2.5rem;
}
.editor-content ul li + li, .editor-content ol li + li {
	margin-top: 4px;
}
.editor-content p a {
	color: #3F9877;
    font-weight: bold;
	font-size: 1.8rem;
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-color: #3F9877;
	
}
.editor-content .wp-block-button__link {
	background-color: #3F9877;
	border: 2px solid #3F9877;
	transition: .3s;
	font-size: 16px;
	font-weight: 700;
}
.editor-content .wp-block-button__link:hover {
	color: #3F9877;
	background-color: #fff;
}
.editor-content h2 {
	font-size: 2.4rem;
	font-weight: 400;
	position: relative;
	padding-bottom: 3px;
	letter-spacing: 0.05em;
}
.editor-content h2:before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 50%;
	height: 1px;
	background-color: #3F9877;
}
.editor-content h3 {
	font-size: 2rem;
	font-weight: 400;
	position: relative;
	padding-left: 15px;
}
.editor-content h3:before {
	position: absolute;
	top: 7px;
	left: 0;
	content: '⚫︎';
	font-size: 13px;
	color: #2E7568;
}
.editor-content h4 {
	position: relative;
	font-size: 1.8rem;
	padding-left: 2rem;
	font-weight: 400;
}
.editor-content h4:before {
	position: absolute;
	top: 0;
	left: 0;
	content: '・';
}
.editor-content h5 {
	color: #2E7568;
	font-weight: 400;
}
.editor-content .alignleft, .editor-content .alignright, .editor-content .aligncenter {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}
.editor-content .alignleft img, .editor-content .alignright img, .editor-content .aligncenter img {
    width: 100%;
}
.editor-content figcaption, .editor-content .has-small-font-size {
	font-size: 13px;
}
.editor-content .has-large-font-size {
	font-size: 20px;
}
.editor-content .has-x-large-font-size {
	font-size: 28px;
}
.editor-content .has-cyan-bluish-gray-color {
	color: #999999!important;
}

.editor-content .credit {
	color: #434343!important;
	font-size: 12px;
}

@media (min-width: 768px){
    .editor-content .img-left, .editor-content .alignleft{
        float: left;
        margin-right: 2rem;
        margin-bottom: 2rem;
    }
    .editor-content .img-right, .editor-content .alignright{
        float: right;
        margin-left: 2rem;
        margin-bottom: 2rem;
    }
    .editor-content .img-left, .editor-content .img-right, .editor-content .alignleft, .editor-content .alignright {
        max-width: 50%;
    }
    .editor-content .img-center, .editor-content .aligncenter{
        text-align: center;
        margin-right: auto;
        margin-left: auto;
    }
    .editor-content .img-left + *:not(p),
    .editor-content .img-right + *:not(p),
    .editor-content .img-center, .editor-content .alignleft + *:not(p),
    .editor-content .alignright + *:not(p),
    .editor-content .aligncenter{
        clear: both;
    }
    .editor-content .alignleft, .editor-content .alignright, .editor-content .aligncenter, .editor-content .alignleft img, .editor-content .alignright img, .editor-content .aligncenter img {
        width: auto;
    }
	.editor-content figcaption {
		font-size: 2.4rem;
	}
	.editor-content .credit {
		font-size: 2rem;
	}
}