@charset "utf-8";

/********************** 設定CSS **********************/
:root {
    --main-color: #fff;
    --sub-color: #3EB135;
    --ac-color: #003F98;
    --bg_shape-color: #F9FDF3;
    --gray-color: #B8B8B8;
    --fsize24: clamp(18px, 1.5vw, 1.5rem);
    --fsize30: clamp(24px, 2.3vw, 1.9rem);
    --fsize50: clamp(35px, 2.7vw, 50px);
    --fsize70: clamp(2rem, 2.8vw, 70px);
    --fsize90: clamp(40px, 4.5vw, 90px);
    --px16: clamp(12px, 1vw, 16px);
    --px24: clamp(16px, 1.5vw, 24px);
    --px30: clamp(20px, 1.8vw, 30px);
    --px40: clamp(28px, 2.2vw, 40px);
    --px50: clamp(35px, 2.7vw, 50px);
    --px70: clamp(3rem, 2.8vw, 70px);
    --px90: clamp(50px, 3.5vw, 90px);
    --px100: clamp(70px, 5.5vw, 100px);
    --px120: clamp(90px, 6vw, 120px);
    --px140: clamp(100px, 7vw, 140px);
    --px150: clamp(100px, 8vw, 150px);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
    line-height: 1.5;
}

input,
select {
    -webkit-appearance: none;
    appearance: none;
}

input[type="checkbox"] {
    -webkit-appearance: auto;
    appearance: auto;
}

/*********** 設定CSS（タグ） ***********/
html,
body {
    overflow-x: hidden;
}

h1 {}

h2 {
    font-family: "M PLUS 1p", sans-serif;
}

h3 {
    margin-bottom: var(--px30);
    font-size: var(--fsize30);
    color: #727272;
}

img {
    max-width: 100%;
}

li {
    list-style: none;
}

a {
    display: block;
    text-decoration: none;
    color: #000;
}

a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
}

p {
    line-height: 2;
}

table {
    border-collapse: collapse;
    width: 100%;
}

tr {
    border-bottom: 1px solid #C6C6C6;
}

th {
    width: 25%;
    background-color: var(--bg_shape-color);
    padding: 1.5rem 2rem;
}

td {
    width: 75%;
    padding: 1.5rem 2rem;
}

/*********** 設定CSS（class/id） ***********/
.pc_only {
    display: block !important;
}

.sp_only {
    display: none !important;
}

footer .content_btn.pc_only,
.en.pc_only {
    display: flex !important;
}

footer .content_btn.sp_only,
.en.sp_only {
    display: none !important;
}

.button {
    color: var(--ac-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 150px;
    padding: 5px 0 5px 5px;
    border-bottom: 3px solid var(--ac-color);
    font-size: var(--fsize24);
    font-family: "Oswald", sans-serif;
    transition: all 0.3s ease-out;
}

.button::after {
    content: "";
    width: 25px;
    height: 100%;
    padding: 0.3rem 0;
    display: inline-block;
    background-image: url(../images/btn_arrow_blue.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    transition: all 0.3s ease-out;
}

.button:hover {
    color: var(--sub-color);
    border-bottom: 3px solid var(--sub-color);
}

.button:hover::after {
    transform: translateX(1rem);
    background-image: url(../images/btn_arrow_green.png);
}

.w_button {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(180px, 25vw, 40%);
    padding: 0.8rem 2rem 0.5rem;
    border-bottom: 3px solid #fff;
    font-size: var(--fsize24);
    transition: all 0.3s ease-out;
    position: relative;
    gap: 2rem;
    z-index: 2;
}

.w_button::after {
    content: "";
    width: 25px;
    padding: 0.3rem 0;
    display: inline-block;
    background-image: url(../images/btn_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    transform: translateX(0);
    transition: all 0.3s ease-out;
}

.w_button:hover {
    color: var(--sub-color);
    border-bottom: 3px solid var(--sub-color);
}

.w_button:hover::after {
    transform: translateX(1rem);
}

.content_btn {
    position: relative;
    color: #fff;
    width: clamp(150px, 18vw, 300px);
    padding: 0.6rem 2rem 0.5rem;
    font-weight: bold;
    border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(#005ddf, var(--ac-color));
    transition: all 0.3s ease-out;
    z-index: 10;
}

.content_btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(#4dd342, var(--sub-color));
    opacity: 0;
    transition: opacity 0.3s ease-out;
    border-radius: inherit;
    z-index: -1;
}

.content_btn::before {
    content: "";
    background-image: url(../images/menu_mail.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    padding: 0.8rem 0.5rem;
    margin-top: 3px;
    width: 1rem;
    height: 100%;
    z-index: 1;
}

.content_btn span {
    position: relative;
    z-index: 1;
}

.content_btn:hover::after {
    opacity: 1;
}

#page_top_btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 70px;
    z-index: 999;
    transition: all 0.3s ease-out;
}

.hide_page_top_btn {
    opacity: 0;
}

body h2.en {
    display: flex;
    flex-direction: column;
    font-weight: normal;
    font-size: var(--fsize24);
    color: #000;
}

.en span {
    font-size: var(--fsize50);
    font-family: "Oswald", sans-serif;
    color: var(--sub-color);
    font-weight: bold;
}

/******* 設定CSS（装飾関係） *******/
.deco_scroll {
    position: absolute;
    left: 50%;
    bottom: -4%;
    transform: translateY(50%);
    z-index: 10;
}

/* ライン本体 */
.deco_scroll_line {
    display: block;
    width: 1px;
    height: 100px;
    background-color: var(--sub-color);
    position: relative;
    overflow: hidden;
}

/* ラインの中を上下に流れる光 */
.deco_scroll_line::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 50%, transparent 100%);
    animation: scrollMove 1.5s infinite ease-in-out;
}

@keyframes scrollMove {
    0% {
        top: -100%;
        opacity: 0;
    }

    50% {
        top: 0%;
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}


.deco_shape {
    position: absolute;
    width: 100vw;
    height: 150%;
    background: var(--bg_shape-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 130% 100%);
    margin: 0;
    left: 50%;
    bottom: -2%;
    transform: translateX(-50%) rotate(180deg);
    z-index: -1;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.deco_shape.deco_show {
    opacity: 1;
    transform: translateX(-50%) rotate(180deg);
    background: var(--bg_shape-color);
}

.deco_circle {
    width: clamp(500px, 60vw, 1200px);
    height: clamp(500px, 60vw, 1200px);
    border-radius: 50%;
    position: absolute;
    z-index: -1;
}


/***************** header *****************/
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #fff;
    font-size: var(--fsize24);
}

.logo_area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 30%;
}

.logo {
    width: 40%;
}

.logo_text {
    width: calc(60% - 1rem);
    margin-top: 8px;
}

header nav {
    width: calc(70% - 2rem);
}

header nav ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1.2rem;
}

header nav ul a,
footer ul a {
    padding: 0.2rem 0.5rem;
    transition: all 0.2s ease-out;
    font-size: 1.1rem;
}

header nav ul a:not(.content_btn):hover,
footer ul a:hover {
    opacity: 0.5;
}

/* ハンバーガーボタン */

#hamburgerBtn {
    display: none;
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

#hamburgerBtn div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#hamburgerBtn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}

.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #fff;
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu.active {
    right: 0;
}

.menu_wrap {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.menu_wrap li {
    margin: 1.2rem 0;
}

.menu_wrap a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.menu_wrap a:hover {
    color: #0078ff;
}

.menu_wrap a.content_btn:hover {
    color: #fff;
}

#closeBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

#closeBtn div {
    position: relative;
    width: 25px;
    height: 25px;
}

#closeBtn span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

#closeBtn span:first-child {
    transform: rotate(45deg);
}

#closeBtn span:last-child {
    transform: rotate(-45deg);
}


#hamburgerBtn.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

#hamburgerBtn.active span:nth-child(2) {
    opacity: 0;
}

#hamburgerBtn.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}



@supports (-webkit-touch-callout: none) {
    header {
        top: 0 !important;
        position: fixed;
    }
}


/* ファーストビュー */
.fv_wrap {
    position: relative;
    height: 100svh;
}

.fv_wrap .catch_copy_area {
    position: absolute;
    bottom: 5rem;
    left: 2rem;
    color: #fff;
    font-size: var(--fsize70);
    z-index: 2;
    font-weight: 500;
    text-shadow: 1px 1px 1px #303030;
}

.fv_wrap .catch_copy_en {
    font-family: "Oswald", sans-serif;
}

/* slick */
#slider_content {
    position: relative;
}

#slider_content::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    z-index: 1;
}

#slider_content .slick-slide {
    height: 100svh;
}

.slick-slide img {
    width: 100%;
    height: 100svh;
    object-fit: cover;
}

#slider_area .slick-dots {
    position: absolute;
    bottom: 4rem;
    right: 8rem;
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    width: auto;
    z-index: 3;
}

#slider_area .slick-dots li {
    margin: 0 0.2rem;
}

#slider_area .slick-dots li button {
    background: #fff;
    border-radius: 50px;
    width: 10px;
    height: 10px;
}

.slick-dots li {
    width: 10px;
    height: 10px;
}

#slider_area .slick-dots .slick-active button {
    width: 15px;
    height: 15px;
    background: var(--gray-color);
}

#slider_area .slick-dots li button:before {
    content: none;
}

footer {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
    background: #fff;
}

.footer_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-color);
    width: 80%;
    margin: 0 auto;
    padding-top: 1rem;
}

.footer_content .right_area {
    display: flex;
    gap: var(--px100);
}

.footer_content li {
    margin-bottom: 10px;
    position: relative;
}

.footer_content li:last-child {
    margin-bottom: 0;
}

.footer_content li a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.footer_content li a::before {
    content: "";
    width: 1rem;
    border: 1px solid var(--ac-color);
    display: inline-block;
    opacity: 1;
    transition: all 0.2s ease-out;
}

footer .company_detail {
    margin: 1rem auto;
    font-size: var(--fsize24);
}

footer .content_btn {
    width: clamp(150px, 18vw, 230px);
    margin: 1rem 0;
    font-size: 16px;
}

footer .content_btn::before {
    padding: 0.7rem 0.5rem;
    margin-top: 4px;
    width: 20px;
    z-index: 1;
}

footer .logo_area {
    justify-content: flex-start;
    width: 80%;
}

footer .logo {
    width: 100%;
}

footer .left_area ul.pc_only {
    margin-left: 1rem;
}

small {
    display: block;
    text-align: center;
    margin: 2rem auto 0.5rem;
}

@media screen and (max-width: 1280px) {

    header {
        padding: 1rem 1rem;
    }

    header .menu {
        width: 100%;
    }

    .logo_area {
        width: 80%;
        justify-content: flex-start;
    }

    .logo {
        width: 30%;
    }

    .logo_text {
        width: calc(40% - 1rem);
    }

    header nav {
        display: none;
    }

    #hamburgerBtn {
        display: block;
    }

    /* 開閉時のメニュー */
    #hamburgerBtn.active div {
        display: none;
    }

    header ul a:not(.content_btn) {
        border-bottom: 1px solid var(--ac-color);
    }

    header ul a.nav_active:not(.content_btn) {
        color: var(--ac-color);
        font-weight: bold;
    }

    .menu_wrap {
        width: 50%;
    }

    .menu .content_btn {
        color: #fff;
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .pc_only {
        display: none !important;
    }

    .sp_only {
        display: block !important;
    }

    footer .content_btn.pc_only,
    body .en.pc_only,
    body a.button.pc_only {
        display: none !important;
    }

    footer .content_btn.sp_only,
    body .en.sp_only,
    body a.button.sp_only {
        display: flex !important;
    }

    .fv_wrap .catch_copy_area {
        bottom: 2rem;
    }

    #slider_area .slick-dots {
        bottom: 2rem;
        right: 4rem;
    }

    #slider_area .slick-dots li {
        margin: 0 0.5rem;
    }

    #slider_area .slick-dots li {
        width: 12px;
        height: 12px;
    }

    .button {
        margin: var(--px50) auto;
    }

    footer .logo_area {
        width: 100%;
    }

    footer .logo,
    footer .content_btn {
        width: 50%;
    }

    footer .content_btn {
        margin-right: auto;
    }

    .footer_content {
        flex-direction: column;
        width: 100%;
        padding: 1rem;
    }

    .footer_content .right_area {
        gap: 0;
        flex-direction: column;
        width: 100%;
    }

    .footer_content .left_area {
        width: 100%;
    }

    .footer_content li:last-child {
        margin-bottom: 10px;
    }

    #page_top_btn {
        bottom: 10px;
        right: 10px;
        width: 40px;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 0.5rem 1rem;
    }

    .fv_wrap .catch_copy_area {
        bottom: 50%;
        left: 50%;
        transform: translate(-50%, 50%);
        width: 95%;
    }

    .logo_area {
        gap: 0.5rem;
    }

    .logo_text {
        margin-top: 4px;
    }

    .menu_wrap {
        width: 80%;
    }

    #hamburgerBtn {
        top: 0.9rem;
    }

    footer {
        width: 95%;
    }

    footer .logo {
        width: 70%;
    }

    footer .content_btn {
        width: 100%;
    }

    a[href^="tel:"] {
        pointer-events: auto;
        cursor: pointer;
    }
}