@charset "UTF-8";

main {
    overflow: hidden;
}

section.page_title_area {
    padding: 160px 0 40px;
    border-bottom: 1px solid #ddd;
}

.page_title_area h1 {
    font-size: 5.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -1px;
    display: flex;
    width: 90%;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
    max-width: 1100px;
}

.page_title_area h1 span {
    font-size: 2rem;
    letter-spacing: 0;
    margin-left: 15px;
    font-weight: 700;
    border-left: 1px solid;
    border-right: 1px solid;
    padding: 0 30px;
}

section.statement {
    padding: 150px 0 100px;
}

.statement_inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 90%;
}

h2.statement_title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 30px;
}

p.statement_cap {
    font-size: 1.6rem;
    line-height: 30px;
    font-weight: 500;
}

.statement_graph {
    margin: 100px 0 0;
}

ul.statement_company {
    max-width: 1100px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

ul.statement_company li {
    background: linear-gradient(210deg, rgba(0, 0, 0, 0.016) 0%, rgb(255, 255, 255) 100%);
    box-shadow: rgba(0, 0, 0, 0.016) -8px 8px 5px, rgba(255, 255, 255, 0.3) 4px -3px 2px;
    padding: 2%;
    border-radius: 5px;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service_inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    width: 90%;
    gap: 40px;
}

h3.service_box_title {
    display: block;
    font-size: 1.8rem;
    margin-top: 20px;
    font-weight: 500;
    line-height: 180%;
    width: 50%;
}

h3.service_box_title span {
    font-size: 3rem;
    font-weight: 600;
    display: flex;
    z-index: 999;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 15px;
    width: 100%;
    position: relative;
    border-left: 3px solid #0414ac;
}

h3.service_box_title i {
    font-size: 4rem;
    align-items: center;
    margin-right: 8px;
	color: #0426A0;
}

p.service_box_cap {
    font-weight: 400;
    line-height: 180%;
    margin: 0 0 40px 0;
    font-size: 1.4rem;
}

.service_box {
    padding: 6%;
    position: relative;
    border-top: 1px solid #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.035);
    border-radius: 8px;
    justify-content: space-between;
    display: flex;
    border-right: 1px solid #fff;
    align-items: center;
    background: linear-gradient(210deg, rgba(0, 0, 0, 0.016) 0%, rgb(255, 255, 255) 100%);
}

.service_box_contents {
    border-left: 1px solid #ddd;
    width: 50%;
    padding-left: 8%;
}

ul.service_example {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

ul.service_example li {
    padding: 7px 12px 4px;
    color: #666;
    background: #eee;
    font-size: 1.3rem;
}

.service_box:before {
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    top: 20%;
    position: absolute;
    left: 0;
}

section.contactus {
    padding: 50px 0;
    width: 90%;
    margin: 0 auto;
}

h2.contactus_title {
    font-size: 2.2rem;
    font-weight: 500;
}

p.contactus_cap {
    font-size: 1.4rem;
    color: #555;
    margin-top: 15px;
}

.contactus_link {
    display: block;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 15px 0;
    height: auto;
    overflow: hidden;
    border-radius: 100px;
    width: 100%;
    font-family: "Work Sans", sans-serif;
    position: relative;
    text-align: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.contactus_link span {
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    text-align: center;
	display: block;
    color: #fff;
    font-weight: 600;
	z-index: 9999;
	position: relative;
}

.contactus_link:hover {
	color: #fff;
	box-shadow: 0 15px 24px rgba(0,0,0,0.025), 0 6px 10px rgba(0,0,0,0.015);
}

.contactus_link:hover span {
	color: #fff;
}

.contactus_link:after {
	position: absolute;
	width: 0;
	height: 100%;
	background: #0426A0;
	content: "";
	display: block;
	left: 0;
	top: 0;
	border-radius: 100px;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
}

.contactus_link:hover:after {
	background: #0426A0;
	position: absolute;
	width:100%;
	height: 100%;
}

.contactus_contents {
    width: 70%;
    border-right: 1px solid #ddd;
}

.contactus_link_wrapper {
    width: 24%;
}

.contactus_inner {
    padding: 5%;
    background: #fff;
    max-width: 1100px;
    align-items: center;
    display: flex;
    margin: 50px auto;
    box-shadow: 0 15px 30px rgba(0,0,0,0.035);
    border-radius: 10px;
    justify-content: space-between;
}

#loopslider03 {
    margin: 0 auto;
    width: auto;
    height: 133px;
    text-align: left;
    position: relative;
    top: 0px;
    overflow: hidden;
}

#loopslider03 ul {
    height: auto;
    float: left;
    display: inline;
    overflow: hidden;
}

#loopslider03 ul li {
    width: auto;
    height: 136px;
    white-space: nowrap;
    float: left;
    display: inline;
    overflow: hidden;
}

.bottom_phrase ul li {
    color: #1b1b1b;
    font-size: 20rem;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    letter-spacing: -10px;
    line-height: 130px;
}

.bottom_phrase:before {
	content:"";
	display: none;
	width: 100%;
	left: 0;
	z-index: 99;
	top: 0px;
	height: 1px;
	background: #1b1b1b;
	position: absolute;
}

.bgextend {
    animation-name:bgextendAnimeBase;
    animation-duration:1s;
    animation-fill-mode:forwards;
    position: relative;
    overflow: hidden;
    opacity:0;
}
@keyframes bgextendAnimeBase{
    from {
      opacity:0;
    }
    to {
      opacity:1;  
    }
}
.textAppear {
    animation-name:bgextendAnimeSecond;
    animation-duration:1s;
    animation-delay: 0.6s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes bgextendAnimeSecond{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.backgroundExtend::before {
    animation-name:extendAnimation;
    animation-duration:1s;
    animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 70px;
    background: #0414ac;
    top: 0;
    left: 0;
}
@keyframes extendAnimation{
    0% {
        transform-origin:left;
        transform:scaleX(0);
    }
    50% {
        transform-origin:left;
        transform:scaleX(1);
    }
    50.001% {
        transform-origin:right;
    }
    100% {
        transform-origin:right;
        transform:scaleX(0);
    }
}
.bgappearTrigger,.bgRLextendTrigger {
    opacity: 0;
}


.bgextend2 {
    animation-name:bgextendAnimeBase;
    animation-duration:1s;
    animation-fill-mode:forwards;
    position: relative;
    overflow: hidden;
    opacity:0;
}
@keyframes bgextendAnimeBase{
    from {
      opacity:0;
    }
    to {
      opacity:1;  
    }
}
.textAppear2 {
    animation-name:bgextendAnimeSecond;
    animation-duration:1s;
    animation-delay: 0.6s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes bgextendAnimeSecond{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.backgroundExtend2::before {
    animation-name:extendAnimation;
    animation-duration:1s;
    animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    background: #0414ac;
}
@keyframes extendAnimation{
    0% {
        transform-origin:left;
        transform:scaleX(0);
    }
    50% {
        transform-origin:left;
        transform:scaleX(1);
    }
    50.001% {
        transform-origin:right;
    }
    100% {
        transform-origin:right;
        transform:scaleX(0);
    }
}
.bgappearTrigger2,.bgRLextendTrigger2 {
    opacity: 0;
}

.bgextend3 {
    animation-name:bgextendAnimeBase;
    animation-duration:1s;
    animation-fill-mode:forwards;
    position: relative;
    overflow: hidden;
    opacity:0;
}
@keyframes bgextendAnimeBase{
    from {
      opacity:0;
    }
    to {
      opacity:1;  
    }
}
.textAppear3 {
    animation-name:bgextendAnimeSecond;
    animation-duration:1s;
    animation-delay: 0.6s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes bgextendAnimeSecond{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.backgroundExtend3::before {
    animation-name:extendAnimation;
    animation-duration:1s;
    animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 80px;
    background-color: #0414ac;
    top: 0;
    left: 0;
}
@keyframes extendAnimation{
    0% {
        transform-origin:left;
        transform:scaleX(0);
    }
    50% {
        transform-origin:left;
        transform:scaleX(1);
    }
    50.001% {
        transform-origin:right;
    }
    100% {
        transform-origin:right;
        transform:scaleX(0);
    }
}
.bgappearTrigger3,.bgRLextendTrigger3 {
    opacity: 0;
}

span.bgappearTrigger2.textAppear2 {
    margin-left: -30px;
}

span.bgappearTrigger.textAppear {
    margin-left: -30px;
}

.service_more_link {
    padding: 40px 50px;
    height: 100%;
    width: 100%;
    border-top: 1px solid #1b1b1b;
    display: block;
    position: relative;
    margin: 0 auto;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

.others_arrow {
    width: 30px;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
	position: relative;
}

.service_more_link:hover .others_arrow {
filter:invert(100%) sepia(0%) saturate(1%) hue-rotate(348deg) brightness(107%) contrast(101%)
}
	
.service_others_link_text p {
    color: #1b1b1b;
    font-weight: 500;
    z-index: 9999;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    position: relative;
}

.service_more_link span {
	transition: all 0.25s ease-in-out;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
    display: flex;
    color: #1b1b1b;
    font-weight: 600;
    justify-content: space-between;
    z-index: 9999;
    font-size: 2rem;
    position: relative;
    border-left: 1px solid #1b1b1b;
    margin-bottom: 20px;
    padding-left: 10px;
}

.service_more_link:hover {
	color: #fff;
	box-shadow: 0 15px 24px rgba(0,0,0,0.025), 0 6px 10px rgba(0,0,0,0.015);
}

.service_more_link:hover span {
	color: #fff;
    border-left: 1px solid #fff;
}

.service_more_link:after {
	position: absolute;
	width: 0;
	height: 100%;
	background: #1b1b1b;
	content: "";
	display: block;
	left: 0;
	top: 0;
	transition: all 0.25s ease-in-out;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
}

.service_more_link:hover .service_others_link_text p {
	color: #fff;
}

.service_more_link:hover:after {
	background: #1b1b1b;
	position: absolute;
	width:100%;
	height: 100%;
}

.service_others {
	background-color: #f5f5f5;
}

ul.service_others_link_area {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1100px;
    width: 90%;
    border-bottom: 1px solid #1b1b1b;
    margin: 100px auto 0;
}

ul.service_others_link_area li:first-child a {
}

ul.service_others_link_area li:nth-child(2) a {border-left: 1px solid #1b1b1b;}

ul.service_others_link_area li {
    margin: 0;
    width: 50%;
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {

.page_title_area h1 {
    font-size: 3.2rem;
    width: 88%;
    font-weight: 600;
    margin: 0 auto 5vh;
}

section.page_title_area {
    padding: 150px 0 0;
}
	
#loopslider03 {
	height: 100px;	
}

.bottom_phrase ul li {
	font-size: 10rem;
	line-height: 140px;
	letter-spacing: -7px;
}
	
h2.statement_title {
    font-size: 2.2rem;
    line-height: 36px;
}

h2.statement_title br {
    display: none;
}

p.statement_cap {
    font-size: 1.4rem;
    line-height: 25px;
}

ul.statement_company {
    flex-wrap: wrap;
    width: 90%;
    gap: 0;
}

ul.statement_company li {
    width: 47%;
    margin: 1% 1% 3% 0;
}

section.statement {
    padding: 10vh 0;
}

.statement_graph {
    margin: 5vh 0 0;
}

.service_box {
    display: block;
    padding: 8%;
    flex-wrap: wrap;
}

h3.service_box_title span {
    display: flex;
    font-size: 2.2rem;
    width: 100%;
}

.service_box_contents {
    display: block;
    width: 100%;
}

h3.service_box_title {
}

h3.service_box_title i {
    font-size: 3rem;
    margin-right: 5px;
}

h3.service_box_title {
    font-size: 1.6rem;
    line-height: 160%;
    margin: 20px 0;
}

.service_box_contents {
    padding: 0;
    border: none;
}

p.service_box_cap {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 0 20px;
}

.service_inner {
    gap: 20px;
}

ul.service_others_link_area {
    display: block;
    width: 100%;
    margin: 0 auto;
}

ul.service_others_link_area li {
    width: 100%;
    margin: 0 auto;
}

.service_more_link {
    padding: 30px 6%;
}

.service_others {
    padding-top: 10vh;
}

ul.service_others_link_area li:first-child a {
    border-right: none;
    border-bottom: none;
}

ul.service_others_link_area li:nth-child(2) a {
    border-left: none;
    border-bottom: none;
}
	
section.contactus {
    padding: 5vh 6% 1px;
    display: grid;
    width: 100%;
    gap: 20px;
}

.contactus_inner {
    display: block;
    padding: 8%;
    margin: 0 auto;
}

.contactus_contents {
    width: 100%;
    border: none;
}

.contactus_link_wrapper {
    width: 240px;
    margin: 20px auto 0;
}
	
.contents_link_cap_title {
    margin-bottom: 10px;
}

h2.contactus_title {
    font-size: 1.8rem;
}

.contactus_link {
    padding: 12px 0;
}
}