@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400&display=swap');
html {
  scroll-behavior: smooth;
  background-color: #76c0eb;
}
/* CSS Document */
/* ヘッダー_base */
.container_header_menu {
  width: 100%;
  height: auto;
  padding: 10px 0;
  margin: 10px auto;
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width:768px) { /* PC  ==================== */
  .header_menu_area {
    width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (max-width:768px) { /* SP  ==================== */
  .header_menu_area {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* ヘッダー_ロゴ */
@media screen and (min-width:768px) { /* PC  ==================== */
  .box_header_menu_01 {
    text-align: left;
    width: 20%;
    height: auto;
    padding: 0;
    box-sizing: border-box;
  }
  .box_header_menu_01 img {
    width: 120px;
  }
}
@media screen and (max-width:768px) { /* SP  ==================== */
  .box_header_menu_01 {
    text-align: left;
    width: 20%;
    height: auto;
    padding: 5px 0;
    box-sizing: border-box;
  }
  .box_header_menu_01 img {
    width: 70px;
  }
}
/* ヘッダー_右エリア */
@media screen and (min-width:768px) { /* PC  ==================== */
  .box_header_menu_02 {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 80%;
    padding: 0 0 0 10px;
  }
  .box_header_menu_02_navi {
    display: grid;
    width: fit-content;
    column-gap: 1em;
    grid-template-columns: repeat(3, auto);
    margin: 0 auto;/
  }
  .header_lineup_area {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width:768px) { /* SP  ==================== */
  .box_header_menu_02 {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 80%;
    padding: 0 0.5rem;
  }
  .box_header_menu_02_navi {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0.5em;
    justify-items: center;
    width: 100%;
  }
  .header_lineup_area {
    width: 100%;
    height: auto;
  }
}
/* ヘッダー_個別ボタン */
@media screen and (min-width:768px) { /* PC  ==================== */
  .tp_menu_btn {
    width: 220px;
    height: 50px;
    font-family: "Murecho", sans-serif;
    font-size: 1.2em;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    color: #ffffff;
    border-radius: 30px;
    border-bottom: 5px solid #014b86;
    transition: 0.3s;
    background-color: #0062b0;
  }
  .tp_menu_btn a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }
  .tp_menu_btn a:hover {
    color: #ffffff;
    border-bottom-width: 0;
    transform: translateY(5px);
  }
}
@media screen and (max-width:768px) { /* SP  ==================== */
  .tp_menu_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.7em;
    font-family: "Murecho", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    border-radius: 20px;
    width: 80%;
    height: 13px;
    border-bottom: 5px solid #014b86;
    transition: 0.3s;
    background-color: #0062b0;
  }
  .tp_menu_btn a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }
  .tp_menu_btn a:hover {
    color: #ffffff;
    border-bottom-width: 0;
    transform: translateY(3px);
  }
}