@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');
@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700");
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300&family=Sawarabi+Gothic&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sawarabi Gothic', sans-serif;
}

*::selection {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
}

html,
body {
    width: 100%;
    height: 100%;
    transition: padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    width: 100%;
    height: 100%;
    transition: padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bg_pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #9e9e9e;
    opacity: 0.4;
    z-index: -1;
}

.Wavy {
    background-image: repeating-radial-gradient( circle at 0 0, transparent 0, #b8b8b8 20px), repeating-linear-gradient( #d4d4d4, #dbdbdb);
}


/* header-contents */

.header {
    width: 100%;
    background: white;
    padding: 15px 0;
    position: fixed;
    z-index: 100000;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.header-contents {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.image-box {
    width: 20%;
    height: 100%;
}

.header-logo {
    width: 20%;
}

.nav-contents {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
    gap: 6px 30px;
}

.header-nav-contents {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
}

.header-nav-contents a {
    text-decoration: none;
    color: black;
    font-size: 0.8rem;
}

.header-nav-contents li {
    margin-right: 10px;
}


/* ハンバーガーメニュー */

.navbar.active {
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.active .nav-link {
    color: #555;
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
    color: #555;
    text-decoration: none;
}

.navbar.active .navbar-brand {
    color: #555;
}


/* Change navbar styling on small viewports */

@media (max-width: 991.98px) {
    .navbar {
        background: #fff;
    }
    .navbar .navbar-brand,
    .navbar .nav-link {
        color: #555;
    }
}

.toggle {
    margin: auto;
    width: 46px;
    height: 46px;
    right: 120px;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
}

.toggle .bar {
    position: relative;
    width: 40px;
    height: 2px;
    background: black;
}

.navbar.active .toggle .bar {
    position: relative;
    width: 40px;
    height: 2px;
    background: #555;
}

.toggle .bar:before,
.toggle .bar:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    left: 0;
    transform-origin: center center;
    transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}

.toggle .bar:before {
    top: -10px;
}

.toggle .bar:after {
    bottom: -10px;
}

.toggle.clicked .bar {
    background: transparent;
}

.toggle.clicked .bar:before,
.toggle.clicked .bar:after {
    background: #000;
}

.toggle.clicked .bar:before {
    transform: rotate(45deg);
    top: 0;
}

.toggle.clicked .bar:after {
    transform: rotate(-45deg);
    bottom: 0;
}

.humberger {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    opacity: 0;
    z-index: 5;
    transition: opacity 0.5s ease;
}

.humberger .showcase {
    background: #b4c1ab;
    flex: 1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.humberger .showcase .showcase-container {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.humberger .showcase .showcase-container:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.humberger .showcase .showcase-menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: visible;
    list-style-type: none;
    transition: top 0.25s ease;
}

.humberger .showcase .showcase-menu li {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.humberger-logo {
    height: 100%;
}

.humberger .showcase .showcase-menu li.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.humberger .menu {
    background: #fff;
    flex: 1;
}

.humberger .menu ul {
    width: 100%;
    padding: 80px 48px 24px 48px;
    list-style-type: none;
    max-height: 100%;
    overflow-y: auto;
}

.humberger .menu ul::-webkit-scrollbar {
    width: 6px;
    height: 10px;
}

.humberger .menu ul::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

.humberger .menu ul::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.4);
    border: 0px none #ffffff;
    border-radius: 3px;
}

.humberger .menu ul::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.humberger .menu ul::-webkit-scrollbar-thumb:active {
    background: #000;
}

.humberger .menu ul::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border: 0px none #ffffff;
    border-radius: 0;
}

.humberger .menu ul::-webkit-scrollbar-track:hover {
    background: rgba(0, 0, 0, 0.1);
}

.humberger .menu ul::-webkit-scrollbar-track:active {
    background: rgba(0, 0, 0, 0.1);
}

.humberger .menu ul::-webkit-scrollbar-corner {
    background: transparent;
}

.humberger .menu ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.humberger .menu ul li .number {
    display: inline-block;
    padding: 0 0 0 80px;
    overflow: hidden;
}

.humberger .menu ul li .number span {
    display: block;
    font-size: 48px;
    font-weight: 400;
    transition: transform 0.25s ease;
    transform: translateY(100%);
}

.humberger .menu ul li a {
    display: inline-block;
    font-size: 48px;
    color: #000;
    line-height: 1;
    padding: 24px 0 24px 80px;
    transition: transform 0.25s ease;
    text-decoration: none;
}

.humberger .menu ul li:hover a {
    transform: translateX(20px);
}

.humberger .menu ul li.hover .number span {
    transform: translateY(0);
}

.humberger.hidden {
    display: none;
}

.humberger.open {
    opacity: 1;
}

.humberger.open .showcase {
    animation: slideInLeft 0.5s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}

.humberger.open .menu {
    animation: slideInRight 0.5s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}


/* maiin-section */

.title-section {
    width: 100%;
}

.l-mainImage {
    margin: 0 0 200px;
    padding-top: 80px;
    position: relative;
    width: 100%;
}

.l-mainImage .l-mainImage__body {
    padding: 200px 0;
}

.l-mainImage .l-mainImage__container {
    height: 100%;
    position: relative;
    width: 100%;
}

.l-mainImage .l-mainImage__title {
    -webkit-box-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    font-size: 2.4rem;
    font-weight: 700;
}

.l-mainImage .l-mainImage__title::after {
    background-color: #111111;
    content: '';
    height: 1px;
    margin-left: 16px;
    width: 120px;
}

.l-mainImage .l-mainImage__bg.-company {
    background-image: url("../../assets/image/about-top-bg.jpg");
}

.l-mainImage .l-mainImage__bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    height: 80%;
    position: absolute;
    right: 0;
    width: 60vw;
    z-index: -1;
}

.l-mainImage .l-mainImage__en {
    bottom: -10%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -2;
}

.js-scroll__right.visible {
    -webkit-transform: translateX(0);
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.l-mainImage .l-mainImage__en--content {
    color: #b4c1ab;
    font-size: 10vw;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}


/* main-section */


/* Spotlight */

.spotlight {
    padding: 4rem 0;
    position: relative;
}

.spotlight>.inner {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 75rem;
    width: calc(100% - 4rem);
}

.spotlight h2 {
    margin-bottom: 0;
    border-bottom: 7px ridge white;
    padding-bottom: 1.3rem;
    width: 45%;
    text-align: center;
}

.spotlight .image {
    border-radius: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 45%;
}

.spotlight .image img {
    -moz-object-fit: cover;
    -webkit-object-fit: cover;
    -ms-object-fit: cover;
    object-fit: cover;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spotlight .content {
    padding: 2.5rem 5rem 2.5rem 5rem;
    -moz-transition: opacity 0.5s ease-out, -moz-transform 0.5s ease-out;
    -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    -ms-transition: opacity 0.5s ease-out, -ms-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    background-color: #fff;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    width: 55%;
}

.spotlight.odd .image {
    right: 0;
}

.spotlight.even>.inner {
    -moz-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.spotlight.even .image {
    left: 0;
}

.spotlight.accent1 {
    background-color: #b4c1ab;
}

.spotlight.accent1 h2 {
    color: #ffffff;
}

.spotlight.accent2 {
    background-color: #ecd6a5;
}

.spotlight.accent2 h2 {
    color: #ffffff;
}

.spotlight.is-inactive .content {
    -moz-transform: translateY(2rem);
    -webkit-transform: translateY(2rem);
    -ms-transform: translateY(2rem);
    transform: translateY(2rem);
    opacity: 0;
}

.spotlight .title {
    -moz-transition: opacity 0.5s ease-out, -moz-transform 0.5s ease-out;
    -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    -ms-transition: opacity 0.5s ease-out, -ms-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    height: 100%;
    width: 45%;
}

.spotlight.is-inactive .title {
    -moz-transform: translateY(-2rem);
    -webkit-transform: translateY(-2rem);
    -ms-transform: translateY(-2rem);
    transform: translateY(-2rem);
    opacity: 0;
}

.title h2 {
    width: 100%;
}

.title p {
    width: 100%;
    text-align: center;
    color: white;
    font-size: 51px;
    font-style: italic;
}

.spotlight .title2 {
    -moz-transition: opacity 0.5s ease-out, -moz-transform 0.5s ease-out;
    -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    -ms-transition: opacity 0.5s ease-out, -ms-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    height: 100%;
    width: 45%;
}

.spotlight.is-inactive .title2 {
    -moz-transform: translateY(-2rem);
    -webkit-transform: translateY(-2rem);
    -ms-transform: translateY(-2rem);
    transform: translateY(-2rem);
    opacity: 0;
}

.title2 h2 {
    width: 100%;
}

.title2 p {
    width: 100%;
    text-align: center;
    color: white;
    font-size: 51px;
    font-style: italic;
}

@media screen and (max-width: 1280px) {
    .toggle {
        position: absolute;
        margin: auto;
        width: 46px;
        height: 46px;
        right: 120px;
        top: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
        cursor: pointer;
        display: none;
    }
    .spotlight {
        padding: 5.5rem 0;
    }
    .spotlight>.inner {
        -moz-justify-content: -moz-flex-start;
        -webkit-justify-content: -webkit-flex-start;
        -ms-justify-content: -ms-flex-start;
        justify-content: flex-start;
    }
    .spotlight h2 {
        padding: 0 3rem;
        width: 40%;
        text-align: center;
    }
    .spotlight .content {
        padding: 4rem 4rem 1.5rem 4rem;
    }
    .spotlight .title {
        height: 100%;
        width: 45%;
    }
    .title h2 {
        width: 100%;
    }
    .title p {
        width: 100%;
        text-align: center;
        color: white;
        font-size: 36px;
        font-style: italic;
    }
    .spotlight .title2 {
        height: 100%;
        width: 45%;
    }
    .title2 h2 {
        width: 100%;
    }
    .title2 p {
        width: 100%;
        text-align: center;
        color: white;
        font-size: 36px;
        font-style: italic;
    }
    .content h3 {
        font-size: 24px;
        position: absolute;
        bottom: 53%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
    .content p {
        font-size: 14px;
    }
}

@media screen and (max-width: 980px) {
    .navbar .container,
    .navbar .container-fluid,
    .navbar .container-lg,
    .navbar .container-md,
    .navbar .container-sm,
    .navbar .container-xl {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
    }
    .navbar .navbar-brand,
    .navbar .nav-link {
        color: #555;
        width: 60%;
    }
    .spotlight {
        padding: 0;
        text-align: center;
    }
    .spotlight>.inner {
        display: block;
        max-width: none;
        width: 100%;
    }
    .spotlight h2 {
        padding: 2.5rem 2.5rem;
        width: 100%;
    }
    .spotlight h2 br {
        display: none;
    }
    .spotlight ul.actions {
        -moz-justify-content: center;
        -webkit-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        width: 100%;
        margin-left: 0;
    }
    .spotlight ul.actions li:first-child {
        padding-left: 0;
    }
    .spotlight .image {
        display: block;
        height: 40vh;
        min-height: 20rem;
        width: 100%;
        position: relative;
    }
    .spotlight.accent1 {
        background-color: #b4c1ab;
        margin-bottom: 0px;
    }
    .spotlight .content {
        padding: 4rem 2.5rem 4rem 2.5rem;
        border-radius: 0;
        width: 100%;
    }
    .content h3 {
        font-size: 24px;
        position: absolute;
        bottom: 61%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }
    .spotlight .content h3 br {
        display: none;
    }
    .spotlight.is-inactive h2 {
        -moz-transform: none;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 0;
    }
    .spotlight.is-inactive .content {
        -moz-transform: none;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 0;
    }
    .spotlight .title {
        width: 100%;
    }
    .title h2 {
        width: 100%;
    }
    .title p {
        width: 100%;
        text-align: center;
        color: white;
        font-size: 35px;
        font-style: italic;
    }
    .spotlight .title2 {
        width: 100%;
    }
    .title2 h2 {
        width: 100%;
    }
    .title2 p {
        width: 100%;
        text-align: center;
        color: white;
        font-size: 35px;
        font-style: italic;
    }
}

@media screen and (max-width: 768px) {
    .header-logo {
        width: 60%;
    }
    .humberger .menu ul li .number {
        display: inline-block;
        padding: 0 0 0 80px;
        overflow: hidden;
        display: none;
    }
    .humberger .showcase {
        background: #b4c1ab;
        flex: 1;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        display: none;
    }
    .header-nav-contents {
        display: flex;
        list-style: none;
        justify-content: flex-end;
        height: 100%;
        align-items: center;
        display: none;
    }
    .humberger .menu ul {
        width: 100%;
        padding: 80px 48px 24px 48px;
        list-style-type: none;
        max-height: 100%;
        overflow-y: auto;
        height: 100%;
        border-bottom: 3px solid black;
    }
    .humberger .menu ul li {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 20%;
        border-bottom: 3px solid black;
        font-weight: 800;
    }
    .humberger .menu ul li a {
        display: inline-block;
        font-size: 48px;
        color: #000;
        line-height: 1;
        padding: 24px 0 24px 80px;
        transition: transform 0.25s ease;
        text-decoration: none;
        font-family: 'Noto Serif JP', serif;
        font-weight: 700;
    }
    .toggle {
        position: absolute;
        margin: auto;
        width: 46px;
        height: 46px;
        right: 0%;
        top: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
        cursor: pointer;
        left: 85%;
    }
    .content h3 {
        font-size: 18px;
        position: absolute;
        bottom: 65%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }
    .spotlight h2 {
        padding: 1.5rem;
    }
    .spotlight .content {
        padding: 5rem 1.5rem 5rem 1.5rem;
    }
    .spotlight p {
        width: 85%;
        font-size: 11px;
        margin: 0 auto;
        padding-bottom: 1em;
    }
    .spotlight .title {
        width: 100%;
    }
    .title h2 {
        width: 100%;
    }
    .title p {
        width: 100%;
        text-align: center;
        color: white;
        font-size: 25px;
        font-style: italic;
    }
    .spotlight .title2 {
        width: 100%;
    }
    .title2 h2 {
        width: 100%;
    }
    .title2 p {
        width: 100%;
        text-align: center;
        color: white;
        font-size: 25px;
        font-style: italic;
    }
    .cta-text {
        padding-left: 35px;
    }
    .cta-text {
        padding-left: 30px;
    }
    .single-cta i {
        color: #b4c1ab;
        font-size: 25px;
        float: left;
    }
    .cta-text span {
        color: #757575;
        font-size: 18px;
    }
    .cta-text {
        padding-left: 15px;
        /* display: inline-block; */
    }
    .single-cta {
        margin-top: 50px;
    }
    .footer-widget-heading {
        margin-top: 50px;
    }
}

.p-company__profile {
    padding-top: 100px;
    background: #f0f0f0;
}

.p-company__profile-two {
    padding-top: 100px;
    padding-bottom: 150px;
}

.p-company__philosophy {
    position: relative;
}

.p-company__philosophy::before {
    background-color: #b4c1ab;
    bottom: 0;
    content: '';
    height: 160px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -2;
}

.p-company .p-company__philosophy .p-company__philosophy--body {
    background-color: #fff;
    max-width: 90%;
    padding: 0 40px 80px;
    position: relative;
    z-index: 2;
}

.p-company .p-company__philosophy .p-company__philosophy--title .-en {
    font-size: 1.4rem;
}

.c-title__primary .-en {
    -webkit-box-align: center;
    align-items: center;
    color: #b4c1ab;
    display: -webkit-box;
    display: flex;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}

.c-title__primary .-en::after {
    background-color: #b4c1ab;
    content: '';
    height: 1px;
    margin-left: 12px;
    width: 32px;
}

.c-title__primary .ja {
    -webkit-box-align: center;
    align-items: center;
    color: black;
    display: -webkit-box;
    display: flex;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    line-height: 1.5;
}

.p-company__philosophy--lead {
    font-weight: 700;
    font-size: 0.9rem;
}


/*example-wrapper*/

.example-wrapper {
    background-color: #f0f0f0;
    width: 100%;
    height: 700px;
}

.Card {
    background-color: #f0f0f0;
    padding: 120px 10px 200px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.Card-Item {
    height: 300px;
    margin-right: 10px;
    margin-left: 10px;
    padding: 0 16px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.Card-Item-ImgBox {
    width: 100%;
    max-width: 200px;
}

.Card-Item-ImgBox-Img {
    border-radius: 50%;
    width: 100%;
    padding-top: 100%;
}

.Card-Item-Headline {
    margin-top: 64px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
}

.Card-Item-Sentence {
    margin-top: 16px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
}


/* お問い合わせの流れ */


/*contact-flow*/

.contact-wrapper {
    display: inline;
    position: relative;
    background-color: #f0f0f0;
}

.contact-flow {
    width: 100%;
}

.contact-left {
    margin: 30px 0 30px 0;
    height: 400px;
    border-right: solid 1px #b4c1ab;
}

.contact-right {
    margin: 30px 0 30px 0;
    height: 400px;
    border-left: solid 1px #b4c1ab;
}

.contact-step {
    display: flex;
    justify-content: left;
    align-items: center;
}


/*arrow*/

.stickarrow {
    width: 100%;
    height: 8px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: skew(45deg);
}

.stick {
    width: 100%;
    height: 8px;
    border-bottom: 1px solid #000;
}

.contact-text {
    text-align: center;
    margin: 30px 0 30px 0;
}

.contact-text h5 {
    font-size: 2rem;
}

.contact-text p {
    font-size: 1rem;
}


/*box*/

.box {
    margin: 2em 0;
    position: relative;
    padding: 0.5em 1.5em;
    border-top: solid 0.5px black;
    border-bottom: solid 0.5px black;
    width: 90px;
}

.box:before,
.box:after {
    content: '';
    position: absolute;
    top: -5px;
    width: 0.5px;
    height: -webkit-calc(100% + 10px);
    height: calc(100% + 10px);
    background-color: black;
}

.box:before {
    left: 5px;
}

.box:after {
    right: 5px;
}

.box p {
    font-size: 1rem;
    margin: 0.5px;
    padding: 0.5px;
    text-align: center;
}


/*btn*/

.contact-button {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn,
a.btn,
button.btn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
}

a.btn--circle {
    width: 80px;
    height: 80px;
    padding: 0;
    background: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

a.btn--circle i {
    font-size: 150%;
    line-height: 80px;
    -webkit-transition: all .3s;
    transition: all .3s;
    letter-spacing: 0;
}

a.btn--circle:hover i {
    line-height: 55px;
}

.btn1,
a.btn1,
button.btn1 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
}

a.btn-flat {
    overflow: hidden;
    color: black;
    border-radius: 0;
    background: white;
}

a.btn-flat span {
    position: relative;
    z-index: 1;
}

a.btn-flat:before {
    position: absolute;
    top: 0;
    left: calc(-150% + 90px);
    width: 150%;
    height: 500%;
    content: '';
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: rotate(45deg) translateX(0) translateY(0);
    transform: rotate(45deg) translateX(0) translateY(0);
    background: #ecd6a5;
}

a.btn-flat:after {
    position: absolute;
    top: -400%;
    right: calc(-150% + 90px);
    width: 150%;
    height: 500%;
    content: '';
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: rotate(45deg) translateX(0) translateY(0);
    transform: rotate(45deg) translateX(0) translateY(0);
    background: #ecd6a5;
}

a.btn-flat:hover:before {
    -webkit-transform: rotate(45deg) translateX(0) translateY(-50%);
    transform: rotate(45deg) translateX(0) translateY(-50%);
}

a.btn-flat:hover:after {
    -webkit-transform: rotate(45deg) translateX(0) translateY(50%);
    transform: rotate(45deg) translateX(0) translateY(50%);
}


/* footer */

ul {
    margin: 0px;
    padding: 0px;
}

.footer-section {
    background: #151414;
    position: relative;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: #b4c1ab;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 28px;
}

.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #CF2E92;
}

.twitter-bg {
    background: #55ACEE;
}

.google-bg {
    background: #DD4B39;
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #b4c1ab;
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: #ff5e14;
}

.footer-widget ul li a {
    color: #878787;
    text-transform: capitalize;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #202020;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: #ff5e14;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: #ff5e14;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

@media screen and (max-width: 430px) {
    .humberger .menu ul li a {
        display: inline-block;
        font-size: 28px;
        color: #000;
        line-height: 1;
        padding: 24px 0 24px 27px;
        transition: transform 0.25s ease;
        text-decoration: none;
        font-family: 'Noto Serif JP', serif;
        font-weight: 700;
    }
}