@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: "Noto Sans", sans-serif;
}

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

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

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

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

html {
    scroll-behavior: smooth;
}

.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);
    }
}


/* top-contents */

.wrap {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

@keyframes zoomUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
    animation: zoomUp 10s linear 0s 1 normal both;
}

.swiper-wrapper::after {
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(26, 26, 26);
    opacity: 0.1;
}

.slide-img img {
    display: block;
    width: 100%;
    height: 100vh;
}


/* major */

.major {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 25%;
    left: 5%;
    z-index: 3;
}

.main-text-contents {
    width: 80%;
    margin: 0 auto;
}

.main-first-text {
    width: 63%;
    font-family: 'Sawarabi Mincho', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: white;
    font-size: 6.2em;
    background: linear-gradient(transparent 70%, #b4c1ab 50%);
    padding-left: 35px;
}

.main-second-text {
    width: 95%;
    font-family: 'Sawarabi Mincho', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: white;
    font-size: 6.2em;
    background: linear-gradient(transparent 70%, #b4c1ab 50%);
    padding-left: 35px;
    margin-bottom: 50px;
}

.sub-text-box {
    border-top: 3px solid white;
}

.sub-text {
    margin-top: 50px;
    color: white;
    font-size: 2.4em;
}

.btn-box {
    width: 100%;
}

.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;
}


/* second-contents */

.second-contents {
    height: 100%;
    width: 100%;
}

.about-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.second-title-box {
    position: absolute;
    top: 11%;
    left: 29%;
    transform: rotate(-250deg);
    -moz-transform: rotate(-25deg);
    -webkit-transform: rotate(-25deg);
    z-index: 10;
}

.second-title-box h1 {
    font-weight: 900;
    font-size: 5.2em;
    font-family: 'Sawarabi Mincho', sans-serif;
    color: #b4c1ab;
    padding-right: 20px;
    padding-left: 20px;
}

.about-text-box {
    width: 120%;
    background: whitesmoke;
    height: 80%;
    padding: 50px 30px 30px 50px;
    margin-top: 70px;
}

.about-text {
    color: black;
    font-size: 3.2em;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.1em;
    font-family: 'Sawarabi Gothic', sans-serif;
}

.about-sub-text {
    width: 100%;
    letter-spacing: 0.1em;
    font-family: 'Sawarabi Gothic', sans-serif;
}

.about-image {
    width: 100%;
    height: 100%;
}

.about-image img {
    width: 200%;
    height: 600px;
    box-shadow: 0 2.5rem 2rem -2rem hsl(200 50% 20% / 40%);
    margin-left: -220px;
    margin-right: 0px;
}

.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--orange {
    color: #fff;
    background: #ecd6a5;
    border-bottom: 5px solid #e4b757;
    z-index: 100;
}

a.btn--orange:hover {
    margin-top: 3px;
    color: #fff;
    background: #ecd6a5;
    border-bottom: 2px solid #e4b757;
}

a.btn--orange-1 {
    color: #fff;
    background: #ecd6a5;
    border-bottom: 5px solid #e4b757;
    z-index: 100;
}

a.btn--orange-1:hover {
    margin-top: 3px;
    color: #fff;
    background: #ecd6a5;
    border-bottom: 2px solid #e4b757;
}

a.btn--shadow {
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

.second-about-box {
    width: 100%;
    text-align: center;
    margin-top: 100px;
}

.about-title {
    position: relative;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-title::before,
.about-title::after {
    content: '';
    width: 70px;
    height: 3px;
    background-color: #b4c1ab;
}

.about-title::before {
    margin-right: 20px;
}

.about-title::after {
    margin-left: 20px;
}

.vira-card .vira-card-header {
    margin-bottom: 45px;
}

.vira-card .vira-card-header .card-icon {
    border: 1px solid #b4c1ab;
    border-radius: 100%;
    display: inline-block;
    line-height: 120px;
    position: relative;
}

.vira-card .vira-card-header .card-icon img {
    width: 100%;
    border-radius: 3%;
}

.vira-card .vira-card-header .card-icon .fa {
    margin-top: 45px;
    font-size: 30px;
}

.vira-card .vira-card-header .card-icon:after {
    content: '';
    height: 100px;
    width: 100px;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    left: 9px;
}

.vira-card .vira-card-header .card-icon span {
    color: #fff;
    font-size: 45px;
    position: relative;
    z-index: 1;
}

.vira-card .vira-card-content h3 {
    position: relative;
    margin-bottom: 60px
}

.vira-card .vira-card-content h3:after {
    content: '';
    height: 1px;
    width: 44px;
    background-color: #b4c1ab;
    position: absolute;
    top: 52px;
    left: calc(50% - 22px);
}

.vira-card .vira-card-content p {
    font-size: 15px;
}

.vira-card .vira-card-content .social-icons {
    margin-top: 30px;
}

.vira-card .vira-card-header .card-icon:after {
    transition: all 0.3s ease-in-out;
}


/* third-contents */

.third-contents {
    margin-top: 500px;
    height: 100%;
    width: 100%;
}


/* fourth-contents */

.fourth-contents {
    width: 100%;
    height: 100%;
    margin: 80px 0;
}

.rellax-filter {
    width: 100%;
    height: 100vh;
    opacity: 0.6;
    background-color: gray;
}

.sample02 .top {
    position: relative;
    margin-bottom: 10px;
}

.sample02 .sample-txt {
    color: #b4c1ab;
    font-size: 90px;
    font-weight: bold;
    letter-spacing: 1px;
    position: absolute;
    font-family: 'Sawarabi Mincho', sans-serif;
    left: 10px;
    top: -20%;
    z-index: 10;
}

.sample02 .sample-txt span {
    color: #aaa;
    font-size: 50px;
    font-weight: bold;
}

.sample02 .top .img {
    display: block;
    width: 80%;
    margin-left: auto;
    position: relative;
    z-index: 0;
}

.contact-img {
    box-shadow: 0 2.5rem 2rem -2rem hsl(200 50% 20% / 40%);
    width: 100%;
}

.sample02 .bottom .title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.sample02 .bottom .text {
    max-width: 400px;
    text-align: center;
    padding: 0 10px;
    margin: 0 auto 20px;
}

.sample02 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row-reverse;
    margin-left: auto;
}

.sample02 .top {
    width: 48%;
    margin-left: auto;
}

.sample02 .top .img {
    width: 100%;
}

.sample02 .sample-txt span {
    font-size: 110px;
}

.sample02 .bottom {
    width: 38%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sample02 .bottom .fourth-title {
    text-align: center;
    font-size: 37px;
}

.sample02 .bottom .fourth-title:first-letter {
    font-size: 150%;
    font-weight: 700;
    color: #b4c1ab;
}

.sample02 .bottom .text {
    font-size: 12px;
}

.sample02 a {
    width: 220px;
    padding: 6px 0;
}


/* fifth-contents */

.fifth-contents {
    margin-top: 500px;
}

.fifth-05 .contents {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.fifth-05 .contents:nth-of-type(1) {
    max-width: 100%;
    background-image: url("../../assets/image/top-reclutmet-bg.jpg");
    background-size: cover;
}

.fifth-05 .heading05 {
    width: 100%;
    margin: 0 auto;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    padding: 1.5rem 2rem -0.5rem 160px;
}

.heading05 {
    position: relative;
    padding-bottom: 50px;
    font-size: 26px;
    text-align: center;
}

.heading05::before {
    content: attr(data-en);
    display: block;
    color: #b4c1ab;
    font-size: 20px;
    font-style: italic;
    text-transform: uppercase;
}

.heading05::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%) rotate(30deg);
    width: 5px;
    height: 40px;
    background-color: #b4c1ab;
}

.fifth-05 span {
    font-family: 'Roboto', sans-serif;
    font-size: 4rem;
    line-height: 1;
    position: absolute;
    bottom: -0.4rem;
    left: 0;
}

.fifth-05 .text {
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 20px;
}

.fifth-box {
    margin-top: 1600px;
    width: 80%;
}

.btn-area {
    width: 70%;
    margin: 0 auto;
    text-align: center;
}


/* six-contente */

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: 1024px) {
    .main-first-text {
        width: 92%;
        font-family: 'Sawarabi Mincho', sans-serif;
        font-weight: 600;
        letter-spacing: 0.2em;
        color: white;
        font-size: 6.2em;
        background: linear-gradient(transparent 70%, #b4c1ab 50%);
        padding-left: 35px;
    }
    .main-second-text {
        width: 95%;
        font-family: 'Sawarabi Mincho', sans-serif;
        font-weight: 600;
        letter-spacing: 0.2em;
        color: white;
        font-size: 4.4em;
        background: linear-gradient(transparent 70%, #b4c1ab 50%);
        padding-left: 35px;
        margin-bottom: 50px;
    }
    .responsive-size {
        margin-right: 190px;
    }
    .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: 62%;
    }
    .major {
        position: absolute;
        width: 90%;
        height: 90%;
        top: 35%;
        left: 5%;
        z-index: 3;
    }
    .about-image img {
        width: 225%;
        height: 600px;
        box-shadow: 0 2.5rem 2rem -2rem hsl(200deg 50% 20% / 40%);
        margin-left: -220px;
    }
    .fifth-box {
        margin-top: 1100px;
        width: 80%;
    }
    .fifth-05 .contents {
        height: 50vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
    .fourth-contents {
        width: auto;
        height: 100%;
    }
}

@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%;
    }
    .main-first-text {
        width: 92%;
        font-family: 'Sawarabi Mincho', sans-serif;
        font-weight: 600;
        letter-spacing: 0.2em;
        color: white;
        font-size: 4.4em;
        background: linear-gradient(transparent 70%, #b4c1ab 50%);
        padding-left: 35px;
    }
    .main-second-text {
        width: 95%;
        font-family: 'Sawarabi Mincho', sans-serif;
        font-weight: 600;
        letter-spacing: 0.2em;
        color: white;
        font-size: 3.2em;
        background: linear-gradient(transparent 70%, #b4c1ab 50%);
        padding-left: 35px;
        margin-bottom: 50px;
    }
    .about-text {
        color: black;
        font-size: 2.2em;
        font-weight: 700;
        font-style: italic;
        letter-spacing: 0.1em;
        font-family: 'Sawarabi Gothic', sans-serif;
    }
    .about-sub-text {
        width: 100%;
        letter-spacing: 0.1em;
        font-family: 'Sawarabi Gothic', sans-serif;
        font-size: 12px;
    }
    .about-image img {
        width: 300%;
        height: 500px;
        box-shadow: 0 2.5rem 2rem -2rem hsl(200deg 50% 20% / 40%);
        margin-left: -220px;
    }
    .about-text-box {
        width: 120%;
        background: whitesmoke;
        height: 80%;
        padding: 10px 30px 20px 30px;
        margin-top: 70px;
    }
    .second-title-box {
        position: absolute;
        top: 9%;
        left: 18%;
        transform: rotate(-250deg);
        -moz-transform: rotate(-25deg);
        -webkit-transform: rotate(-25deg);
        z-index: 10;
    }
}

@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;
    }
    .header-logo {
        width: 60%;
    }
    .main-first-text {
        width: 100%;
        font-family: 'Sawarabi Mincho', sans-serif;
        font-weight: 600;
        letter-spacing: 0.2em;
        color: white;
        font-size: 2.9em;
        background: linear-gradient(transparent 70%, #b4c1ab 50%);
        padding-left: 17px;
    }
    .main-second-text {
        width: 100%;
        font-family: 'Sawarabi Mincho', sans-serif;
        font-weight: 600;
        letter-spacing: 0.2em;
        color: white;
        font-size: 1.9em;
        background: linear-gradient(transparent 70%, #b4c1ab 50%);
        padding-left: 16px;
        margin-bottom: 50px;
    }
    a.btn--circle {
        width: 40px;
        height: 40px;
        padding: 0;
        background: #fff;
        border-radius: 50%;
        -webkit-box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
        box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
    }
    a.btn--circle i {
        font-size: 100%;
        line-height: 45px;
        -webkit-transition: all .3s;
        transition: all .3s;
        letter-spacing: 0;
    }
    .about-image img {
        width: 127%;
        height: 300px;
        box-shadow: 0 2.5rem 2rem -2rem hsl(200deg 50% 20% / 40%);
        margin-left: -46px;
        margin-right: -30px;
    }
    .second-contents {
        height: 100%;
        width: 100%;
        margin-top: -50px;
    }
    .second-title-box {
        position: absolute;
        top: 9%;
        left: 18%;
        transform: rotate(-250deg);
        -moz-transform: rotate(-25deg);
        -webkit-transform: rotate(-25deg);
        z-index: 10;
        display: none;
    }
    a.btn--orange-1 {
        position: absolute;
        bottom: -55%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        -webkit-transform: translateY(-50%) translateX(-50%);
        color: #fff;
        background: #ecd6a5;
        border-bottom: 5px solid #e4b757;
        z-index: 100;
    }
    .about-sub-text {
        width: 100%;
        letter-spacing: 0.1em;
        font-family: 'Sawarabi Gothic', sans-serif;
        font-size: 12px;
        text-align: center;
    }
    .text-left {
        text-align: center!important;
    }
    .about-text-box {
        width: 120%;
        background: none;
        height: 80%;
        padding: 10px 30px 20px 30px;
        margin-top: 70px;
    }
    .fifth-05 .contents {
        height: 90vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        width: 100%;
    }
    .fifth-05 .text {
        color: #fff;
        font-size: 12px;
        text-align: center;
        padding: 0 20px;
        margin-bottom: 20px;
    }
    .fifth-box {
        margin-top: 1900px;
        width: 80%;
    }
    .fourth-contents {
        width: auto;
        height: 100%;
    }
    .contact-img {
        box-shadow: 0 2.5rem 2rem -2rem hsl(200deg 50% 20% / 40%);
        width: 100%;
    }
    .sample02 {
        min-width: 0px;
        display: block;
        justify-content: flex-end;
        align-items: center;
        flex-direction: row-reverse;
        margin-left: auto;
    }
    .sample02 .bottom {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .contact-img {
        box-shadow: 0 2.5rem 2rem -2rem hsl(200deg 50% 20% / 40%);
        width: 100%;
        position: absolute;
        top: 89%;
        right: 100%;
    }
    .sample02 .sample-txt {
        color: #b4c1ab;
        font-size: 40px;
        font-weight: bold;
        letter-spacing: 1px;
        position: absolute;
        font-family: 'Sawarabi Mincho', sans-serif;
        top: 65px;
        left: -10%;
    }
    .sample02 .bottom .fourth-title {
        text-align: center;
        font-size: 37px;
        margin-top: 165px;
    }
    .contact-area-box {
        width: 100%;
    }
    .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;
    }
}

@media screen and (max-width: 375px) {
    .main-first-text {
        width: 105%;
        font-family: 'Sawarabi Mincho', sans-serif;
        font-weight: 600;
        letter-spacing: 0.2em;
        color: white;
        font-size: 2.6em;
        background: linear-gradient(transparent 70%, #b4c1ab 50%);
        padding-left: 17px;
    }
    .main-second-text {
        width: 110%;
        font-family: 'Sawarabi Mincho', sans-serif;
        font-weight: 600;
        letter-spacing: 0.2em;
        color: white;
        font-size: 1.8em;
        background: linear-gradient(transparent 70%, #b4c1ab 50%);
        padding-left: 16px;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 320px) {
    .navbar {
        transition: all 0.4s;
    }
    .main-first-text {
        width: 100%;
        font-family: 'Sawarabi Mincho', sans-serif;
        font-weight: 600;
        letter-spacing: 0.2em;
        color: white;
        font-size: 2.1em;
        background: linear-gradient(transparent 70%, #b4c1ab 50%);
        padding-left: 17px;
    }
    .main-second-text {
        width: 100%;
        font-family: 'Sawarabi Mincho', sans-serif;
        font-weight: 600;
        letter-spacing: 0.2em;
        color: white;
        font-size: 1.3em;
        background: linear-gradient(transparent 70%, #b4c1ab 50%);
        padding-left: 16px;
        margin-bottom: 50px;
    }
    a.btn--circle {
        width: 40px;
        height: 40px;
        padding: 0;
        background: #fff;
        border-radius: 50%;
        -webkit-box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
        box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
    }
    a.btn--circle i {
        font-size: 100%;
        line-height: 45px;
        -webkit-transition: all .3s;
        transition: all .3s;
        letter-spacing: 0;
    }
    .about-image img {
        width: 139%;
        height: 300px;
        box-shadow: 0 2.5rem 2rem -2rem hsl(200deg 50% 20% / 40%);
        margin-left: -46px;
        margin-right: -30px;
    }
    .second-contents {
        height: 100%;
        width: 100%;
        margin-top: -50px;
    }
    .second-title-box {
        position: absolute;
        top: 9%;
        left: 18%;
        transform: rotate(-250deg);
        -moz-transform: rotate(-25deg);
        -webkit-transform: rotate(-25deg);
        z-index: 10;
        display: none;
    }
    a.btn--orange-1 {
        position: absolute;
        bottom: -55%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        -webkit-transform: translateY(-50%) translateX(-50%);
        color: #fff;
        background: #ecd6a5;
        border-bottom: 5px solid #e4b757;
        z-index: 100;
    }
    .about-sub-text {
        width: 100%;
        letter-spacing: 0.1em;
        font-family: 'Sawarabi Gothic', sans-serif;
        font-size: 10px;
        text-align: center;
    }
    .text-left {
        text-align: center!important;
        font-size: 1.1rem;
    }
    .about-text-box {
        width: 120%;
        background: none;
        height: 80%;
        padding: 10px 30px 20px 30px;
        margin-top: 70px;
    }
    .about-title {
        position: relative;
        margin-bottom: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }
    .vira-card .vira-card-content h3 {
        position: relative;
        margin-bottom: 60px;
        font-size: 18px;
    }
    .vira-card .vira-card-content p {
        font-size: 13px;
    }
    .fifth-05 .contents {
        height: 90vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
    .fifth-05 .heading05 {
        width: 100%;
        margin: 0 auto;
        color: #fff;
        font-size: 15px;
        font-weight: bold;
        text-align: center;
        letter-spacing: 2px;
        position: relative;
        padding: 1.5rem 2rem -0.5rem 160px;
    }
    .fifth-05 .text {
        color: #fff;
        font-size: 12px;
        text-align: center;
        padding: 0 20px;
        margin-bottom: 20px;
    }
    .fifth-box {
        margin-top: 2050px;
        width: 80%;
    }
    .fourth-contents {
        width: auto;
        height: 100%;
    }
    .contact-img {
        box-shadow: 0 2.5rem 2rem -2rem hsl(200deg 50% 20% / 40%);
        width: 100%;
    }
    .sample02 {
        min-width: 0px;
        display: block;
        justify-content: flex-end;
        align-items: center;
        flex-direction: row-reverse;
        margin-left: auto;
    }
    .sample02 .bottom {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .contact-img {
        box-shadow: 0 2.5rem 2rem -2rem hsl(200deg 50% 20% / 40%);
        width: 100%;
        position: absolute;
        top: 89%;
        right: 100%;
    }
    .sample02 .sample-txt {
        color: #b4c1ab;
        font-size: 40px;
        font-weight: bold;
        letter-spacing: 1px;
        position: absolute;
        font-family: 'Sawarabi Mincho', sans-serif;
        top: 65px;
        left: -10%;
    }
    .sample02 .bottom .fourth-title {
        text-align: center;
        font-size: 20px;
        margin-top: 165px;
    }
    .contact-area-box {
        width: 100%;
    }
    .sample02 .bottom .text {
        font-size: 10px;
    }
    .cta-text {
        padding-left: 0px;
        display: inline-block;
    }
}