@charset "utf-8";

html *,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	margin: 0 auto;
	font-size: 16px;
	scroll-behavior: smooth;
}
@media (max-width: 767px) {
  html {
	  font-size: 15px;
  }
}
body {
	font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	line-height: 1;
	background: #f4f4f4;
}
h1,h2,.en,.jp {
	font-family: 'Sawarabi Mincho', serif;
}
.en {
	text-transform: uppercase;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
ul,ol {
	list-style: none;
}
a {
	color: inherit;
	text-decoration: none;
}


/* スクロールアニメ */
.fadein-anime,
.fadein-anime2 {
	opacity: 0;
}
.fadein-anime.blockIn {
	animation: fadeInAnime 1.3s forwards;
}
.fadein-anime2.blockIn {
	animation: fadeInAnime 1.3s forwards .5s;
}
@keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fadeup-anime,
.fadeup-anime2 {
	opacity: 0;
}
.fadeup-anime.blockIn {
	animation: fadeUpAnime 1.3s forwards;
}
.fadeup-anime2.blockIn {
	animation: fadeUpAnime 1.3s forwards .4s;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 50;
  }
.header-inner {
    height: 80px;
	margin: 0 auto;
	padding: 45px 15px;
	display: flex;
	align-items: center;
}
.header-logo {
	text-align: center;
}
.header-logo img {
	display: block;
	margin: 0 auto;
}
#gld {
	display: block;
	margin-top: 5px;
	font-size: .65rem;
	color: #c0b283;
	font-weight: bold;
	white-space: nowrap;
}
#menu {
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	flex-wrap: wrap;
	justify-content: flex-end;
	width: 100%;
}
#menu-btn {
  	display: none;
}
#menu-content {
  	margin: 0;
}
#menu-content > li {
  	position: relative;
  	float: left;
	padding: 10px 25px;
	text-align: center;
  	color: #c0b283;
}
#menu-content > li > a {
  	display: block;
}
#menu-content li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #dcd0c0;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}
#menu-content li a:hover::after {
    transform: scale(1, 1);
}
#menu-content li.current,
.second-content li.current {
	background: #373737;
	border-radius: 10px;
}
#menu-content .en {
	font-weight: bold;
	font-size: 1rem;
	text-transform: uppercase;
}
#menu-content .jp {
	font-size: .65rem;
	margin-top: 8px;
}
#menu-content > li > a > .blogicon-chevron-down {
  	margin-right: 5px;
}
#menu-content > li > ul.second-content {
  	visibility: hidden;
  	opacity: 0;
  	position: absolute;
  	padding: 20px 0;
	background: #fff;
}
#menu-content > li:hover > ul.second-content {
  	visibility: visible;
  	opacity: 1;
  	-webkit-transition: opacity 0.2s, visibility 0.2s;
  	transition: opacity 0.2s, visibility 0.2s;
}
#menu-content > li > ul.second-content > li {
  	text-align: center;
  	width: 180px;
	margin-bottom: 35px;
}
#menu-content > li > ul.second-content > li:last-child {
	margin-bottom: 0;
}
#menu-content > li > ul.second-content > li > a {
  	display: block;
	padding: 10px 20px;
  	color: #c0b283;
}
.second-content li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #dcd0c0;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}
#menu-content > li > ul.second-content > li > a:hover {
	transform: scale(1, 1);
  	transition: all 0.2s;
}
/* surface・Macbook用ヘッダー */
@media (max-width: 1281px) {
	#menu-content > li {
		padding: 10px;
	}
	#menu-content .en {
		font-size: .85rem;
	}
	#menu-content .jp {
		font-size: .5rem;
	}
}
/* スマホ・タブレット用ヘッダー */
@media (max-width: 1024px) {
	.header-inner {
		padding: 20px 10px;
	}
	nav {
		position: fixed;
    	top: 0;
    	left: -300px;
    	bottom: 0;
    	width: 70%;
    	background: #fff;
    	overflow-x: hidden;
    	overflow-y: auto;
    	transition: all 0.3s;
    	z-index: 3;
    	opacity: 0;
  	}
  	.open nav {
    	left: 0;
    	opacity: 1;
  	}
  	nav .inner {
    	padding: 20px;
  	}
  	nav .inner ul {
    	margin: 0;
    	padding: 0;
  	}
  	nav .inner ul li {
    	position: relative;
   		margin: 0;
  	}
  	nav .inner ul li a {
    	display: block;
    	color: #c0b283;
            	transition-duration: 0.2s;
  	}
	#menu-content .en {
		font-size: 1.25rem;
	}
	#menu-content .jp {
		font-size: .85rem;
		margin-top: 15px;
	}
	 #menu-content > li {
    	width: 100%;
    	margin-bottom: 15px;
		border-bottom: 1px solid #787878;
  	}
  	#menu-content > li > a {
    	height: 100%;
    	padding: 0px;
  	}
  	#menu-content > li > ul.second-content {
    	visibility: visible;
    	opacity: 1;
    	width: 100%;
    	position: relative;
            	box-shadow: none;
  	}
  	#menu-content > li > ul.second-content > li {
    	width: 100%;
    	text-align: center;
		margin-bottom: 0;
  	}
  	.toggle_btn {
    	display: block;
    	position: fixed;
    	top: 25px;
    	right: 20px;
    	width: 30px;
    	height: 30px;
    	transition: all 0.3s;
    	cursor: pointer;
    	z-index: 3;
  	}
  	.toggle_btn span {
    	position: absolute;
    	left: 0;
    	width: 30px;
    	height: 1px;
    	background-color: #333;
    	border-radius: 4px;
    	transition: all 0.3s;
  	}
  	.toggle_btn span:nth-child(1) {
    	top: 4px;
  	}
  	.toggle_btn span:nth-child(2) {
    	top: 14px;
  	}
  	.toggle_btn span:nth-child(3) {
    	bottom: 4px;
  	}
  	.open .toggle_btn span {
    	background-color: #fff;
  	}
  	.open .toggle_btn span:nth-child(1) {
    	transform: translateY(10px) rotate(-45deg);
  	}
  	.open .toggle_btn span:nth-child(2) {
    	opacity: 0;
  	}
  	.open .toggle_btn span:nth-child(3) {
    	transform: translateY(-10px) rotate(45deg);
  	}
  	#mask {
    	display: none;
    	transition: all 0.3s;
  	}
  	.open #mask {
    	display: block;
    	position: fixed;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 100%;
    	background: #000;
    	opacity: 0.5;
    	z-index: 2;
    	cursor: pointer;
  	}
}
@media (max-width: 767px) {
	.header-inner {
		height: 60px;
	}
	.header-logo img {
		width: 35%;
	}
	.toggle_btn {
		top: 15px;
	}
}

/********************* トップページ *********************/
/* ヒーロー動画 */
.hero-container {
	position: relative;
	width: 100%;
	height: 100vh;
}
.hero-text {
	position: absolute;
	top: 35%;
	left: 0;
	width: 100%;
	text-align: center;
}
.hero-text p {
	font-family: 'Sawarabi Mincho', serif;
	font-size: 3rem;
	text-align: center;
	font-weight: bold;
	line-height: 2;
	color: #4E4E4E;
	text-shadow: 2px 2px 1px #c0b283;
}
.video {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: -1;
}
.video::after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.5);
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}
.video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}
@media screen and (min-width: 768px) {
	.video{
		min-width: 960px;
	}
}
@media (max-width: 767px) {
	.hero-container {
		height: 50vh;
	}
	.hero-text {
		top: 45%;
	}
	.hero-text p {
		font-size: 1.3rem;
	  	line-height: 2.1;
	}
	.video {
		height: 50vh;
	}
}
/*メイン*/
.main {
	overflow: hidden;
}
.main-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}
.top-text {
	width: 55%;
	margin: 100px auto 150px;
	font-family: 'Sawarabi Mincho', serif;
	font-size: 1.4rem;
	line-height: 2;
	letter-spacing: .5px;
	text-align: center;
}
.top-text p {
	margin: 35px 0;
}
.top-text p span {
	display: inline-block;
}
.recruitbox {
	width: 85%;
	margin: 150px auto;
	padding: 50px;
	background: #dcd0c0;
}
.recruitbox h2 {
	margin: 20px auto 50px;
	font-size: 2.5rem;
	color: #c0b283;
	text-shadow: 1px 1px 1px #373737;
	text-align: center;
}
.recruitbox h2 .en {
	line-height: 1.3;
}
.recruitbox h2 .jp {
	font-size: 1.7rem;
	line-height: .8;
}
.recruit-info {
	display: flex;
	justify-content: space-around;
}
.recruit-info-box {
	position: relative;
	display: inline-block;
	margin: 0 10px;
	padding: 50px 45px;
	background: #373737;
	border-radius: 10px;
	outline: none;
    overflow: hidden;
}
.recruit-info-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: -75%;
    width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}
.recruit-info-box:hover::before {
	animation: shine 0.7s;
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.recruit-info-box .en {
	font-size: .9rem;
	color: #dcd0c0;
}
.recruit-info-box .jp {
	margin: 0 20px 50px 10px;
	font-size: 2rem;
	color: #c0b283;
	line-height: 2.5;
}
.recruit-info-box .arrow {
	position: absolute;
	bottom: 10px;
	right: 5px;
	padding: 20px;
	background: #f4f4f4;
	border-radius: 50%;
}
.recruit-info-box .arrow::after {
	content: "";
	position: absolute;
	bottom: 40%;
    right: 17px;
	width: 3px;
	height: 15px;
	background: #c0b283;
	transform: skewX(45deg);
	transition: all .2s linear;
	z-index: 3;
}
.recruit-info-box .arrow::before {
    content: "";
    position: absolute;
    bottom: 40%;
	right: 13px;
	width: 55px;
	height: 2px;
    background: #c0b283;
	transition: all .2s linear;
	z-index: 3;
}
.newsbox {
	margin: 150px auto 120px;
	width: 80%;
}
.newsbox h2 {
	font-size: 2.5rem;
	color: #c0b283;
	text-shadow: 1px 1px 1px #373737;
	text-transform: uppercase;
}
.news {
	margin-top: 15px;
	padding: 30px 20px;
	height: 230px;
	background: #fff;
	border-radius: 10px;
}
.news ul li {
	margin-bottom: 15px;
	border-bottom: 1px solid #BFBFBF;
	padding-bottom: 15px;
}
.news time {
	float: left;
	width: 100px;
	padding: 3px;
	font-size: .8rem;
	font-weight: 600;
}
.news .news-text {
	float: none;
	width: auto;
	margin-left: 120px;
	line-height: 1.5;
}
.news .news-text a {
	border: 1px solid #000;
}
.news .news-text a:hover {
	opacity: .5;
}
@media (max-width: 799px) {
	.recruitbox {
		width: 100%;
		margin: 70px auto;
		padding: 20px;
	}
	.recruitbox h2 {
		font-size: 2rem;
		margin: 20px auto;
	}
	.recruit-info {
		flex-direction: column;
		align-items: center;
	}
	.recruit-info-box {
		margin: 30px 0;
		padding: 40px;
		font-size: 2rem;
	}
	.newsbox {
		margin: 100px auto;
		width: 90%;
	}
	.newsbox h2 {
		font-size: 2rem;
	}
	.news {
		padding: 20px;
		height: 280px;
	}
	.news time {
		width: 50px;
		font-size: .9rem;
	}
	.news .news-text {
		margin-left: 100px;
		line-height: 1.3;
	}
}
@media (max-width: 767px) {
	.top-text {
		width: 95%;
		font-size: 1.2rem;
	}
}
/********************* 会社案内ページ *********************/
/* ページトップのタイトル */
.top-container {
	height: 55vh;
	background: #333;
}
.no-img {
	height: 45vh;
}
.top-container p {
	padding: 12% 0 10%;
	color: #c0b283;
	text-shadow: 2px 1px 1px #787878;
	text-align: center;
}
.no-img p {
	padding: 10% 0;
}
.top-container .en {
	font-weight: bold;
	font-size: 5.3rem;
	line-height: 1.2;
}
.top-container .jp {
	font-size: 1.6rem;
	line-height: 2;
}
.slide-in {
	overflow: hidden;
    display: inline-block;
}
.slide-in_inner {
	display: inline-block;
}
.leftAnime{
    opacity: 0;
}
.slideAnimeLeftRight {
	animation-name: slideTextX100;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes slideTextX100 {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
.slideAnimeRightLeft {
	animation-name: slideTextX-100;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes slideTextX-100 {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
@media (max-width: 890px) {
	.top-container {
		height: 30vh;
	}
	.no-img {
		height: 25vh;
	}
}
@media (max-width: 768px) {
	.top-container {
		height: 35vh;
	}
	.no-img {
		height: 26vh;
	}
	.top-container p {
		padding: 18% 20px 0;
	}
	.top-container .en {
		font-size: 3.1rem;
	}
	.top-container .jp {
		font-size: 1.3rem;
	}
}

/*メイン*/
.company-container {
	margin: 100px auto;
}
.company-container h2 {
	margin: 0 auto 15px;
	text-align: center;
	font-size: 2.5rem;
	color: #c0b283;
	text-shadow: 1px 1px 1px #373737;
}
.company-container p {
	line-height: 1.9;
}
.companyinfo {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	margin: 150px auto 0;
}
.companyinfo-text {
	flex-basis: 65%;
	padding: 20px 50px 0;
}
.info-img img {
	border-radius: 10px;
}
.jigyou {
	display: flex;
	align-items: center;
	margin: 150px auto 0;
}
.jigyou-text {
	flex-basis: 70%;
	padding: 0 50px 20px;
}
.fukuri {
	position: relative;
	display: flex;
	margin: 0 -11%;
	padding: 0 11%;
	margin-top: 150px;
	padding-top: 30px;
	padding-bottom: 30px;
	background: #dcd0c0;
}
.fukuri-text {
	position: absolute;
	top: 40%;
}
.fukuri-text h2 {
	text-align: left;
	font-size: 3rem;
}
.fukuri-text p {
	margin-top: 15px;
	font-size: 1.1rem;
	line-height: 1.4;
}
.company-boxs {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.company-box {
	width: 60%;
	margin: 20px 30px 20px auto;
	padding: 30px 20px;
	background: #fff;
	border-radius: 10px;
}
.company-box h3 {
	margin-bottom: 15px;
	font-family: 'Sawarabi Mincho', serif;
	font-size: 1.5rem;
	color: #dcd0c0;
	text-shadow: 1px 1px 1px #555;
	text-align: center;
}
.company-box p {
	font-size: .95rem;
	line-height: 1.6;
}
.gaiyou {
	margin-top: 150px;
}
.company-list {
	margin: 0 8%;
	padding: 20px  30px;
	background: #fff;
	border-radius: 10px;
}
.company-list dl {
	display: flex;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid #787878;
}
.company-list dl:last-child {
	border-bottom: none;
}
.company-list dt {
	flex-basis: 20%;
	margin-right: 50px;
	font-size: .95rem;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
}
.company-list dd {
	padding: 0;
	font-size: .9rem;
	line-height: 1.6;
	flex-basis: 80%;
}
.company-list dd span {
	display: inline-block;
	width: 50%;
}
.company-list a {
	margin-left: 15px;
	font-size: .8rem;
	color: #787878;
	border-bottom: 1px solid #787878;
	text-transform: uppercase;
}
.company-list a:hover {
	opacity: .5;
}
@media (max-width: 1180px) {
	.company-list dd span {
		display: block;
		width: 100%;
	}
}
@media (max-width: 885px) {
	.company-container h2 {
		font-size: 2rem;
	}
	.companyinfo {
		flex-direction: column;
		margin: 90px auto 0;
	}
	.info-img {
		margin: 0 auto;
		width: 50%;
	}
	.companyinfo-text,
	.jigyou-text {
		flex-basis: 100%;
		width: 80%;
		margin: 0 auto;
		padding: 20px 10px;
	}
	.fukuri-text {
		top: 30px;
		right: 10%;
		left: 10%;
	}
	.fukuri-text h2,
	.fukuri-text p {
		text-align: center;
	}
	.company-boxs {
		margin-top: 18%;
		align-items: center;
	}
	.company-box {
		width: 100%;
	}
	.jigyou {
		flex-direction: column;
		margin: 90px auto 0;
	}
	.fukuri {
		flex-direction: column;
		margin-top: 90px;
	}
	.gaiyou {
		margin-top: 90px;
	}
	.company-list {
		margin: 20px 10px;
		padding: 10px;
	}
	.company-list dl {
		flex-direction: column;
		padding: 20px 0;
	}
	.company-list dt {
		margin-right: 0;
		flex-basis: 20%;
	}
	.company-list dd {
		padding: 20px;
		font-size: 1rem;
		flex-basis: 80%;
	}
}
@media (max-width: 767px) {
	.info-img {
		width: 95%;
	}
	.companyinfo-text,
	.jigyou-text {
		width: 100%;
	}
	.company-boxs {
		margin-top: 35%;
	}
}
/********************* 採用情報ページ *********************/
.recruit-container {
	margin: 100px auto;
}
.entry-btn {
	display: block;
	position: relative;
	width: 300px;
	margin: 150px auto;
	padding: 40px;
	background: #373737;
	border-radius: 10px;
	outline: none;
    overflow: hidden;
	text-align: center;
	color: #c0b283;
}
.entry-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -75%;
    width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}
.entry-btn:hover::before {
	animation: shine 0.7s;
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.entry-btn .en {
	font-size: 1.9rem;
	line-height: 1.4;
}
.entry-btn .jp {
	color: #dcd0c0;
	font-size: .9rem;
}
.download-btn {
	margin: 50px auto 0;
	padding: 20px;
	opacity: .6;
}
.preparation {
	margin-top: 5px;
	color: red;
	font-size: .85rem;
	font-weight: bold;
	text-align: center;
}
.recruit-container h2 {
	margin: 150px auto 20px;
	font-size: 2.5rem;
	color: #c0b283;
	text-shadow: 1px 1px 1px #373737;
	text-align: center;
}
.recruit-text {
	width: 65%;
	margin: 0 auto;
	line-height: 2;
}
.recruit-list {
	width: 70%;
	margin: 0 auto;
	padding: 20px  30px;
	background: #fff;
	border-radius: 10px;
}
.recruit-list dl {
	display: flex;
	align-items: center;
	padding: 30px 0;
	border-bottom: 1px solid #787878;
}
.recruit-list dl:last-child {
	border-bottom: none;
}
.recruit-list dt {
	margin-right: 50px;
	font-size: 1rem;
	font-weight: bold;
	flex-basis: 15%;
	text-align: center;
}
.recruit-list dd {
	padding: 0;
	font-size: .95rem;
	line-height: 1.8;
	flex-basis: 90%;
}
.recruit-list dd .job {
	font-size: 1.1rem;
	font-weight: bold;
	letter-spacing: .1em;
	color: #c0b283;
}
.recruit-list dd .margin {
	display: block;
	margin-top: 35px;
}
.schedule {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.schedule-box {
	padding: 30px 10px;
	flex-basis: 20%;
	background: #dcd0c0;
	text-align: center;
	line-height: 1.5;
}
.schedule-box span {
	display: inline-block;
}
.arrow2 {
	content: "";
	width: 0;
	height: 0;
	top: 25%;
	right: -40px;
	border-left: 20px solid #dcd0c0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
}
@media (max-width: 850px) {
	.recruit-text {
		width: 85%;
	}
	.recruit-list {
		width: 85%;
		margin: 20px auto;
		padding: 10px;
	}
	.recruit-list dt {
		flex-basis: 20%;
	}
	.schedule {
		margin: 30px auto;
		flex-direction: column;
		justify-content: center;
	}
	.schedule-box {
		width: 230px;
		padding: 20px;
		flex-basis: 100%;
	}
	.arrow2 {
		margin-top: 15px;
		top: 0;
		right: 0;
		left: 0;
		border-left: 20px solid transparent;
		border-right: 20px solid transparent;
		border-top: 20px solid #dcd0c0;
	}
}
@media (max-width: 767px) {
	.recruit-container h2 {
		margin: 90px auto 10px;
		font-size: 2rem;
	}
	.recruit-text {
		width: 100%;
		padding: 0 20px;
	}
	.recruit-list {
		width: 95%;
	}
	.recruit-list dl {
		flex-direction: column;
		padding: 20px 0 5px;
	}
	.recruit-list dt {
		margin-right: 0;
		flex-basis: 50%;
	}
	.recruit-list dd {
		padding: 20px;
		flex-basis: 50%;
	}
	.entry-btn {
		margin: 130px auto;
	}
	.download-btn {
		margin: 35px auto 0;
	}
}
/********************* エントリーフォームページ *********************/
.entry-form {
	width: 65%;
	margin: 0 auto 100px;
}
.form-text {
	margin: 70px auto;
	line-height: 1.5;
}
.form-text ul p {
	font-weight: bold;
}
.form-text ul {
	margin-top: 20px;
	padding: 20px 10px 20px 30px;
	border: 5px double #dcd0c0;
	list-style: outside;
}
.form-text li {
	margin: 5px 0 0 15px;
	font-size: .9rem;
}
.scroll-box-text {
	margin-top: 90px;
}
.scroll-box {
	margin: 15px auto;
	padding: 30px 20px;
	width: 93%;
	height: 250px;
	background: #fff;
	border: 1px solid #747474;
}
.scroll-box h4 {
	font-weight: 600;
}
.scroll-box p {
	text-align: left;
	margin-bottom: 5px;
	padding: 20px;
	line-height: 1.3;
}
.form {
	position: relative;
    width: 100%;
	margin: 80px auto 50px;
	padding-top: 100vh;
	overflow: hidden;
}
.form iframe {
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
}
@media (max-width: 767px) {
	.entry-form {
		width: 100%;
		padding: 0 5px;
		overflow-x: hidden;
	}
	.scroll-box {
		margin: 15px auto;
		padding: 15px;
		width: 90%;
	}
}
/********************* 業務支援パートナーページ *********************/
.partner-container h2 {
	width: 60%;
	margin: 100px auto 20px;
	font-size: 1.95rem;
	line-height: 1.5;
	color: #dcd0c0;
	text-shadow: 1px 1px 1px #373737;
}
.partner-container .text {
	width: 60%;
	margin: 0 auto;
	line-height: 1.8;
}
.contact-btn {
	display: block;
	position: relative;
	width: 300px;
	margin: 100px auto;
	padding: 40px;
	background: #373737;
	border-radius: 10px;
	outline: none;
    overflow: hidden;
	text-align: center;
	color: #c0b283;
}
.contact-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -75%;
    width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}
.contact-btn:hover::before {
	animation: shine 0.7s;
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.contact-btn .en {
	font-size: 1.9rem;
	line-height: 1.4;
}
.contact-btn .jp {
	color: #dcd0c0;
	font-size: .9rem;
}
@media (max-width: 850px) {
	.partner-container h2,
	.partner-container .text {
		width: 70%;
	}
}
@media (max-width: 767px) {
	.partner-container h2 {
		width: 90%;
		margin: 50px auto 20px;
		font-size: 1.35rem;
		line-height: 1.3;
	}
	.partner-container .text {
		width: 95%;
	}
}
/********************* アクセスページ *********************/
.access-container {
	width: 90%;
	margin: 50px auto 100px;
}
.access-container h2 {
	padding-top: 95px;
	font-size: 2rem;
	color: #c0b283;
	text-shadow: 1px 1px 1px #373737;
}
.access-box {
	display: flex;
	justify-content: space-between;
	margin: 20px auto;
}
.access-box iframe {
	display: block;
	width: 50%;
	height: 45vh;
}
.access-box p {
	margin-left: 10%;
	padding: 20px 0;
	line-height: 2;
	flex-basis: 50%;
}
.access-box p span {
	display: block;
	margin-bottom: 3px;
}
.access-box p .station {
	font-size: .85rem;
}
.access-box a {
	font-size: .8rem;
	color: #787878;
	border-bottom: 1px solid #787878;
}
.access-box a:hover {
	opacity: .5;
}
@media (max-width: 767px) {
	.access-container {
		width: 100%;
	}
	.access-container h2 {
		text-align: center;
	}
	.access-box {
		flex-direction: column;
		justify-content: center;
	}
	.access-box iframe {
		margin: 0 auto;
		width: 95%;
		height: 45vh;
	}
	.access-box p {
		margin-left: 0;
		padding: 20px;
	}
}
/********************* お問い合わせページ *********************/
.contact-form {
	width: 65%;
	margin: 0 auto 100px;
}
.contact-form p {
  margin-bottom: 30px;
  line-height: 1.9;
}
@media (max-width: 767px) {
	.contact-form {
		width: 100%;
		padding: 0 10px;
	}
}

/* ページトップへ戻るボタン */
.gotop {
	display: block;
    position: fixed;
	width: 30px;
	height: 80px;
    right: 10px;
	background: transparent;
    bottom: 10px;
	z-index: 20;
	opacity: 0;
	transition: all 0.5s;
	font-family: 'Sawarabi Mincho', serif;
	color: #787878;
	font-weight: bold;
	text-align: center;
}
.gotop::after {
	content: "";
	position: absolute;
	right: 15px;
    bottom: 5px;
	width: 2px;
	height: 50px;
	background: #787878;
}
.gotop::before {
    content: "";
    position: absolute;
    top: 25px;
    right: 11px;
    width: 2px;
    height: 15px;
    background: #787878;
    transform: skewX(31deg);
}
.gotop.isActive {
	opacity: 1;
	transition: all 0.65s;
}
.gotop:hover {
  transform: translateY(-15px);
}

/* フッター */
.footerwraper {
	display: flex;
	background-color: #373737;
	padding: 35px 10% 15px;
	align-items: center;
	justify-content: flex-start;
}
.footer-logo h3 {
	color: #dcd0c0;
	font-size: 1.5rem;
	font-weight: bold;
	white-space: nowrap;
}
.footer-logo .add p {
	margin-top: 15px;
	padding-left: 10px;
	line-height: 1.5rem;
	font-size: .9rem;
	color: #dcd0c0;
}
.footer-nav {
	display: flex;
	margin: 0;
	padding: 20px 0 10px 5rem;
}
.footer-nav ul li a {
	font-size: .9rem;
	margin: 50px 40px 35px;
	color: #dcd0c0;
	white-space: nowrap;
}
.footer-nav ul li a:hover {
	opacity: .3;
}
.footer-nav li {
	padding: 7px 0;
}
.footer-copy {
	padding: 15px 70px 20px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	background: #373737;
	color: #dcd0c0;
	font-size: .75rem;
}
@media (max-width: 1281px) {
	.footerwraper {
		padding: 35px 0 8px 7%;
	}
	.footer-nav {
		padding: 20px 0 10px 6rem;
	}
}
@media (max-width: 1100px) {
	.footerwraper {
		flex-direction: column;
		padding: 35px 0 8px;
	}
	.footer-logo h3 {
		font-size: 1.5rem;
	}
	.footer-logo .add p {
		padding-left: 0;
		font-size: .9rem;
		text-align: center;
	}
	.footer-nav {
		margin: 10px 0;
		padding: 20px 0 10px;
	}
	.footer-nav ul li a {
		font-size: .7rem;
		margin: 25px 12px;
	}
	.footer-copy {
		padding: 15px 0 20px;
		align-items: center;
		justify-content: center;
	}
}