/* -----
	
	Reset
	
------------------------------ */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,  figure, figcaption, footer, header, hgroup,  menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse; 
	border-spacing: 0;
}

input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* -----
	
	Font Setting
	
------------------------------ */
	
/* -----
	Font Face
------------------------------ */

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans JP', YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

::selection {
	background: #ccc;
}

::-moz-selection{
	background: #ccc;
}

/* IE10以上 */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

/* -----
	Font Basic Style
------------------------------ */

html {
	font-size: 62.5%;
	-webkit-font-smoothing: antialiased;
}

body {
	color: var(--text_color);
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1;
}

p {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.75;
}

a, a img {
	color: var(--link_color);
	text-decoration: none;
	opacity: 1;
	transition: all .5s cubic-bezier(.215,.61,.355,1);
}

a:hover,
a:hover img {
	opacity: .75;
}

i {
	font-style: italic; 
}

b, em, strong {
	font-weight: 700;
}

small {
	font-size: 1.2rem;
}

ul, ol {
	list-style: none;
	font-size: 0;
}

table {
    width: 100%;
	box-sizing: border-box;
    border-spacing: 0;
	overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 768px) {
	
p {
	font-size: 1.5rem;
}
	
}

/* -----
	
	:root
	
------------------------------ */

:root {

    /* Font Style */
    --ja: 'Noto Sans JP', YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    --en: 'Rubik', sans-serif;
	
	/* Color */
	--red: #e1251b;
	--black: #222;
    --navy: #344055;
	--gray: #ddd;
    --blue: #167ac6;
	
	/* Color Style */
	--main_color: var(--red);
    --second_color: var(--navy);
	--text_color: var(--black);
	--line_color: var(--gray);
	--link_color: var(--blue);
	
	/* Shadow */
	--shadow_01: drop-shadow(5px 5px 10px rgba(0,0,0,.5));	

}

@media screen and (min-width: 768px) {}

/* -----
	
	Initial Setting
	
------------------------------ */

html {
	width: 100%;
	height: 100%;
}

body{
	width: 100%;
	height: auto;
	position: relative;
}

#wrap {
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 0;
}

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

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		 -o-box-sizing: border-box;
			box-sizing: border-box;
}

img {
	display:block;
	max-width:100%;
	height: auto;
	border:none;
	line-height: 1;
}

.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* -----

	Media Queries

------------------------------ */

.sp {
	display: block;
}

.pc {
	display: none!important;
}

/* -----
	781px 以上
------------------------------ */

@media screen and (min-width: 781px) {
	
.sp {
	display: none;
}
	
.pc {
	display: block!important;
}
	
}

/* -----
	
	Loading
	
------------------------------ */

#loading {
	position: fixed;
	height: 100vh;
	width: 100vw;
	background-color: #fff;
	overflow: hidden;
	opacity: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	backface-visibility: hidden;
}

/* -----

	Header

------------------------------ */

#header {
	width: 100%;
    position: fixed;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
    padding: 15px;
    top: 0;
    left: 0;
    z-index: 100;
}

.header_logo img {
    height: 30px;
}

.header_logo span {
    display: block;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	margin-top: 5px;
}

#header .sns {
	display: flex;
	align-items: center;
}

#header .sns li {
	margin-left: 10px;
}

#header .sns a {
	color: #fff;
	font-size: 1.8rem;
}

@media screen and (min-width: 768px) {

#header {
    padding: 30px 40px;
}
	
.header_logo {
    display: flex;
	align-items: center;
}

.header_logo img {
    height: 45px;
}

.header_logo span {
	font-size: 1.2rem;
	font-weight: 700;
	margin-top: 0;
	margin-left: 20px;
}
	
}
	
/* -----

	Main

------------------------------ */

/* -----
	Common
------------------------------ */

.sec_head {
    font-family: var(--en);
    font-size: 3.6rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .05em;
    margin-bottom: 30px;
}

.sec_head span {
    display: block;
    font-family: var(--ja);
    font-size: 1.5rem;
    font-weight: 900;
    margin-top: 7px;
}

@media screen and (min-width: 768px) {

.sec_head {
    font-size: 4.8rem;
}

.sec_head span {
    font-size: 1.6rem;
}

}

/* -----
	Main Visual
------------------------------ */

.mv_wrap {
    position: relative;
    height: 70vh;
    background: url('../img/lp/company/visual/mv/mv_bg.png');
	background-repeat: no-repeat;
	background-position: center left;
	background-size: cover;
}

.mv_wrap .people {
    position: absolute;
	width: 80%;
    right: -30px;
    bottom: 0;
}

.mv_wrap .inner {
    position: absolute;
    top: 45%;
    left: 20px;
    transform: translateY(-50%);
}

.mv_wrap .inner .copy {
	width: 200px;
	margin-top: 15px;
}

.mv_wrap .inner .copy span {
    display: block;
    color: var(--text_color);
    font-family: var(--ja);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.5;
}

.mv_wrap .inner .copy span.text_1 {
    margin-bottom: 10px;
}

.mv_wrap .inner .copy span.text_2 {
    margin-bottom: 15px;
}

.mv_wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 14vw solid var(--main_color);
    border-left: 100vw solid transparent;
	z-index: 1;
}

.mv_wrap .download_btn {
    width: 100%;
    position: absolute;
    padding: 0 20px;
    bottom: 0;
    left: 0;
    animation: floating 4s ease-in-out infinite;
    z-index: 1;
}

@media screen and (min-width: 768px) {

.mv_wrap {
    height: 80vh;
}

.mv_wrap .people {
	width: 30vw;
    right: 20vw;
    bottom: 0;
}

.mv_wrap .inner {
    top: 45%;
    left: 15vw;
}

.mv_wrap .inner .copy {
	width: 400px;
	margin-top: 15px;
}


.mv_wrap .inner .copy span {
    font-size: 2.4rem;
}

.mv_wrap .inner .copy span.text_1 {
	margin-bottom: 20px;
}

.mv_wrap .inner .copy span.text_2 {
	margin-bottom: 20px;
}

.mv_wrap::before {
    border-bottom: 7vw solid var(--main_color);
}

.mv_wrap .download_btn {
    width: 100%;
	max-width: 400px;
    position: absolute;
    padding: 0;
    bottom: 0;
    left: 5vw;
}
	
}

/* -----
	Scroll Bar
------------------------------ */

.mv_scroll {
	position: absolute;
	width: 2px;
	background: var(--main_color);
	height: 100px;
	border-radius: 2px;
	overflow: hidden;
	right: 40px;
	bottom: 40px;
	z-index: 10;
}

.mv_scroll_pointer {
    width: 2px;
    height: 100%;
    display: block;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 50%, rgba(0,0,0,0) 50%);
    background-position: 0 -100px;
    background-size: 100% 200%;
    animation: scrolldown 2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrolldown {
  0% {
    background-position: 0 -100px;
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100px;
  }
}


/* -----
	About Section
------------------------------ */

.about_sec {
    position: relative;
    padding: 60px 20px;
    background: var(--main_color);
	overflow: hidden;
}

.about_sec .bg_text_animation {
	position: absolute;
	display: flex;
	align-items: center;
	height: 300px;
	opacity: .15;
	top: 50%;
	transform: translateY(-50%);
}

.about_sec .bg_text_animation .row:first-child {
	animation: slide1 60s -30s linear infinite;
}

.about_sec .bg_text_animation .row:last-child {
	animation: slide2 60s linear infinite;
}

.about_sec .bg_text_animation img {
	height: 300px;
	max-width: none;
}

.about_sec .sec_head {
    color: #fff;
}

.about_sec p {
    color: #fff;
    margin-bottom: 30px;
}

.about_sec figure iframe {
    max-width: 100%;
}

.about_sec .video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.about_sec .video iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 768px) {

.about_sec {
    position: relative;
    padding: 100px 0;
    background: var(--main_color);
}

.about_sec .inner {
	display: flex;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
}
	
.about_sec .inner .text {
	padding-right: 40px;
	width: 40%;
}

.about_sec .inner .movie {
	width: 60%;
}

.about_sec .sec_head {
	text-align: left;	
}
	
}

/* -----
	Problem Section
------------------------------ */

.problem_sec {
	position: relative;
    padding: 60px 20px;
}

.problem_sec::before {
	content: '';
	display: block;
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	background-image: radial-gradient(#E1251B 10%, transparent 20%), radial-gradient(#E1251B 10%, transparent 20%);
	background-position: 0 0, 10px 10px;
	background-size: 5px 5px;
	opacity: .5;
	z-index: -1;
}

.problem_sec h2 {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

.problem_sec h2 span {
	display: block;
	color: var(--main_color);
	font-size: 1.8rem;
	text-decoration: underline;
	margin-bottom: 15px;
}

.problem_list_wrap {
    position: relative;
}

.problem_list {
	position: relative;
	display: flex;
	justify-content: right;
	align-items: center;
	margin-bottom: 40px;
}

.problem_list:nth-child(2n) {
	justify-content: left;
}

.problem_list:last-child {
	margin-bottom: 0;
}

.problem_list h3 {
	width: 75%;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
	line-height: 1.5;
	padding: 15px 25px;
	border: solid 2px var(--text_color);
	border-radius: 5px;
	background: #fff;
}

.problem_list .illust {
	width: 35%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.problem_list:nth-child(2n) .illust {
	left: auto;
	right: 0;
}

.problem_list .illust img {
	width: 100%;
}

.problem_message {
	position: relative;
    padding: 20px 20px 60px;
	color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
	line-height: 1.5;
    text-align: center;
	background: var(--main_color);
}

.problem_message::before {
   content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom: 14vw solid #fff;
	border-left: 100vw solid transparent;
}

.problem_message::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom: 14vw solid #fff;
	border-right: 100vw solid transparent;
}

@media screen and (min-width: 768px) {

.problem_sec {
    padding: 100px 0;
}

.problem_sec h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
}
	
.problem_sec h2 span {
    font-size: 2rem;
}
	
.problem_list_wrap {
    position: relative;
	display: flex;
	max-width: 1180px;
	margin: 0 auto;
}

.problem_list {
	width: 25%;
	display: block;
	margin-bottom: 0;
	margin-right: 20px;
}

.problem_list:last-child {
	margin-right: 0;
}

.problem_list h3 {
	width: 100%;
    font-size: 1.6rem;
	height: 125px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
}

.problem_list .illust {
	width: 100%;
	position: relative;
	transform: none;
	top: -30px;
}

.problem_list .illust img {
	width: 200px;
	margin: 0 auto;
}

.problem_message {
    padding: 40px 20px 100px;
    font-size: 3.6rem;
}
	
.problem_message::before {
	border-bottom: 7vw solid #fff;
}

.problem_message::after {
	border-bottom: 7vw solid #fff;
}
	
}

/* -----
	Service Section
------------------------------ */

.service_sec {
    position: relative;
}

.service_sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-top: 14vw solid #fff;
    border-right: 100vw solid transparent;
    z-index: 9;
}

.service_sec::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 14vw solid var(--main_color);
    border-left: 100vw solid transparent;
    z-index: 9;
}

.service_sec .sec_head {
    position: absolute;
    width: 100%;
    color: var(--main_color);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.service_list_wrap {
    position: relative;
}

.service_list_wrap .download_btn {
    position: absolute;
    bottom: 10px;
    left: 20px;
    z-index: 10;
    animation: floating 4s ease-in-out infinite;
}

.service_list {
	position: relative;
    padding: 60px 20px 0;
    background: #e1e1e1;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.service_list:not(:first-child) {
	border-bottom: solid 1px #fff;
}

.service_list.job-offer {
	background-image: url("../img/lp/company/visual/service/bg/job-offer_bg.jpg");
}

.service_list.internship {
	background-image: url("../img/lp/company/visual/service/bg/internship_bg.jpg");
}

.service_list.design {
	background-image: url("../img/lp/company/visual/service/bg/design_bg.jpg");
}

.service_list.seminer {
	background-image: url("../img/lp/company/visual/service/bg/seminer_bg.jpg");
}

.service_list .detail h3 {
    color: var(--main_color);
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 20px;
}

.service_list .detail h3 span {
    display: block;
    color: var(--text_color);
    font-size: 1.6rem;
    margin-bottom: 7px;
}

.service_list .detail p {
    min-height: 125px;
    padding: 0 20px;
}

.service_list .visual img {
    width: 80%;
    margin: 0 auto;
}

.service_list_wrap .navigation_wrap {
    position: absolute;
    display: flex;
    right: 20px;
    bottom: 40px;
    z-index: 10;
}

.service_list_wrap .swiper-button-next, .service_list_wrap .swiper-button-prev {
    position: static;
    width: 35px;
    height: 35px;
    color: var(--main_color);
    font-size: 1.8rem;
    text-align: center;
    line-height: 35px;
    background: #fff;
    border: solid 2px var(--main_color);
    border-radius: 20px;
    margin-left: 10px;
    top: auto;
}

.service_list_wrap .swiper-button-prev i {
    position: relative;
    right: 2px;
}

.service_list_wrap .swiper-button-next i {
    position: relative;
    left: 2px;
}

.service_list_wrap .swiper-pagination {
    width: auto;
    left: auto;
    right: 20px;
    bottom: 15px;
}

.service_list_wrap .swiper-pagination-bullet {
    background: #fff;
    border: solid 2px #fff;
    opacity: 1;
    transition: all 1s cubic-bezier(.215,.61,.355,1);
}

.service_list_wrap .swiper-pagination-bullet-active {
    background: none;
    border: solid 2px #fff;
    transform: scale(1.75);
}

.service_list_wrap .swiper-pagination-bullet:first-child {
    margin-left: 0;
}

.service_list_wrap .swiper-pagination-bullet:last-child {
    margin-right: 0;
}

@media screen and (min-width: 768px) {

.service_sec::before {
    border-top: 7vw solid #fff;
}

.service_sec::after {
    border-bottom: 7vw solid var(--main_color);
}

.service_sec .sec_head {
	font-size: 8rem;
    top: 5vh;
    left: 5vw;
	text-align: left;
    transform: none;
    z-index: 10;
}

.service_list_wrap {
    position: relative;
}

.service_list_wrap .download_btn {
	width: 100%;
	max-width: 400px;
    left: 5vw;
}

.service_list {
    padding: 80px 0 0;
    background: #e1e1e1;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
		
.service_list .inner {
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
}
	
.service_list .detail {
	width: 40%;
	padding-top: 10vh;
}
	
.service_list .visual {
	width: 50%;
}

.service_list .detail h3 {
    font-size: 3.6rem;
    text-align: left;
    margin-bottom: 30px;
}

.service_list .detail h3 span {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service_list .detail p {
    min-height: 120px;
    padding: 0;
}

.service_list .visual img {
    width: 100%;
    margin: 0 auto;
}

.service_list_wrap .navigation_wrap {
    right: 5vw;
    bottom: 10px;
}

.service_list_wrap .swiper-pagination {
    right: 5vw;
    bottom: 0;
}
	
}

/* -----
	Advantage Section
------------------------------ */

.advantage_sec {
	position: relative;
    padding: 60px 20px;
    background: var(--main_color);
	overflow: hidden;
}

.advantage_sec .bg_text_animation {
	position: absolute;
	display: flex;
	align-items: center;
	height: 300px;
	opacity: .15;
	top: 50%;
	transform: translateY(-50%);
}

.advantage_sec .bg_text_animation .row:first-child {
	animation: slide1 60s -30s linear infinite;
}

.advantage_sec .bg_text_animation .row:last-child {
	animation: slide2 60s linear infinite;
}

.advantage_sec .bg_text_animation img {
	height: 300px;
	max-width: none;
}

.advantage_sec .sec_head {
    color: #fff;
}

.advantage_list_wrap {
    position: relative;
}

.advantage_list:not(:last-child) {
    margin-bottom: 40px;
}

.advantage_list .inner h3 {
    position: relative;
	height: 40px;
	color: var(--main_color);
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
	line-height: 40px;
	background: #fff;
	border-radius: 20px;
    margin-bottom: 25px;
}

.advantage_list .inner h3:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid #fff;
}

.advantage_list .inner p {
	color: #fff;
}

@media screen and (min-width: 768px) {

.advantage_sec {
    padding: 100px 0;
}
	
.advantage_sec .sec_head {
    color: #fff;
}

.advantage_list_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1180px;
	margin: 0 auto;
}

.advantage_list {
	width: 30%;
    padding: 20px;
	margin-right: 5%;
    margin-bottom: 40px;
}
	
.advantage_list:nth-child(3n) {
	margin-right: 0;
}

.advantage_list:nth-last-child(1), .advantage_list:nth-last-child(2) {
    margin-bottom: 0;
}
	
}

/* -----
	Service Section
------------------------------ */

.voice_sec {
    padding: 60px 20px;
}
.voice_sec .inner {}

.voice_sec .sec_head {
    margin-bottom: 60px;
}

.voice_sec .sec_head span {
    color: var(--main_color);
}

.voice_list_wrap {}

.voice_list_wrap .voice_list:not(:last-child) {
    padding-bottom: 30px;
    margin-bottom: 50px;
    border-bottom: solid 1px var(--line_color);
}

.voice_list .visual {
    position: relative;
    margin-bottom: 20px;
}

.voice_list .visual span {
    position: absolute;
    color: var(--main_color);
    font-family: var(--en);
    font-size: 6.2rem;
    font-weight: 700;
    text-transform: uppercase;
    top: -30px;
    right: 10px;
}
.voice_list .visual img {
    border-radius: 10px;
}

.voice_list .detail h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.voice_list .detail .status {
    display: flex;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.voice_list .detail .status .company {
    color: var(--main_color);
    margin-right: 10px;
}

.voice_list .detail .status .name {}

.voice_list .detail .status .name span {}

.voice_list .detail .note_wrap {
    display: none;
    padding: 20px;
    border: solid 1px var(--line_color);
    border-radius: 5px;
}

.voice_list .detail .note {
    background-color: #fff; /* 背景色 */
    background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),
                    linear-gradient(180deg, #ccc 1px, transparent 1px);
    background-size: 8px 100%,
                    100% 3em; /* 点線2のサイズ */
    line-height: 3em; /* 文字の高さ */
    padding-bottom: 5px; /* 最終行の下にも罫線を引く */
}

.voice_list .detail p {
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 3rem;
}

@media screen and (min-width: 768px) {}

/* -----
	Merit Section
------------------------------ */

.merit_sec {
    padding: 60px 20px;
}

.merit_sec::before {
	content: '';
	display: block;
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	background-image: radial-gradient(#E1251B 10%, transparent 20%), radial-gradient(#E1251B 10%, transparent 20%);
	background-position: 0 0, 10px 10px;
	background-size: 5px 5px;
	opacity: .5;
	z-index: -1;
}

.merit_sec .sec_head {
    color: var(--main_color);
	margin-bottom: 40px;
}

.merit_sec .sec_head span {
    color: var(--text_color);
}

.merit_list {
    position: relative;
}

.merit_list li {
	position: relative;
	padding: 25px 20px 20px;
	background: #fff;
	border: solid 2px var(--text_color);
	border-radius: 5px;
}

.merit_list li:not(:last-child) {
    margin-bottom: 40px;
}

.merit_list li .num {
	position: absolute;
	display: inline-block;
	color: var(--main_color);
	font-family: var(--en);
    font-size: 2.8rem;
    font-weight: 700;
	left: 50%;
	top: -15px;
	transform: translateX(-50%);
}

.merit_list li .num span {
	padding: 0 10px;
	background: #fff;
}

.merit_list li h3 {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.75;
}

@media screen and (min-width: 768px) {

.merit_sec {
    padding: 80px 0;
}
	
.merit_sec .sec_head {
    margin-bottom: 60px;
}

.merit_list {
	display: flex;
	max-width: 980px;
	margin: 0 auto;
}
	
.merit_list li {
	width: 33.33334%;
	margin-right: 40px;
	margin-bottom: 0;
}
	
.merit_list li:last-child {
	margin-right: 0;
}
	
.merit_list li:not(:last-child) {
    margin-bottom: 0;
}

	
}

/* -----
	Contact Section
------------------------------ */

.contact_sec {
    padding: 60px 0 0;
    background: var(--main_color);
}

.contact_sec .head {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.75;
    margin-bottom: 60px;
    padding: 0 40px;
}

.contact_sec .contact_btn_list {}

.contact_sec .contact_btn {
    width: 100%;
}

.contact_sec .contact_btn:first-child {
    border-bottom: solid 1px var(--main_color);
}

.contact_sec .contact_btn a {
    position: relative;
    display: block;
    color: var(--main_color);
    font-family: var(--en);
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 60px 60px 60px 20px;
    background: #fff;
}

.contact_sec .contact_btn a span {
    display: block;
    font-family: var(--ja);
    color: var(--text_color);
    font-size: 1rem;
    font-weight: 900;
}

.contact_sec .contact_btn a::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.contact_sec .contact_btn.mail a::before {
    content: "\f0e0";
}

.contact_sec .contact_btn.download a::before {
    content: "\f019";
}

@media screen and (min-width: 768px) {

.contact_sec {
    padding: 0;
}

.contact_sec .head {
    font-size: 3.6rem;
	text-align: center;
    margin-bottom: 0;
    padding: 60px 0;
}

.contact_sec .contact_btn_list {
	display: flex;
}

.contact_sec .contact_btn {
	width: 50%;
}

.contact_sec .contact_btn:first-child {
    border-right: solid 1px var(--main_color);
	border-bottom: 0;
}

.contact_sec .contact_btn a {
    font-size: 3.6rem;
    padding: 60px 60px 60px 40px;
}

.contact_sec .contact_btn a span {
    font-size: 1.2rem;
}

.contact_sec .contact_btn a::before {
    right: 40px;
}

.contact_sec .contact_btn.mail a::before {
    content: "\f0e0";
}

.contact_sec .contact_btn.download a::before {
    content: "\f019";
}

}

/* -----

	Footer

------------------------------ */

#footer {
    color: #fff;
    padding: 40px;
    background: var(--second_color);
}

#footer .copy {
    text-align: center;
}

/* -----

	Button

------------------------------ */

/* -----
	Download Button
------------------------------ */

.download_btn a {
    position: relative;
    display: block;
    color: var(--main_color);
    font-family: var(--en);
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 10px 60px 10px 20px;
    background: #fff;
    border-radius: 5px;
}

.download_btn a span {
    display: block;
    font-family: var(--ja);
    color: var(--text_color);
    font-size: 1rem;
    font-weight: 900;
}

.download_btn a::before {
    position: absolute;
	content: "\f019";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {

.download_btn a {
    font-size: 2.8rem;
    padding: 20px 60px 20px 40px;
}

.download_btn a span {
    font-size: 1.2rem;
}

.download_btn a::before {
    right: 30px;
}
	
}

/* -----
	Download Button Min
------------------------------ */

.download_btn_min {
	width: 100%;
	display: block;
	text-align: center;
}

.download_btn_min a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-family: var(--en);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 7px 40px;
    background: var(--main_color);
    border-radius: 30px;
	margin-bottom: 20px;
}

.download_btn_min a span {
    display: block;
    font-family: var(--ja);
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
}

@media screen and (min-width: 768px) {
	
.download_btn_min {
	text-align: left;
}
	
.download_btn_min a {
	margin-bottom: 0;
}
	
}

/* -----

	Animation

------------------------------ */

@keyframes floating {
    0% { transform: translate(0, 0);}
    50% { transform: translate(0, 10px);}
    100% { transform: translate(0, 0);}   
}

/* -----

	Swiper

------------------------------ */

.swiper-button-next, .swiper-button-prev {
    width: auto;
    height: auto;
    margin-top: 0;
    transform: translateY(-50%);
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev::after, .swiper-button-next::after {
    content: none;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}

/* -----

	Animation

------------------------------ */

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
 
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.fi {
	opacity: 0;
	transform: translateY(50px);
	transition: all .75s cubic-bezier(.39,.575,.565,1);
}

.fi.is_loaded,
.fi.is_shown {
	opacity: 1;
	transform: translateY(0);
}
