@charset "utf-8";
@import "./reset.css";

html {
    font-size: calc(100vw * 10 / 1512);
    scroll-behavior: smooth;
}
@media screen and (max-width: 390px) {
    html {
        font-size: calc(100vw * 10 / 390);
    }
}
* {
    color: #060F28;
    box-sizing: border-box;
}
body {
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: #FFF;
    position: relative;
}
body.active {
    overflow: hidden;
}
.wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.object-fit {
	overflow: hidden;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
body {
    overflow: auto;
}
body.active {
    overflow: hidden;
}
@media screen and (max-width: 1000px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
/* @media screen and (min-width: 1000px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
} */



/* font */
.eg {
    font-family: "din-2014", sans-serif;
    font-style: normal;
}
.jp {
    font-family: "zen-kaku-gothic-new", sans-serif;
    font-weight: 700;
    font-style: normal;
}





/* color */
:root {
    --blue: #55A3F2;
    --green: #00B900;
    --grey: #F7F7F7;
}





/* HEADER */
header {
    width: 100%;
    padding: 15px 0;
    position: relative;
    z-index: 99;
}
.header-fix {
    display: none;
}
.header-fix.active {
    display: block;
    background: #FFF;
    box-shadow: 0 0 10px rgba(14, 48, 85, .3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    animation: slideIn .5s ease 0s normal both;
}
body.active .header-fix.active {
    box-shadow: none;
}
@keyframes slideIn {
    0% {
        top: -100%;
    }
    100% {
        top: 0;
    }
}
.header__inner {
    margin: 0 30px;
    display: flex;
    justify-content: space-between;
}
.header__logo {
    width: 60px;
}
.header__logo img {
    width: 100%;
    vertical-align: middle;
}
.header__menu {
    display: flex;
    align-items: center;
    gap: 0 30px;
}
.header__menu nav ul {
    display: flex;
    align-items: center;
    gap: 0 30px;
}
.header__menu nav ul li {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all .5s ease;
}
.header__menu nav ul li:hover {
    color: var(--blue);
    transition: all .5s ease;
}
.header__tel {
    display: block;
}
.header__tel p {
    color: var(--blue);
    font-size: 13px;
    letter-spacing: 0.05em;
    padding-left: 30px;
}
.header__tel__num {
    display: flex;
    align-items: center;
    gap: 0 5px;
}
.header__tel__num__icon {
    width: 25px;
}
.header__tel__num__icon img {
    width: 100%;
    vertical-align: middle;
}
.header__tel__num span {
    color: var(--blue);
    font-size: 24px;
    font-weight: 600;
}
.header__spmenu__btn {
    display: none;
}
.header__spmenu {
    display: none;
}
@media screen and (max-width: 1000px) {
    header {
        padding: 10px 0;
    }
    .header__inner {
        margin: 0 15px;
        align-items: center;
    }
    .header__logo {
        width: 45px;
    }
    .header__menu {
        display: none;
    }
    .header__spmenu__btn {
        display: block;
        width: 30px;
        height: 22px;
        position: relative;
    }
    .header__spmenu__btn span {
        width: 100%;
        height: 1px;
        background: #060F28;
        position: absolute;
        transition: all .3s ease;
    }
    .header__spmenu__btn span:nth-child(1) {
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .header__spmenu__btn.active span:nth-child(1) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        transition: all .3s ease;
    }
    .header__spmenu__btn span:nth-child(2) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .header__spmenu__btn.active span:nth-child(2) {
        display: none;
        transition: all .3s ease;
    }
    .header__spmenu__btn span:nth-child(3) {
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .header__spmenu__btn.active span:nth-child(3) {
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%) rotate(-45deg);
        transition: all .3s ease;
    }
    .header__spmenu {
        display: block;
        width: 100%;
        height: 100vh;
        background: #FFF;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 98;
        opacity: 0;
        pointer-events: none;
        transition: all .3s ease;
    }
    .header__spmenu.active {
        opacity: 1;
        pointer-events: all;
        transition: all .3s ease;
    }
    .header__spmenu__inner {
        width: 90%;
        margin: 100px auto;
        z-index: 98;
    }
    .header__spmenu__nav ul li {
        font-size: 14px;
        letter-spacing: 0.05em;
        padding: 15px 0;
    }
}
@media screen and (max-width: 390px) {
    header {
        padding: 1rem 0;
    }
    .header__inner {
        margin: 0 1.5rem;
    }
    .header__logo {
        width: 4.5rem;
    }
    .header__spmenu__btn {
        width: 3rem;
        height: 2.2rem;
    }
    .header__spmenu__btn span {
        height: .1rem;
    }
    .header__spmenu__inner {
        margin: 10rem auto;
    }
    .header__spmenu__nav ul li {
        font-size: 1.4rem;
        padding: 1.5rem 0;
    }
}




/* FIX */
.fix {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}
.fix__contact {
    padding: 15px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px 0;
}
.fix__contact:hover .fix__contact__icon, .fix__contact:hover p {
    opacity: .4;
    transition: all .5s ease;
}
.fix__contact.line {
    background: var(--green);
}
.fix__contact.mail {
    background: var(--blue);
}
.fix__contact__icon {
    width: 30px;
    transition: all .5s ease;
}
.fix__contact__icon img {
    width: 100%;
    vertical-align: middle;
}
.fix__contact p {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    transition: all .5s ease;
}
.fix__sp {
    display: none;
}
@media screen and (max-width: 1000px) {
    .fix {
        display: none;
    }
    .fix__sp {
        width: 100%;
        padding: 20px 0;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 99;
    }
    .fix__sp.active {
        display: block;
        animation: slideUnder .5s ease 0s normal both;
    }
    @keyframes slideUnder {
        0% {
            bottom: -100%;
        }
        100% {
            bottom: 0;
        }
    }
    .fix__sp__bg {
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, .7);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        position: absolute;
        top: 0;
        left: 0;
    }
    .fix__sp__container {
        width: 95%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        position: relative;
        z-index: 100;
    }
    .fix__sp__contact {
        width: 32%;
        border-radius: 5px;
        padding: 15px 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0 7px;
    }
    .fix__sp__contact.line {
        background: var(--green);
    }
    .fix__sp__contact.tel {
        background: #FFF;
        border: 1px solid var(--blue);
    }
    .fix__sp__contact.mail {
        background: var(--blue);
    }
    .fix__sp__contact__icon {
        width: 28px;
    }
    .fix__sp__contact__icon img {
        width: 100%;
        vertical-align: middle;
    }
    .fix__sp__contact p {
        width: calc(100% - 35px);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.1em;
        line-height: 1.4;
    }
    .fix__sp__contact.line p {
        color: #FFF;
    }
    .fix__sp__contact.mail p {
        color: #FFF;
    }
    .fix__sp__contact.tel p {
        color: var(--blue);
    }
}
@media screen and (max-width: 390px) {
    .fix__sp {
        padding: 2rem 0;
    }
    .fix__sp__contact {
        border-radius: .5rem;
        padding: 1.5rem .8rem;
        gap: 0 .7rem;
    }
    .fix__sp__contact.tel {
        border: .1rem solid var(--blue);
    }
    .fix__sp__contact__icon {
        width: 2.8rem;
    }
    .fix__sp__contact p {
        width: calc(100% - 3.5rem);
        font-size: 1.4rem;
    }
}





/* MV */
.mv {
    width: 100%;
}
.mv__inner {
    margin: 0 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.mv__slider {
    width: 100%;
}
.mv__slider__img {
    width: 100%;
    aspect-ratio: 2.1/1;
    min-height: 600px !important;
    overflow: hidden;
}
.mv__slider__img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.add-animation {
    animation: zoom 10s ease 0s normal both;
}
.mv__cover {
    width: 100%;
    height: 100%;
    background: rgba(14, 48, 85, .3);
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.mv__cc {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.mv__cc h2 {
    width: 100%;
    color: #FFF;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.5;
    text-align: center;
}
.mv__cc__name {
    width: 180px;
    margin: 40px auto 0;
}
.mv__cc__name img {
    width: 100%;
    vertical-align: middle;
}
.mv__scroll {
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.2em;
    position: absolute;
    left: 20px;
    bottom: 100px;
    z-index: 3;
    transform: rotate(90deg);
}
.mv__scroll::before {
    content: '';
    width: 120px;
    height: 1px;
    background: #FFF;
    position: absolute;
    bottom: -5px;
    left: 0;
    animation: scroll 2.5s ease 0s infinite normal;
}
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
@keyframes scroll {
    0% {
        width: 0px;
    }
    100% {
        width: 120px;
    }
}
@media screen and (max-width: 1000px) {
    .mv__inner {
        margin: 0 15px;
        border-radius: 10px;
    }
    .mv__slider__img {
        aspect-ratio: 1/1.6;
        min-height: 0 !important;
        max-height: 600px !important;
    }
    .mv__slider__img img {
        border-radius: 10px;
    }
    .mv__cover {
        border-radius: 10px;
    }
    .mv__cc h2 {
        font-size: 22px;
        letter-spacing: 0.2em;
    }
    .mv__cc__name {
        width: 110px;
        margin: 20px auto 0;
    }
    .mv__scroll {
        font-size: 10px;
        left: 0;
        bottom: 60px;
    }
    .mv__scroll::before {
        width: 80px;
        height: 1px;
        bottom: -3px;
    }
    @keyframes scroll {
        0% {
            width: 0px;
        }
        100% {
            width: 80px;
        }
    }
}
@media screen and (max-width: 390px) {
    .mv__inner {
        margin: 0 1.5rem;
        border-radius: 1rem;
    }
    .mv__slider__img {
        max-height: 60rem !important;
    }
    .mv__slider__img img {
        border-radius: 1rem;
    }
    .mv__cover {
        border-radius: 1rem;
    }
    .mv__cc h2 {
        font-size: 2.2rem;
    }
    .mv__cc__name {
        width: 11rem;
        margin: 2rem auto 0;
    }
    .mv__scroll {
        font-size: 1rem;
        bottom: 6rem;
    }
    .mv__scroll::before {
        width: 8rem;
        height: .1rem;
        bottom: -.3rem;
    }
    @keyframes scroll {
        0% {
            width: 0px;
        }
        100% {
            width: 8rem;
        }
    }
}





/* SECTION TTL */
.sec-ttl {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}
.sec-ttl span {
    display: block;
    color: var(--blue);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 10px;
}
@media screen and (max-width: 1000px) {
    .sec-ttl {
        font-size: 22px;
    }
    .sec-ttl span {
        font-size: 14px;
        margin-top: 5px;
    }
}
@media screen and (max-width: 390px) {
    .sec-ttl {
        font-size: 2.2rem;
    }
    .sec-ttl span {
        font-size: 1.4rem;
        margin-top: .5rem;
    }
}




/* ABOUT */
.about {
    padding: 100px 0;
}
.about__inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
.about__container {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about__img {
    width: 52%;
}
.about__img img {
    width: 100%;
    vertical-align: middle;
}
.about__txt {
    width: 42%;
}
.about__txt strong {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
}
.about__txt p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin-top: 30px;
}
@media screen and (max-width: 1000px) {
    .about {
        padding: 50px 0;
    }
    .about__container {
        margin-top: 30px;
        flex-wrap: wrap;
    }
    .about__img {
        width: 100%;
    }
    .about__txt {
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }
    .about__txt strong {
        font-size: 20px;
    }
    .about__txt p {
        font-size: 14px;
        text-align: center;
        margin-top: 20px;
    }
}
@media screen and (max-width: 390px) {
    .about {
        padding: 5rem 0;
    }
    .about__container {
        margin-top: 3rem;
    }
    .about__txt {
        margin-top: 3rem;
    }
    .about__txt strong {
        font-size: 2rem;
    }
    .about__txt p {
        font-size: 1.4rem;
        margin-top: 2rem;
    }
}





/* SERVICE */
.service {
    padding: 100px 0 0;
}
.service__container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto 0;
}
.service__cnt {
    margin-top: 100px;
    position: relative;
}
.service__cnt:first-child {
    margin-top: 0;
    padding-bottom: 50px;
}
.service__cnt:first-child::before {
    content: '';
    width: 100vw;
    height: 65%;
    background: #F1F8FF;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.service__cnt h3 {
    width: 100%;
    color: var(--blue);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding-left: 30px;
    position: relative;
}
.service__cnt h3 span {
    width: 20px;
    height: 20px;
    border: 3px solid var(--blue);
    border-radius: 100%;
    position: absolute;
    top: 54%;
    left: 0;
    transform: translateY(-50%);
}
.service__plan__txt {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.7;
    margin-top: 20px;
}
.service .slick-track {
    display: flex !important;
}
.service .slick-slide {
    height: auto !important;
}
.service .slick-list {
    padding: 0 26% 0 0 !important;
}
.service__plan__slider__wrap {
    width: calc(100% + (100vw - 100%) / 2);
}
.service__plan__slider {
    margin-top: 30px;
}
.service__plan {
    background: #FFF;
    border-radius: 30px;
    margin-right: 50px;
    overflow: hidden;
    position: relative;
}
.service__plan__img {
    aspect-ratio: 1.666/1;
}
.service__plan__img img {
    width: 100%;
    height: 100%;
}
.service__plan__exp {
    height: auto !important;
    padding: 30px 30px 100px;
}
.service__plan__exp h4 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: flex;
    align-items: end;
}
.service__plan__exp h4 span {
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-left: 15px;
}
.service__plan__exp p {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.7;
    margin-top: 10px;
}
.service__plan__exp__price__wrap {
    position: absolute;
    right: 30px;
    bottom: 30px;
}
.service__plan__exp__price {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.1em;
    background: var(--grey);
    border-radius: 30px;
    padding: 10px 30px;
}
.service__plan__exp__price span {
    font-size: 24px;
    font-weight: 600;
}
/* slick-arrow */
.service .arrow__box {
    width: 200px;
    position: absolute;
    top: 70px;
    right: 0;
}
.service .slick-arrow {
    width: 80px !important;
    height: 80px !important;
    background: #F1F8FF !important;
    border-radius: 100%;
    transition: all .5s ease;
}
.service .slick-arrow:hover {
    background: var(--blue) !important;
    transition: all .5s ease;
}
.service .slick-next {
    top: 0 !important;
    right: 0 !important;
}
.service .slick-next::before {
    display: none;
}
.service .slick-next::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 18px solid #060F28;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    transition: all .5s ease;
}
.service .slick-next:hover::after {
    border-left: 18px solid #FFF;
    transition: all .5s ease;
}
.service .slick-prev {
    top: 0 !important;
    left: 0 !important;
}
.service .slick-prev::before {
    display: none;
}
.service .slick-prev::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 18px solid #060F28;
    border-bottom: 10px solid transparent;
    position: absolute;
    top: 50%;
    left: 47%;
    transform: translate(-50%, -50%);
    transition: all .5s ease;
}
.service .slick-prev:hover::after {
    border-right: 18px solid #FFF;
    transition: all .5s ease;
}
.service__plan__add {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 1000px) {
    .service {
        padding: 50px 0 0;
    }
    .service__container {
        margin: 30px auto 0;
    }
    .service__cnt {
        margin-top: 50px;
    }
    .service__cnt:first-child {
        padding-bottom: 50px;
    }
    .service__cnt:first-child::before {
        height: 65%;
    }
    .service__cnt h3 {
        font-size: 18px;
        padding-left: 25px;
    }
    .service__cnt h3 span {
        width: 15px;
        height: 15px;
        border: 2px solid var(--blue);
        top: 55%;
    }
    .service__plan__txt {
        font-size: 14px;
        margin-top: 10px;
    }
    .service .slick-list {
        padding: 0 15% 0 0 !important;
    }
    .service__plan__slider {
        margin-top: 30px;
    }
    .service__plan {
        border-radius: 20px;
        margin-right: 20px;
    }
    .service__plan__exp {
        padding: 20px 20px 70px;
    }
    .service__plan__exp h4 {
        font-size: 18px;
    }
    .service__plan__exp h4 span {
        font-size: 12px;
        margin-left: 10px;
    }
    .service__plan__exp p {
        font-size: 13px;
        margin-top: 10px;
    }
    .service__plan__exp__price__wrap {
        right: 20px;
        bottom: 20px;
    }
    .service__plan__exp__price {
        font-size: 14px;
        border-radius: 20px;
        padding: 5px 20px;
    }
    .service__plan__exp__price span {
        font-size: 20px;
    }
    /* slick-arrow */
    .service .arrow__box {
        width: 120px;
        top: auto;
        bottom: 140px;
        left: 0;
        right: auto;
    }
    .service .slick-arrow {
        width: 50px !important;
        height: 50px !important;
        background: #FFF !important;
    }
    .service .slick-arrow:hover {
        background: #FFF !important;
    }
    .service .slick-next::after {
        border-left: 10px solid #060F28;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        top: 50%;
        left: 55%;
    }
    .service .slick-next:hover::after {
        border-left: 10px solid #060F28;
    }
    .service .slick-prev::after {
        border-top: 5px solid transparent;
        border-right: 10px solid #060F28;
        border-bottom: 5px solid transparent;
        top: 50%;
        left: 47%;
    }
    .service .slick-prev:hover::after {
        border-right: 10px solid #060F28;
    }
    .service__plan__add {
        font-size: 14px;
        margin-top: 100px;
    }
}
@media screen and (max-width: 390px) {
    .service {
        padding: 5rem 0 0;
    }
    .service__container {
        margin: 3rem auto 0;
    }
    .service__cnt {
        margin-top: 5rem;
    }
    .service__cnt:first-child {
        padding-bottom: 5rem;
    }
    .service__cnt h3 {
        font-size: 1.8rem;
        padding-left: 2.5rem;
    }
    .service__cnt h3 span {
        width: 1.5rem;
        height: 1.5rem;
        border: .2rem solid var(--blue);
    }
    .service__plan__txt {
        font-size: 1.4rem;
        margin-top: 1rem;
    }
    .service__plan__slider {
        margin-top: 3rem;
    }
    .service__plan {
        border-radius: 2rem;
        margin-right: 2rem;
    }
    .service__plan__exp {
        padding: 2rem 2rem 7rem;
    }
    .service__plan__exp h4 {
        font-size: 1.8rem;
    }
    .service__plan__exp h4 span {
        font-size: 1.2rem;
        margin-left: 1rem;
    }
    .service__plan__exp p {
        font-size: 1.3rem;
        margin-top: 1rem;
    }
    .service__plan__exp__price__wrap {
        right: 2rem;
        bottom: 2rem;
    }
    .service__plan__exp__price {
        font-size: 1.4rem;
        border-radius: 2rem;
        padding: .5rem 2rem;
    }
    .service__plan__exp__price span {
        font-size: 2rem;
    }
    /* slick-arrow */
    .service .arrow__box {
        width: 12rem;
        bottom: 14rem;
    }
    .service .slick-arrow {
        width: 5rem !important;
        height: 5rem !important;
    }
    .service .slick-next::after {
        border-left: 1rem solid #060F28;
        border-top: .5rem solid transparent;
        border-bottom: .5rem solid transparent;
    }
    .service .slick-next:hover::after {
        border-left: 1rem solid #060F28;
    }
    .service .slick-prev::after {
        border-top: .5rem solid transparent;
        border-right: 1rem solid #060F28;
        border-bottom: .5rem solid transparent;
    }
    .service .slick-prev:hover::after {
        border-right: 1rem solid #060F28;
    }
    .service__plan__add {
        font-size: 1.4rem;
        margin-top: 10rem;
    }
}





/* FLOW */
.service__flow {
    margin-top: 50px;
}
.service__flow__step {
    display: flex;
    justify-content: space-between;
    gap: 0 45px;
}
.service__flow__step__left {
    width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px 0;
    position: relative;
}
.service__flow__step__left::before {
    content: '';
    width: 1px;
    height: calc(100% - 130px);
    background: #BEBEBE;
    position: absolute;
    left: 50%;
    top: 115px;
    transform: translateX(-50%);
}
.service__flow__step__left.last:before {
    display: none;
}
.service__flow__step__left p {
    color: var(--blue);
    font-size: 20px;
    font-weight: 600;
}
.service__flow__step__icon {
    width: 70px;
}
.service__flow__step__icon img {
    width: 100%;
    vertical-align: middle;
}
.service__flow__step__right {
    width: calc(100% - 120px);
}
.service__flow__step__right h4 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.service__flow__step__right__txt {
    padding-bottom: 50px;
    margin-top: 20px;
}
.service__flow__step__right__txt p {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.7;
    background: var(--grey);
    padding: 25px;
    border-radius: 10px;
}
.section__img__wrap {
    padding-bottom: 125px;
    position: relative;
}
.section__img__wrap::before {
    content: '';
    width: 100vw;
    height: 60%;
    background: #F1F8FF;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.section__img {
    width: calc(100% - 60px);
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin: 50px 30px 0;
}
.section__img img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 1000px) {
    .service__flow {
        margin-top: 30px;
    }
    .service__flow__step {
        gap: 0 15px;
    }
    .service__flow__step__left {
        width: 60px;
        gap: 5px 0;
    }
    .service__flow__step__left::before {
        width: 1px;
        height: calc(100% - 120px);
        top: 100px;
    }
    .service__flow__step__left p {
        font-size: 16px;
    }
    .service__flow__step__icon {
        width: 60px;
    }
    .service__flow__step__right {
        width: calc(100% - 80px);
    }
    .service__flow__step__right h4 {
        font-size: 16px;
    }
    .service__flow__step__right__txt {
        padding-bottom: 30px;
        margin-top: 10px;
    }
    .service__flow__step__right__txt p {
        font-size: 13px;
        padding: 20px;
        border-radius: 10px;
    }
    .section__img__wrap {
        padding-bottom: 50px;
    }
    .section__img__wrap::before {
        height: 60%;
    }
    .section__img {
        width: calc(100% - 30px);
        height: 300px;
        border-radius: 10px;
        margin: 30px 15px 0;
    }
    .section__img img {
        object-position: 40% 50%;
    }
}
@media screen and (max-width: 390px) {
    .service__flow {
        margin-top: 3rem;
    }
    .service__flow__step {
        gap: 0 1.5rem;
    }
    .service__flow__step__left {
        width: 6rem;
        gap: .5rem 0;
    }
    .service__flow__step__left::before {
        width: .1rem;
        height: calc(100% - 12rem);
        top: 10rem;
    }
    .service__flow__step__left p {
        font-size: 1.6rem;
    }
    .service__flow__step__icon {
        width: 6rem;
    }
    .service__flow__step__right {
        width: calc(100% - 8rem);
    }
    .service__flow__step__right h4 {
        font-size: 1.6rem;
    }
    .service__flow__step__right__txt {
        padding-bottom: 3rem;
        margin-top: 1rem;
    }
    .service__flow__step__right__txt p {
        font-size: 1.3rem;
        padding: 2rem;
        border-radius: 1rem;
    }
    .section__img__wrap {
        padding-bottom: 5rem;
    }
    .section__img {
        width: calc(100% - 3rem);
        height: 30rem;
        border-radius: 1rem;
        margin: 3rem 1.5rem 0;
    }
}




/* FAQ */
.faq {
    padding: 100px 0;
}
.faq__inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
.faq__container {
    margin-top: 50px;
}
.faq__list {
    margin-top: 50px;
}
.faq__list:first-child {
    margin-top: 0;
}
.faq__question {
    border-bottom: 1px solid #ADADAD;
    padding: 0 30px 20px;
    display: flex;
    gap: 0 15px;
    position: relative;
    cursor: pointer;
}
.faq__question__index {
    color: var(--blue);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
}
.faq__question p {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.faq__question__btn {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 10px;
    top: 40%;
    transform: translate(-50%, -50%);
}
.faq__question__btn span {
    width: 100%;
    height: 1px;
    background: #060F28;
    position: absolute;
    top: 50%;
    left: 50%;
}
.faq__question__btn span:nth-child(1) {
    transform: translate(-50%, -50%);
}
.faq__question__btn span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: all .3s ease;
}
.faq__question.active .faq__question__btn span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(0);
    transition: all .3s ease;
}
.faq__answer {
    margin-top: 20px;
    position: relative;
    display: none;
}
.faq__answer__inner {
    background: var(--grey);
    padding: 20px 30px;
    display: flex;
    gap: 0 15px;
}
.faq__answer__index {
    color: var(--blue);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
}
.faq__answer p {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.7;
}
.faq__answer__pdf__wrap {
    display: block;
    margin-top: 15px;
}
.faq__answer__pdf {
    display: inline-block;
    color: #060F28;
    font-size: 14px;
    letter-spacing: 0.05em;
    border: 1px solid #060F28;
    background: #FFF;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all .3s ease;
}
.faq__answer__pdf:hover {
    opacity: .5;
    transition: all .3s ease;
}
.faq__answer__link {
    display: inline;
    border-bottom: 1px solid #060F28;
    cursor: pointer;
    transition: all .3s ease;
}
.faq__answer__link:hover {
    opacity: .3;
    transition: all .3s ease;
}
@media screen and (max-width: 1000px) {
    .faq {
        padding: 50px 0;
    }
    .faq__container {
        margin-top: 10px;
    }
    .faq__list {
        margin-top: 5px;
    }
    .faq__question {
        border-bottom: 1px solid #ADADAD;
        padding: 20px 45px 20px 10px;
        gap: 0 10px;
    }
    .faq__question__index {
        font-size: 20px;
    }
    .faq__question p {
        font-size: 14px;
    }
    .faq__question__btn {
        width: 20px;
        height: 20px;
        right: 10px;
        top: 50%;
    }
    .faq__question__btn span {
        height: 1px;
    }
    .faq__answer {
        margin-top: 10px;
    }
    .faq__answer__inner {
        padding: 15px 20px;
        gap: 0 10px;
    }
    .faq__answer__index {
        font-size: 20px;
    }
    .faq__answer p {
        font-size: 14px;
    }
    .faq__answer__pdf__wrap {
        margin-top: 10px;
    }
    .faq__answer__pdf {
        font-size: 12px;
        border: 1px solid #060F28;
        padding: 6px 10px;
        border-radius: 5px;
    }
    .faq__answer__link {
        border-bottom: 1px solid #060F28;
    }
    .faq__answer__link:hover {
        opacity: 1;
    }
}
@media screen and (max-width: 390px) {
    .faq {
        padding: 5rem 0;
    }
    .faq__container {
        margin-top: 1rem;
    }
    .faq__list {
        margin-top: .5rem;
    }
    .faq__question {
        border-bottom: .1rem solid #ADADAD;
        padding: 2rem 4.5rem 2rem 1rem;
        gap: 0 1rem;
    }
    .faq__question__index {
        font-size: 2rem;
    }
    .faq__question p {
        font-size: 1.4rem;
    }
    .faq__question__btn {
        width: 2rem;
        height: 2rem;
        right: 1rem;
    }
    .faq__question__btn span {
        height: .1rem;
    }
    .faq__answer {
        margin-top: 1rem;
    }
    .faq__answer__inner {
        padding: 1.5rem 2rem;
        gap: 0 1rem;
    }
    .faq__answer__index {
        font-size: 2rem;
    }
    .faq__answer p {
        font-size: 1.4rem;
    }
    .faq__answer__pdf__wrap {
        margin-top: 1rem;
    }
    .faq__answer__pdf {
        font-size: 1.2rem;
        border: .1rem solid #060F28;
        padding: .6rem 1rem;
        border-radius: .5rem;
    }
    .faq__answer__link {
        border-bottom: .1rem solid #060F28;
    }
}





/* COMPANY */
.company {
    padding: 100px 0;
}
.company__container {
    margin-top: 50px;
    display: flex;
}
.company__img {
    width: 45%;
}
.company__img img {
    width: 100%;
    height: 100%;
    object-position: center bottom;
    border-top-right-radius: 100px;
}
.company__exp {
    width: 55%;
}
.company__exp table {
    width: 90%;
    margin: 0 auto;
}
.company__exp table tr th, .company__exp table tr td {
    border-bottom: 1px solid #ADADAD;
    padding: 25px 0;
}
.company__exp table tr th {
    width: 35%;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    vertical-align: top;
    padding-left: 5%;
    padding-right: 5%;
}
.company__exp table tr td {
    width: 65%;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
    padding-right: 5%;
}
@media screen and (min-width: 1600px) {
    .company__img {
        max-height: 747px;
    }
}
@media screen and (max-width: 1000px) {
    .company {
        padding: 50px 0;
    }
    .company__container {
        margin-top: 30px;
        flex-wrap: wrap;
    }
    .company__img {
        width: 100%;
        max-height: 500px;
        aspect-ratio: 1.3/1;
        order: 2;
        margin-top: 50px;
    }
    .company__img img {
        border-top-right-radius: 50px;
    }
    .company__exp {
        width: 100%;
        order: 1;
    }
    .company__exp table tr th, .company__exp table tr td {
        border-bottom: 1px solid #ADADAD;
        padding: 20px 0;
    }
    .company__exp table tr th {
        width: 30%;
        font-size: 13px;
        padding-left: 3%;
        padding-right: 3%;
    }
    .company__exp table tr td {
        width: 70%;
        font-size: 13px;
        padding-right: 3%;
    }
}
@media screen and (max-width: 390px) {
    .company {
        padding: 5rem 0;
    }
    .company__container {
        margin-top: 3rem;
    }
    .company__img {
        max-height: 50rem;
        margin-top: 5rem;
    }
    .company__img img {
        border-top-right-radius: 5rem;
    }
    .company__exp table tr th, .company__exp table tr td {
        border-bottom: .1rem solid #ADADAD;
        padding: 2rem 3%;
    }
    .company__exp table tr th {
        font-size: 1.3rem;
    }
    .company__exp table tr td {
        font-size: 1.3rem;
    }
}





/* BANNER */
.banner {
    width: 100%;
    margin-bottom: 100px;
}
.banner__container {
    display: flex;
    justify-content: center;
    gap: 0 30px;
}
.banner__img {
    display: block;
    width: 400px;
    aspect-ratio: 42/13;
    transition: all .3s ease;
}
.banner__img:hover {
    opacity: .5;
}
.banner__img img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
@media screen and (max-width: 1000px) {
    .banner {
        margin-bottom: 50px;
    }
    .banner__container {
        gap: 0 30px;
    }
    .banner__img {
        width: 250px;
    }
    .banner__img:hover {
        opacity: 1;
    }
}
@media screen and (max-width: 390px) {
    .banner {
        margin-bottom: 5rem;
    }
    .banner__container {
        gap: 0 3rem;
    }
    .banner__img {
        width: 25rem;
    }
}





/* CONTACT */
.contact {
    width: 100%;
    background: #F1F8FF;
    padding: 100px 0;
}
.contact__container {
    width: 90%;
    max-width: 1200px;
    background: linear-gradient(90deg, #55A3F2, #5AD784);
    border-radius: 20px;
    padding: 50px 0;
    margin: 50px auto 0;
}
.contact__exp {
    color: #FFF;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.7;
    text-align: center;
}
.contact__list__wrap {
    margin-top: 40px;
    display: flex;
}
.contact__list {
    width: calc(100% / 3);
    border-right: 1px solid #FFF;
    padding: 20px 0;
}
.contact__list:last-child {
    border-right: 0;
}
.contact__list__btn {
    width: 80%;
    background: #FFF;
    border-radius: 10px;
    padding: 20px 15px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 15px;
}
.contact__list__btn__icon {
    width: 30px;
}
.contact__list__btn__icon img {
    width: 100%;
    vertical-align: middle;
}
.contact__list__btn__ttl {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all .5s ease;
}
.contact__list__btn:hover .contact__list__btn__ttl {
    color: var(--blue);
    transition: all .5s ease;
}
.contact__list__btn__add {
    width: 80%;
    color: #FFF;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 15px auto 0;
}
@media screen and (max-width: 1000px) {
    .contact {
        padding: 50px 0;
    }
    .contact__container {
        border-radius: 10px;
        padding: 30px 20px;
        margin: 30px auto 0;
    }
    .contact__exp {
        font-size: 14px;
    }
    .contact__list__wrap {
        margin-top: 20px;
        flex-wrap: wrap;
    }
    .contact__list {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #FFF;
        padding: 20px 0;
    }
    .contact__list:last-child {
        border-bottom: 0;
    }
    .contact__list__btn {
        width: 90%;
        border-radius: 10px;
        padding: 15px;
        gap: 0 10px;
    }
    .contact__list__btn__icon {
        width: 30px;
    }
    .contact__list__btn__ttl {
        font-size: 16px;
    }
    .contact__list__btn:hover .contact__list__btn__ttl {
        color: #060F28;
    }
    .contact__list__btn__add {
        width: 90%;
        font-size: 14px;
        margin: 10px auto 0;
    }
}
@media screen and (max-width: 390px) {
    .contact {
        padding: 5rem 0;
    }
    .contact__container {
        border-radius: 1rem;
        padding: 3rem 2rem;
        margin: 3rem auto 0;
    }
    .contact__exp {
        font-size: 1.4rem;
    }
    .contact__list__wrap {
        margin-top: 2rem;
    }
    .contact__list {
        border-bottom: .1rem solid #FFF;
        padding: 2rem 0;
    }
    .contact__list__btn {
        border-radius: 1rem;
        padding: 1.5rem;
        gap: 0 1rem;
    }
    .contact__list__btn__icon {
        width: 3rem;
    }
    .contact__list__btn__ttl {
        font-size: 1.6rem;
    }
    .contact__list__btn__add {
        font-size: 1.4rem;
        margin: 1rem auto 0;
    }
}





/* FOOTER */
footer {
    padding: 0 30px;
}
.footer__inner {
    width: 90%;
    max-width: 1200px;
    padding: 80px 0 50px;
    margin: 0 auto;
}
.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 0 50px;
}
.footer__info {
    display: flex;
    gap: 0 30px;
}
.footer__info__logo {
    width: 120px;
}
.footer__info__logo img {
    width: 100%;
}
.footer__info ul li {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2;
}
.footer__nav {
    display: flex;
    gap: 0 40px;
}
.footer__nav ul li {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 25px;
    cursor: pointer;
    transition: all .5s ease;
}
.footer__nav ul li:first-child {
    margin-top: 0;
}
.footer__nav ul li:hover {
    color: var(--blue);
    transition: all .5s ease;
}
.footer__under {
    width: 90%;
    max-width: 750px;
    margin: 100px auto 0;
    display: flex;
    gap: 0 8%;
}
.footer__under__number, .footer__under__pdf {
    width: 46%;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-align: center;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__under__number {
    border: 1px solid #060F28;
}
.footer__under__pdf {
    color: #FFF;
    background: #060F28;
    transition: all .5s ease;
}
.footer__under__pdf:hover {
    opacity: .5;
    transition: all .5s ease;
}
.footer__copy {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: center;
    border-top: 1px solid #ADADAD;
    padding: 15px;
}
@media screen and (max-width: 1000px) {
    footer {
        padding: 0 15px 100px;
    }
    .footer__inner {
        padding: 50px 0;
    }
    .footer__top {
        gap: 0;
    }
    .footer__info {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 0;
    }
    .footer__info__logo {
        width: 120px;
    }
    .footer__info ul {
        width: 100%;
    }
    .footer__info ul li {
        font-size: 12px;
        text-align: center;
    }
    .footer__nav {
        display: none;
    }
    .footer__under {
        margin: 30px auto 0;
        flex-wrap: wrap;
        gap: 10px 0;
    }
    .footer__under__number, .footer__under__pdf {
        width: 100%;
        font-size: 14px;
        border-radius: 5px;
        padding: 15px;
    }
    .footer__under__number {
        border: 1px solid #060F28;
    }
    .footer__under__pdf:hover {
        opacity: 1;
    }
    .footer__copy {
        font-size: 12px;
        border-top: 1px solid #ADADAD;
        padding: 10px;
    }
}
@media screen and (max-width: 390px) {
    footer {
        padding: 0 1.5rem 10rem;
    }
    .footer__inner {
        padding: 5rem 0;
    }
    .footer__info {
        gap: 3rem 0;
    }
    .footer__info__logo {
        width: 12rem;
    }
    .footer__info ul li {
        font-size: 1.2rem;
    }
    .footer__under {
        margin: 3rem auto 0;
        gap: 1rem 0;
    }
    .footer__under__number, .footer__under__pdf {
        font-size: 1.4rem;
        border-radius: .5rem;
        padding: 1.5rem;
    }
    .footer__under__number {
        border: .1rem solid #060F28;
    }
    .footer__copy {
        font-size: 1.2rem;
        border-top: .1rem solid #ADADAD;
        padding: 1rem;
    }
}