@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Maru+Gothic&family=Zen+Old+Mincho&display=swap');

html {
    font-size: 18px;
    color: #333333;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
}

body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #333333;
    transition: 0.3s;
}

a:hover {
    opacity: 0.7;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.w1260 {
    width: 100%;
    max-width: 1260px;
    margin: auto;
}


/*header*/

header {
    border-top: 5px #097C99 solid;
    background-color: #fff;
}

header .flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

header .logo {
    width: 360px;
}

header .cnt {
    display: flex;
    align-items: center;
}

header .cnt>* {
    margin-left: 20px;
}

header .tel {
    font-size: 2.2em;
    font-weight: 900;
    display: flex;
    align-items: center;
}

header .tel img {
    display: block;
    width: 50px;
    margin-right: 10px;
}

header nav .global-menu {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 0;
    margin: 0;
    list-style: none;
}

header nav .global-menu > li {
    position: relative;
    border-right: 2px solid #999;
}

header nav .global-menu > li:first-child {
    border-left: 2px solid #999;
}

header nav .global-menu > li > a {
    display: block;
    padding: 6px 0;
    text-align: center;
}

/* サブメニュー非表示 */
header nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    z-index: 100;
}

/* ホバーで表示 */
header nav .global-menu > li:hover > .sub-menu {
    display: block;
}

/* サブメニュー項目 */
header nav .sub-menu li a {
    display: block;
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #eee;
}



.policy {
    text-align: center;
    font-size: 2em;
    padding: 20px 0;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
}




/*footer*/

footer .pageunder {
    position: relative;
    background-color: #000;
}

footer .pageunder .footer_bg {
    width: 100%;
    max-height: 450px;
    opacity: 0.8;
    object-fit: cover;
    display: block;
}

footer .pageunder .child {
    position: absolute;
    width: 95%;
    max-width: 1000px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

footer .pageunder .child>img {
    display: block;
    width: 390px;
}

footer .pageunder .child p {
    font-size: 30px;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    text-shadow: 0 0 10px #000000;
    margin: 0;
}

footer .pageunder .child div img {
    display: block;
    margin-top: 30px;
}

