/* Rules */
/* By default, write styles for sizes below 767px.  */
/* Use media screens for 768px and above, as well as 1200px and above. */
/* When writing new code, use [rem] or [vw] as the unified unit for font size, margin, and padding. */
/* html font-size is 3vw. */

@charset "utf-8";

/* common start */
html {
    font-size: 3vw;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

button,
input,
select,
textarea {
    background-color: transparent;
    border-style: none;
}

.br_sp {
    display: block;
}

.sponly {
    display: block;
}

.tabonly {
    display: none;
}

.pconly {
    display: none;
}

.sp_tab {
    display: block;
}

.tab_pc {
    display: none;
}

.center {
    text-align: center;
}

.green {
    color: #009000;
}

.sub-bg {
    background: url('/images/back.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.sub-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/back.jpg') center/cover no-repeat;
    z-index: 0;
}


/* common end */

/* header start */
.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
}

.header::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url('/images/header_background.png') left top / 100% no-repeat;
    width: 80%;
    height: 11.1890624994vw;
    z-index: 0;
}

.company-logo-user {
    position: relative;
    z-index: 1;
    padding: 0.5rem;
}

.company-logo-user a {
    display: block;
}

.company-logo-user img {
    width: 35%;
}


.header__menu-list {
    display: grid;
    position: fixed;
    bottom: 0;
    width: 100%;
    gap: 0;
    grid-template-columns: repeat(4, 1fr);
    border-top: solid 0.0625rem #e9eef2;
    background: #fff;
}

.header__menu-item {
    list-style: none;
}


.header__menu-link {
    font-size: 0.8rem;
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 6rem;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: #009000;
}

/* header end */

/* header_sub start */

.language-switcher {
    position: absolute;
    /* ヘッダー内での絶対配置 */
    top: 50%;
    /* ヘッダー中央に揃える */
    right: 0.5rem;
    /* 右端から 0.5rem */
    transform: translateY(-50%);
    /* 縦方向センター */
    z-index: 1;
    /* ヘッダーの背景より手前に出す */
    font-family: sans-serif;
}

/* プルダウンを開くボタン */
.language-switcher .lang-toggle {
    background-color: #ffffff;
    /* 白背景 */
    border: 1px solid #cccccc;
    /* 薄いグレーの境界線 */
    border-radius: 4px;
    color: #4a4a4a;
    /* 濃いグレー文字 */
    font-size: 0.875rem;
    /* 14px 相当 */
    padding: 0.3rem 0.6rem;
    /* 上下4px, 左右8px */
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    user-select: none;
}

/* lang-toggle にホバーしたとき */
.language-switcher .lang-toggle:hover {
    background-color: #f5f5f5;
    /* 薄いグレー */
    color: #000000;
    /* 黒文字 */
}

/* プルダウンリストを包む <ul> は最初は非表示 */
.language-switcher .lang-dropdown {
    display: none;
    /* 初期状態では隠す */
    position: absolute;
    /* lang-toggle を基準に絶対配置 */
    top: 100%;
    /* ボタンのすぐ下 */
    right: 0;
    /* 右揃え */
    background-color: #ffffff;
    /* 白背景 */
    border: 1px solid #cccccc;
    /* ボーダー */
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    margin-top: 0.2rem;
    /* ボタンとの隙間 */
    min-width: 8rem;
    /* 最低幅 8rem(128px) */
    z-index: 2;
    list-style: none;
    padding: 0.25rem 0;
    /* 上下 4px ずつ余白 */
}

/* プルダウンを開く：ホバー時に lang-dropdown を表示 */
.language-switcher:hover .lang-dropdown,
.language-switcher .lang-toggle:focus+.lang-dropdown {
    display: block;
}

/* リストアイテム */
.language-switcher .lang-dropdown li {
    margin: 0;
    padding: 0;
}

/* 各言語選択リンク */
.language-switcher .lang-dropdown li a {
    display: block;
    color: #4a4a4a;
    /* 濃いグレー文字 */
    text-decoration: none;
    font-size: 0.875rem;
    /* 14px 相当 */
    padding: 0.5rem 0.75rem;
    /* 上下8px, 左右12px */
    white-space: nowrap;
}

/* 選択肢ホバー時 */
.language-switcher .lang-dropdown li a:hover {
    background-color: #f5f5f5;
    color: #000000;
}

.header_sub {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
}

.header_sub::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    z-index: 0;
}

.company-logo-user {
    position: relative;
    z-index: 1;
    padding: 0.5rem;
}

.company-logo-user a {
    display: contents;
    padding: 0;
    line-height: 0;
}

.company-logo-user img {
    width: 35%;
    margin: 0;
    padding: 0;
}


.header__menu-list {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: solid 0.0625rem #e9eef2;
    background: #fff;
}

.header__menu-item {
    flex: 1;
    list-style: none;
}


.header__menu-link {
    font-size: 0.8rem;
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 6rem;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: #009000;
}

/* ACCOUNT メニュー用 */
.header__menu-item.account-menu {
    position: relative;
}

/* 折りたたみ本体はデフォルト非表示 */
.header__menu-item.account-menu .account-dropdown {
    display: none;
    position: absolute;
    bottom: 6rem;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e9eef2;
    border-radius: 0.25rem;
    overflow: hidden;
    z-index: 1001;
}

/* メニューを開く */
.header__menu-item.account-menu.open .account-dropdown {
    display: block;
}

/* ドロップダウン内アイテム */
.account-dropdown li {
    border-bottom: 1px solid #e9eef2;
}

.account-dropdown li:last-child {
    border-bottom: none;
}

/* 内部リンク／ボタンのスタイル */
.account-dropdown a,
.account-dropdown button {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: none;
    border: none;
    color: #009000;
    font-size: 0.9rem;
    text-decoration: none;
}

.account-dropdown a:hover,
.account-dropdown button:hover {
    background: #f5f8fa;
}



/* header_sub end */


/* login start */
.hero-bg {
    background: url('/images/topback.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/topback.png') center/cover no-repeat;
    filter: blur(2.5px);
    z-index: 0;
}

/* login end */

/* aboutus start */
@keyframes gradients {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.about_us {
    background-image: linear-gradient(to right, #009000, #31d378, #3CB371, #31d378, #009000);
    animation: gradients 20000ms ease infinite both;
    background-size: 600%;
}

.about_us .inner {
    padding: 5rem 2rem 8rem;
}

.about_us .headtitle {
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 2.75rem;
    margin-bottom: 3rem;
}

.about_us .message-block {
    color: #fff;
}

.about_us .message-block h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.about_us .message-block h3 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.about_us .message-block p {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about_us .message-block img {
    width: 100%;
    border-radius: 3rem;
}


/* aboutus end */

/* services start */
.services {
    border-radius: 3rem 3rem 0 0;
    background: #fff;
    margin-top: -3rem;
}

.services .inner {
    padding: 5rem 2rem 8rem;
}

.services .headtitle {
    color: #009000;
    text-align: center;
    font-weight: 700;
    font-size: 2.75rem;
    margin-bottom: 2rem;
}

.services .message-block p {
    color: #2d322d;
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.card_link {
    position: relative;
}

.card_link-change:hover .card_link-icon::before {
    transform: scale(1.15);
}

.card_link-img {
    filter: brightness(0.55);
}

.card_link-change:hover .card_link-img {
    filter: brightness(0.65);
}

.link_img {
    width: 100%;
    height: 100%;
    display: block;
}

.link_img image {
    filter: blur(2px);
}

.card_link-icon {
    width: 3.5rem;
    height: 3.5rem;
    position: absolute;
    right: 0.5%;
    top: 38%;
    display: flex;
}

.card_link-icon svg {
    fill: #fff;
    z-index: 1;
    width: 60%;
    margin: auto;
}

.card_link .card_link-icon::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #009000;
    z-index: 0;
    transition: transform 300ms ease, -webkit-transform 300ms ease;
    will-change: transform;
}

.card_link_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card_link_text h3 {
    padding: 2rem;
    display: flex;
    height: 100%;
    flex-flow: column;
    justify-content: space-between;
}

.card_link_text h3 span {
    display: block;
    color: #fff;
    font-size: 2.5rem;
}

/* services end */

/* news start */
.news {
    background: #fff;
    margin-top: -3rem;
}

.news .inner {
    padding: 5rem 2rem 8rem;
}

.news .headtitle {
    color: #009000;
    text-align: center;
    font-weight: 700;
    font-size: 2.75rem;
    margin-bottom: 2rem;
}

.article_block article {
    border-top: solid 1px #e9eef2;
    position: relative;
}

.article_block article:last-child {
    border-bottom: solid 1px #e9eef2;
}

.article_block a {
    padding: 2rem;
    display: block;
}

.article_head {
    display: flex;
}

.article_head span {
    position: relative;
    font-size: 1rem;
}

.article_head span::before {
    content: "";
    display: block;
    width: .8rem;
    height: .8rem;
    border-radius: 50%;
    background: #009000;
    position: absolute;
    top: calc(50% - .4rem);
    left: -1.5rem;
}

.article_head time {
    margin-left: 1.25rem;
    opacity: 0.7;
}

.article_title {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.64;
    margin-top: 0.5rem;
}

/* news end */

/* contact us start */
.contact_us {
    background: #fff;
    margin-top: -3rem;
    border-radius: 0 0 3rem 3rem;
    position: relative;
}

.contact_us .inner {
    padding: 0 2rem 8rem;
}


.contact_us .headtitle {
    color: #009000;
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.contact_desc {
    font-size: 1rem;
    text-align: center;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.contact_us .card_link_text h3 {
    padding: 2rem;
    display: flex;
    height: 100%;
    flex-flow: column;
    justify-content: flex-end;
}

/* contact us end */

/* footer start */

.footer {
    background-image: linear-gradient(to right, #009000, #31d378, #3CB371, #31d378, #009000);
    animation: gradients 20000ms ease infinite both;
    background-size: 600%;
    margin-top: -6rem;
    padding: 3rem 0;
}

.footer .inner {
    padding: 5rem 2rem 5rem;
}

.footer .headtitle h2 {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    flex-flow: column;
    padding: 1.5rem 0 0.5rem;
    font-weight: 700;
}

.footer-link_box h4 {
    padding: 1rem 0;
    color: #434343;
    font-weight: 700;
}

.link_deco {
    color: aliceblue;
    transition: all 0.4s;
}

.copyright {
    color: #fff;
    margin-top: 0.625rem;
    font-size: 0.8rem;
}

.footer_logo {
    display: block;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.footer_logo img {
    width: 70%;
}

/* footer end */

/* policy start */
.banner {
    background: url('/images/banner_user.jpg');
    padding: 17vw 0 6vw 0;
}

.banner h1 {
    color: #fff;
    text-align: center;
}

.container {
    padding: 4vw;
    width: 85%;
    margin: 0 auto;
}

.privacy ol {
    margin-bottom: 1vw;
    border-bottom: 1px dotted #CCC;
    padding-bottom: 1vw;
}

.privacy h3 {
    margin-bottom: 0.7vw;
}

.topbtn {
    background-color: #009000;
    width: 20%;
    border-radius: 0.8rem;
    text-align: center;
    color: #f1f8ff;
    margin: 1rem auto;
}

.topbtn a {
    display: block;
    text-decoration: none;
    font-weight: 600;
}

/* policy end */

/* footersub start */

.footer_sub {
    background-image: linear-gradient(to right, #009000, #31d378, #3CB371, #31d378, #009000);
    animation: gradients 20000ms ease infinite both;
    background-size: 600%;
}

.footer_sub .inner {
    padding: 2rem 1rem 10rem;
    width: 85%;
    margin: 0 auto;
}

.footer_sub .headtitle h2 {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-policy {
    display: flex;
    flex-wrap: wrap;
    padding: 1.5rem 0 0.5rem;
    border-bottom: 0.0625rem solid #fff;
    font-weight: 700;
    justify-content: space-between;
}

.footer-policy__item {
    width: 50%;
    margin-right: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #fff;
}

.copyright {
    color: #fff;
    margin-top: 0.625rem;
    font-size: 0.8rem;
}

.footer_sub .footer_logo {
    display: block;
    display: flex;
    margin-top: 1rem;
    justify-content: center;
}

.footer_sub .footer_logo img {
    width: 50%;
}

/* footersub end */

/* cancel policy start */

.cancellation-table th,
.cancellation-table td {
    border: 1px solid #ddd;
}

.cancellation-table__head {
    background-color: #f2f2f2;
}

.cancellation-table__cell {
    padding: 0.1rem 0;
    text-align: center;
}


/* cancel policy end */



@media screen and (min-width:768px) {
    /* common start */

    html {
        font-size: 1.2vw;
    }

    .sponly {
        display: none;
    }

    .tabonly {
        display: block;
    }

    .sp_tab {
        display: block;
    }

    .tab_pc {
        display: block;
    }

    /* common end */

    /* header start */

    .header::before {
        width: 50%;
        height: 8.189062vw;
    }

    .header_inner {
        display: flex;
        justify-content: space-between;
        padding: 2vw 2.5vw 0;
        align-items: center;
        width: 100%;
    }

    .company-logo-user a {
        width: 12rem;
    }


    .company-logo-user img {
        width: 100%;
    }

    .header__menu {
        z-index: 1;
        width: calc(100% - 17vw);
        display: flex;

    }

    .header__menu-list {
        display: flex;
        position: static;
        padding: 0.3rem 0.7rem;
        gap: 2rem;
        width: auto;
        border-radius: 4rem;
        background: #009000;
        border-top: none;
        box-shadow: 2px 2px 5px rgba(18, 17, 17, 0.15);
    }

    .header__menu-list li {
        display: flex;
    }

    .header__menu-list li::before {
        content: "★";
        position: relative;
        z-index: 100;
        color: #ffffff;
        font-size: 0.9rem;
        margin-right: 0.25rem;
    }

    .header__menu-link {
        height: auto;
    }

    .header__menu-link img {
        display: none;
    }

    .header__menu-link span {
        font-size: 0.9rem;
        color: #fff;
        font-weight: 700;
    }

    /* header end */

    /* header_sub start */

    .header_sub::before {
        width: 100%;
    }

    .header_inner_sub {
        display: flex;
        justify-content: space-between;
        padding: 0.5vw 2.5vw;
        align-items: center;
        width: 100%;
    }

    .company-logo-user a {
        display: block;
    }

    .company-logo-user img {
        width: 35%;
    }

    .company-logo-user a {
        width: 12rem;
    }


    .company-logo-user img {
        width: 100%;
    }

    .header_inner_sub .header__menu {
        z-index: 1;
        width: calc(100% - 10vw);
        display: flex;

    }

    .header__menu-list {
        display: flex;
        position: static;
        padding: 0.3rem 0.7rem;
        gap: 3rem;
        width: auto;
        border-radius: 4rem;
        background: #009000;
        border-top: none;
        box-shadow: 2px 2px 5px rgba(18, 17, 17, 0.15);
    }

    .header__menu-list li {
        display: flex;
    }

    .header_inner_sub .header__menu-list li::before {
        content: "★";
        position: relative;
        z-index: 100;
        color: #ffffff;
        font-size: 0.6rem;
        margin-right: 0.25rem;
    }

    .header__menu-link {
        height: auto;
    }

    .header__menu-link img {
        display: none;
    }

    .header_inner_sub .header__menu-link span {
        font-size: 0.7rem;
        color: #fff;
        font-weight: 700;
    }

    .header__menu-item {
        flex: none;
    }

    .header__menu-item.account-menu .account-dropdown {
        bottom: auto;
        top: 100%;
        left: 0;
        width: 100%;
    }

    .account-dropdown li::before {
        content: none !important;
    }

    .account-dropdown li {
        display: block !important;
    }

    .account-dropdown a, .account-dropdown button {
        padding: 0.5rem 0;
        font-size: 0.6rem;
        line-height: 1.5;
        box-sizing: border-box;
    }

    .account-dropdown button {
        appearance: none;
        border-radius: 0;
        font-family: inherit;
    }

    /* header_sub end */


    /* bannner start */

    .filter {
        filter: brightness(0.85);
    }

    .banner_message {
        width: 50%;
        top: 55%;
        left: 75%;
    }

    .banner_message h1 {
        font-size: 5.75rem;
    }

    .banner_message .line1 {
        margin-bottom: initial;
        display: block;
    }

    .banner_message .line2 {
        display: block;
    }

    .banner_message .line3 {
        display: block;
    }

    .banner_message .line4 {
        margin-bottom: 1rem;
        display: block;
    }

    .banner-logo {
        width: 90%;
    }

    /* bannner end */

    /* aboutus start */
    .about_us .headtitle {
        font-size: 4rem;
        text-align: left;
    }

    .message-block {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .about_us .text-contents {
        padding: 2rem 2rem 2rem 0;
    }

    .about_us .message-block h2 {
        margin-bottom: 2rem;
        font-size: 2rem;
    }

    .about_us .message-block h3 {
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }

    .about_us .message-block p {
        margin-bottom: initial;
        font-size: 1.25rem;
    }

    .about_us .message-block img {
        width: 30%;
    }

    /* aboutus end */

    /* services start */
    .services .headtitle {
        text-align: left;
        font-size: 4rem;
    }

    .services .message-block p {
        margin-bottom: initial;
        font-size: 1.25rem;
        padding: 0 2rem 0 0;
        width: 50%;
    }

    .services .card_link {
        position: relative;
        width: 47%;
        display: inline;
    }

    .services .link_img {
        width: 100%;
        height: 100%;
        display: block;
    }

    .services .card_link-icon {
        width: 4.5rem;
        height: 4.5rem;
        position: absolute;
        right: 0.5%;
        top: 38%;
    }

    .services .card_link-icon svg {
        fill: #fff;
        z-index: 1;
        width: 60%;
        margin: auto;
    }

    .services .card_link_text h3 {
        padding: 2rem 2rem 2rem 4rem;
    }

    .services .card_link_text h3 span {
        font-size: 3rem;
    }

    /* services end */

    /* news start */
    .news .headtitle {
        text-align: left;
        font-size: 4rem;
    }

    /* news end */

    /* contact us start */
    .contact_us .headtitle {
        font-size: 4rem;
    }

    .contact-block {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .contact-block .text-contents {
        width: 50%;
        display: flex;
        flex-flow: column;
        align-items: center;
    }

    .slogan {
        font-size: 2rem;
        text-align: left;
        line-height: 1.5;
    }

    .contact_desc {
        margin-bottom: initial;
    }

    .contact_us .card_link {
        position: relative;
        width: 40%;
        display: inline;
    }

    .contact_us .card_link-icon {
        width: 4.5rem;
        height: 4.5rem;
    }

    .contact_us .card_link_text h3 {
        padding: 2rem;
        display: flex;
        height: 100%;
        flex-flow: column;
        justify-content: flex-end;
    }

    /* contact us end */

    /* footer start */
    .footer .inner {
        padding: 10rem 8rem 4rem;
    }

    .footer .headtitle h2 {
        font-size: 2.25rem;
    }

    .footer-links {
        padding: 2.5rem 0 1.5rem;
        display: flex;
        flex-flow: row;
    }

    .footer-link_box {
        margin-right: 10rem;
    }

    .footer-link_box h4 {
        padding: 1rem 0;
        color: #434343;
    }

    .link_deco {
        color: aliceblue;
        transition: all 0.4s;
    }

    .copyright {
        font-size: 1rem;
    }

    .footer_logo img {
        width: 50%;
    }

    .footer_sub {
        display: flex;
        min-height: 45vh;
    }

    .footer_sub .inner {
        padding: 2rem 1rem 2rem;
    }

    .footer_sub .footer_logo img {
        width: 25%;
    }

    /* footer end */

    /* policy start */
    .banner {
        padding: 10vw 0 4vw 0;
    }

    /* policy end */

}

@media screen and (min-width:1200px) {
    /* common start */

    html {
        font-size: 0.9vw;
    }

    .sponly {
        display: none;
    }

    .tabonly {
        display: none;
    }

    .sp_tab {
        display: none;
    }

    .tab_pc {
        display: block;
    }

    .pconly {
        display: block;
    }


    /* common end */

    /* header start */


    .company-logo-user a {
        width: 15rem;
    }

    .header__menu-list {
        padding: 0.5rem 0.9rem;
    }

    .header_inner_sub .company-logo-user a {
        width: 8rem;
    }

    .header_inner_sub .header__menu-list {
        padding: 0.3rem 0.5rem;
    }

    /* header end */


    /* bannner start */
    .topbanner {
        margin-top: -7rem;
    }

    .banner_message {
        top: 53%;
    }

    .banner_message h1 {
        font-size: 7.75rem;
    }

    /* bannner end */

    /* aboutus start */
    .about_us .inner {
        padding: 5rem 5rem 8rem;
    }

    .about_us .headtitle {
        margin-bottom: initial;
    }

    .about_us .message-block h2 {
        margin-bottom: 4rem;
        font-size: 3rem;
    }

    .about_us .message-block h3 {
        margin-bottom: 2rem;
        font-size: 2rem;
    }

    .about_us .message-block p {
        line-height: 2;
    }

    /* aboutus end */

    /* services start */
    .services .inner {
        padding: 5rem 5rem 8rem;
    }

    .services .headtitle {
        margin-bottom: initial;
    }

    .services .message-block p {
        line-height: 2;
    }

    .services .card_link {
        position: relative;
        width: 40%;
        display: inline;
    }

    .services .link_img {
        width: 100%;
        height: 100%;
        display: block;
    }

    .services .card_link-icon {
        right: 1.5%;
        top: 39%;
    }

    .services .card_link-icon svg {
        fill: #fff;
        z-index: 1;
        width: 60%;
        margin: auto;
    }

    .services .card_link_text h3 {
        padding: 4rem 2rem 4rem 4rem;
    }

    .services .card_link_text h3 span {
        font-size: 3.5rem;
    }

    /* services end */

    /* news start */
    .news .inner {
        padding: 5rem 5rem 8rem;
    }

    /* news end */

    /* contact us start */

    .contact_us .inner {
        padding: 5rem 5rem 8rem;
    }

    .contact_us .headtitle {
        margin-bottom: 5rem;
    }

    .contact_desc {
        font-size: 1.25rem;
        line-height: 2;
    }

    .contact_us .card_link-icon {
        right: 1.5%;
        top: 39%;
    }

    .card_link_text h3 span {
        font-size: 3.5rem;
    }

    /* contact us end */

    /* footer start */
    .footer .headtitle h2 {
        font-size: 3.25rem;
        margin-bottom: 2rem;
    }

    .footer-links {
        padding: 2.5rem 0 1.5rem;
        display: flex;
    }

    .footer-link_box {
        margin-right: 10rem;
    }

    .footer-link_box h4 {
        padding: 1rem 0;
        color: #434343;
    }

    .link_deco {
        color: aliceblue;
        transition: all 0.4s;
    }

    .copyright {
        font-size: 1rem;
    }

    .footer_logo img {
        width: 25%;
    }

    /* footer end */

    /* policy start */
    .banner {
        padding: 6vw 0 3vw 0;
    }

    .privacy h3 {
        margin-bottom: 0.7vw;
    }

    .topbtn {
        width: 10%;
    }

    .topbtn:hover {
        opacity: 0.8;
    }

    /* policy end */

    /* footer start */
    .footer_sub {
        display: block;
        min-height: initial;
    }

    .footer_sub .inner {
        padding: 2rem;
        width: 80%;
    }

    .footer-policy {
        display: flex;
        flex-wrap: wrap;
        padding: 1.5rem 0 0.5rem;
        border-bottom: 0.0625rem solid #fff;
        font-weight: 700;
        justify-content: space-between;
    }

    .footer-policy__item {
        width: 50%;
        margin-right: 0;
        margin-bottom: 1rem;
        font-size: 1rem;
        color: #fff;
    }

    .copyright {
        color: #fff;
        margin-top: 0.625rem;
        font-size: 0.8rem;
    }

    .footer_sub .footer_logo {
        display: block;
        display: flex;
        margin-top: 1rem;
        justify-content: center;
    }

    .footer_sub .footer_logo img {
        width: 15%;
    }

    /* footer end */

    /* cancel policy start */
    .cancellation-table__cell {
        padding: 0.1rem 0;
    }

    /* cancel policy end */



}