@charset "utf-8";

html *,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.7;
	scroll-behavior: smooth;
}
body {
	font-family: "Sawarabi Gothic", sans-serif;
	line-height: 2;
	background: #fefefe;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
ul {
	list-style: none;
}
a {
	color: inherit;
	text-decoration: none;
}
@media (max-width: 776px) {
	html {
		font-size: 16px;
		line-height: 1.3;
	}
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fefefe;
    z-index: 50;
  }
.header-inner {
	margin: 0 auto;
	padding:  10px 5px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.header-logo img {
	display: block;
	width: 80%;
}
.openbtn,
.telbtn {
	display: none;
}
#g-nav ul {
	display: flex;
}
#g-nav li {
	padding: 5px 30px;
	font-weight: bold;
	color: #333;
	letter-spacing: .1em;
}
#g-nav li a {
	position: relative;
	transition: all .3s;
}
#g-nav .current a,
#g-nav li a:hover {
	color: #478CCF;
}
#g-nav .tel {
	display: inline-block;
	margin-left: 30px;
	padding: 5px 20px;
	border-radius: 100vw;
	color: #fff;
	background: linear-gradient(90deg, rgba(71, 140, 207, 1), rgba(118, 207, 237, 1));
	background-position: 1% 50%;
	background-size: 200% auto;
	transition: all 0.3s ease-out;
}
#g-nav .tel:hover {
	background-position: 99% 50%;
}
/* スマホ・タブレット用ヘッダー */
@media (max-width: 1280px) {
	.header-logo img {
		width: 65%;
	}
	#g-nav li {
		padding: 5px 15px;
		font-size: .9rem;
		letter-spacing: 0;
	}
	#g-nav .tel {
		display: none;
	}
}
@media (max-width: 885px) {
	.header-inner {
		padding: 5px 0;
		justify-content: flex-start;
	}
	.header-logo img {
		width: 60%;
	}
	#g-nav {
		position: fixed;
		z-index: 100;
		top: -120%;
		left: 0;
		width: 100%;
		height: 100vh;
		background: linear-gradient(90deg, rgba(71, 140, 207, 1), rgba(118, 207, 237, 1));
		border-bottom: 1px solid #bbb;
		transition: all .5s;
	}
	#g-nav.panelactive {
		top: 0;
	}
	#g-nav ul {
		position: absolute;
		z-index: 150;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		flex-direction: column;
	}
	#g-nav li {
		list-style: none;
		text-align: center; 
		font-size: 1rem;
	}
	#g-nav li a {
		text-decoration: none;
		padding: 25px 10px;
		display: block;
		font-size: 1.3rem;
		color: #fff;
		letter-spacing: .15em;
		white-space: nowrap;
	}
	#g-nav .current a,
	#g-nav li a:hover {
		color: #333;
	}
	#g-nav .tel {
		display: none;
	}
	.openbtn {
		display: block;
		position: fixed;
		top: 10px;
		right: 10px;
		width: 50px;
		height: 50px;
		cursor: pointer;
		z-index: 999;
	}
	.openbtn span {
		display: inline-block;
		position: absolute;
		left: 14px;
		width: 50%;
		height: 3px;
		border-radius: 2px;
		background: #333;
		transition: all .2s;
	}
	.openbtn span:nth-of-type(1) {
		top: 15px;	
	}
	.openbtn span:nth-of-type(2) {
		top: 23px;
	}
	.openbtn span:nth-of-type(3) {
		top: 31px;
	}
	.openbtn.active span:nth-of-type(1) {
		top: 18px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 50%;
		background: #fff;
	}
	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}
	.openbtn.active span:nth-of-type(3){
		top: 30px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 50%;
		background: #fff;
	}
	.telbtn {
		display: block;
		position: fixed;
		top: 4px;
		right: 75px;
		cursor: pointer;
		z-index: 99;
	}
	.telbtn::before {
		content: '\f098';
		display: inline-block;
		font-family: FontAwesome;
		font-weight: normal;
		font-size: 2rem;
		color: #333;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	.telbtn:hover {
		opacity: .5;
	}
}

/* フッター */
footer {
	margin-top: 15%;
	
}
#info {
	margin: 0 auto 80px;
	padding: 0 20px;
}
.info {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	line-height: 1.3;
}
.info iframe {
	width: 50%;
	height: 500px;
	margin-right: 20px;
}
.info .text-center {
	margin: 0 auto 30px;
	text-align: center;
}
.info .text-center img {
	margin-bottom: 20px;
}
.info table {
	display: block;
	border-collapse: collapse;
	border-spacing: 0;
}
.info table th,
.info table td {
	padding: 0 15px;
	text-align: center;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.info table thead {
	padding: 0;
	background: #76CFED;
	color: #fff;
	line-height: 1;
}
.info table tbody {
	color: #333;
}
.info table .hour {
	font-size: .9rem;
	font-weight: 300;
}
.info table .day {
	padding: 20px 25px;
}
.info .note {
	margin-top: 10px;
	color: #555;
	font-size: .8rem;
}
@media (max-width: 884px)  {
	.info {
		flex-direction: column;
	}
	.info div {
		margin: 0 auto;
	}
	.info iframe {
		width: 95%;
		height: 250px;
		margin-right: 0;
		margin: 0 auto 30px;
	}
}
@media (max-width: 776px) {
	.info .text-center {
		text-align: left;
	}
	.info table {
		max-width: 90vw;
	}
	.info table th,
	.info table td {
		padding: 0 7px;
	}
	.info table .day {
		padding: 9px 9px;
	}
	.info .note {
		font-size: .8rem;
	}
}
.footer-nav {
	position: relative;
	background: #478CCF;
	color: #fff;
	margin: 30px auto 0;
	padding: 50px 5% 25px;
}
.footer_wave {
	position: absolute;
	left: 0;
	top: -35px;
	width: 100%;
}
.parallax > use {
    animation: move-forever 12s linear infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
}
.parallax > use:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 5s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 3s;
}
@keyframes move-forever {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}
.editorial {
    display: block;
    width: 100%;
    height: 3em;
    max-height: 100vh;
    margin: 0;
	bottom: 0;
	opacity: .8;
}
@media (max-width: 50em) {
    .editorial {
        height: 10vw;
    }
}
.footer-nav ul {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer-nav ul li a {
	display: block;
	margin: 20px 40px;
	white-space: nowrap;
}
.footer-nav ul li a:hover {
	opacity: .3;
}
.footer-nav .footer-nav-main li a {
	letter-spacing: .1em;
}
.footer-nav .footer-nav-sub li a {
	font-size: .8rem;
}
.footer-copy {
	padding: 0 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #478CCF;
	color: #fff;
	font-size: .75rem;
}
@media (max-width: 1100px) {
	footer {
		padding: 25px 0 0;
	}
	.footer-nav ul {
		flex-direction: column;
		margin: 0 auto;
		padding: 8px 0;
	}
	.footer-nav ul li a {
		margin: 10px auto;
		font-size: .9rem;
	}
	.footer-copy {
		padding: 10px 0;
		align-items: center;
		justify-content: center;
	}
}

/* 共通設定 */
.main {
	width: 100%;
	overflow: hidden;
}
.main-container section {
	margin: 80px auto 120px;
	padding: 30px 20px;
}
.main-container .section-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.sub-title {
	position: relative;
	width: 100%;
	height: 35vh;
	padding: 30px 20px;
	background-image: url("../images/bg.jpg");
	background-size: cover;
	background-position: center center;
	font-family: "Kosugi", sans-serif;
	color: #fff;
	font-size: 2rem;
	text-align: center;
}
.sub-title h2 {
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
}
@media screen and (max-width:886px) {
	.sub-title {
		height: 30vh;
	}
}
@media screen and (max-width:460px) {
	.sub-title {
		height: 35vh;
		font-size: 1.7rem;
	}
}

.underline {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 50px;
}
.underline::after {
	content: '';
	display: block;
	width: 150px;
	height: 3px;
	background: linear-gradient(90deg, rgba(71, 140, 207, 1), rgba(118, 207, 237, 1));
}
.underline span {
	display: inline-block;
}

.link-btn {
	display: inline-block;
	margin: 30px auto;
	padding: 10px 60px;
	color: #fff;
	border-radius: 100vw;
	text-decoration: none;
	outline: none;
	background: linear-gradient(90deg, rgba(71, 140, 207, 1), rgba(118, 207, 237, 1));
	background-position: 1% 50%;
	background-size: 200% auto;
	transition: all 0.3s ease-out;
}
.link-btn:hover {
	background-position: 99% 50%;
}
@media (max-width: 776px) {
	.main-container section {
		margin: 80px auto;
		padding: 0 20px;
	}
}

.img-center {
	display: block;
	margin: 20px auto 50px;
}

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




/********************* トップページ *********************/
/* ヒーロー画像のスライドショー */
.hero {
	position: relative;
	margin: 0 auto;
	max-width: 100%;
	height: 95vh;
	overflow: hidden;
}
.slider {
    width: 90%;
    margin: 0 auto;
}
.slider li {
	width: 100%;
    height: auto;
}
.hero p {
	position: absolute;
	top: 20%;
	right: 10%;
	writing-mode: vertical-rl;
	color: #0164B5;
	font-size: 1.7rem;
}
.hero p span {
	padding: 10px;
	background: #fff;
}
.hero-access {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 1% 4% 2%;
	background: #fefefe;
	font-size: 2rem;
	line-height: 1.7;
	text-align: center;
}
.hero-access p span {
	font-size: 1.2rem;
	line-height: 1;
}
@media (max-width: 885px) {
	.slider {
		width: 95%;
		height: 70vh;
		overflow: hidden;
	}
}
@media (max-width: 776px) {
	.slider {
		height: 95vh;
	}
	.hero p {
		top: 17%;
		right: 8%;
		font-size: 1.2rem;
	}
	.hero-access {
		padding: 1% 6% 2%;
		font-size: 1.7rem;
		line-height: 1.5;
	}
	.hero-access p span {
		font-size: 1rem;
	}
}

.news {
	display: flex;
	align-items: flex-start;
	justify-content: space-around;
}
.news ul li {
	display: block;
	padding: 10px 30px;
	border-bottom: 1px solid #bbb;
}
.news ul li a {
	color: #478CCF;
	transition: .3s;
}
.news ul li a:hover {
	opacity: .5;
}
.news ul li span,
.news ul li a span {
	color: #bbb;
	font-size: .8rem;
}
@media (max-width: 776px) {
	.news {
		flex-direction: column;
	}
	.news ul li {
		padding: 10px;
	}
}

.shapedividers_com-2437{
overflow:hidden;
position:relative;
	height: 100px;
}
.shapedividers_com-2437::before{
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
bottom: -1px;
left: -1px;
right: -1px;
top: 15px;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat; 
background-size: 100% 90px;
background-position: 50% 0%;    
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23e8fdfe"/></svg>'); 
}
@media (min-width:768px){
.shapedividers_com-2437::before{
background-size: 100% 90px;
background-position: 50% 0%;   
}  
}
@media (min-width:1025px){
.shapedividers_com-2437::before{ 
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 110% 235px;
background-position: 50% 100%;  
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23e8fdfe"/></svg>'); 
}
}
@media (min-width:2100px){
.shapedividers_com-2437::before{
background-size: 110% calc(2vw + 235px);
}
}

#bg {
	position: relative;
	margin: 0 auto;
	padding: 20px 20px 100px; 
	background: #E8FDFE;
}
.policy {
	display: flex;
	align-items: flex-start;
	justify-content: space-around;
}
.policy .bg-img {
	margin-right: 50px;
	width: 60%;
	height: 60vh;
	background-image: url("../images/about.jpg");
	background-size: cover;
	background-position: center center;
}
.policy-text {
	position: relative;
	margin: 30% 0 30px;
}
.policy-text::before {
	content: attr(data-en);
	position: absolute;
	transform: rotate(-5deg);
	top: -200px;
	left: -90px;
	background: linear-gradient(90deg, rgba(71, 140, 207, .3), rgba(118, 207, 237, .3));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 5rem;
	font-weight: 400;
	font-family: "Kaushan Script", cursive;
	font-family: "Arizonia", cursive;
}
@media (max-width: 776px) {
	#bg {
		padding: 80px 20px; 
	}
	.policy {
		flex-direction: column;
	}
	.policy .bg-img {
		margin-right: 0;
		margin: 0 auto;
		width: 90%;
		height: 50vh;
	}
	.policy-text {
		margin: 20% 0 30px;
	}
	.policy-text::before {
		top: -70px;
		left: 0px;
		font-size: 3.5rem;
		line-height: 1;
	}
}
.disease-list {
	margin: 20px auto 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-row-gap: 20px;
	grid-column-gap: 20px;
}
.disease-list li a {
	display: block;
	padding: 15px 20px;
	box-shadow: 1px 2px 5px #bbb;
	transition: .3s;
}
.disease-list li a:hover {
	box-shadow: none;
	opacity: .5;
}
@media (max-width: 776px) {
	.disease-list {
		grid-template-columns: repeat(2, 1fr);
		font-size: .9rem;
	}
	.disease-list li a {
		padding: 15px 10px;
	}
}
.slid-photos .slick-slide {
  width: 300px;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.slid-photos .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/********************* リハビリ *********************/
.importance {
	margin: 50px auto;
}
.heading-no {
	position: relative;
	margin-bottom: 15px;
	padding-left: 70px;
	color: #333;
	font-size: 20px;
}
.heading-no::before {
	content: attr(data-number);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: rgba(73, 143, 209, .3);
	font-size: 50px;
}
.heading-no::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 1px;
	background-color: #498fd1;
}
.reha-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-row-gap: 20px;
	grid-column-gap: 20px;
}
.reha-list div {
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 1px 1px 1px #ddd;
}
.reha-list div h3 {
	text-align: center;
}
.rehaEquipment-list {
	//width: 1600px;
	//max-width: 100%;
	//margin: 50px auto 0;
	//display: flex;
	//justify-content: flex-start;
	//align-items: center;
	//overflow-x: auto;
	//white-space: nowrap;
	//-webkit-overflow-scrolling: touch;
	//-ms-overflow-style: none; /* Edge 対応 */
	//scrollbar-width: none; /* Firefox 対応 */
}

.rehaEquipment-list {
	margin: 50px auto 0;
	padding: 20px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox 対応 */
}
.rehaEquipment-list::-webkit-scrollbar {
	display: none; /* Chrome, Safari */
}
.rehaEquipment-list figure {
    flex: 0 0 auto;
    min-width: 200px;
    margin-right: 20px;
    text-align: center;
}
.rehaEquipment-list img {
    width: 100%;
    height: auto;
    display: block;
}
.rehaEquipment-list figcaption {
    font-size: 0.9rem;
     margin-top: 5px;
 }
@media (min-width: 776px) {
	/* PC時のみ横スクロールバーを表示 */
	.rehaEquipment-list {
		scrollbar-width: auto; /* Firefox */
	}
	.rehaEquipment-list::-webkit-scrollbar {
		display: block; /* Chrome, Safari */
		height: 8px;
	}
	.rehaEquipment-list::-webkit-scrollbar-thumb {
		background-color: rgba(0, 0, 0, .3);
		border-radius: 4px;
	}
}
@media (max-width: 776px) {
	.reha-list {
		grid-template-columns: repeat(2, 1fr);
	}
}


/********************* 当院について *********************/
.staff-flex,
.staff-flex2 {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.staff-flex figure {
	width: 30%;
}
.staff-flex figure img {
	margin: 0 auto;
}
.staff-flex figcaption {
	font-size: 1.1rem;
	text-align: center;
}
.staff-flex figcaption span {
	margin-left: 15px;
	color: #777;
	font-size: .9rem;
}
.table_about caption {
	padding: 10px 0;
	background: #ddd;
	font-size: 14px;
	font-weight: 300;
	line-height: 1;
	letter-spacing: 10px;
}
.table_about {
	margin: 0 auto 30px;
	border-collapse: collapse;
	border-spacing: 0;
}
.table_about_f {
	margin: 0 10px;
}
.table_about th,
.table_about td {
	padding: 10px;
	border-bottom: 1px dotted #bbb;
	font-size: 16px;
	text-align: left;
}
.table_about th {
	white-space: nowrap;
	font-weight: normal;
}
.table_about img {
	width: 20%;
}
@media screen and (max-width:884px) {
	.staff-flex {
		flex-direction: column;
	}
	.staff-flex figure {
		width: 50%;
		margin: 0 auto 30px;
	}
}
@media screen and (max-width:460px){
	.staff-flex2 {
		margin: 0 auto;
		width: 100%;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.staff-flex figure {
		width: 80%;
		margin: 0 auto;
	}
	.table_about caption {
		margin-bottom: 20px;
	}
	.table_about,
	.table_about_f {
		display: block;
		width: 100%;
		margin: 80px auto 0;
	}
	.table_about th,
	.table_about td {
		width: 100% !important;
		display: block;
		border-bottom: none;
	}
	.table_about th {
		background-color: #E8FDFE;
	}
	.table_about td {
		border-bottom: 1px dotted #bbb;
	}
}


/********************* アクセス *********************/
.map-flex {
	display: flex;
	align-items: center;
}
.map {
	margin: 0 50px 30px 0;
	border: 1px solid #333;
}
.link {
	margin-left: 15px;
	color: #478CCF;
	font-size: .9rem;
	transition: .3s;
}
.link:hover {
	opacity: .5;
}
.access-list {
	display: inline-block;
	margin: 50px auto;
	padding: 20px;
	background: #E8FDFE;
	border-radius: 20px;
	list-style: disc;
}
.access-list li {
	margin-left: 20px;
}
.way li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 30px auto;
}
.way li img {
	width: 30%;
	margin-right: 30px;
}
@media screen and (max-width:885px) {
	.map-flex {
		flex-direction: column;
	}
	.map {
		margin: 0 auto 30px;
	}
}
@media screen and (max-width:460px) {
	.way li {
		flex-direction: column;
	}
	.way li img {
		width: 80%;
		margin-right: 0;
		margin-bottom: 20px;
	}
}


/********************* よくあるご質問 *********************/
dl.faq {
	display: block;
	margin: auto;
	width: 90%;
}
dl.faq dt {
	font-size: 20px;
	color: #FFF;
	background-color: #76CFED;
	display: block;
	position: relative;
	width: 80%;
	margin-left: 20%;
	margin-bottom: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 50px;
}
dl.faq dt::before{
	font-size: 24px;
	content: "Q.";
	position: absolute;
	left: 20px;
	top: 13px;
}
dl.faq dt::after{
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(39, 132, 152, 0);
    border-top-width: 16px;
    border-bottom-width: 16px;
    border-left-width: 8px;
    border-right-width: 8px;
    border-bottom-color: #76CFED;
    bottom:100%;
    right:30px;
}
dl.faq dd {
	font-size: 16px;
	background-color: #E8FDFE;
	display: block;
	position: relative;
	width: 80%;
	padding: 20px;
	margin-bottom: 50px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 5px 0px;
	-moz-box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 5px 0px;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 5px 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 50px;
}
dl.faq dd::after{
	border: solid transparent;
	content: '';
	height: 0;
	width: 0;
	pointer-events: none;
	position: absolute;
	border-color: rgba(255,255,255,0.0);
	border-top-width: 16px;
	border-bottom-width: 16px;
	border-left-width: 8px;
	border-right-width: 8px;
	border-bottom-color: #E8FDFE;
	bottom: 100%;
	left: 30px;
}
dl.faq dd::before{
	font-size: 24px;
	content: "A.";
	position: absolute;
	left: 20px;
	top: 13px;
}
@media only screen and (max-width: 767px) {
	dl.faq {
		width: 96%;
	}
	dl.faq dt {
		font-size: 18px;
		width: 90%;
		margin-left: 10%;
	}
	dl.faq dd {
		width: 90%;
	}
}



/********************* 採用情報 *********************/
.table02 {
	width: 80%;
	margin: 50px auto 0;
	border-collapse: collapse;
}
.table02 th,
.table02 td {
	border: 1px solid #bbb;
}
.table02 th {
	width: 10%;
	padding: 15px;
	background: #76CFED;
	color: #fff;
	font-weight: 400;
	white-space: nowrap;
	letter-spacing: 1px;
	text-align: center; 
}
.table02 td {
	padding: 20px;
	line-height: 30px;
	background-color: #FFF;
}
ul.dot li {
	position: relative;
    padding-left: .7em;
}
ul.dot li:before {
	position: absolute;
    left: 0;
    top: .7em;
	content: "";
	display: block;
	border-radius: 50%;
    width: 7px;
    height: 7px;
    background: #76CFED;
}
@media screen and (max-width: 787px)  {
	.table02 {
		width: 100%;
		margin: 10px auto;
	}
	.table02 th,
	.table02 td {
		display: block;
		width: 100%;
	}
	.table02 th {
		font-size: 17px;
		white-space: nowrap;
		font-weight: normal;
		letter-spacing: 1px;
	}
	.table02 td {
		font-size: 16px;
		line-height: 30px;
	}
}



/********************* 採用エントリーフォーム *********************/
#formWrap {
	width: 80%;
	margin: 0 auto;
	color: #555;
	line-height: 120%;
}
table.formTable {
	width: 85%;
	margin: 30px auto 0;
	border-collapse: collapse;
}
table.formTable td,
table.formTable th {
	border: 1px solid #ccc;
	padding: 20px;
}
table.formTable th {
	width: 30%;
	font-weight: normal;
	background: #efefef;
	text-align: left;
}
.required {
	display: inline;
	margin-right: 0;
	margin-left: 10px;
	padding: 1px 5px 2px;
	background: red;
	border-radius: 5px;
	color: #fff;
	font-size: .7rem;
	font-weight: 400;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	margin: 3px auto;
	padding: 7px 10px;
}
input[type="checkbox"],
input[type="radio"] {
	margin-right: 5px;
}
select {
	margin: 10px;
	padding: 7px;
}
table.formTable td span {
	display: block;
	margin-top: 5px;
	color: #777;
	font-size: .9rem;
}
input[type="submit"] {
	display: inline-block;
	margin: 30px auto;
	padding: 20px 60px;
	color: #fff;
	border: none;
	border-radius: 100vw;
	text-decoration: none;
	outline: none;
	background: linear-gradient(90deg, rgba(71, 140, 207, 1), rgba(118, 207, 237, 1));
	background-position: 1% 50%;
	background-size: 200% auto;
	transition: all 0.3s ease-out;
	cursor: pointer;
}
input[type="submit"]:hover {
	background-position: 99% 50%;
}

@media screen and (max-width:572px) {
	#formWrap {
		width: 100%;
		margin: 0 auto;
	}
	table.formTable {
		width: 100%;
		table-layout: fixed;
		word-break: break-all;
		word-wrap: break-all;
	}
	table.formTable th {
		width: 100%;
		display: block;
		margin-top: 7px;
		padding: 10px;
		border-bottom: 0;
	}
	table.formTable td {
		width: 100%;
		display: block;
		padding: 15px 10px;
	}
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea {
		width: 100%;
		padding: 5px;
		font-size: 110%;
		display: block;
	}
}



/********************* 個人情報保護方針 *********************/
.privacy ul {
	list-style: disc;
	margin: 0 0 0 20px;
}
.privacy ol {
	list-style: decimal;
	margin: 30px 0 30px 20px;
}