/* block-ttl */
.block-ttl {
    margin: 0 0 20px;
    text-align: center;
}

.block-ttl h1,
.block-ttl h2 {
    font-size: 18px;
    font-weight: 500;
}

.block-ttl p {
    background: linear-gradient(51deg, rgba(96, 200, 255, 1) 41%, rgba(28, 115, 211, 1) 100%);
    display: inline-block;
    font-family: var(--ft-aboreto);
    font-size: 90px;
    font-weight: 400;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .block-ttl p {
        font-size: 61px;
    }
}

/* fv */
.fv {
    position: relative;
    z-index: 1;
}

.fv-image {
    line-height: 0;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .fv-text {
        bottom: 35vw;
        width: 100%;
    }
}

/* aboutus */
.aboutus {
    margin: -30vw 0 0;
    overflow: hidden;
    padding: 40vw 0 270px;
    position: relative;
}

.aboutus-inner {
    margin: 0 auto;
    width: calc(100% - 44px);
}

.aboutus-text {
    margin: auto;
    text-align: center;
    width: max-content;
}

.aboutus-text h1 {
    background: linear-gradient(51deg, rgba(96, 200, 255, 1) 41%, rgba(28, 115, 211, 1) 100%);
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
}

.about-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 36.2px;
}

@media screen and (max-width: 768px) {
    .aboutus {
        margin: -30vw 0 0;
        padding: 70vw 0 140px;
    }

    .aboutus-text h1 {
        margin-bottom: 1rem;
    }

    .aboutus-text .block-ttl p {
        font-size: 52px;
    }

    .aboutus-text {
        width: 100%;
    }

    .about-text {
        font-size: 16px;
    }
}

/* service */
.service {
    background: url(../images/bg-wave-gray.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding: 175px 0 18vw;
}

.service-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 920px;
}

.service-head {
    margin: 0 0 50px;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 50px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow:
        1.28px 3.95px 9.88px rgba(115 123 140 / 12%),
        4.45px 13.24px 33.11px rgba(115 123 140 / 12%),
        19.77px 59.3px 148.25px rgba(115 123 140 / 12%);
    overflow: hidden;
    width: calc((100% - (50px * 1)) / 2);
}

.service-card__image {
    line-height: 0;
}

.service-card__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.service-card__text {
    padding: 40px 50px;
}

.service-card__text .ttl {
    font-size: 24px;
    font-weight: 700;
}

.service-card__text .txt {
    color: #525766;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8em;
    margin: 20px 0 0;
}

.service-card__text .btn {
    margin: 25px auto 0;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .service {
        background: #F6F7F9;
        padding: 60px 0;
    }

    .service-head {
        margin-bottom: 30px;
    }

    .service-cards {
        gap: 35px;
    }

    .service-card {
        width: 100%;
    }

    .service-card__text {
        padding: 20px 20px 34px;
    }

    .service-card__text .txt {
        margin: 10px 0 0;
        font-size: 14.5px;
    }

    .service-card__text .btn {
        margin: 30px auto 0;
    }
}

/* btn */
.btn {
    height: 54px;
    width: 200px;
}

.btn p,
.btn a {
    background: #fff;
    border: 1px solid var(--main-theme-color);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14.5px;
    font-weight: 700;
    height: 100%;
    width: 100%;
}

.btn p::after,
.btn a::after {
    background: url(../images/icon-arrow-r.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 8.16px;
    margin-left: 15px;
    transition-duration: .3s;
    width: 12.7px;
}

.btn-wrap:hover .btn p::after,
.btn-wrap:hover .btn a::after,
.btn p:hover::after,
.btn a:hover::after {
    transform: translateX(10px);
}

@media screen and (max-width: 968px) {}

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

/* news */
.news {
    position: relative;
    z-index: 2;
}

.news-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 90%;
    max-width: 920px;
}

.news-head .flex-ttl {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row-reverse;
    gap: 15px;
    margin: 0 0 65px;
}

.news-body {
    background: none;
    padding: 55px 0 195px;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
    width: 92%;
    max-width: 920px;
}

.news.topnews .news-items {
    width: 90%;
}

.news-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f9f9f9;
    display: flex;
    align-items: center;
    filter: drop-shadow(0 4px 4px rgb(0 0 0 / 2%));
    height: 100px;
    overflow: hidden;
}

.news-item a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding: 0 90px 0 20px;
    position: relative;
    width: 100%;
}

.news-card__text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.news-cat {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 165px;
}

.news-cat .cat {
    background: #F2F5F9;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    height: 38px;
    text-align: center;
    width: 120px;
}

.news-date {
    font-family: var(--ft-heebo);
    font-size: 16px;
    font-weight: 700;
    width: 125px;
}

.news-ttl {
    color:#525766;
    font-size: 16px;
    font-weight: 500;
    width: calc(100% - (165px + 125px));
}

.news-card__text .icon {
    background: url(../images/icon-arrow-r.svg) no-repeat;
    background-position: center;
    background-size: 16px;
    background-color: #fff;
    border: 1px solid var(--main-theme-color);
    border-radius: 50%;
    height: 45px;
    margin: auto;
    position: absolute;
    right: 25px;
    top: 0;
    bottom: 0;
    transition-duration: .3s;
    width: 45px;
}

.news-item a:hover .news-card__text .icon {
    right: 20px;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .news {
        background: #fff;
        padding: 50px 0 130px;
    }

    .news-head .flex-ttl {
        flex-direction: column;
        align-items: normal;
        gap: 5px;
        text-align: left;
    }

    .news-body {
        background: none;
        padding: 0;
    }

    .news-items {
        gap: 2rem;
    }

    .topnews .news-item {
        border-bottom: 1px solid #E5EAF0;
        height: auto;
    }

    .news-item a {
        padding: 25px 15px;
    }

    .topnews .news-item a {
        padding: 30px 20px;
    }

    .news-cat {
        width: 150px;
    }

    .topnews .news-cat .cat {
        background: none;
        border: 1px solid var(--main-theme-color);
    }

    .news-cat .cat {
        font-size: 14.5px;
    }

    .news-date {
        font-size: 14.5px;
    }

    .news-ttl {
        margin: 15px 0 0;
        width: 100%;
        font-size: 14.5px;
    }

    .news-card__text .icon {
        display: none;
    }

    .news-items+.btn {
        margin: 45px auto 0;
    }
}

/* bg */
.bg {
    background: url(../images/bg-wave-white.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
    display: none;
    height: 200px;
    margin: 0 0 -200px;
    position: relative;
    z-index: 2;
}

.gray {
    background-image: url(../images/bg-wave-gray.png);
}

.blue {
    background-image: url(../images/bg-wave-blue.png);
}

@media screen and (max-width: 768px) {
    .bg {
        background: #fff;
        height: 100px;
        margin: 0 0 -100px;
    }

    .bg.blue {
        background: #F2F5F9;
    }

    .bg.grey {
        background: #e5eaf0;
    }

    .gray {
        background: #F2F5F9;
    }

    .bg.gray.newsbg {
        background: #E5EAF0;
    }
}

/* content-banner */
.contact-banner {
    margin: -35px auto 105px;
    position: relative;
    width: calc(100% - 44px);
    max-width: 920px;
    z-index: 3;
}

.contact-banner__inner {
    margin: 0 auto;
    width: 100%;
    max-width: 1060px;
}

.contact-banner__items {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.contact-banner__item {
    border-radius: 20px;
    overflow: hidden;
    width: 48.5%;
}

.contact-banner__item a {
    height: 100%;
    position: relative;
    width: 100%;
}

.contact-banner__image {
    aspect-ratio: 16 / 9;
    line-height: 0;
    overflow: hidden;
}

.contact-banner__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.contact-banner__item p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    left: 35px;
    bottom: 45px;
}

.contact-banner__item p span {
    color: #fff;
    display: block;
    font-family: var(--ft-aboreto);
    font-size: 40px;
    font-weight: 400;
}

@media screen and (max-width: 968px) {
    .contact-banner {
        margin: -150px auto 60px;
    }
}

@media screen and (max-width: 768px) {
    .contact-banner__items {
        gap: 25px;
    }

    .contact-banner__item {
        border-radius: 20px;
        width: 100%;
    }

    .contact-banner__item p {
        left: 15px;
        bottom: 20px;
    }
}

/* pagettl */
.pagettl {
    background: url(../images/ttl-bg.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 459px;
    margin: 0 0 40px;
    padding: 50px 0 0;
    position: relative;
    z-index: 4;
}

.blog .pagettl {
    margin: 0 0 50px;
}

.single .pagettl {
    margin: 0 0 65px;
}

.pagettl-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1300px;
}

.pagettl-inner h1,
.pagettl-inner h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.pagettl-inner p {
    color: #fff;
    font-family: var(--ft-aboreto);
    font-size: 80px;
    font-weight: 400;
}

@media screen and (max-width: 968px) {

    .pagettl-inner h1,
    .pagettl-inner h2 {
        font-size: 20px;
    }

    .pagettl-inner p {
        font-size: 60px;
    }
}

@media screen and (max-width: 768px) {
    .pagettl {
        background-image: url(../images/ttl-bg-sp.png);
        height: 234px;
        margin: 0 0 50px;
        padding: 35px 0 0;
    }

    .blog .pagettl {
        margin: 0 0 60px;
    }

    .single .pagettl,
    .slug-privacy-policy .pagettl {
        margin: 0 0 60px;
    }

    .pagettl-inner h1,
    .pagettl-inner h2 {
        font-size: 18px;
    }

    .pagettl-inner p {
        font-size: 48px;
    }
}

.breadcrumb {
    margin: 0 auto 6rem;
    width: 92%;
    max-width: 1300px;
    position: relative;
    z-index:3;
}

/* contact */
.contact {
    padding: 0 0 175px;
    position: relative;
    z-index: 3;
}

.contact-inner {
    margin: 0 auto;
    width: calc(100% - 48px);
    max-width: 797px;
}

.contact-head {
    border-bottom: 1px solid #D3D5D8;
    margin: 0 0 25px;
    padding: 0 0 45px;
    text-align: center;
}

.contact-head h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0 0 30px;
}

.contact-head p {
    font-size: 20px;
    font-weight: 500;
    color: #525766;
}

.contact-body .notice {
    color: #FF0000;
    font-size: 17px;
    font-weight: 500;
    text-align: right;
}

.contact-list {
    margin: 25px 0 0;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-list__item.policy-item {
    margin-top: 25px;
}

.contact-list__flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.contact-list__flex .contact-list__item {
    width: 48.5%;
}

.contact-list__item dt {
    margin: 0 0 5px;
}

.contact-list__item dt label {
    font-size: 15px;
    font-weight: 700;
}

.contact-list__item.required dt label::after {
    color: #FF0000;
    content: "*";
    font-size: 15px;
    font-weight: 700;
}

.contact-list__item input[type="text"],
.contact-list__item input[type="email"],
.contact-list__item input[type="tel"],
.contact-list__item textarea {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #F4F8FD;
    border: 1px solid #C8DDF7;
    border-radius: 6px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    padding: 15px;
    width: 100%;
}

.contact-list__item input[type="text"]::placeholder,
.contact-list__item input[type="email"]::placeholder,
.contact-list__item input[type="tel"]::placeholder,
.contact-list__item textarea::placeholder {
    color: rgba(182, 187, 196, 1);
}

.contact-list__item textarea {
    min-height: 320px;
}

.policy-item {
    text-align: center;
}

.policy-item p,
.policy-item span {
    color: #525766;
    font-size: 19px;
    font-weight: 400;
}

.contact-submit {
    height: 58px;
    margin: 50px auto 0;
    width: 213px;
}

.contact-submit input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url(../images/icon-arrow-r.svg) no-repeat;
    background-color: #fff;
    background-position: right 20px center;
    background-size: 12px;
    border: 1px solid var(--main-theme-color);
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    font-weight: 700;
    height: 100%;
    text-align: center;
    transition: background-position .3s;
    width: 100%;
    padding: 1rem;
}

.contact-submit input:hover {
    background-position: right 15px center;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .contact {
        padding: 0 0 105px;
    }

    .contact-head {
        margin: 0 0 10px;
        padding: 0 0 50px;
    }

    .contact-head h2 {
        font-size: 24px;
        margin: 0 0 20px;
    }

    .contact-head p {
        font-size: 14.5px;
    }

    .contact-body .notice {
        font-size: 14px;
    }

    .contact-list {
        margin: 15px 0 0;
    }

    .contact-list__flex {
        gap: 25px;
    }

    .contact-list__flex .contact-list__item {
        width: 100%;
    }

    .contact-list__item dt label,
    .contact-list__item.required dt label::after {
        font-size: 16px;
    }

    .contact-list__item.policy-item {
        margin: 10px 0 0;
    }

    .policy-item p,
    .policy-item span {
        font-size: 14.5px;
    }

    .contact-submit {
        margin: 35px auto 0;
    }

    .contact-list__item input[type="text"],
    .contact-list__item input[type="email"],
    .contact-list__item input[type="tel"],
    .contact-list__item textarea {
        font-size: 14.5px;
    }

    .contact-submit input {
        font-size: 16px;
    }
}

/* policy */
.policy {
    padding: 0 0 170px;
    position: relative;
    z-index: 3;
}

.policy-inner {
    margin: 0 auto;
    width: calc(100% - 48px);
    max-width: 920px;
}

.policy-head {
    margin: 0 0 40px;
    text-align: center;
}

.policy-head h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 30px;
}

.policy-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.policy-list__item h3 {
    color: #525766;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 30px;
}

.policy-list__item p {
    color: #525766;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8em;
}

.policy-item__cont {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.policy-item__cont .line h4 {
    color: #525766;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px;
}

.policy-item__cont .line {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.line-item__table {
    margin: 25px 0 0;
}

.line-item__table table {
    border: 1px solid #E5EAF0;
    border-collapse: collapse;
    width: 100%;
}

.line-item__table table th,
.line-item__table table td {
    background: #fff;
    border: 1px solid #E5EAF0;
    padding: 20px;
    text-align: center;
}

.line-item__table table th {
    background: #F2F5F9;
}

.line-item__table table th,
.line-item__table table td,
.line-item__table table td a {
    color: #525766;
    font-size: 14px;
    font-weight: 500;
}

.line-item__table table td a {
    text-decoration: underline;
}

@media screen and (max-width: 968px) {
    .line-item__table {
        overflow-x: auto;
    }

    .line-item__table table {
        width: 1058px;
    }
}

@media screen and (max-width: 768px) {
    .policy {
        padding: 0 0 100px;
    }

    .policy-head {
        margin: 0 0 55px;
    }

    .policy-head h2 {
        font-size: 26px;
        margin: 0 0 20px;
    }

    .policy-list__item h3 {
        margin: 0 0 25px;
    }

    .policy-head p {
        font-size: 18px;
    }
}


/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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

/* blockname */
@media screen and (max-width: 968px) {}

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



/* aboutus-loopsliders */
.aboutus-loopsliders__groups {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 150px;
    margin: auto;
    position: absolute;
    left: -5vw;
    top: 0;
    right: 0;
    bottom: 0;
}

.aboutus-loopsliders__wrapper {
    transform: rotate(30deg);
    width: 331px;
}

.aboutus-loopsliders__wrapper:nth-child(1) {
    opacity: 0.6;
}

.aboutus-loopsliders__wrapper:nth-child(2) {
    opacity: 0.3;
}

.aboutus-loopsliders__wrapper:nth-child(3) {
    opacity: 0.1;
}

.aboutus-loopsliders__wrapper:nth-child(4) {
    opacity: 0.2;
}

.aboutus-loopsliders__wrapper:nth-child(5) {
    opacity: 0.6;
}

.aboutus-loopsliders {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: max-content;
}

.aboutus-loopsliders__wrapper:nth-child(1) .aboutus-loopsliders {
    animation: scroll-slider-top 35s linear infinite;
}

.aboutus-loopsliders__wrapper:nth-child(2) .aboutus-loopsliders {
    animation: scroll-slider-bottom 45s linear infinite;
}

.aboutus-loopsliders__wrapper:nth-child(3) .aboutus-loopsliders {
    animation: scroll-slider-top 50s linear infinite;
}

.aboutus-loopsliders__wrapper:nth-child(4) .aboutus-loopsliders {
    animation: scroll-slider-bottom 40s linear infinite;
}

.aboutus-loopsliders__wrapper:nth-child(5) .aboutus-loopsliders {
    animation: scroll-slider-top 30s linear infinite;
}

.aboutus-loopslider {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-shrink: 0;
    line-height: 0;
    width: 331px;
}

.aboutus-loopslide {
    border-radius: 30px;
    line-height: 0;
    overflow: hidden;
}

.aboutus-loopslide img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* CSSアニメーション */
@keyframes scroll-slider-top {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

@keyframes scroll-slider-bottom {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(50%);
    }
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .aboutus-loopsliders__wrapper:nth-child(1) .aboutus-loopsliders {
        animation: scroll-slider-top 40s linear infinite;
    }

    .aboutus-loopsliders__wrapper:nth-child(2) .aboutus-loopsliders {
        animation: scroll-slider-bottom 40s linear infinite;
    }

    .aboutus-loopsliders__wrapper:nth-child(3) .aboutus-loopsliders {
        animation: scroll-slider-top 40s linear infinite;
    }

    .aboutus-loopsliders__wrapper:nth-child(4) .aboutus-loopsliders {
        animation: scroll-slider-bottom 40s linear infinite;
    }

    .aboutus-loopsliders__wrapper:nth-child(5) .aboutus-loopsliders {
        animation: scroll-slider-top 40s linear infinite;
    }

    .aboutus-loopsliders__groups {
        gap: 90px;
        left: -60vw;
    }

    .aboutus-loopsliders {
        gap: 30px;
    }

    .aboutus-loopslider {
        gap: 30px;
        width: 244px;
    }

    .aboutus-loopslide {
        border-radius: 30px;
    }
}