@charset "UTF-8";
/* CSS Document */
.top {
    height: 680px;
    position: relative;
    margin-bottom: 120px;
}
.services_top_bg{
	width: 100vw;
	height: 680px;
	background-image: url("../images/services_top_bg-08.webp");
  	background-size: cover;
	
  	animation: bg 80s infinite linear;
	
}

@keyframes bg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 680px -680px;
  }
}

.top_wrap {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translatex(-50%);
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 90vw;
    max-width: 1080px;
}
.top_logo {
    width: 20vw;
    max-width: 180px;
    margin-top: 115px;
    margin-right: 15vw;
}
.top_text-box {
    position: relative;
    width: 90vw;
    max-width: 500px;
    height: 600px;
}
.top_text-box_bg {
    position: absolute;
    background-color: #E5E2DE;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    text-align: center;
    z-index: 2;
}
.top_text-box::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 3px;
    left: 3px;
    border-radius: 10px;
    background-color: #666;
    opacity: 0.2;
}
.top_text-box h3 {
    font-size: 24px;
    padding: 80px 0 60px;
}
.top_text-box ul li {
    text-align: center;
    width: 160px;
    margin: 0 auto;
    padding: 5px 20px 50px;
    color: #C1272D;
    position: relative;
}
.top_text-box ul li::before {
    content: "";
    width: 1px;
    height: 34px;
    transform: rotate(25deg);
    background-color: #C1272D;
    position: absolute;
    top: 0;
    left: 0;
}
.top_text-box ul li::after {
    content: "";
    width: 1px;
    height: 34px;
    transform: rotate(25deg);
    background-color: #C1272D;
    position: absolute;
    top: 0;
    right: 0;
}
.top_scroll {
    padding-top: 30px;
}
@media (max-width: 1025px) {
    .top_logo {
        margin-right: 10vw;
    }
}
@media (max-width: 780px) {
    .top {
        margin-bottom: 80px;
    }
    .top_wrap {
        display: block;
        bottom: -40px;
        text-align: center;
    }
    .top_logo {
        width: 180px;
        margin: 0 0 30px 0;
    }
    .top_text-box {
        text-align: left;
        margin: 0 auto;
        height: 500px;
    }
    .top_text-box h3 {
        padding: 60px 0 40px;
    }
    .top_text-box ul li {
        text-align: center;
        width: 160px;
        margin: 0 auto;
        padding: 5px 20px 40px;
        color: #C1272D;
        position: relative;
    }
    .top_scroll {
        padding-top: 0px;
    }
}
@media (max-width: 500px) {
    .top_logo {
        display: none;
    }
}
@media (max-width: 400px) {
    .top_text-box h3 {
        font-size: 20px;
    }
}
.points {
    width: 90vw;
    max-width: 1080px;
    margin: 0 auto 120px;
}
.points_wrap ul li {
    position: relative;
    margin-bottom: 80px;
}
.points_wrap ul li::before {
    content: "";
    width: 80px;
    height: 1px;
    background-color: #C1272D;
    position: absolute;
}
.points_wrap ul li:nth-child(1)::before {
    transform: rotate(30deg) translateX(-105%);
    top: 72%;
    left: 52%;
}
.points_wrap ul li:nth-child(2)::before {
    transform: rotate(30deg) translateX(105%);
    top: 13%;
    right: 52%;
}
.points_wrap ul li:nth-child(3)::before {
    transform: rotate(30deg) translateX(-105%);
    top: 30%;
    left: 52%;
}
.points_wrap ul li:nth-child(4)::before {
    transform: rotate(30deg) translateX(105%);
    top: 25%;
    right: 52%;
}
.points_wrap ul li:nth-child(4)::after {
    content: "";
    width: 80px;
    height: 1px;
    background-color: #C1272D;
    position: absolute;
    transform: rotate(30deg) translateX(105%);
    top: 72%;
    right: 52%;
}
.points_wrap ul li:nth-child(even) {
    text-align: right;
}
.points_wrap ul li img {
    width: 50vw;
    max-width: 500px;
    border-radius: 10px;
    object-fit: cover;
	border: 3px solid rgba(102, 102, 102, 0.2);
	border-top: 0;
	border-left: 0;
}
.points_text-box {
    position: absolute;
    text-align: left;
    width: 45vw;
    max-width: 470px;
    min-width: 300px;
}
.points_wrap ul li:nth-child(1) .points_text-box {
    top: 50%;
    left: 52%;
}
.points_wrap ul li:nth-child(2) .points_text-box {
    top: 0;
    right: 52%;
}
.points_wrap ul li:nth-child(3) .points_text-box {
    top: 10%;
    left: 52%;
}
.points_wrap ul li:nth-child(4) .points_text-box.points_text-box03 {
    top: 10%;
    right: 52%;
    max-width: 360px;
}
.points_wrap ul li:nth-child(4) .points_text-box.points_text-box04 {
    top: 60%;
    right: 52%;
}
.points_topic-box {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.points_topic-box h4 {
    font-size: 20px;
}
.points_topic-box h5 {
    color: #C1272D;
}
.points_text-box p {
    padding: 20px 30px;
    border: 1px solid #C1272D;
}
.points_wrap {
    position: relative;
}
.points_img1, .points_img2 {
    position: absolute;
    width: 20vw;
    max-width: 250px;
    border-radius: 10px;
    object-fit: cover;
	border: 3px solid rgba(102, 102, 102, 0.2);
	border-top: 0;
	border-left: 0;
}
.points_img1 {
    top: 35%;
    left: 40px;
    aspect-ratio: 25 / 33;
    margin-left: 30px;
}
.points_img2 {
    top: 64%;
    right: 40px;
    aspect-ratio: 1 / 1;
    margin-right: 30px;
}




@media (max-width: 1070px) {
    .points_wrap ul li::before {
        display: none;
    }
    .points_wrap ul li:nth-child(4)::after {
        display: none;
    }
}
@media (max-width: 960px) {
    .points_img1, .points_img2 {
        display: none;
    }
}
@media (max-width: 780px) {
    .points {
        margin: 0 auto 80px;
    }
    .points_wrap ul li {
        position: relative;
        margin-bottom: 60px;
    }
    .points_wrap ul li:nth-child(odd) img {
        width: 80vw;
        aspect-ratio: 4 / 3;
        border-radius: 10px;
        object-position: 50% 75%;
    }
    .points_wrap ul li:nth-child(4) {
        text-align: center;
    }
    .points_wrap ul li:nth-child(1) {
        padding-bottom: 128px;
    }
    .points_wrap ul li:nth-child(1) .points_text-box {
        top: 100%;
        left: 100%;
        transform: translate(-100%, -100%);
    }
    .points_wrap ul li:nth-child(2) .points_text-box {
        top: 10%;
        min-width: 200px;
    }
    .points_wrap ul li:nth-child(3) {
        padding-top: 173px;
    }
    .points_wrap ul li:nth-child(3) .points_text-box {
        top: 0;
        left: 100%;
        transform: translateX(-100%);
    }
    .points_wrap ul li:nth-child(4) {
        padding-top: 173px;
        padding-bottom: 152px;
    }
    .points_wrap ul li:nth-child(4) .points_text-box.points_text-box03 {
        top: 0;
        right: 100%;
        max-width: 360px;
        transform: translateX(100%);
    }
    .points_wrap ul li:nth-child(4) .points_text-box.points_text-box04 {
        top: 100%;
        right: 0;
        transform: translateY(-100%);
    }
    .points_wrap ul li:nth-child(1) .points_topic-box, .points_wrap ul li:nth-child(4) .points_text-box04 .points_topic-box {
        justify-content: flex-start;
        flex-direction: row-reverse;
    }
    .points_wrap ul li:nth-child(2) .points_topic-box, .points_wrap ul li:nth-child(3) .points_topic-box, .points_wrap ul li:nth-child(4) .points_text-box03 .points_topic-box {
        justify-content: flex-end;
        flex-direction: row-reverse;
    }
    .points_topic-box h4 {
        font-size: 14px;
        padding-left: 10px;
    }
    .points_topic-box h5 {
        font-size: 14px;
    }
}
@media (max-width: 500px) {
    .points {
        width: 100vw;
    }
    .points_title.title {
        width: 90vw;
        max-width: 1080px;
        margin: 0 auto;
    }
    .points_wrap ul li:nth-child(odd) img {
        width: 90vw;
        aspect-ratio: 4 / 3;
        border-radius: 10px;
        object-position: 50% 75%;
    }
    .points_wrap ul li:nth-child(even) img {
        width: 90vw;
    }
    .points_wrap ul li:nth-child(2) {
        padding-top: 173px;
    }
    .points_wrap ul li:nth-child(2) .points_text-box {
        top: 0;
        right: 100%;
        transform: translateX(100%);
        min-width: 300px;
    }
}
.default {
    width: 90vw;
    max-width: 1080px;
    margin: 0 auto 120px;
}
.default_title.title h3 {
    padding-bottom: 10px;
}
.default_box {
    border: 1px solid #C1272D;
    background-color: #fff;
    padding: 30px;
    position: relative;
}
.default_box::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(102, 102, 102, 0.2);
    position: absolute;
    top: 3px;
    left: 3px;
    z-index: -5;
}
.default_tab-btn span {
    color: #C1272D;
    display: block;
    width: 50%;
    float: left;
    text-align: center;
    position: relative;
    padding: 4px 0;
}
.default_tab-btn span::before {
    content: "";
    width: 1px;
    height: 34px;
    transform: rotate(25deg);
    background-color: #C1272D;
    position: absolute;
    top: 0;
    left: 30%;
}
.default_tab-btn span::after {
    content: "";
    width: 1px;
    height: 34px;
    transform: rotate(25deg);
    background-color: #C1272D;
    position: absolute;
    top: 0;
    right: 30%;
}
.default_tab-content {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 40px;
}
.default_tab-content img {
    width: 100%;
    max-width: 450px;
}
@media (max-width: 780px) {
    .default {
        margin: 0 auto 80px;
    }
}
@media (max-width: 500px) {
    .default_box {
        border: none;
        background-color: transparent;
        padding: 0;
        width: 90vw;
        max-width: 1080px;
        margin: 0 auto;
        position: relative;
    }
    .default_box::after {
        content: "";
        width: 100%;
        height: 90vw;
        background: rgba(102, 102, 102, 0.2);
        position: absolute;
        top: 35px;
        left: 3px;
        z-index: -5;
    }
    .default_tab-btn span {
        width: 136px;
    }
    .default_tab-btn span::before {
        left: 7px;
    }
    .default_tab-btn .default_tab-01::after {
        display: none;
    }
    .default_tab-btn .default_tab-02::after {
        right: -11px;
    }
    .default_tab-content {
        border: 1px solid #C1272D;
        padding: 30px;
        background: #fff;
        display: inline-block;
        color: #333;
        width: 100%;
        max-width: 1080px;
        text-align: center;
    }
    #default_lamp {
        width: 136px;
        height: 3px;
        background: #fff;
        display: block;
        position: absolute;
        top: 31px;
        transition: all .3s ease-in;
        -o-transition: all .3s ease-in;
        -webkit-transition: all .3s ease-in;
        -moz-transition: all .3s ease-in;
    }
    #default_lamp.default_tab-02 {
        left: 137px;
        transition: all .3s ease-in;
        -o-transition: all .3s ease-in;
        -webkit-transition: all .3s ease-in;
        -moz-transition: all .3s ease-in;
    }
    #default_lamp.default_tab-02::after {
        display: none;
    }
    #default_lamp.default_tab-01 {
        left: 1px;
        transition: all .3s ease-in;
        -o-transition: all .3s ease-in;
        -webkit-transition: all .3s ease-in;
        -moz-transition: all .3s ease-in;
    }
}
.workflow_containre {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
}
.workflow_title.title h3 {
    padding-bottom: 0;
}
.side-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
}
.workflow_box {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}
.workflow_wrap {
    position: absolute;
    top: 60px;
    left: 0;
    display: flex;
    gap: 0 40px;
    overflow: hidden;
}
.workflow_slide {
    width: 425px;
    height: 481px;
    background-color: #E5E2DE;
    position: relative;
    border-radius: 10px;
    margin: 45px 0 0 0;
    padding: 60px;
    text-align: center;
}
.workflow_slide::after {
    content: "";
    color: #C1272D;
    position: absolute;
    top: 50%;
    right: -28px;
    transform: rotate(45deg) translate(-50%);
    border: 1px solid #C1272D;
    width: 15px;
    height: 15px;
    border-bottom: 0;
    border-left: 0;
}
.workflow_no {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    font-size: 100px;
    font-family: Ayuthaya, Arial, Helvetica, "sans-serif";
    color: #C1272D;
}
.workflow_slide img {
    width: 200px;
    background-color: #fff;
    border-radius: 100%;
}
.workflow_slide h3 {
    font-size: 24px;
    padding: 40px 0 30px;
    text-align: left;
}
.workflow_text {
    text-align: left;
}
@media (max-width: 500px) {
    .workflow_slide {
        width: 320px;
        padding: 40px;
    }
    .workflow_slide h3 {
        font-size: 16px;
        font-weight: 600;
        padding: 30px 0 20px;
    }
}