@charset "UTF-8";

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

input:focus,
textarea:focus {
    outline: none;
}

label,
select,
button,
input[type="submit"],
input[type="radio"],
input[type="checkbox"] input[type="button"] {
    cursor: pointer;
}

a,
a:visited,
a:active {
    text-decoration: none;
    cursor: pointer;
    color: #333333;
    transition: 0.3s;
}

.common_btn:visited,
.common_btn:active {
    color: #fff;
}

a:hover {
    text-decoration: none;
    cursor: pointer;
    transition: 0.4s;
}

.flex {
    display: flex;
}

main,
body {
    border: 0;
    font-size: 16px;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #333333;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, Verdana, "ＭＳ Ｐゴシック", sans-serif;
}

main {
    padding: 0 4%;
    background-image: none;
    background-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}

.sp {
    display: none;
}

.bg_gradation {
    background-image: linear-gradient(90deg, rgba(189, 226, 234, 1), rgba(251, 247, 239, 1));
    padding: 1% 4%;
}

h1 {
    font-size: 30px;
}

h2 {
    text-align: left;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.text_center {
    text-align: center;
}

.btn_area {
    text-align: center;
}

.common_btn {
    padding: 15px 30px;
    border-radius: 100vh;
    border: 0;
    background: #94C9D0;
    font-size: 1.2em;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    display: inline-block;
    width: 250px;
    color: #fff;
    margin-bottom: 20px;
    transition: 0.5s;
    z-index: 0;
}

.common_btn:active,
.common_btn:hover {
    box-shadow: none;
    cursor: pointer;
}

/* 必須・任意 */

.label-danger {
    font-size: 12px;
    color: #fff;
    background-color: #FF6347;
    padding: 4px;
    border-radius: 5px;
    margin-right: 5px;
}

.label-optional {
    font-size: 12px;
    color: #fff;
    background-color: #999999;
    padding: 4px;
    border-radius: 5px;
    margin-right: 5px;
}


/* ヘッダー */
header {
    padding: 15px 4% 15px;
    /* position: fixed; */
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
}

nav {
    margin: 0 0 0 auto;
}


.header_ul {
    display: flex;
    gap: 20px;
}


.pc-nav-ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header_ecopra {
    max-width: 200px;
}

.icon {
    position: relative;
    /* 基準値とする */
}

.icon::after {
    content: "！";
    position: absolute;
    top: 0;
    right: -5px;
    color: #FFF;
    line-height: 20px;
    font-weight: bold;
    text-align: center;
    width: 20px;
    background: #ff5c5c;
    border-radius: 50%;
}

.btn_new,
.btn_login {
    display: inline-block;
    background-color: #94C9D0;
    letter-spacing: 1px;
    border-radius: 100px;
    padding: 10px 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btn_login {
    background-color: #fff;
    border: #94C9D0 2px solid;
}

.btn_new:hover,
.btn_login:hover {
    transform: scale(1.1);
}


.sp-nav {
    display: none;
}


.icon_mail {
    background-color: #94C9D0;
    border-radius: 100px;
    max-width: 40px;
    padding: 10px;
    margin-top: 7px;
}

.sp-nav {
    display: none;
}

/* パンくずリスト */
.material-symbols-outlined {
    vertical-align: bottom;
    padding-bottom: 2px;
    font-variation-settings:
        'FILL' 0,
        'wght' 200,
        'GRAD' 0,
        'opsz' 24
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    vertical-align: middle;
    align-items: baseline;
    margin: 15px 0;
}

.breadcrumb li:not(:last-of-type)::after {
    content: ">";
    margin: 0 .6em;
    /* 記号の左右の余白 */
    color: #333333;
    /* 記号の色 */
}

.breadcrumb li a:hover {
    color: #f0f0f0;
}

textarea {
    border: #f0f0f0 2px solid;
}

footer {
    background-image: linear-gradient(90deg, rgba(189, 226, 234, 1), rgba(251, 247, 239, 1));
    padding: 4%;
    text-align: left;
}

footer ul {
    margin-bottom: 20px;
}


@media screen and (max-width: 767px) {

    .pc-nav,
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .sp-nav {
        z-index: 1;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: block;
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        opacity: 0;
        transform: translateY(-100%);
        transition: all .2s ease-in-out;
    }

    #hamburger {
        display: block;
        width: 30px;
        height: 25px;
        margin: 0 0 0 auto;
    }

#hamburger {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 99999;
}

.memberMsgBox .hoverbox {
    position: static !important;
    z-index: auto !important;
}


    #hamburger span {
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333333;
        transform: translateY(-50%);
    }

    #hamburger::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #333333;
    }

    #hamburger::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70%;
        height: 2px;
        background-color: #333333;
    }

    h1 {
        margin: 0;
    }

    /*スマホメニュー*/
    .sp-nav ul {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .sp-nav li {
        margin: 0;
        padding: 0;
    }

    .sp-nav li span {
        font-size: 15px;
        color: #333333;
    }

    .sp-nav li a,
    .sp-nav li span {
        display: block;
        padding: 20px 0;
        color: #333333;
    }

    /*-閉じるアイコンー*/
    .sp-nav .close {
        position: relative;
        padding-left: 20px;
    }

    .sp-nav .close::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 16px;
        height: 1px;
        background: #333333;
        transform: rotate(45deg);
    }

    .sp-nav .close::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 16px;
        height: 1px;
        background: #333333;
        transform: rotate(-45deg);
    }

    .toggle {
        transform: translateY(0);
        opacity: 1;
    }

    .flex {
        display: block;
    }


}

.text-sm {
    font-size: 0.875rem !important;
}

.text-gray-500 {
    color: #6B7280 !important;
}