@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: 2vw;
    font-size: 110%;
    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 {
    display: none;
}

/* ハンバーガーメニュー */
.hb_menu_box {
    position: absolute;
    top: 0;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    text-align: center;
    justify-content: center;
    z-index: 100;
}

/* ハンバーガーメニューの三本線 */
.hb_menu_box span,
.hb_menu_box span::before,
.hb_menu_box span::after {
    content: "";
    display: block;
    height: 3px;
    width: 45px;
    position: relative;
    background-color: #000;
    border-radius: 10px;
    transition: 0.3s;
}
.hb_menu_box span {
    top: 50px;
}
.hb_menu_box span::before {
    position: absolute;
    bottom: 15px;
    transition: 0.3s;
}
.hb_menu_box span::after {
    position: absolute;
    top: 15px;
    transition: 0.3s;
}

/* チェックボックスを非表示 */
#hb_menu_check {
    display: none;
}

/* チェックボックスを押したときに×にする */
#hb_menu_check:checked ~ .hb_menu_box span {
    background: transparent;
}
#hb_menu_check:checked ~ .hb_menu_box span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #fff;
    transition: 0.3s;
}
#hb_menu_check:checked ~ .hb_menu_box span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #fff;
    transition: 0.3s;
}

/* ハンバーガーメニューの中身のメニュー */
.hb_menu_content {
    position: absolute;
    width: 100%;
    height: 70vw;
    top: -70vw;
    left: 0;
    z-index: 10;
    background-color: #1163AA;
    transition: 0.5s;
}
.hb_menu_content ul {
    margin-top: 5vw;
    padding: 5vw;
}
.hb_menu_content ul li {
    list-style-type: none;
    padding: 8px;
    border-top: 1px solid #fff;
}

.hb_menu_content ul li:last-of-type {
    border-bottom: 1px solid #fff;
}

.hb_menu_content ul li a {
    display: block;
    position: relative;
    padding: 8px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 2.5vw;
    font-weight: 200;
}

#hb_menu_check:checked ~ .hb_menu_content {
    top: 0;
    left: 0;
}


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

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


main h2::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom: 4vw solid #1163AA;
    border-left: 4vw 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: 1.6vw;
    font-weight: 400;
    font-family: 'M_PLUS_Rounded_1c';
}

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

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

.section_flexbox section {
    width: 35%;
    height: 70vw;
    margin: 2% 2.5% ;
    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: 2.2vw;
    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: '>';
    height: 3vw;
    padding-right: 3%;
    line-height: 3vw;
    font-size: 2vw;
    transform: scaleX(0.7);
}

.section_flexbox section ul li a {
    line-height: 3vw;
    color: #333;
    font-size: 2vw;
    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;
}

/* フッター */
footer {
    background-image: url(../images/google/hachinohe_in_aomori.png);
    background-size: 40%;
    background-position: 90% 120%;
    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: 100%;
    justify-content: space-around;
    list-style-type: none;
}

footer nav ul a {
    font-size: 1.8vw;
    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;
    width: 80%;
}

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


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

.top_button {
    position: absolute;
    bottom: 10vw;
    right: 2vw;
    width: 7%;
    height: 7%;
}

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

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