@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* PC */

.pc {
    display: block;
}

.sp {
    display: none;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

img {
    border: 0;
    vertical-align: top;
}

html {
	font-size: 100% !important;
}

body {
    font-family: "Noto Sans JP", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 2.2;
    color: #707070 !important;
    letter-spacing: 0;
    -webkit-text-size-adjust: 100%;
	background: none !important;
}

a {
    color: #707070 !important;
    outline: none !important;
    text-decoration: none !important;
}

.wrapper {
    width: 1000px;
    margin: 0 auto;
}

.wrapper_header {
    position: relative;
    /* アイコンの絶対配置の基準となる */
    width: 1000px;
    margin: 0 auto;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

.clearfix:after {
    content: "";
    clear: both;
    display: block;
}

/* インスタグラムとXのアイコンのスタイル */
.social-icons {
    position: absolute;
    top: 10px;
    right: 10px;
}

.social-icons a {
    display: inline-block;
    margin-left: 10px;
}

.social-icons img {
    width: 24px;
    /* アイコンのサイズ調整 */
    height: 24px;
}

/* ヘッダースタイル */
header {
    width: 100%;
    padding: 10px 0;
    z-index: 30000;
    position: relative;
    /* アイコンの位置指定のため */
}

.main {
    margin: 50px 0 0 0;
}

/* 他のメニュースタイルはそのまま再利用 */


.menu {
    width: 600px;
    margin: 50px 200px 0 200px;
    display: block;
    text-align: center;
}

.menu li {
    float: left;
    margin: 0 65px 0 0;
    position: relative;
    /* ドロップダウンメニューのため */
}

.menu li:last-child {
    float: left;
    margin: 0 0 0 0;
}

.menu li a {
    font-size: 0.8rem;
    color: #707070 !important;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
    display: inline-block;
    padding-bottom: 5px;
    transition: border-bottom 0.3s ease;
    border-bottom: 5px solid transparent;
    /* 常に透明なボーダーを設定 */
}

/* マウスオンした時のborder-bottom（トップメニューのみ適用） */
.menu>li>a:hover {
    border-bottom: 5px solid #d1e0d7;
}

/* ドロップダウンメニューのスタイル */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000 !important;
    opacity: 0.7;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 0;
    top: 100%;
    /* ドロップダウンメニューを下に表示 */
    left: 0;
}

/* ドロップダウン内のアイテムのスタイル */
.dropdown-content li {
    float: none;
    margin: 0;
}

.dropdown-content li a {
    padding: 12px 16px;
    text-align: left;
    color: #fff !important;
    font-size: 0.8rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    display: block;
    border-bottom: none;
    /* ドロップダウン内のメニューはボーダーなし */
}

.dropdown-content li a:hover {
    background-color: transparent;
    /* 背景だけ変える */
    border-bottom: none;
    /* ドロップダウン内のメニューはボーダーなし */
}

/* ドロップダウン表示 */
.dropdown:hover .dropdown-content {
    display: block;
    position: absolute;
    /* 下の要素を押さない */
}




.logo_header {
    width: 284px;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.h2_underlayer {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;
    color: #707070;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 50px;
}

.h2_underlayer span {
    font-size: 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
    color: #707070;
}

footer {
    width: 100%;
    margin: 50px 0 0 0;
    background-color: #d1dfd6;
}


.footer_left {
    width: 500px;
    float: left;
    padding: 45px 0 45px 0;
}

.footer_right {
    width: 500px;
    float: right;
    padding: 90px 0 0 40px;
    box-sizing: border-box;
}


.menu_footer {
    width: 100%;
}

.menu_footer li {
    float: left;
    margin: 0 16px 0 0;
}

.menu_footer li:last-child {
    margin: 0 0 0 0;
}

.menu_footer li a {
    font-size: 0.8rem;
    color: #fff;
}

.copy {
    font-size: 0.7rem !important;
    color: #fff;
    text-align: right;
}



/* タブレット用のメディアクエリ - common */
@media screen and (max-width: 1000px) {
    .wrapper {
        width: 90%;
        /* 画面幅の90%に設定 */
        margin: 0 auto;
    }

    .wrapper_header {
        position: relative;
        /* アイコンの絶対配置の基準となる */
        width: 90%;
        /* 画面幅の90%に設定 */
        margin: 0 auto;
    }

    .menu {
        width: 62%;
        margin: 50px auto 0 auto;
    }

    .menu li {
        margin: 0 30px 0 0;
    }

    .menu li:last-child {
        margin: 0;
    }

    .h2_underlayer {
        font-size: 2.5rem;
    }

    .h2_underlayer span {
        font-size: 1.2rem;
    }

    .logo_header {
        width: 40%;
        margin: 20px auto 0 auto;
    }

    .footer_left,
    .footer_right {
        width: 100%;
        /* フッターを100%幅に */
        float: none;
        /* フロートを解除して縦並びに */
        text-align: center;
        padding: 30px 0;
    }

    .menu_footer {
        text-align: center;
    }

    .menu_footer li {
        float: none;
        /* フロート解除して縦並びに */
        display: inline-block;
        margin: 0 8px;
        /* 余白調整 */
    }
}






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

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .social-icons {
        position: absolute;
        top: -10px;
        left: 10px;
    }

    .nav-btn {
        position: absolute;
        top: 20px;
        right: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .menu-btn {
        position: absolute;
        top: -10px;
        right: 16px;
        display: flex;
        height: 30px;
        width: 30px;
        justify-content: center;
        align-items: center;
        z-index: 90;
    }

    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: #cad8cf;
        position: absolute;
    }

    .menu-btn span:before {
        bottom: 8px;
    }

    .menu-btn span:after {
        top: 8px;
    }

    #menu-btn-check:checked~.menu-btn span {
        background-color: rgba(255, 255, 255, 0);
    }

    #menu-btn-check:checked~.menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    #menu-btn-check:checked~.menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    #menu-btn-check {
        display: none;
    }

    .menu-content {
        width: 60%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;
        z-index: 80;
        background-color: #333;
        transition: all 0.5s;
    }

    .menu-content ul {
        padding: 70px 10px 0;
    }

    .menu-content ul li {
        border-bottom: solid 1px #fff;
        list-style: none;
    }

    .menu-content ul li a {
        display: block;
        width: 100%;
        font-size: 15px;
        box-sizing: border-box;
        color: #fff;
        text-decoration: none;
        padding: 9px 15px 10px 0;
        position: relative;
    }

    .menu-content ul li a::before {
        content: "";
        width: 7px;
        height: 7px;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        transform: rotate(45deg);
        position: absolute;
        right: 11px;
        top: 16px;
    }

    #menu-btn-check:checked~.menu-content {
        left: 40%;
    }

    /* ドロップダウンメニューの基本スタイル */
    .dropdown {
        position: relative;
    }

    .dropdown-content {
        opacity: 0;
        /* 初期状態は透明 */
        visibility: hidden;
        /* 初期状態は非表示 */
        background-color: #333;
        width: 100%;
        transition: opacity 0.3s ease, visibility 0s 0.3s;
        /* スムーズなアニメーション */
    }

    .dropdown-content li {
        border-bottom: 1px solid #fff;
    }

    .dropdown-content li a {
        display: block;
        font-size: 14px;
        color: #fff;
        text-decoration: none;
        padding: 10px;
    }

    .dropdown-content li a:hover {
        background-color: #444;
    }

    /* ドロップダウンを開いた時のスタイル */
    .dropdown.open .dropdown-content {
        opacity: 1;
        /* 開いたときに表示 */
        visibility: visible;
        /* 表示に変更 */
        transition: opacity 0.3s ease;
        /* スムーズな表示 */
    }


    .copy {
        text-align: center;
    }


}