@charset "utf-8";
/* CSS Document */

/* 全体 */
body {
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', meiryo, sans-serif, -apple-system, BlinkMacSystemFont, 'Helvetica Neue';
	font-size: 16px;
	color: #333;
	letter-spacing: 0.08em;
	line-height: 1.7;
	background-color: #F7F7F7;
	min-width: 1280px;
}

main {
	margin-top: 100px;
}

a {
	text-decoration: none;
	display: block;
	transition: 0.3s;
}

a:hover {
	opacity: 0.7;
	transition: 0.3s;
	box-shadow: none !important;
}

.float-l {
	float: left
}

.float-r {
	float: right;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.flexbox {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flexbox.flexbox-space-around {
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

.sp {
	display: none;
}

img {
	vertical-align: bottom;
	max-width: 100%;
}

.inner {
	max-width: 1280px;
	margin: 0 auto;
}

:root {
	--red: #D80C18;
}

.red {
	color: var(--red);
	font-weight: bold;
}

.fadein {
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}


.fadein2 {
	animation-name: fadein;
	animation-duration: 1.2s;
}

.vertical-middle {
	vertical-align: middle !important;
}

@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
	}
}

/* ヘッダー */
header {
	position: fixed;
	top: 0;
	z-index: 10;
	background-color: transparent;
	width: 100%;
	min-width: 1200px;
	transition: 0.2s;
}

header.fixed {
	background-color: #F7F7F7;
	transition: 0.2s;
}

header .inner.flexbox {
	max-width: 100%;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	height: 100px;
	transition: 0.2s;
}
header.fixed .inner.flexbox {
	height: 60px;
	transition: 0.2s;
}

.header-info {
	width: 236px;
	padding-left: 24px;
}

.header-menu {
	width: 900px;
}

.nav.flexbox {
	justify-content: flex-end;
	align-items: center;
}

.nav li {
	width: 140px;
	height: 30px;
	text-align: center;
}

.nav li a {
	color: #333;
	font-size: 17px;
	font-weight: bold;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	letter-spacing: 0.02em;
	line-height: 1.18;
	display: block;
	text-align: center;
	position: relative;
	width: 100%;
	height: 30px;
	line-height: 30px;
}

.nav li a span {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0 auto;
	font-size: 20px;
	font-weight: bold;
	display: block;
	width: 140px;
	transition: 0.2s;
	opacity: 1;
}

.nav li a span.nav-jp {
	opacity: 0;
	font-size: 15px;
	color: var(--red);
	letter-spacing: 0.08em;
}

.nav li a:hover {
	opacity: 1;
}

.nav li a:hover span.nav-en {
	opacity: 0;
}

.nav li a:hover span.nav-jp {
	opacity: 1;
}

.nav li.nav2 {
	width: 200px;
	height: 100px;
	/* box-shadow: 8.6px 12.29px 40px rgba(0, 0, 0, 0.2); */
}

.nav li.nav2 a {
	width: 200px;
	height: 100px;
	background: rgb(185, 3, 5);
	background: -webkit-linear-gradient(297deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
	background: -o-linear-gradient(297deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
	background: linear-gradient(27deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
	color: #fff;
}

.nav li.nav2 a span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 100px;
}

header.fixed .nav li.nav2 {
	transition: 0.2s;
	height: 60px;
}
header.fixed .nav li.nav2 a {
	transition: 0.2s;
	height: 60px;
}
header.fixed .nav li.nav2 a span {
	transition: 0.2s;
	height: 60px;
}

.nav li.nav2 a span.nav-jp {
	opacity: 0;
}

.nav li.nav2 a:hover span.nav-jp {
	opacity: 1;
	color: #fff;
}

.nav li.nav2 img {
	margin-right: 8px;
}


.hamburger {
	display: none;
}

/* トップページ */

/* メインビジュアル */

.top .main {
	background-image: url("../images/mv-bg.png");
	background-position: calc(50% + 300px) 0;
	background-repeat: no-repeat;
	-webkit-background-size: auto 112%;
	background-size: auto 112%;
	margin-top: -100px;
	position: relative;
	height: 650px;
}

@media screen and (max-width:1500px) {
	.top .main {
		background-position: 100% 0;
	}
}

.top .main .inner {
	max-width: 1100px;
	background-image: url("../images/main-bg2_sp.png");
	background-repeat: no-repeat;
	-webkit-background-size: 500px auto;
	background-size: 500px auto;
	background-position: 0 360px;
	padding-bottom: 50px;
}

.top .main .aws-badge {
	position: absolute;
	bottom: 53px;
	right: 74px;
}

.top h1 {
	margin-bottom: 50px;
	padding-top: 50px;
}

.text1 {
	letter-spacing: 0.08em;
	font-weight: 700;
	line-height: 2.2;
	font-size: 16px;
}

.top .main .text1 {
	margin-bottom: 30px;
}

.link1 a {
	color: #333;
	font-size: 16px;
	font-weight: bold;
	background-image: url("../images/main-btn.png");
	background-repeat: no-repeat;
	background-position: top right;
	padding: 20px 0 30px;
	display: inline;
	padding-right: 80px;
}

.scroll {
	position: absolute;
	bottom: 100px;
	left: 30px;
}

.scroll-down {
	position: absolute;
	bottom: 0;
	left: 4px;
	width: 1px;
	height: 100px;
	background: var(--red);
	animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
	0% {
		transform-origin: top;
		transform: scaleY(0);
	}

	45% {
		transform-origin: top;
		transform: scaleY(1);
	}

	55% {
		transform-origin: bottom;
		transform: scaleY(1);
	}

	100% {
		transform-origin: bottom;
		transform: scaleY(0);
	}
}

/* トップ：sec1 */
section {
	padding: 100px 0 120px;
}

.top-sec1 {
	background-image: url("../images/top-sec1_bg.png");
	background-repeat: no-repeat;
	background-position: right bottom;
	padding: 100px 0 150px;
}

h2 {
	text-align: center;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-size: 80px;
	font-weight: 600;
	line-height: 1;
}

.h2-subtitle {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 60px;
	text-align: center;
}

.top-sec1 h2 {
	text-align: left;
}

.top-sec1 .h2-subtitle {
	text-align: left;
}

h3 {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.3;
}

h3 span {
	font-size: 18px;
	font-weight: 600;
	color: var(--red);
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	letter-spacing: 0;
	display: inline-block;
}

.top-sec1 h3 {
	width: 320px;
	background-image: url("../images/top-sec1_no1.png");
	background-repeat: no-repeat;
	background-position: 80% 0;
}

.top-sec1-box5 h3 {
	background-image: url("../images/top-sec1_no2.png");
}

.top-sec1-box2 {
	width: 930px;
	position: relative;
}

.top-sec1-box3 {
	background-color: #fff;
	padding: 45px 75px 135px 50px;
	margin: 0 -50px 310px 0;
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.top-sec1-box4 {
	width: 640px;
}

.top-sec1-icon1 {
	width: 210px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.top-sec1-text1 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}

.text2 {
	line-height: 1.875;
}

.top-sec1-ul {
	margin-top: 45px;
	position: absolute;
	top: 230px;
}

.top-sec1-ul:first-child {
	margin-bottom: 80px;
}

.top-sec1-ul li {
	width: 280px;
	border-top: solid 1px var(--red);
	margin-right: 20px;
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
	position: relative;
	background-color: #fff;
	transition: 0.3s;
}

.top-sec1-ul li:hover {
	opacity: 0.7;
}

.top-sec1-ul li:last-child {
	margin: 0;
}

.top-sec1-ul li a {
	color: #333;
	padding: 35px 30px 40px;
	background-color: #fff;
}

.top-sec1-ul li a:hover {
	opacity: 1;
}

.top-sec1-icon2 {
	text-align: center;
	margin-bottom: 30px;
	height: 80px;
}

.top-sec1-text2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: center;
	margin-bottom: 15px;
}

.top-sec1-link1 {
	position: absolute;
	right: 10px;
	bottom: 10px;
}

.top-sec1-box5 .top-sec1-ul {
	position: static;
	margin: 0;
}

/* トップ：sec2 */
.top-sec2 {
	background-color: #383838;
	background-image: url("../images/top-sec2_bg1.jpg");
	background-repeat: no-repeat;
	background-position: right top;
	padding: 100px 0 120px;
	-webkit-background-size: cover;
	background-size: cover;
}

.top-sec2 h2 {
	color: #fff;
}

.top-sec2 .h2-subtitle {
	color: #fff;
}

.works-list {
	margin-bottom: 60px;
}

.works-card {
	padding: 0 25px;
}

.works-new {
	position: absolute;
	top: -4px;
	left: 0;
	width: 100px;
}

.works-img1 {
	position: relative;
	margin-bottom: 30px;
}

.works-img1 img {
	width: 100%;
}

.works li .current {
	color: #888;
}

body .category {
	justify-content: flex-start;
	margin-bottom: 20px;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}

.top .category {
	margin-bottom: 10px;
}

body .category li:last-child {
	margin: 0;
}

body .category li {
	display: inline-block;
	color: var(--red);
	border: solid 1px var(--red);
	background-color: #fff;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
	padding: 3px 20px 4px;
	margin-right: 5px;
}

.works-title {
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
}

.works-text {
	font-size: 15px;
	font-weight: 400;
	color: #fff;
	width: 380px;
}

.slide-arrow {
	transition: 0.3s;
	width: 50px;
}

.slide-arrow:hover {
	opacity: 0.7;
	cursor: pointer;
	transition: 0.3s;
}

.prev-arrow {
	position: absolute;
	right: 30px;
	top: -96px;
}

.next-arrow {
	position: absolute;
	right: 100px;
	top: -96px;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	height: auto;
}


/* トップ：sec3 */
.top-sec3 {
	background-image: url("../images/top-sec3_bg1.png");
	background-repeat: no-repeat;
	background-position: left top;
	padding: 100px 0 10px;
}

.top-sec3-box1 {
	max-width: 1010px;
	margin: 0 auto 40px;
}

.interview-card {
	box-shadow: 8.6px 12.29px 25px rgba(0, 0, 0, 0.1);
	margin-bottom:50px;
}

.interview-card a {
	position: relative;
	width: 440px;
	height: 500px;
	padding: 20px;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}


.interview-card:nth-child(1) a {
	background-image: url("../images/top-sec3_img3.jpg");
}

.interview-card:nth-child(2) a {
	background-image: url("../images/top-sec3_img2.jpg");
}

.interview-card:nth-child(3) a {
	background-image: url("../images/top-sec3_img1.jpg");
}
.interview-category {
	background-color: #333;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	display: inline-block;
	padding: 5px 20px;
	border-radius: 20px;
}

.top-sec3-box2 {
	position: absolute;
	bottom: 20px;
	left: 20px;
}

.interview-title {
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	background-image: url("../images/colon1.svg");
	background-repeat: no-repeat;
	background-position: top left;
	-webkit-background-size: 17px auto;
	background-size: 17px auto;
	padding: 15px 0 0 20px;
	line-height: 1.73;
	margin-bottom: 15px;
}

.interview-info {
	color: #fff;
	padding-left: 20px;
	justify-content: flex-start;
	align-items: baseline
}

.interview-info-text1 {
	font-size: 14px;
	margin-right: 20px;
	font-weight: 400;
}

.interview-info-text2 {
	font-size: 16px;
	font-weight: 600
}
.interview-info-text3 {
	font-size: 20px;
	margin-right: 20px;
	font-weight: 400;
}

.interview-info-text2 span {
	color: var(--red);
	font-size: 12px;
	font-weight: 600;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}

/* トップ：sec4 */
.top-sec4 {
	background-image: url("../images/top-sec4_bg1.png"), url("../images/top-sec4_bg2.png");
	background-repeat: no-repeat;
	background-position: top left, bottom right;
	padding: 160px 0 130px;
}

.top-sec4 h2 {
	text-align: left;
}

.top-sec4 .h2-subtitle {
	text-align: left;
}

.commitment-box1 {
	max-width: 1090px;
	margin: 0 auto;
}

.commitment-card {
	width: 520px;
	margin-bottom: 60px;
	position: relative;
}

.commitment-img {
	position: absolute;
	left: -35px;
	top: -10px;
	width: 35%;
}

.commitment-box2 {
	padding-left: 130px;
}

.top-sec4 h3 {
	font-size: 24px;
	line-height: 1.7;
	margin-bottom: 15px;
}

.commitment-card:nth-child(4) h3 {
	margin-bottom: 5px;
}

.top-sec4 h3 span {
	font-size: 16px;
	margin-bottom: 5px;
}

/* トップ：sec5 */
.top-sec5 {
	background-color: #383838;
	background-image: url("../images/top-sec4-bg.png");
	background-repeat: no-repeat;
	background-position: right top;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 100px 0 120px;
}

.top-sec5 h2 {
	color: #fff;
}

.top-sec5 .h2-subtitle {
	color: #fff;
}

.result-box1 {
	margin-bottom: 60px;
}

.result-card {
	position: relative;
	width: 415px;
	background-color: #fff;
	padding: 45px 0 60px;
	box-shadow: 5.74px 8.19px 30px rgba(0, 0, 0, 4);
}
.result-card.pie-chart {
	padding-bottom: 330px;
}

.result-card h3 {
	line-height: 1;
	padding-left: 35px;
	margin-bottom: 20px;
	border-left: solid 5px var(--red);
	font-size: 24px;
}

.result-card h3 span {
	margin-bottom: 10px;
}

.result-card .text2 {
	padding: 0 35px;
	margin-bottom: 40px;
}

/* .result-card:nth-child(1) .text2 {
	margin-bottom: 10px;
} */

.result-img1 {
	text-align: center;
}

.pie-chart .result-img1 {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 40px;
}

/* トップ：sec6 */
.top-sec6 {
	background-image: url("../images/top-sec6_bg1.png");
	background-repeat: no-repeat;
	background-position: left top;
	padding: 100px 0 100px;
}

.blog-list {
	margin-bottom: 60px;
}

.blog-card {
	padding: 0 25px;
}

.blog-img1 {
	margin-bottom: 20px;
	box-shadow: 8.6px 12.25px 25px rgba(0, 0, 0, 0.1);
}

.top .blog-img {
	margin: 0 auto 20px;
}

.blog-img1 img {
	width: 100%;
}

.top .blog-img img{
	height: 100%;
	object-fit: cover;
}

.blog-title {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}

.blog-title a{
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}

.blog-text {
	font-size: 15px;
	font-weight: 400;
	color: #333;
}

.blog-meta {
	justify-content: flex-start;
	margin-bottom: 10px;
}

.blog-date {
	font-size: 14px;
	font-weight: 600;
	color: #808080;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	margin-right: 10px;
	line-height: 1.5;
}

.blog-new {
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	background-color: var(--red);
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	line-height: 1;
	padding: 4px 12px 4px 13px;
	border-radius: 20px
}

/* トップ：sec7 アクセス情報 */
.top-sec7 {
	padding: 0;
}
.top-sec7 h2 {
	font-size: 24px;
	margin-bottom: 20px;
}

.top-sec7-box1 {
	max-width: 1010px;
	margin: 0 auto 40px;
	justify-content: space-between;
}

.top-sec7-box1 > * {
	width: 440px;
	height: 400px;
	padding: 20px;
}

.top-sec7-text {
	margin-left: 30px;
}
.top-sec7-text a {
	color: #333;
}
.top-sec7-text.access > * {
	margin-bottom: 12px;
}

/* フッター */
.footer-contact {
	background-image: url("../images/footer-bg.jpg");
	-webkit-background-size: cover;
	background-size: cover;
	background-position: top center;
	padding: 115px 0;
}

.footer-contact .inner {
	max-width: 1100px;
	color: #fff;
}

.footer-text1 {
	font-size: 70px;
	font-weight: 600;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	line-height: 1;
	margin-bottom: 10px;
}

.footer-text2 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 35px;
}

.footer-text3 {
	line-height: 1.875;
}

.footer-box2 {
	width: 400px;
	text-align: center;
	padding-top: 20px;
}

.footer-text4 {
	letter-spacing: 0.08em;
	font-weight: bold;
}

.footer-text5 {
	letter-spacing: 0.08em;
	font-weight: 400;
	font-size: 36px;
	margin-bottom: 30px;
}

.footer-text5 a {
	color: #fff;
	display: inline;
}

.footer-text5 img {
	position: relative;
	top: -10px;
	margin-right: 5px;
}

.footer-btn1 a {
	background-color: #fff;
	letter-spacing: 0.08em;
	font-weight: bold;
	background-color: #fff;
	border-radius: 80px;
	box-shadow: 4.59px 6.55px 20px rgba(0, 0, 0, 0.2);
	padding: 28px 0;
	width: 400px;
	color: #333;
}

.footer-btn1 img {
	margin-right: 15px;
}

.footer-info {
	background-color: #333;
	color: #fff;
	padding: 106px 0 120px;
	position: relative;
}

.footer-box3 {
	width: 485px;
}

.footer-logo {
	margin-bottom: 35px;
}

.footer-text6 {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}

.footer-text7 {
	font-size: 14px;
	letter-spacing: 0.08em;
	font-weight: 400;
	/* background-image: url("../images/footer-img1.png");
	background-repeat: no-repeat;
	background-position: top right; */
	height: 80px;
	margin-bottom: 50px;
	line-height: 1.8;
}

.footer-text7 span {
	padding-left: 87px;
}

.footer-text7 a {
	color: #fff;
	display: inline;
	transition: 0;
}

.footer-text8 {
	font-size: 13px;
	margin-bottom: 25px;
	line-height: 1.92;
}

.footer-box4 {
	padding: 30px 40px 0 0;
	letter-spacing: 0.08em;
}

.footer-nav {
	margin-bottom: 100px;
}

.footer-nav a {
	color: #E6E6E6;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 17px;
}

.footer-nav p {
	margin-bottom: 10px;
}

.footer-nav_row1 {
	width: 97px;
}

.footer-nav_row2 {
	width: 255px;
}

.footer-nav_row3 {
	width: 179px;
}

.footer-subnav {
	margin-bottom: 20px;
}

.footer-subnav li {
	margin-bottom: 10px;
}

.footer-subnav li a {
	font-size: 14px;
	font-weight: 400;
}

.footer-nav p.footer-nav4,
.footer-nav p.footer-nav6 {
	margin-bottom: 30px;
}

.footer-text9 {
	color: #fff;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-size: 15px;
	position: relative;
	display: block;
	margin-bottom: 30px;
}

.footer-text9:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: calc(100% - 120px);
	height: 1px;
	background-color: #6F6F6F;
	right: 0%;
}

.footer-banner li {
	width: 200px;
	text-align: center;
}

.footer-banner li a {
	background-color: #fff;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #333;
	font-weight: bold;
}

.footer-bar {
	background-color: #2E2E2E;
}

.footer-inner {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	padding: 16px 0;
}

.copyright {
	text-align: center;
	color: #E6E6E6;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-size: 12px;
}

.footer-btn {
	position: absolute;
	right: 0;
	top: 10px;
}

.footer-btn a {
	display: inline-block;
	font-size: 13px;
	color: #E6E6E6;
	font-weight: 600;
	line-height: 1;
}

.pagetop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 2;
	background-color: rgba(51,51,51,0.3);
	border-radius: 50%;
	padding: 2px;
}

/* WORKS詳細 */
article {
	padding: 150px 0;
}

.detail h1 {
	text-align: center;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 40px;
}

.works.detail .categories {
	margin-left: 100px;
}

.works.detail h2 {
	margin-left: 100px;
}

.works .category {
	font-weight: bold;
	color: var(--red);
	border: solid 1px var(--red);
	display: inline-block;
	padding: 5px 26px;
	border-radius: 80px;
	background-color: #fff;
	/* margin-top: 50px; */
	margin-bottom: 15px;
}

.detail h2 {
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 40px;
	text-align: left;
	/* margin-left: 100px; */
}

.workd-img1 {
	text-align: center;
	background: rgb(51, 51, 51);
	background: -webkit-linear-gradient(bottom, rgba(51, 51, 51, 1) 80%, rgba(51, 51, 51, 0) 80%);
	background: -o-linear-gradient(bottom, rgba(51, 51, 51, 1) 80%, rgba(51, 51, 51, 0) 80%);
	background: linear-gradient(to top, rgba(51, 51, 51, 1) 80%, rgba(51, 51, 51, 0) 80%);
	padding: 0 0 100px 0;
	margin: 0 0 100px 0;
}

.workd-img1 img {
	box-shadow: 8.6px 12.29px 50px rgba(0, 0, 0, 0.4);
	width: 900px;
}

.works-article {
	max-width: 1100px;
	margin: 0 auto 80px;
}

.works-info {
	border-top: solid 1px #E6E6E6;
	border-bottom: solid 1px #E6E6E6;
	padding: 40px 0;
}

.works-info li {
	width: 49.9%;
	width: calc(50% - 41px);
	border-right: solid 1px #E6E6E6;
	padding: 0 40px 40px 0;
	display: flex;
	align-items: flex-start;
}

.works-info li:nth-child(n+3) {
	padding-bottom: 0;
}

.works-info li:nth-child(even) {
	padding-right: 0;
	padding-left: 40px;
	border: none;
}

.works-info li span {
	background-color: #E6E6E6;
	font-weight: bold;
	font-size: 15px;
	letter-spacing: 0.08em;
	line-height: 1;
	padding: 7px 15px 8px;
	min-width: 80px;
	display: inline-block;
	text-align: center;
	border-radius: 80px;
	margin-right: 20px;
}

.detail h3 {
	background-image: url("../images/detail-icon1.svg");
	background-repeat: no-repeat;
	background-position: 0 50%;
	padding-left: 30px;
	font-size: 24px;
	line-height: 1.25;
	margin: 80px 0 35px;
	font-weight: bold;
}

.detail-text {
	font-size: 16px;
	line-height: 1.875;
	margin-bottom: 30px;
}

.works-box1 {
	margin: 80px 0;
}

.works-box2 {
	width: 550px;
}

.works-box1 h3:first-child {
	margin: 0 0 35px;
}

.works-img2 {
	width: 460px;
}

.works-img2 img {
	box-shadow: 8.6px 12.29px 50px rgba(0, 0, 0, 0.1);
}

.works-box3 {
	height: 350px;
	background-image: url("../images/works33-2.jpg");
	-webkit-background-size: cover;
	background-size: cover;
}

.works-box3 .inner {
	background-color: rgba(0, 0, 0, 0.6);
	height: 100%;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
}

.works-text1 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 40px;
}

.works-text2 {
	margin-bottom: 25px;
}

.works-link1 a {
	color: #fff;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}

.works-link1 img {
	margin: 0 0 -3px 5px;
}

.btn1 {
	text-align: center;
}

.btn1 a {
	text-align: center;
	width: 300px;
	height: 70px;
	line-height: 70px;
	margin: 0 auto;
	border-radius: 80px;
	background: rgb(185, 3, 5);
	background: url("../images/arrow3.svg"), -webkit-linear-gradient(297deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
	background: url("../images/arrow3.svg"), -o-linear-gradient(297deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
	background: url("../images/arrow3.svg"), linear-gradient(27deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
	color: #fff;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-weight: 600;
	box-shadow: 4.59px 6.55px 20px rgba(0, 0, 0, 0.2);
	background-position: 88% 48%;
	background-repeat: no-repeat;
}

.btn1 img {
	position: relative;
	top: -30px;
	margin-right: 15px;
}

.works-btn a {
	background: -webkit-linear-gradient(297deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
	background: -o-linear-gradient(297deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
	background: linear-gradient(27deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
}

.flexSeparate {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}
.flexgap20 {
	gap: 20px;
}
.flexleft {
	flex: 2;
}
.flexright {
	flex: 1;
}
.flexright > * {
	margin-bottom: 5%;
}

/* WORKS一覧 */
.under h1 {
	text-align: center;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-size: 100px;
	font-weight: 600;
	margin: 150px 0 10px;
	line-height: 1;
}

.under.detail h1 {
	margin: 0 0 10px;
	font-size: 40px;
}

.under .h1-subtitle {
	text-align: center;
	font-size: 30px;
	margin-bottom: 120px;
	font-weight: 600;
}

.category-text1 {
	text-align: center;
	color: var(--red);
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 25px;
}

.category-list {
	justify-content: center;
	margin-bottom: 80px;
}

.category-list li {
	margin-right: 10px;
}

.category-list li a {
	background-color: #fff;
	border-radius: 10rem;
	font-weight: 600;
	width: 120px;
	text-align: center;
	padding: 3px 0 4px;
	border: solid 1px #E6E6E6;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	color: #333;
}

.category-list li:last-child {
	margin: 0;
}

.category-list li.current a {
	background-color: var(--red);
	color: #fff;
	border: solid 1px var(--red);
}

.works-sec1 {
	background-image: url("../images/works-bg.svg");
	background-position: top center;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 120px 0 150px;
	background-color: #333;
}

.works .works-list {
	margin-bottom: 30px;
}

.works .works-card {
	width: 590px;
	padding: 0;
	margin-bottom: 90px;
}

.works .works-img {
	margin-bottom: 40px;
}

.works-sec1 .category {
	font-size: 14px;
	padding: 2px 19px;
	margin-bottom: 10px;
	margin-right: 5px;
}

.works-sec1 .works-title {
	font-size: 24px;
}

.works-sec1 .text2 {
	color: #fff;
}

.works .works-card .flexbox {
	justify-content: flex-start;
}

.pagination {
	justify-content: center;
	align-items: center;
}

.pagination li {
	color: #fff;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 35px;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-size: 20px;
	font-weight: 600;
	margin: 0 5px;
}

.pagination li a {
	color: #fff;
}

.pagination li.current {
	background-color: #fff;
	color: #333;
	border-radius: 50%;
}

.pagination li.pagination-prev {
	margin-right: 40px;
}

.pagination li.pagination-next {
	margin-left: 40px;
}

.page1 .pagination li.pagination-prev .current,
.page1 .pagination li.pagination-next .current {
	opacity: 0.3;
}

.pagination .empty {
	color: #fff;
	/* font-size: 20px; */
}

/* COMPANY */
.company {
	background-image: url("../images/top-sec4_bg1.png");
	background-repeat: no-repeat;
	background-position: 0 2120px;
}

.under-main {
	-webkit-background-size: cover;
	background-size: cover;
	height: 500px;
	margin-bottom: 20px;
}

.company .under-main {
	background-image: url("../images/company-main.jpg");
}

.under-nav {
	background-image: url("../images/under-img1.svg"), url("../images/under-main_img1.png");
	background-repeat: no-repeat;
	-webkit-background-size: 13px auto, 38vw auto;
	background-size: 13px auto, 41vw auto;
	background-position: 6.3vw 6.9vw, 0 0;
	height: 827px;
	padding: 6.3vw 0 0 9vw;
}

.under-nav li {
	margin-bottom: 25px;
}

.under-nav a {
	color: #fff;
	display: inline-block;
	background-image: url("../images/arrow10.svg");
	background-repeat: no-repeat;
	background-position: 100% 50%;
	padding-right: 17px;
}

.company h2 {
	font-size: 60px;
}

.company .h2-subtitle {
	margin-bottom: 70px;
}

.company-sec1-img1 img {
	box-shadow: 8.6px 12.29px 25px rgba(0, 0, 0, 0.1);
	width: 400px;
	margin-left: 150px;
	margin-top: 50px;
}

.company-sec1-box2 {
	width: 630px;
	font-size: 15px;
}

.company-sec1 h3 {
	line-height: 1.5;
	background-image: url("../images/colon1.svg"), url("../images/colon2.svg");
	background-position: top left, bottom right;
	background-repeat: no-repeat;
	display: inline-block;
	padding: 11px 34px 0 34px;
	margin: 0 0 40px -34px;
	font-size: 30px
}

.company-sec1 .text2 {
	margin-bottom: 30px;
}

.company-img2 {
	font-size: 15px;
	font-weight: 400;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.company-img2 img {
	margin-left: 20px;
	width: 150px;
}

.company-sec2 {
	background-image: url("../images/top-sec4_bg2.png");
	background-repeat: no-repeat;
	background-position: bottom right;
}

.company-sec2 h3 {
	font-size: 24px;
	margin-bottom: 20px;
	line-height: 1.6;
}

.company-sec3 {
	background-color: #383838;
	background-image: url(../images/company-sec2_bg.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 120px 0 90px;
}

.company-sec3 h2 {
	color: #fff;
}

.company-sec3 .h2-subtitle {
	color: #fff;
}

.company-sec3 .result-box1 {
	justify-content: center;
	margin-bottom: 0;
}

.company-sec3 .result-card {
	width: 620px;
	margin: 0 40px 40px 0;
}

.company-sec3 .result-card:nth-child(odd) {
	margin: 0 0 40px 0;
}

.company-sec3 .result-card:nth-child(1) {
	margin: 0 330px 40px;
}

.company-sec3 .result-card .text2 {
	margin-bottom: 50px;
}

.company-sec3-text1 {
	text-align: right;
	color: #fff;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-size: 15px;
	margin-top: -30px;
}

.company-sec4 {
	background-image: url("../images/company-sec3_bg.png");
	background-repeat: no-repeat;
	-webkit-background-size: 42.6vw auto;
	/* background-size: 42.6vw auto; */
	background-size: 28.0vw auto;
	padding: 100px 0 50px;
}

.company-sec4-img1 {
	margin-left: 60px;
	width: 600px;
}

.company-sec4-img1 img {
	box-shadow: 8.6px 12.29px 25px rgba(0, 0, 0, 0.1);
}

.company-sec4-box2 {
	width: 560px;
}

.company-sec4 h3 {
	font-size: 35px;
	line-height: 1.5;
	margin-bottom: 30px;
	margin-top: 20px;
}

.company-sec4 .text2 {
	margin-bottom: 30px;
}

.company-sec5 {
	padding: 100px 0 150px;
}

.company-sec5 table {
	width: 800px;
	margin: 0 auto 120px;
}

.company-sec5 th {
	font-weight: bold;
	border-bottom: solid 1px var(--red);
	width: 90px;
	padding: 25px 0 25px 10px;
}

.company-sec5 td {
	border-bottom: solid 1px #E6E6E6;
	padding: 25px 0 25px 107px;
}

.company-sec5 td a {
	color: var(--red);
	font-weight: 600;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}

.company-sec5 td ul {
	margin-bottom: 15px;
}

.company-sec5 td ul li {
	line-height: 2;
}

.company .map {
	margin-bottom: 50px;
}

.company .map iframe {
	width: 100%;
	height: 480px;
}

.company-sec5-box1 {
	max-width: 550px;
	margin: 0 auto;
	align-items: center;
}

.company-sec5-text1 {
	color: var(--red);
	font-weight: 600;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-size: 18px;
}

.company-sec5-text2 {
	line-height: 2.19;
}

.privacy-mark {
	padding-left: 15px;
}

.privacy-mark img {
	width: 60px;
}

/* RECRUIT */
.recruit .under-main {
	background-image: url("../images/recruit-main.jpg");
}

.recruit h2 {
	font-size: 60px;
}

.recruit-sec1 h2 {
	font-size: 40px;
	font-weight: bold;
	line-height: 2;
	margin-bottom: 80px;
	letter-spacing: 0.08em;
	font-family: 'Noto Sans JP';
}

.recruit-sec1 h2 span {
	background-color: #333;
	color: #fff;
	font-weight: bold;
	padding: 3px 11px;
}

.recruit-sec1-img1 {
	text-align: center;
}

.recruit-sec1-text1 {
	max-width: 760px;
	margin: 0 auto 75px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.94;
	letter-spacing: 0.05em;
}

.recruit-sec1-text1 span {
	color: #fff;
	font-weight: 600;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	padding: 4px 7px;
	margin: 0 5px;
}

.recruit-sec1-text1 .span1 {
	background-color: #333;
}

.recruit-sec1-text1 .span2 {
	background-color: var(--red);
}

.recruit-sec1 li {
	width: 400px;
	border-bottom: solid 1px #333;
	padding-bottom: 30px;
	text-align: center;
}

.recruit-sec1-text2 {
	color: #fff;
	font-weight: 600;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-size: 100px;
	line-height: 1;
}

.recruit-sec1-text3 {
	font-weight: bold;
	font-size: 18px;
}

.recruit-sec2 {
	background-image: url("../images/recruit-sec2-bg.svg");
	-webkit-background-size: cover;
	background-size: cover;
	background-position: top left;
	padding: 100px 0 95px;
	background-color: #333;
}

.recruit-sec2 h2 {
	font-size: 40px;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 50px;
	letter-spacing: 0.08em;
	color: #fff;
	font-family: 'Noto Sans JP';
}

.recruit-sec2-box2 {
	background-color: #fff;
	padding: 40px;
	width: 330px;
	text-align: center;
	margin-bottom: 25px;
}

.recruit-sec2 h3 {
	font-size: 24px;
	margin-bottom: 20px;
}

.recruit-sec2 h3 span {
	font-size: 16px;
}

.recruit-sec2 .text2 {
	text-align: left;
}

.recruit-sec2-text1 {
	margin: 50px 0 45px;
	color: #fff;
	text-align: center;
	font-size: 30px;
}

.recruit-sec2-text1 span {
	font-weight: bold;
	position: relative;
	border-bottom: solid 2px #fff;
	padding-bottom: 15px;
	display: inline-block;
}

.recruit-sec2-text1 span:before {
	content: "";
	position: absolute;
	bottom: -24px;
	left: 50%;
	margin-left: -15px;
	border: 12px solid transparent;
	border-top: 12px solid #333;
	z-index: 2;
}

.recruit-sec2-text1 span:after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 50%;
	margin-left: -17px;
	border: 14px solid transparent;
	border-top: 14px solid #fff;
	z-index: 1;
}

.recruit-sec2-text2 {
	font-size: 30px;
	font-weight: 700;
	margin: 15px 0 20px;
}

.recruit-sec2-img1 img{
    text-align: center;
	height: 180px;
}

.recruit-sec2-img2 img{
    text-align: center;
	height: 100px;	
}

.recruit-sec3 {
	background-image: url("../images/recruit-sec3_bg.png");
	background-repeat: no-repeat;
}

.recruit-sec3 dl {
	background-color: #fff;
	box-shadow: 8.6px 12.29px 25px rgba(0, 0, 0, 0.1);
	position: relative;
	margin-bottom: 60px;
}

.recruit-sec3 dl:last-child {
	margin-bottom: 0;
}

.recruit dt {
	padding: 50px;
}

.recruit dt:hover {
	cursor: pointer;
}

.recruit-sec3-box1 {
	align-items: center;
}

.recruit-sec3-box2 {
	width: 700px;
}

.recruit-sec3-text1 {
	font-size: 14px;
	margin-bottom: 10px;
}

.recruit-sec3-text1 span {
	border: solid 1px #333;
	padding: 4px 11px;
	border-radius: 50px;
	margin-right: 10px;
}

.recruit-sec3 h4 {
	font-size: 30px;
	font-weight: bold;
	/* margin-bottom: 60px; */
}

.recruit-sec3 h4 span {
	color: var(--red);
	font-weight: 600;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-size: 16px;
	margin-left: 15px;
}

.recruit-sec3-text2 {
	background-image: url("../images/colon1.svg"), url("../images/colon2.svg");
	background-position: top left, bottom right;
	background-repeat: no-repeat;
	background-size: 0.8rem;
	display: inline-block;
	padding: 0 24px 0 24px;
	/* padding-right: 80px; */
	font-size: 24px;
	font-weight: bold;
}
/* .recruit-sec3-text2:before, .recruit-sec3-text2:after{
	content: "“";
} */

.recruit-sec3 dd {
	display: none;
	padding: 50px 100px;
}

.recruit-sec3 h5 {
	background-image: url("../images/recruit-sec3_icon.svg");
	background-repeat: no-repeat;
	background-position: 0 50%;
	padding-left: 30px;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

.recruit-sec3 .text2 {
	margin-bottom: 50px;
}

.recruit-sec3-img2 {
	margin-right: -100px;
}

.recruit-sec3-img3 {
	margin-left: -100px;
}

.recruit-sec3-btn1,
.recruit-sec3-btn2 {
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.recruit-sec3-btn1:hover,
.recruit-sec3-btn2:hover {
	opacity: 0.7;
	cursor: pointer;
}

.recruit-sec3-btn1:before {
	content: "Read more";
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-weight: 600;
	position: relative;
	top: -3px;
	left: -10px;
}

.recruit-sec3-btn2:before {
	content: "Close";
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-weight: 600;
	position: relative;
	top: -3px;
	left: -10px;
}

.recruit-sec3 dt.open .recruit-sec3-btn1 {
	display: none;
}

.recruit-sec4-text1 {
	text-align: center;
	margin-bottom: 50px;
}

.recruit-sec4 dl {
	margin-bottom: 50px;
	box-shadow: 8.6px 12.29px 25px rgba(0, 0, 0, 0.1);
}

.recruit-sec4 dl:nth-child(1) dd {
	display: block;
}

.recruit-sec4 dt {
	background-color: #333;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	padding: 30px 0 30px 40px;
	background-image: url("../images/arrow5.svg");
	background-repeat: no-repeat;
	background-position: 98% 50%;
}

.recruit-sec4 dt.open {
	background-image: url("../images/arrow4.svg");
}

.recruit-sec4 dd {
	display: none;
	background-color: #fff;
}

.recruit-sec4 table {
	width: 100%;
}

.recruit-sec4 th {
	padding: 50px 0 50px 100px;
	font-size: 18px;
	font-weight: bold;
	width: 295px;
	border-bottom: solid 1px #E6E6E6;
}

.recruit-sec4 td {
	padding: 50px 0;
	border-bottom: solid 1px #E6E6E6;
}

.recruit-sec4 .text2 {
	margin-bottom: 30px;
}

.recruit-sec4 td .text2:last-child {
	margin-bottom: 0;
}

.recruit-sec4-text2 {
	font-weight: bold;
	background-image: url("../images/recruit-sec4_icon.svg");
	background-repeat: no-repeat;
	background-position: 0 50%;
	padding-left: 15px;
}

.recruit-sec4 tr:nth-child(3) .recruit-sec4-text2 {
	background: none;
	padding: 0;
}

.recruit-sec4 ul {
	margin-bottom: 30px;
}

.recruit-sec4 td ul:last-child {
	margin-bottom: 0;
}

.recruit-sec4-text3 {
	font-weight: bold;
	color: var(--red);
}

.recruit-sec5 {
	background-image: url("../images/recruit-sec4_bg.png");
	background-repeat: no-repeat;
	background-position: 100% 101%;
}

.recruit-sec5 dl {
	max-width: 1000px;
	margin: 0 auto;
	border-bottom: solid 1px #E6E6E6;
	transition: 0.3s;
}

.recruit-sec5 dl:has(dt.open) {
	background-color: #fff;
}

.recruit-sec5 dt {
	font-size: 18px;
	font-weight: bold;
	padding: 30px 0 30px 65px;
	background-image: url("../images/recruit-sec4_icon2.svg"), url("../images/arrow5.svg");
	background-repeat: no-repeat;
	background-position: 30px 50%, 98% 50%;
}

.recruit-sec5 dt.open {
	background-image: url("../images/recruit-sec4_icon2.svg"), url("../images/arrow4.svg");
}

.recruit-sec5 dd {
	display: none;
	padding: 0 95px 30px 65px;
}

.recruit-sec6 {
	background-image: url("../images/recruit-sec6_bg.jpg");
	background-size: cover;
	background-position: top center;
}

.recruit-sec6 h2 {
	color: #fff;
}

.recruit-sec6 .h2-subtitle {
	color: #fff;
}

.recruit-sec6 a {
	color: #fff;
	text-decoration: underline;
}

.recruit .form table .radio {
	padding: 15px 0 0 0;
}

.recruit form .recruit-error {
	padding-top: 4px;
	/* color: var(--red); */
}

.recruit form .checkbox th .required {
	top: 50px;
}

.recruit form .checkbox td {
	padding: 45px 0 35px 20px;
	vertical-align: middle;
}

.form table {
	table-layout: fixed;
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
}

.form table th {
	width: 220px;
	padding: 35px 0;
	font-size: 18px;
	font-weight: 600;
	vertical-align: top;
	position: relative;
	color: #fff;
}

form .required {
	position: absolute;
	right: 20px;
	font-size: 14px;
	font-weight: bold;
	background-color: #fff;
	border-radius: 50px;
	color: var(--red);
	padding: 3px 10px;
}

.form table td {
	padding: 20px 0;
	font-size: 16px;
	color: #fff;
}

.form table td.radio {
	padding: 35px 0;
}

.form table input[type="text"],
.form table input[type="tel"],
.form table input[type="email"],
.form table select,
.form table textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 93%;
	width: calc(100% - 60px);
	padding: 15px 30px;
	font-size: 16px;
	border: none;
	border-radius: 3px;
}

.form table input.age {
	width: 60px;
	margin-right: 10px;
}


.recruit_confirm table td {
	padding: 35px 0;
}

.ECM_RadioInput {
	display: flex;
	align-items: center;
	cursor: pointer;
	justify-content: flex-start;
}

.ECM_RadioInput.job1 {
	margin-right: 80px;
}

.ECM_RadioInput-Input {
	opacity: 0;
	width: 0;
	margin: 0;
}

.ECM_RadioInput-Input:focus + .ECM_RadioInput-DummyInput {
	border: solid 1px var(--red);
	background: #fff;
}

.ECM_RadioInput-Input:checked + .ECM_RadioInput-DummyInput {
	border: solid 1px var(--red);
}

.ECM_RadioInput-Input:checked + .ECM_RadioInput-DummyInput::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--red);
}

.ECM_RadioInput-DummyInput {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	border: solid 1px #333;
}

.ECM_RadioInput-LabelText {
	margin-left: 10px;
	display: block;
	font-size: 16px;
	font-weight: 500;
}

.radio {
	display: flex;
	justify-content: flex-start;
}

.form-btn {
	max-width: 310px;
	margin: 80px auto 0;
	cursor: pointer;
	/* text-align: center; */
}

.form-btn input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	width: 350px;
	border-radius: 100px;
	background-color: #D2D9D5;
	text-align: center;
	width: 300px;
	height: 70px;
	line-height: 70px;
	margin: 0 auto;
	border-radius: 80px;
	background: rgb(185, 3, 5);
	background: -webkit-linear-gradient(297deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
	background: -o-linear-gradient(297deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
	background: linear-gradient(27deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
	color: #fff;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-weight: 600;
	box-shadow: 4.59px 6.55px 20px rgba(0, 0, 0, 0.2);
	transition: 0.3s;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}

.form-btn input:hover {
	cursor: pointer;
	opacity: 0.7;
}

.form-btn .disabled {
	cursor: not-allowed;
}
.form-btn input {
	pointer-events: unset;
}
.form-btn .disabled input {
	pointer-events: none;
	background: linear-gradient(27deg, rgba(185, 3, 5, 0.4) 0%, rgba(216, 12, 26, 0.4) 100%);
	color: #CCCCCC;
}

.ECM_CheckboxInput .required {
	margin: 0 0 0 0.1rem;
	padding: 0.05rem;
}

form textarea {
	width: 93%;
	width: calc(100% - 0.4rem);
	padding: 0.22rem 0.2rem;
	font-size: .16rem;
	border: none;
	border-radius: 0.05rem;
	line-height: 1.2;
}

::placeholder {
	color: #ccc;
}

/* SERVICE */
.service .under-main {
	background-image: url("../images/service-main.jpg");
}

.service-sec1 {
	/*margin-top: -100px;*/
	padding: 100px 0 260px;
}

.service-sec1-box1 {
	background-image: url("../images/service-sec1-bg.png");
	background-repeat: no-repeat;
	background-position: 0 25px;
	margin-bottom: 60px;
}

.service-sec1 h2 {
	text-align: left;
	font-size: 40px;
	font-weight: bold;
	padding: 130px 0 0 100px;
	line-height: 1.5;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}

.service-sec1 h2 span {
	font-size: 44px;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-weight: 600;
}

.service-sec1-box2 {
	width: 630px;
}

.service-sec1-box2 .text2 {
	margin-bottom: 30px;
}

.service-sec1-card {
	align-items: center;
	margin: -75px 0 60px;
	padding-top: 75px;
}

.service-sec1 dl {
	width: 640px;
	background-repeat: no-repeat;
	background-position: 0 150px;
}

.service-sec1-card:nth-child(2) dl {
	background-image: url("../images/no01.svg");
}

.service-sec1-card:nth-child(3) dl {
	background-image: url("../images/no02.svg");
}

.service-sec1-card:nth-child(4) dl {
	background-image: url("../images/no03.svg");
}

.service-sec1-card:nth-child(5) dl {
	background-image: url("../images/no04.svg");
}

.service-sec1-card:nth-child(6) dl {
	background-image: url("../images/no05.svg");
}

.service-sec1-card:nth-child(7) dl {
	background-image: url("../images/no06.svg");
}

.service-sec1 dt {
	text-align: center;
}

.service-sec1-text1 {
	font-size: 24px;
	font-weight: bold;
	margin: -30px 0 60px;
}

.service-sec1-card .text2 {
	margin-bottom: 60px;
}


.service-sec1-img2 {
	width: 610px;
}

.service-sec2 {
	background-image: url("../images/service-sec2-bg.svg");
	-webkit-background-size: cover;
	background-size: cover;
	padding: 100px 0 95px;
}

.service-sec2 h2 {
	color: #fff;
	font-size: 60px;
}

.service-sec2 .h2-subtitle {
	color: #fff;
}

.service-sec2-card {
	background-color: #fff;
	max-width: 960px;
	margin: 0 auto 55px;
	padding: 60px 60px;
	align-items: center;
	position: relative;
}

.service-sec2-card:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -24px;
	border: 24px solid transparent;
	border-top: 24px solid #fff;
}

.service-sec2-card:last-child:before {
	display: none;
}

.service-sec2-box1 {
	width: 250px;
	text-align: center;
}

.service-sec2-box2 {
	width: 660px;
}

.service-sec2-text1 {
	font-size: 24px;
	font-weight: bold;
	margin-top: 15px;
}

.service-sec2-no {
	position: absolute;
	left: -20px;
	top: -20px;
	background-color: var(--red);
	color: #fff;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-size: 26px;
	font-weight: 600;
}

.service-sec2 .text2:nth-child(2) {
	margin-top: 30px;
}

/* INTERVIEW：一覧 */
.interview-sec1 {
	padding: 0 0 70px;
}

.interview .interview-card {
	background-color: #fff;
	margin-bottom: 80px;
	width: 600px;
}

.interview .interview-card a {
	background: none !important;
	padding: 0;
	width: 100%;
	height: auto;
	color: #333;
	position: relative;
}

.interview-box1 {
	padding: 40px 60px;
}

.interview .interview-category {
	margin-bottom: 15px;
}

.interview .interview-title {
	color: #333;
	margin-left: -25px;
	padding: 0 0 0 25px;
	-webkit-background-size: 20px auto;
	background-size: 20px auto;
	font-size: 24px;
	margin-bottom: 30px;
}

.interview .interview-info-text1 {
	margin-bottom: 5px;
}

.interview .interview-info-text2 span {
	margin-left: 20px;
}

/* INTERVIEW：詳細 */
.interview.detail h1 {
	margin-bottom: 40px;
}

.center {
	text-align: center;
}

.interview.detail .interview-category {
	margin-bottom: 30px;
}

.interview.detail h2 {
	width: 700px;
	margin: 0 auto 60px;
	font-family: 'Noto Sans JP';
	font-weight: 600;
	line-height: 1.5;
	font-size: 40px;
	background-image: url(../images/colon1.svg);
	background-repeat: no-repeat;
	background-position: top left;
	-webkit-background-size: 44px 38px;
	background-size: 44px 38px;
	padding: 18px 0 0 50px;
}

.interview-new{
	position: absolute;
	top:-32px;
	left:0px;
}
.interview-article {
	max-width: 1100px;
	margin: 0 auto;
}

.interview-article h3:first-child {
	margin-top: 0;
}

.interview-detail-box2 {
	width: 720px;
}

.interview-category2 {
	justify-content: flex-end;
	margin: 20px 0 50px;
}

.interview-category2 li {
	margin-left: 5px;
}

.interview-category2 a {
	background-color: #fff;
	color: #808080;
	font-size: 14px;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	border-radius: 100px;
	border: solid 1px #E6E6E6;
	padding: 2px 15px;
}

.interview-detail-img3 {
	text-align: center;
	margin: 80px 0 60px;
}

.interview-detail-img3 img {
	box-shadow: 8.6px 12.29px 25px rgba(0, 0, 0, 0.1);
	width: 80%;
}

.btn2 {
	text-align: center;
	margin: 80px 0 110px;
}

.btn2 a {
	background-color: #333;
	font-size: 16px;
	color: #fff;
	width: 300px;
	margin: 0 auto;
	padding: 21px 0 22px;
	border-radius: 100px;
	background-image: url("../images/icon-link.svg");
	background-repeat: no-repeat;
	background-position: 93% 50%;
	box-shadow: 4.59px 6.55px 20px rgba(0, 0, 0, 0.2);
}

.interview-detail-app {
	background-color: #fff;
	border-radius: 10px;
	border: solid 1px #E6E6E6;
	max-width: 640px;
	margin: 0 auto 150px;
	padding: 60px 80px;
	position: relative;
}

.interview-detail-img4 {
	margin-right: 25px;
	width: 100px;
}

.interview-detail-img4 img {
	box-shadow: 8.6px 12.29px 25px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.interview-detail-box3 {
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 50px;
}

.interview-detail-text1 {
	font-weight: bold;
	font-size: 30px;
	line-height: 1.2;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}

.interview-detail-text1 span {
	font-weight: bold;
	font-size: 20px;
	font-family: 'Noto Sans JP', sans-serif;
}

.interview-detail-box4 {
	justify-content: flex-start;
}

.interview-detail-img5 {
	/* margin-left: 126px; */
	margin-right: 20px;
}

.interview-detail-img7 {
	position: absolute;
	top: -30px;
	right: 95px;
	width: 200px;
}

.interview-detail-box5 {
	position: relative;
}

.interview-detail-box5 .interview-info {
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #F7F7F7;
	padding: 50px 65px 25px;
}

.interview-detail-box5 .interview-info-text1 {
	color: #333;
	margin: 0;
}

.interview-detail-box5 .interview-info-text2 {
	color: #333;
	font-size: 30px;
}

.interview-detail-box5 .interview-info-text3 {
	color: #333;
	margin: 0;
}


.interview-detail-box5 .interview-info-text2 .span1 {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin: 0;
}

.interview-detail-box5 .interview-info-text2 .span2 {
	font-size: 16px;
}

/* BLOG：一覧 */
.blog-sec1 {
	padding: 0 0 150px;
}

.blog .blog-list {
	margin-bottom: 30px;
}

.blog .blog-card {
	width: 530px;
	padding: 0;
	margin-bottom: 90px;
}

.blog .blog-img {
	margin-bottom: 40px;
	height: 400px;
}

.blog .blog-img img {
	height: 400px;
	object-fit: cover;
	box-shadow: 8.6px 12.29px 25px rgba(0, 0, 0, 0.1);
}

.blog-sec1 .category {
	font-size: 14px;
	padding: 2px 19px;
	margin: 0 10px 0 0;
	display: inline-block;
	color: var(--red);
	border: solid 1px var(--red);
	background-color: #fff;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
}

.blog-sec1 .blog-title {
	font-size: 24px;
}

.blog-sec1 .text2 {
	color: #333;
}

.blog .blog-meta {
	justify-content: flex-start;
	align-items: center;
}

.blog-meta li {
	margin-right: 10px;
}

.blog-meta li.new {
	background-color: var(--red);
	color: #fff;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-size: 12px;
	font-weight: 600;
	padding: 0 12px;
	border-radius: 100px;
}

.blog .pagination li.current {
	background-color: #333;
	color: #fff;
}

.blog .pagination li {
	color: #333;
}

.blog .pagination li a {
	color: #333;
}

/* BLOG：詳細 */
.blog.detail article {
	position: relative;
	padding: 50px 0 120px;
	/* padding: 150px 0 120px; */
}

.blog article .category {
	margin: 0;
}

.blog article h2 {
	line-height: 1.5;
}

.blog-article {
	/* max-width: 1100px; */
	max-width: 960px;
	margin: 0 auto;
}

.blog article .blog-img1 {
	margin-bottom: 100px;
}

.blog .chart {
	background-color: #fff;
	padding: 40px;
	width: 470px;
	margin: 50px 0 80px;
	border: solid 1px #E6E6E6;
}

.chart-title {
	font-size: 20px;
	font-weight: bold;
	background-image: url("../images/icon-list.svg");
	background-repeat: no-repeat;
	background-position: 0 50%;
	padding-left: 40px;
	margin-bottom: 30px;
}

.blog .chart ul {
	padding-left: 40px;
}

.chart-text1 a {
	color: #333;
	font-weight: bold;
	background-image: url("../images/recruit-sec4_icon.svg");
	background-repeat: no-repeat;
	background-position: 0 50%;
	padding-left: 20px;
}

.blog .chart ul.chart-sub {
	padding-left: 20px;
	margin: 15px 0 30px;
}

.blog .chart ul.chart-sub li {
	margin-bottom: 10px;
}

.blog .chart ul.chart-sub a {
	color: #333;
	font-size: 15px;
}

.detail-link {
	display: inline;
	color: var(--red);
	text-decoration: underline;
}

.blog-img2 {
	text-align: center;
	margin: 60px 0;
}

article h4 {
	font-size: 18px;
	font-weight: bold;
	border-bottom: solid 1px #333;
	padding-bottom: 5px;
	margin: 60px 0 20px;
	width: fit-content;
}

article .share {
	background-color: #F2F2F2;
	max-width: 1100px;
	margin: 100px auto;
	text-align: center;
	padding: 40px 0;
}

.share-text1 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 30px;
}

.share-text1 img {
	position: relative;
	top: -5px;
	margin-right: 7px;
}

article .share .flexbox {
	justify-content: center;
}

article .share li {
	margin-right: 40px;
}

article .share li:last-child {
	margin-right: 0;
}

.blog-pagination {
	width: 1100px;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 135px;
}

.blog-others {
	margin-bottom: 150px;
}

.blog-others h3 {
	background: none;
	padding-left: 0;
	position: relative;
	line-height: 1.5;
	margin: 0 0 50px;
}

.blog-others h3:after {
	content: '';
	position: absolute;
	top: 80%;
	right: 0;
	display: inline-block;
	width: calc(100% - 180px);
	height: 1px;
	background-color: black;
}

.blog-others .blog-list {
	margin: 0;
}

.blog-others .blog-card {
	width: 380px;
	margin: 0;
}

.blog-others .category {
	margin: 0;
}

.blog-others .category li {
	padding: 3px 16px 1px;
	min-width: 38px;
	text-align: center;
}

/* CONTACT */
.contact.under .h1-subtitle {
	margin-bottom: 15px;
}

.contact-sec1 {
	padding: 0 0 150px;
}

.contact-flow {
	max-width: 400px;
	margin: 0 auto 50px;
	position: relative;
	}
.contact-flow p{
	text-align: center;
	width: 80px;
	height: 80px;
	line-height: 80px;
	background-color: #E6E6E6;
	color: #fff;
	border-radius: 50%
}
.contact-flow p.current{
	background-color: #333;
}
.contact-flow:before{
	content: "";
	background-color: #E6E6E6;
	position: absolute;
	top: 50%;
	height: 2px;
	width: 100%;
	z-index: -1;
}

.contact .form {
	background-color: #fff;
	box-shadow: 8.6px 12.29px 25px rgba(0, 0, 0, 0.1);
	padding: 65px 0 80px;
}

.contact .form table {
	margin-bottom: 40px;
}

.contact-text1 {
	text-align: center;
	line-height: 2.19;
	margin-bottom: 60px
}

.contact .form table th {
	color: #333;
	padding: 35px 0;
}

.contact .form table td {
	color: #333;
	padding: 20px 0 20px 20px;
}

.contact .form table .radio {
	/* padding: 35px 0 35px 20px; */
	padding: 15px 0 0 0;
}

.contact .form table .checkbox td {
	padding: 45px 0 35px 20px;
	vertical-align: middle;
}

.contact .form table .checkbox td a {
	color: var(--red);
	text-decoration: underline;
}

.contact .form table .checkbox th .required {
	top: 55px;
}

.contact-img1 {
	text-align: center;
	margin-bottom: 50px;
}

.contact-img1 img {
	width: 400px;
}

.contact form .required {
	background-color: var(--red);
	color: #fff;
	right: 0;
}

.contact form .contact-error {
	padding-top: 4px;
	color: var(--red);
}

.contact .form table input[type="text"],
.contact .form table input[type="tel"],
.contact .form table input[type="email"],
.contact .form table select,
.contact .form table textarea {
	background-color: #F7F7F7;
	padding: 15px 20px;
}

.contact .form table .input-zip {
	width: 40px;
}

.contact .form table li:not(:last-child) {
	margin-bottom: 12px;
}

.ECM_CheckboxInput {
	display: flex;
	align-items: center;
	cursor: pointer;
	width: 100%;
}

.ECM_CheckboxInput a {
	display: inline;
	font-weight: 400;
}

.ECM_CheckboxInput-Input {
	margin: 0;
	width: 0;
	opacity: 0;
}

.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput {
	background: #fff;
	border: solid 2px var(--red);
}

.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::before {
	content: "";
	display: block;
	position: absolute;
	top: 30%;
	left: 60%;
	width: 40%;
	height: 3px;
	border-radius: 2px;
	transform: translate(-6px, 5px) rotateZ(-135deg);
	transform-origin: 2px 2px;
	background: var(--red);
}

.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::after {
	content: "";
	display: block;
	position: absolute;
	top: 35%;
	left: 61%;
	width: 70%;
	height: 3px;
	border-radius: 2px;
	transform: translate(-6px, 5px) rotateZ(-45deg);
	transform-origin: 2px 2px;
	background: var(--red);
}

.ECM_CheckboxInput-DummyInput {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	border: solid 2px #D2D9D5;
	background: #fff;
	border-radius: 2px;
	margin-right: 10px;
}

.ECM_CheckboxInput-LabelText {
	margin-left: 1px;
	display: block;
	font-size: 16px;
	font-weight: 400;
}

.contact .ECM_RadioInput {
	margin-right: 80px;
}

.contact .ECM_RadioInput:last-child {
	margin: 0;
}

/* .form-btn {
	max-width: 100%;
	text-align: center;
} */

.g-recaptcha div {
	margin: 0 auto;
}
.g-recaptcha-error {
	width: 304px;
	margin: 0 auto;
}
.recruit .g-recaptcha-error {
	color: #FFF;
}

/* CONTACT_CONFIRM */
.contact.contact-confirm table td {
	padding: 35px;
}

/* PRIVACYPOLICY */
.policy h2 {
	background-image: url(../images/detail-icon1.svg);
	background-repeat: no-repeat;
	background-position: 0 50%;
	padding-left: 30px;
	font-size: 24px;
	line-height: 1.25;
	margin: 80px 0 25px;
	font-weight: bold;
	text-align: left;
	position: relative;
}

.policy h2:first-child {
	margin: 0 0 35px;
}

.policy-sec1 {
	padding: 50px 0 60px;
}

.policy-sec1 .inner {
	max-width: 900px;
}

.policy h3 {
	font-size: 16px;
	font-weight: bold;
	margin: 40px 0 20px;
}

.policy-text1 {
	font-size: 16px;
	font-family: 'Noto Sans JP';
	position: absolute;
	right: 0;
	bottom: 0;
}

.policy-sec1 ol {
	list-style: decimal;
	margin-bottom: 30px;
	padding-left: 20px;
}

.policy-sec1 li {
	line-height: 1.875;
}

.policy-text2 {
	text-align: right;
	margin-bottom: 50px;
}

.policy-box1 {
	border: solid 1px #333;
	padding: 35px 50px;
	max-width: 650px;
	margin: 0 auto 100px;
}

.policy-box1 a {
	display: inline;
	color: #333;
}

.policy-box1 h3 {
	margin: 0 0 20px;
}

.policy-box2 {
	padding-left: 20px;
	display: block;
}

.policy-text3 {
	padding-left: 53px;
	text-indent: -53px;
}

.policy-text4 {
	padding-left: 50px;
}

.policy-ul1 {
	list-style: disc;
	padding-left: 70px;
}

.policy-ul2 {
	list-style: disc;
	padding-left: 20px;
	margin-bottom: 30px;
}

.policy-ul3 {
	list-style: disc;
	padding-left: 40px;
}

.policy-sec1 ol.policy-ol1 {
	list-style-type: none;
	padding-left: 0;
}

.policy-ol1 li{
	text-indent: -2em;
	padding-left: 2em;
}

.policy-ol1 ul li{
	text-indent: 0;
	padding: 0;
}

.policy-text5 {
	text-align: right;
	font-weight: bold;
	margin-top: 60px;
}
.right{
	text-align: right;
	margin-bottom: 30px;
}
.mb0{
	margin-bottom: 0;
}

/*------------------------------------------------------------
ブラウザ幅ごとの調整
-------------------------------------------------------------*/
@media screen and (min-width:1501px) {
	.top .main {
		background-position: right top;
	}

	.under-nav {
		background-size: 13px auto, 611px auto;
	}
}

@media screen and (min-width:1280px) and (max-width:1500px) {
	.recruit-sec5 {
		-webkit-background-size: 20vw auto;
		background-size: 20vw auto;
	}
}

@media screen and (min-width:769px) and (max-width:1370px) {

}

@media screen and (min-width:769px) and (max-width:1280px) {
	.top-sec1 h3 {
		width: 270px;
	}

	.top-sec1 .top-sec1-box5 h3 {
		width: 320px;
	}

	.top-sec1-box2 {
		width: 980px;
	}

	.top-sec1-box3 {
		margin: 0 0 310px 0;
	}

	.top-sec1-box5 .top-sec1-ul {
		padding-right: 50px;
	}

	.under-nav {
		background-size: 13px auto, 530px auto;
		background-position: 80px 85px, 0 0;
		height: 827px;
		padding: 80px 0 0 115px;
	}

	.company-sec4 {
		background-size: 550px auto;
	}

	.recruit-sec5 {
		-webkit-background-size: 250px auto;
		background-size: 250px auto;
	}
}

/*------------------------------------------------------------
ここからスマホ用
-------------------------------------------------------------*/

@media screen and (max-width:768px) {
	html {
		font-size: 13.334vw;
	}

	body {
		overflow: hidden;
		position: relative;
		min-width: 100%;
	}

	.sp {
		display: block;
	}

	img.sp {
		display: inline;
	}

	.sp.flexbox {
		display: flex;
	}

	.pc {
		display: none;
	}


	/* SP：ヘッダー */
	header {
		min-width: 100%;
		height: 1.2rem;
		position: fixed;
	}

	header .inner.flexbox {
		padding: 0;
		height: auto;
	}

	.header-info {
		width: 5.93rem;
		padding: 0;
	}

	.header-logo {
		padding: 0.4rem 0 0 0.4rem;
	}

	.header-logo img {
		width: 3.65rem;
	}

	/* ハンバーガーメニュー */
	.hamburger {
		padding: 0;
		display: block;
		width: 1.2rem;
		height: 1.2rem;
		border: none;
		z-index: 9999;
		position: absolute;
		top: 0;
		right: 0;
		background: rgb(185, 3, 5);
		background: -webkit-linear-gradient(297deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
		background: -o-linear-gradient(297deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
		background: linear-gradient(27deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
		color: #fff;
	}

	.hamburger span {
		width: 100%;
		height: 0.04rem;
		background-color: #fff;
		position: relative;
		transition: ease .4s;
		display: block;
		border-radius: 0.8rem;
		width: 0.4rem;
		margin: 0 auto;
	}

	.hamburger span:nth-child(1) {
		top: -0.09rem;
	}

	.hamburger span:nth-child(2) {
		top: 0;
	}

	.hamburger span:nth-child(3) {
		top: 0.09rem;
	}

	.hamburger.active span:nth-child(1) {
		top: 0.04rem;
		transform: rotate(45deg);
	}

	.hamburger.active span:nth-child(2) {
		top: -0.03rem;
		transform: rotate(-45deg);
		opacity: 0;
		transition: 0.3s;
	}

	.hamburger.active span:nth-child(3) {
		top: -0.04rem;
		transform: rotate(-45deg);
	}

	.hamburger.active {
		background: none;
	}

	.header-menu {
		width: 100%;
	}

	.nav-logo {
		padding: 0.4rem 0 0 0.4rem;
		margin-bottom: 1.1rem;
	}

	.nav-logo img {
		width: 3.65rem;
	}

	nav .inner {
		padding: 0;
	}

	nav {
		position: absolute;
		right: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		transform: translateX(100%);
		transition: ease .4s;
		z-index: 100;
		background-image: url("../images/nav-bg.png");
		background-size: 100% 100%;
	}

	nav.active {
		transform: translateX(0);
	}

	.nav li {
		width: 100%;
		margin-left: 0.8rem;
		height: auto;
		display: inline-block;
		margin-bottom: 0.5rem;
	}

	.nav li a {
		height: auto;
		padding: 0;
		display: block;
		border: none;
		color: #fff;
		line-height: 1;
		text-align: left;
	}

	.nav li a span {
		font-size: 0.6rem;
		width: auto;
		height: auto;
		position: static;
		display: inline;
		font-weight: 600;
		letter-spacing: 0.02em;
	}

	.nav li a span.nav-jp {
		opacity: 1;
		color: #fff;
		font-size: 0.24rem;
		margin-left: 0.2rem;
		font-weight: 400;
	}

	.nav li a:hover span.nav-en {
		opacity: 1;
	}

	.nav li.nav2 {
		width: 100%;
		height: auto;
		box-shadow: none;
	}

	.nav li.nav2 a span {
		width: auto;
		height: auto;
		display: inline;
		margin: 0;
	}

	.nav li.nav2 a {
		width: auto;
		height: auto;
		background: none;
	}

	.nav li.nav2 img {
		display: none;
	}

	.nav li.nav2 a span.nav-jp {
		opacity: 1;
		margin-left: 0.2rem;
	}

	/* SP：メインビジュアル */
	.under main {
		margin-top: 1.2rem;
	}

	.top .main {
		background: none;
		padding: 0;
		height: auto;
	}

	.top .main .inner {
		padding: 0;
		-webkit-background-size: 6.36rem auto;
		background-size: 6.36rem auto;
		background-position: 0.5rem 13.8rem;
	}

	.top .main .inner .main-title {
		position: relative;
	}

	.top .main .inner .main-title .aws-badge {
		width: 13%;
		bottom: 3%;
		right: 4%;
	}

	.top h1 {
		/* background-image: url("../images/main-bg_sp.png"); */
		background-image: url("../images/mv-bg_sp.png");
		background-position: right bottom;
		background-repeat: no-repeat;
		-webkit-background-size: 6.13rem auto;
		background-size: 6.13rem auto;
		padding: 2rem 0 5.8rem 0.8rem;
		margin-bottom: 1.4rem;
	}

	/* .top h1 img {
		width: 4.95rem;
	} */

	.scroll {
		position: absolute;
		bottom: auto;
		left: 0.15rem;
		top: 11.8rem;
	}

	.scroll img {
		width: 0.15rem;
	}

	.scroll-down {
		height: 1rem;
		left: 0.05rem;
		bottom: 0.4rem
	}

	.text1 {
		font-size: 0.32rem;
		margin-bottom: 0.8rem;
	}

	.top .main .text1 {
		padding: 0 0.5rem;
	}

	.top .link1 {
		padding-left: 0.5rem;
	}

	.link1 a {
		font-size: 0.3rem;
		-webkit-background-size: 0.9rem auto;
		background-size: 0.9rem auto;
		padding: 0.15rem 1rem 0.3rem 0;
	}

	/* SP：トップsec1 */
	.top-sec1 {
		padding: 1.3rem 0 1.5rem;
		-webkit-background-size: 3.2rem auto;
		background-size: 3.2rem auto;
		background-position: 100% 100.1%;
	}

	h2 {
		font-size: 1rem;
		font-weight: 600;
	}

	.h2-subtitle {
		font-size: 0.32rem;
		margin-bottom: 0.4rem;
	}

	.top-sec1 h2 {
		text-align: center;
	}

	.top-sec1 .h2-subtitle {
		text-align: center;
	}

	h3 {
		font-size: 0.46rem;
		margin-bottom: 0.3rem;
	}

	h3 span {
		font-size: 0.28rem;
		margin-bottom: 0.1rem;
	}

	.top-sec1 h3 {
		-webkit-background-size: 1.88rem auto;
		background-size: 1.88rem auto;
		background-position: 0 0.2rem;
		width: 100%;
	}

	.top-sec1-box2 {
		width: 100%;
		margin-bottom: 1rem;
	}

	.top-sec1-box3 {
		padding: 0;
		margin: 0;
		background: none;
		box-shadow: none;
	}

	.top-sec1-box7 {
		padding: 0.6rem 0.5rem;
		margin: 0 0 0.3rem;
		background-color: #fff;
		box-shadow: 0 15px 25px rgb(0 0 0 / 10%);
	}

	.top-sec1-icon1 {
		width: 100%;
		text-align: center;
	}

	.top-sec1-icon1 img {
		height: 1.13rem auto;
	}

	.top-sec1-text1 {
		text-align: center;
		font-size: 0.36rem;
		margin-bottom: 0.3rem;
	}

	.text2 {
		font-size: 0.28rem;
		font-weight: 400;
	}

	.top-sec1-ul {
		position: static;
		top: 6.4rem;
		width: 100%;
		margin: 0;
	}

	.top-sec1-ul li {
		width: 100%;
		margin: 0 0 0.3rem;
	}

	.top-sec1-ul li a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0.6rem 0.5rem;
	}

	.top-sec1-icon2 {
		width: 1.41rem;
	}

	.top-sec1-box6 {
		width: 3.57rem;
	}

	.top-sec1-text2 {
		font-size: 0.32rem;
		text-align: left;
	}

	.top-sec1-icon2 {
		height: auto;
		margin: 0;
	}

	.top-sec1-icon2 img {
		height: 1.18rem;
	}

	.top-sec1-link1 {
		right: 0.15rem;
		bottom: 0.15rem;
	}

	.top-sec1-link1 img {
		width: 0.5rem;
	}

	/* SP：トップsec2 */
	section {
		padding: 1.2rem 0;
	}

	.top-sec2 {
		background-image: url("../images/top-sec2_bg_sp.svg");
		-webkit-background-size: 100% auto;
		background-size: 100% auto;
		background-repeat: no-repeat;
		background-color: #333;
		padding: 1.2rem 0;
	}

	.works-card {
		padding: 0 0.4rem;
	}

	.top-sec2 .h2-subtitle {
		margin-bottom: 0.5rem;
	}

	.category {
		margin-bottom: 0.1rem;
	}

	.category li {
		margin-right: 0.1rem;
	}

	.category li a {
		font-size: 0.2rem;
		padding: 0.02rem 0.22rem;
	}

	.works-title {
		font-size: 0.32rem;
		margin-bottom: 0.1rem;
	}

	.works-text {
		font-size: 0.26rem;
		width: 100%;
	}

	.slick-dots {
		position: static;
		margin: 0.5rem 0 0.6rem;
	}

	.slick-dots li button:before {
		opacity: 1;
		font-size: 12px;
	}

	.top-sec2 .slick-dots li button:before {
		color: #fff;
	}

	.slick-dots li.slick-active button:before {
		color: var(--red);
	}

	/* SP：トップsec3 */
	.top-sec3 {
		-webkit-background-size: 3.91rem auto;
		background-size: 3.91rem auto;
		padding: 1.2rem 0 0.9rem;
	}

	.top-sec3-box1 {
		display: block;
	}

	.interview-card {
		margin-bottom: 0.5rem;
	}

	.interview-card a {
		padding: 0.2rem;
		width: 6.1rem;
		height: 6.9rem;
	}

	.interview-category {
		font-size: 0.2rem;
		padding: 0.05rem 0.2rem;
	}

	.interview-title {
		font-size: 0.32rem;
		padding: 0.15rem 0.2rem 0 0.3rem;
		-webkit-background-size: 0.26rem auto;
		background-size: 0.26rem auto;
		margin-bottom: 0.25rem;
	}

	.interview-info-text1 {
		font-size: 0.24rem;
		margin-right: 0.55rem;
	}

	.interview-info-text2 {
		font-size: 0.26rem;
		line-height: 1.5;
	}

	.interview-info-text2 span {
		font-size: 0.2rem;
	}

	/* SP：トップsec4 */
	.top-sec4 {
		-webkit-background-size: 5.61rem auto, 1.9rem auto;
		background-size: 5.61rem auto, 1.9rem auto;
		padding: 0.6rem 0 0.8rem;
		background-position: top left, 100% 100.1%;
	}

	.top-sec4 h2 {
		text-align: center;
		font-size: 0.9rem;
		letter-spacing: -0.01em
	}

	.top-sec4 .h2-subtitle {
		text-align: center;
	}

	.commitment-card {
		width: 100%;
		margin-bottom: 0.7rem;
	}

	.commitment-box2 {
		padding: 0;
	}

	.commitment-img {
		top: -0.1rem;
		left: -0.35rem;
	}

	.commitment-img img {
		width: 2.6rem;
	}

	.top-sec4 h3 {
		padding-left: 1.96rem;
		font-size: 0.36rem;
		margin-bottom: 0.4rem;
	}

	.top-sec4 h3 span {
		font-size: 0.26rem;
		margin-bottom: 0.08rem;
		line-height: 1;
	}

	.commitment-card:nth-child(2) .commitment-img {
		top: 0.2rem;
	}

	.commitment-card:nth-child(4) h3 {
		padding: 0.3rem 0 0.2rem 1.96rem;
	}

	/* SP：トップsec5 */
	.top-sec5 {
		background-image: url("../images/top-sec5_bg_sp.svg");
		background-size: 100% 100%;
		padding: 1.2rem 0;
	}

	.top-sec5 h2 {
		font-size: 0.9rem;
		letter-spacing: -0.01em;
	}

	.result-card {
		width: 100%;
		margin-bottom: 0.5rem;
		padding: 0.6rem 0;
	}

	.top-sec5 h3 {
		font-size: 0.36rem;
		margin-bottom: 0.4rem;
		padding-left: 0.3rem;
	}

	.top-sec5 h3 span {
		font-size: 0.26rem;
		margin-bottom: 0.1rem;
	}

	.top-sec5 .text2 {
		padding: 0 0.4rem;
		margin-bottom: 0.6rem;
	}

	.result-img1 img {
		width: 5.5rem;
	}

	.result-box1 {
		margin-bottom: 0.1rem;
	}

	/* SP：トップsec6 */
	.top-sec6 {
		background-size: 3.2rem auto;
		padding: 1.2rem 0;
	}

	.blog-card {
		padding: 0 0.4rem;
	}

	.blog-card .blog-date {
		font-size: 0.22rem;
		margin-right: 0.1rem;
	}

	.blog-card .blog-new {
		font-size: 0.2rem;
		padding: 0.1rem 0.22rem;
	}

	.blog-card .blog-title {
		font-size: 0.32rem;
		margin-bottom: 0.1rem;
	}

	.blog-meta {
		align-items: center;
	}

	.blog-card .blog-text {
		font-size: 0.26rem;
	}

	.slider2 .slick-dots li button:before,
	.slider3 .slick-dots li button:before {
		color: #E6E6E6;
	}

	.slider1 .slick-dots li.slick-active button:before,
	.slider2 .slick-dots li.slick-active button:before,
	.slider3 .slick-dots li.slick-active button:before {
		color: var(--red);
		font-size: 0.2rem;
	}
	
	.top .blog-img {
		height: 50vw;
	}

	.top .blog-img img{
		width: auto;
		height: 50vw;
	}

	/* SP：フッター */
	footer {
		background-color: #333;
	}

	.footer-contact {
		padding: 1rem 0;
		background-image: url("../images/footer-bg_sp.jpg");
	}

	.footer-box1 {
		width: 100%;
	}

	.footer-text1 {
		text-align: center;
		font-size: 0.9rem;
		margin-bottom: 0;
	}

	.footer-text2 {
		text-align: center;
		font-size: 0.32rem;
		margin-bottom: 0.6rem;
	}

	.footer-text3 {
		font-size: 0.28rem;
		max-width: 6rem;
		margin: 0 auto 0.8rem auto;
	}

	.footer-box2 {
		width: 100%;
	}

	.footer-text4 {
		font-size: 0.28rem;
		margin-bottom: 0;
	}

	.footer-text5 {
		font-size: 0.6rem;
		margin-bottom: 0.4rem;
	}

	.footer-text5 img {
		width: 0.40rem;
		top: -0.2rem;
	}

	.footer-btn1 a {
		width: 100%;
		max-width: 6rem;
		font-size: 0.28rem;
		padding: 0.39rem 0;
		margin: 0 auto;
	}

	.footer-btn1 img {
		width: 0.39rem;
		margin-right: 0.15rem;
	}

	.footer-info {
		padding: 0;
	}

	.footer-info .inner.flexbox {
		padding: 0;
	}

	.footer-box4 {
		padding: 0;
		width: 6.5rem;
		margin: 1.1rem auto 0.8rem;
	}

	.footer-nav {
		width: 100%;
		flex-direction: column;
		flex-wrap: wrap;
		height: 3.9rem;
		height: calc(3.8rem + 8px);
		margin-bottom: 1.1rem;
	}

	.footer-nav li {
		width: 49.7%;
		width: calc(50% - 2px);
		border-right: solid 1px #6F6F6F;
		border-bottom: solid 1px #6F6F6F;
	}

	.footer-nav li a {
		text-align: center;
		font-size: 0.3rem;
		padding: 0.22rem 0 0.23rem;
	}

	.footer-box3 {
		width: 100%;
	}

	.footer-logo {
		text-align: center;
		margin-bottom: 0.4rem;
	}

	.footer-logo img {
		width: 4.7rem;
	}

	.footer-text6 {
		text-align: center;
		font-size: 0.32rem;
		margin-bottom: 0.2rem;
	}

	.footer-text7 {
		display: block;
		text-align: center;
		font-size: 0.24rem;
		margin-bottom: 0.4rem;
		/* padding-bottom: 1.6rem; */
		-webkit-background-size: 1.2rem auto;
		background-size: 1.2rem auto;
		background-position: bottom center;
		height: auto;
	}
	.footer-address {
		margin-bottom: 0.4rem;
	}

	.footer-text7 .footer-aws-badge,
	.footer-text7 .footer-privacy-mark {
		display: inline-block;
		width: 1.2rem;
		margin: 0px 10px;
	}

	.footer-text7 span {
		padding: 0;
	}

	.footer-text8 {
		max-width: 5.9rem;
		font-size: 0.24rem;
		margin: 0 auto;
	}

	.footer-text9 {
		text-align: center;
		font-size: 0.28rem;
		margin-bottom: 0.4rem;
	}

	.footer-text9:before {
		content: '';
		position: absolute;
		top: 50%;
		display: inline-block;
		width: calc(50% - 1rem);
		height: 1px;
		background-color: #6F6F6F;
		left: 0;
	}

	.footer-text9:after {
		content: '';
		position: absolute;
		top: 50%;
		display: inline-block;
		width: calc(50% - 1rem);
		height: 1px;
		background-color: #6F6F6F;
		right: 0;
	}

	.footer-banner li {
		width: 3.14rem;
		margin-bottom: 0.2rem;
	}

	.footer-banner li a {
		height: 1.1rem;
		font-size: 0.26rem
	}

	.footer-banner li img {
		width: 1.9rem;
	}

	.footer-inner {
		padding: 0.3rem 0 0.2rem;
	}

	.footer-btn {
		position: static;
		text-align: center;
		font-size: 0.24rem;
	}

	.footer-btn a {
		font-size: 0.24rem;
		font-weight: 300;
		margin-bottom: 0.2rem;
	}

	.copyright {
		font-size: 0.2rem;
	}

	.pagetop {
		bottom: 0.1rem;
		right: 0.1rem;
		width: 0.7rem;
		padding: 0.02rem;
	}

	.pagetop img {
		width: 0.8rem;
	}


	/* SP：WORKS詳細 */
	.works-article {
		margin: 0 auto 1rem;
	}

	.inner {
		padding: 0 0.5rem;
	}

	article {
		padding: 1.3rem 0 1.5rem;
	}

	.under.detail h1 {
		text-align: left;
		font-size: 0.5rem;
		margin-bottom: 0.4rem;
		padding: 0;
	}

	.works.detail .categories {
		margin-left: 0;
	}

	.works.detail h2 {
		margin-left: 0;
	}

	.works .category {
		font-size: 0.26rem;
		margin-bottom: 0.2rem;
		padding: 0.07rem 0.3rem;
	}

	.detail h2 {
		font-size: 0.5rem;
		margin-bottom: 0.4rem;
	}

	.workd-img1 {
		padding: 0 0.4rem 1rem;
		margin-bottom: 1rem;
	}

	.works-info {
		padding: 0.5rem 0;
	}

	.works-info li {
		font-size: 0.26rem;
		width: 43%;
		width: calc(50% - 1px - 0.4rem);
		border-right: solid 1px #E6E6E6;
		padding: 0 0.4rem 0 0;
		margin: 0;
		display: block;
	}

	.works-info li:nth-child(even) {
		border-right: none;
		padding: 0 0 0 0.4rem;
	}

	.works-info li:nth-child(n+3) {
		padding-top: 0.5rem;
	}

	.works-info li span {
		font-size: 0.26rem;
		padding: 0.1rem 0.2rem 0.1rem;
		min-width: 1.3rem;
		margin: 0 0 0.25rem;
	}

	.detail h3 {
		font-size: 0.36rem;
		-webkit-background-size: 0.3rem auto;
		background-size: 0.3rem auto;
		padding-left: 0.4rem;
		margin: 1rem 0 0.3rem;
		background-position: 0 0.12rem;
		line-height: 1.39;
	}

	.detail-text {
		font-size: 0.28rem;
		margin-bottom: 0.5rem;
	}

	.works-box1.flexbox {
		flex-direction: column-reverse;
		margin: 0.6rem 0 0.5rem;
	}

	.works-box2 {
		width: 100%;
	}

	.works-img2 {
		width: 100%;
		margin-bottom: 1rem;
	}

	.works-box3 {
		height: 4rem;
	}

	.works-text1 {
		font-size: 0.36rem;
		margin-bottom: 0.5rem;
	}

	.works-text2 {
		font-size: 0.28rem;
		margin-bottom: 0.1rem;
	}

	.works-link1 {
		font-size: 0.28rem;
	}

	.btn1 a {
		font-size: 0.24rem;
		width: 5.5rem;
		height: 1.1rem;
		line-height: 1.1rem;
		-webkit-background-size: 0.3rem auto, 100% 100%;
		background-size: 0.3rem auto, 100% 100%;
	}

	.btn1 img {
		width: 0.21rem;
		top: -0.45rem;
		margin-right: 0.15rem;
	}

	.works-btn a {
		-webkit-background-size: 100% 100%;
		background-size: 100% 100%;
	}

	.flexSeparate {
		flex-direction: column;
	}

	/* SP：WORKS一覧 */
	.under h1 {
		padding-top: 0.5rem;
		text-align: left;
		font-size: 1rem;
		margin: 0 0 0.1rem;
	}

	.under .h1-subtitle {
		text-align: left;
		font-size: 0.4rem;
		margin-bottom: 0.8rem;
	}

	.category-text1 {
		text-align: left;
		font-size: 0.30rem;
		margin: 0;
		float: left;
		margin-right: 0.15rem;
	}

	.category-select {
		float: left;
		margin-bottom: 0.65rem;
	}

	.category-select select {
		font-size: 0.26rem;
		font-family: 'Noto Sans JP';
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		background-image: url("../images/arrow9.svg");
		background-repeat: no-repeat;
		background-position: 92% 55%;
		background-color: #fff;
		-webkit-background-size: 0.14rem auto;
		background-size: 0.14rem auto;
		border: solid 1px #E6E6E6;
		width: 2.2rem;
		padding: 0.05rem 0.3rem 0.11rem;
		border-radius: 1rem;
		font-weight: bold;
		color: #333;
	}

	.works-sec1 {
		clear: both;
		padding: 1.2rem 0 1.5rem;
	}

	.works .works-card {
		width: 100%;
		margin-bottom: 1rem;
	}

	.works .works-img {
		margin-bottom: 0.5rem;
	}

	.works .works-img img {
		width: 100%;
	}

	.works-sec1 .category {
		font-size: 0.2rem;
		padding: 0.02rem 0.23rem;
		margin-right: 0.05rem;
	}

	.works-sec1 .works-title {
		font-size: 0.36rem;
		margin-bottom: 0.2rem;
	}

	.pagination li {
		font-size: 0.32rem;
		width: 0.5rem;
		height: 0.5rem;
		line-height: 0.5rem;
		margin: 0 0.1rem;
	}

	.pagination li.pagination-next {
		margin-left: 0.5rem;
	}

	.pagination li.pagination-prev {
		margin-right: 0.5rem;
	}

	.pagination img {
		width: 0.5rem;
	}

	.works .works-list {
		margin-bottom: 0.2rem;
	}

	/* SP：COMPANY */
	.under .main {
		padding-top: 1.3rem;
	}

	.under .main h1 {
		padding: 0 0.5rem;
	}

	.under .main .h1-subtitle {
		padding: 0 0.5rem;
	}

	.under-main {
		height: 6.66rem;
		position: relative;
		-webkit-background-size: auto 4.03rem;
		background-size: auto 4.03rem;
		background-position: top right;
	}

	.company .under-main {
		background-image: url("../images/company-main_sp.jpg");
	}

	.under-nav {
		display: flex;
		flex-wrap: wrap;
		background: var(--red);
		height: auto;
		position: absolute;
		bottom: 0;
		padding: 1.14rem 0.5rem 0.2rem;
		width: 100%;
	}

	.under-nav:before {
		content: "Contents";
		position: absolute;
		top: 0.5rem;
		color: #fff;
		font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
		font-weight: 400;
		font-size: 0.28rem;
	}

	.under-nav li {
		margin: 0 0.5rem 0.3rem 0;
		height: 0.35rem;
	}

	.under-nav a {
		font-size: 0.24rem;
		-webkit-background-size: 0.12rem auto;
		background-size: 0.12rem auto;
		padding-right: 0.27rem;
	}

	.company h2 {
		font-size: 0.6rem;
	}

	.company .h2-subtitle {
		margin-bottom: 0.5rem;
	}

	.company {
		background-position: 0 38.6rem;
		-webkit-background-size: 5.6rem auto;
		background-size: 5.6rem auto;
	}

	.company-sec1-img1 {
		margin: 0 -0.5rem 0.9rem;
	}

	.company-sec1-img1 img {
		margin-top: 0;
		margin-left: 0;
	}

	.company-sec1-box2 {
		width: 100%;
	}

	.company-sec1 h3 {
		font-size: 0.5rem;
		font-weight: 600;
		padding: 0.15rem 0.29rem 0 0.29rem;
		letter-spacing: 0.05em;
		margin: 0 -0.29rem 0.5rem;
		-webkit-background-size: 0.26rem 0.22rem;
		background-size: 0.26rem 0.22rem;
	}

	.company-sec1 .text2 {
		margin-bottom: 0.5rem;
	}

	.company-img2 {
		font-size: 0.26rem;
	}

	.company-img2 img {
		width: 2.1rem;
		margin-left: 0.3rem;
	}

	.company-sec2 {
		-webkit-background-size: 1.7rem auto;
		background-size: 1.7rem auto;
		padding: 1.2rem 0 0.8rem;
	}

	.company-sec2 h3 {
		padding-left: 1.96rem;
		font-size: 0.36rem;
		margin-bottom: 0.4rem;
	}

	.company-sec3 {
		padding: 1.2rem 0 0.7rem;
	}

	.company-sec3 .result-card {
		width: 100%;
		margin: 0 0 0.5rem 0 !important;
	}
	
	.company-sec3 .result-card h3{
		padding-left: 0.4rem;
		font-size: 0.36rem;
	}

	.company-sec3 .result-card .text2 {
		margin-bottom: 0.6rem;
		padding: 0 0.5rem;
	}

	.company-sec3 .result-card img {
		width: 5.5rem;
	}

	.company-sec3 .result-card:nth-child(1) img {
		width: 2.5rem;
	}

	.company-sec3-text1 {
		font-size: 0.26rem;
		margin-top: -0.35rem;
	}

	.company-sec3-text1 span {
		font-size: 0.24rem;
	}

	.company-sec4 {
		-webkit-background-size: 3.0rem auto;
		background-size: 3.0rem auto;
		padding: 1.2rem 0 0.3rem;
	}

	.company-sec4-img1 {
		width: 100%;
		margin: 0 0 0.6rem;
	}

	.company-sec4-box2 {
		width: 100%;
		padding: 0;
	}

	.company-sec4 h3 {
		font-size: 0.5rem;
		margin-bottom: 0.4rem;
	}

	.company-sec4 .text2 {
		margin-bottom: 0.6rem;
	}

	.company-sec5 {
		padding: 1.2rem 0 1.5rem;
	}

	.company-sec5 table {
		width: 100%;
		margin-bottom: 1.2rem;
	}

	.company-sec5 th {
		font-size: 0.28rem;
		width: 1.5rem;
		padding: 0.4rem 0;
	}

	.company-sec5 td {
		font-size: 0.28rem;
		padding: 0.4rem 0 0.4rem 0.35rem;
	}

	.privacy-mark {
		padding-left: 0.29rem;
	}

	.privacy-mark img {
		width: 1rem;
	}

	.company .map {
		margin-bottom: 0.6rem;
	}

	.company-sec5-box1 {
		display: block;
		max-width: 100%;
		padding: 0 0.5rem;
	}

	.company-sec5-text1 {
		font-size: 0.28rem;
		margin-bottom: 0.3rem;
	}

	.company-sec5-text2 {
		font-size: 0.26rem;
		line-height: 1.79;
	}

	/* SP：RECRUIT */
	.recruit .under-main {
		background-image: url(../images/recruit-main_sp.jpg);
	}

	.recruit-sec1 h2 {
		font-size: 0.5rem
	}

	.recruit-sec1 h2 span {
		padding: 0 0.05rem;
	}

	.recruit h3 {
		text-align: center;
	}

	.recruit-sec1-text1 {
		font-size: 0.3rem;
		font-weight: 400;
		margin-bottom: 0.5rem;
	}

	.recruit-sec1-text1 .span1:nth-child(2) {
		margin: 0 5px 0 0;
	}

	.recruit-sec1 li {
		width: 100%;
		margin-bottom: 0.3rem;
	}

	.recruit-sec1-text2 {
		font-size: 1rem;
	}

	.recruit-sec1-text3 {
		font-size: 0.3rem;
	}

	.recruit-sec2 {
		padding: 1.2rem 0 1.1rem;
	}

	.recruit-sec2 h2 {
		font-size: 0.46rem;
	}

	.recruit-sec2-box2 {
		width: 2.6rem;
		padding: 0.4rem 0.3rem;
		margin-bottom: 0.1rem;
	}

	.recruit-sec2 h3 {
		font-size: 0.36rem;
		margin-bottom: 0.3rem;
	}

	.recruit-sec2 h3 span {
		font-size: 0.26rem;
		margin-bottom: 0.05rem;
	}

	.recruit-sec2-img1 {
		margin-bottom: 0.25rem;
	}

	.recruit-sec2-img1 img {
		height: 2.1rem;
	}

	.recruit-sec2 .text2 {
		font-size: 0.26rem;
		line-height: 1.54;
	}

	.recruit-sec2-text1 {
		margin: 0.6rem 0 0.65rem;
		font-size: 0.4rem;
	}

	.recruit-sec2-box3 .recruit-sec2-box2 {
		width: 5.9rem;
	}

	.recruit-sec2-box3 .recruit-sec2-img1 img {
		height: 1.15rem;
	}

	.recruit-sec2-text2 {
		font-size: 0.4rem;
		margin: 0.1rem 0 0.2rem;
	}

	.recruit-sec3 {
		-webkit-background-size: 3.91rem auto;
		background-size: 3.91rem auto;
		padding: 2.14rem 0 0.3rem;
	}

	.recruit-sec3 h2,
	.recruit-sec4 h2,
	.recruit-sec5 h2,
	.recruit-sec6 h2 {
		font-size: 0.6rem;
	}

	.recruit-sec3 .h2-subtitle,
	.recruit-sec6 .h2-subtitle {
		font-size: 0.32rem;
		margin-bottom: 0.5rem;
	}

	.recruit dt {
		padding: 40px 30px;
	}

	.recruit-sec3-box2 {
		width: 100%;
		padding: 0 0.3rem 0.5rem;
	}

	.recruit-sec3-text1 {
		font-size: 0.24rem;
		margin-bottom: 0.15rem;
	}

	.recruit-sec3-text1 span {
		font-size: 0.2rem;
	}

	.recruit-sec3 h4 {
		font-size: 0.46rem;
		margin-bottom: 0.5rem;
	}

	.recruit-sec3 h4 span {
		font-size: 0.26rem;
		margin-left: 0.2rem;
	}

	.recruit-sec3-text2 {
		background-size: 0.2rem;
		padding: 0 16px 0 16px;
		font-weight: bold;
		font-size: 0.36rem;
	}

	.recruit-sec3-btn1 img,
	.recruit-sec3-btn2 img {
		width: 0.5rem;
	}

	.recruit-sec3-btn1:before,
	.recruit-sec3-btn2:before {
		font-size: 0.24rem;
		top: -0.03rem;
		left: -0.1rem;
	}

	.recruit-sec3 dd {
		padding: 0 0.5rem 0.6rem;
	}

	.recruit-sec3 h5 {
		font-size: 0.32rem;
		padding-left: 0.5rem;
		-webkit-background-size: 0.32rem 0.04rem;
		background-size: 0.32rem 0.04rem;
		background-position: 0 0.25rem;
		line-height: 1.56;
		margin-bottom: 0.3rem;
		letter-spacing: 0.08em;
	}

	.recruit-sec3-img2 {
		width: 6rem;
		margin: 0 -0.5rem 0.8rem 0;
	}

	.recruit-sec3-img2 img {
		width: 100%;
	}

	.recruit-sec3-box3:nth-child(3) {
		flex-direction: column-reverse;
	}

	.recruit-sec3-box5 {
		width: 100%;
	}

	.recruit-sec3-img3 {
		width: 6rem;
		margin: 0 0 0.8rem -0.5rem;
	}

	.recruit-sec3-img3 img {
		width: 100%;
	}

	.recruit-sec3 .text2 {
		margin-bottom: 0.8rem;
	}

	.recruit-sec4-text1 {
		font-size: 0.28rem;
		margin-bottom: 0.5rem;
	}

	.recruit-sec4 dt {
		font-size: 0.32rem;
		padding: 0.33rem 0 0.33rem 0.5rem;
		-webkit-background-size: 0.5rem auto;
		background-size: 0.5rem auto;
		background-position: 96% 50%;
	}

	.recruit-sec4 th {
		display: block;
		width: auto;
		padding: 0.6rem 0.5rem 0.3rem;
		font-size: 0.3rem;
		border: none;
	}

	.recruit-sec4 td {
		display: block;
		width: auto;
		padding: 0 0.5rem 0.6rem;
	}

	.recruit-sec4 .text2 {
		margin-bottom: 0.3rem;
	}

	.recruit-sec4 .text2 span {
		font-size: 0.24rem;
		margin-left: -0.15rem;
	}

	.recruit-sec4-text2 {
		font-size: 0.28rem;
		padding-left: 0.3rem;
		-webkit-background-size: 0.16rem auto;
		background-size: 0.16rem auto;
		margin-bottom: 0.2rem;
	}

	.recruit-sec4 ul {
		margin-bottom: 0.5rem;
	}

	.recruit-sec4 li {
		font-size: 0.28rem;
		text-indent: -1em;
		padding-left: 1em;
	}

	.recruit-sec4-text3 {
		font-size: 0.28rem;
		margin-bottom: 0.2rem;
	}

	.recruit-sec5 .h2-subtitle {
		margin-bottom: 0.1rem;
	}

	.recruit-sec5 {
		-webkit-background-size: 1.7rem auto;
		background-size: 1.7rem auto;
	}

	.recruit-sec5 dt {
		font-size: 0.3rem;
		padding: 0.4rem 1.05rem 0.4rem 0.8rem;
		-webkit-background-size: 0.3rem auto, 0.5rem auto;
		background-size: 0.3rem auto, 0.5rem auto;
		background-position: 0.3rem 0.5rem, 96% 50%;
	}

	.recruit-sec5 dd {
		padding: 0 1.05rem 0.4rem 0.8rem;
	}

	
	.recruit form table td.radio {
		padding: 0;
	}

	.recruit form table .radio label:not(:last-child) {
		margin-bottom: 8px;
	}

	.recruit form .checkbox th .required {
		top: 0;
	}

	.recruit form td, .recruit form .checkbox td {
		padding: 0 0 0.25rem 0;
	}

	.form table th {
		display: block;
		width: auto;
		font-size: 0.3rem;
		padding: 0.5rem 0 0.2rem;
	}

	.form table td {
		display: block;
		width: auto;
		font-size: 0.28rem;
		padding: 0;
		margin-bottom: 8px;
	}

	form .required {
		font-size: 0.2rem;
		padding: 0.03rem 0.14rem;
		position: relative;
		top: -0.02rem;
		right: -0.2rem;
	}

	.form table input[type="text"],
	.form table input[type="tel"],
	.form table input[type="email"],
	.form table select,
	.form table textarea {
		font-size: 0.28rem;
		padding: 0.3rem;
	}

	.form table input.age {
		width: 1.2rem;
		margin-right: 0.2rem;
	}

	.form table .radio {
		padding: 0;
		display: block;
	}

	.ECM_RadioInput.business1 {
		margin-right: 0.8rem;
	}

	.ECM_RadioInput-LabelText {
		font-size: 0.28rem;
		margin-left: 0.2rem;
	}

	.ECM_RadioInput-DummyInput {
		width: 0.5rem;
		height: 0.5rem;
	}

	.ECM_RadioInput-Input:checked + .ECM_RadioInput-DummyInput::before {
		width: 0.25rem;
		height: 0.25rem;
	}

	.form table {
		margin-bottom: 0.5rem;
	}

	.form-btn {
		text-align: center;
		max-width: 100%;
		margin: 20px auto;
	}

	.form-btn input {
		font-size: 0.32rem;
		width: 5.9rem;
		height: 1.2rem;
	}

	/* SP：SERVICE*/
	.service .under-main {
		background-image: url("../images/service-main_sp.jpg");
	}

	.service-sec1 {
		padding: 1.2rem 0 0.3rem;
	}

	.service-sec1-box1 {
		-webkit-background-size: 6.7rem auto;
		background-size: 6.7rem auto;
		background-position: 0 0;
		margin-bottom: 60px;
	}

	.service-sec1 h2 {
		padding: 0.85rem 0 0 0;
		margin-bottom: 1rem;
		font-size: 0.5rem;
	}

	.service-sec1 h2 span {
		font-size: 0.54rem;
	}

	.service-sec1-card {
		margin: -1.3rem 0 0.9rem;
		padding-top: 1.6rem;
	}

	.service-sec1-box2 {
		width: 100%;
	}

	.service-sec1-box2 .text2 {
		margin-bottom: 0.5rem;
	}

	.service-sec1-img1 img {
		width: 2.8rem;
	}

	.service-sec1-text1 {
		font-size: 0.36rem;
		margin: -0.3rem 0 0.2rem;
	}

	.service-sec1 dl {
		width: 100%;
		background-position: 0 1.9rem;
		-webkit-background-size: auto 1.1rem;
		background-size: auto 1.1rem;
	}

	.service-sec1-img2 {
		width: 8.25rem;
		margin: 0 0 0.6rem -0.79rem;
	}

	.service-sec2 {
		padding: 1.2rem 0 0.4rem;
		background-image: url("../images/service-sec2-bg_sp.svg");
		background-color: #333;
	}

	.service-sec2 h2 {
		font-size: 0.6rem;
	}

	.service-sec2 .h2-subtitle {
		margin-bottom: 1.1rem;
	}

	.service-sec2-card {
		margin-bottom: 1.1rem;
		padding: 0.9rem 0.5rem 0.6rem;
	}

	.service-sec2-no {
		width: 1rem;
		height: 1rem;
		line-height: 1rem;
		font-size: 0.36rem;
		left: 50%;
		top: -0.5rem;
		margin-left: -0.5rem;
	}

	.service-sec2-box1 {
		width: 100%;
		margin-bottom: 0.4rem;
	}

	.service-sec2-img1 img {
		height: 1.32rem;
	}

	.service-sec2-text1 {
		font-size: 0.36rem;
		margin-top: 0.2rem;
	}

	.service-sec2-card:before {
		margin-left: -0.28rem;
		border: 0.28rem solid transparent;
		border-top: 0.24rem solid #fff;
		top: 99.9%;
	}

	/* SP：INTERVIEW一覧 */
	.interview-sec1 {
		padding: 0 0 0.7rem;
	}

	.interview .interview-list {
		margin-bottom: 0.3rem;
	}

	.interview .interview-card {
		width: 100%;
		margin-bottom: 0.5rem;
	}

	.interview .interview-card:nth-child(n+4) {
		display: none;
	}

	.interview .interview-list.open .interview-card:nth-child(n+4) {
		display: block;
	}

	.interview .interview-img1 img {
		width: 100%;
	}

	.interview-box1 {
		padding: 0.5rem;
	}

	.interview .interview-category {
		border-radius: 1rem;
		padding: 0.03rem 0.2rem;
		margin-bottom: 0.3rem;
	}

	.interview .interview-title {
		font-size: 0.36rem;
		padding: 0 0 0 0.3rem;
		-webkit-background-size: 0.23rem auto;
		background-size: 0.23rem auto;
		margin: 0 0 0.3rem -0.3rem;
		line-height: 1.5;
	}

	.interview .interview-info-text1 {
		margin: 0 0 0.1rem;
	}

	.interview .interview-info-text2 {
		font-size: 0.28rem;
	}

	.interview .interview-info-text2 span {
		margin-left: 0.2rem;
	}

	.interview-sec1-btn1 {
		text-align: center;
		font-size: 0.24rem;
		width: 5.5rem;
		height: 1.1rem;
		line-height: 1.1rem;
		border-radius: 80px;
		background: rgb(185, 3, 5);
		background: url("../images/arrow10.svg"), -webkit-linear-gradient(297deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
		background: url("../images/arrow10.svg"), -o-linear-gradient(297deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
		background: url("../images/arrow10.svg"), linear-gradient(27deg, rgba(185, 3, 5, 1) 0%, rgba(216, 12, 24, 1) 100%);
		-webkit-background-size: 0.2rem auto, 100% 100%;
		background-size: 0.2rem auto, 100% 100%;
		color: #fff;
		font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
		font-weight: 600;
		box-shadow: 4.59px 6.55px 20px rgba(0, 0, 0, 0.2);
		background-position: 88% 48%;
		background-repeat: no-repeat;
		margin: 0 auto;
		transition: 0.3s;
		margin-bottom: 0.8rem;
	}

	.interview-sec1-btn1:hover {
		opacity: 0.7;
		cursor: pointer;
	}

	.interview-sec1-btn1.open {
		display: none;
	}

	/* SP：INTERVIEW詳細 */
	.interview.detail .center {
		text-align: left;
	}

	.interview.detail .interview-category {
		margin-bottom: 0.35rem;
	}

	.interview.detail h2 {
		font-size: 0.5rem;
		width: auto;
		background-size: 0.45rem 0.35rem;
		padding: 0.2rem 0 0 0.45rem;
		margin-bottom: 0.6rem;
	}

	.interview-detail-img1 {
		height: 6rem;
		padding-bottom: 0.9rem;
	}

	.interview-detail-img1 img {
		height: 6rem;
		object-fit: cover;
	}

	.interview.detail .interview-info-text1 {
		font-size: 0.26rem;
		font-weight: bold;
	}

	.interview-detail-box5 .interview-info {
		width: 4.8rem;
		padding: 0.6rem 0.5rem 0.3rem;
	}

	.interview-detail-box5 .interview-info-text2 {
		font-size: 0.4rem;
	}

	.interview-detail-box5 .interview-info-text2 .span1 {
		font-size: 0.3rem;
	}

	.interview-detail-box5 .interview-info-text2 .span2 {
		font-size: 0.28rem;
	}

	.interview-category2 {
		margin: 0.2rem 0 0.5rem;
		justify-content: flex-start;
	}

	.interview-category2 li {
		margin: 0 0.05rem 0 0;
	}

	.interview-category2 a {
		font-size: 0.24rem;
		padding: 0.04rem 0.17rem;
	}

	.interview-detail-box1 {
		flex-direction: column-reverse;
	}

	.interview-article h3:first-child {
		margin: 1rem 0 0.3rem;
	}

	.interview-detail-box2 {
		width: 100%;
	}

	.interview-detail-img3 {
		margin: 0.6rem 0 1rem;
	}

	.btn2 {
		margin: 1rem 0;
	}

	.btn2 a {
		font-size: 0.26rem;
		width: 5.5rem;
		height: 1.1rem;
		line-height: 1.1rem;
		-webkit-background-size: 0.5rem auto;
		background-size: 0.5rem auto;
		padding: 0;
	}

	.interview-detail-app {
		padding: 0.7rem 0.5rem 0.6rem;
		margin: 0 auto 1.7rem;
		min-height: 4.5rem
	}

	.interview-detail-img4 {
		width: unset;
	}

	.interview-detail-img4 img {
		width: 1.2rem;
	}

	.interview-detail-text1 {
		font-size: 1.1em;
	}

	.interview-detail-text1 span {
		font-size: 0.8em;
	}

	.interview-detail-box3 {
		margin-bottom: 1.5rem;
	}

	.interview-detail-box4 {
		flex-direction: column;
	}

	.interview-detail-box4 img {
		width: 2.85rem;
	}

	.interview-detail-img5 {
		margin-left: 0;
		margin-bottom: 0.3rem;
	}

	.interview-detail-img7 {
		top: 2.17rem;
		right: 0.5rem;
		width: 30%;
	}


	/* SP：BLOG一覧 */
	.blog-sec1 {
		padding: 0 0 1.5rem;
	}

	.blog .blog-list {
		width: 100%;
	}

	.blog .blog-card {
		width: 100%;
		margin-bottom: 1rem;
	}

	.blog .blog-img {
		height: auto;
	}

	.blog .blog-img img {
		width: 100%;
		height: auto;
	}

	.blog .blog-card .blog-meta {
		margin-bottom: 0.2rem;
	}

	.blog-meta li.new {
		font-size: 0.2rem;
		font-weight: bold;
		padding: 0.03rem 0.22rem;
	}

	.blog .blog-date {
		font-size: 0.22rem;
	}

	.blog-sec1 .category {
		font-size: 0.2rem;
		padding: 0.02rem 0.23rem;
	}

	.blog-sec1 .blog-title {
		font-size: 0.36rem;
		margin-bottom: 0.2rem;
	}

	/* SP：BLOG詳細 */
	.blog.detail article {
		padding: 0.3rem 0 1.2rem;
	}

	.blog .category li {
		font-size: 0.26rem;
		border-radius: 1rem;
		padding: 0.04rem 0.31rem;
	}

	.blog article .blog-meta {
		margin-bottom: 0.15rem;
	}

	.blog article .blog-img1 {
		margin-bottom: 0.8rem;
	}

	.blog .chart {
		width: auto;
		padding: 0.5rem;
	}

	.chart-title {
		font-size: 0.32rem;
		-webkit-background-size: 0.5rem auto;
		background-size: 0.5rem auto;
		padding-left: 0.6rem;
		margin-bottom: 0.4rem;
	}

	.blog .chart ul {
		padding-left: 0;
	}

	.chart-text1 a {
		font-size: 0.28rem;
		margin-bottom: 0;
		-webkit-background-size: 0.15rem auto;
		background-size: 0.15rem auto;
		padding-left: 0.28rem;
	}

	.blog .chart ul.chart-sub {
		padding-left: 0.25rem;
		margin: 0.2rem 0 0.4rem
	}

	.blog .chart ul.chart-sub li {
		margin-bottom: 0.1rem;
	}

	.blog .chart ul.chart-sub a {
		font-size: 0.26rem;
	}

	.blog-img2 {
		margin: 0.6rem 0;
	}

	article h4 {
		font-size: 0.3rem;
		padding-bottom: 0.1rem;
		margin-bottom: 0.3rem;
	}

	article .share {
		margin: 1rem 0.5rem 0.6rem;
		padding: 0.6rem 0;
	}

	.share-text1 {
		font-size: 0.3rem;
		margin-bottom: 0.5rem;
	}

	.share-text1 img {
		width: 0.19rem;
		top: -0.14rem;
		margin-right: 0.15rem;
	}

	article .share li {
		margin-right: 0.7rem;
	}

	article .share li img {
		width: 1rem;
	}

	.blog-pagination {
		position: static;
		max-width: 5.5rem;
		margin-bottom: 0.6rem;
	}

	.blog-pagination img {
		width: 1.3rem;
	}

	.blog-others {
		margin-bottom: 0.9rem;
	}

	.blog-others .blog-img1 {
		margin-bottom: 0.3rem;
	}

	.blog-others h3 {
		margin: 0 auto 0.6rem;
		width: 6.5rem;
		padding: 0;
	}

	.blog-others h3:after {
		top: 0.9rem;
		width: calc(100% - 2.5rem);
	}

	.blog.detail article + .inner {
		padding: 0;
	}

	.blog-others .blog-card {
		padding: 0 0.4rem;
		margin: 0;
	}

	/* SP：CONTACT */
	.contact-sec1 {
		padding: 0 0 1.5rem;
	}

	.contact.under .h1-subtitle {
		margin-bottom: 0.8rem;
	}

	.contact-text1 {
		text-align: left;
		font-size: 0.28rem;
		margin-bottom: 0.6rem;
	}

	.contact-success .contact-text1 {
		text-align: center;
	}

	.contact-flow {
		max-width: 65rem;
		margin-bottom: 0.6rem;
	}

	.contact-flow p{
		width: 1.2rem;
		height: 1.2rem;
		line-height: 1.2rem;
		font-size: 0.24rem;
	}

	.contact .form {
		padding: 0.45rem 0.5rem 0.5rem;
		margin-bottom: 1rem;
	}

	.contact form .required {
		margin-left: 0.2rem;
	}

	.contact .form table th {
		padding: 0.25rem 0 0.3rem;
	}

	.contact .form table td,
	.contact .form table .checkbox td {
		padding: 0 0 0.25rem 0;
	}

	.contact .form table td.radio {
		display: block;
		padding: 0.1rem 0 0.25rem 0;
	}

	.contact .ECM_RadioInput {
		width: 100%;
		margin-bottom: 0.3rem;
	}

	.contact .form table input[type="text"],
	.contact .form table input[type="tel"],
	.contact .form table input[type="email"],
	.contact .form table select,
	.contact .form table textarea {
		padding: 0.34rem 0.2rem;
		width: calc(100% - 0.4rem);
	}

	.contact .form table .input-zip {
		width: 40px !important;
	}

	.contact .form table .checkbox th .required {
		top: 0;
		margin-left: 0;
	}

	.ECM_CheckboxInput-LabelText {
		font-size: 0.28rem;
	}

	.ECM_CheckboxInput-DummyInput {
		width: 0.4rem;
		height: 0.4rem;
	}

	.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::before {
		top: 0.22rem;
		left: 0.18rem;
		width: 0.15rem;
		height: 0.06rem;
	}

	.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::after {
		top: 0.22rem;
		left: 0.18rem;
		width: 0.28rem;
		height: 0.06rem;
	}

	.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::before {
		transform: translate(-0.06rem, 0.05rem) rotateZ(-135deg);
		transform-origin: 0.02rem 0.02rem;
	}

	.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::after {
		transform: translate(-0.06rem, 0.05rem) rotateZ(-45deg);
		transform-origin: 0.02rem 0.02rem;
	}

	.contact .form table {
		margin-bottom: 0.6rem;
	}

	.g-recaptcha div {
		margin: 0 auto;
		transform-origin: 0% 0%;
		transform: scale(0.92);
	}

	/* SP：PRIVACYPOLICY */
	.under.policy h1 {
		font-size: 0.8rem;
		letter-spacing: -0.01em;
	}

	.policy-sec1 {
		padding: 0 0 1.5rem;
	}

	.policy h2 {
		font-size: 0.36rem;
		-webkit-background-size: 0.3rem auto;
		background-size: 0.3rem auto;
		padding-left: 0.4rem;
		margin: 1rem 0 0.3rem;
		background-position: 0 0.12rem;
		line-height: 1.39;
	}

	.policy h2:first-child {
		margin: 0 0 0.3rem;
	}

	.policy h3 {
		font-size: 0.3rem;
		margin: 0.6rem 0 0.3rem;
		line-height: 1.39;
	}

	.policy-text1 {
		font-size: 0.22rem;
		bottom: 0.05rem;
	}

	.policy-text2 {
		font-size: 0.28rem;
		bottom: 0.05rem;
		margin-bottom: 0.3rem;
	}

	.policy-text3 {
		font-size: 0.28rem;
		padding-left: 0.9rem;
		text-indent: -0.9rem;
	}

	.policy-text4 {
		font-size: 0.28rem;
		padding-left: 0.9rem;
	}

	.policy-text5 {
		font-size: 0.28rem;
		margin-top: 0.6rem;
	}

	.policy-sec1 li {
		font-size: 0.28rem;
	}

	.policy-ul1 {
		padding-left: 1.2rem;
	}

	.policy-ul2 {
		padding-left: 0.3rem;
		margin-bottom: 0.5rem;
	}

	.policy-box1 {
		padding: 0.3rem;
		margin-bottom: 0.6rem;
	}

	.policy-box1 h3 {
		margin: 0 0 0.3rem;
		text-align: center;
	}

	.policy-box2 {
		padding: 0;
	}
}


/*========= CSS追加 ===============*/
.main-logo {
  position: absolute;
	width: 500px;
	top: 162px;
	right: 141px;
	z-index: 2;
}

@media screen and (max-width:768px) {
	.main-logo {
		width: 55%;
		top: 30.2%;
    right: 19.1%;
  }
}
@media screen and (max-width:730px) {
	.main-logo {
		top: 31%;
    right: 19%;
  }
}
@media screen and (max-width:570px) {
	.main-logo {
		top: 30.2%;
    right: 19.5%;
  }
}
@media screen and (max-width:550px) {
	.main-logo {
		top: 31%;
  }
}
@media screen and (max-width:510px) {
	.main-logo {
		top: 30.2%;
  }
}
@media screen and (max-width:490px) {
	.main-logo {
		top: 31%;
  }
}
@media screen and (max-width:450px) {
	.main-logo {
		top: 30.3%;
  }
}
@media screen and (max-width:414px) {
	.main-logo {
		top: 30.8%;
  }
}
@media screen and (max-width:390px) {
	.main-logo {
		top: 29.8%;
  }
}
@media screen and (max-width:375px) {
	.main-logo {
		top: 30.1%;
  }
}
@media screen and (max-width:360px) {
	.main-logo {
		top: 30.5%;
  }
}
@media screen and (max-width:340px) {
	.main-logo {
		top: 29.2%;
  }
}
@media screen and (max-width:320px) {
	.main-logo {
		top: 29.7%;
  }
}

.main-logo-img {
	width: 100%;
	object-fit: cover;
}

.main-title {
	margin-top: -20px;
}
.main-title1 {
	font-family: 'Roboto Slab', serif;
  font-weight: 400;
  font-size: 78px;
	line-height: 1.3;
	padding-left: 3px;
}
.main-title1 .char3{
	font-size: 66px;
	font-weight: bold;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
}
.main-title-box {
	display: flex;
}
.main-title2 {
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 66px;
	line-height: 1.2;
	margin-top: 3px;
	display: inline-block;
	color: #FFFFFF;
	padding-left: 3px;
	margin-left: -3px;
}

.main-title2 .char1,
.main-title2 .char2,
.main-title2 .char3,
.main-title2 .char4,
.main-title2 .char5,
.main-title2 .char6{
	background-color: #333333;
}
.main-title-box .main-title2 .char7 {
	font-size: 60px;
	font-weight: bold;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	color: #333333;
	line-height: 1.5;
	margin-left: 5px;
}
.main-title3 {
	font-size: 66px;
	font-weight: bold;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	line-height: 1.3;
	margin-top: 5px;
	letter-spacing: 0.1em;
	padding-left: 3px;
}

/* SP */
@media screen and (max-width:768px) {
	.main-title1 {
		font-size: 84px;
	}
	.main-title1 .char3,
	.main-title2,
	.main-title3 {
		font-size: 72px;
	}
	.main-title-box .main-title2 .char7 {
		font-size: 66px;
	}
}
@media screen and (max-width:670px) {
	.main-title1 {
		font-size: 78px;
	}
	.main-title1 .char3,
	.main-title2,
	.main-title3 {
		font-size: 66px;
	}
	.main-title-box .main-title2 .char7 {
		font-size: 60px;
	}
}
@media screen and (max-width:620px) {
	.main-title1 {
		font-size: 72px;
	}
	.main-title1 .char3,
	.main-title2,
	.main-title3 {
		font-size: 60px;
	}
	.main-title-box .main-title2 .char7 {
		font-size: 54px;
	}
}
@media screen and (max-width:570px) {
	.main-title1 {
		font-size: 66px;
	}
	.main-title1 .char3,
	.main-title2,
	.main-title3 {
		font-size: 54px;
	}
	.main-title-box .main-title2 .char7 {
		font-size: 48px;
	}
}
@media screen and (max-width:510px) {
	.main-title1 {
		font-size: 60px;
	}
	.main-title1 .char3,
	.main-title2,
	.main-title3 {
		font-size: 48px;
	}
	.main-title-box .main-title2 .char7 {
		font-size: 42px;
	}
}
@media screen and (max-width:450px) {
	.main-title1 {
		font-size: 54px;
	}
	.main-title1 .char3,
	.main-title2,
	.main-title3 {
		font-size: 42px;
	}
	.main-title-box .main-title2 .char7 {
		font-size: 36px;
	}
}
@media screen and (max-width:390px) {
	.main-title1 {
		font-size: 48px;
	}
	.main-title1 .char3,
	.main-title2,
	.main-title3 {
		font-size: 36px;
	}
	.main-title-box .main-title2 .char7 {
		font-size: 30px;
	}
}
@media screen and (max-width:340px) {
	.main-title1 {
		font-size: 42px;
	}
	.main-title1 .char3,
	.main-title2,
	.main-title3 {
		font-size: 30px;
	}
	.main-title-box .main-title2 .char7 {
		font-size: 24px;
	}
}

/* アニメーションCSS*/
.randomAnime {
	visibility: hidden;
}

/* アニメーション「ふわっ」*/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
  opacity: 0;
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .fadeUp {
    -webkit-animation-delay: 3.5s;
            animation-delay: 3.5s;
  }
}

/*その場でフェードイン*/
.fade-in {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .fade-in {
    -webkit-animation-delay: 4.5s;
            animation-delay: 4.5s;
  }
}

@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Loading背景画面設定 */
#splash {
position: fixed;
width: 100%;
height: 100%;
z-index: 999;
text-align:center;
color:#FFFFFF;
}

/* Loading画像中央配置*/
#splash_text {
position: absolute;
top: 50%;
left: 50%;
z-index: 999;
transform: translate(-50%, -50%);
color: #FFFFFF;
width: 100%;
}

#splash_text svg{
	height: 2px;
}

/*割れる画面のアニメーション*/
.loader_cover {
  width: 100%;
  height: 50%;
  background-color: #333333;
  transition: all 0.2s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transform: scaleY(1);
}
/*上の画面*/
.loader_cover-up {
	transform-origin: center top;
}
/*下の画面*/
.loader_cover-down {
	position: absolute;
	bottom: 0;
	transform-origin: center bottom;
}
/*クラス名がついたらY軸方向に0*/
.coveranime {
	transform: scaleY(0);
}


/* マスクアニメーション */
@-webkit-keyframes animate-panel {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }
  49% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  50% {
    transform-origin: right top;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: right top;
    transform: scale(0, 1);
  }
}
@keyframes animate-panel {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }
  49% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  50% {
    transform-origin: right top;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: right top;
    transform: scale(0, 1);
  }
}
@-webkit-keyframes animate-content {
  0% {
    visibility: hidden;
  }
  49% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  100% {
    visibility: visible;
  }
}
@keyframes animate-content {
  0% {
    visibility: hidden;
  }
  49% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  100% {
    visibility: visible;
  }
}
.mask_wrap {
  display: inline-block;
}
.mask_wrap .mask_inner {
  position: relative;
  visibility: hidden;
}
.mask_wrap .mask_inner::after {
  content: "";
  background: #333333;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: all 0.3s ease 0s;
  visibility: visible;
}
.mask_wrap .mask_inner.start {
  -webkit-animation-name: animate-content;
          animation-name: animate-content;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.mask_wrap .mask_inner.start::after {
  -webkit-animation-name: animate-panel;
          animation-name: animate-panel;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}