@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}
ul a {
  text-decoration: none;
}

:root {
  --mc: #53A716;
  --sc1: #6EC251;
  --fc: #084248;
  --fc2:#002422;
  --fc3:#0194A5;
  --max-width: 1320px;
  --pad: 0 15px;
}

@media print, screen and (min-width: 768px) {
  :root {
    --max-width: 1360px;
    --pad: 0 30px;
  }
}
@media print, screen and (min-width: 1280px) {
  :root {
    --header-height: 90px;
  }
}
.mb-0 {
  margin-bottom: 0px !important;
}

.mb-1 {
  margin-bottom: 10px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

.mb-5 {
  margin-bottom: 50px !important;
}

.mb-6 {
  margin-bottom: 60px !important;
}

.mb-7 {
  margin-bottom: 70px !important;
}

.mb-8 {
  margin-bottom: 80px !important;
}

.mb-9 {
  margin-bottom: 90px !important;
}

.mb-10 {
  margin-bottom: 100px !important;
}

.inner {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}

.left {
  width: 100%;
  height: auto;
}

.right {
  width: 100%;
}

.col2-19 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-28 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-37 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-46 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-55 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-64 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-73 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-82 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-91 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media print, screen and (min-width: 880px) {
  .col2-19 {
    grid-template-columns: 1fr 9fr;
  }
  .col2-28 {
    grid-template-columns: 2fr 8fr;
  }
  .col2-37 {
    grid-template-columns: 3fr 7fr;
  }
  .col2-46 {
    grid-template-columns: 4fr 6fr;
  }
  .col2-55 {
    grid-template-columns: 5fr 5fr;
  }
  .col2-64 {
    grid-template-columns: 6fr 4fr;
  }
  .col2-73 {
    grid-template-columns: 7fr 3fr;
  }
  .col2-82 {
    grid-template-columns: 8fr 2fr;
  }
  .col2-91 {
    grid-template-columns: 9fr 1fr;
  }
}
html {
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

body {
  font-size: 16px;
  line-height: 1.5;
  color: var(--fc2);
  background-color: #D6F1F5;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow-x: hidden;
}
body main {
  flex: 1;
}

header {
  width: 100%;
  position: relative;
}
header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  z-index: 9999;
}
header .header-wrap .h1-top a img {
  width: 230px;
}
header .header-wrap .menu-wrap .global-menu {
  display: flex;
  position: relative;
}
header .header-wrap .menu-wrap .global-menu .pc-list {
  display: none;
}
header .header-wrap .menu-wrap .global-menu li {
  display: flex;
  font-size: 15px;
  margin-left: 10px;
  border-radius: 50px;
  transition-duration: 0.2s;
}
header .header-wrap .menu-wrap .global-menu li a {
  display: block;
  width: 100%;
  padding: 14px 22px 16px 22px;
  color: var(--fc);
  font-weight: bolder;
}

@media print, screen and (min-width: 880px) {
  header .header-wrap {
    height: 140px;
    padding: 0 60px;
  }
  header .header-wrap .menu-wrap .global-menu:hover li:not(:hover) .active {
    opacity: 0.6;
  }
  header .header-wrap .menu-wrap .global-menu .pc-list {
    display: block;
  }
  header .header-wrap .menu-wrap .global-menu li.active, header .header-wrap .menu-wrap .global-menu li:hover {
    background-color: #F1FCFE;
    position: relative;
  }
  header .header-wrap .menu-wrap .global-menu li.active::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: linear-gradient(to bottom, #0194A5 0%, #0194A5 50%, rgba(1, 149, 165, 0) 50%, rgba(1, 149, 165, 0) 50%);
    border-radius: 50px;
    bottom: -18px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  header .header-wrap .menu-wrap .global-menu li:hover {
    background-color: #F1FCFE;
    position: relative;
  }
}
@media print, screen and (min-width: 1000px) {
  header .header-wrap .h1-top a img {
    width: 300px;
  }
  header .header-wrap .menu-wrap .global-menu li {
    font-size: 20px;
  }
  header .header-wrap .menu-wrap .global-menu li a {
    padding: 18px 32px 20px 32px;
  }
}
@media print, screen and (min-width: 1400px) {
  header .header-wrap .h1-top a img {
    width: 480px;
  }
  header .header-wrap .menu-wrap .global-menu li a {
    padding: 18px 57px 23px 57px;
  }
}
.hamb {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 70px;
  height: 70px;
  cursor: pointer;
  padding: 24px 20px;
  border-radius: 17px;
  background-color: #fff;
}
.hamb .span-wrap {
  width: 30px;
  height: 22px;
  position: relative;
}
.hamb .span-wrap span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--fc3);
  position: absolute;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.hamb .span-wrap span:nth-child(1) {
  top: 0;
}
.hamb .span-wrap span:nth-child(2) {
  top: 50%;
}
.hamb .span-wrap span:nth-child(3) {
  top: 100%;
}

@media print, screen and (min-width: 880px) {
  .hamb {
    display: none;
  }
}
.hamb.open span {
  z-index: 9999;
}
.hamb.open span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 8px);
}
.hamb.open span:nth-child(2) {
  display: none;
}
.hamb.open span:nth-child(3) {
  transform: rotate(45deg) translate(-8px, -9px);
}

.menu-wrap.sp {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto 0;
}
.menu-wrap.sp.open {
  display: block;
  width: 100%;
  height: 100vh;
  background-color: rgba(1, 149, 165, 0.7058823529);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); /* Safari対応 */
  overflow: auto;
}
.menu-wrap.sp.open .global-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
.menu-wrap.sp.open .global-menu .pc-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  margin-left: 0px;
  border-radius: 0px;
}
.menu-wrap.sp.open .global-menu .pc-list a {
  padding: 20px auto;
  text-align: center;
  color: #fff;
  font-size: 28px;
}
.menu-wrap.sp.open .global-menu .pc-list::before {
  display: none;
}

footer {
  background-color: #F1FCFE;
}

.footer-wrap {
  display: flex;
  flex-direction: column-reverse;
  width: auto;
  align-items: center;
  height: auto;
  margin: 0 auto;
  margin-bottom: 50px;
}
.footer-wrap .left {
  text-align: center;
}
.footer-wrap .left .footer-logo {
  margin-bottom: 7px;
}
.footer-wrap .left .footer-logo img {
  max-width: 220px;
}
.footer-wrap .left .copyright {
  font-size: 12px;
  color: #003431;
}
.footer-wrap .right {
  width: auto;
}
.footer-wrap .right .f-menu {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.footer-wrap .right .f-menu .menu-head {
  display: block;
  margin-right: 1.2vw;
  color: var(--fc3);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
}
.footer-wrap .right .f-menu .menu-head::after {
  content: "";
  position: absolute;
  width: 176px;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(2, 149, 165, 0.431372549) 0, rgba(2, 149, 165, 0.431372549) 4px, transparent 4px, transparent 8px);
  top: 15px;
  left: 120px;
}
.footer-wrap .right .f-menu .menu-grid1, .footer-wrap .right .f-menu .menu-grid2 {
  display: grid;
  gap: 20px;
}
.footer-wrap .right .f-menu .menu-grid1 li a, .footer-wrap .right .f-menu .menu-grid2 li a {
  text-decoration: underline;
  color: #003431;
}
.footer-wrap .right .f-menu .menu-grid1 li:hover, .footer-wrap .right .f-menu .menu-grid2 li:hover {
  opacity: 0.6;
}
.footer-wrap .right .f-menu .menu-grid1 {
  grid-template-columns: 1fr 1fr;
}
.footer-wrap .right .f-menu .menu-grid1 li {
  margin-right: 2vw;
}
.footer-wrap .right .f-menu .menu-grid2 {
  grid-template-columns: 1fr;
  text-align: left;
}
.footer-wrap .right .f-menu .menu-grid2 li {
  position: relative;
}
.footer-wrap .right .f-menu .menu-grid2 li::after {
  content: url(../img/footer_link_icon.png);
  margin-left: 10px;
}

@media print, screen and (min-width: 880px) {
  .footer-wrap {
    flex-direction: row;
    width: 100%;
    align-items: flex-start;
  }
  .footer-wrap .left {
    text-align: left;
  }
  .footer-wrap .left .footer-logo {
    margin-bottom: 7px;
  }
  .footer-wrap .left .footer-logo img {
    max-width: 300px;
  }
  .footer-wrap .left .copyright {
    font-size: 14px;
  }
  .footer-wrap .right {
    width: 100%;
    height: 400px;
  }
  .footer-wrap .right .f-menu {
    flex-direction: row;
    margin-bottom: 0;
  }
  .footer-wrap .right .f-menu .menu-head {
    margin-bottom: 0px;
    min-width: 110px;
  }
  .footer-wrap .right .f-menu .menu-head::after {
    display: none;
  }
  .footer-wrap .right .f-menu .menu-grid1 {
    grid-template-columns: auto auto auto auto;
  }
  .footer-wrap .right .f-menu .menu-grid2 {
    grid-auto-flow: column;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: auto auto;
    gap: 60px 40px;
  }
}