@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap');
/* -----------------------------------------------
common
----------------------------------------------- */
:root {
  --main-color: #5CCCFF;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
body {
  color: #000;
  line-height: 1.31;
  letter-spacing: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
body a {
  text-decoration: none;
}
main {
  background: url(../img/bg.png) center / auto repeat;
}
main :is(picture, img) {
  width: 100%;
  max-width: 100%;
  display: block;
}
.inner__wrap {
  margin-inline: auto;
}

@media (max-width: 786px) {
  .pc__only {
    display: none;
  }
  body {
    font-size: 14px;
  }
  main {
    padding-bottom: 40px;
  }
  .inner__wrap {
    width: 92%;
  }
}

@media (min-width: 787px) {
  .sp__only {
    display: none;
  }
  body {
    font-size: 16px;
  }
  main {
    padding-bottom: 78px;
  }
  .inner__wrap {
    width: 100%;
    max-width: calc(1050px + 40px);
    padding: 0 20px;
  }
}

@media (any-hover: hover) {
  main a,
  main button {
    transition: all .3s;
  }
}

/* -----------------------------------------------
mv__wrap
----------------------------------------------- */
.mv__wrap {
  position: relative;
}
.mv__title {
  position: absolute;
}

@media (max-width: 786px) {
  .mv__wrap {
    margin-bottom: 8vw;
    padding-bottom: 22.67vw;
  }
  .mv__title {
    width: 81.6vw;
    top: 14.93vw;
    left: 50%;
    translate: -50% 0;
  }
}

@media (min-width: 787px) {
  .mv__wrap {
    margin-bottom: 4.92vw;
  }
  .mv__title {
    width: 29.14vw;
    top: 1.56vw;
    left: 3.83vw;
  }
}

/* -----------------------------------------------
breadcrumb
----------------------------------------------- */
.breadcrumb {
  margin-inline: auto;
  position: relative;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
}
.breadcrumb ol a span {
  text-decoration: underline;
}
.breadcrumb ol li:not(:last-child) > *::after {
  content: '　＞　 ';
}

@media (max-width: 786px) {
  .breadcrumb {
    margin-bottom: 50px;
    width: 92%;
    font-size: 10px;
  }
}

@media (min-width: 787px) {
  .breadcrumb {
    margin-bottom: 50px;
    max-width: 1134px;
    padding: 0 20px;
    font-size: 12px;
  }
}

/* -----------------------------------------------
link__list__wrap
----------------------------------------------- */
.link__list__wrap {
  position: relative;
}
.link__list {
  display: grid;
  border-bottom: 1px solid #000;
}
.link__list a {
  border: 3px solid var(--main-color);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
.link__list a::before {
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.link__list a::after {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.link__list h2 {
  font-weight: bold;
}
.link__list .tag__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
}
.link__list .tag__wrap::before {
  content: '';
  aspect-ratio: 1/1;
  background-color: var(--main-color);
  border-radius: 50%;
  position: absolute;
}
.link__list .tag__wrap::after {
  content: '';
  aspect-ratio: 19/10;
  background: url(../img/arrow.svg) center / contain no-repeat;
  position: absolute;
}
.link__list .tag__wrap span {
  border: 1px solid #000;
}
.link__return a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #000000;
  border-radius: 50vh;
  margin-inline: auto;
  font-weight: bold;
}

@media (max-width: 786px) {
  .link__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 8.31%;
    padding: 0 10px 43px;
    margin-bottom: 24px;
  }
  .link__list a {
    padding-bottom: 8px;
  }
  .link__list a::after {
    rotate: -6deg;
  }
  .link__list .link__img {
    margin-bottom: 6px;
  }
  .link__list h2 {
    font-size: 13px;
    line-height: 1.31;
    min-height: 3.93em;
    margin: 0 7px 9px;
  }
  .link__list .tag__wrap {
    gap: 5px;
    margin-inline: 7px;
    padding-right: 40px;
  }
  .link__list .tag__wrap::before {
    width: 18px;
    bottom: 0;
    right: 0;
  }
  .link__list .tag__wrap::after {
    width: 10px;
    bottom: 7px;
    right: 5px;
  }
  .link__list .tag__wrap span {
    font-size: 10px;
    border-radius: 3px;
    padding: 0 4px;
  }
  .link__return a {
    width: 132px;
    height: 26px;
    font-size: 15px;
  }
}

@media (min-width: 787px) {
  .link__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 7.08%;
    padding: 0 6px 50px;
    margin-bottom: 35px;
  }
  .link__list a {
    padding-bottom: 26px;
  }
  .link__list a::after {
    rotate: -6deg;
  }
  .link__list .link__img {
    margin-bottom: 8px;
  }
  .link__list h2 {
    font-size: 19px;
    line-height: 1.31;
    min-height: 3.93em;
    margin: 0 15px 24px;
  }
  .link__list .tag__wrap {
    gap: 5px;
    margin-inline: 15px;
    padding-right: 40px;
  }
  .link__list .tag__wrap::before {
    width: 36px;
    top: 50%;
    right: 0;
    translate: 0 -50%;
  }
  .link__list .tag__wrap::after {
    width: 19px;
    top: 50%;
    right: 8px;
    translate: 0 -50%;
  }
  .link__list .tag__wrap span {
    font-size: 10px;
    border-radius: 3px;
    padding: 1px 8px;
  }
  .link__return a {
    width: 183px;
    height: 34px;
    font-size: 18px;
  }
}

@media (any-hover: hover) {
  .link__list a:hover {
    opacity: .7;
  }
  .link__return a:hover {
    opacity: .5;
  }
}

#group_footer {
  margin-top: 0 !important;
}