@charset "UTF-8";

/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/


/*/////////////////////////////////////////////////////////////////
  index.html
/////////////////////////////////////////////////////////////////*/


/*------------------------------------------------------------------
  home-hero
------------------------------------------------------------------*/

.home-hero {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.home-hero::before {
    position: absolute;
    content: "";
    display: block;
    background-image: url(/images/hero_film.png);
    top: 7vw;
    left: 0;
    aspect-ratio: 454 / 812;
    width: 13vw;
    /* height: 40.6vw; */
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    /* margin-top: 100px; */
    /* opacity: .7; */
}


/*  home-hero-slider
------------------------------------------------------------------*/

.home-hero-slider {
    position: relative;
    z-index: 1;
}

.home-hero-slider .swiper-slide {
    background: #fff;
    overflow: hidden;
}

.home-hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:767px) {
    .home-hero-slider::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 30svh;
        pointer-events: none;
        z-index: 1;
        background: linear-gradient(
            to bottom,
            rgba(67,42,9,0) 0%,
            rgba(67,42,9,0.1) 20%,
            rgba(67,42,9,0.4) 60%,
            rgba(67,42,9,0.6) 80%,
            rgba(67,42,9,0.8) 100%
        );
    }
}



/*  home-hero-slider-image
------------------------------------------------------------------*/

.home-hero-slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    opacity: 0;
    animation: homeHeroSlide 2s ease-out forwards;
}

@keyframes homeHeroSlide {
    from {
        opacity: 0;
        transform: scale(1.1);
        filter: sepia(1);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: sepia(0);
    }
}


/*  home-hero-title
------------------------------------------------------------------*/

.home-hero-catch {
    position: absolute;
    top: 11.4vw;
    left: 6vw;
    color: var(--white-color);
    font-size: clamp(.8rem, 0.486rem + 1vw, 1.45rem);
    font-weight: 500;
    line-height: 2;
    writing-mode: vertical-rl;
    text-orientation: upright;
    z-index: 2;
}

.home-hero-title {
    position: absolute;
    bottom: clamp(4vw, 6vw, 7.125vw);
    left: 6vw;
    color: var(--primary-color);
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(67, 42, 9, .6));
    line-height: 1;
    font-size: clamp(.75rem, 0.7rem + 0.5vw, 1.25rem);
    font-weight: 700;
}

.home-hero-title p {
    display: flex;
}

.home-hero-title .f-en {
    font-size: clamp(3rem, -0.714rem + 7.738vw, 6.25rem);
    letter-spacing: .04em;
    padding: 0 0 8px 0;
    font-weight: 500;
    display: flex;
}

.home-hero-title p span {
    width: .3em;
}

.home-hero-title p:nth-child(2) {
    padding-left: .5rem;
    letter-spacing: .1em;
}

@media screen and (max-width:1199px) {
    .home-hero-title {
        bottom: 3vw;
    }
    .home-hero-title .f-en {
        padding: 0;
    }
}

@media screen and (max-width:767px) {
    .home-hero::before {
        top: 7vw;
        left: -15vw;
        width: 40vw;
    }
    .home-hero-catch {
        font-size: 1.45rem;
        top: 30vh;
        filter: drop-shadow(0 0 4px rgba(67, 42, 9, .8));
    }
    .home-hero-title {
        bottom: 5rem;
        font-size: 1.1rem;
        filter: drop-shadow(0 0 2px rgba(67, 42, 9, .3)) drop-shadow(0 0 2px rgba(67, 42, 9, .3));
    }
    .home-hero-title .f-en {
        font-size: 3.5rem;
    }
}

@media screen and (max-width:575px) {
    .home-hero-catch {
        font-size: 1.2rem;
        top: 11vh;
    }
    .home-hero-title {
        bottom: 1rem;
        font-size: 1rem;
        line-height: 1.5;
    }
    .home-hero-title p:nth-child(2) {
        padding-left: 0;
    }
    .home-hero-title .f-en {
        font-size: 3.25rem;
        line-height: 1;
    }
}


/* @media screen and (max-width:767px) {
    .home-hero-title {
        top: initial;
        bottom: 10%;
        left: 8%;
        width: 84%;
    }
} */

@media print {
    .home-hero-title {
        left: 30px;
        bottom: 30px;
    }
}


/*------------------------------------------------------------------
  home-message
------------------------------------------------------------------*/

.message {
    position: relative;
    overflow: hidden;
}

.message .service-text {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: .1em;
    font-weight: 500;
}

.service-list-area {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    padding-bottom: 5rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    width: calc((100% - 1.5rem) / 2);
}

.service-list li {
    background-color: var(--primary-light-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
}

.service-list li .icon {
    background-color: var(--white-color);
    border-radius: 100%;
    aspect-ratio: 1;
    width: 115px;
    height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-list li .icon img {
    width: 50%;
    height: auto;
}
.service-list li .icon.high img {
    height: 50%;
    width: auto;
}
.service-list li p {
    font-size: 1.125rem;
    letter-spacing: .04em;
    font-weight: 700;
    line-height: 1.55;
    text-align: justify;
    display: flex;
    align-items: center;
}

@media screen and (max-width:1199px) {
    .service-list-area {
        gap: 0.25rem;
    }
    .service-list {
        gap: 0.25rem;
        width: calc((100% - 0.25rem) / 2);
    }
}

@media screen and (max-width:992px) {
    .service-list-area {
        flex-direction: column;
    }
    .service-list {
        width: 100%;
    }
}

@media screen and (max-width:576px) {
    .service-list li {
        flex-direction: column;
        padding: 1.5rem 1.5rem;
    }
    /* .service-list li .icon {
        width: 100px;
        height: 100px;
    } */
}

.blur.top-left {
    top: -500px;
    left: -500px;
}
.blur.bottom-right {
    bottom: -500px;
    right: -500px;
}
.film.top-right {
    top: -130px;
    right: -130px;
}
.film.bottom-left {
    bottom: 30px;
    left: -400px;
}

.message .blur.top-left {
    top: -500px;
    left: -500px;
}

.message .blur.bottom-right {
    bottom: -500px;
    right: -500px;
}

.message .film.top-right {
    top: -130px;
    right: -130px;
}

.message .film.bottom-left {
    bottom: 30px;
    left: -400px;
}

.message {
    background: var(--white-color);
}


/*------------------------------------------------------------------
  home-parallax
------------------------------------------------------------------*/

.parallax-section {
    height: 600px;
}


/* 新しい定義 */
.parallax-section {
  position: relative;
  height: 600px;                /* セクションの見せたい高さに調整OK */
  background-image: url(/images/parallax.jpg);
  background-repeat: no-repeat;
  background-size: cover;       /* 重要 */
  background-position: 0% 0%;  /* ← 初期位置。JSでここを動かす */
  will-change: background-position; /* パフォーマンス向上 */
}

@media (max-width: 991px) {
  .parallax-section{
    height: 420px;                /* 360–480で調整可 */
  }
}
/* SPは画像差し替えたいならここで切り替え */
@media (max-width: 576px) {
  .parallax-section {
    height: 200px;
  }
}

/*------------------------------------------------------------------
  home-plan
------------------------------------------------------------------*/

.plan {
    position: relative;
    overflow: hidden;
    background: var(--white-color);
}

.section-large {
    padding-block: 8.125rem;
}

.plan .container-wide {
    overflow: visible;
}

.plan .content-area {
    /* display: flex; */
    position: relative;
}

.plan .content-area .text-area {
    max-width: 55%;
}

.plan .title-english {
    margin-bottom: 2.75rem;
}

.plan .content-area .text-area .title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 2.75rem;
}
@media (max-width: 575px) {
    .plan .content-area .text-area .title {
        font-size: 1.5rem;
    }
}

.plan .content-area .text-area .text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan .content-area .text-area .text {
    font-size: 1.125rem;
    letter-spacing: .1em;
}

.plan .content-area .image-area {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(40%);
    z-index: -1;
}

.plan .content-area .image-area img {
    object-fit: cover;
    object-position: right;
}

.film-slim.top-left {
    top: -100px;
    left: -100px;
}
.film-slim.top-right {
    top: -100px;
    right: -20px;
}
.blur.bottom-center {
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1399px) {
    .plan .content-area .text-area {
        max-width: 60%;
    }
    .plan .content-area .image-area {
        overflow: hidden;
        transform: translateX(50%);
    }
    .plan .content-area .image-area img {
        transform: translateX(-25%);
    }
}

@media (max-width: 1199px) {
    .plan .content-area .text-area {
        max-width: 100%;
        margin-bottom: 6rem;
    }
    .plan .content-area .image-area {
        position: relative;
        transform: translateX(0);
        z-index: -1;
    }
    .plan .content-area .image-area img {
        object-fit: cover;
        object-position: right;
        transform: translateX(0);
        width: 100%;
    }
    .plan .blur.bottom-right {
        top: 250px;
        right: -500px;
        display: block;
    }
    .plan .film.bottom-left {
        bottom: -300px;
        right: -100px;
        transform: scaleX(-1);
        display: block;
    }
}

@media (max-width: 992px) {
    .section-large {
        padding-block: 5rem 3rem;
    }
    .plan .content-area .text-area {
        margin-bottom: 2rem;
    }
    .plan .content-area .image-area {
        overflow: visible;
        margin-left: -6vw;
    }
    .plan .content-area .image-area img {
        object-fit: cover;
        object-position: right;
        transform: translateX(0);
        width: 100vw;
    }
    .plan .blur.bottom-right {
        top: inherit;
        bottom: -500px;
    }
    .plan .film.bottom-left {
        display: none;
    }
}


/*------------------------------------------------------------------
  home-home_link
------------------------------------------------------------------*/

.home_link {
    overflow: hidden;
}

.home_link .service,
.home_link .contact {
    position: relative;
    padding: 6.875rem 8.125rem;
}

.home_link .service .text,
.home_link .contact .text {
    color: var(--white-color);
    margin-bottom: 5rem;
    line-height: 2;
    font-size: max(1rem, 14px);
}

.home_link .service::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    background-image: url(../images/top_service.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0.5);
    z-index: -1;
}

.home_link .contact::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    background-image: url(../images/top_contact.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0.5);
    z-index: -1;
}

.home_link .title-english {
    margin-bottom: 3.75rem;
}

.home_link .title-english .en,
.home_link .title-english .jp {
    color: var(--white-color);
}

.home_link .title-english .en {
    font-size: 5rem;
}

.home_link .title-english .jp {
    font-size: 1rem;
}

@media (max-width: 1199px) {
    .home_link .service,
    .home_link .contact {
        padding: 3rem 4rem;
    }
    .home_link .title-english .en {
        font-size: 4rem;
    }
}

@media (max-width: 767px) {
    .home_link .title-english .en {
        font-size: 5rem;
    }
    .home_link .title-english {
        margin-bottom: 1.75rem;
    }
    .home_link .service .text,
    .home_link .contact .text{
        margin-bottom: 2rem;
    }
}

@media (max-width: 575px) {
    .home_link .title-english .en {
        font-size: 4.5rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  service.html
/////////////////////////////////////////////////////////////////*/

.service-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
}

.service-text {
    text-align: center;
    line-height: 2;
    font-size: 1.125rem;
    font-weight: 700;
}

.strength ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.strength ul li {
    display: flex;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    align-items: center;
}

.strength li .icon {
    background-color: var(--white-color);
    border-radius: 100%;
    aspect-ratio: 1 / 1;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.strength li .icon img {
    width: 55%;
    height: auto;
}

.strength li .text-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 1rem - 200px);
    gap: 1rem;
    text-align: justify;
}

.strength li .text-area p:first-of-type {
    font-size: 1.5rem;
    font-weight: 700;
}

.strength li .text-area p:last-of-type {
    font-size: 1.125rem;
    text-align: justify;
}

@media screen and (max-width:991px) {
    .service-title {
        font-size: 1.55rem;
        letter-spacing: 0;
    }
    .strength ul {
        gap: .25rem;
    }

    .strength ul li {
        flex-direction: column;
        justify-content: center;
        padding: 1.5rem;
    }
    .strength li .text-area {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width:575px) {
    .service-text {
        text-align: justify;
    }
    .service-list-area { 
        padding-bottom: 3rem;
    }
    .strength li .text-area p:first-of-type {
        font-size: 1.25rem;
    }
}

.edit {
    display: flex;
    justify-content: space-between;
}

.edit .edit-img {
    width: 40%;
    min-width: 300px;
    height: auto;
}

.edit .edit-img img {
    width: 100%;
    height: auto;
}

.edit .edit-text-area {
    width: 57.5%;
}

.edit .edit-text-area .title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    width: fit-content;
    display: inline-block;
}

.edit-text-area .text {
    font-size: 1.125rem;
    text-align: justify;
}

@media screen and (max-width:991px) {
    .edit {
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
    }
    .edit .edit-img {
        width: 100%;
        max-width: 600px;
        height: auto;
        min-width: initial;
    }
    .edit .edit-text-area {
        width: 100%;
    }
    .edit .edit-text-area .title {
        font-size: 1.5rem;
    }
}

.flow h4 {
    border-left: 4px solid var(--primary-color);
    padding: 0 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: .5em;
}

.flow article ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flow article ul li {
    display: flex;
    background-color: var(--white-color);
    padding: 1.25rem 1.5rem;
    align-items: center;
    gap: 1.5rem;
}

.flow article ul li .icon {
    background-color: var(--primary-color);
    border-radius: 100%;
    aspect-ratio: 1;
    width: 115px;
    height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    object-fit: contain;
}

.flow article ul li .icon img {
    width: 100%;
    height: auto;
    padding: 1rem;
}
.flow article ul li .icon.high img {
    height: 100%;
    width: auto;
    padding: 1rem;
}

.flow article ul li .title {
    display: flex;
    align-items: center;
    width: calc((100% - 115px - 3rem) * 0.2);
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
}

.flow article ul li .title span {
    font-family: var(--en-font);
    font-size: .625rem;
    line-height: 1;
    margin-top: 2px;
    margin-right: .75rem;
    display: block;
    width: fit-content;
    height: fit-content;
}

.flow article ul li .text {
    display: inline-block;
    width: calc((100% - 115px - 3rem) * 0.8);
    font-size: 1.125rem;
    text-align: justify;
}

@media screen and (max-width:991px) {
    .flow article ul {
        gap: .25rem;
    }
    .flow article ul li {
        flex-direction: column;
        justify-content: center;
        padding: 1.5rem;
    }
    .flow article ul li .title {
        width: fit-content;
        margin: 0 auto;
    }
    .flow article ul li .text {
        width: fit-content;
        margin: 0 auto;
    }
}

.flow .btn {
    gap: 1rem;
}

.sample .movie-wrap {
    display: flex;
    gap: 2rem;
}

.sample .movie-area {
    width: 50%;
}

.sample .movie-area .title {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding: .75rem;
    border: 1px solid var(--primary-color);
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    background-color: var(--white-color);
}

.sample .movie-area .movie {
    aspect-ratio: 560 / 315;
    width: 100%;
}

.sample .movie-area .movie iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width:1199px) {
    .sample .movie-wrap {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    .sample .movie-area {
        width: 100%;
    }
}


/*/////////////////////////////////////////////////////////////////
  plan.html
/////////////////////////////////////////////////////////////////*/

.price article {
    display: flex;
    justify-content: space-between;
}

.price article .price-img {
    width: 40%;
    min-width: 300px;
    height: auto;
}

.price article .price-img img {
    width: 100%;
    height: auto;
}

.price article .price-text-area {
    width: 57.5%;
}

.price article .price-text-area .title {
    font-size: 1.25rem;
    font-weight: 700;
    background-color: var(--brown-color);
    color: var(--white-color);
    padding: 0 .75rem;
}

.price article .price-text-area .price-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: .5rem 0;
}

.price article .price-text-area .price-list li {
    background-color: var(--white-color);
    font-size: 1.125rem;
    padding: .25rem 1rem;
    border: 1px solid var(--brown-color);
    border-left: 4px solid var(--brown-color);
    line-height: 1.25;
    text-align: justify;
}

.price article .price-text-area .price-list li span:first-of-type {
    display: inline-block;
    width: 30%;
}

.price-text-area .text {
    font-size: 1.125rem;
    text-align: justify;
}

.price .btn-area {
    display: flex;
    justify-content: end;
    gap: 1.5rem;
}

.price .btn {
    gap: 1rem;
}

@media screen and (max-width:991px) {
    .price article {
        flex-direction: column;
        gap: 1rem;
    }
    .price article .price-img {
        width: 100%;
        max-width: 600px;
    }
    .price article .price-text-area {
        width: 100%;
        max-width: 600px;
    }
    .price .btn-area {
        flex-direction: column;
    }
}

@media screen and (max-width:575px) {
    .price article .price-text-area .price-list li span {
        display: block;
        width: fit-content;
    }
    .price article .price-img {
        min-width: initial;
    }
    .price .btn-area {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.price .info-text,
.cancel .info-text {
    border-left: 4px solid var(--primary-color);
    padding: 0 0 0 .5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.cancel-list {
    display: flex;
}

.cancel-list li {
    width: 25%;
    border: 1px solid var(--gray-color);
    border-right: initial;
}

.cancel-list li:last-of-type {
    border-right: 1px solid var(--gray-color);
}

.cancel-list li .title,
.cancel-list li .value {
    text-align: center;
    padding: .75rem;
    line-height: 1.5;
}

.cancel-list li .title {
    background-color: var(--brown-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 1.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cancel-list li .value {
    color: var(--black-color);
    font-weight: 700;
    font-size: 1.25rem;
    background-color: var(--white-color);
}

@media screen and (max-width:767px) {
    .cancel-list {
        flex-direction: column;
        justify-content: center;
    }
    .cancel-list li {
        width: 100%;
        border: 1px solid var(--gray-color);
        border-bottom: initial;
    }
    .cancel-list li:last-of-type {
        border-bottom: 1px solid var(--gray-color);
    }
}

.company-wrap {
    display: flex;
    flex: 0;
    gap: 2rem;
    justify-content: space-between;
}

.company-wrap .access {
    width: 38%;
}

.access iframe {
    width: 100%;
}

.access p {
    font-size: 1.25rem;
}

@media screen and (max-width:1199px) {
    .company-wrap {
        flex-direction: column;
    }
    .company-wrap .table01 {
        width: 100%;
    }
    .company-wrap .access {
        width: 100%;
    }
    .company-map {
        width: 100%;
    }
    .access iframe {
        width: 100%;
        height: 60vh;
    }
    .access p {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:767px) {
    .access {
        height: auto;
    }
}


/*/////////////////////////////////////////////////////////////////
  contact.html
/////////////////////////////////////////////////////////////////*/

.child-page .page-top .film {
    position: absolute;
    background-image: url(../images/common/film.png);
    aspect-ratio: 693 / 928;
    background-size: contain;
    background-repeat: no-repeat;
    height: 1000px;
    width: auto;
    top: -25rem;
    left: -10rem;
    z-index: 1;
    transform: scale(-1, 1);
    rotate: 30deg;
}
@media screen and (max-width:767px) {
    .child-page .page-top .film {
        height: 500px;
        top: -8rem;
        left: -10rem;
    }
}

.tel-fax .film-slim.top-left {
    top: -10rem;
    left: min(-1vw, -6rem);
}

.tel-fax {
    overflow: hidden;
}

.tel-fax .bottom-right {
    bottom: -500px;
    right: -500px;
}

.tel-fax .title-english .en span {
    margin-inline: -.25em;
}

.contact-tel-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px 20px;
    background: var(--primary-color);
    text-align: center;
}

.contact-tel-box .title {
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white-color);
    line-height: 1.4;
}

.contact-tel-box .num {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    --letter-spacing: 0;
    color: var(--white-color);
}

.contact-tel-box .num span,
.contact-tel-box .num span a {
    font-size: 2em;
    letter-spacing: 0;
    color: var(--white-color);
}

.contact-tel-box .time {
    font-size: 1.125rem;
    line-height: 1.4;
}

@media screen and (max-width:767px) {
    .contact-tel-box {
        padding: 24px 16px;
    }
    .contact-tel-box .time {
        font-size: .75rem;
    }
}

.form-error {
    position: relative;
    padding-left: 1.25em;
    margin-top: 5px;
    color: var(--red-color);
}

.form-error::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\f057";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}