﻿@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  全般設定
　━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
body {
	font-family: "Montserrat", sans-serif;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-family: 'Noto Serif JP', serif;
	font-family: 'Noto Sans JP', 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'メイリオ', sans-serif;
	font-size: 18px;
	color: #000000;
	line-height: 1.2;
	-webkit-text-size-adjust: 100%;
}
#wrapper {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: hidden;
}

* { box-sizing: border-box; }


@media screen and (max-width: 900px) {
	body {
		font-size: 16px;
	}
}

.lh16 {
	line-height: 1.6;
}
.lh17 {
	line-height: 1.7;
}

.ta_c {
	text-align: center;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}
.reverse {
	flex-flow: row-reverse;
}

.jc_c {
	justify-content: center;
}
.jc_sb {
	justify-content: space-between;
}
.jc_fe {
	justify-content: flex-end;
}

.ai_c {
	align-items: center;
}
.ai_fe {
	align-items: flex-end;
}

@media (min-width: 769px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

.w1800,
.w1600,
.w1500,
.w1400,
.w1200,
.w1160,
.w960,
.w900 {
	width: 100%;
	margin: 0 auto;
}

.w1800 {
	max-width: 1800px;
}
.w1600 {
	max-width: 1600px;
}
.w1500 {
	max-width: 1500px;
}
.w1400 {
	max-width: 1400px;
}
.w1200 {
	max-width: 1200px;
}
.w1160 {
	max-width: 1160px;
}
.w960 {
	max-width: 960px;
}
.w900 {
	max-width: 900px;
}

.pc1200,
.pc1000,
.pc {
	display: inline-block;
}
.sp1200,
.sp1000,
.sp {
	display: none;
}

@media screen and (max-width: 1200px) {
	.pc1200 {
		display: none;
	}
	.sp1200 {
		display: inline-block;
	}
}
@media screen and (max-width: 1000px) {
	.pc1000 {
		display: none;
	}
	.sp1000 {
		display: inline-block;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: inline-block;
	}
}

.br3 {
	border-radius: 3px;
}


/* header
------------------------------------------------------------*/
.header {
	width: 100%;
	height: 120px;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 0 15px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 9;
}
.header .inner {
	width: 100%;
	height: 100%;
	padding: 0;
}

@media screen and (max-width: 768px) {
	.header {
		height: 60px;
		padding: 0 60px 0 10px;
	}
}

@media screen and (min-width: 769px) {
	.sp_menu {
		display: none;
	}

	nav {
		height: 100%;
	}
	nav ul {
		height: 100%;
		margin-left: 30px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	nav ul li {
		display: inline-flex;
		height: 100%;
		justify-content: center;
		align-items: center;
		position: relative;
		z-index: 2;
	}

  	nav ul li a {
		margin: 0 25px;
		position: relative;
		z-index: 9;
	} 
	nav ul li a:before {
		content: '';
		width: 1px;
		height: 20px;
		background-color: #c8c8c8;
		position: absolute;
		left: -25px;
		top: 50%;
		transform: translate(-50%, -50%);
	}

	nav ul li.link a {
		background-image: url(../img/common/link.svg);
		background-position: right top 5px;
		background-repeat: no-repeat;
		background-size: 12px auto;
		padding-right: 17px;
	}

	nav ul li.entry a {
		width: 240px;
		height: 60px;
		background: linear-gradient(90deg, #46d0ce 10%, #1ca7ec 100%);
		border-radius: 30px;
		color: #ffffff;
		font-weight: 700;
		margin-right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	nav ul li.entry a:hover {
		background: linear-gradient(90deg, #1ca7ec 0%,  #46d0ce 90%);
	}

	.nav_sub {
		display: none;
		width: 100%;
		padding-top: 70px;
		position: absolute;
		left: 50%;
   		top: 50px;
	    transform: translate(-50%, 0);
		z-index: 1;
	}
	nav ul li:hover .nav_sub {
		display: block;		
	}
	.nav_sub .sub {
		margin-top: 5px;
	}
	.nav_sub a {
		display: block;
		width: 100%;
		background: #d5d5d6;
		border-radius: 3px;
		color: #ffffff;
		font-size: 15px;
		text-align: center;
		margin: 0;
		padding: 10px;
	}
	.nav_sub a:before {
		content: none;
	}
	.nav_sub a:hover {
		background: linear-gradient(90deg, #1ca7ec 0%,  #46d0ce 90%);
		color: #ffffff;
	}
}

@media screen and (max-width: 1600px) and (min-width: 769px) {
	nav {
		width: 100%;
		height: auto;
	}
	nav ul {
		height: 48px;
		margin-left: 0;
		justify-content: center;
	}
	nav ul li.entry a {
		width: 160px;
		height: 48px;
	}

	.nav_sub {
		padding-top: 7px;
	}
}

@media screen and (max-width: 900px) and (min-width: 769px) {
  	nav ul li a {
		margin: 0 20px;
	} 
}

@media screen and (max-width: 768px) {
	.sp_menu {
		display: block;
		width: 42px;
		height: 42px;
		text-align: center;
		position: absolute;
		right: 10px;
		top: 8px;
		z-index: 12;
		cursor: pointer;
	}
    .sp_menu span {
	    display: block;
		width: 30px;
		height: 2px;
		background-color: #000000;
		position: absolute;
		left: 6px;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
  	}
  	.sp_menu span:nth-child(1) { top: 10px; }
  	.sp_menu span:nth-child(2) { top: 20px; }
  	.sp_menu span:nth-child(3) { top: 30px; }
  
    /* スマホメニューを開いてる時のボタン */
    .sp_menu.active span:nth-child(1) {
		left: 6px;
		top: 20px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
  	}
    .sp_menu.active span:nth-child(2),
  	.sp_menu.active span:nth-child(3) {
		top: 20px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
  	}

    nav {
		width: 100%;
		max-width: 280px;
		height: auto;
		background-color: #000000;
		position: fixed;
		right: 0;
		top: 0;
		z-index : 2;
		transform: translateX(100%);
		transition: all 0.6s;
    }
    nav ul {
		width: 100%;
		margin: 0 auto;
		padding: 60px 15px 5px;
	}
    nav ul li {
		width: 100%;
		transition: .4s all;
    }
    nav ul li a {
	    display: block;
		color: #ffffff;
	    padding: 8px 10px;
    }
	nav ul li:not(:last-child) a,
	nav ul li .nav_sub:not(:last-child) a {
		border-bottom: 1px dashed #ffffff;
	}
	nav ul li .nav_sub a {
		padding-left: calc(15px + 1em);
	}
	nav ul li a br {
		display: none;
	}

    /* クリックでjQueryで追加・削除 */
	.sp_menu.active span {
		background-color: #ffffff;
	}

    nav.active {
		display: block;
	    opacity: 1;
	    transform: translateX(0%);
    }
}

@media screen and (max-width: 480px) {
    nav {
		max-width: 100%;
	}
}


/* footer
------------------------------------------------------------*/
#footer {
	width: 100%;
	padding: 0 15px;
}

/* footer_entry */
.footer_entry {
	margin-top: -120px;
}
.footer_entry .cont {
	height: 300px;
}
.footer_entry .cont a {
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #46d0ce 10%, #1ca7ec 100%);
	color: #ffffff;
	padding: 20px 280px 20px 100px;
	position: relative;
}
.footer_entry .cont a::before,
.footer_entry .cont a::after {
	content: '';
	display: block;
	width: 120px;
	height: 120px;
	position: absolute;
	right: 100px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.footer_entry .cont a::before {
	border: 1px solid #ffffff;
	border-radius: 60px;
}
.footer_entry .cont a::after {
	background-image: url(../img/common/sign_a.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 36px auto;
	transition: 0.5s;
}
.footer_entry .cont a:hover::after {
	background-position: left calc(50% + 5px) center;
	transition: 0.5s;
}

.footer_entry .cont a .ttl {
	font-family: "Montserrat", sans-serif;
	font-size: 85px;
	font-weight: 700;
	line-height: 1;
}
.footer_entry .cont a .txt {
	font-size: 22px;
}

@media screen and (max-width: 900px) {

	.footer_entry .cont {
		height: auto;
	}
	.footer_entry .cont a {
		padding: 40px 160px 40px 40px;
	}
	.footer_entry .cont a::before,
	.footer_entry .cont a::after {
		width: 80px;
		height: 80px;
		right: 40px;
	}
	.footer_entry .cont a .ttl {
		font-size: 48px;
	}
	.footer_entry .cont a .txt {
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) {
	.footer_entry .cont a {
		padding: 35px 30px 90px;
	}
	.footer_entry .cont a::before,
	.footer_entry .cont a::after {
		width: 48px;
		height: 48px;
		position: absolute;
		left: 0;
		right: 0;
		top: auto;
		bottom: 25px;
	}
	.footer_entry .cont a::after {
		background-size: 24px auto;
	}
	.footer_entry .cont a .ttl {
		font-size: 36px;
	}
}


/* footer */
.footer {
	margin-top: 100px;
	padding-bottom: 100px;
}

.footer .inner {
	font-size: 20px;
}

.footer .left .logo	{
	margin-left: -100px;
	margin-bottom: 20px;
}
.footer .left .map {
	margin-left: 22px;
}
.footer .left .map a {
	background-image: url(../img/common/pin.svg);
	background-position: left bottom 2px;
	background-repeat: no-repeat;
	background-size: 14px auto;
	font-size: 18px;
	padding-left: 20px;
}
.footer .left .map a span {
	text-decoration: underline;
}

.footer .right {
	width: calc(100% - 650px);
}

#f_nav ul.nav {
	width: 100%;
}
#f_nav ul.nav li:not(:first-child) {
	margin-left: 40px;
}
#f_nav ul.nav li a {
	padding-left: 40px;
	position: relative;
}
#f_nav ul.nav li a::before,
#f_nav ul.nav li a::after {
	content: '';
	display: block;
	width: 28px;
	height: 28px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
}
#f_nav ul.nav li a::before {
	background-color: #1ca7ec;
	border-radius: 14px;
	transition: 0.5s;
}
#f_nav ul.nav li a:hover::before {
	background-color: #c8c8c8;
}
#f_nav ul.nav li a::after {
	background-image: url(../img/common/sign_i.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 7px auto;
}

#f_nav ul.link {
	margin-top: 40px;
}
#f_nav ul.link li a {
	font-size: 18px;
	margin: 0 25px;
	position: relative;
}
#f_nav ul.link li:nth-child(2) a {
	background-image: url(../img/common/link.svg);
	background-position: right top 5px;
	background-repeat: no-repeat;
	background-size: 12px auto;
	padding-right: 17px;
}
#f_nav ul.link li a:before,
#f_nav ul.link li:last-child a:after {
	content: '';
	width: 1px;
	height: 20px;
	background-color: #c8c8c8;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}
#f_nav ul.link li a:before {
	left: -25px;
}
#f_nav ul.link li:last-child a:after {
	right: -25px;
}

#copyright {
	width: 100%;
	font-size: 17px;
	margin-top: 50px;
}

#pagetop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 9;
}

@media screen and (max-width: 1800px) {
	.footer .left .logo	{
		margin-left: 0;
	}
	.footer .left .info {
		padding-left: 100px;
	}

	#copyright	{
		padding-left: 100px;
	}
}

@media screen and (max-width: 1500px) {
	.footer {
		padding-bottom: 40px;
	}
	.footer .left {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.footer .right {
		width: 100%;
		margin-top: 60px;
	}

	#f_nav,
	#f_nav ul.nav {
		justify-content: center;
	}
	#f_nav ul.link {
		margin-top: 20px;
	}

	#copyright {
		text-align: center;
		padding-left: 0;
	}
}

@media screen and (max-width: 900px) {
	.footer .inner,
	.footer .left .map a {
		font-size: 16px;
	}

	.footer .left .logo img {
		width: 360px;
	}
	.footer .left .info {
		padding-left: 60px;
	}
	
	#f_nav ul.link li a {
		font-size: 16px;
	}
	#f_nav ul.nav li a {
		padding-left: 32px;
	}
	#f_nav ul.nav li a::before,
	#f_nav ul.nav li a::after {
		width: 24px;
		height: 24px;
	}
}

@media screen and (max-width: 768px) {
	.footer {
		margin-top: 60px;
	}

	.footer .left .info {
		padding-left: 0;
	}

	.footer .left .map {
		display: inline-block;
		width: 100%;
		text-align: right;
		margin-left: 0;
	}

	.footer .right {
		margin-top: 40px;
	}

	#f_nav ul.nav,
	#f_nav ul.link {
		max-width: 360px;
		margin: 0 auto;
	}
	#f_nav ul.nav li,
	#f_nav ul.link li {
		width: 50%;
		margin-bottom: 20px;
	}
	#f_nav ul.nav li:not(:first-child) {
		margin-left: 0;
	}

	#f_nav ul.link {
		margin-top: 20px;
	}
	#f_nav ul.link li a {
		margin: 0;
		padding-left: 32px;
		position: relative;
	}
	#f_nav ul.link li a::before,
	#f_nav ul.link li:last-child a:after {
		content: none;
	}
	#f_nav ul.link li:last-child {
		width: 100%;
	}


	#copyright {
		max-width: 360px;
		font-size: 14px;
		text-align: left;
		margin: 30px auto 0;
	}

	#pagetop {
		width: 48px;
		position: fixed;
		right: 15px;
		bottom: 15px;
		z-index: 9;
	}
}


/* main　
------------------------------------------------------------*/

@media screen and (max-width: 768px) {
	main {
		padding-top: 60px;
	}
}

section {
	padding-left: 15px;
	padding-right: 15px;
}

section.pt {
	padding-top: 90px;
}
section.pb {
	padding-bottom: 90px;
}

section.pt_middle {
	padding-top: 120px;
}
section.pb_middle {
	padding-bottom: 120px;
}

section.pt_first {
	padding-top: 180px;
}
section.pb_last {
	padding-bottom: 180px;
}

@media screen and (max-width: 768px) {
	section.pt {
		padding-top: 60px;
	}
	section.pb {
		padding-bottom: 60px;
	}

	section.pt_middle {
		padding-top: 80px;
	}
	section.pb_middle {
		padding-bottom: 80px;
	}

	section.pt_first {
		padding-top: 80px;
	}
	section.pb_last {
		padding-bottom: 80px;
	}
}


#page_top {
	padding: 150px 15px 30px;
}

#p_nav {
	color: #4d4d4d;
}

#page_ttl {
	margin-top: 80px;
	padding-bottom: 120px;
}
#page_ttl .en {
	font-family: "Montserrat", sans-serif;
	font-size: 90px;
	font-weight: 700;
	line-height: 1;
}
#page_ttl .ja {
	font-size: 30px;
}

#page_top.bg {
	background-image: url(../img/common/page_top.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
#page_top.bg #p_nav,
#page_top.bg #page_ttl {
	color: #ffffff;
}

@media screen and (max-width: 900px) {
	#page_ttl {
		margin-top: 60px;
		padding-bottom: 60px;
	}
	#page_ttl .en {
		font-size: 64px;
	}
	#page_ttl .ja {
		font-size: 18px;
	}
}

@media screen and (max-width: 768px) {
	#page_top {
		padding-top: 30px;
	}

	#p_nav {
		font-size: 14px;
	}

	#page_ttl {
		margin-top: 40px;
		padding-bottom: 20px;
	}
	#page_ttl .en {
		font-size: 36px;
	}
	#page_ttl .ja {
		font-size: 16px;
	}
}


.box_cont {
	width: 100%;
	height: 360px;
	background-image: url(../img/common/box_cont.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 20px 15px;
}
.box_cont.low {
	height: auto;
	min-height: 230px;
}
.box_cont .box {
	color: #ffffff;
}
.box_cont .ttl {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 50px;
	font-weight: 900;
}
.box_cont .txt {
	font-size: 22px;
	margin-top: 10px;
}

@media screen and (max-width: 900px) {
	.box_cont {
		height: auto;
		min-height: 240px;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.box_cont.low {
		min-height: 180px;
	}

	.box_cont .ttl {
		font-size: 32px;
	}
	.box_cont .txt {
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) {
	.box_cont {
		height: auto;
		min-height: 240px;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.box_cont.low {
		min-height: 120px;
	}

	.box_cont .ttl {
		font-size: 21px;
	}
}


.box_inner .staff {
	font-family: "Montserrat", sans-serif;
	color: #1ca7ec;
	font-size: 18px;
	margin-bottom: 8px;
}
.box_inner .ttl {
	max-width: 480px;
}
.box_inner .ttl p {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	display: inline-block;
	background-color: #ffffff;
	font-size: 38px;
	font-weight: 700;
	margin-top: 5px;
	padding: 2px 0 2px 3px;
}
.box_inner .name {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 40px;
	font-weight: 700;
	margin-top: 20px;
}
.box_inner .office {
	font-size: 22px;
	margin-top: 5px;
}
.box_inner .link {
	width: 82px;
	height: 82px;
	background: linear-gradient(90deg, #46d0ce 10%, #1ca7ec 100%);
	border-radius: 41px;
	margin-top: 20px;
	position: relative;
}
.box_inner .link::after {
	content: '';
	display: block;
	width: 80px;
	height: 80px;
	background-color: #ffffff;
	background-image: url(../img/common/sign_g.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px auto;
	border-radius: 40px;
	position: absolute;
	left: 1px;
	top: 1px;
	transition: 0.5s;
}
a:hover .box_inner .link::after {
	background-position: left calc(50% + 5px) center;
	transition: 0.5s;
}

@media screen and (max-width: 1200px) {
	.box_inner .ttl p {
		font-size: 30px;
	}
}

@media screen and (max-width: 1000px) {
	.box_inner .ttl p {
		font-size: 24px;
	}

	.box_inner .name {
		font-size: 32px;
	}
	.box_inner .office {
		font-size: 18px;
	}

	.box_inner .link {
		width: 64px;
		height: 64px;
	}
	.box_inner .link::after {
		width: 62px;
		height: 62px;
		background-size: 20px auto;
	}
}

@media screen and (max-width: 768px) {
	.box_inner .ttl {
		max-width: 320px;
	}
	.box_inner .ttl p {
		font-size: 20px;
	}

	.box_inner .name {
		font-size: 24px;
		margin-top: 15px;
	}
	.box_inner .office {
		font-size: 16px;
	}
}

.cont_box a {
	display: block;
}
.cont_box .box.link {
	margin-top: -65px;
	padding: 0 15px 30px;
	position: relative;
}
.box.link .box_inner .ttl p {
	background-color: #1ca7ec;
	color: #ffffff;
	font-size: 28px;
}
.box.link .box_inner .name {
	font-size: 33px;
}
.box.link .box_inner .office {
	font-size: 15px;
}
.box.link .box_inner .link {
	position: absolute;
	right: 15px;
	bottom: 20px;
}

@media screen and (max-width: 1400px) {
	.box.link .box_inner .ttl p {
		font-size: 24px;
	}
}

@media screen and (max-width: 1200px) {
	.cont_box .box.link {
		padding: 0 5px 30px;
	}
	.box.link .box_inner .ttl p {
		font-size: 18px;
	}
	.box.link .box_inner .name {
		font-size: 28px;
	}

	.box.link .box_inner .link {
		right: 5px;
		top: 40px;
		bottom: auto;
	}

}

@media screen and (max-width: 768px) {
	.box.link .box_inner .ttl p {
		font-size: 24px;
	}

	.box.link .box_inner .link {
		right: 10px;
		top: 60px;
	}
}



.entry .box_img,
.privacy .box_img {
	width: 100%;
	height: 500px;
	background-image: url(../img/common/box_img.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.entry .box_img::after,
.privacy .box_img::after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(3, 110, 184, 0.8);
	position: absolute;
	left: 0;
	top: 0;
}
@media screen and (max-width: 1000px) {
	.entry .box_img,
	.privacy .box_img {
		height: 240px;
	}
}

@media screen and (max-width: 768px) {
	.entry .box_img,
	.privacy .box_img {
		height: 200px;
	}
}


table.table01 {
	width: 100%;
	border-top: 1px solid #d5d5d6;
}
table.table01 th,
table.table01 td {
	border-bottom: 1px solid #d5d5d6;
	vertical-align: top;
	padding: 25px 40px;
}
table.table01 th {
	width: 300px;
	background-color: #f4f5f5;
	color: #959798;
	font-weight: 700;
	position: relative;
}
table.table01 th .required {
	display: inline-block;
	color: #00b7ad;
	font-size: 14px;
	position: absolute;
	right: 35px;
	top: 27px;
}

table.table01 tr.pc {
	display: block;
}
table.table01 tr.sp {
	display: none;
}

@media screen and (max-width: 768px) {
	table.table01 tr {
		display: flex;
		flex-wrap: wrap;
	}
	table.table01 th,
	table.table01 td {
		width: 100%;
		padding: 10px;
	}


	table.table01 th .required {
		right: 10px;
		top: 12px;
	}

	table.table01 tr.pc {
		display: none;
	}
	table.table01 tr.sp {
		display: flex;
	}
}

table.table02 {
	width: 100%;
	border-left: 1px solid #d5d5d6;
	border-top: 1px solid #d5d5d6;
	border-bottom: 1px solid #d5d5d6;
}
table.table02 caption {
	color: #55595a;
	font-size: 20px;
	padding-bottom: 10px;
}
table.table02 th,
table.table02 td {
	border-right: 1px solid #d5d5d6;
	padding-left: 20px;
	padding-right: 20px;
}
table.table02 th {
	background-color: #f4f5f5;
	color: #959798;
	font-weight: 700;
	text-align: center;
	padding-top: 25px;
	padding-bottom: 25px;
}
table.table02 td {
	border-top: 1px dashed #d5d5d6;
	padding-top: 15px;
	padding-bottom: 15px;
}
table.table02 td:nth-child(5) {
	width: 80px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.scroll {
		width: 100%;
		overflow-x: auto;
	}

	table.table02 {
		width: 980px;
	}
	table.table02 th,
	table.table02 td {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

#page_img {
	width: 100%;
	height: 600px;
	background-image: url(../img/top/top_img.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media screen and (max-width: 1000px) {

	#page_img {
		height: 480px;
	}
}

@media screen and (max-width: 768px) {

	#page_img {
		height: 240px;
	}
}


.txt_grad {
	display: inline-block;
	background: linear-gradient(90deg, #46d0ce, #1ca7ec); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.job_btn .btn {
	width: 300px;
	height: 130px;
	border: 1px solid #1ca7ec;
	border-radius: 50px;
}

.job_btn .btn a {
	width: 100%;
	height: 100%;
	font-size: 19px;
	text-align: center;
	line-height: 1.3;
	padding-bottom: 20px;
}

@media screen and (max-width: 1000px) {
	.job_btn .btn {
		width: 100%;
		height: 90px;
		margin-bottom: 15px;
	}

	.job_btn .btn a {
		font-size: 17px;
	}

}

@media screen and (max-width: 768px) {
	.job_btn .btn {
		height: 64px;
	}
	.job_btn .btn a {
		font-size: 16px;
	}
}

.business_btn .btn {
	width: 360px;
	height: 75px;
	margin: 40px auto 0;
}
.business_btn .btn a {
	display: flex;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #46d0ce 10%, #1ca7ec 100%);
	color: #ffffff;
	border-radius: 38px;
	position: relative;
}
.business_btn .btn a::before {
	content: '';
	width: 12px;
	height: 12px;
	background-image: url(../img/common/link_w.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px auto;
	position: absolute;
	right: 30px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.business_btn .btn a span {
	font-size: 15px;
}

@media screen and (max-width: 768px) {
	.business_btn .btn {
		width: 100%;
		max-width: 320px;
		height: 54px;
		margin-top: 20px;
	}

}


.loop_txt {
	width: 100%;
	height: 200px;
	background-image: url(../img/staff/staff_txt_b.png);
	background-position: center bottom;
	background-repeat: repeat-x;
	background-size: auto 200px;
	position: absolute;
	bottom: -36px;
	animation: loop_txt 50s linear infinite;
	z-index: -1;
}
#main_img .loop_txt {
	z-index: 1;
}
@keyframes loop_txt {
	0% {
		background-position: left bottom;
	}

	100% {
		background-position: left 200% bottom;
	}
}

@media screen and (max-width: 768px) {
	.loop_txt {
		height: 120px;
		background-size: auto 120px;
	}

}



/* top
------------------------------------------------------------*/
#main_img {
	position: relative;
}
#main_img::before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../img/top/main_img.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
}

.main_slide li {
	width: 100%;
	height: 960px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.main_slide li:first-child {
	background-image: url(../img/top/main_slide01.jpg);
}
.main_slide li:nth-child(2) {
	background-image: url(../img/top/main_slide02.jpg);	
}
.main_slide li:nth-child(3) {
	background-image: url(../img/top/main_slide03.jpg);	
}

.main_txt {
	position: absolute;
	left: 10%;
	top: 32%;
	z-index: 5;
}
.main_txt .txt {
	color: #ffffff;
	font-size: 21px;
	text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.8);
	margin-top: 20px;
}

@media screen and (max-width: 1200px) {
	.main_slide li {
		height: 720px;
	}

	.main_txt {
		width: 100%;
		max-width: 640px;
		padding: 0 15px;
		position: absolute;
		top: 30%;
	}
	.main_txt .txt {
		font-size: 18px;
		margin-top: 15px;
	}

}

@media screen and (max-width: 768px) {
	.main_slide li {
		height: 480px;
	}

	.main_txt {
		left: 0;
		right: 0;
		top: 20%;
	}
	.main_txt .txt {
		font-size: 14px;
	}

}

.top_ttl .en {
	font-family: "Montserrat", sans-serif;
	font-size: 75px;
	font-weight: 700;
	line-height: 1.15;
}
.top_ttl .en span {
	font-size: 65px;
}
.top_ttl .ja {
	font-size: 25px;
}

#top01 .top_ttl .en {
	font-size: 70px;
}
#top01 .top_ttl .ja {
	font-size: 22px;
}
#top06 .top_ttl {
	text-align: center;
	color: #ffffff;
}

@media screen and (max-width: 1000px) {
	.top_ttl .en,
	#top01 .top_ttl .en {
		font-size: 54px;
	}
	.top_ttl .en span {
		font-size: 32px;
	}
	.top_ttl .ja,
	#top01 .top_ttl .ja {
		font-size: 20px;
	}

}


@media screen and (max-width: 768px) {
	.top_ttl .en,
	#top01 .top_ttl .en {
		font-size: 36px;
	}
	.top_ttl .en span {
		font-size: 24px;
	}
	.top_ttl .ja,
	#top01 .top_ttl .ja {
		font-size: 16px;
	}

}


.top_ttl.bg {
	width: calc(100% + 30px);
	height: 600px;
	background-image: url(../img/top/top_ttl.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-left: -15px;
	padding-left: 15px;
	padding-right: 15px;
}
.top_ttl.bg .en {
	color: #ffffff;
	font-size: 109px;
}
.top_ttl.bg .ja {
	color: #ffffff;
	font-size: 30px;
}

@media screen and (max-width: 1000px) {
	.top_ttl.bg {
		height: 480px;
	}
	.top_ttl.bg .en {
		font-size: 54px;
	}
	.top_ttl.bg .ja {
		font-size: 18px;
	}

}

@media screen and (max-width: 768px) {
	.top_ttl.bg {
		height: 240px;
	}
	.top_ttl.bg .en {
		font-size: 36px;
	}
	.top_ttl.bg .ja {
		font-size: 16px;
	}
}

#top01 {
	background-image: url(../img/top/top01_bg.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	position: relative;
}
#top01 .cont {
	margin-left: 0;
}
#top01 .left {
	width: 49%;
	margin-top: 80px;
}
#top01 .ttl {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 60px;
	font-weight: 700;
	line-height: 1.4;
}
#top01 .img {
	margin-top: 60px;
}

#top01 .right {
	width: 40%;
}
#top01 .txt {
	font-size: 22px;
	padding-top: 140px;
}

#top01 .cont_img {
	position: absolute;
	right: 100px;
	/* top: 80px; */
	top: -100px;
}

#top02 section {
	position: relative;
}
#top02 .section_cont {
	margin-top: -180px;
}
#top02 .cont_box {
	width: 48.57%;
	background-color: #ffffff;
	box-shadow: 5px 5px 10px #efefef;
	padding-bottom: 50px;
}

#top02 .box_ttl {
	width: 90%;
	max-width: 500px;
	height: 115px;
	background-color: #1ca7ec;
	color: #ffffff;
	text-align: center;
	margin: -30px auto 0;
	position: relative;
}
#top02 .box_ttl .num {
	font-family: "Montserrat", sans-serif;
	font-size: 20px;	
}
#top02 .box_ttl p {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 30px;
	font-weight: 700;
}
#top02 .box_txt {
	font-size: 19px;
	margin-top: 30px;
	padding: 0 30px;
}
#top02 .business_btn .btn {
	margin-top: 30px;
}
#top02 .loop_txt {
	z-index: -1;
}

#top03 {
	background-image: url(../img/top/top03_bg.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	position: relative;
}
#top03::before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../img/top/top03_img.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
}
#top03 .cont {
	margin-top: 15px;
}
#top03 .box {
	width: 32.28%;
	background-color: #e4f4fd;
	background-color: rgba(228, 244, 253, 0.5);
	background-image: url(../img/top/top03_box.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	margin-top: 55px;
	padding: 0 30px 35px;
}
#top03 .box:not(:nth-child(3n)) {
	margin-right: 1.58%;
}
#top03 .box .point {
	font-family: "Montserrat", sans-serif;
	width: 100px;
	height: 108px;
	background-image: url(../img/top/top03_point.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #ffffff;
	font-size: 14px;
	text-align: center;
	margin: -30px auto 20px;
	padding-top: 25px;
}
#top03 .box .point span {
	display: block;
	font-size: 35px;
	font-weight: 500;
}
#top03 .box .ttl {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}
#top03 .box .ttl::before {
	content: '';
	width: 60px;
	height: 2px;
	background-color: #1ca7ec;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
#top03 .box .txt {
	line-height: 1.7;
}

.qa_ttl {
	text-align: center;
}
.qa_ttl .ttl {
	display: inline-block;
	border-bottom: 1px solid #fbc65c;
	color: #0d4e4a;
	font-size: 30px;
	margin-bottom: 30px;
	padding: 0 40px 5px;
}

#top04 .cont {
	margin-top: 60px;
}
#top04 .box {
	width: 100%;
	background-color: #1ca7ec;
	border-radius: 10px;
	margin-top: 20px;
}

#top04 .question {
	padding: 10px 30px;
}
#top04 .question .flex {
	min-height: 40px;
	align-items: center;
}
#top04 .question .ttl {
	width: calc(100% - 50px);
	min-height: 80px;
	background-image: url(../img/top/question.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 46px auto;
	color: #ffffff;
	font-size: 22px;
	padding-left: 60px;
}
#top04 .question .qa_btn {
	width: 30px;
	height: 30px;
	margin-left: 20px;
	position: relative;
}
#top04 .question .qa_btn::before,
#top04 .question .qa_btn::after {
	content: '';
	background-color: #ffffff;
	border-radius: 1px;
	position: absolute;
	transition: 0.5s;
}
#top04 .question .qa_btn::before {
	width: 17px;
	height: 2px;
	left: 7px;
	top: 14px;
}
#top04 .question .qa_btn::after {
	width: 2px;
	height: 17px;
	left: 14px;
	top: 7px;
}

#top04 .answer {
	display: none;
	background-color: #e4f4fd;
	border-radius: 0 0 10px 10px;
	padding: 20px 30px;
}
#top04 .answer .txt {
	width: 100%;
	font-size: 19px;
	padding-top: 5px;
	padding-bottom: 10px;
}

#top04 .show .question .qa_btn::after {
	content: none;
	transition: 0.5s;
}
#top04 .show .answer {
	display: block;
}

#top05 section {
	position: relative;
}


#top05 .section_cont {
	margin-top: -180px;
}
#top05 .cont_box {
	width: 31.42%;
	background-color: #ffffff;
}
#top05 .loop_txt {
	bottom: -36px;
	z-index: -1;
}

#top06 {
	background-image: url(../img/top/top06_bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
#top06 .cont .txt {
	color: #ffffff;
	font-size: 19px;
	text-align: center;
	margin: 40px 0 50px;
}
#top06 .job_btn {
	margin-bottom: 20px;
}
#top06 .job_btn .btn {
	border-color: #ffffff;
}
#top06 .job_btn .btn a {
	background-image: url(../img/common/sign_a.svg);
	background-position: center bottom 25px;
	background-repeat: no-repeat;
	background-size: 24px auto;
	color: #ffffff;
}
#top06 .job_btn .btn a:hover {
	background-position: left calc(50% + 5px) bottom 25px;
}

@media screen and (max-width: 1200px) {
	#top01 .cont_img {
		right: 0;
	}
	#top01 .ttl {
		font-size: 45px;
	}

	#top05 .section_cont {
		margin-top: -120px;
	}
}

@media screen and (max-width: 1000px) {
	#top01 .cont_img {
		display: none;
	}

	#top01 .left {
		width: 100%;
		margin-top: 60px;
		justify-content: flex-start;
	}
	#top01 .right {
		width: 100%;
		margin-top: 30px;
	}

	#top01 .txt {
		font-size: 18px;
		padding-top: 0;
	}

	#top02 .box_ttl p {
		font-size: 24px;
	}

	#top03 .cont {
		justify-content: space-between;
	}
	#top03 .box {
		width: 48%;
		margin-top: 45px;
		padding: 0 20px 30px;
	}
	#top03 .box:not(:nth-child(3n)) {
		margin-right: 0;
	}
	#top03 .box .point {
		font-family: "Montserrat", sans-serif;
		width: 84px;
		height: 90px;
		color: #ffffff;
		padding-top: 20px;
	}
	#top03 .box .point span {
		font-size: 30px;
	}
	#top03 .box .ttl {
		font-size: 24px;
	}

	#top06 .job_btn .btn a {
		background-position: center bottom 18px;
		background-size: 20px auto;
	}
	#top06 .job_btn .btn a:hover {
		background-position: left calc(50% + 5px) bottom 18px;
	}

}


@media screen and (max-width: 768px) {
	#top01 .left {
		margin-top: 40px;
	}
	#top01 .ttl {
		font-size: 28px;
	}

	#top01 .img {
		margin-top: 40px;
	}

	#top01 .txt {
		font-size: 16px;
	}

	#top02 .section_cont {
		margin-top: 0;
	}

	#top02 .cont_box {
		width: 100%;
		margin-top: 30px;
	}
	#top02 .box_ttl {
		height: 80px;
	}
	#top02 .box_ttl p {
		font-size: 21px;
	}

	#top02 .box_txt {
		font-size: 16px;
		margin-top: 20px;
		padding: 0;
	}

	#top03::before {
		content: none;
	}
	#top03 .cont {
		justify-content: center;
	}

	#top03 .box {
		width: 100%;
		max-width: 480px;
	}
	#top03 .box .point span {
		font-size: 24px;
	}
	#top03 .box .ttl {
		font-size: 20px;
	}

	#top04 .question .ttl {
		min-height: 60px;
		font-size: 18px;
	}
	#top04 .answer .txt {
		font-size: 16px;
		padding: 0;
	}

	#top05 .section_cont {
		margin-top: 0;
	}
	#top05 .cont {
		justify-content: center;
	}
	#top05 .cont_box {
		width: 100%;
		max-width: 440px;
		margin-top: 30px;
	}

	#top06 section {
		padding-bottom: 120px;
	}

	#top06 .job_btn .btn a {
		background-position: center bottom 10px;
		padding-top: 5px;
	}
	#top06 .job_btn .btn a:hover {
		background-position: left calc(50% + 5px) bottom 10px;
	}

	#top06 .cont .txt {
		font-size: 16px;
	}
}


/* business
------------------------------------------------------------*/
.business_link {
	width: 100%;
	padding: 60px 15px;
}
.business_link .box {
	width: 48%;
	max-width: 500px;
	margin: 10px 1%;
}
.business_link .link {
	width: 100%;
	height: 115px;
}
.business_link .link a {
	width: 100%;
	height: 100%;
	background-color: #1ca7ec;
	color: #ffffff;
	text-align: center;
	position: relative;
}
.business_link .link a::before {
	font-family: "Montserrat", sans-serif;
	font-size: 44px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.1);
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
}
.business_link .box:first-child .link a::before {
	content: 'MECHATRO DIVISON';
}
.business_link .box:last-child .link a::before {
	content: 'SERVICE DIVISION';
}
.business_link .link .num {
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
}
.business_link .link .ttl {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 30px;
	font-weight: 700;
}
.business_link ol {
	margin-top: 10px;
}
.business_link ol li {
	display: inline-block;
	border-bottom: 4px solid #e4f4fd;
	margin-right: 30px;
	padding: 0 5px 5px 5px;
}
.business_link ol li a {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	background-image: url(../img/common/sign_b.svg);
	background-position: right bottom 10px;
	background-repeat: no-repeat;
	background-size: 16px auto;
	font-weight: 700;
	padding-right: 30px;
}


.business_ttl .ttl {
	position: relative;
}
.business_ttl .num {
	font-family: "Montserrat", sans-serif;
	color: #1ca7ec;
	font-size: 20px;
}
.business_ttl .ja {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 40px;
	font-weight: 700;
}
.business_ttl .en {
	font-family: "Montserrat", sans-serif;
	color: rgba(0, 180, 237, 0.25);
	font-size: 120px;
	font-weight: 700;
	position: absolute;
	left: 0;
	top: 35px;
	z-index: 3;
}
.business_ttl .img {
	width: 81.25%;
	height: 550px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-left: -15px;
	margin-top: 50px;
	position: relative;
}
#business01 .business_ttl .img {
	background-image: url(../img/business/business01_img.jpg);
}
#business03 .business_ttl .img {
	background-image: url(../img/business/business03_img.jpg);
}
.business_ttl .img::before {
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #46d0ce 10%, #1ca7ec 100%);
	position: absolute;
	left: 20px;
	bottom: -15px;
	z-index: -1;
}

.business_cont {
	margin-top: 80px;
}
.business_cont .ttl {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 50px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
}
.business_cont .txt {
	font-size: 22px;
}

.business .cont01 .box {
	width: 45.5%;
}
.business .cont01 .ttl {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 15px;
	padding-bottom: 20px;
	position: relative;
}
.business .cont01 .ttl::before,
.business .cont01 .ttl::after {
	content: '';
	height: 4px;
	position: absolute;
	left: 0;
	bottom: 0;
}
.business .cont01 .ttl::before {
	width: 100%;
	background-color: #e4f4fd;
}
.business .cont01 .ttl::after {
	width: 100px;
	background-color: #1ca7ec;
}
.business .cont01 .txt {
	line-height: 1.7;
}

.business .cont01 .img {
	width: 47.5%;
}

.business .cont02 {
	margin-top: 60px;
	position: relative;
}
.business .cont02 .box {
	width: 60%;
	background: linear-gradient(90deg, #46d0ce 10%, #1ca7ec 100%);
	clip-path: polygon(0 80px, 80px 0, 100% 0, 100% calc(100% - 80px), calc(100% - 80px) 100%, 0 100%);
	margin-right: -15px;
	padding: 80px 60px 100px 8%;
}
.business .cont02.right .box {
	margin-left: -15px;
	margin-right: 0;
	padding: 80px 8% 100px 60px;
}

.works_ttl .ttl {
	color: #ffffff;
	text-align: center;
}
.works_ttl .en {
	font-family: "Montserrat", sans-serif;
	font-size: 75px;
	font-weight: 700;
	line-height: 1;
}
.works_ttl .ja {
	font-size: 25px;
}

.business .cont02 .img {
	width: 46.35%;
	position: absolute;
	left: -15px;
}
.business .cont02.right .img {
	left: auto;
	right: -15px;
}

#business01 section {
	padding-bottom: 160px;
}

#business01 {
	position: relative;
}

#business02 {
	width: 100%;
	background-image: url(../img/business/business02_bg.jpg);
	background-position: center bottom 200px;
	background-repeat: no-repeat;
	background-size: cover;
}
#business02 .cont:not(:first-child) {
	margin-top: 30px;
	padding-top: 60px;
}
.business .cont02 .img.right {
	left: auto;
	right: -15px;
}

#business04 {
	width: 100%;
	background-image: url(../img/business/business04_bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
#business04 .cont {
	padding-bottom: 640px;
	position: relative;
}
#business04 .cont .cont_img {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 180px;
	z-index: 3;
}
#business04 .cont .cont_img .img:first-child {
	width: 55%;
	margin-right: 5%;
}
#business04 .cont .cont_img .img:last-child {
	width: 35%;
}

.works {
	width: 48%;
	margin-top: 60px;
}
.works .icon {
	margin-right: 20px;
}
.works_box {
	width: calc(100% - 130px);
	color: #ffffff;
}
.works_box .ttl {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}
.works_box .txt {
	font-size: 16px;
}

.offer {
	width: calc(100% + 30px);
	margin-left: -15px;
	margin-top: 80px;
}
.offer_ttl {
	color: #1ca7ec;
	text-align: center;
	position: relative;
	top: 15px;
  	z-index: 1;
}
.offer_ttl .ja {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 30px;
	font-weight: 700;
}
.offer_cont {
	width: 100%;
	max-width: 1280px;
	background-color: #e4f4fd;
	margin: 0 auto;
	padding: 50px 40px 40px;
	position: relative;
}
.offer_cont::before {
	content: '';
	width: 100vw;
	height: 100%;
	background: linear-gradient(90deg, #e4f4fd 50%, transparent 50%);
	margin: 0 calc(50% - 50vw);
	position: absolute;
	left: -15px;
	top: 0;
	z-index: -1;
}
.offer_cont .box {
	width: 15.5%;
}


.lineup {
	width: calc(100% + 30px);
	background-color: #e4f4fd;
	margin-left: -15px;
	margin-top: 120px;
	padding: 0 15px 40px;
}
.lineup_ttl {
	color: #1ca7ec;
	text-align: center;
	position: relative;
	top: -25px;
}
.lineup_ttl .en {
	font-family: "Montserrat", sans-serif;
	font-size: 75px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 4px;
}
.lineup_ttl .ja {
	font-size: 25px;
}

.lineup_cont {
	margin-top: 30px;
}
.lineup_cont .ttl {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	display: inline-block;
	font-weight: 700;
	border-radius: 5px;
	padding: 5px 15px;
}
.lineup_cont .txt {
	font-size: 16px;
}

.lineup .left {
	width: 340px;
	text-align: center;
	margin-top: -60px;
}
.lineup .left .ttl {
	color: #ffffff;
	font-size: 30px;
	background-color: #1ca7ec;
	margin-bottom: 20px;
}
.lineup .left .txt {
	margin-top: 10px;
}
.lineup .right {
	width: calc(100% - 400px);
}
.lineup .right_box {
	width: 47%;
	margin-top: 40px;
}
.lineup .right_box .box {
	width: calc(100% - 170px);
}
.lineup .right_box .box .ttl {
	background-color: #ffffff;
	font-size: 20px;
	margin-bottom: 10px;
}




@media screen and (max-width: 1600px) {
	.business_ttl .en {
		font-size: 80px;
		top: 48px;
	}
}

@media screen and (max-width: 1400px) {
	.lineup .right {
		width: calc(100% - 360px);
	}
	.lineup .right_box {
		width: 49%;
	}
	.lineup .right_box .box {
		width: calc(100% - 150px);
	}
}

@media screen and (max-width: 1200px) {
	.business_ttl .en {
		font-size: 54px;
	}
	.business_ttl .img {
		height: 360px;
	}
	.business_cont .ttl {
		font-size: 36px;
	}
	.business_cont .txt {
		font-size: 18px;
	}

	.works {
		width: 100%;
		margin-top: 40px;
	}


	.lineup .left {
		width: 340px;
		margin: 40px auto 0;
	}
	.lineup .right {
		width: 100%;
	}

}

@media screen and (max-width: 1000px) {
	.business .cont02 .box {
		width: calc(100% + 30px);
		margin-left: -15px;
	}
	.business .cont02.right .box {
		width: calc(100% + 30px);
		margin-right: -15px;
	}

	.business .cont02 .img {
		width: 100%;
		text-align: center;
		margin-top: 20px;
		position: static;
	}

	.offer_cont {
		padding: 40px 15px;
	}

	.lineup_ttl .en {
		font-size: 54px;
		letter-spacing: 2px;
	}
	.lineup_ttl .ja {
		font-size: 20px;
	}
	.lineup .right_box .box .ttl {
		font-size: 18px;
	}
}

@media screen and (max-width: 768px) {
	.business_link .box {
		width: 100%;
	}

	.business_link .link {
		height: 80px;
	}
	.business_link .link a::before {
		font-size: 24px;
	}
	.business_link .link .ttl {
		font-size: 20px;
	}

	.business_link ol {
		margin-bottom: 20px;
	}

	.business_ttl .ja {
		font-size: 26px;
	}
	.business_ttl .en {
		font-size: 24px;
	}
	.business_ttl .img {
		width: 100%;
		height: 240px;
		margin-top: 30px;
	}

	.business_cont {
		margin-top: 40px;
	}
	.business_cont .ttl {
		font-size: 21px;
		margin-bottom: 20px;
	}
	.business_cont .txt {
		font-size: 16px;
	}

	.business .cont01 .box {
		width: 100%;
	}
	.business .cont01 .ttl {
		font-size: 24px;
	}

	.business .cont01 .img {
		width: 100%;
		margin-top: 30px;
	}

	.business .cont02 .box,
	.business .cont02.right .box {
		clip-path: polygon(0 15px, 15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
		padding: 40px 20px;
	}

	.works_ttl .en {
		font-size: 36px;
	}
	.works_ttl .ja {
		font-size: 16px;
	}
	.works .icon {
		width: 80px;
	}
	.works_box {
		width: calc(100% - 100px);
	}


	.offer_ttl .ja {
		font-size: 24px;
	}

	.offer_cont {
		justify-content: center;
	}
	.offer_cont .box {
		width: 27%;
		margin: 0 1% 10px;
	}


	.lineup_ttl .en {
		font-size: 36px;
	}
	.lineup_ttl .ja {
		font-size: 16px;
	}

	.lineup .left {
		width: 100%;
	}
	.lineup .left .ttl {
		font-size: 24px;
	}

	.lineup .right_box {
		width: 100%;
	}

	#business01 section {
		padding-bottom: 90px;
	}
	#business02 .cont:not(:first-child) {
		margin-top: 0;
	}
	#business04 .cont {
		padding-bottom: 360px;
	}

}

@media screen and (max-width: 480px) {
	.offer_cont {
		justify-content: space-between;
	}
	.offer_cont .box {
		width: 32%;
		margin: 0 0 10px;
	}

	.lineup .left {
		text-align: left;
	}
	.lineup .left .img {
		text-align: center;
	}
	.lineup .left .txt {
		text-align: left;
	}
	.lineup .left .txt br {
		display: none;
	}

	.lineup .right_box .img {
		width: 100%;
		text-align: center;
	}
	.lineup .right_box .box {
		width: 100%;
		margin-top: 10px;
	}
}


/* staff
------------------------------------------------------------*/
/* list */
#staff_list01 {
	background-image: url(../img/staff/list/staff_list.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#staff_list01 .cont_ttl {
	width: 100%;
	max-width: 1740px;
	background-image: url(../img/staff/list/interview_ttl.png);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: auto 153px;
	margin: 0 auto 80px;
	padding-left: 30%;
	padding-top: 130px;
}

#staff_list01 .cont {
	margin-bottom: 120px;
}
#staff_list01 .img {
	width: 50.63%;
	clip-path: polygon(0 100px, 100px 0, 100% 0, 100% calc(100% - 100px), calc(100% - 100px) 100%, 0 100%);
}
#staff_list01 .reverse .img {
	width: 50.63%;
	clip-path: polygon(0 0, calc(100% - 100px) 0, 100% 100px, 100% 100%, 100px 100%, 0 calc(100% - 100px));
}
#staff_list01 .box {
	width: 49.37%;
	padding: 0 40px;
}
#staff_list01 .box .box_inner {
	width: 100%;
	max-width: 460px;
}
#staff_list01 .box .box_inner a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 3;
}
#staff_list01 .box .box_inner .link {
	cursor: pointer;
}
#staff_list01 .box .box_inner .link:hover::after {
	background-position: left calc(50% + 5px) center;
	transition: 0.5s;
}

@media screen and (max-width: 1600px) {
	#staff_list01 .cont_ttl {
		background-size: auto 100px;
	}
}

@media screen and (max-width: 1000px) {
	#staff_list01 .cont_ttl {
		background-size: auto 72px;
		padding-left: 0;
	}
}

@media screen and (max-width: 768px) {
	#staff_list01 .cont {
		margin-bottom: 80px;
	}

	#staff_list01 .cont_ttl {
		background-size: auto 36px;
		margin-bottom: 40px;
		padding-top: 45px;
	}
	#staff_list01 .img {
		width: 100%;
	}
	#staff_list01 .box {
		width: 100%;
		margin-top: 20px;
		padding: 0;
	}

	#staff_list01 .reverse {
		flex-flow: wrap;
	}
	#staff_list01 .reverse .img {
		width: 100%;
	}

}


/* staff */
#staff01 .cont {
	position: relative;
}
#staff01 .box {
	padding-bottom: 40px;
	position: absolute;
	left: 100px;
	top: 0;
	bottom: 0;
}
#staff01 .img {
	width: 61.875%;
}

#staff01 .box_inner .ttl p {
	background-color: #1ca7ec;
	color: #ffffff;
}

#staff02 {
	background: linear-gradient(90deg, #e4f4fd 1800px, transparent 1800px);
	padding-top: 240px;
	margin-top: -40px;
	position: relative;
	z-index: -1;
}
#staff02::before {
	content: '';
	width: 100%;
	height: 160px;
	background-image: url(../img/staff/list/interview_ttl.png);
	background-position: left 80px top -2px;
	background-repeat: no-repeat;
	background-size: auto 150px;
	position: absolute;
	left: 0;
	top: 0;
}

#staff02 .ttl {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	display: inline;
	background: linear-gradient(180deg, transparent 20px, #ffffff 20px);
	font-size: 40px;
	font-weight: 700;
	padding-left: 10px;
}
#staff02 .txt,
#staff02 ol {
	margin-top: 60px;
}
#staff02 ol li {
	font-size: 25px;
	text-indent: -2em;
	line-height: 1.6;
	padding-left: 2em;
}
#staff02 ol li span {
	color: #1ca7ec;
}
#staff02 .txt {
	font-size: 25px;
}

#staff03 section {
	padding-bottom: 240px;
	position: relative;
}
#staff03 .cont {
	padding-right: 100px;
}
#staff03 .img {
	width: 44.6%;
}
#staff03 .box {
	width: 44.8%;
}
#staff03 dl:not(:first-child) {
	margin-top: 80px;
}
#staff03 dl dt p {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	display: inline-block;
	border: 1px solid #1ca7ec;
	color: #1ca7ec;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 10px;
	padding: 0 10px 2px;
}
#staff03 dl dd {
	font-size: 22px;
	line-height: 1.6;
}

#staff03 .loop_txt {
	width: calc(100% + 30px);
	margin-left: -15px;
	bottom: -273px;
}

/*
#staff03 .loop_txt {
	animation: loop_txt 20s linear infinite;
	transform:translateX(100%);
}
@keyframes loop_txt {
	0% { transform:translateX(0); }
}
	*/

.staff_ttl .en {
	font-family: "Montserrat", sans-serif;
	font-size: 70px;
	font-weight: 700;
	line-height: 1;
}
.staff_ttl .ja {
	font-size: 25px;
}

#staff04 {
	background: linear-gradient(90deg, #46d0ce 10%, #1ca7ec 100%);
}
#staff04 .staff_ttl {
	color: #ffffff;
	text-align: center;
}

#staff04 .cont {
	margin-top: 60px;
}


.flow {
	width: 20%;
}
.flow .time {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	color: #ffffff;
	font-size: 30px;
	font-weight: 700;
	padding-left: 65px;
}
.flow .line {
	margin-top: 40px;
	position: relative;
}
.flow .line::before,
.flow .line::after {
	content: '';
	position: absolute;
}
.flow .line::before {
	width: 100%;
	height: 2px;
	background-color: #e4f4fd;
	left: 0;
	top: 0;
}
.flow .line::after {
	width: 12px;
	height: 12px;
	background-color: #1ca7ec;
	border-radius: 6px;
	border: 1px solid #e4f4fd;
	left: 84px;
	top: -6.5px;
}
.flow .box {
	width: 160px;
	height: 125px;
	background-color: #ffffff;
	border-radius: 15px;
	margin: 80px auto 0;
	padding: 15px;
}
.flow .box .txt {
	font-size: 18px;
	line-height: 1.6;
}

.staff03 #staff04 .flow:nth-child(2) {
	width: 40%;
}
.staff03 #staff04 .flow:nth-child(2) .box {
	width: 340px;
}

#staff05 {
	position: relative;
}
#staff05::before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../img/staff/staff05_bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	right: 0;
	z-index: -1;
}
#staff05 .section_ttl {
	position: relative;
}
#staff05 .staff_ttl {
	position: absolute;
	left: 0;
	top: 0;
}

#staff05 .section_cont {
	position: relative;
	z-index: 3;
}

#staff05 .cont {
	max-width: 920px;
	margin-left: auto;
}
#staff05 .cont_box {
	width: 47.82%;
	background-color: #ffffff;
}

@media screen and (max-width: 1600px) {
	#staff02 {
		padding-top: 140px;
	}
	#staff02::before {
		background-size: auto 100px;
	}


	#staff05 .staff_ttl {
		z-index: 5;
	}
}

@media screen and (max-width: 1200px) {
	#staff05 .staff_ttl {
		position: static;
	}

	#staff05 .cont {
		margin-right: auto;
		margin-top: 40px;
	}
}

@media screen and (max-width: 1000px) {
	#staff01 .box {
		left: 0;
	}
	#staff02 .ttl {
		font-size: 28px;
	}

	#staff02 .txt,
	#staff02 ol {
		margin-top: 20px;
	}
	#staff02 .txt {
		font-size: 18px;
	}
	#staff02 ol li {
		font-size: 18px;
	}

	#staff03 .cont {
		padding-right: 0;
	}
	#staff03 .box {
		width: 48%;
	}

	.staff_ttl .en {
		font-size: 54px;
	}
	.staff_ttl .ja {
		font-size: 18px;
	}

	.flow,
	.staff03 #staff04 .flow:nth-child(2) {
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
	}
	.flow .time {
		width: 60px;
		font-size: 24px;
		padding-left: 0;
	}
	.flow .line {
		width: 60px;
		height: 100%;
		margin-top: 0;
	}
	.flow .line::before {
		width: 2px;
		height: 100%;
		background-color: #e4f4fd;
		left: 20px;
		top: 0;
	}
	.flow .line::after {
		width: 10px;
		height: 10px;
		left: 15px;
		top: 8.5px;
	}
	.flow .box,
	.staff03 #staff04 .flow:nth-child(2) .box {
		width: calc(100% - 120px);
		height: auto;
		min-height: 60px;
		margin: 0 0 10px;
		padding-left: 20px;
		justify-content: flex-start;
	}
	.flow .box .txt {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {

	#staff01 .box {
		width: 100%;
		position: static;
	}
	#staff01 .img {
		width: 100%;
	}

	#staff02 .ttl {
		font-size: 24px;
	}
	#staff02 .txt {
		font-size: 16px;
		margin-top: 10px;
	}
	#staff02 ol li {
		font-size: 16px;
	}

	#staff03 section {
		padding-bottom: 180px;
	}
	#staff03 .img {
		width: 100%;
	}
	#staff03 .box {
		width: 100%;
		margin-top: 30px;
	}
	#staff03 dl:not(:first-child) {
		margin-top: 30px;
	}
	#staff03 dl dt p {
		font-size: 20px;
	}
	#staff03 dl dd {
		font-size: 16px;
	}

	#staff03 .loop_txt {
		bottom: -180px;
	}

	#staff05 section {
		padding-bottom: 180px;
	}
	#staff05 .cont {
		justify-content: center;
	}
	#staff05 .cont_box {
		width: 100%;
		max-width: 440px;
	}
	#staff05 .cont_box:last-child {
		margin-top: 30px;
	}

}


/* job
------------------------------------------------------------*/
#job_list01,
#job_list02,
#job_list03 {
	margin-top: -120px;
	padding-top: 120px;
}

#job01 .job_btn .btn a {
	background-image: url(../img/common/sign_d.svg);
	background-position: center bottom 25px;
	background-repeat: no-repeat;
	background-size: 22px auto;
}
#job01 .job_btn .btn a:hover {
	background-position: center bottom 20px;
}

@media screen and (max-width: 1000px) {
	#job01 .job_btn .btn a {
		background-position: center bottom 10px;
		padding-bottom: 10px;
	}
	#job01 .job_btn .btn a:hover {
		background-position: center bottom 10px;
	}
}

@media screen and (max-width: 768px) {
	#job01 .job_btn .btn a {
		background-position: center bottom 6px;
		padding-bottom: 12px;
	}
	#job01 .job_btn .btn a:hover {
		background-position: center bottom 6px;
	}
}

#job01 .cont {
	width: calc(100% + 30px);
	background-image: url(../img/job/job01_bg.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	margin-left: -15px;
	margin-top: 60px;
	padding: 60px 15px 480px;
	position: relative;
}

#job01 .cont_box:not(:first-of-type) {
	margin-top: 60px;
}
#job01 .box_ttl {
	margin-bottom: 30px;
	padding-top: 60px;
}
#job01 .box_ttl .ttl {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 40px;
	font-weight: 900;
}
#job01 .box_ttl .sub {
	color: #1ca7ec;
	font-size: 22px;
}

#job01 .box_detail {
	background-color: #ffffff;
	padding: 60px 15px;
}
#job01 .box_detail:not(:first-of-type) {
	margin-top: 30px;
}

.detail .ttl {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	display: inline-block;
	border-bottom: 2px solid #1ca7ec;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
	padding-bottom: 5px;
}
.detail .txt {
	font-size: 22px;
	line-height: 1.7;
}

.detail table {
	width: 100%;
	line-height: 1.6;
	margin-top: 40px;
}
.detail table caption {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 20px;	
}
.detail table th,
.detail table td {
	border-bottom: 1px solid #000000;
	vertical-align: top;
	padding: 10px 15px;
}
.detail table tr:first-child th,
.detail table tr:first-child td {
	border-top: 1px solid #000000;
}
.detail table th {
	width: 200px;
	background-color: rgba(228, 244, 253, 0.5);
	border-right: 1px solid #000000;
	font-size: 20px;
	font-weight: 700;
}

#business04 .loop_txt,
#staff05 .loop_txt,
#job01 .loop_txt {
	background-image: url(../img/staff/staff_txt_w.png);
	bottom: 180px;
}


@media screen and (max-width: 1000px) {
	#job01 .box_ttl .ttl {
		font-size: 32px;
	}
	#job01 .box_ttl .sub {
		font-size: 18px;
	}

	.detail .txt {
		font-size: 18px;
	}

	.detail table caption {
		font-size: 24px;
	}
	.detail table th {
		font-size: 18px;
	}
}

@media screen and (max-width: 768px) {
	#job01 .cont {
		padding-top: 30px;
		padding-bottom: 280px;
	}
	#job01 .cont_box:not(:first-of-type) {
		margin-top: 30px;
	}
	#job01 .box_ttl {
		margin-bottom: 15px;
		padding-top: 30px;
	}

	#job01 .box_ttl .ttl {
		font-size: 24px;
	}
	#job01 .box_ttl .sub {
		font-size: 16px;
	}

	#job01 .box_detail {
		padding: 30px 15px 40px;
	}
	#job01 .box_detail:not(:first-of-type) {
		margin-top: 15px;
	}

	.detail .ttl {
		font-size: 18px;
	}
	.detail .txt {
		font-size: 16px;
	}
	

	.detail table caption {
		font-size: 20px;
	}
	.detail table tr {
		display: flex;
		flex-wrap: wrap;
	}
	.detail table th,
	.detail table td {
		width: 100%;
		padding: 5px;
	}
	.detail table th {
		border-right: none;
		font-size: 16px;
	}
	.detail table tr:first-child td {
		border-top: none;
	}


	#business04 .loop_txt,
	#staff05 .loop_txt,
	#job01 .loop_txt {
		bottom: 130px;
	}

}


/* entry
------------------------------------------------------------*/
.form table {
	width: 100%;
}
.form table th,
.form table td {
	vertical-align: top;
}
.form table th {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	width: 300px;
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	padding: 25px 0;
	position: relative;
}
.form table td {
	padding: 10px 0;
}
.form table th .required,
.form table th .any {
	width: 65px;
	height: 30px;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	line-height: 28px;
	position: absolute;
	right: 20px;
	top: 27px;	
}
.form table th .required {
	background-color: #1ca7ec;
	color: #ffffff;
}
.form table th .any {
	background-color: #e4f4fd;
	color: #1ca7ec;
}

@media screen and (max-width: 768px) {
	table.table01 tr {
		display: flex;
		flex-wrap: wrap;
	}
	table.table01 th,
	table.table01 td {
		width: 100%;
		padding: 10px;
	}


	table.table01 th .required {
		right: 10px;
		top: 12px;
	}

	table.table01 tr.pc {
		display: none;
	}
	table.table01 tr.sp {
		display: flex;
	}
}

.form_check {
	text-align: center;
	margin-top: 80px;
}
.form_check input {
	appearance: none;
	transform: scale(1.2);
}
.form_check a {
	color: #1ca7ec;
	margin-left: 10px;
}

.form_check input {
    width: 16px;
    height: 16px;
	border: 1px solid #1ca7ec;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    vertical-align: middle;
    transition: .3s;
    position: relative;
	top: -2px;
    cursor: pointer;
}
.form_check input:checked::before {
	content: '';
	width: 8px;
	height: 8px;
    padding: 4px;
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
}

.form_check input:checked::after {
    content: '';
    display: block;
    width: 1rem;
    height: 0.5rem;
    border-left: 2px solid #000000;
    border-bottom: 2px solid #000000;
	transform: rotate(-45deg);
	position: absolute;
	left: 0;
    top: -2px;
}

.form_btn {
	text-align: center;
	margin-top: 30px;
}
.form_btn .btn {
	width: 360px;
	height: 75px;
	background: linear-gradient(90deg, #46d0ce 10%, #1ca7ec 100%);
	border-radius: 38px;
	margin: 5px 10px;
	position: relative;
}
.form_btn .btn input {
	width: 100%;
	height: 100%;
	background-color: transparent;
	background-image: url(../img/common/sign_a.svg);
	background-position: right 30px center;
	background-repeat: no-repeat;
	background-size: 22px auto;
	color: #ffffff;
	border: none;
	border-radius: 38px;
	padding: 20px 30px;
	cursor: pointer;
}
.form_btn .btn input:hover {
	background-position: right 25px center;
}

.input_text,
.textarea,
.select {
	width: 100%;
	background-color: #e4f4fd;
	border: 1px solid #e4f4fd;
	padding: 10px;
}
.input_text,
.select {
	height: 60px;
}
.textarea {
	height: 200px;
}
.input_text.bg_n {
	background-color: transparent;
}

.w80 {
	width: 80px;
}
.w120 {
	width: 120px;
}
.h150 {
	height: 150px;
}

.form .zip {
	margin-bottom: 20px;
}
.form table tr:first-child td label {
	display: inline-block;
	margin-top: 5px;
}

@media screen and (max-width: 768px) {

	.form table tr {
		display: flex;
		flex-wrap: wrap;
	}
	.form table th,
	.form table td {
		width: 100%;
		padding: 10px 0;
	}
	.form table th {
		font-size: 18px;
		padding-bottom: 0;
	}
	.form table td {
		padding-top: 5px;
	}

	.form table th .required,
	.form table th .any {
		width: 48px;
		height: 24px;
		font-size: 14px;
		line-height: 24px;
		right: 0;
		top: 13px;
	}

	.input_text {
		max-width: 100%;
	}

	.input_text,
	.select {
		height: 50px;
	}

	.form_check {
		text-align: left;
		text-indent: -1.6em;
		line-height: 1.4;
		margin-top: 40px;
		padding-left: 1.6em;
	}

	.form_btn .btn {
		height: 64px;
	}


}

/* privacy policy
------------------------------------------------------------*/
#privacy01 dl:not(:first-child) {
	margin-top: 60px;
}
#privacy01 dl dt {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 15px;
	padding-bottom: 20px;
	position: relative;
}
#privacy01 dl dt::before,
#privacy01 dl dt::after {
	content: '';
	height: 4px;
	position: absolute;
	left: 0;
	bottom: 0;
}
#privacy01 dl dt::before {
	width: 100%;
	background-color: #e4f4fd;
}
#privacy01 dl dt::after {
	width: 100px;
	background-color: #1ca7ec;
}
#privacy01 dl dd {
	line-height: 1.7;
}
#privacy01 dl dd ol.first li {
	text-indent: -0.8rem;
	padding-left: 0.8rem;
}
#privacy01 dl dd ol.second {
	margin-left: -0.8rem;
}
#privacy01 dl dd ol.second li {
	text-indent: -1.8rem;
	padding-left: 1.8rem;
}
#privacy01 dl dd ol.dot li {
	text-indent: -1rem;
	padding-left: 1rem;
}

@media screen and (max-width: 900px) {
	#privacy01 dl dt {
		font-size: 24px;
	}
}

@media screen and (max-width: 768px) {
	#privacy01 dl:not(:first-child) {
		margin-top: 40px;
	}

	#privacy01 dl dt {
		font-size: 18px;
		margin-bottom: 10px;
		padding-bottom: 15px;
	}
}



