@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'M_PLUS_Rounded_1c';
    src: url(../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf);
}

html {
    scroll-behavior: smooth;
}

/* ヘッダー */
header {
    display: flex;
    margin: 3vw 5vw 0;
}

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

/* ヘッダー：ロゴ */
.logo_flex {
    display: flex;
    position: relative;
}

.logo_flex img {
    margin-right: 0.8vw;
    width: 30%;
}

.title h2 {
    position: absolute;
    bottom: 1.5vw;
    font-size: 100%;
    font-weight: 200;
    font-family: 'M_PLUS_Rounded_1c';
    letter-spacing: 0.5vw;

}

.title h3 {
    position: absolute;
    bottom: 0;
    font-size: 50%;
    font-weight: 200;
    font-family: 'M_PLUS_Rounded_1c';
    letter-spacing: 0.2vw;

}

/* ヘッダー：ナビゲーション */
header nav {
    width: 85%;
    height: 100%;
}

header nav ul {
    display: flex;
    justify-content: right;
    margin-top: 5vw;
    margin-right: auto;
    list-style-type: none;
}

header nav ul li {
    padding: 0 1vw;
    border-right: 1px solid #888;
}

header nav ul li:last-of-type {
    border: none;
}

header nav ul li a {
    box-sizing: border-box;
    color: #1163AA;
    font-size: 1.2vw;
    font-weight: 400;
    font-family: 'M_PLUS_Rounded_1c';
    border-bottom: 0.1vw solid transparent;
    transition: 0.3s;
}

header nav ul li:hover a {
    border-bottom: 0.1vw solid #1163AA;
    transition: 0.3s;
}

.hb_menu {
    display: none;
}

/* メインヴィジュアル */
main {
    position: relative;
    margin-top: 2vw;
    height: 25vw;
    background-image: url(../images/google/7896_Hachinohe\ Morning\ Market_cut.jpg);
    background-size: 100%;
    background-position-y: 10%;
    background-repeat: no-repeat;
}

main h2 {
    position: absolute;
    top: 40%;
    left: 10%;
    padding: 2vw 4vw;
    font-size: 2vw;
    font-weight: 400;
    font-family: 'M_PLUS_Rounded_1c';
    background-color: #fff;
}


main h2::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom: 2.5vw solid #1163AA;
    border-left: 2.5vw solid transparent;
}

/* パンくずリスト */
.breadcrumb {
    display: flex;
    margin: 1vw 5vw;
    list-style: none;
}

.breadcrumb li {
    display: flex;
    list-style: none;
}

.breadcrumb li::after {
    content: '>';
    padding: 0 0.2em;
    line-height: 1.8vw;
    color: #555;
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb li a {
    height: 1.8vw;
    line-height: 1.8vw;
    text-decoration: none;
    color: #000;
    font-size: 1vw;
    font-weight: 400;
    font-family: 'M_PLUS_Rounded_1c';
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

/* セクション */
.section_flexbox {
    margin: 5vw 5vw 10vw;
    display: flex;
    flex-wrap: wrap;
    row-gap: 0;
    justify-content: center;
}

.section_flexbox section {
    width: 20%;
    height: 40vw;
    margin: 2% 2%;
    padding: 1% 3%;
    border: 0.1vw solid #ccc;
    border-radius: 2vw;
    background-color: #fff;
}

.section_flexbox section h3 {
    padding: 8% 0;
    color: #1163AA;
    font-size: 1.3vw;
    font-weight: 600;
    font-family: 'M_PLUS_Rounded_1c';
    border-bottom: 0.1vw solid #1163AA;
}

.section_flexbox section ul {
    margin-top: 8%;
}

.section_flexbox section ul li {
    padding: 4% 0;
    display: flex;
    list-style-type: none;
}

.section_flexbox section ul li::before {
    content: '>';
    padding-right: 3%;
    line-height: 1.8;
    font-size: 1.1vw;
    transform: scaleX(0.7);
}

.section_flexbox section ul li a {
    line-height: 1.8;
    color: #333;
    font-size: 1.1vw;
    font-weight: 200;
    font-family: 'M_PLUS_Rounded_1c';
    text-decoration: underline;
}

.section_flexbox section ul li a:hover {
    text-decoration: none;
}

.section_flexbox section:last-child {
    visibility: hidden;
}

.section_flexbox section:nth-child(10) ul li:first-child {
    position: relative;
}

.section_flexbox section:nth-child(10) ul li:first-child a {
    background-color: #fed8ff;
}

.section_flexbox section:nth-child(10) ul li:first-child::after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 20%;
    left: -13%;
    width: 12%;
    height: 40%;
    line-height: 2vw;
    background-image: url(../images/google/finger.png);
    background-size: contain;
    background-repeat: no-repeat;
    animation: shake 1s ease-in infinite;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10%);
    }

    100% {
        transform: translateX(0);

    }
}

/* フッター */
footer {
    background-image: url(../images/google/hachinohe_in_aomori.png);
    background-size: 30%;
    background-position: 92% 125%;
    background-repeat: no-repeat;
    background-color:#ffffffb3;
    background-blend-mode:lighten;
}

footer nav {
    padding: 2vw 0;
    margin: 0 3vw;
    border-bottom: 1px solid #5555;
}

footer nav ul li:hover a {
    border-bottom: 0.1vw solid #1163AA;
    transition: 0.3s;
}

footer nav ul {
    margin: 0 auto;
    display: flex;
    width: 80%;
    justify-content: space-around;
    list-style-type: none;
}

footer nav ul a {
    font-size: 1.2vw;
    font-weight: 200;
    font-family: 'M_PLUS_Rounded_1c';
    border-bottom: 0.1vw solid transparent;
    transition: 0.3s;
}

.footer_flexbox {
    display: flex;
    padding: 3vw 4vw;
    position: relative;
}

footer img {
    margin: 0;
    width: 15%;
}

.footer_address_box {
    margin-left: 3vw;
}

.footer_address_box h3 {
    margin-top: 1vw;
    letter-spacing: 0.2;
    color: #000;
    font-size: 1.6vw;
    font-weight: 200;
    font-family: 'M_PLUS_Rounded_1c';
}


.footer_address_box address {
    margin-top: 2vw;
    line-height: 1.8;
    letter-spacing: 0.2;
    font-size: 1.1vw;
    font-weight: 200;
    font-style: normal;
    font-family: 'M_PLUS_Rounded_1c';
}

.top_button {
    position: absolute;
    bottom: 6vw;
    right: 2vw;
    width: 5%;
    height: 5%;
}

.top_button img {
    width: 100%;
    height: 100%;
}

footer p {
    padding: 0.5vw;
    text-align: center;
    color: #fff;
    font-size: 1vw;
    font-weight: 200;
    font-family: 'M_PLUS_Rounded_1c';
    background-color: #1163AA;
}