@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/7515_hachinohe-yatai-village_cut.jpg);
    background-size: 300%;
    background-position: 60% 40%;
    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;
}

ol + p {
    margin: 0.5vw 5vw 0;
    color: #000;
    font-size: 3vw;
    font-weight: 400;
    font-family: 'M_PLUS_Rounded_1c';
}

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

.section_left {
    width: 90%;
    margin: 0 auto;
}

.section_left h3 {
    padding: 1.5% 6%;
    margin-bottom: 2%;
    position: relative;
    letter-spacing: 0.2vw;
    color: #fff;
    font-size: 4vw;
    font-weight: 600;
    font-family: 'M_PLUS_Rounded_1c';
    border-radius: 10px;
    background: rgb(34,193,195);
    background: linear-gradient(194deg, rgba(34,193,195,1) 0%, rgba(0,5,255,1) 100%);
}

.section_left h3::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 3%;
    width: 1%;
    height: 60%;
    border-radius: 10px;
    background-color: #a8ffd6;
}

.section_left p {
    margin: 4% auto 0;
    width: 98%;
    line-height: 6.8vw;
    font-size: 3.5vw;
    font-weight: 200;
    font-family: 'M_PLUS_Rounded_1c';
}

.section_left section {
    margin-top: 2%;
}

.section_left h4 {
    padding: 1.2% 6%;
    margin-top: 9%;
    position: relative;
    line-height: 6vw;
    font-size: 4vw;
    font-weight: 600;
    font-family: 'M_PLUS_Rounded_1c';
    border-radius: 10px;
    background: rgb(255,158,0);
    background: linear-gradient(307deg, rgb(255, 195, 99) 0%, rgb(252, 255, 82) 100%);
}

.section_left h4::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 3%;
    width: 1%;
    height: 60%;
    border-radius: 10px;
    background-color: #e14aff;
}

table {
    table-layout: fixed;
    margin: 4% auto 0;
    width: 98%;
    font-size: 3.5vw;
    font-weight: 200;
    font-family: 'M_PLUS_Rounded_1c';
    border-collapse: collapse;
    border-color: #555;
}

th {
    width: 8%;
}

td {
    padding: 1%;
}

td:nth-of-type(1){
    width: 30%;
}
td:nth-of-type(2){
    width: 70%;
}

caption {
    margin-bottom: 1%;
    text-align: left;
    font-weight: 600;
}

p a {
    margin-top: 0;
    color: blue;
    text-decoration: underline;
}

p a:hover {
    text-decoration: none;
}

p a:nth-of-type(1)::before {
    content: '';
    display: inline-block;
    margin-right: 1%;
    width: 1.1vw;
    height: 1.1vw;
    background-image: url(../images/city_site/link_item_gaibu.png);
    background-size: contain;
}

section address {
    font-style: normal;
    margin: 2% auto 0;
    width: 98%;
    line-height: 7vw;
    font-size: 3.5vw;
    font-weight: 200;
    font-family: 'M_PLUS_Rounded_1c';
}

.section_flexbox nav {
    margin: 10vw auto 0;
    width: 90%;
    height: 190vw;
    padding: 5%;
    border: 0.1vw solid #ccc;
    box-sizing: border-box;
    border-radius: 20px;
}


.section_flexbox nav h3 {
    padding-bottom: 5%;
    color: #1163AA;
    font-size: 4.5vw;
    font-weight: 600;
    font-family: 'M_PLUS_Rounded_1c';
    border-bottom: 0.1vw solid #1163AA;
}

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

.section_flexbox nav ul li {
    margin: 5% auto;
    padding: 4% 2%;
    display: flex;
    list-style-type: none;
    border-radius: 10px;
    background: rgb(132,248,255);
    background: linear-gradient(307deg, rgb(184, 251, 255) 0%, rgb(226, 255, 237)100%);
}

.section_flexbox nav ul li::after {
    content: '>';
    height: 3vw;
    margin-left: auto;
    padding-left: 10%;
    line-height: 5vw;
    font-size: 4.5vw;
    transform: scaleX(0.7);
}

.section_flexbox nav ul li a {
    padding: 1% 5%;
    height: 3vw;
    line-height: 3vw;
    color: #333;
    font-size: 4vw;
    font-weight: 200;
    font-family: 'M_PLUS_Rounded_1c';
    text-decoration: underline;
}

.section_flexbox nav ul li a:hover {
    text-decoration: 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;
}