@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;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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


/* header-contents */


/* top-seciotn */

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


/* Wrapper */

.wrapper {
    padding: 6em 0;
}


/* .wrapper.style1 {
    background: #f5f5f5;
  } */

header.major {
    margin: 0 auto 4em auto;
    max-width: 56.25em;
    text-align: center;
}

header.major> :first-child {
    white-space: nowrap;
}

header.major> :first-child:before,
header.major> :first-child:after {
    background-image: url("images/header-major-on-light.svg");
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    height: 20px;
    width: 150px;
}

header.major> :first-child:before {
    background-position: center right;
    margin-right: 1em;
}

header.major> :first-child:after {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    background-position: center left;
    margin-left: 1em;
}

header.major p {
    color: #808080;
    font-size: 1.1em;
    line-height: 1.65em;
    margin: 0 auto 0 auto;
}


/* Contact */

#contact .actions {
    text-align: center;
}

#contact .actions li {
    display: inline;
    float: left;
    width: 60px;
}

#contact .labeled-icons {
    border-top: solid 1px #dddddd;
    padding: 1em 0 0 0;
}


/* Box */

.box {
    background: #fff;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 2em;
    padding: 2.25em;
}

.box> :last-child,
.box> :last-child> :last-child,
.box> :last-child> :last-child> :last-child {
    margin-bottom: 0;
}

.box.special {
    padding: 3em 2.25em;
}

.box.alt {
    background: none;
    box-shadow: none;
    padding: 0;
}

form {
    margin: 0 0 2em 0;
}

label {
    color: #555555;
    display: block;
    font-size: 0.9em;
    font-weight: 900;
    margin: 0 0 1em 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    border: 0;
    border: solid 1px #dddddd;
    border-radius: 0;
    color: inherit;
    display: block;
    outline: 0;
    padding: 0 1em;
    text-decoration: none;
    width: 100%;
}

input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
select:invalid,
textarea:invalid {
    box-shadow: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: #6ccae9;
    box-shadow: 0 0 0 1px #6ccae9;
}

select {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%23dddddd' /%3E%3C/svg%3E");
    background-size: 1.25em;
    background-repeat: no-repeat;
    background-position: calc(100% - 1em) center;
    height: 2.75em;
    padding-right: 2.75em;
    text-overflow: ellipsis;
}

select:focus::-ms-value {
    background-color: transparent;
}

select::-ms-expand {
    display: none;
}

select option {
    color: #555555;
    background: #ffffff;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
    height: 6.75em;
}

textarea {
    padding: 0.75em 1em;
}

input[type="checkbox"],
input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: block;
    float: left;
    margin-right: -2em;
    opacity: 0;
    width: 1em;
    z-index: -1;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    text-decoration: none;
    color: #808080;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    font-weight: 400;
    padding-left: 2.4em;
    padding-right: 0.75em;
    position: relative;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-transform: none !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    background: #f0f0f0;
    content: '';
    display: inline-block;
    font-size: 0.8em;
    height: 2.0625em;
    left: 0;
    line-height: 2.0625em;
    position: absolute;
    text-align: center;
    top: 0;
    width: 2.0625em;
}

input[type="checkbox"]:checked+label:before,
input[type="radio"]:checked+label:before {
    background: #57504a;
    color: #ffffff;
    content: '\f00c';
}

input[type="checkbox"]:focus+label:before,
input[type="radio"]:focus+label:before {
    box-shadow: 0 0 0 2px #6ccae9;
}

input[type="radio"]+label:before {
    border-radius: 100%;
}

 ::-webkit-input-placeholder {
    color: #aaa !important;
    opacity: 1.0;
}

 :-moz-placeholder {
    color: #aaa !important;
    opacity: 1.0;
}

 ::-moz-placeholder {
    color: #aaa !important;
    opacity: 1.0;
}

 :-ms-input-placeholder {
    color: #aaa !important;
    opacity: 1.0;
}

.col-12-narrower {
    width: 100%;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    background-color: #6ccae9;
    border: 0;
    border-radius: 0;
    color: #ffffff !important;
    cursor: pointer;
    display: inline-block;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 3em;
    padding: 0 1.75em;
    text-align: center;
    text-decoration: none;
    text-indent: -0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100px;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover {
    background-color: #82d2ec;
    color: #ffffff !important;
}

input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
button:active,
.button:active {
    background-color: #56c2e6;
}

input[type="submit"].icon,
input[type="reset"].icon,
input[type="button"].icon,
button.icon,
.button.icon {
    padding-left: 1.35em;
}

input[type="submit"].icon:before,
input[type="reset"].icon:before,
input[type="button"].icon:before,
button.icon:before,
.button.icon:before {
    margin-right: 0.5em;
}

input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
button.fit,
.button.fit {
    width: 100%;
}

input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
button.small,
.button.small {
    font-size: 0.8em;
    height: 2.475em;
    line-height: 2.475em;
}

input[type="submit"].large,
input[type="reset"].large,
input[type="button"].large,
button.large,
.button.large {
    font-size: 1.25em;
    height: 2.475em;
    line-height: 2.475em;
}

input[type="submit"].alt,
input[type="reset"].alt,
input[type="button"].alt,
button.alt,
.button.alt {
    background-color: transparent;
    box-shadow: inset 0 0 0 2px #dddddd;
    color: #555555 !important;
    width: 100px;
    margin-left: 50px;
}

input[type="submit"].alt:hover,
input[type="reset"].alt:hover,
input[type="button"].alt:hover,
button.alt:hover,
.button.alt:hover {
    background-color: #f0f0f0;
}

input[type="submit"].alt:active,
input[type="reset"].alt:active,
input[type="button"].alt:active,
button.alt:active,
.button.alt:active {
    background-color: #dddddd;
}

input[type="submit"].alt.icon:before,
input[type="reset"].alt.icon:before,
input[type="button"].alt.icon:before,
button.alt.icon:before,
.button.alt.icon:before {
    color: #aaa;
}

input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
button.primary,
.button.primary {
    background-color: #6ccae9;
    color: #ffffff !important;
}

input[type="submit"].primary:hover,
input[type="reset"].primary:hover,
input[type="button"].primary:hover,
button.primary:hover,
.button.primary:hover {
    background-color: #82d2ec;
}

input[type="submit"].primary:active,
input[type="reset"].primary:active,
input[type="button"].primary:active,
button.primary:active,
.button.primary:active {
    background-color: #56c2e6;
}

input[type="submit"].disabled,
input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
button.disabled,
button:disabled,
.button.disabled,
.button:disabled {
    background-color: #808080 !important;
    box-shadow: none !important;
    color: #ffffff !important;
    cursor: default;
    opacity: 0.25;
}

ul.labeled-icons {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

ul.labeled-icons li {
    border-top: solid 1px #dddddd;
    padding: 1.25em 0 1.25em 2.75em;
    position: relative;
}

ul.labeled-icons li:first-child {
    border-top: 0;
    padding-top: 0;
}

ul.labeled-icons li:first-child .icon {
    top: 0;
}

ul.labeled-icons li a {
    color: inherit;
    text-decoration: none;
}

ul.labeled-icons li .icon {
    background-color: #808080;
    border-radius: 100%;
    color: #ffffff;
    cursor: default;
    font-size: 1.7em;
    height: 1.75em;
    left: 0;
    line-height: 1.75em;
    position: absolute;
    text-align: center;
    top: 0.25em;
    width: 1.75em;
}

ul.labeled-icons li .icon:before {
    display: block;
    font-size: 0.85em;
    line-height: inherit;
}

ul.labeled-icons li .icon.fa-twitter {
    background-color: #4eafdc;
}

ul.labeled-icons li .icon.fa-facebook-f {
    background-color: #456bc9;
}

ul.labeled-icons li .icon.fa-linkedin-in {
    background-color: #0291d9;
}

.contact-info {
    margin-left: 25px;
    font-size: 1.3rem;
}

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: 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%;
    }
    .l-mainImage .l-mainImage__body {
        padding: 140px 0;
    }
    .wrapper {
        padding: 0em 0;
    }
    .contact-info {
        margin-left: 25px;
        font-size: 1.0rem;
    }
    .cta-text {
        padding-left: 35px;
    }
    .cta-text {
        padding-left: 30px;
    }
    .single-cta i {
        color: #b4c1ab;
        font-size: 4px;
        float: left;
        /* margin-top: 8px; */
    }
    .cta-text span {
        color: #757575;
        font-size: 10px;
    }
    .cta-text {
        padding-left: 15px;
        /* display: inline-block; */
    }
}

@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%;
    }
    .l-mainImage .l-mainImage__body {
        padding: 150px 0;
    }
    header.major> :first-child:before,
    header.major> :first-child:after {
        background-image: url(images/header-major-on-light.svg);
        background-repeat: no-repeat;
        content: '';
        display: inline-block;
        height: 20px;
        width: 0px;
    }
    .l-mainImage .l-mainImage__title {
        -webkit-box-align: center;
        align-items: center;
        display: -webkit-box;
        display: flex;
        font-size: 1.9rem;
        font-weight: 700;
    }
    .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: 320px) {
    .l-mainImage .l-mainImage__body {
        padding: 125px 0;
    }
    .l-mainImage .l-mainImage__title {
        -webkit-box-align: center;
        align-items: center;
        display: -webkit-box;
        display: flex;
        font-size: 1.6rem;
        font-weight: 700;
    }
}