@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 {
    width: 80%;
    display: flex;
    position: relative;
}


.logo_flex img {
    margin-right: 1vw;
    width: 20%;
}

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

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

}

/* ヘッダー：ナビゲーション */
header nav {
    display: none;
}

/* ハンバーガーメニュー */
.hb_menu_box {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 30px;
    height: 30px;
    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: 2px;
    width: 30px;
    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: 10px;
    transition: 0.3s;
}
.hb_menu_box span::after {
    position: absolute;
    top: 10px;
    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: 120%;
    top: -150%;
    left: 0;
    z-index: 10;
    background-color: #1163AA;
    transition: 0.5s;
}
.hb_menu_content ul {
    margin-top: 8vw;
    padding: 5vw;
}
.hb_menu_content ul li {
    list-style-type: none;
    padding: 10px;
    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: 3.4vw;
    font-weight: 200;
}

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



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

main h2 {
    position: absolute;
    top: 35%;
    left: 5%;
    padding: 6vw 10vw;
    font-size: 5.5vw;
    font-weight: 400;
    font-family: 'M_PLUS_Rounded_1c';
    background-color: #fff;
}


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

/* パンくずリスト */
.breadcrumb {
    display: flex;
    margin: 3vw 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: 3vw;
    font-weight: 400;
    font-family: 'M_PLUS_Rounded_1c';
}

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

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

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

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

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

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

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

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

/* フッター */
footer {
    background-image: url(../images/google/hachinohe_in_aomori.png);
    background-size: 80%;
    background-position: 90% 80%;
    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: 3vw auto 0;
    display: grid;
    grid-template-rows: 8vw 10vw 10vw;
    width: 100%;
    justify-content: space-around;
    list-style-type: none;
}

footer nav ul li:nth-of-type(1) {
    grid-row: 1;
    grid-column: 1;
}

footer nav ul li:nth-of-type(2) {
    grid-row: 1;
    grid-column: 2;
}

footer nav ul li:nth-of-type(3) {
    margin-top: 2vw;
    grid-row: 2;
    grid-column: 1;
}

footer nav ul li:nth-of-type(4) {
    margin-top: 2vw;
    grid-row: 2;
    grid-column: 2;
}
footer nav ul li:nth-of-type(5) {
    margin-top: 2vw;
    grid-row: 3;
    grid-column: 1;
}
footer nav ul li:nth-of-type(6) {
    margin-top: 2vw;
    grid-row: 3;
    grid-column: 2;
}

footer nav ul a {
    text-align: center;
    font-size: 3vw;
    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: 25%;
}

.footer_address_box {
    margin-left: 3vw;
    width: 60%;
}

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


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

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

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

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