
/* =========================
   front kv
========================= */
.front-kv {
    position: relative;
    padding: 0;
}

.front-kv__inner {
    position: relative;
    display: flex;
    min-height: 720px;
}

.front-kv__copy {
    width: 30%;
    min-width: 300px;
    padding: 150px 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.front-kv__title {
    margin: 0 0 28px;
    font-family: "Noto Serif JP",serif;
    font-size: min(calc(60 / 1800 * 100vw), calc(60 * 1px));
    line-height: 1.66;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #2f2f2f;
}

.front-kv__text {
    margin: 0;
    font-size: min(calc(18 / 1800 * 100vw), calc(18 * 1px));
    line-height: 2;
    color: #333;
    letter-spacing: 0.04em;
    font-family: "Noto Serif JP",serif;
}

.front-kv__visual {
    width: 73%;
}

.front-kv__visual img {
    display: block;
    width: 100%;
    height: 900px;
    object-fit: cover;
}

.front-kv__badges {
    position: absolute;
    right: 102px;
    bottom: 62px;
    display: flex;
    gap: 18px;
}

.front-kv__badge {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    text-align: center;
}

.front-kv__badgeLabel {
    display: block;
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

.front-kv__badgeNum {
    display: block;
    font-family: "Noto Serif JP",serif;
    font-size: 40px;
    line-height: 1;
    font-weight: bold;
}

.front-kv__badgeNum span {
  font-size: 2.4rem;
  font-weight: bold;
}

.banner {
    padding: 5%;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.banner a {
    width: 520px;
    max-width: 100%;
}

.banner p {
	font-size:1.3em;
}

/* front kv slider */
.front-kv__visual {
    width: 73%;
    position: relative;
    overflow: hidden;
}

.front-kv__slider,
.front-kv__slider .bx-wrapper,
.front-kv__slider .bx-viewport {
    height: 100%;
}

.front-kv__slider {
    height: 720px;
}

.front-kv__slider .bx-wrapper {
    margin: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

.front-kv__slide {
    height: 720px;
}

.front-kv__slide img {
    display: block;
    width: 100%;
    height: 720px;
    object-fit: cover;
}

.front-kv__slide {
    z-index: 0 !important;
}

/* PC微調整 */
@media screen and (max-width: 1400px) {
    .front-kv__copy {
        width: 28%;
        padding: 130px 34px 50px;
    }

    .front-kv__visual {
        width: 72%;
    }
}

@media screen and (max-width: 1200px) {
    .front-kv__copy {
        min-width: 260px;
        padding: 120px 28px 50px;
    }
}

/* SP */
@media screen and (max-width: 767px) {
    .front-kv {
        background: #f3f3f3;
    }

    .front-kv__inner {
        display: block;
        min-height: auto;
        position: relative;
    }

    .front-kv__copy,
    .front-kv__visual {
        width: 100%;
        min-width: 0;
    }

    .front-kv__copy {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        background: none;
        padding: 108px 24px 0;
        pointer-events: none;
    }

    .front-kv__title {
        margin: 0 0 18px;
       font-family: "Noto Serif JP",serif;
        font-size: 3rem;
        line-height: 1.8;
        font-weight: 500;
        letter-spacing: 0.08em;
        color: #fff;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.22);
    }

    .front-kv__text {
        margin: 0;
        font-size: 1.3rem;
        line-height: 1.9;
        font-weight: 600;
        color: #fff;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.22);
    }

    .front-kv__visual {
        position: relative;
    }

    .front-kv__visual img {
        display: block;
        width: 100%;
        height: 118vw;
        min-height: 0;
        object-fit: cover;
        object-position: left;
    }

    /* バッジは画像の下に別段で並べる */
    .front-kv__badges {
        position: static;
        display: flex;
        gap: 0;
        padding: 0;
        background: #f3f3f3;
    }

    .front-kv__badge {
        width: 33.3333%;
        height: auto;
        min-height: 120px;
        border-radius: 0;
        background: transparent;
        padding: 20px 8px 16px;
        position: relative;
    }

    .front-kv__badge:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 18px;
        right: 0;
        width: 1px;
        height: calc(100% - 36px);
        background: #9a9a9a;
    }

    .front-kv__badgeLabel {
        margin-bottom: 8px;
        font-size: 1.1rem;
        line-height: 1.6;
        color: #333;
        letter-spacing: 0.04em;
    }

    .front-kv__badgeNum {
        font-size: 2.2rem;
        line-height: 1.1;
        color: #333;
        font-weight: 500;
    }

    .front-kv__badgeNum span {
        font-size: 1.2rem;
    }

    .banner {
      gap: 20px;
      padding: 12% 5%;
    }

    .front-kv__visual {
        width: 100%;
    }

    .front-kv__slider {
        height: 118vw;
    }

    .front-kv__slide {
        height: 118vw;
    }

    .front-kv__slide img {
        height: 118vw;
    }
}

/* =========================
   top concept
========================= */
/* .top-concept {
    padding: 120px 0 140px;
    overflow: hidden;
} */

.top-concept .ttl-cmn01 {
    margin-bottom: 90px;
}

.top-concept-list {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.top-concept-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    align-items: center;
    column-gap: 50px;
}

.top-concept-item--reverse {
    grid-template-columns: 460px minmax(0, 1fr);
}

.top-concept-item--reverse .top-concept-item__img {
    order: 2;
}

.top-concept-item--reverse .top-concept-item__txt {
    order: 1;
}

.top-concept-item__img {
    margin: 0;
}

.top-concept-item__imgLeft {
  margin-left: calc(50% - 50vw);
}

.top-concept-item__imgRight {
  margin-right: calc(50% - 50vw);
}

.top-concept-item__img img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
    /* aspect-ratio: 800 / 470; */
    object-fit: cover;
    object-position: center;
}

.top-concept-item__txt {
    max-width: 460px;
}

.top-concept-item__label {
    margin: 0 0 14px;
    font-size: 1.6rem;
    line-height: 1.4;
    color: #333;
    position: relative;
}

.top-concept-item__label span {
  font-size: 2.4rem;
}

.top-concept-item__label::after {
  position: absolute;
  content:"";
  width: 60px;
  height: 1px;
  background-color: #333;
  bottom: -10px;
  left: 0;
}

.top-concept-item__txt .ttl-cmn02 {
    margin: 36px 0 26px;
}

.top-concept-item__txt .ttl-cmn02 strong {
    font-size: 2.6rem;
    line-height: 1.5;
    font-family: "Noto Serif JP",serif;
    font-weight: 400;
    color: #333;
}

.top-concept-item__txt > p:last-child {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    letter-spacing: 0.03em;
    text-align: justify;
}

/* 既存の縦書きを今回は解除 */
.top-concept-item__txt .ttl-cmn02.vertical,
.top-concept-item__txt .ttl-cmn02.center {
    display: block;
    writing-mode: horizontal-tb;
    text-align: left;
}

/* tablet */
@media screen and (max-width: 1200px) {
    /* .top-concept {
        padding: 100px 0 120px;
    } */

    .top-concept .ttl-cmn01 {
        margin-bottom: 70px;
    }

    .top-concept-list {
        gap: 70px;
    }

    .top-concept-item,
    .top-concept-item--reverse {
        grid-template-columns: minmax(0, 1fr) 360px;
        column-gap: 40px;
    }

    .top-concept-item__txt {
        max-width: 360px;
    }

    .top-concept-item__txt .ttl-cmn02 strong {
        font-size: 3.2rem;
    }

    .top-concept-item__txt > p:last-child {
        font-size: 1.4rem;
        line-height: 2;
    }
}

/* sp */
@media screen and (max-width: 767px) {
    /* .top-concept {
        padding: 70px 0 80px;
    } */

    .top-concept .ttl-cmn01 {
        margin-bottom: 45px;
    }

    .top-concept-list {
        gap: 50px;
    }

    .top-concept-item,
    .top-concept-item--reverse {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .top-concept-item--reverse .top-concept-item__img,
    .top-concept-item--reverse .top-concept-item__txt {
        order: initial;
    }

    .top-concept-item__img {
        width: 100%;
    }

    .top-concept-item__img img {
        aspect-ratio: 16 / 10;
    }

    .top-concept-item__txt {
        max-width: 100%;
    }

    .top-concept-item__label {
        margin-bottom: 8px;
        font-size: 1.2rem;
    }

    .top-concept-item__txt .ttl-cmn02 {
        margin: 26px 0 16px;  
    }

    .top-concept-item__txt .ttl-cmn02 strong {
        font-size: 2rem;
        line-height: 1.6;
    }

    .top-concept-item__txt > p:last-child {
        font-size: 1.35rem;
        line-height: 1.9;
    }
}

/* =========================
   top service
========================= */
/* .top-service {
    padding: 120px 0 140px;
} */

.top-service .ttl-cmn01 {
    margin-bottom: 70px;
}

.top-service-list {
    /* max-width: 790px; */
    margin: 0 auto;
}

.top-service-sublist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 28px;
}

.top-service-card {
    position: relative;
    display: block;
    overflow: hidden;
    color: #fff;
    background: #000;
}

.top-service-card__img {
    margin: 0;
    position: relative;
}

.top-service-card__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    transition: background .3s ease;
}

.top-service-card__img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .5s ease;
}

.top-service-card--large .top-service-card__img img {
    aspect-ratio: 790 / 238;
}

.top-service-sublist .top-service-card__img img {
    aspect-ratio: 1 / 1;
}

.top-service-card__body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    text-align: center;
}

.top-service-card__catch {
    margin: 0 0 40px;
    font-size: 2rem;
    line-height: 1.5;
    color: #fff;
    letter-spacing: 0.04em;
}

.top-service-card__title {
    margin: 0;
    /* font-family: "Noto Serif JP",serif; */
    font-size: 4rem;
    line-height: 1.2;
    font-weight: normal;
    color: #fff;
    letter-spacing: 0.06em;
}

.top-service-sublist .top-service-card__title {
    font-size: 3.6rem;
}

.top-service-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-top: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #333;
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
}

.top-service-card:hover {
    opacity: 1;
}

.top-service-card:hover .top-service-card__img::after {
    background: rgba(0, 0, 0, 0.18);
}

.top-service-card:hover .top-service-card__img img {
    transform: scale(1.04);
}

/* tablet */
@media screen and (max-width: 1200px) {
    /* .top-service {
        padding: 100px 0 120px;
    } */

    .top-service .ttl-cmn01 {
        margin-bottom: 60px;
    }

    .top-service-list {
        max-width: 840px;
    }

    .top-service-card__catch {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .top-service-card__title {
        font-size: 4.2rem;
    }

    .top-service-sublist .top-service-card__title {
        font-size: 3rem;
    }
}

/* sp */
@media screen and (max-width: 767px) {
    /* .top-service {
        padding: 70px 0 80px;
    } */

    .top-service .ttl-cmn01 {
        margin-bottom: 40px;
    }

    .top-service-list {
        max-width: 100%;
    }

    .top-service-sublist {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 16px;
    }

    .top-service-card--large .top-service-card__img img,
    .top-service-sublist .top-service-card__img img {
        aspect-ratio: 16 / 10;
    }

    .top-service-card__body {
        padding: 20px 16px;
    }

    .top-service-card__catch {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .top-service-card__title {
        font-size: 3.2rem;
    }

    .top-service-sublist .top-service-card__title {
        font-size: 2.8rem;
    }

    .top-service-card__arrow {
        width: 28px;
        height: 28px;
        margin-top: 16px;
        font-size: 1.2rem;
    }
}

/* =========================
   top voice
========================= */
.top-voice {
    padding: 120px 0 140px;
}

.top-voice .ttl-cmn01 {
    margin-bottom: 70px;
}

.top-voice-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 54px;
}

.top-voice-item {
    min-width: 0;
}

.top-voice-item__link {
    display: block;
    color: #333;
}

.top-voice-item__img {
    margin: 0 0 18px;
    overflow: hidden;
    background: #ddd;
}

.top-voice-item__img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 376 / 320;
    object-fit: cover;
    transition: transform .5s ease;
}

.top-voice-item__title {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.9;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.04em;
}

.top-voice-item__link:hover {
    opacity: 1;
}

.top-voice-item__link:hover .top-voice-item__img img {
    transform: scale(1.04);
}

.top-voice--btn__item {
  width: calc((100% - 30px) / 2);
  margin: auto;
  margin-top: 60px;
}

/* tablet */
@media screen and (max-width: 1200px) {
    .top-voice {
        padding: 100px 0 120px;
    }

    .top-voice-list {
        gap: 32px;
    }

    .top-voice-item__title {
        font-size: 1.6rem;
        line-height: 1.8;
    }
}

/* sp */
@media screen and (max-width: 767px) {
    .top-voice {
        padding: 70px 0 80px;
    }

    .top-voice .ttl-cmn01 {
        margin-bottom: 40px;
    }

    .top-voice-list {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .top-voice-item__img {
        margin-bottom: 12px;
    }

    .top-voice-item__img img {
        aspect-ratio: 16 / 10;
    }

    .top-voice-item__title {
        font-size: 1.4rem;
        line-height: 1.8;
    }
        .top-voice--btn__item.btn-cmn01 {
        width: 100%;
        margin: 40px auto 0;
    }
}

/* =========================
   top area
========================= */
/* .top-area {
    padding: 120px 0 140px;
} */

.top-area .ttl-cmn01 {
    margin-bottom: 55px;
}

.top-area__inner {
    max-width: 460px;
    margin: 0 auto;
}

.top-area__map {
    margin: 0 0 26px;
}

.top-area__map img {
    display: block;
    width: 100%;
    height: auto;
}

.top-area__note {
    color: #2f4362;
}

.top-area__label {
    margin: 0 0 8px;
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    color: #2f4362;
}

.top-area__text {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.9;
    color: #2f4362;
    letter-spacing: 0.02em;
}

/* tablet */
/* @media screen and (max-width: 1200px) {
    .top-area {
        padding: 100px 0 120px;
    }
} */

/* sp */
@media screen and (max-width: 767px) {
    /* .top-area {
        padding: 70px 0 80px;
    } */

    .top-area .ttl-cmn01 {
        margin-bottom: 38px;
    }

    .top-area__inner {
        max-width: 100%;
    }

    .top-area__map {
        margin-bottom: 16px;
    }

    .top-area__label {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }

    .top-area__text {
        font-size: 1.2rem;
        line-height: 1.8;
    }
}