@charset "UTF-8";

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
 Fonts
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media all {
@font-face {
	font-display: swap;
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 400;
	src: local('Noto Sans Japanese Regular'), local('NotoSansJapanese-Regular'),url('../fonts/noto-sans-jp-regular.woff2') format('woff2'), url('../fonts/noto-sans-jp-regular.woff') format('woff'); 
}
@font-face {
	font-display: swap;
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 500;
	src: local('Noto Sans Japanese Medium'), local('NotoSansJapanese-Medium'), url('../fonts/noto-sans-jp-medium.woff2') format('woff2'), url('../fonts/noto-sans-jp-medium.woff') format('woff'); 
}
@font-face {
	font-display: swap;
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 700;
	src: local('Noto Sans Japanese Bold'), local('NotoSansJapanese-Bold'), url('../fonts/noto-sans-jp-bold.woff2') format('woff2'), url('../fonts/noto-sans-jp-bold.woff') format('woff');
}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
 Reset
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media all {
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
}
address,em {
	font-style: normal;
}
strong,th {
	font-weight: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
hr,legend {
	display: none;
}
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
}
img,fieldset {
	border: 0;
}
li {
	list-style-type: none;
}
input[type=text], textarea {
	border-radius: 0;
	-webkit-border-radius: 0;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
input[type="submit"], input[type="button"], input[type="reset"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration, input[type="reset"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus, input[type="button"]::focus, input[type="reset"]::focus {
	outline-offset: -2px;
}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
 Common
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media all {
html {
	font-size: 62.5%;
}
body {
	font-family: 'Noto Sans Jp', serif;
	font-weight: 400;
	position: relative;
	background: #f9f9f9;
	color: #262e33;
	font-size: 1.4em;
	animation: bodyfadeIn 1s ease-in 0s 1 normal;
	-webkit-animation: bodyfadeIn 1s ease-in 0s 1 normal;
}
h3 {
	font-size: 18px;
	padding: 1rem 0;
}
img {
	width: 100%;
}
a, a:hover {
	transition: all .2s;
	outline: none;
	text-decoration: none;
	color: #036eb7;
}
p b {
	display: block;
	margin-bottom: 0.5rem;
}
.container {
	width:100%;
	height: auto;
	margin: 0 auto;
	position: relative;
}
section {
	width: 100%;
	position: relative;
}
section:nth-of-type(even) {
	background: #fff;
}
section:nth-of-type(2) {
	background: rgba(255,255,255,0);
}
.normal-section {
	padding: 20px 0 70px;
}
.section-child {
	padding: 0 0 40px;
}
.section-child h3 {
	line-height: 1;
	padding: 0 0 2.5rem;
	text-align: center;
}
.content {
	width: 960px;
	height: auto;
	margin: 0 auto;
	line-height: 2;
	text-align: justify;
}
.content-narrow {
  width: 720px;
	margin: 0 auto;
}
.section-title {
	width: 100%;
	height: auto;
	margin: 60px auto 40px;
	color: #262e33;
	font-size: 48px;
	text-align: center;
	line-height: 0.8;
}
.section-title span {
	font-size: 20px;
	text-align: center;
}
a[href^="tel:"] {
	pointer-events: none;
}
.fa-comment-dots {
	margin-right: 0.5rem;
}
.pc-hidden {
	display: none;
}
.fixed-btn a {
	position: fixed;
	bottom: 17px;
	right: 17px;
	padding: 5px 10px;
	display: block;
	text-align: center;
	background: rgba(0,110,183,.9);
	color: #fff;
	font-size: 12px;
	border-radius: 4px;
	z-index: 9999;
}
.flex-box {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex-box-center {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
.flex-box-start {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.flex-box-start li {
	margin-right: 40px;
}
.flex-box-child {
	width: 320px;
}
.flex-center {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.without-padding {
	padding: 0;
}
.small-paddding {
	padding: 20px 0;
}
.animation-left {
  opacity: 0;
  -webkit-transform: translate3d(-10%, 0, 0);
  transform: translate3d(-10%, 0, 0);
  -webkit-transition: all 1s cubic-bezier(.25,.9,.3,1.25);
  transition: all 1s cubic-bezier(.25,.9,.3,1.25);
}
.animation-right {
  opacity: 0;
  -webkit-transform: translate3d(10%, 0, 0);
  transform: translate3d(10%, 0, 0);
  -webkit-transition: all 1s cubic-bezier(.25,.9,.3,1.25);
  transition: all 1s cubic-bezier(.25,.9,.3,1.25);
}
.animation-bottom {
  opacity: 0;
  -webkit-transform: translate3d(0, 10%, 0);
  transform: translate3d(0, 10%, 0);
  -webkit-transition: all 1s cubic-bezier(.25,.9,.3,1.25);
  transition: all 1s cubic-bezier(.25,.9,.3,1.25);
}
.animation-left.active, .animation-right.active, .animation-bottom.active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.link-btn a {
  background: #036eb7;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  display: block;
  line-height: 1.5;
  padding: 8px 0 10px;
  transition: .2s;
  text-align: center;
}
.link-btn a:hover {
	margin-top: -5px;
	background-image: linear-gradient(90deg, #29cc7d, #00aad9);
	box-shadow: 0 10px 8px -5px rgba(0,0,0,.2);
}
.text-center {
	text-align: center;
}
.shift-change {
	margin: -20px 0 10px;
}
.bottom-fadeout {
	opacity: 0;
	transition: .2s;
}
.line-btn {
	display: none;
}
}
@media screen and (max-width: 768px) {
h3 {
	line-height: 1.5;
	padding: 1rem 0 0.5rem;
}
.container {
	overflow: hidden;
}
.content, .content-narrow {
	width: 100%;
	height: auto;
	margin: 0 auto;
	left: 0;
	padding: 4rem 2rem 2rem;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.75;
}
.normal-section {
	padding: 0;
}
.section-title {
	width: 100%;
	height: auto;
	margin: 0 auto 2rem;
	color: #262e33;
	font-size: 200%;
	text-align: center;
	line-height: 1;
}
.section-title span {
	font-size: 50%;
	text-align: center;
}
a[href^="tel:"] {
	pointer-events: auto;
}
.pc-hidden {
	display: inherit;
}
.sp-hidden {
	display: none;
}
.fixed-btn a {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	padding: 0;
	text-align: center;
	font-size: 18px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.fixed-btn a span {
	display: none;
}
.fa-envelope {
	margin-right: 0;
}
.flex-box {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-bottom: 1rem;
}
.flex-box-child {
	width: 100%;
	margin-bottom: 2rem;
}
.flex-box.multiple {
	margin-bottom: 0;
}
.flex-box.multiple li {
	margin-bottom: 0;
}
.flex-box .flex-box-child:last-of-type {
	margin-bottom: 0;
}
.link-btn a {
    width: 100%;
	margin: -1.6rem auto;
	padding: 0.8rem 0;
	border-radius: 4px;
	text-decoration: none;
	font-size: 14px;
}
.link-btn:hover {
	margin-top: 0;
	padding: 0;
	background-image: linear-gradient(90deg, #29cc7d, #00aad9);
	box-shadow: 0 10px 8px -5px rgba(0,0,0,.2);
}
.line-btn {
	width: 40px;
	height: 40px;
	display: block;
	background: url("../images/icon-line.svg") center center no-repeat;
	background-size: 40px 40px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 100;
}
}
@media screen and (max-width: 320px) {
.se-hidden {
    display: none;
}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
 Header
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 20000px) {
.header {
	width: 960px;
	height: 100px;
	margin: 20px auto 0;
	position: fixed;
	top: 0;
	left:calc(50% - 960px / 2);
	z-index: 100;
	border: 1px solid #fff;
	box-sizing: border-box;
}
.header-animation {
	margin: 0 auto;
	animation: uekara 0.5s linear 0s 1; 
	background: #fff;
	height: 60px;
	border: 1px solid #fff;
}
.logo {
	width: 280px;
	height: 48px;
	margin: 0 auto 0 0;
	background: url(../images/logo-fff.svg) left center no-repeat;
	background-size: contain;
	display: block;
}
.logo h1 {
	text-indent: -99999px;
}
.header ul {
	width: 880px;
	margin: 0 auto;
	height: 98px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-animation ul {
	height: 60px;
}
.header ul li {
	text-align: center;
	line-height: 1.25;
	position: relative;
}
.header ul li a {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}
.header ul li a span {
	font-size: 80%;
}
.header.header-animation a {
	color: #000;
	font-weight: 500;
}
.header ul li a::after {
	position: absolute;
	bottom: -6px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
.header ul li:first-child a::after {
	display: none;
}
.header ul li a:hover::after {
	transform: scale(1, 1);
}
.header-animation ul li a::after {
 	background: #333;
}
.header-animation .logo {
	background: url(../images/logo.svg) left center no-repeat;
	background-size: contain;
}
}
@media screen and (max-width: 768px) {
.header {
	width: 100%;
	height: 58px;
	margin: 0 auto;
	position: fixed;
	top: 0;
	left:0;
	z-index: 100;
	border: none;
	min-width: 100%;
}
.header-animation {
	margin: 0 auto;
	animation: uekara 0.5s linear 0s 1; 
	background: #fff;
	height: 58px;
}
.logo {
	width: 100vw;
	height: 58px;
	margin: 0;
	background: url(../images/logo.svg) left center no-repeat;
	background-size: auto 32px;
	display: block;
}
.header ul {
	width: calc(100% - 2rem);
	margin: 0 auto;
	height: 58px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.header-animation ul {
	height: 98px;
	margin: 0 auto;
}
.header ul li {
	text-align: center;
	position: relative;
	display: none;
}
.header ul li:first-child {
	display: inline-block;
	text-align: left;
}
.header ul li a {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}
.header ul li a span {
	font-size: 80%;
}
.header ul li a::after {
	display: none;
}
.header ul li a:hover::after {
	transform: scale(1, 1);
}
.header-animation ul li a::after {
	background: #333;
}
.header-animation .logo {
	background: url(../images/logo.svg) left center no-repeat;
	background-size: auto 32px;
}
.header-animation h1 {
color: #000;
}
}
@keyframes uekara { 
0% { transform: translate(0px, -100%); }
100% { transform: translate(0px, 0px); } 
} 

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
 Section
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/*------------ Top ------------*/

@media screen and (max-width: 20000px) {
#top {
	position: relative;
	overflow: hidden;
}
.slide-text {
	width: 100%;
	height: 100vh;
	z-index: 10;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
 	justify-content: flex-start;
 	align-items: center;
}
.slide-text ul {
	position: relative;
	width: 960px;
	height: 100vh;
	margin: 0 auto;
}
.slide-text li {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	text-align: left;
	width: 100%;
	color: #FFFFFF;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.45;
}
.slide-text li strong {
	font-size: 64px;
	font-weight: 900;
}
.slide-text li:nth-child(1) {
	animation: fadeIn01 20s ease-in 0s infinite both;
}
.slide-text li:nth-child(2) {
	animation: fadeIn02 20s ease-in 0s infinite both;
}
.slide-image {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	position: relative;
	background-color: #000;
}
.slide-image li {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.slide-image img {
	width: auto;
	height: 67vw;
	min-height: 100vh;
	opacity: .8;
}
.slide-image li:nth-child(1) {
	animation: slide01 40s ease-in 0s infinite;
	z-index: 7;
}
.slide-image li:nth-child(2) {
	animation: slide02 40s ease-in 0s infinite;
	z-index: 6;
}
.slide-image li:nth-child(3) {
	animation: slide03 40s ease-in 0s infinite;
	z-index: 5;
}
.slide-image li:nth-child(4) {
	animation: slide04 40s ease-in 0s infinite;
	z-index: 4;
}
#news {
	z-index: 10;
}
#news ul {
	width: 960px;
	height: 80px;
	margin: -40px auto 0;
	color: #fff;
	font-weight: 300;
	position: relative;
	background: url(../images/news-bg.svg) center center no-repeat;
	overflow: hidden;
}
#news li:nth-of-type(1) {
	animation: news01 15s ease-in 0s infinite;
	opacity: 0;
}
#news li:nth-of-type(2) {
	animation: news02 15s ease-in 0s infinite;
	opacity: 0;
}
#news dl {
	display: flex;
	flex-direction: row;
	flex-wrap: no-wrap;
	align-items: center;
}
#news dt {
	width: 160px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#news dd {
	width: 800px;
	height: 80px;
	display: flex;
	align-items: center;
	padding-left: 30px;
	box-sizing: border-box;
}
#news a {
	color: #fff;
	text-decoration: underline;
}
}
@media screen and (max-width: 768px) {
.slide-text {
	width: 100%;
	height: 100vh;
	z-index: 10;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	transform: translateX(0);
}
.slide-text ul {
	position: relative;
	width: 100%;
}
.slide-text li {
	text-align: start;
	width: 100%;
	height: 100vh;
	font-size: 32px;
	line-height: 1.5;
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode:vertical-rl; 
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 58px;
	box-sizing: border-box;
}
.slide-image {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	position: relative;
	background-color: #000;
}
.slide-image li {
	position: absolute;
	top: 0;
	left: -100%;
	justify-content: center;
	align-items: center;
	padding-right: 100%;
}
.slide-image img {
	width: auto;
	height: 67vw;
	min-height: 100vh;
	opacity: .8;
}
#news ul {
	width: 100%;
	height: 80px;
	margin: 0 auto;
	background: #262e33;
}
#news dl {
	padding: 0 1rem;
	flex-wrap: no-wrap;
	align-items: flex-start;
	box-sizing: border-box;
	font-size: 12px;
}
#news dt {
	width: auto;
	height: 80px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
#news dd {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	padding-left: 1rem;
}
}
@media screen and (max-width: 320px) {
.slide-text li {
	font-size: 32px;
}
}
@keyframes fadeIn01 {
	0%   {opacity: 0;}
	5%   {opacity: 1;}
	45%  {opacity: 1;}
	50%  {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes fadeIn02 {
	0%   {opacity: 0;}
	45%  {opacity: 0;}
	50%  {opacity: 1;}
	95%  {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes fadeInSp01 {
    0% {
		opacity: 0;
		transform:  translate(-50%, -55%);
	}
	5% {
		opacity: 1;
		transform:  translate(-50%, -60%);
	}
	45% {
		opacity: 1;
		transform:  translate(-50%, -60%);
	}
	50% {
		opacity: 0;
		transform:  translate(-50%, -60%);
	}
    100% {
		opacity: 0;
		transform:  translate(-50%, -55%);
	}
}
@keyframes fadeInSp02 {
    0% {
		opacity: 0;
		transform:  translate(-50%, -55%);
	}
	50% {
		opacity: 0;
		transform:  translate(-50%, -55%);
	}
	55% {
		opacity: 1;
		transform:  translate(-50%, -60%);
	}
	95% {
		opacity: 1;
		transform:  translate(-50%, -60%);
	}
    100% {
		opacity: 0;
		transform:  translate(-50%, -60%);
	}
}
@keyframes slide01 { 
	0%		{opacity:1;}
	22.5%	{opacity:1;}
	25%		{opacity:0; transform: scale(1.1,1.1)}
	97.5%	{opacity:0; transform: scale(1,1)}
	100%	{opacity:1;}
} 
@keyframes slide02 { 
	0%		{opacity:0; transform: scale(1,1)}
	22.5% {opacity:0;}
	25% 	{opacity:1;}
	47.5% {opacity:1; transform: scale(1.1,1.1)}
	50% 	{opacity:0; transform: scale(1.1,1.1)}
	100%	{opacity:0; transform: scale(1,1)}
}
@keyframes slide03 { 
	0%		{opacity:0; transform: scale(1,1)}
	47.5%	{opacity:0;}
	50%		{opacity:1;}
	72.5%	{opacity:1; transform: scale(1.1,1.1)}
	75%		{opacity:0; transform: scale(1.1,1.1)}
	100%	{opacity:0; transform: scale(1,1)}
} 
@keyframes slide04 { 
	0% 		{opacity:0; transform: scale(1,1)}
	72.5% {opacity:0;}
	75% 	{opacity:1;}
	97.5% {opacity:1; transform: scale(1.1,1.1)}
	100% 	{opacity:0; transform: scale(1.1,1.1)}
}
@keyframes news01 { 
	0% {opacity:0; transform: translateY(40px);}
	2% {opacity:1; transform: translateY(0);}
	48% {opacity:1; transform: translateY(0);}
	50% {opacity:0; transform: translateY(-40px);}
	100% {opacity:0;}
}
@keyframes news02 { 
	0% {opacity:0; transform: translateY(-40px);}
	48% {opacity:0; transform: translateY(-40px);}
	50% {opacity:1; transform: translateY(-80px);}
	98% {opacity:1; transform: translateY(-80px);}
	100% {opacity:0; transform: translateY(-120px);}
}

/*--------- Message & About ----------*/

@media screen and (max-width: 20000px) {
.message-text {
	font-weight: 500;
	text-align: justify;
}
.signature {
	display: block;
	text-align: right;
}
}
@media screen and (max-width: 768px) {
.message-text {
	line-height: 2;
	margin: 2rem 0 1rem;
}
.signature {
	margin-top: 8px;
}
}

/*------------ Interview ------------*/

@media screen and (max-width: 20000px) {
#interviewVideo {
	width: 960px;
	height: 540px;
	margin: 10px auto 0;
	z-index: 100;
}
.movie iframe {
	width: 960px;
	height: 540px;
	margin: 16px auto 0;
}
.caption-p {
	width: 100%;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	margin: 40px 0 0;
}
.staff-interview {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
	margin-bottom: 30px;
}
.staff-box {
	width: 440px;
	height: auto;
	margin: 60px 0 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.staff-img img {
	width: 100%;
	height: auto;
	margin-bottom: 16px;
	display: block;
}
.staff-img p {
	margin-bottom: 16px;
	font-weight: 500;
	text-align: center;
}
.staff-txt dl {
	width: 100%;
	text-align: justify;
}
.staff-txt dt {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 2;
}
.staff-txt dd {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 2;
	margin-bottom: 16px;
}
.staff-txt dd:last-of-type {
	margin-bottom: 0px;
}
}
@media screen and (max-width: 768px) {
#interviewVideo {
	width: 100%;
	height: auto;
	margin: 2rem auto 0;
	display: block;
}
.movie iframe {
	width: calc(100vw - 4rem);
	height: calc((100vw - 4rem) * 0.5625);
	margin: 1rem auto 0;
}
.caption-p {
	width: 100%;
	height: 3rem;
	line-height: 0;
	margin: 3rem auto -2rem;
}
.staff-interview {
	width: 100%;
	height: auto;
	justify-content: flex-start;
	flex-wrap: nowrap;
	flex-direction: column;
	margin-bottom: 0;
}
.staff-box {
	width: 100%;
	height: auto;
	margin: 2rem 0;
	justify-content: flex-start;
	flex-direction: column;
}
.staff-img img {
	margin: 0 auto 2rem;
}
.staff-img p {
	margin: 8px 0;
}
.staff-txt dl {
	width: 100%;
	line-height: 2;
}
.staff-txt dt {
}
.staff-txt dd {
	font-size: 14px;
}
.staff-txt dd:last-of-type {
	margin-bottom: 0px;
}
}

/*------------ One Day ------------*/

@media screen and (max-width: 20000px) {
#oneday {
	background: #fff;
}
.time-table {
	width: 980px;
	height: 100%;
	margin: 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.time-table p {
	width: 980px;
	font-size: 130%;
	margin: 20px 0 40px 0;
	font-weight: 700;
}
.time-table p span {
	font-size: 60%;
	margin: 0 0 0 10px;
	font-weight: 300;
}
.time-table dl {
	width: 270px;
	height: 350px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	margin: 0 0 40px 0;
}
.time-table dt {
	width: 100%;
	height: 15px;
	display: block;
	line-height: 14px;
	font-weight: 700;
}
.time-table time {
	padding: 0 10px;
}
.time-table dd {
	width: 100%;
	height: 100%;
	display: flex;
	border-left: 3px solid #dfdfdf;
	padding: 15px 0 0 16px;
	box-sizing: border-box;
	margin: 0 0 0 6px;
	font-size: 90%;
	line-height: 1.75;
	text-align: justify;
}
.time-table dd.line-none {
	border-left: 3px solid #fff;
}
.oneday-img {
	width: 160px;
	height: 350px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.oneday-img img {
	width: 160px;
	height: 160px;
	display: block;
	margin: 0 0 0 0;
}
.oneday-img-sp {
	display: none;
}
}
@media screen and (max-width: 768px) {
#oneday {
	background: #fff;
}
.time-table {
	width: 100%;
	height: auto;
	float: left;
	margin: 0 0 2rem 0;
}
.time-table p {
	width: 100%;
	font-size: 130%;
	margin: 0 0 1.5rem 0;
	font-weight: 700;
	text-align: center;
}
.time-table dl {
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.time-table dt {
	width: 100%;
	height: 15px;
	display: block;
	line-height: 14px;
	font-weight: 700;
}
.time-table dd {
	width: 100%;
	height: auto;
	display: block;
	border-left: none;
	padding: 1rem 0;
	box-sizing: border-box;
	margin: 0;
	font-size: 90%;
	line-height: 1.75;
	text-align: justify;
}
.oneday-img {
	display: none;
}
.oneday-img img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0;
}
.oneday-img-sp  {
	display: block;
	width: 100%;
	height: 35vh;
	margin: 1rem 0;
	overflow: hidden;
}
.oneday-img-sp img {
	width: 100%;
	height: auto;
}
}

/*------------ Workplace ------------*/

@media screen and (max-width: 20000px) {
.img-main {
	width: 100%;
	height: 560px;
	margin: 60px 0 0;
	overflow: hidden;
}
.img-main img {
	margin: 0;
}
.img-thumbs {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 0 20px;
}
.img-thumbs li {
	width: 225px;
	height: auto;
	margin-top: 20px;
	box-shadow: 0px 3px 3px -3px rgba(0,0,0,0.3);
	overflow: hidden;
}
.img-thumbs img {
	width: 225px;
	height: auto;
	display: block;
}
.img-thumbs li:hover {
	transform: translateY(-5px);
	box-shadow: 0px 8px 8px -3px rgba(0,0,0,0.3);
	transition: .3s;
}
}
@media screen and (max-width: 768px) {
#workplace {
	margin-bottom: 0;
}
.img-main {
	display: none;
}
.img-thumbs {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto 3rem;
}
.img-thumbs li {
	width: 100%;
	height: 50%;
	margin-bottom: 2rem;
	float: left;
	box-shadow: 0px 3px 3px -3px rgba(0,0,0,0.3);
	overflow: hidden;
}
.img-thumbs img {
	width: 100%;
	height: auto;
	display: block;
	text-align: center;
}
.img-thumbs li:hover {
	transform: translateY(0);
	box-shadow: 0px 8px 8px -3px rgba(0,0,0,0.3);
	transition: .3s;
}
}

/*------------ Outline ------------*/

@media screen and (max-width: 20000px) {
#outline .sectionTitle b {
	font-size: 12px;
	font-weight: 300;
	display: block;
	margin-top: 15px;
}
#outline dl {
	display: flex;
	flex-wrap: wrap;
	width: 700px;
	margin: -20px auto 0;
	line-height: 1.75;
}
#outline dt, #outline dd {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #EFEFEF;
	padding: 20px 0;
}
#outline dt {
	width: 100px;
}
#outline dd {
	width: 600px;
}
}
@media screen and (max-width: 768px) {
	#outline .sectionTitle b {
		font-size: 12px;
		font-weight: 300;
		display: block;
		margin-top: 15px;
	}
	#outline dl {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		margin: 0 auto 3rem;
		line-height: 1.75;
		flex-direction: column;
	}
	#outline dt, #outline dd {
		width: 100%;
		display: flex;
		align-items: center;
		border-bottom: 1px solid #EFEFEF;
		padding: 0;
	}
	#outline dt {
		width: 100%;
		text-align: center;
		border-bottom: none;
		display: block;
	}
	#outline dd {
		width: 100%;
		margin: 1rem auto 2rem;
		padding-bottom: 1rem;
		text-align: center;
		display: block;
	}
}

/*------------ Access ------------*/

@media print, screen and (max-width: 20000px) {
#access ul {
	margin: 0 auto 30px;
	text-align: center;
}
#map {
	width: 100%;
	height: 480px;
	margin: 20px auto 40px;
}
.map-btn {
	width: 200px;
	text-align: center;
	height: 36px;
	margin: 20px auto 0;
	color: #fff;
	background: #262e33;
	border-radius: 2px;
	text-decoration: none;
	font-size: 100%;
	display: block;
	line-height: 36px;
}
.map-btn:hover {
	background: #00c4c4;
	transition: .3s;
	cursor: pointer;
}
}
@media screen and (max-width: 768px) {
#access {
	padding: 4rem 0 2rem;
	display: flex;
	flex-direction: column;
}
#map {
	height: 320px;
	margin: 2rem auto;
}
#access ul {
	width: 100%;
	margin: 0 auto 2rem;
	text-align: center;
	display: flex;
	flex-direction: column;
}
}

/*------------ Recruit ------------*/

@media screen and (max-width: 20000px) {
.requirement ul {
	width: 960px;
	margin: 60px auto -20px;
}
.requirement ul.narrow {
	width: 720px;
}
.requirement li {
	width: 288px;
	margin: 0 auto 36px;
}
.requirement li.link-btn a {
	font-size: 1.4rem;
	font-weight: 700;
	background: #262e33;
}
.requirement li.link-btn a:hover {
	background-image: linear-gradient(90deg, #29cc7d, #00aad9);
}
.phone-num {
	width: 100%;
	font-size: 150%;
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
	margin: 32px auto 0;
}
.phone-num em {
	font-size: 180%;
	color: #262e33;
	font-weight: 900;
}
.phone-num a {
	font-size: 120%;
	color: #262e33;
	padding: 1rem 0 2rem;
}
.fa-phone-square-alt {
	margin: 16px 10px 0 0;
	font-size: 110%;
	vertical-align: top;
}
}
@media screen and (max-width: 768px) {
.requirement ul, .requirement ul.narrow {
	width: 100%;
	margin: 3.2rem auto 2rem;
}
.requirement li {
	width: 100%;
	margin: 0 auto 2rem;
	padding: 1.6rem 0;
}
.requirement a {
	font-size: 1.4rem;
}
.phone-num {
	width: 100%;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
	margin: 0 0 2rem;
}
.phone-num a {
	font-size: 3.2rem;
	font-weight: 700;
}
.fa-phone-square-alt {
	margin: 1rem 1rem 0 0;
}
}

/*------------ Contact Us ------------*/

@media screen and (max-width: 20000px) {
.contact-us-btn {
	width: 360px;
	height: 40px;
	padding: 16px 0 0 0;
}
.contact-us-btn:hover {
	padding: 18px 0 3px 0;
}
}
@media screen and (max-width: 768px) {
.contact-us-btn {
	width: 100%;
	height: auto;
	padding: 16px 0;
	margin-bottom: 2rem;
}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
 Footer
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 20000px) {
footer {
	width: 100%;
	height: auto;
	background-image: linear-gradient(90deg, rgba(255,255,255,1) 10%, rgba(245,245,245,1) );
}
footer::before {
	content: '';
	width: 100%;
	height: 1px;
	background: rgba(0,0,0,.1);
	display: block;
	margin: 0 auto;
}
footer ul {
	width: 840px;
	margin: 60px auto 40px;
	display: flex;
	justify-content: space-between;
}
footer ul a {
	color: #000;
	transition: .3s;
	display: block;
	text-align: center;
	font-weight: 500;
}
footer a:hover {
	color: #2292d2;
}
address {
	width: 100%;
	color: #000;
	margin: 15px auto 30px;
	text-align: center;
	font-size: 12px;
}
.footer-logo a {
	width: 280px;
	height: 120px;
	background: url(../images/logo.svg) center top no-repeat;
	background-size: auto 60px;
	margin: 0 auto 24px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	text-align: center;
	color: #000;
}
.footer-logo p {
    text-indent: -9999px;
}
.copyright {
	width: 100%;
	border-top: 1px solid rgba(255,255,255,.1);
	box-shadow: 0 -1px 0 0 rgba(0,0,0,.1);
	height: 60px;
	line-height: 60px;
	text-align: center;
	float: left;
	font-size: 70%;
	color: #333;
}
.footer-link {
	width: 100%;
	font-size: 110%;
	margin: 20px 0 10px;
	text-align: center;
	color: #59c2e1;
	display: block;
	font-weight: 500;
	text-decoration: underline;
}
a[href^="tel:"] {
	pointer-events: none;
}
.qr-code {
	display: flex;
	flex-direction: column;
	font-weight: 500;
}
.qr-code img {
	width: 114px;
	height: 114px;
	margin-top: 16px;
}
}
@media screen and (max-width: 768px) {
footer {
	width: 100%;
	height: auto;
	background-image: linear-gradient(90deg, rgba(255,255,255,1) 10%, rgba(245,245,245,1) );
}
footer::before {
	content: '';
	width: 100%;
	height: 1px;
	background: rgba(0,0,0,.1);
	display: block;
	margin: 0 auto;
}
footer ul {
	width: 100%;
	margin: 2rem auto 0;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	font-size: 90%;
}
footer ul li {
	margin-bottom: 1rem;
}
footer ul a {
	color: #333333;
	transition: .3s;
}
footer ul a:hover {
	color: #2292d2;
}
address {
	width: 100%;
	color: #333;
	margin: 15px auto 30px;
	text-align: center;
	font-size: 12px;
}
.footer-logo a {
	height: 80px;
	background: url(../images/logo.svg) center top no-repeat;
	background-size: auto 60px;
	margin: 2rem auto;
}
.copyright {
	width: 100%;
	border-top: 1px solid rgba(255,255,255,.1);
	box-shadow: 0 -1px 0 0 rgba(0,0,0,.1);
	height: auto;
	padding: 2rem;
	line-height: 1.5;
	text-align: center;
	float: left;
	font-size: 11px;
	color: #333;
	box-sizing: border-box;
}
.footerLink {
	width: 100%;
	font-size: 90%;
	margin: 10px 0;
	text-align: center;
	display: block;
}
a[href^="tel:"] {
	pointer-events: auto;
}
.qr-code {
	display: none;
}
}
@media screen and (max-width: 320px) {
footer ul {
	width: calc(100% - 2rem);
}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
Contact
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media print, screen and (max-width: 20000px) {
.contact {
	background: #f9f9f9;
	padding-top: 120px;
}
.contact .header {
	border: none;
}
.contact .header ul li a {
	color: #000;
}
.contact .header a::after {
 	background: #000;
}
.contact .logo {
	background: url(../images/logo.svg) left center no-repeat;
	background-size: 300px 36px;
}
.contact .caption-p {
	width: 600px;
	margin: 0 auto;
	font-size: 14px;
	font-weight: 500;
	text-align: justify;
	line-height: 1.75;
	padding: 0;
}
.form {
	width: 600px;
	margin: 50px auto 0;
}
.form dl {
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
	flex-wrap: no-wrap;
	margin-bottom: 30px;
}
.form dt {
	display: flex;
	align-items: center;
}
.form dt::before {
	content: '';
	width: 40px;
	height: 20px;
	margin: 0 10px 0 0;
	background: none;
	color: #fff;
	text-align: center;
	font-size: 70%;
	display: inline-block;
	border-radius: 2px;
	padding: 2px 10px 0;
	line-height: 18px;
}
dt.required::before {
	content: "必須";
	background: #036eb7;
	font-weight: 700;
}
dt.multiple {
	align-items: flex-start;
	margin: 12px 0 0 0;
}
.form dd {
	width: 400px;
}
.form dd ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
input:focus, textarea:focus {
	outline: none;
}
input[type="text"] {
	width: 100%;
	height: 40px;
	font-weight: 500;
	border-radius: 2px;
	border: 1px solid #d6d6d6;
	text-indent: 1rem;
	line-height: 40px;
	font-size: 100%;
	box-sizing: border-box;
}
textarea {
	width: 100%;
	height: 120px;
	font-weight: 500;
	border-radius: 2px;
	border: 1px solid #d6d6d6;
	text-indent: 1rem;
	padding: 1rem 0;
	font-size: 100%;
	box-sizing: border-box;
}
input::placeholder {
    color: #d6d6d6;
	font-weight: normal;
	line-height: 40px;
}
textarea::placeholder {
    color: #d6d6d6;
	font-weight: normal;
}
#button-area {
	width: 600px;
	margin: 60px auto;
	text-align: center;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
#button-area-single {
	width: 480px;
	margin: 60px auto;
	text-align: center;
	display: flex;
	justify-content: center;
}
.form-button  {
	width: 280px;
	height: 40px;
	border: none;
	color: #fff;
	border-radius: 2px;
	font-size: 14px;
	font-weight: 700;
}
.submit-button {
	background-color: #036eb7;
}
.reset-button {
	background-color: rgba(0,0,0,0.5);
}
.submit-button:hover {
	background-color: #1ea4ff;
    transition: background-color 0.3s ease-in; 
}
.reset-button:hover {
	background-color: rgba(0,0,0,0.7);
    transition: background-color 0.3s ease-in; 
}
#back-button {
	margin: 0 110px -20px 0;
	background-color: rgba(0,0,0,0.5);
}
#button-area-single #back-button {
	margin: 0 auto;
}
.thanks #back-button {
	margin: 0 auto -20px;
}
#sei, #mei {
	width: 190px;
}
.error td {
	color: #F50015;
}
#thanks section {
	min-height: 800px;
}
.contactus-note {
	width: 600px;
	margin: 0 auto;
	font-size: 14px;
	line-height: 2;
	text-align: justify;
	display: block;
	letter-spacing: 0;
	font-weight: 300;
}
.contactus-note dt {
	margin-bottom: 1rem;
}
.thanks-p {
	width: 600px;
    margin: 0 auto 60px;
    font-size: 14px;
    font-weight: 500;
    text-align: justify;
    line-height: 2;
    padding: 0;
}
.thanks-p em {
    font-size: 16px;
    font-weight: 700;
	text-align: center;
	display: block;
}
#kakunin, #error-table {
	width: 600px;
	margin: 0 auto 20px;
}
#kakunin tr, #error-table tr {
	padding: 12px 0 40px;
	text-align: left;
	border-bottom: 1px solid #e6e6e6;
	display: block;
	display: flex;
	text-indent: -0.5em;
}
#kakunin tr {
	text-indent: 0;
	padding: 20px 0;
}
#kakunin th, #error-table th {
	width: 150px;
}
#error-table td {
	color: #F50015;
	line-height: 2.5;
}
#kanryo a {
	font-weight: 700;
}
.button-button, .submit-button, .reset-button {
	margin-bottom: 2rem;
}
.privacy {
	width: 600px;
	font-size: 14px;
	margin: 0 auto;
	line-height: 2;
	font-weight: 500;
}
.privacy dt {
	margin-bottom: 20px;
}
.privacy dd {
	text-align: justify;
	font-weight: 300;
}
.privacy-agree {
	width: 600px;
	margin: 30px auto -20px; 
	font-size: 14px;
}
}
@media screen and (max-width: 768px) {
.contact {
	padding-top: calc(58px + 2rem);
}
.contact .content {
	padding: 0 2rem 2rem;
}
.contact .header {
	border: none;
}
.contact .header ul li a {
	color: #000;
}
.contact .logo {
	background: url(../images/logo.svg) left center no-repeat;
	background-size: 200px 20px;
}
.contact .caption-p {
	width: 100%;
	height: auto;
	margin: 1rem auto -1rem;
}
.form {
	width: 100%;
	margin: 4rem 0 0;
}
.form dl {
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
	flex-wrap: no-wrap;
	flex-direction: column;
	margin: 2rem auto;
	box-sizing: border-box;
}
.form dt {
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	box-sizing: border-box;
	padding-left: 2px;
}
input {
	box-sizing: border-box;
}
.form dt::before {
	display: none;
}
.form dt.required::before {
	content: "必須";
	width: 40px;
	height: 20px;
	margin: 0 1rem 0 0;
	background: #036eb7;
	color: #fff;
	text-align: center;
	font-size: 70%;
	display: inline-block;
	border-radius: 2px;
	padding: 2px 10px 0;
	line-height: 18px;
}
dt.multiple {
	align-items: center;
	margin: 0 0 2rem 0;
}
.form dd {
	width: 100%;
	margin-bottom: 0;
}
.form dd ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}
input:focus, textarea:focus {
	outline: none;
}
input[type="text"] {
	width: 100%;
	height: 40px;
	font-weight: 500;
	border-radius: 2px;
	border: 1px solid rgba(0,0,0,.1);
	text-indent: 1rem;
	line-height: 40px;
	font-size: 100%;
	box-sizing: border-box;
}
textarea {
	width: 100%;
	height: 120px;
	font-weight: 500;
	border-radius: 2px;
	border: 1px solid rgba(0,0,0,.1);
	text-indent: 1rem;
	padding: 1rem 0;
	font-size: 100%;
	box-sizing: border-box;
}
#sei {
	width: calc(100% - 0.25rem);
}
#mei {
	width: calc(100% - 0.5rem);
	margin-left: 0.5rem;
}
#button-area {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	align-items: center;
}
.form-button  {
	height: 40px;
	border: none;
	color: #fff;
	border-radius: 2px;
	font-size: 95%;
	margin-bottom: 2rem;
	margin-top: 0;
}
.submit-button {
	margin-bottom: 2rem;
}
.reset-button {
	background-color: rgba(0,0,0,0.5);
}
.submit-button:hover {
	background-color: #0FA1D1;
	transition: background-color 0.3s ease-in; 
}
.reset-button:hover {
	background-color: rgba(0,0,0,0.7);
	transition: background-color 0.3s ease-in; 
}
#back-button {
	margin: 0 auto 3rem;
}
#thanks #back-button {
	margin: 2rem auto;
}
#thanks section {
	min-height: 100vh;
}
#thanks .caption-p {
	line-height: 2;
}
.contactus-note {
	width: 100%;
	font-size: 12px;
	line-height: 1.75;
	margin: 0 auto 2rem;
}
.contactus-note dt {
	margin-bottom: 1rem;
}
.thanks-p {
	width: 100%;
    margin: 0 auto 2rem;
    padding: 0;
}
.thanks-p em {
	margin-bottom: 0;
}
#button-area-single #back-button {
	width: 180px;
	margin: 0 auto;
}
.thanks #back-button {
	width: 180px;
	margin: 0 auto -20px;
}
#button-area-single {
	width: 100%;
	margin: 3rem auto;
	text-align: center;
	display: flex;
	justify-content: center;
}
#kakunin tr, #error-table tr {
	padding: 3rem 0 2rem;
	text-align: left;
	border-bottom: 1px solid #f4f4f4;
	display: block;
	display: flex;
}
#kakunin {
	margin: 2rem 0 3rem;
}
#kakunin th {
	width: auto;
}
#kakunin tr {
	padding: 1rem 0;
}
#kakunin td {
	text-indent: 1em;
}
.privacy {
	width: 100%;
}
.privacy dt {
	margin-bottom: 0.5rem;
}
.privacy-agree {
	width: 100%;
	line-height: 1.75;
	margin: 2rem auto 3rem; 
}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
 Other
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media all {
.ac-button {
	display: none;
}
.opacity {
	opacity: 0;
 	transition: all .3s ease-in 0s;
}
.opacity-on {
	opacity: 1;
 	transition: all .3s ease-in 0s;
}
.section-image {
	display: none;
}

/*------------ Scroll Animation ------------*/

.sa {
	opacity: 0;
 	transition: all .3s ease-in 0s;
}
.sa.show {
	opacity: 1;
	transform: none;
}
.sa-lr {
	transform: translate(-15px, 0);
}
.sa-rl {
	transform: translate(15px, 0);
}
.sa-up {
	transform: translate(0, 15px);
}
.sa-down {
	transform: translate(0, -15px);
}
.sa-scaleUp {
	transform: scale(.5);
}
.sa-scaleDown {
	transform: scale(1.5);
}
.sa-rotateL {
	transform: rotate(180deg);
}
.sa-rotateR {
	transform: rotate(-180deg);
}
}
@media screen and (max-width: 768px) {
.ac-button {
	width: 50%;
	display: block;
	margin: 3rem auto 1.5rem;
	font-size: 90%;
	text-align: center;
	transform: rotate(0deg);
	transition: .2s;
	padding: 0.75rem;
	box-sizing: border-box;
	background: #262e33;
	color: #fff;
}
.ac-button span {
	font-weight: 500;
}
.ac-rotate i {
	font-size: 100%;
	transform: rotate(-180deg);
	transition: .2s;
}
.close {
	display: none;
}
.ac-rotate .close {
	display: inline;
}
.ac-rotate .open {
	display: none;
}
.ac-hidden {
	display: none;
}
.section-image {
	width: 100%;
	height: auto;
	margin: 2rem 0;
	display: block;
}
.section-image img {
	width: 100%;
	height: auto;
	display: block;
}
.fixed-btn .fa-envelope {
	margin-right: 0;
}
}