@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
@media (min-width: 768px) {
	.sp-only {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.pc-only {
		display: none;
	}
}
@-webkit-keyframes float {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
}
@keyframes float {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
}
/*------------------------------------------------------------
	clearfix（float解除）
------------------------------------------------------------*/
.u-clearfix {
	*zoom: 1;
}
.u-clearfix:after {
	display: block;
	clear: both;
	content: '';
}

/*------------------------------------------------------------
    Default
------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
button,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 1em;
}

html {
	font-size: 62.5%;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body,
table,
input,
textarea,
select,
option,
button,
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
}

table,
input,
textarea,
select,
option {
	line-height: 1.5;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

img {
	vertical-align: middle;
	max-width: 100%;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

iframe {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
}

table {
	width: 100%;
	border-collapse: collapse;
}
table th {
	font-weight: 500;
}

a {
	color: #050505;
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all 0.5s !important;
	transition: all 0.5s !important;
}

a:hover,
a:hover img {
	opacity: 0.8 !important;
	filter: alpha(opacity=80) !important;
	-ms-filter: 'alpha(opacity=80)' !important;
}

.u-pd100 {
	padding: 100px 0;
}
@media screen and (max-width: 767px) {
	.u-pd100 {
		padding: 80px 0;
	}
}

.u-bgcover {
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

.u-df {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media screen and (max-width: 767px) {
	.u-df {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.u-df--jf {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.u-df--al {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.u-df-left,
.u-df-right {
	width: 50%;
}
@media screen and (max-width: 767px) {
	.u-df-left,
	.u-df-right {
		width: 100%;
	}
}

.u-slheight .slick-track {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
}
.u-slheight .slick-slide {
	height: inherit !important;
}

.u-hover .u-bgcover {
	display: block;
	overflow: hidden;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	position: relative;
}

.u-hover .u-bgcover:after {
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	position: absolute;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

.u-hover:hover .u-bgcover:after {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

/*------------------------------------------------------------
  effect（ページ遷移）
------------------------------------------------------------*/
.u-effect {
	position: relative;
}

.u-effect::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #e8f5ff;
	background-image: url(../images/common/nav-logo.svg);
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 9998;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: opacity 0.6s ease;
	transition: opacity 0.6s ease;
}
@media screen and (max-width: 767px) {
	.u-effect::after {
		background-size: 200px;
	}
}

.u-effect.show::after {
	opacity: 1;
}

.u-effect.show article {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
body {
	color: #050505;
	line-height: 1.5;
	font-weight: 400;
	font-size: 16px;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}
@media screen and (max-width: 767px) {
	body {
		font-size: 1.5rem;
	}
}

.l-container {
	width: 1400px;
	margin: 0 auto;
}
@media screen and (max-width: 1430px) and (min-width: 767px) {
	.l-container {
		width: 94%;
	}
}
@media screen and (max-width: 767px) {
	.l-container {
		width: 92%;
	}
}

section {
	position: relative;
}

section:not(:first-child) {
	overflow: hidden;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.l-header {
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	position: fixed;
	background-color: #fff;
	border-bottom: 1px solid #cdd3cd;
}
.l-header-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.l-header__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: auto;
	margin-left: 2.6%;
}
@media screen and (max-width: 767px) {
	.l-header__logo {
		margin-left: 15px;
	}
	.l-header__logo img {
		width: 85px;
	}
}
.l-header__logo--txt {
	margin-left: 30px;
}
@media screen and (max-width: 1430px) and (min-width: 767px) {
	.l-header__logo--txt {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.l-header__logo--txt {
		margin-left: 10px;
	}
}
@media screen and (max-width: 350px) {
	.l-header__logo--txt {
		display: none;
	}
}
.l-header__logo--txt h3 {
	font-size: 19px;
}
@media screen and (max-width: 767px) {
	.l-header__logo--txt h3 {
		font-size: 1.5rem;
	}
}
.l-header__logo--txt p {
	font-size: 14px;
	margin-bottom: 3px;
	letter-spacing: 5px;
	font-family: 'Noto Sans Myanmar', sans-serif;
}
@media screen and (max-width: 767px) {
	.l-header__logo--txt p {
		font-size: 1.2rem;
		letter-spacing: 2px;
	}
}
.l-header__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 98px;
	height: 100px;
	z-index: 9999;
	top: 0;
	right: 0;
	cursor: pointer;
	border-left: 1px solid #cdd3cd;
	border-bottom: 1px solid #cdd3cd;
}
@media screen and (max-width: 767px) {
	.l-header__menu {
		width: 70px;
		height: 70px;
	}
}
.l-header__menu div {
	position: relative;
	width: 40px;
	height: 26px;
}
@media screen and (max-width: 767px) {
	.l-header__menu div {
		width: 30px;
		height: 20px;
	}
}
.l-header__menu span {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background: #000;
	border-radius: 20px;
	-webkit-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
}
@media screen and (max-width: 767px) {
	.l-header__menu span {
		height: 2px;
	}
}
.l-header__menu span:nth-child(1) {
	top: 0px;
}
.l-header__menu span:nth-child(2) {
	top: 11px;
}
@media screen and (max-width: 767px) {
	.l-header__menu span:nth-child(2) {
		top: 9px;
	}
}
.l-header__menu span:nth-child(3) {
	top: 22px;
}
@media screen and (max-width: 767px) {
	.l-header__menu span:nth-child(3) {
		top: 18px;
	}
}
.l-header__menu.on span:nth-child(1) {
	top: 10px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
	.l-header__menu.on span:nth-child(1) {
		top: 9px;
	}
}
.l-header__menu.on span:nth-child(2) {
	width: 0;
	left: 50%;
}
.l-header__menu.on span:nth-child(2)::before,
.l-header__menu.on span:nth-child(2)::after {
	width: 0;
	height: 0;
}
.l-header__menu.on span:nth-child(3) {
	top: 10px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
	.l-header__menu.on span:nth-child(3) {
		top: 9px;
	}
}
.l-header__menu p {
	font-size: 15px;
	margin-bottom: 3px;
	letter-spacing: -1px;
	font-family: 'Noto Sans Myanmar', sans-serif;
}
@media screen and (max-width: 767px) {
	.l-header__menu p {
		font-size: 1.2rem;
		margin-bottom: 1px;
	}
}
.l-header__nav {
	visibility: hidden;
	position: relative;
	z-index: 100;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.l-header__nav.open {
	visibility: visible;
	-webkit-transition: opacity 0.24s ease;
	transition: opacity 0.24s ease;
}
.l-header__nav.open .l-header__nav-bg {
	visibility: visible;
	opacity: 1;
}
.l-header__nav.open .l-header__nav-wrap {
	visibility: visible;
	opacity: 1;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.l-header__nav.open .l-header__nav-wrap {
		text-align: left;
	}
}
.l-header__nav-bg {
	display: block;
	position: fixed;
	z-index: 100;
	width: 100vw;
	height: 100vh;
	background: #f5f8f6;
	visibility: hidden;
	opacity: 0;
	cursor: pointer;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}
.l-header__nav-wrap {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	right: 0;
	z-index: 998;
	width: 100%;
	height: 100vh;
	margin-left: 0;
	background-color: #f5f8f6;
	text-align: left;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow-x: hidden;
}
@media screen and (max-width: 767px) {
	.l-header__nav-wrap {
		height: auto;
		top:30px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}
.l-header__nav--logo {
	display: block;
	text-align: center;
	-webkit-animation-name: gnaviAnime;
	animation-name: gnaviAnime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
@-webkit-keyframes gnaviAnime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes gnaviAnime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@media screen and (max-width: 767px) {
	.l-header__nav--logo img {
		width: 200px;
	}
}
.l-header__nav--inner {
	/*
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	*/
	max-width: 395px;
	margin: 4% auto 0;
}
@media screen and (max-width: 767px) {
	.l-header__nav--inner {
		max-width: 304px;
		margin: 60px auto 0;
	}
}
.l-header__nav--list {
	position: relative;
}
.l-header__nav--list li {
	opacity: 0;
	-webkit-transform: translate3d(0, 3rem, 0);
	transform: translate3d(0, 3rem, 0);
	-webkit-transition: opacity 0.4s linear, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition: opacity 0.4s linear, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition: opacity 0.4s linear, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition: opacity 0.4s linear, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-header__nav--list li.fade {
	opacity: 1;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.l-header__nav--list > li + li {
	margin-top: 10%;
}
@media screen and (max-width: 767px) {
	.l-header__nav--list > li + li {
		margin-top: 30px;
	}
}
.l-header__nav--list a {
	color: #69a57d;
	font-size: 20px;
	font-weight: 600;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
@media screen and (max-width: 767px) {
	.l-header__nav--list a {
		font-size: 1.6rem;
	}
}
.l-header__gnavi {
	margin-right: 2.3%;
}
@media screen and (max-width: 767px) {
	.l-header__gnavi {
		display: none;
	}
}
.l-header__gnavi-list {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.l-header__gnavi-list li {
	padding: 0 20px;
}
@media screen and (max-width: 1430px) and (min-width: 767px) {
	.l-header__gnavi-list li {
		padding: 0 1.5vw;
	}
}
.l-header__gnavi-list a {
	font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 1430px) and (min-width: 767px) {
	.l-header__gnavi-list a {
		font-size: 1.3vw;
	}
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.l-footer {
	font-family: 'Noto Sans JP', sans-serif;
}
.l-footer__top {
	background-color: #f2f1ee;
}
.l-footer__top-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 45px 3%;
}
.l-footer__top--addr {
	font-size: 18px;
	margin-left: 5.3%;
}
@media screen and (max-width: 767px) {
	.l-footer__top--addr {
		margin: 20px 0 0;
	}
}
.l-footer__top--addr + .l-footer__top--addr {
	padding-left: 4%;
	border-left: 1px solid #707070;
}
@media screen and (max-width: 767px) {
	.l-footer__top--addr + .l-footer__top--addr {
		padding: 20px 0 0;
		border-top: 1px solid #707070;
		border-left: 0;
	}
}
.l-footer__top--addr dd {
	margin-top: 8px;
}
.l-footer__bottom {
	text-align: center;
	padding: 47px 0 45px;
	background-color: #dddad3;
}
@media screen and (max-width: 767px) {
	.l-footer__bottom {
		font-size: 1.4rem;
		padding: 40px 0 38px;
	}
}

/*------------------------------------------------------------
    c-title
------------------------------------------------------------*/
.c-title {
  margin-bottom: 55px;
  padding-bottom: 28px;
  border-bottom: 2px solid #050505;
}
@media screen and (max-width: 767px) {
  .c-title {
    text-align: center;
    border-bottom: 1px solid #050505;
  }
}
.c-title h2 {
  font-size: 54px;
  line-height: 1.3;
  font-weight: 600;
  font-family: "Toppan Bunkyu Gothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-title h2 {
    font-size: 4.5rem;
  }
}
.c-title p {
  color: #333333;
  font-size: 18px;
  margin-top: 6px;
  font-family: "Noto Sans JP", sans-serif;
}

.c-title01 {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
	letter-spacing: 2px;
	margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
	.c-title01 {
		font-size: 2.6rem;
		margin-bottom: 50px;
	}
}

/*------------------------------------------------------------
    c-btn
------------------------------------------------------------*/
/*------------------------------------------------------------
    c-list
------------------------------------------------------------*/
.c-list01 {
	width: 85%;
}
@media screen and (max-width: 767px) {
	.c-list01 {
		width: 100%;
		font-size: 1.8rem;
	}
}
.c-list01 li:first-child a {
	padding-top: 0;
}
.c-list01 a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding: 19px 0;
	border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
	.c-list01 a {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
.c-list01--date {
	color: #525252;
}
.c-list01--cate {
	width: 172px;
	display: block;
	color: #939393;
	font-size: 16px;
	padding: 2px 5px 4px;
	text-align: center;
	margin-left: 2.5%;
	border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
	.c-list01--cate {
		width: 142px;
		font-size: 1.4rem;
		margin-left: 12px;
	}
}
.c-list01--text {
	margin-left: 2.7%;
}
@media screen and (max-width: 767px) {
	.c-list01--text {
		margin: 10px 0 0;
	}
}
/*------------------------------------------------------------
    c-table
------------------------------------------------------------*/
/*------------------------------------------------------------
	c-other
------------------------------------------------------------*/
.slick-arrow {
	display: block;
	overflow: hidden;
	color: transparent;
	text-decoration: none;
	text-indent: 110%;
	white-space: nowrap;
	font-size: 0;
	position: absolute;
	top: 50%;
	width: 46px;
	height: 46px;
	padding: 0;
	line-height: 0;
	outline: none;
	cursor: pointer;
	z-index: 1;
	border-radius: 50%;
	border: 2px solid #656565;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.slick-arrow:hover,
.slick-arrow:focus {
	opacity: 0.8;
}

.slick-arrow.slick-disabled:before {
	opacity: 0.25;
}

.slick-arrow::before {
	display: block;
	content: '';
	top: 50%;
	left: 50%;
	position: absolute;
	border: solid #050505;
	border-width: 0 2px 2px 0;
	padding: 3px;
}
.slick-prev {
	left: -19px;
}
@media screen and (max-width: 767px) {
	.slick-prev {
		left: -12px;
	}
}

.slick-next {
	right: -19px;
}
@media screen and (max-width: 767px) {
	.slick-next {
		right: -12px;
	}
}

.slick-prev::before {
	-webkit-transform: translate(-50%, -50%) rotate(135deg);
	transform: translate(-50%, -50%) rotate(135deg);
}

.slick-next::before {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}

.slick-dots {
	z-index: 2;
	text-align: center;
	position: absolute;
}

.slick-dots li {
	position: relative;
	cursor: pointer;
}

.slick-dots li button {
	width: 100%;
	height: 100%;
	border: 0;
	background: transparent;
	display: block;
	outline: none;
	line-height: 0;
	color: transparent;
	cursor: pointer;
	position: relative;
	border-radius: 3px;
}

.slick-dots li button:hover {
	outline: none;
}

.slick-dots li button:hover {
	background-color: #1746e3;
}

.slick-dots li.slick-active button {
	background-color: #1746e3;
}

/* section-mainvisual
------------------------------------------------------------*/
.s-visual {
	margin-top: 100px;
}
@media screen and (max-width: 767px) {
	.s-visual {
		margin-top: 70px;
	}
}
.s-visual__inner {
	position: relative;
}
.s-visual__top {
	padding: 58px 0 70px;
	background-color: #f5f8f6;
	border-bottom: 1px solid #cdd3cd;
}
@media screen and (max-width: 767px) {
	.s-visual__top {
		padding: 50px 0;
	}
}
.s-visual__bottom {
	padding: 30px 0;
	background-color: #f0f4f1;
	border-bottom: 1px solid #cdd3cd;
}
@media screen and (max-width: 767px) {
	.s-visual__bottom {
		padding: 20px 0;
	}
}
.s-visual__item {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
}
@media screen and (max-width: 767px) {
	.s-visual__item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.s-visual__txt {
	z-index: 1;
	width: 60%;
	margin-right: -95px;
	padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
	.s-visual__txt {
		margin: 0;
    width: 100%;
	}
}
.s-visual__txt--ttl {
	font-size: 54px;
	line-height: 1.3;
	font-weight: 600;
	font-family: 'Toppan Bunkyu Gothic', sans-serif;
}
@media screen and (max-width: 767px) {
	.s-visual__txt--ttl {
		font-size: 4.5rem;
	}
}
.s-visual__txt--note {
	font-size: 17px;
	margin: 18px 0 42px;
}
.s-visual__txt--date {
	font-size: 36px;
	font-family: 'Aoboshi One', sans-serif;
}
@media screen and (max-width: 767px) {
	.s-visual__txt--date {
		font-size: 3rem;
	}
}
.s-visual__txt--date span {
	font-size: 24px;
}
@media screen and (max-width: 767px) {
	.s-visual__txt--date span {
		font-size: 2rem;
	}
}
.s-visual__txt--box {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
@media screen and (max-width: 767px) {
	.s-visual__txt--box {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}
.s-visual__txt .slider-arrow {
	margin-left: 8%;
}
@media screen and (max-width: 767px) {
	.s-visual__txt .slider-arrow {
		margin: 20px 0 0 10px;
	}
}
.s-visual__txt .slider-arrow button {
	width: 43px;
	height: 43px;
	cursor: pointer;
	position: relative;
	background-color: transparent;
}
.s-visual__txt .slider-arrow button:before {
	content: '';
	width: 100%;
	height: 100%;
	border: 2px solid #656565;
	position: absolute;
	right: 0;
	top: 50%;
	border-radius: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.s-visual__txt .slider-arrow button:after {
	content: '';
	border: solid #656565;
	border-width: 0 2px 2px 0;
	padding: 4px;
	top: 17px;
	position: absolute;
}
.s-visual__txt .slider-arrow button:hover {
	opacity: 0.7;
}
.s-visual__txt .slider-arrow button.prev:after {
	right: 16px;
	-webkit-transform: rotate(138deg);
	transform: rotate(138deg);
}
.s-visual__txt .slider-arrow button.next {
	margin-left: 13px;
}
.s-visual__txt .slider-arrow button.next:after {
	right: 20px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.s-visual__txt--cate {
	font-size: 17px;
	margin-top: 30px;
}
.s-visual__txt--cate span {
	margin-right: 10px;
	font-family: 'Acumin Pro', sans-serif;
}
.s-visual__txt--desc {
	margin-top: 10px;
	margin-right: -95px;
}
/* .s-visual__txt--desc span {
	font-size: 25px;
	padding: 12px 20px;
	display: inline-block;
	background-color: #fff;
	border: 3px solid #050505;
} */
.s-visual__txt--desc span {
	display: inline;
	line-height: 3;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	font-size: 25px;
	padding: 12px 20px;
	background-color: #fff;
	border: 3px solid #050505;
}
@media screen and (max-width: 767px) {
	.s-visual__txt--desc {
		margin-right: 0px;
	}
	.s-visual__txt--desc span {
		font-size: 2rem;
		padding: 10px 15px;
		border: 1px solid #050505;
	}
}
.s-visual__txt--desc span + span {
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	.s-visual__txt--desc span + span {
		margin-top: 15px;
	}
}
.s-visual__txt--more {
	margin-top: 72px;
	font-weight: 600;
	position: relative;
	letter-spacing: 1px;
	padding-right: 62px;
	font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 767px) {
	.s-visual__txt--more {
		margin-top: 50px;
	}
}
.s-visual__txt--more:before {
	content: '';
	width: 26px;
	height: 26px;
	border: 2px solid #050505;
	position: absolute;
	right: 0;
	top: 50%;
	border-radius: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.s-visual__txt--more:after {
	content: '';
	border: solid #050505;
	border-width: 0 2px 2px 0;
	padding: 3px;
	position: absolute;
	top: 8px;
	right: 13px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.s-visual__img {
	width: 70%;
}
@media screen and (max-width: 767px) {
	.s-visual__img {
		width: 100% !important;
		margin-top: 10px;
	}
}
.s-visual__img--pic {
	height: 340px;
}
.s-visual__thumb .slick-track {
	/* width: 100% !important; */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.s-visual__thumb--pic {
	/* width: 15% !important; */
	/* width: 208px !important; */
	width: calc((100% - 5vw) / 6) !important;
	height: 120px;
	cursor: pointer;
	/* margin: 0 15px; */
	margin: 0 1vw;
}
@media screen and (max-width: 767px) {
	.s-visual__img--pic {
		height: 220px;
	}
	.s-visual__thumb--pic {
		width: calc((100% - 50px) / 3) !important;
		/* height: 50px; */
		height: 15vw;
		margin: 0 1.75vw;
	}
}
.s-visual__thumb--pic:hover {
	opacity: 0.6;
}
.s-visual__thumb--pic:not(:last-child) {
	/* margin-right: 2%; */
}
@media screen and (max-width: 767px) {
	.s-visual__thumb--pic:not(:last-child) {
		/* margin-right: 10px; */
	}
}

/* c-breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
	border-bottom: 1px solid #dbdeea;
}
.c-breadcrumb ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	white-space: nowrap;
	overflow-y: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.c-breadcrumb li {
	z-index: 1;
	color: #525252;
	font-size: 14px;
	padding: 10px 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.c-breadcrumb li a {
	color: #001847;
}
.c-breadcrumb li:after {
	content: '>';
	color: #001847;
	margin: 0 12px;
}
.c-breadcrumb li:last-of-type:after {
	content: none;
}
@media screen and (max-width: 767px) {
	.c-breadcrumb li:first-child {
		position: sticky;
		left: 0;
		z-index: 2;
		background-color: #fff;
	}
}

/* s-contact
------------------------------------------------------------*/
.s-contact {
	color: #fff;
	display: block;
	background-color: #69a57d;
}
.s-contact__inner {
	padding: 0 4.5% 0 4%;
}
.s-contact__ttl {
	font-size: 80px;
	line-height: 1;
	font-family: 'Toppan Bunkyu Gothic', sans-serif;
}
@media screen and (max-width: 767px) {
	.s-contact__ttl {
		font-size: 7rem;
	}
}
.s-contact__txt {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-size: 18px;
	margin: 8px 4% 0;
	line-height: 1.7;
	font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 767px) {
	.s-contact__txt {
		font-size: 1.7rem;
		margin: 50px 4%;
	}
}
.s-contact__icon {
	width: 65px;
	height: 65px;
	display: block;
	position: relative;
	-webkit-animation: animation-horizontal 2s linear infinite;
	animation: animation-horizontal 2s linear infinite;
}
@media screen and (max-width: 767px) {
	.s-contact__icon {
		-webkit-animation: animation-horizontal-sp 2s linear infinite;
		animation: animation-horizontal-sp 2s linear infinite;
	}
}
@-webkit-keyframes animation-horizontal {
	0% {
		-webkit-transform: translate(-10px, 0);
		transform: translate(-10px, 0);
	}
	50% {
		-webkit-transform: translate(0px);
		transform: translate(0px);
	}
	100% {
		-webkit-transform: translate(-10px, 0);
		transform: translate(-10px, 0);
	}
}
@keyframes animation-horizontal {
	0% {
		-webkit-transform: translate(-10px, 0);
		transform: translate(-10px, 0);
	}
	50% {
		-webkit-transform: translate(0px);
		transform: translate(0px);
	}
	100% {
		-webkit-transform: translate(-10px, 0);
		transform: translate(-10px, 0);
	}
}
@-webkit-keyframes animation-horizontal-sp {
	0% {
		-webkit-transform: translate(0, -10px);
		transform: translate(0, -10px);
	}
	50% {
		-webkit-transform: translate(0px);
		transform: translate(0px);
	}
	100% {
		-webkit-transform: translate(0, -10px);
		transform: translate(0, -10px);
	}
}
@keyframes animation-horizontal-sp {
	0% {
		-webkit-transform: translate(0, -10px);
		transform: translate(0, -10px);
	}
	50% {
		-webkit-transform: translate(0px);
		transform: translate(0px);
	}
	100% {
		-webkit-transform: translate(0, -10px);
		transform: translate(0, -10px);
	}
}
.s-contact__icon:before {
	content: '';
	width: 100%;
	height: 100%;
	border: 2px solid #fff;
	position: absolute;
	right: 0;
	top: 50%;
	border-radius: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.s-contact__icon:after {
	content: '';
	border: solid #fff;
	border-width: 0 2px 2px 0;
	padding: 6px;
	position: absolute;
	top: 26px;
	right: 30px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
	.s-contact__icon:after {
		top: 22px;
		right: 27px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}

/* s-descript
------------------------------------------------------------*/
.s-descript {
	text-align: center;
}
.s-descript__desc {
	font-size: 18px;
}
@media screen and (max-width: 767px) {
	.s-descript__desc {
		font-size: 1.6rem;
	}
}
.s-descript__desc p {
	line-height: 1.7;
}
.s-descript__desc p + p {
	margin-top: 36px;
}

/* s-column (Column page)
------------------------------------------------------------*/
.s-column__list {
	flex-wrap: wrap;
}
.s-column__list.list3 .s-column__list--item {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .s-column__list .s-column__list--item {
    width: 100% !important;
  }
}
.s-column__list--item {
  background-color: #fff;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 768px) {
	.s-column__list--item:nth-child(-n+2) {
		border-top: 1px solid #707070;
	}
	.s-column__list--item:nth-child(odd) {
		border-left: 1px solid #707070;
	}
}
@media screen and (max-width: 767px) {
	.s-column__list--item {
		border-left: 1px solid #707070;
	}
	.s-column__list--item:nth-child(1) {
		border-top: 1px solid #707070;
	}
}
/* .s-column__list--item.item01 .s-column__list--img:after {
  background: url(../images/top/column-img01.jpg);
}
.s-column__list--item.item02 .s-column__list--img:after {
  background: url(../images/top/column-img02.jpg);
}
.s-column__list--item.item03 .s-column__list--img:after {
  background: url(../images/top/column-img03.jpg);
} */
.s-column__list a {
  display: block;
}
.s-column__list--img {
  min-height: 282px;
}
@media screen and (max-width: 767px) {
  .s-column__list--img {
    height: 70vw;
    min-height: auto;
    max-height: 400px;
  }
}
.s-column__list--txt {
  padding: 7% 7% 11%;
  padding: 30px 30px 50px;
}
.s-column__list--desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .s-column__list--desc {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.s-column__list--date {
  font-size: 26px;
  font-family: "Aoboshi One", sans-serif;
}
.s-column__list--date span {
  font-size: 17px;
}
.s-column__list--cate {
  margin-left: 8.7%;
}
@media screen and (max-width: 767px) {
  .s-column__list--cate {
    margin-left: 0;
  }
}
.s-column__list--cate small {
  font-family: "Acumin Pro", sans-serif;
}
.s-column__list--cate span {
  font-size: 17px;
  margin-left: 15px;
}
.s-column__list--ttl {
  font-size: 20px;
  font-weight: 600;
  margin-top: 16px;
}
/* c-column
------------------------------------------------------------*/
.c-column {
  margin-top: 0;
}
.c-column .s-visual__img .s-visual__img--pic {
  height: 415px;
}

/*------------------------------------------------------------
p-top
------------------------------------------------------------*/
.page-top .s-visual__img {
	width: 57%;
	margin-top: 27px;
}
.page-top .s-visual__img--pic {
	height: 415px;
}
@media screen and (max-width: 767px) {
	.page-top .s-visual__img--pic {
		/* height: 175px; */
		height: 50vw;
	}
}

.p-top {
	overflow: hidden;
	position: relative;
}
.p-top .s-news {
	font-size: 21px;
}
.p-top .s-news__inner {
	padding-top: 80px;
}
@media screen and (max-width: 767px) {
	.p-top .s-news__inner {
		padding-top: 60px;
	}
}
.p-top .s-news__ttl {
	font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 767px) {
	.p-top .s-news__ttl {
		text-align: center;
		margin-bottom: 35px;
	}
}
.p-top .fl-text {
	left: 0;
	top: 50%;
	z-index: -1;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	position: absolute;
	-webkit-animation: scroll-vertical 50s linear infinite;
	animation: scroll-vertical 50s linear infinite;
}
@media screen and (max-width: 767px) {
	.p-top .fl-text {
		-webkit-animation: scroll-vertical 100s linear infinite;
		animation: scroll-vertical 100s linear infinite;
		opacity: 0.25;
	}
}
.p-top .fl-text img {
	display: block;
}
@-webkit-keyframes scroll-vertical {
	0% {
		top: -100%;
	}
	100% {
		top: 100%;
	}
}
@keyframes scroll-vertical {
	0% {
		top: -100%;
	}
	100% {
		top: 100%;
	}
}
.p-top .c-content {
	margin-left: 19.3%;
}
@media screen and (max-width: 767px) {
	.p-top .c-content {
		max-width: 92%;
		margin: 0 auto;
	}
}
.p-top .s-services__list--item {
	margin-top: 55px;
}
.p-top .s-services__list--item.item01 {
	background-color: #ecf1ee;
}
.p-top .s-services__list--item.item01 .s-services__list--img:after {
	background: url(../images/top/service-img01.jpg);
}
.p-top .s-services__list--item.item02 {
	background-color: #eff1ec;
}
.p-top .s-services__list--item.item02 .s-services__list--img:after {
	background: url(../images/top/service-img02.jpg);
}
.p-top .s-services__list--item.item03 {
	background-color: #ececf1;
}
.p-top .s-services__list--item.item03 .s-services__list--img:after {
	background: url(../images/top/service-img03.jpg);
}
.p-top .s-services__list--img {
	width: 53%;
	min-height: 300px;
}
@media screen and (max-width: 767px) {
	.p-top .s-services__list--img {
		width: 100%;
		height: 70vw;
		min-height: auto;
		max-height: 400px;
	}
}
.p-top .s-services__list--txt {
	width: 56%;
	padding: 6% 7%;
}
@media screen and (max-width: 767px) {
	.p-top .s-services__list--txt {
		width: 100%;
		padding: 30px;
	}
}
.p-top .s-services__list--ttl {
	font-size: 40px;
	font-weight: 600;
	line-height: 1.4;
	font-family: 'Toppan Bunkyu Gothic', sans-serif;
}
@media screen and (max-width: 767px) {
	.p-top .s-services__list--ttl {
		font-size: 3.5rem;
	}
}
.p-top .s-services__list--note {
	font-size: 18px;
}
@media screen and (max-width: 767px) {
	.p-top .s-services__list--note {
		font-size: 1.7rem;
	}
}
.p-top .s-services__list--desc {
	margin-top: 28px;
	line-height: 1.7;
}

.p-top .s-column__list--item:nth-child(1), .p-top .s-column__list--item:nth-child(2) {
	width: calc((100% / 2));
}
.p-top .s-column__list--item {
	width: calc((100% / 3));
}
@media screen and (min-width: 768px) {
	.p-top .s-column__list--item:nth-child(5) {
		border-left: 0;
	}
}

.p-top .s-aboutus__image {
	display: block;
}
.p-top .s-aboutus__list--item {
	height: 390px;
}
@media screen and (max-width: 767px) {
	.p-top .s-aboutus__list--item {
		height: 70vw;
		max-height: 400px;
	}
}
.p-top .s-aboutus__list--item.item01 {
	background: url(../images/top/aboutus-img01.jpg);
}
.p-top .s-aboutus__list--item.item02 {
	background: url(../images/top/aboutus-img02.jpg);
}
.p-top .s-aboutus__detail {
	font-size: 18px;
	margin-top: 63px;
	font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 767px) {
	.p-top .s-aboutus__detail {
		font-size: 1.6rem;
		margin-top: 50px;
	}
}
.p-top .s-aboutus__detail--ttl {
	font-size: 34px;
	margin-top: 33px;
}
@media screen and (max-width: 767px) {
	.p-top .s-aboutus__detail--ttl {
		font-size: 3rem;
	}
}
.p-top .s-aboutus__detail--txt p {
	line-height: 2;
	margin-top: 50px;
}

/*------------------------------------------------------------
p-lease
------------------------------------------------------------*/
.p-lease {
	color: #2e2e2e;
	font-weight: 500;
	font-family: 'VDL-V7Gothic', sans-serif;
}
.p-lease h1,
.p-lease h2,
.p-lease h3,
.p-lease h4,
.p-lease h5,
.p-lease h6 {
	font-weight: 600;
}
.p-lease .s-descript__list {
	border-top: 1px solid #cdd3cd;
	border-bottom: 1px solid #cdd3cd;
}
.p-lease .s-descript__list--item {
	width: 33.3333333333%;
	padding: 5% 4%;
}
@media screen and (max-width: 767px) {
	.p-lease .s-descript__list--item {
		width: 100%;
		padding: 50px 30px;
	}
}
.p-lease .s-descript__list--item + .s-descript__list--item {
	border-left: 1px solid #cdd3cd;
}
@media screen and (max-width: 767px) {
	.p-lease .s-descript__list--item + .s-descript__list--item {
		border-left: 0;
		border-top: 1px solid #cdd3cd;
	}
}
.p-lease .s-descript__list--ttl {
	font-size: 22px;
	text-align: center;
}
.p-lease .s-descript__list--desc {
	font-size: 17px;
	line-height: 2;
	margin-top: 33px;
}
@media screen and (max-width: 767px) {
	.p-lease .s-descript__list--desc {
		font-size: 1.6rem;
	}
}
.p-lease .s-solution {
	text-align: center;
	background-color: #f5f8f6;
}
.p-lease .s-solution__label {
	font-size: 30px;
	max-width: 390px;
	margin: 20px auto 0;
	padding: 30px 20px;
	border-radius: 50px;
	background-color: #fff;
	border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
	.p-lease .s-solution__label {
		font-size: 2.6rem;
		padding: 25px;
	}
}
.p-lease .s-solution__desc {
	font-size: 22px;
	margin-top: 32px;
}
.p-lease .s-solution__note {
	font-size: 30px;
	margin-top: 32px;
}
@media screen and (max-width: 767px) {
	.p-lease .s-solution__note {
		font-size: 2.6rem;
	}
}
.p-lease .s-solution__txt {
	font-size: 17px;
	max-width: 725px;
	line-height: 2;
	text-align: left;
	margin: 32px auto 0;
}
.p-lease .s-point {
	text-align: center;
	background-color: #69a57d;
	background: url(../images/lease/point-bg.jpg);
}
.p-lease .s-point .c-title01 {
	color: #fff;
}
.p-lease .s-point__list {
	padding: 0 4%;
}
@media screen and (max-width: 767px) {
	.p-lease .s-point__list {
		padding: 0;
	}
}
.p-lease .s-point__list--item {
	width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
	.p-lease .s-point__list--item {
		width: 100%;
	}
	.p-lease .s-point__list--item + .s-point__list--item {
		margin-top: 80px;
	}
}
.p-lease .s-point__list--ttl {
	color: #fff;
	font-size: 25px;
	padding: 18px 10px;
	text-align: center;
	margin-bottom: 12px;
	border-radius: 50px;
	background-color: rgba(0, 0, 0, 0.35);
}
.p-lease .s-point__list--ttl span {
	display: block;
	font-size: 19px;
}
@media screen and (max-width: 767px) {
	.p-lease .s-point__list--ttl span {
		font-size: 1.7rem;
	}
}
.p-lease .s-point__list--txt {
	text-align: left;
	margin-top: 40px;
	line-height: 2;
	padding: 5% 9%;
	padding: 23px 40px 25px;
	border-radius: 12px;
	letter-spacing: 1px;
	background-color: #fff;
}
.p-lease .s-service__img {
	background: url(../images/top/aboutus-img02.jpg);
}
@media screen and (max-width: 767px) {
	.p-lease .s-service__img {
		height: 80vw;
		max-height: 500px;
	}
}
.p-lease .s-service__txt {
	color: #fff;
	font-size: 27px;
	line-height: 2.5;
	padding: 6.5% 5%;
	font-weight: 600;
	background-color: #469372;
}
@media screen and (max-width: 767px) {
	.p-lease .s-service__txt {
		font-size: 2.5rem;
		padding: 40px 30px 50px;
	}
}
.p-lease .s-features {
	background-color: #c0d8cf;
}
.p-lease .s-features__list {
	padding: 0 4%;
}
@media screen and (max-width: 767px) {
	.p-lease .s-features__list {
		padding: 0;
	}
}
@media screen and (max-width: 767px) {
	.p-lease .s-features__list--item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}
.p-lease .s-features__list--item + .s-features__list--item {
	margin-top: 53px;
}
@media screen and (max-width: 767px) {
	.p-lease .s-features__list--item + .s-features__list--item {
		margin-top: 80px;
	}
}
.p-lease .s-features__list--item.item01 .s-features__list--img {
	background: url(../images/lease/features-img01.jpg);
}
.p-lease .s-features__list--item.item02 .s-features__list--img {
	background: url(../images/lease/features-img02.jpg);
}
.p-lease .s-features__list--item.item03 .s-features__list--img {
	background: url(../images/lease/features-img03.jpg);
}
.p-lease .s-features__list--item.item04 .s-features__list--img {
	background: url(../images/lease/features-img04.jpg);
}
.p-lease .s-features__list--img {
	width: 51%;
	margin-left: 4%;
	min-height: 400px;
	border-radius: 20px;
}
@media screen and (max-width: 767px) {
	.p-lease .s-features__list--img {
		width: 100%;
		height: 70vw;
		min-height: auto;
		max-height: 400px;
		margin: 0 0 35px;
	}
}
.p-lease .s-features__list--txt {
	width: 44%;
}
@media screen and (max-width: 767px) {
	.p-lease .s-features__list--txt {
		width: 100%;
	}
}
.p-lease .s-features__list--ttl {
	font-size: 31px;
	line-height: 1.6;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 5px;
	margin-bottom: 20px;
	border-bottom: 1px solid #7c7c7c;
}
@media screen and (max-width: 767px) {
	.p-lease .s-features__list--ttl {
		font-size: 2.5rem;
	}
}
.p-lease .s-features__list--ttl img {
	margin-right: 3%;
}
@media screen and (max-width: 767px) {
	.p-lease .s-features__list--ttl img {
		max-width: 12%;
		margin-right: 12px;
	}
}
.p-lease .s-features__list--desc {
	font-size: 17px;
	line-height: 2;
}

/*------------------------------------------------------------
p-message
------------------------------------------------------------*/
.p-message {
	color: #2e2e2e;
	font-weight: 500;
	font-family: 'VDL-V7Gothic', sans-serif;
}
.p-message h1,
.p-message h2,
.p-message h3,
.p-message h4,
.p-message h5,
.p-message h6 {
	font-weight: 600;
}
.p-message .s-company {
	background-color: #f5f8f6;
}
.p-message .s-company__inner {
	max-width: 1200px;
}
.p-message .s-company__table tr:nth-child(odd) {
	background-color: #ffffff;
}
.p-message .s-company__table td {
	font-size: 18px;
	padding: 12px;
	line-height: 1.7;
	vertical-align: top;
}
.p-message .s-company__table td:first-child {
	padding: 12px 4% 12px 8%;
	width: 23%;
	min-width: 186px;
}
.p-message .s-column .s-visual__top {
	background-color: #fff;
}

/*------------------------------------------------------------
p-contact
------------------------------------------------------------*/
.p-contact {
	color: #2e2e2e;
	font-weight: 500;
	font-family: 'VDL-V7Gothic', sans-serif;
}
.p-contact h1,
.p-contact h2,
.p-contact h3,
.p-contact h4,
.p-contact h5,
.p-contact h6 {
	font-weight: 600;
}
.p-contact .s-form {
	font-size: 18px;
}
@media screen and (max-width: 767px) {
	.p-contact .s-form {
		font-size: 1.6rem;
	}
}
.p-contact .s-form .flex-base {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}
.p-contact .s-form .flex-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.p-contact .s-form dl {
	color: #2f2f2f;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.p-contact .s-form dl {
		display: block;
	}
}
.p-contact .s-form dl + dl {
	margin-top: 30px;
}
.p-contact .s-form dl dt {
	width: 17%;
	min-width: 183px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.p-contact .s-form dl dt {
		width: 100%;
		padding-bottom: 8px;
	}
}
.p-contact .s-form dl dt .required {
	width: 50px;
	color: #fff;
	font-size: 15px;
	padding: 4px;
	text-align: center;
	background: #e2416c;
}
@media screen and (max-width: 767px) {
	.p-contact .s-form dl dt .required {
		font-size: 1.3rem;
	}
}
.p-contact .s-form dl dt .required.re-any {
	background-color: #919191;
}
.p-contact .s-form dl dd {
	width: 83%;
}
@media screen and (max-width: 767px) {
	.p-contact .s-form dl dd {
		width: 100%;
	}
}
.p-contact .s-form dl input,
.p-contact .s-form dl select,
.p-contact .s-form dl textarea {
	color: #afafaf;
	width: 100%;
	height: 60px;
	padding: 15px 3%;
	font-size: 18px;
	resize: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #a2a2a2;
	background-color: #f8f8f8;
	vertical-align: middle;
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-webkit-transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
	transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s, -webkit-box-shadow linear 0.2s;
	font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 767px) {
	.p-contact .s-form dl input,
	.p-contact .s-form dl select,
	.p-contact .s-form dl textarea {
		font-size: 1.6rem;
		padding: 10px 15px;
	}
}
.p-contact .s-form dl input::-webkit-input-placeholder,
.p-contact .s-form dl select::-webkit-input-placeholder,
.p-contact .s-form dl textarea::-webkit-input-placeholder {
	color: #afafaf;
}
.p-contact .s-form dl input::-moz-placeholder,
.p-contact .s-form dl select::-moz-placeholder,
.p-contact .s-form dl textarea::-moz-placeholder {
	color: #afafaf;
}
.p-contact .s-form dl input:-ms-input-placeholder,
.p-contact .s-form dl select:-ms-input-placeholder,
.p-contact .s-form dl textarea:-ms-input-placeholder {
	color: #afafaf;
}
.p-contact .s-form dl input::-ms-input-placeholder,
.p-contact .s-form dl select::-ms-input-placeholder,
.p-contact .s-form dl textarea::-ms-input-placeholder {
	color: #afafaf;
}
.p-contact .s-form dl input::placeholder,
.p-contact .s-form dl select::placeholder,
.p-contact .s-form dl textarea::placeholder {
	color: #afafaf;
}
.p-contact .s-form dl input:focus,
.p-contact .s-form dl select:focus,
.p-contact .s-form dl textarea:focus {
	border-color: rgba(82, 168, 236, 0.8);
	outline: 0;
	outline: thin dotted \9;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
.p-contact .s-form dl input[type='radio'] {
	width: 25px;
	height: 25px;
	margin-right: 10px;
	vertical-align: -6px;
}
@media screen and (max-width: 767px) {
	.p-contact .s-form dl input[type='radio'] {
		width: 20px;
		height: 20px;
		margin-right: 7px;
		vertical-align: -5px;
	}
}
.p-contact .s-form dl textarea {
	height: 600px;
}
@media screen and (max-width: 767px) {
	.p-contact .s-form dl textarea {
		height: 300px;
	}
}
.p-contact .s-form dl select {
	max-width: 400px;
	color: #2f2f2f;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url(../images/common/ic-select.svg);
	background-repeat: no-repeat;
	background-position: center right 20px;
	background-color: rgba(255, 255, 255, 0.58);
}
.p-contact .s-form dl select::-ms-expand {
	display: none;
}
.p-contact .s-form .wpcf7cp-btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.p-contact .s-form__submit,
.p-contact .s-form__confirm,
.p-contact .s-form .wpcf7cp-btns {
	text-align: center;
}
.p-contact .s-form__submit input,
.p-contact .s-form__submit button,
.p-contact .s-form__confirm input,
.p-contact .s-form__confirm button,
.p-contact .s-form .wpcf7cp-btns input,
.p-contact .s-form .wpcf7cp-btns button {
	width: 296px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	margin: 60px 10px 0;
	padding: 23px 5% 23px 10px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	border: 2px solid #707070;
	font-family: 'Noto Sans JP', sans-serif;
	background-image: url(../images/common/ic-right.svg);
	background-position: center right 20% !important;
	background-repeat: no-repeat !important;
	background-size: 30px 30px !important;
}
@media screen and (max-width: 767px) {
	.p-contact .s-form__submit input,
	.p-contact .s-form__submit button,
	.p-contact .s-form__confirm input,
	.p-contact .s-form__confirm button,
	.p-contact .s-form .wpcf7cp-btns input,
	.p-contact .s-form .wpcf7cp-btns button {
		width: 60%;
		padding: 10px 0;
		margin: 60px 4px 0;
		padding: 20px 15% 20px 10px;
		background-position: center right 12%;
	}
}
@media screen and (max-width: 425px) {
	.p-contact .s-form__submit input,
	.p-contact .s-form__submit button,
	.p-contact .s-form__confirm input,
	.p-contact .s-form__confirm button,
	.p-contact .s-form .wpcf7cp-btns input,
	.p-contact .s-form .wpcf7cp-btns button {
		font-size: 1.4rem;
	}
}
.p-contact .s-form__submit input:hover,
.p-contact .s-form__submit button:hover,
.p-contact .s-form__confirm input:hover,
.p-contact .s-form__confirm button:hover,
.p-contact .s-form .wpcf7cp-btns input:hover,
.p-contact .s-form .wpcf7cp-btns button:hover {
	color: #fff;
	background-color: #69a57d;
	background-image: url(../images/common/ic-right-white.png);
}

.s-form .wpcf7-spinner {
	position: absolute;
}

/* テーブル */
#wpcf7cpcnf table th,
#wpcf7cpcnf table td {
	padding: 2% 4%;
}

#wpcf7cpcnf table th {
	background-color: #69a57d;
	border: 1px solid #f5f8f6;
	text-align: left;
	width: 35%;
	font-weight: 500;
}

#wpcf7cpcnf table td {
	border: 1px solid #c6e6fc;
}

@media screen and (max-width: 767px) {
	#wpcf7cpcnf table th,
	#wpcf7cpcnf table td {
		display: block;
		width: 100% !important;
	}
	#wpcf7cpcnf table th {
		padding: 12px 12px 12px 4%;
	}
	#wpcf7cpcnf table td {
		margin-bottom: 27px;
		border-top: 0;
		padding: 15px 15px 15px 4%;
	}
}
.page-contact .s-contact {
	display: none;
}

/*------------------------------------------------------------
p-trade
------------------------------------------------------------*/
.p-trade {
	color: #2e2e2e;
	font-weight: 500;
	font-family: 'VDL-V7Gothic', sans-serif;
}
.p-trade h1,
.p-trade h2,
.p-trade h3,
.p-trade h4,
.p-trade h5,
.p-trade h6 {
	font-weight: 600;
}
.p-trade .s-trade__inner {
	max-width: 1200px;
}
.p-trade .s-trade__list--item {
	background-color: #ecf1ee;
}
.p-trade .s-trade__list--item + .s-trade__list--item {
	margin-top: 55px;
}
.p-trade .s-trade__list--item.item01 .s-trade__list--img {
	background: url(../images/trade/trade-img01.jpg);
}
.p-trade .s-trade__list--item.item02 .s-trade__list--img {
	background: url(../images/trade/trade-img02.jpg);
}
.p-trade .s-trade__list--img {
	width: 44%;
	min-height: 300px;
}
@media screen and (max-width: 767px) {
	.p-trade .s-trade__list--img {
		width: 100%;
		height: 60vw;
		max-height: 400px;
		min-height: auto;
	}
}
.p-trade .s-trade__list--txt {
	width: 56%;
	padding: 6% 7%;
}
@media screen and (max-width: 767px) {
	.p-trade .s-trade__list--txt {
		width: 100%;
		padding: 33px 30px 40px;
	}
}
.p-trade .s-trade__list--ttl {
	font-size: 40px;
	font-family: 'Toppan Bunkyu Gothic', sans-serif;
}
@media screen and (max-width: 767px) {
	.p-trade .s-trade__list--ttl {
		text-align: center;
	}
}
.p-trade .s-trade__list--desc {
	font-size: 18px;
}
@media screen and (max-width: 767px) {
	.p-trade .s-trade__list--desc {
		text-align: center;
	}
}
.p-trade .s-trade__list--note {
	line-height: 1.7;
	margin-top: 25px;
}

/*------------------------------------------------------------
p-column
------------------------------------------------------------*/
.p-column .s-column__inner {
	max-width: 1200px;
}
.p-column .s-column .c-title, .p-news .c-title {
  text-align: center;
  padding-top: 60px;
}
.p-column .s-column__cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 47px;
}
.p-column .s-column__cate--item {
  padding: 10px 2%;
  margin: 0 0 20px 20px;
  border: 1px solid #707070;
}
/* @media screen and (max-width: 767px) {
  .p-column .s-column__cate--item {
    width: 48%;
  }
  .p-column .s-column__cate--item:not(:nth-child(2n)) {
    margin-right: 4%;
  }
  .p-column .s-column__cate--item:not(:nth-child(-n+2)) {
    margin-top: 4%;
  }
} */
@media screen and (max-width: 767px) {
  .p-column .s-column__cate--item {
    margin: 0 0 10px 10px;
  }
}
.p-column .s-column__cate h3 {
  font-size: 17px;
}
.p-column .s-column__cate h3 span {
  font-size: 16px;
  margin-right: 15px;
  font-family: "Acumin Pro", sans-serif;
}
.p-column .s-column__list {
  /* padding: 0 4%; */
}
.p-column .s-column .c-pagination {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80px;
}
.p-column .s-column .c-pagination span.current {
  background-color: #DDDAD3;
}
.p-column .s-column .c-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 39px;
  height: 39px;
  margin: 0 5px;
  cursor: pointer;
  font-weight: 600;
  background-color: #F2F1EE;
  font-family: "Noto Sans JP", sans-serif;
}
.p-column .s-column .c-pagination .page-numbers.dots {
  background-color: transparent;
}
.p-column .s-column .c-pagination .prev.page-numbers, .p-column .s-column .c-pagination .next.page-numbers {
  background-color: transparent;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
}
.p-column .s-column .c-pagination .prev.page-numbers {
  border-width: 6px 10px 6px 0px;
  border-color: transparent #939393 transparent transparent;
}
.p-column .s-column .c-pagination .next.page-numbers {
  border-width: 6px 0px 6px 10px;
  border-color: transparent transparent transparent #939393;
}
  
/*------------------------------------------------------------
p-single
------------------------------------------------------------*/
.p-single {
	font-family: 'Noto Sans JP', sans-serif;
}
.p-single .s-single__ttl {
	font-size: 34px;
	margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
	.p-single .s-single__ttl {
		font-size: 3rem;
	}
}
.p-single .s-single__txt {
	font-size: 18px;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	.p-single .s-single__txt {
		font-size: 1.6rem;
	}
}
.p-single .s-single__txt p + p {
	margin-top: 30px;
}
.p-single .s-single__btn {
	display: block;
	padding: 22px;
	max-width: 296px;
	text-align: center;
	margin: 90px auto 0;
	border: 2px solid #707070;
}
@media screen and (max-width: 767px) {
	.p-single .s-single__btn {
		padding: 20px;
		margin: 80px auto 0;
	}
}
.p-single .s-single__btn:hover {
	color: #fff;
	background-color: #69a57d;
}

.p-single .s-single__txt table {
	width: auto;
	margin: 20px 0;
}
.p-single .s-single__txt table th, .p-single .s-single__txt table td {
	padding: 10px 20px;
	border: 1px solid #707070;
}

.p-single .s-single__txt h1 {
	font-size: 28px;
}
.p-single .s-single__txt h2 {
	font-size: 24px;
}
@media screen and (max-width: 767px) {
	.p-single .s-single__txt h1 {
		font-size: 2.4rem;
	}
	.p-single .s-single__txt h2 {
		font-size: 2rem;
	}
}

/*------------------------------------------------------------
p-news
------------------------------------------------------------*/
.p-news .s-news .c-list01, .p-single .s-single__frame {
	max-width: 1200px;
	margin: 0 auto;
}
.p-news .s-single .s-single__desc {
	color: #525252;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 80px;
}
.p-news .s-single .s-single__desc--cate {
	width: 172px;
	display: block;
	color: #939393;
	font-size: 16px;
	padding: 4px 5px 2px;
	text-align: center;
	margin-left: 2.5%;
	border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
	.p-news .s-single .s-single__desc--cate {
		width: 150px;
		font-size: 1.4rem;
		margin-left: 10px;
	}
}