* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "Lucida Grande", "Meiryo", "sans-serif";
    font-size: 0.85em;
    margin: 0 auto;
    font-style: normal;
    width: 100%;
    font-weight: 300;
    text-align: left;
    color: #3e3e3e;
    /*background: url("../img/umeBack.png");*/
    background-size: contain;
    background-position: center;
    background-repeat: repeat-y;
}

a {
    text-decoration: none;
}

h2,h3,h4 {
    color: #3e3e3e;
}

/* ==========メインテキスト部分========== */
.mainBody {
    max-width: 990px;
    margin: 0 auto;
}

@media (max-width:767px) {
    .mainBody {
        background-size: contain;
    }
}

/* ---------------ヘッダー--------------- */

header {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    background-color: #42b5f4;
}

#header-content {
    max-width: 990px;
    margin: 0 auto;
    display: flex;

    justify-content: space-between;
}
/* ---------------ヘッダー　ロゴ--------------- */
.logo_link {
    width: 25%;
    height: 15%;
}

.header_img {
    display: flex;
    align-items: center;
    padding: 2% 0 2% 0;
}

.header_img img {
    width: 300px;
}

.header_img:hover {
    opacity: 0.6;
}

/* ---------------ヘッダー　メニュー--------------- */
#global-nav1 {
    display: flex;
    font-weight: bold;
    margin-top: 10px;
}

#global-nav1 :hover {
    opacity: 0.9;
}

#global-nav1 li {
    list-style: none;
    padding-right: 7px;
    width: 20%;
}

.nav1 {
    position: relative;
}

#global-nav1 a {
    text-decoration: none;
    color: #E03434;
    font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "Lucida Grande", "Meiryo", "sans-serif";
    font-size: 14px;
    text-align: center;
}

.menu_text {
    background: #FFFFFF;
    box-sizing: border-box;
    border-radius: 20px;
    width: 125px;
    line-height: 2.5;
}

/* ==========ヘッダーサブメニュー========== */
div#global-nav-container {

}

#gloval-sub-nav {
    justify-content:flex-end;
}

ul.sub-nav {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}
    
.sub-nav li {
    padding: 0 10px;
    margin-top:20px;
}

.sub-nav li a {
    text-decoration: none;
    color: whitesmoke;
    font-weight: bold;
}

.sub-nav li a:hover {
    opacity: 0.7;
}

@media (max-width:1035px) {
    .menu_text {
        width: 100px;
    }

    #global-nav1 a {
        font-size: 11px;
    }
    #global-nav-container {
        margin-right: 20px;
    }
}

.nav1 img {
    position: absolute;
    width: 60px;
    left: 17px;
    top: -39px;
    z-index: 10;
}

@media (min-width:1035px) {
    .nav1 img {
        width: 60px;
        height: auto;
        left: 32px;
        top: -39px;
    }
}

#global-nav {
    display: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: transparent;
}

.one {
    border: 4px solid #94CFD1;
}

.two {
    border: 4px solid rgba(255, 255, 153, 0.7);
}

.three {
    border: 4px solid #D3C5DF;
}

.four {
    border: 4px solid #CA5A6D;
}

.five {
    border: 4px solid #F7E4CB;
}

/* =======================
  .menu-trigger
  ======================= */
.menu-trigger {
    display: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: transparent;
}

.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

/* =======================
  responsive
  ======================= */
@media (max-width:864px) {

    /*----- スマホ ハンバーガーメニュー ----- */
    .menu-trigger {
        width: 56px;
        height: 60px;
        position: absolute;
        top: 28px;
        right: 0;
        z-index: 2;
        outline: none;
        margin-right: 20px;
    }

    .menu-trigger span {
        position: absolute;
        left: 50%;
        width: 32px;
        height: 2px;
        background-color: #fff;
        transform: translate(-50%, -50%);
    }

    .menu-trigger span:nth-of-type(1) {
        top: 16px;
    }

    .menu-trigger span:nth-of-type(2) {
        top: 50%;
    }

    .menu-trigger span:nth-of-type(3) {
        bottom: 14px;
    }

    .menu-trigger.active span:nth-of-type(1) {
        top: 49%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }

    .menu-trigger.active span:nth-of-type(3) {
        bottom: 49%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    /*----- スマホ ナビゲーション ----- */
    header {
        height: 100px;
    }

    .header_img {
        padding: 3% 0 1% 5%;
    }

    #global-nav1 {
        display: none;
    }

    #global-nav .menu_logo {
        width: 80%;
        padding: 5% 0;
    }

    #global-nav li {
        list-style: none;
        padding-right: 40px;
    }

    #global-nav a {
        text-decoration: none;
        color: #fff;
        display: block;
        font-weight: 700;
        width: 90%;
        font-size: 14px;
        letter-spacing: 3px;
    }

    #global-nav {
        display: none;
        width: 100vw;
        background: #42b5f4;
        margin: 0;
        padding: 1px 5% 0;
        position: fixed;
        top: 0;
        left: 20%;
        transform: translateX(-15%);
        z-index: -1;
    }

    #global-nav.active {
        display: block;
        z-index: 1;
    }

    #global-nav ul {

        display: block;
    }

    #global-nav li,
    #global-nav li:last-child {
        width: 90%;
        padding: 2% 0;
    }

    #global-nav li a {
        font-size: 14px;
        text-align: left;
        border-bottom: 3px dotted #FFFFFF;
        background: none;
        padding: 15px 0;
    }

    #global-nav span {
        color: #727172;
    }

    #global-nav .menu_contact {
        width: 280px;
        text-align: center;
        margin-top: 5%;
    }

    #gloval-sub-nav {
        display: none;
    }
}


/* ==========フッター========== */
.footer_area {
    width: 100%;
    height: 180px;
    background: #42b5f4;
    text-align: center;
}

.footer_area img {
    width: 100px;
    margin: 2% 0 1%;
}

.footer_area p {
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    color: #FFFFFF;
}

@media screen and (max-width: 610px) {
    .footer_area {
        height: 100px;
    }

    .footer_area img {
        width: 70px;
        margin: 2% 0 1%;
    }

    .footer_area p {
        transform: scale(0.6);
    }
}
/* ==========キャッチフレーズ========== */
.hero-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-catchphrase {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    text-align: left;
}

.hero-catch-text {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.15em;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 0 12px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.4);
}

@media screen and (max-width: 610px) {
    .hero-catch-text {
        font-size: 24px;
    }
}

/* スライダー画像エフェクト */
.slider .slick-slide img {
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(transparent, rgba(89,191,246,0.25));
    pointer-events: none;
    z-index: 2;
}
