@charset "UTF-8";
/*g-mixin*/
/*f-リセット*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  outline: none;
}
a:hover {
  outline: none;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

input, textarea, select, option, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pc-menu__wrap {
  display: flex;
  position: relative;
  z-index: 9999;
  height: 100%;
  width: 100%;
}

.header {
  max-width: 1260px;
  width: calc(100% - 318px);
  position: fixed;
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  .header {
    max-width: 1300px;
    width: calc(100% - 230px);
  }
}
@media screen and (max-width: 1200px) {
  .header {
    width: 100%;
  }
}
.header__wrap {
  position: absolute;
  width: 100%;
  height: 64px;
  padding-left: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FAF9F8;
}
@media screen and (min-width: 769px) {
  .header__wrap {
    height: 70px;
    padding-left: 40px;
  }
}
.header__wrap .header__menu-btn {
  position: relative;
  width: 64px;
  height: 64px;
  background: #FAF9F8;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .header__wrap .header__menu-btn {
    display: none;
  }
}
.header__wrap .header__menu-btn span {
  display: block;
  position: absolute;
  top: 50%;
  left: 40%;
  width: 16px;
  height: 2px;
  border-radius: 10px;
  background: #000;
  transition: 0.3s;
}
.header__wrap .header__menu-btn span::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 10px;
  background: #000;
  position: absolute;
  top: -8px;
  transition: 0.3s;
}
.header__wrap .header__menu-btn span::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 10px;
  background: #000;
  position: absolute;
  top: 8px;
  transition: 0.3s;
}
.header__wrap .header__menu-btn.active span {
  background: transparent;
}
.header__wrap .header__menu-btn.active span::before {
  transform: rotate(-45deg);
  top: 50%;
}
.header__wrap .header__menu-btn.active span::after {
  transform: rotate(45deg);
  top: 50%;
}
.header__raku_logo a {
  display: block;
}
.header__raku_logo img {
  height: 48px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .header__raku_logo img {
    height: 30px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  .header__raku_logo img {
    height: 30px;
  }
}
@media screen and (min-width: 1530px) {
  .header__raku_logo img {
    height: 35px;
  }
}

.nav_menu {
  display: none;
  padding-top: 70px;
}
@media screen and (max-width: 1200px) {
  .nav_menu {
    padding-top: 64px;
    display: none;
    height: 100%;
    width: 100%;
    background: #FAF9F8;
    position: fixed;
    overflow-y: scroll;
    z-index: 9000;
    margin-bottom: 24px;
    opacity: 0;
    transition: all 0.3s allow-discrete;
  }
  .nav_menu.active {
    display: block;
    opacity: 1;
  }
  @starting-style {
    .nav_menu.active {
      opacity: 0;
    }
  }
}
.nav_menu .nav_ttl {
  font-weight: bold;
}
.nav_menu__wrap {
  padding: 24px 24px;
}
.nav_menu__wrap .nav_menu__list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 12px;
  justify-content: space-between;
}
.nav_menu__wrap .nav_menu__list-li {
  width: 50%;
}
.nav_menu__wrap .nav_menu__list-li:nth-of-type(even) {
  padding-left: 40px;
}
.nav_menu__wrap .nav_menu__list-li .nav_menu__list--link {
  font-size: 1.6rem;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.nav_menu__wrap .nav_menu__list-li .nav_menu__list--link span {
  font-size: 1.2rem;
  color: #727272;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .nav_menu__wrap .nav_menu__list-li .nav_menu__list--link:hover {
    transition: 0.3s;
    color: #009B37;
  }
  .nav_menu__wrap .nav_menu__list-li .nav_menu__list--link:hover span {
    transition: 0.3s;
    color: #009B37;
  }
}
.nav_menu__wrap .nav_sns__wrap {
  padding: 24px 0;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.nav_menu__wrap .nav_sns__wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border: 1px solid #ccc;
  top: 0;
  right: 0;
}
.nav_menu__wrap .nav_sns__wrap .nav_sns__line {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.nav_menu__wrap .nav_sns__wrap .nav_sns__line--logo {
  max-width: 95px;
  width: 100%;
  height: auto;
  padding-bottom: 4px;
}
.nav_menu__wrap .nav_sns__wrap .nav_sns__line p {
  font-weight: 500;
}
.nav_menu__wrap .nav_sns__wrap .nav_sns__line--link {
  display: block;
  margin-top: 16px;
}
.nav_menu__wrap .nav_sns__wrap .nav_sns__line--link img {
  width: 100%;
  max-width: 40px;
  height: auto;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .nav_menu__wrap .nav_sns__wrap .nav_sns__line--link:hover img {
    transition: 0.3s;
    opacity: 0.8;
  }
}
.nav_menu__wrap .nav_sns__wrap .nav_sns__list {
  display: flex;
  justify-content: center;
  background: #009B37;
  padding: 24px 20px;
  max-width: 280px;
  width: 100%;
}
.nav_menu__wrap .nav_sns__wrap .nav_sns__list-li {
  padding-right: 32px;
}
.nav_menu__wrap .nav_sns__wrap .nav_sns__list-li:last-child {
  padding-right: 0;
}
.nav_menu__wrap .nav_sns__wrap .nav_sns__list-li .nav_sns__list--link {
  display: block;
}
.nav_menu__wrap .nav_sns__wrap .nav_sns__list-li .nav_sns__list--link img {
  width: auto;
  height: 100%;
  max-height: 32px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .nav_menu__wrap .nav_sns__wrap .nav_sns__list-li .nav_sns__list--link:hover img {
    transition: 0.3s;
    opacity: 0.8;
  }
}
.nav_menu__wrap .nav_banner__wrap {
  padding: 24px 0;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.nav_menu__wrap .nav_banner__wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border: 1px solid #ccc;
  top: 0;
  right: 0;
}
.nav_menu__wrap .nav_banner__wrap a {
  margin: 0 24px;
  display: block;
  margin-bottom: 16px;
}
.nav_menu__wrap .nav_banner__wrap a img {
  transition: 0.3s;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .nav_menu__wrap .nav_banner__wrap a:hover img {
    opacity: 0.8;
  }
}

.footer__banner {
  max-width: 1260px;
  padding: 0 24px;
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  .footer__banner {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1200px) {
  .footer__banner {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .footer__banner {
    padding: 40px 40px 0;
  }
}
.footer__banner--list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer__banner--list-li {
  padding-bottom: 12px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .footer__banner--list-li {
    padding-bottom: 16px;
    width: calc(50% - 16px);
  }
}
.footer__banner--list-li a {
  display: block;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.footer__banner--list-li a img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
  .footer__banner--list-li a:hover {
    opacity: 0.8;
  }
}
.footer__banner--list-li:first-child {
  width: 100%;
  max-width: 100%;
}
.footer__banner--list-li:first-child a img {
  width: 100%;
  height: auto;
}
.footer__banner--list .footer__banner--sns-con {
  background: #009B37;
  max-width: 100%;
  min-height: 101px;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 769px) {
  .footer__banner--list .footer__banner--sns-con {
    max-width: 580px;
    width: 100%;
    min-height: 180px;
  }
}
.footer__banner--list .footer__banner--sns-con p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  padding-bottom: 18px;
}
@media screen and (min-width: 769px) {
  .footer__banner--list .footer__banner--sns-con p {
    font-size: 2.4rem;
    padding-bottom: 24px;
  }
}
.footer__banner--list .footer__banner--sns-con .footer__banner--sns-list {
  display: flex;
  padding: 0 8px;
}
.footer__banner--list .footer__banner--sns-con .footer__banner--sns-list a {
  display: block;
  margin-right: 40px;
  box-shadow: none;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .footer__banner--list .footer__banner--sns-con .footer__banner--sns-list a {
    margin-right: 50px;
  }
  .footer__banner--list .footer__banner--sns-con .footer__banner--sns-list a:hover {
    opacity: 0.8;
  }
}
.footer__banner--list .footer__banner--sns-con .footer__banner--sns-list a:last-child {
  margin-right: 0;
}
.footer__banner--list .footer__banner--sns-con .footer__banner--sns-list a img {
  max-height: 32px;
  width: auto;
}
@media screen and (min-width: 769px) {
  .footer__banner--list .footer__banner--sns-con .footer__banner--sns-list a img {
    max-height: 50px;
  }
}

.footer__group {
  margin-top: 28px;
  max-width: 1260px;
  padding: 40px 24px;
  background: #FAF9F8;
}
.footer__group .c-h2__ttl {
  padding: 0;
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  .footer__group {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1200px) {
  .footer__group {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .footer__group {
    margin-top: 64px;
    padding: 60px 40px;
  }
}
.footer__group .group__accordion--toggle {
  width: 36px;
  height: 36px;
  background: #009B37;
  position: relative;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.footer__group .group__accordion--toggle::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 16px;
  height: 2px;
}
.footer__group .group__accordion--toggle::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 2px;
  height: 16px;
}
.footer__group .footer__group--accordion.is-open .group__accordion--toggle {
  transform: rotate(90deg);
}
.footer__group .footer__group--accordion.is-open .group__accordion--toggle::before {
  opacity: 0;
}
.footer__group .footer__group--accordion.is-open .footer__group--wrap {
  height: 100%;
}
.footer__group .footer__group--accordion .footer__group--link {
  padding-top: 24px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .footer__group .footer__group--accordion .footer__group--link {
    padding-top: 40px;
  }
}
.footer__group .footer__group--accordion .footer__group--link a {
  margin-right: 24px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #009B37;
  display: block;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .footer__group .footer__group--accordion .footer__group--link a {
    font-size: 2.4rem;
  }
  .footer__group .footer__group--accordion .footer__group--link a:hover {
    opacity: 0.8;
  }
}
.footer__group .footer__group--accordion .footer__group--wrap {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 0;
}
@media screen and (min-width: 769px) {
  .footer__group .footer__group--accordion .footer__group--wrap {
    flex-direction: row;
  }
}
.footer__group .footer__group--accordion .footer__group--wrap .footer__group--con {
  padding-top: 24px;
  padding-right: 0;
}
.footer__group .footer__group--accordion .footer__group--wrap .footer__group--con:last-child {
  padding-right: 0;
}
@media screen and (max-width: 1200px) {
  .footer__group .footer__group--accordion .footer__group--wrap .footer__group--con {
    padding-right: 80px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  .footer__group .footer__group--accordion .footer__group--wrap .footer__group--con {
    padding-right: 60px;
  }
}
@media screen and (min-width: 1530px) {
  .footer__group .footer__group--accordion .footer__group--wrap .footer__group--con {
    padding-top: 40px;
    padding-right: 140px;
  }
}
.footer__group .footer__group--accordion .footer__group--wrap .footer__group--con div:nth-of-type(2) {
  padding-top: 24px;
}
@media screen and (min-width: 769px) {
  .footer__group .footer__group--accordion .footer__group--wrap .footer__group--con div:nth-of-type(2) {
    padding-top: 40px;
  }
}
.footer__group .footer__group--accordion .footer__group--wrap .footer__group--con .footer__group--list-li {
  padding-bottom: 4px;
}
.footer__group .footer__group--accordion .footer__group--wrap .footer__group--con .footer__group--list-li a {
  display: block;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .footer__group .footer__group--accordion .footer__group--wrap .footer__group--con .footer__group--list-li a:hover {
    color: #009B37;
  }
}
.footer__group .footer__group--accordion .footer__group--wrap .footer__group--con .footer__group--ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: #009B37;
  padding-bottom: 8px;
}
@media screen and (min-width: 769px) {
  .footer__group .footer__group--accordion .footer__group--wrap .footer__group--con .footer__group--ttl {
    font-size: 2.4rem;
  }
}

.footer__wrap {
  color: #fff;
  max-width: 1260px;
  padding: 40px 24px;
  background: #009B37;
}
.footer__wrap .c-h2__ttl {
  padding: 0;
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  .footer__wrap {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1200px) {
  .footer__wrap {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .footer__wrap {
    padding: 80px 40px 24px;
  }
}
.footer__wrap .footer__logo {
  margin-bottom: 40px;
}
.footer__wrap .footer__logo a {
  display: block;
}
.footer__wrap .footer__logo a img {
  max-width: 202px;
  width: 100%;
  height: auto;
}
.footer__wrap .footer__menu {
  display: flex;
  flex-direction: column;
  padding-bottom: 64px;
}
@media screen and (min-width: 769px) {
  .footer__wrap .footer__menu {
    flex-direction: row;
    padding-bottom: 80px;
  }
}
.footer__wrap .footer__menu--list {
  padding-right: 0;
}
.footer__wrap .footer__menu--list:nth-child(n+2) {
  margin-top: 24px;
}
@media screen and (min-width: 769px) {
  .footer__wrap .footer__menu--list {
    padding-right: 100px;
  }
  .footer__wrap .footer__menu--list:nth-child(n+2) {
    margin-top: 0;
  }
  .footer__wrap .footer__menu--list:last-child {
    padding-right: 0;
  }
}
.footer__wrap .footer__menu--list-li {
  padding-bottom: 8px;
}
.footer__wrap .footer__menu--list-li a {
  display: block;
}
.footer__wrap .footer__menu--list-li a span {
  font-size: 1.2rem;
  padding-left: 8px;
}
@media screen and (min-width: 769px) {
  .footer__wrap .footer__menu--list-li a span {
    font-size: 1.4rem;
    padding-left: 16px;
  }
}
@media screen and (min-width: 769px) {
  .footer__wrap .footer__menu--list-li a:hover {
    transition: 0.3s;
    opacity: 0.8;
  }
}
.footer__wrap .footer__copy {
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .footer__wrap .footer__copy {
    font-size: 1.4rem;
  }
}

body {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "游ゴシック", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  body {
    width: 100%;
    margin-inline: auto;
    max-width: 1530px;
  }
}
@media screen and (min-width: 1530px) {
  body {
    padding: 0 24px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1530px) and (min-width: 769px) {
  body {
    max-width: 1578px;
    width: 100%;
  }
}

main {
  max-width: 1260px;
  flex: 1;
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  main {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1200px) {
  main {
    width: 100%;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.sec__inner {
  max-width: 1260px;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .sec__inner {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  .sec__inner {
    max-width: 1300px;
  }
}

.layout {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .layout {
    flex-direction: row;
  }
}

.main__container {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
}

#page_top {
  display: none;
  position: fixed;
  bottom: 30px;
  background: green;
  z-index: 40;
  transition: 0.3s;
}
@media screen and (min-width: 1200px) {
  #page_top {
    display: block;
  }
}
#page_top a {
  display: block;
  width: 65px;
  height: 65px;
  background: #009B37;
  position: relative;
  transition: ease-in-out 0.5s;
}
@media screen and (hover: hover) and (min-width: 769px) {
  #page_top a:hover::before {
    top: 42%;
  }
}
#page_top a::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 43%;
  right: 34%;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #page_top a::before {
    width: 20px;
    height: 20px;
    top: 44%;
    right: 36%;
  }
}

#page_top_sp {
  display: block;
  position: fixed;
  right: 8px;
  bottom: 30px;
  background: green;
  z-index: 40;
  transition: 0.3s;
}
@media screen and (min-width: 1200px) {
  #page_top_sp {
    display: none;
  }
}
#page_top_sp a {
  display: block;
  width: 50px;
  height: 50px;
  background: #009B37;
  position: relative;
  transition: ease-in-out 0.5s;
}
@media screen and (hover: hover) and (min-width: 769px) {
  #page_top_sp a:hover::before {
    top: 42%;
  }
}
#page_top_sp a::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 43%;
  right: 34%;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #page_top_sp a::before {
    width: 20px;
    height: 20px;
    top: 44%;
    right: 32%;
  }
}

.br_sp {
  display: block;
}

@media screen and (min-width: 769px) {
  .br_sp {
    display: none;
  }
}
.sidebar {
  width: 100%;
  max-width: 270px;
  position: relative;
  right: 0;
  background: #FAF9F8;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  .sidebar {
    max-width: 230px;
  }
}
@media screen and (max-width: 1200px) {
  .sidebar {
    display: none;
  }
}
.sidebar .side_ttl {
  font-weight: bold;
}
.sidebar__wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  .sidebar__wrap {
    max-width: 230px;
  }
}
.sidebar__wrap .side_menu__list {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #FAF9F8;
  padding: 24px;
  z-index: 10;
}
.sidebar__wrap .side_menu__list::before {
  content: "";
  position: absolute;
  width: calc(100% - 48px);
  height: 1px;
  border: 1px solid #ccc;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sidebar__wrap .side_menu__list-li {
  margin-bottom: 24px;
}
.sidebar__wrap .side_menu__list-li:last-child {
  margin-bottom: 0;
}
.sidebar__wrap .side_menu__list--link {
  font-size: 1.8rem;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  display: flex;
  transition: 0.3s;
  flex-direction: column;
  align-items: center;
}
.sidebar__wrap .side_menu__list--link span {
  padding-top: 8px;
  font-size: 1.2rem;
  color: #727272;
  transition: 0.3s;
  max-height: 2rem;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .sidebar__wrap .side_menu__list--link:hover {
    color: #009B37;
  }
  .sidebar__wrap .side_menu__list--link:hover span {
    color: #009B37;
  }
}
.sidebar__wrap .side_sns__wrap {
  padding: 24px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sidebar__wrap .side_sns__wrap .side_sns__line {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sidebar__wrap .side_sns__wrap .side_sns__line--logo {
  max-width: 95px;
  width: 100%;
  height: auto;
  padding-bottom: 4px;
}
.sidebar__wrap .side_sns__wrap .side_sns__line p {
  font-weight: 500;
}
.sidebar__wrap .side_sns__wrap .side_sns__line--link {
  display: block;
  margin-top: 16px;
}
.sidebar__wrap .side_sns__wrap .side_sns__line--link img {
  width: 100%;
  max-width: 40px;
  height: auto;
}
@media screen and (min-width: 769px) {
  .sidebar__wrap .side_sns__wrap .side_sns__line--link:hover img {
    transition: 0.3s;
    opacity: 0.8;
  }
}
.sidebar__wrap .side_sns__wrap .side_sns__list {
  display: flex;
  justify-content: center;
  background: #009B37;
  padding: 24px 15px;
  width: 100%;
}
.sidebar__wrap .side_sns__wrap .side_sns__list-li {
  padding-right: 20px;
}
.sidebar__wrap .side_sns__wrap .side_sns__list-li:last-child {
  padding-right: 0;
}
.sidebar__wrap .side_sns__wrap .side_sns__list-li .side_sns__list--link {
  display: block;
}
.sidebar__wrap .side_sns__wrap .side_sns__list-li .side_sns__list--link img {
  width: auto;
  height: 100%;
  max-height: 26px;
}
@media screen and (min-width: 769px) {
  .sidebar__wrap .side_sns__wrap .side_sns__list-li .side_sns__list--link:hover img {
    transition: 0.3s;
    opacity: 0.8;
  }
}
.sidebar__wrap .side_pickup__wrap {
  padding: 24px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sidebar__wrap .side_pickup__wrap::before {
  content: "";
  position: absolute;
  width: calc(100% - 48px);
  height: 1px;
  border: 1px solid #ccc;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sidebar__wrap .side_pickup__wrap .side_ttl {
  padding-bottom: 16px;
}
.sidebar__wrap .side_pickup__wrap a {
  display: block;
}
.sidebar__wrap .side_pickup__wrap a img {
  width: 100%;
  transition: 0.3s;
}
.sidebar__wrap .side_pickup__wrap a .ttl {
  transition: 0.3s;
  padding-top: 8px;
  font-weight: bold;
}
.sidebar__wrap .side_pickup__wrap a .date {
  padding-top: 16px;
  color: #727272;
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  .sidebar__wrap .side_pickup__wrap a:hover img {
    opacity: 0.8;
  }
  .sidebar__wrap .side_pickup__wrap a:hover .ttl {
    color: #009B37;
  }
}
.sidebar__wrap .side_magazine__wrap {
  padding: 24px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sidebar__wrap .side_magazine__wrap::before {
  content: "";
  position: absolute;
  width: calc(100% - 48px);
  height: 1px;
  border: 1px solid #ccc;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sidebar__wrap .side_magazine__wrap .side_ttl {
  padding-bottom: 16px;
}
.sidebar__wrap .side_magazine__wrap .side_magazine__link {
  display: block;
}
.sidebar__wrap .side_magazine__wrap .side_magazine__link .side_magazine__con {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sidebar__wrap .side_magazine__wrap .side_magazine__link .side_magazine__con img {
  width: 100%;
  max-width: 160px;
  height: auto;
  padding-bottom: 14px;
}
.sidebar__wrap .side_magazine__wrap .side_magazine__link .side_magazine__con .side_magazine__link--ttl {
  font-weight: bold;
  text-align: center;
  padding-bottom: 8px;
}
@media screen and (min-width: 769px) {
  .sidebar__wrap .side_magazine__wrap .side_magazine__link .side_magazine__con img {
    transition: 0.3s;
  }
  .sidebar__wrap .side_magazine__wrap .side_magazine__link .side_magazine__con p {
    transition: 0.3s;
  }
  .sidebar__wrap .side_magazine__wrap .side_magazine__link:hover .side_magazine__con img {
    opacity: 0.8;
  }
  .sidebar__wrap .side_magazine__wrap .side_magazine__link:hover .side_magazine__con p {
    color: #009B37;
  }
}
.sidebar__wrap .side_banner__wrap {
  padding: 24px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sidebar__wrap .side_banner__wrap::before {
  content: "";
  position: absolute;
  width: calc(100% - 48px);
  height: 1px;
  border: 1px solid #ccc;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sidebar__wrap .side_banner__wrap a {
  display: block;
  margin-bottom: 16px;
}
.sidebar__wrap .side_banner__wrap a img {
  transition: 0.3s;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 769px) {
  .sidebar__wrap .side_banner__wrap a:hover img {
    opacity: 0.8;
  }
}
.sidebar.scrolled .side_menu__list--link span {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
}

.hero {
  position: relative;
  max-width: 1260px;
  padding-top: 64px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .hero {
    padding-top: 70px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  .hero {
    max-width: 1300px;
  }
}
.hero__img--con img {
  width: 100%;
  -webkit-user-drag: none;
}
@media screen and (max-width: 768px) {
  .hero__img--con img {
    display: flex;
    justify-content: center;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 520px;
  }
}
.hero__txt {
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  line-height: normal;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .hero__txt {
    font-size: 5.6rem;
    padding: 40px;
    line-height: 84px;
  }
}

.news, .wellness, .medical, .nursing, .children, .community {
  padding-bottom: 60px;
}
@media screen and (min-width: 769px) {
  .news, .wellness, .medical, .nursing, .children, .community {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .news .c-btn, .wellness .c-btn, .medical .c-btn, .nursing .c-btn, .children .c-btn, .community .c-btn {
    padding-top: 40px;
  }
}

.society {
  background: #F6F7F6;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .society {
    margin-bottom: 0;
  }
}
.society .c-h2__ttl {
  padding: 0 0 16px 0;
}
@media screen and (min-width: 769px) {
  .society .c-h2__ttl {
    padding: 0 0 24px 0;
  }
}
.society__wrap {
  padding: 40px 24px;
}
@media screen and (min-width: 769px) {
  .society__wrap {
    padding: 40px 40px 80px;
  }
}
.society .society__ttl {
  font-size: 2rem;
  background: linear-gradient(180deg, #019DE4 0%, #BFE7FF 100%);
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .society .society__ttl {
    font-size: 6.4rem;
  }
}
.society .society__ttl span {
  font-size: 2.4rem;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  color: #575757;
  padding-top: 4px;
}
@media screen and (min-width: 769px) {
  .society .society__ttl span {
    font-size: 3.2rem;
    padding-top: 16px;
  }
}
.society__humans {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 769px) {
  .society__humans {
    margin-top: 80px;
  }
}
.society__humans .humans__wrap {
  padding: 24px 12px 16px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .society__humans .humans__wrap {
    padding: 40px;
    flex-direction: row;
  }
}
.society__humans .humans__wrap--con {
  max-width: 769px;
  padding-right: 0;
}
@media screen and (min-width: 769px) {
  .society__humans .humans__wrap--con {
    width: calc(50% - 54px);
  }
}
.society__humans .humans__ttl h2 {
  padding: 4px 12px;
  background: #009B37;
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .society__humans .humans__ttl h2 {
    font-size: 4.8rem;
  }
}
.society__humans .humans__ttl p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #009B37;
  padding-top: 8px;
}
@media screen and (min-width: 769px) {
  .society__humans .humans__ttl p {
    font-size: 1.8rem;
    padding-top: 16px;
  }
}
.society__humans .humans__txt {
  padding-top: 16px;
  line-height: 28px;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
}
@media screen and (min-width: 769px) {
  .society__humans .humans__txt {
    padding-top: 28px;
    line-height: 35px;
  }
}
.society__humans .humans__wrap--img {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 16px;
}
@media screen and (min-width: 769px) {
  .society__humans .humans__wrap--img {
    padding-top: 0;
    align-items: flex-end;
    max-width: 564px;
    margin-left: 40px;
  }
}
.society__humans .humans__wrap--img img {
  width: 100%;
}
.society__humans .humans__wrap--img-txt {
  padding-top: 8px;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
}
@media screen and (min-width: 769px) {
  .society__humans .humans__wrap--img-txt {
    padding-top: 16px;
  }
}
.society__humans .c-btn {
  padding-bottom: 40px;
}
.society__report {
  padding-top: 40px;
}
@media screen and (min-width: 769px) {
  .society__report {
    padding-top: 80px;
  }
}
.society__report .report__ttl p {
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  padding-bottom: 4px;
}
.society__report .report__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0;
}
@media screen and (min-width: 769px) {
  .society__report .report__list {
    flex-direction: row;
    padding-bottom: 40px;
  }
}
.society__report .report__list--con {
  width: 100%;
  padding-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .society__report .report__list--con {
    width: calc(50% - 10px);
    padding-bottom: 0;
  }
}
.society__report .report__list--con a {
  display: block;
}
.society__report .report__list--con a img {
  transition: 0.3s;
  width: 100%;
  aspect-ratio: 29/17;
  -o-object-fit: cover;
     object-fit: cover;
}
.society__report .report__list--con a .ttl {
  font-weight: bold;
  padding-top: 8px;
  transition: 0.3s;
}
.society__report .report__list--con a .date {
  font-size: 1.4rem;
  color: #727272;
  padding-top: 16px;
}
@media screen and (min-width: 769px) {
  .society__report .report__list--con a:hover img {
    opacity: 0.8;
  }
  .society__report .report__list--con a:hover .ttl {
    color: #009B37;
  }
}
.society__workers {
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.8);
}
.society__workers--wrap {
  padding: 24px 12px;
}
@media screen and (min-width: 769px) {
  .society__workers--wrap {
    padding: 40px;
  }
}
.society__workers--wrap .workers__con {
  padding: 24px 0;
}
.society__workers--wrap .workers__con p {
  padding-bottom: 8px;
}
.society__workers--wrap .workers__con--wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .society__workers--wrap .workers__con--wrap {
    flex-direction: row;
  }
}
.society__workers--wrap .workers__con--wrap-img {
  width: 100%;
  padding-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .society__workers--wrap .workers__con--wrap-img {
    width: calc(50% - 10px);
    padding-bottom: 0;
  }
}
.society__workers--wrap .workers__con--wrap-img img {
  width: 100%;
  aspect-ratio: 27/16;
  -o-object-fit: cover;
     object-fit: cover;
}
.society__workers--wrap .workers__con--wrap-data {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .society__workers--wrap .workers__con--wrap-data {
    width: calc(50% - 10px);
  }
}
.society__workers--wrap .workers__con--wrap-data p {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
.society__workers--wrap .workers__con--wrap-data .workers__label {
  padding: 8px 24px;
  margin-bottom: 16px;
  font-size: 1.6rem;
  color: #fff;
  display: inline-block;
  background: #019DE4;
}
@media screen and (min-width: 769px) {
  .society__workers--wrap .workers__con--wrap-data .workers__label {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
}
.society__workers--wrap .workers__con--wrap-data .workers__assign, .society__workers--wrap .workers__con--wrap-data .workers__department, .society__workers--wrap .workers__con--wrap-data .workers__position, .society__workers--wrap .workers__con--wrap-data .workers__name {
  padding-bottom: 8px;
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .society__workers--wrap .workers__con--wrap-data .workers__assign, .society__workers--wrap .workers__con--wrap-data .workers__department, .society__workers--wrap .workers__con--wrap-data .workers__position, .society__workers--wrap .workers__con--wrap-data .workers__name {
    font-size: 1.8rem;
  }
}
.society__workers--wrap .workers__con--wrap-data .workers__assign:last-child, .society__workers--wrap .workers__con--wrap-data .workers__department:last-child, .society__workers--wrap .workers__con--wrap-data .workers__position:last-child, .society__workers--wrap .workers__con--wrap-data .workers__name:last-child {
  padding-bottom: 0;
}
.society__workers--wrap .workers__con--wrap-data .workers__detail {
  padding-top: 16px;
}
@media screen and (min-width: 769px) {
  .society__workers--wrap .workers__con--wrap-data .workers__detail {
    padding-top: 24px;
  }
}
.society__workers--wrap .workers__banner {
  margin-top: 40px;
  position: relative;
}
.society__workers--wrap .workers__banner a {
  display: block;
}
.society__workers--wrap .workers__banner a::before {
  content: "";
  position: absolute;
  top: 89%;
  right: 4%;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .society__workers--wrap .workers__banner a::before {
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
  }
}
@media screen and (min-width: 769px) {
  .society__workers--wrap .workers__banner a:hover::before {
    background: #019DE4;
  }
}
.society__workers--wrap .workers__banner a::after {
  content: "";
  display: inline-block;
  background-image: url("../images/common/arrow_blue_bold.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 10px;
  position: absolute;
  top: 90.5%;
  right: 5%;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .society__workers--wrap .workers__banner a::after {
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    right: 5.5%;
  }
}
@media screen and (min-width: 769px) {
  .society__workers--wrap .workers__banner a:hover::after {
    background-image: url("../images/common/arrow_bold.svg");
  }
}
.society__workers--wrap .workers__banner a .workers__banner--img {
  position: relative;
}
.society__workers--wrap .workers__banner a .workers__banner--img img {
  border-radius: 8px;
  transition: 0.3s;
  width: 100%;
}
.society__workers--wrap .workers__banner a .workers__banner--img .workers__banner--txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 100%;
}
.society__workers--wrap .workers__banner a .workers__banner--img .workers__banner--txt-detail {
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  .society__workers--wrap .workers__banner a .workers__banner--img .workers__banner--txt-detail {
    font-size: 1.8rem;
  }
}
.society__workers--wrap .workers__banner a .workers__banner--img .workers__banner--txt-ttl {
  font-weight: bold;
  padding-top: 8px;
  font-size: 2rem;
}
@media screen and (min-width: 769px) {
  .society__workers--wrap .workers__banner a .workers__banner--img .workers__banner--txt-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 769px) {
  .society__workers--wrap .workers__banner a:hover .workers__banner--img img {
    opacity: 0.8;
  }
}

.list__sec--inner {
  padding: 64px 24px 80px;
}
@media screen and (min-width: 769px) {
  .list__sec--inner {
    padding: 70px 40px 80px;
  }
}

.p-list__main .c-lower__ttl {
  padding-top: 76px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-list__main .c-lower__ttl {
    padding-top: 80px;
  }
}
.p-list__main .p-workers__taglist {
  display: flex;
  flex-wrap: wrap;
  padding-top: 60px;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .p-list__main .p-workers__taglist {
    gap: 8px;
    padding-top: 28px;
  }
}
.p-list__main .p-workers__taglist--li {
  border: 1px solid #ccc;
  background: #FAF9F8;
  border-radius: 8px;
}
.p-list__main .p-workers__taglist--li.active {
  border: 1px solid #009B37;
  background: #009B37;
  color: #fff;
}
.p-list__main .p-workers__taglist--li a {
  display: block;
  padding: 4px 16px;
}
@media screen and (min-width: 769px) {
  .p-list__main .p-workers__taglist--li a {
    padding: 4px 24px;
  }
}

.p-societylist {
  padding: 64px 24px 80px;
}
@media screen and (min-width: 769px) {
  .p-societylist {
    padding: 70px 40px 80px;
  }
}
.p-societylist__ttl {
  padding-top: 60px;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 3.2rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .p-societylist__ttl {
    padding-top: 80px;
    font-size: 4.8rem;
  }
}
.p-societylist__ttl span {
  font-size: 1.6rem;
  padding-bottom: 4px;
}
@media screen and (min-width: 769px) {
  .p-societylist__ttl span {
    font-size: 2rem;
    padding-bottom: 8px;
  }
}

.article__sec--inner {
  padding: 64px 24px 80px;
}
@media screen and (min-width: 769px) {
  .article__sec--inner {
    padding: 70px 40px 80px;
  }
}

.p-article__main ul {
  padding-top: 4px;
  padding-left: 1.2em;
  list-style-type: disc;
}
@media screen and (min-width: 769px) {
  .p-article__main ul {
    padding-top: 8px;
  }
}
.p-article__main ol {
  padding-top: 4px;
  padding-left: 1.2em;
}
@media screen and (min-width: 769px) {
  .p-article__main ol {
    padding-top: 8px;
  }
}
.p-article__main ol li {
  list-style-type: decimal;
}
.p-article__main table {
  margin-top: 4px;
  display: block;
  overflow-x: auto;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .p-article__main table {
    margin-top: 8px;
  }
}
.p-article__main table tr th, .p-article__main table tr td {
  border: solid 1px #ccc;
  padding: 4px 16px;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .p-article__main table tr th, .p-article__main table tr td {
    padding: 8px 24px;
  }
}
.p-article__main table tr th {
  background: #FAF9F8;
}
.p-article__main blockquote {
  margin-top: 4px;
  position: relative;
  padding: 3em 1.5em 2em 1.5em;
  color: #333333;
  background-color: #FAF9F8;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .p-article__main blockquote {
    padding: 3em 2.5em 2em 3.5em;
    margin-top: 8px;
  }
}
.p-article__main blockquote::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 1.5em;
  width: 2em;
  height: 2em;
  background-image: url("../images/common/quote.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.p-article__main blockquote P {
  margin-top: 0;
}
.p-article__main blockquote cite {
  display: block;
  color: #737373;
  font-size: 0.8em;
  text-align: right;
}
.p-article__main--con {
  position: relative;
}
.p-article__main--con::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border: 2px solid #009B37;
  width: 100%;
}
.p-article__main--con .p-article__ttl {
  position: relative;
  padding-top: 60px;
  padding-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .p-article__ttl {
    padding-top: 108px;
    padding-bottom: 40px;
  }
}
.p-article__main--con .p-article__ttl .ttl {
  font-size: 2.4rem;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .p-article__ttl .ttl {
    font-size: 3.6rem;
  }
}
.p-article__main--con .p-article__ttl--wrap {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .p-article__ttl--wrap {
    flex-direction: row;
  }
}
.p-article__main--con .p-article__ttl--wrap .date {
  color: #727272;
  padding-right: 40px;
}
.p-article__main--con .p-article__ttl--wrap .label__wrap {
  display: flex;
  flex-wrap: wrap;
  padding-top: 4px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .p-article__ttl--wrap .label__wrap {
    padding-top: 0;
  }
}
.p-article__main--con .p-article__ttl--wrap .label__wrap .label {
  color: #727272;
  margin-right: 16px;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .p-article__ttl--wrap .label__wrap .label:hover {
    color: #009B37;
  }
}
.p-article__main--con .p-article__ttl::before {
  content: "";
  position: absolute;
  border: 2px solid #009B37;
  width: 100%;
  bottom: 0;
  right: 0;
}
.p-article__main--con .txt {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  font-size: 1.6rem;
  line-height: 24px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .txt {
    font-size: 1.8rem;
    line-height: 30px;
  }
}
.p-article__main--con .txt a {
  text-decoration: underline;
  color: #009B37;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .txt a:hover {
    opacity: 0.8;
  }
}
.p-article__main--con .txt p {
  padding-top: 4px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .txt p {
    padding-top: 8px;
  }
}
.p-article__main--con .txt h1 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: normal;
  padding-top: 4px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .txt h1 {
    font-size: 3.6rem;
    padding-top: 8px;
  }
}
.p-article__main--con .txt h2 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: normal;
  padding-top: 4px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .txt h2 {
    font-size: 3.2rem;
    padding-top: 8px;
  }
}
.p-article__main--con .txt h3 {
  font-size: 2rem;
  font-weight: bold;
  line-height: normal;
  padding-top: 4px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .txt h3 {
    font-size: 2.4rem;
    padding-top: 8px;
  }
}
.p-article__main--con .txt h4 {
  font-size: 1.8rem;
  font-weight: bold;
  padding-top: 4px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .txt h4 {
    font-size: 2rem;
    padding-top: 8px;
  }
}
.p-article__main--con .txt h5 {
  font-size: 1.6rem;
  font-weight: bold;
  padding-top: 4px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .txt h5 {
    font-size: 1.8rem;
    padding-top: 8px;
  }
}
.p-article__main--con .txt h6 {
  font-size: 1.4rem;
  font-weight: bold;
  padding-top: 4px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .txt h6 {
    font-size: 1.6rem;
    padding-top: 8px;
  }
}
.p-article__main--con .ttl {
  font-weight: bold;
}
.p-article__main--con .ttl h3 {
  font-size: 2rem;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .ttl h3 {
    font-size: 2.4rem;
  }
}
.p-article__main--con .ttl h4 {
  font-size: 1.8rem;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .ttl h4 {
    font-size: 2rem;
  }
}
.p-article__main--con .ttl h5 {
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .ttl h5 {
    font-size: 1.8rem;
  }
}
.p-article__main--con .caption {
  color: #727272;
  padding-top: 4px;
  font-size: 1.2rem;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .caption {
    font-size: 1.4rem;
  }
}
.p-article__main--con .post {
  padding: 24px 12px 0;
}
.p-article__main--con .post:last-child {
  padding-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .post:last-child {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 769px) {
  .p-article__main--con .post {
    padding: 40px 60px 0;
  }
}
.p-article__main--con .mv_area {
  padding-top: 24px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .mv_area {
    padding-top: 40px;
  }
}
.p-article__main--con .mv_area .img img {
  width: 100%;
}
.p-article__main--con .mv_area .txt {
  padding: 16px 12px 0;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .mv_area .txt {
    padding: 24px 60px 0;
  }
}
.p-article__main--con .workers__mv_area {
  padding-top: 24px;
  padding-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .workers__mv_area {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-article__main--con .workers__mv_area--wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .workers__mv_area--wrap {
    flex-direction: row;
  }
}
.p-article__main--con .workers__mv_area--wrap-img {
  width: 100%;
  padding-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .workers__mv_area--wrap-img {
    width: calc(50% - 12px);
    padding-bottom: 0;
  }
}
.p-article__main--con .workers__mv_area--wrap-img img {
  width: 100%;
  aspect-ratio: 27/16;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-article__main--con .workers__mv_area--wrap-data {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .workers__mv_area--wrap-data {
    width: calc(50% - 12px);
  }
}
.p-article__main--con .workers__mv_area--wrap-data p {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
.p-article__main--con .workers__mv_area--wrap-data .workers__label {
  padding: 8px 24px;
  margin-bottom: 16px;
  font-size: 1.6rem;
  color: #fff;
  display: inline-block;
  background: #019DE4;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .workers__mv_area--wrap-data .workers__label {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
}
.p-article__main--con .workers__mv_area--wrap-data .workers__assign, .p-article__main--con .workers__mv_area--wrap-data .workers__department, .p-article__main--con .workers__mv_area--wrap-data .workers__position, .p-article__main--con .workers__mv_area--wrap-data .workers__name {
  padding-bottom: 8px;
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .workers__mv_area--wrap-data .workers__assign, .p-article__main--con .workers__mv_area--wrap-data .workers__department, .p-article__main--con .workers__mv_area--wrap-data .workers__position, .p-article__main--con .workers__mv_area--wrap-data .workers__name {
    font-size: 1.8rem;
  }
}
.p-article__main--con .workers__mv_area--wrap-data .workers__assign:last-child, .p-article__main--con .workers__mv_area--wrap-data .workers__department:last-child, .p-article__main--con .workers__mv_area--wrap-data .workers__position:last-child, .p-article__main--con .workers__mv_area--wrap-data .workers__name:last-child {
  padding-bottom: 0;
}
.p-article__main--con .workers__mv_area--wrap-data .workers__detail {
  padding-top: 16px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .workers__mv_area--wrap-data .workers__detail {
    padding-top: 24px;
  }
}
.p-article__main--con .box_a .img img {
  width: 100%;
}
.p-article__main--con .box_a .txt {
  padding-top: 4px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .box_a .txt {
    padding-top: 8px;
  }
}
.p-article__main--con .box_a .txt:nth-child(2) {
  padding-top: 16px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .box_a .txt:nth-child(2) {
    padding-top: 24px;
  }
}
.p-article__main--con .box_b {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .box_b {
    flex-direction: row;
  }
}
.p-article__main--con .box_b .img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .box_b .img {
    width: calc(50% - 12px);
  }
}
.p-article__main--con .box_b .img img {
  width: 100%;
}
.p-article__main--con .box_b .txt_wrap {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .box_b .txt_wrap {
    width: calc(50% - 12px);
  }
}
.p-article__main--con .box_b .txt_wrap .txt:nth-child(n+2) {
  padding-top: 4px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .box_b .txt_wrap .txt:nth-child(n+2) {
    padding-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  .p-article__main--con .box_b .txt_wrap .txt {
    padding-top: 8px;
  }
}
.p-article__main--con .box_c {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .box_c {
    flex-direction: row-reverse;
  }
}
.p-article__main--con .box_c .img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .box_c .img {
    width: calc(50% - 12px);
  }
}
.p-article__main--con .box_c .img img {
  width: 100%;
}
.p-article__main--con .box_c .txt_wrap {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .box_c .txt_wrap {
    width: calc(50% - 12px);
  }
}
.p-article__main--con .box_c .txt_wrap .txt:nth-child(n+2) {
  padding-top: 4px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .box_c .txt_wrap .txt:nth-child(n+2) {
    padding-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  .p-article__main--con .box_c .txt_wrap .txt {
    padding-top: 8px;
  }
}
.p-article__main--con .photo_area .photo_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 0;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .photo_area .photo_list {
    gap: 20px;
  }
}
.p-article__main--con .photo_area .photo_list--li {
  width: 100%;
  list-style-type: none;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .photo_area .photo_list--li {
    width: calc(33.3333333333% - 14px);
  }
}
.p-article__main--con .photo_area .photo_list--li img {
  width: 100%;
  aspect-ratio: 1/1;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-article__main--con .movie_area iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.p-article__main--con .map_area iframe {
  width: 100%;
}
.p-article__main--ttl {
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .p-article__main--ttl {
    font-size: 2rem;
  }
}
.p-article__main--share {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-article__main--share-sns {
  display: flex;
}
.p-article__main--share-sns a {
  margin-right: 40px;
  display: block;
  transition: 0.3s;
}
.p-article__main--share-sns a:last-child {
  margin-right: 0;
}
@media screen and (min-width: 769px) {
  .p-article__main--share-sns a:hover {
    opacity: 0.8;
  }
}
.p-article__main--share-sns a img {
  max-height: 42px;
  height: 100%;
  width: auto;
}
.p-article__main--recommend {
  padding-top: 56px;
}
@media screen and (min-width: 769px) {
  .p-article__main--recommend {
    padding-top: 120px;
  }
}
.p-article__main--recommend .p-article__main--ttl {
  text-align: center;
}
.p-article__main--btnarea {
  padding-top: 60px;
}
@media screen and (min-width: 769px) {
  .p-article__main--btnarea {
    padding-top: 80px;
  }
}
.p-article__main--btnarea .c-btn__green,
.p-article__main--btnarea .c-btn__blue {
  padding-top: 16px;
}
@media screen and (min-width: 769px) {
  .p-article__main--btnarea .c-btn__green,
.p-article__main--btnarea .c-btn__blue {
    padding-top: 24px;
  }
}
.p-article__main--report {
  position: relative;
  padding: 96px 0 0;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .p-article__main--report {
    padding: 80px 80px 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-article__main--report {
    padding: 80px 130px 0;
  }
}
.p-article__main--report::before {
  content: "";
  top: 40px;
  right: 0;
  border: 2px solid #009B37;
  position: absolute;
  width: 100%;
}
.p-article__main--report .article__report--wrap {
  display: flex;
  justify-content: space-between;
}
.p-article__main--report .article__report--wrap .article__report--prev, .p-article__main--report .article__report--wrap .article__report--next {
  width: 50%;
}
.p-article__main--report .article__report--wrap .article__report--prev a, .p-article__main--report .article__report--wrap .article__report--next a {
  display: block;
}
.p-article__main--report .article__report--wrap .article__report--prev a img, .p-article__main--report .article__report--wrap .article__report--next a img {
  width: 100%;
  height: 100%;
  aspect-ratio: 38/25;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
  padding-top: 16px;
}
.p-article__main--report .article__report--wrap .article__report--prev a .ttl, .p-article__main--report .article__report--wrap .article__report--next a .ttl {
  font-weight: bold;
  padding-top: 8px;
  transition: 0.3s;
}
.p-article__main--report .article__report--wrap .article__report--prev a .date, .p-article__main--report .article__report--wrap .article__report--next a .date {
  color: #727272;
  font-size: 1.2rem;
  padding-top: 8px;
}
@media screen and (min-width: 769px) {
  .p-article__main--report .article__report--wrap .article__report--prev a .date, .p-article__main--report .article__report--wrap .article__report--next a .date {
    font-size: 1.4rem;
    padding-top: 16px;
  }
}
@media screen and (min-width: 769px) {
  .p-article__main--report .article__report--wrap .article__report--prev a:hover img, .p-article__main--report .article__report--wrap .article__report--next a:hover img {
    opacity: 0.8;
  }
  .p-article__main--report .article__report--wrap .article__report--prev a:hover .ttl, .p-article__main--report .article__report--wrap .article__report--next a:hover .ttl {
    color: #009B37;
  }
}
.p-article__main--report .article__report--wrap .article__report--prev {
  position: relative;
  padding-right: 10px;
}
@media screen and (min-width: 769px) {
  .p-article__main--report .article__report--wrap .article__report--prev {
    padding-right: 80px;
  }
}
.p-article__main--report .article__report--wrap .article__report--prev::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  border: 1px solid #ccc;
  top: 0;
  right: 0;
}
.p-article__main--report .article__report--wrap .article__report--prev a .article__report--prev-ttl {
  font-size: 1.4rem;
  font-weight: bold;
  padding-left: 22px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-article__main--report .article__report--wrap .article__report--prev a .article__report--prev-ttl {
    font-size: 2rem;
  }
}
.p-article__main--report .article__report--wrap .article__report--prev a .article__report--prev-ttl::before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: 0;
  width: 16px;
  height: 16px;
  transition: 0.3s;
  transform: rotateY(180deg);
  background-image: url("../images/common/arrow_green.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .p-article__main--report .article__report--wrap .article__report--prev a:hover .article__report--prev-ttl::before {
    left: -2%;
  }
}
.p-article__main--report .article__report--wrap .article__report--next {
  padding-left: 10px;
}
@media screen and (min-width: 769px) {
  .p-article__main--report .article__report--wrap .article__report--next {
    padding-left: 80px;
  }
}
.p-article__main--report .article__report--wrap .article__report--next a .article__report--next-ttl {
  font-size: 1.4rem;
  font-weight: bold;
  padding-right: 22px;
  text-align: right;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-article__main--report .article__report--wrap .article__report--next a .article__report--next-ttl {
    font-size: 2rem;
  }
}
.p-article__main--report .article__report--wrap .article__report--next a .article__report--next-ttl::before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 0;
  width: 16px;
  height: 16px;
  transition: 0.3s;
  background-image: url("../images/common/arrow_green.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .p-article__main--report .article__report--wrap .article__report--next a:hover .article__report--next-ttl::before {
    right: -2%;
  }
}

.policy__sec--inner {
  padding: 64px 24px 80px;
}
@media screen and (min-width: 769px) {
  .policy__sec--inner {
    padding: 70px 40px 80px;
  }
}

.p-policy .c-lower__ttl {
  padding-top: 76px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-policy .c-lower__ttl {
    padding-top: 80px;
  }
}
.p-policy__txt {
  padding-top: 16px;
}
.p-policy__main {
  padding-top: 60px;
  padding-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .p-policy__main {
    padding-top: 120px;
  }
}
.p-policy__main--ttl {
  font-size: 2.4rem;
  color: #009B37;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .p-policy__main--ttl {
    font-size: 3.2rem;
  }
}
.p-policy__con {
  padding-top: 40px;
}
@media screen and (min-width: 769px) {
  .p-policy__con {
    padding-top: 56px;
  }
}
.p-policy__con a {
  color: #009B37;
  text-decoration: underline;
}
.p-policy__con--subttl {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .p-policy__con--subttl {
    font-size: 2.4rem;
  }
}
.p-policy__con--list {
  padding-top: 8px;
}
.p-policy__con--list-li {
  padding-left: 16px;
  position: relative;
  margin-top: 8px;
}
@media screen and (min-width: 769px) {
  .p-policy__con--list-li {
    padding-left: 21px;
  }
}
.p-policy__con--list-li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 0;
  top: calc(50% - 2.5px);
  background: #000;
  border-radius: 50%;
}
.p-policy__con--numlist {
  padding-left: 2em;
  padding-top: 8px;
  list-style-type: decimal;
}
.p-policy__con--numlist-li {
  margin-top: 8px;
}

.p-society {
  margin-bottom: 40px;
  background: #F6F7F6;
}
@media screen and (min-width: 769px) {
  .p-society {
    margin-bottom: 80px;
  }
}
.p-society__con {
  padding: 64px 24px 60px;
}
@media screen and (min-width: 769px) {
  .p-society__con {
    padding: 70px 40px 80px;
  }
}
.p-society__ttl {
  margin-top: 60px;
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(180deg, #019DE4 0%, #BFE7FF 100%);
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-society__ttl {
    margin-top: 80px;
    font-size: 6.4rem;
  }
}
.p-society__ttl--jp {
  padding-top: 4px;
  font-size: 3.2rem;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-weight: bold;
  color: #575757;
}
@media screen and (min-width: 769px) {
  .p-society__ttl--jp {
    font-size: 3.2rem;
    padding-top: 16px;
  }
}
.p-society__message {
  padding-top: 40px;
  padding-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .p-society__message {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
.p-society__message--txt {
  font-size: 1.6rem;
  line-height: 28px;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
}
@media screen and (min-width: 769px) {
  .p-society__message--txt {
    font-size: 1.8rem;
    line-height: 36px;
  }
}
.p-society__message--wrap {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .p-society__message--wrap {
    padding-top: 40px;
    flex-direction: row;
  }
}
.p-society__message--wrap .p-society__message--txt {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-society__message--wrap .p-society__message--txt {
    width: 50%;
  }
}
.p-society__message--wrap .p-society__message--img {
  width: 100%;
  padding-top: 24px;
}
@media screen and (min-width: 769px) {
  .p-society__message--wrap .p-society__message--img {
    width: calc(50% - 24px);
    padding-top: 0;
  }
}
.p-society__message--wrap .p-society__message--img img {
  width: 100%;
}
.p-society__message--wrap .p-society__message--img-txt {
  padding-top: 8px;
  text-align: left;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
}
@media screen and (min-width: 769px) {
  .p-society__message--wrap .p-society__message--img-txt {
    padding-top: 16px;
    text-align: right;
  }
}
.p-society__list {
  padding: 40px 12px 0 12px;
}
@media screen and (min-width: 769px) {
  .p-society__list {
    padding: 80px 60px 0 60px;
  }
}
.p-society__list--ttl {
  font-size: 2.4rem;
  color: #334C38;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
}
@media screen and (min-width: 769px) {
  .p-society__list--ttl {
    font-size: 3.2rem;
  }
}
.p-society__list--wrap {
  padding-top: 24px;
  gap: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .p-society__list--wrap {
    padding-top: 40px;
    gap: 48px 0;
  }
}
.p-society__list--wrap .society__list--con {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-society__list--wrap .society__list--con {
    width: calc(50% - 20px);
  }
}
.p-society__list--wrap .society__list--con a {
  display: block;
}
.p-society__list--wrap .society__list--con a img {
  aspect-ratio: 85/56;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
  width: 100%;
}
.p-society__list--wrap .society__list--con a .ttl {
  padding-top: 8px;
  font-weight: bold;
  transition: 0.3s;
}
.p-society__list--wrap .society__list--con a .date {
  color: #727272;
  font-size: 1.2rem;
  padding-top: 16px;
}
@media screen and (min-width: 769px) {
  .p-society__list--wrap .society__list--con a .date {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) {
  .p-society__list--wrap .society__list--con a:hover img {
    opacity: 0.8;
  }
  .p-society__list--wrap .society__list--con a:hover .ttl {
    color: #009B37;
  }
}
.p-society__list .c-btn {
  padding-top: 24px;
}
@media screen and (min-width: 769px) {
  .p-society__list .c-btn {
    padding-top: 48px;
  }
}

.c-h2__ttl {
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  padding: 0 36px 16px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .c-h2__ttl {
    font-size: 2.4rem;
    flex-direction: row;
    padding: 0 0 12px 0;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  .c-h2__ttl {
    font-size: 2.4rem;
    flex-direction: row;
    padding: 0 0 12px 0;
  }
}
@media screen and (min-width: 1530px) {
  .c-h2__ttl {
    font-size: 3.2rem;
    flex-direction: row;
    padding: 0 0 24px 0;
  }
}
.c-h2__ttl span {
  font-size: 1.4rem;
  color: #727272;
  padding-left: 0;
}
@media screen and (min-width: 769px) {
  .c-h2__ttl span {
    font-size: 2rem;
    padding-left: 12px;
  }
}
@media screen and (max-width: 768px) {
  .c-h2__ttl span {
    padding-top: 4px;
  }
}

.c-tag__new {
  position: relative;
}
.c-tag__new::before {
  content: "NEW";
  position: absolute;
  width: 62px;
  height: 31px;
  background: #009B37;
  color: #fff;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.c-lower__ttl {
  font-size: 3.2rem;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  position: relative;
}
@media screen and (min-width: 769px) {
  .c-lower__ttl {
    font-size: 4.8rem;
    flex-direction: row;
  }
}
.c-lower__ttl::before {
  content: "";
  position: absolute;
  border: 3px solid #009B37;
  top: 54px;
  left: 0;
  width: 70px;
}
.c-lower__ttl--en {
  color: #727272;
  font-size: 1.8rem;
}
@media screen and (min-width: 769px) {
  .c-lower__ttl--en {
    font-size: 2rem;
    padding-left: 16px;
  }
}
@media screen and (max-width: 768px) {
  .c-lower__ttl--en {
    padding-top: 8px;
  }
}

.c-breadcrumb {
  font-size: 1.2rem;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .c-breadcrumb {
    font-size: 1.4rem;
    flex-direction: row;
  }
}
.c-breadcrumb a {
  display: block;
  line-height: 17px;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .c-breadcrumb a {
    line-height: 20px;
  }
}
.c-breadcrumb span {
  line-height: 17px;
}
@media screen and (min-width: 769px) {
  .c-breadcrumb span {
    line-height: 20px;
  }
}
.c-breadcrumb__wrap {
  display: flex;
}
.c-breadcrumb__previous {
  color: #727272;
  margin-right: 8px;
}

.splide {
  visibility: visible !important;
}

.sec__slider .splide__track .splide__list {
  display: flex !important;
}
.sec__slider .splide__track .splide__list .splide__slide {
  width: calc(33.3333333333% - 13px);
  margin-right: 20px;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .sec__slider .splide__track .splide__list .splide__slide {
    margin-bottom: 40px;
  }
}
.sec__slider .splide__track .splide__list .splide__slide:last-child {
  margin-right: 0;
}
.sec__slider .splide__track .splide__list .splide__slide a {
  width: 100%;
  display: block;
}
.sec__slider .splide__track .splide__list .splide__slide a img {
  height: 100%;
  width: 100%;
  aspect-ratio: 38/25;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 8px;
  transition: 0.3s;
}
.sec__slider .splide__track .splide__list .splide__slide a .ttl {
  font-weight: bold;
  padding-bottom: 16px;
  transition: 0.3s;
}
.sec__slider .splide__track .splide__list .splide__slide a .date {
  color: #727272;
  font-size: 1.2rem;
}
@media screen and (min-width: 769px) {
  .sec__slider .splide__track .splide__list .splide__slide a .date {
    font-size: 1.4rem;
  }
}
.sec__slider .splide__track .splide__list .splide__slide a .tag {
  color: #727272;
  padding-top: 4px;
}
@media screen and (min-width: 769px) {
  .sec__slider .splide__track .splide__list .splide__slide a:hover img {
    opacity: 0.8;
  }
  .sec__slider .splide__track .splide__list .splide__slide a:hover .ttl {
    color: #009B37;
  }
}
.sec__slider .splide__track .splide__list .splide__slide .label__wrap {
  padding-top: 4px;
  display: flex;
  flex-wrap: wrap;
}
.sec__slider .splide__track .splide__list .splide__slide .label__wrap .label a {
  font-size: 1.2rem;
  color: #727272;
  padding-right: 16px;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .sec__slider .splide__track .splide__list .splide__slide .label__wrap .label a {
    font-size: 1.4rem;
  }
  .sec__slider .splide__track .splide__list .splide__slide .label__wrap .label a:hover {
    color: #009B37;
  }
}
.sec__slider .splide__track .splide__list .splide__slide .c-lower__listtypeb {
  position: relative;
  width: 100%;
  margin-right: 0;
}
@media screen and (min-width: 769px) {
  .sec__slider .splide__track .splide__list .splide__slide .c-lower__listtypeb {
    margin-right: 20px;
  }
}
.sec__slider .splide__track .splide__list .splide__slide .c-lower__listtypeb:nth-of-type(3n) {
  margin-right: 0;
}
.sec__slider .splide__track .splide__list .splide__slide .c-lower__listtypeb--link {
  width: 100%;
  display: block;
}
.sec__slider .splide__track .splide__list .splide__slide .c-lower__listtypeb--link img {
  height: 100%;
  width: 100%;
  aspect-ratio: 38/25;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 40px;
  transition: 0.3s;
}
.sec__slider .splide__track .splide__list .splide__slide .c-lower__listtypeb--link .ttl {
  font-weight: bold;
  padding-bottom: 16px;
  transition: 0.3s;
}
.sec__slider .splide__track .splide__list .splide__slide .c-lower__listtypeb--link .date {
  font-size: 1.2rem;
  color: gray;
}
@media screen and (min-width: 769px) {
  .sec__slider .splide__track .splide__list .splide__slide .c-lower__listtypeb--link .date {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) {
  .sec__slider .splide__track .splide__list .splide__slide .c-lower__listtypeb--link:hover img {
    opacity: 0.8;
  }
  .sec__slider .splide__track .splide__list .splide__slide .c-lower__listtypeb--link:hover .ttl {
    color: #009B37;
  }
}
.sec__slider .splide__track .splide__list .splide__slide .c-lower__listtypeb--tag {
  position: absolute;
  margin-top: 65.7894736842%;
  top: 8px;
  font-weight: bold;
  color: #727272;
  display: block;
}
@media screen and (min-width: 769px) {
  .sec__slider .splide__track .splide__list .splide__slide .c-lower__listtypeb--tag:hover {
    color: #009B37;
  }
}
@media screen and (min-width: 769px) {
  .sec__slider .splide__arrows {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sec__slider .splide__arrows {
    display: flex;
    justify-content: space-between;
    margin: 0 30%;
  }
  .sec__slider .splide__arrows .splide__arrow--prev {
    position: relative;
    background-color: transparent;
  }
  .sec__slider .splide__arrows .splide__arrow--prev::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
    border-bottom: 1px solid #009B37;
    border-left: 1px solid #009B37;
    transform: rotate(45deg);
  }
  .sec__slider .splide__arrows .splide__arrow--next {
    position: relative;
    background-color: transparent;
  }
  .sec__slider .splide__arrows .splide__arrow--next::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
    border-top: 1px solid #009B37;
    border-right: 1px solid #009B37;
    transform: rotate(45deg);
  }
  .sec__slider .splide__pagination {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 2%;
    left: 0;
    right: 0;
    padding-left: 0;
  }
  .sec__slider .splide__pagination__page {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #CCCCCC;
    border-radius: 50%;
    touch-action: manipulation;
    cursor: pointer;
  }
  .sec__slider .splide__pagination__page.is-active {
    background-color: #009B37;
  }
  .sec__slider .splide__pagination__page:focus-visible {
    outline: 3px solid #009B37;
    outline-offset: 3px;
  }
}

.c-mv__search {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (min-width: 1000px) {
  .c-mv__search {
    flex-direction: row;
  }
}
.c-mv__search--result {
  flex-direction: column;
}
.c-mv__search--result .c-search__ttl {
  font-size: 1.8rem;
  padding-top: 40px;
  padding-bottom: 24px;
}

.c-lower__list {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .c-lower__list {
    padding-top: 120px;
    flex-direction: row;
  }
}
.c-lower__list--con {
  width: 100%;
  margin-right: 0;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .c-lower__list--con {
    margin-right: 20px;
    margin-bottom: 80px;
    width: calc(33.3333333333% - 14px);
  }
}
.c-lower__list--con:nth-of-type(3n) {
  margin-right: 0;
}
.c-lower__list--con a {
  width: 100%;
  display: block;
}
.c-lower__list--con a img {
  height: 100%;
  width: 100%;
  aspect-ratio: 38/25;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 8px;
  transition: 0.3s;
}
.c-lower__list--con a .ttl {
  font-weight: bold;
  padding-bottom: 16px;
  transition: 0.3s;
}
.c-lower__list--con a .date {
  font-size: 1.2rem;
  color: gray;
}
@media screen and (min-width: 769px) {
  .c-lower__list--con a .date {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) {
  .c-lower__list--con a:hover img {
    opacity: 0.8;
  }
  .c-lower__list--con a:hover .ttl {
    color: #009B37;
  }
}
.c-lower__list--con .label__wrap {
  padding-top: 4px;
  display: flex;
  flex-wrap: wrap;
}
.c-lower__list--con .label__wrap .label a {
  font-size: 1.2rem;
  color: #727272;
  padding-right: 16px;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .c-lower__list--con .label__wrap .label a {
    font-size: 1.4rem;
  }
  .c-lower__list--con .label__wrap .label a:hover {
    color: #009B37;
  }
}
.c-lower__list .c-lower__listtypeb {
  position: relative;
  width: 100%;
  margin-right: 0;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .c-lower__list .c-lower__listtypeb {
    margin-right: 20px;
    margin-bottom: 80px;
    width: calc(33.3333333333% - 14px);
  }
}
.c-lower__list .c-lower__listtypeb:nth-of-type(3n) {
  margin-right: 0;
}
.c-lower__list .c-lower__listtypeb--link {
  display: block;
}
.c-lower__list .c-lower__listtypeb--link img {
  height: 100%;
  width: 100%;
  aspect-ratio: 38/25;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 40px;
  transition: 0.3s;
}
.c-lower__list .c-lower__listtypeb--link .ttl {
  font-weight: bold;
  padding-bottom: 16px;
  transition: 0.3s;
}
.c-lower__list .c-lower__listtypeb--link .date {
  font-size: 1.2rem;
  color: gray;
}
@media screen and (min-width: 769px) {
  .c-lower__list .c-lower__listtypeb--link .date {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) {
  .c-lower__list .c-lower__listtypeb--link:hover img {
    opacity: 0.8;
  }
  .c-lower__list .c-lower__listtypeb--link:hover .ttl {
    color: #009B37;
  }
}
.c-lower__list .c-lower__listtypeb--tag {
  position: absolute;
  margin-top: 65.7894736842%;
  top: 8px;
  font-weight: bold;
  color: #727272;
  display: block;
}
@media screen and (min-width: 769px) {
  .c-lower__list .c-lower__listtypeb--tag:hover {
    color: #009B37;
  }
}

.c-btn {
  max-width: 303px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .c-btn {
    max-width: 370px;
  }
}
.c-btn a {
  width: 100%;
  padding: 16px 0;
  text-align: center;
  display: inline-block;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 8px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .c-btn a {
    padding: 24px 0;
  }
}
.c-btn a::before {
  content: "";
  position: absolute;
  top: 25%;
  right: 4%;
  width: 28px;
  height: 28px;
  background: #019DE4;
  border: 1px solid #019DE4;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .c-btn a::before {
    width: 36px;
    height: 36px;
  }
}
.c-btn a::after {
  content: "";
  display: inline-block;
  background-image: url("../images/common/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 10px;
  position: absolute;
  top: 43%;
  right: 6.5%;
}
@media screen and (min-width: 769px) {
  .c-btn a::after {
    width: 14px;
    height: 15px;
    right: 7%;
  }
}
.c-btn a span {
  font-weight: 500;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .c-btn a:hover::before {
    background: #fff;
    transition: 0.3s;
  }
  .c-btn a:hover::after {
    background-image: url("../images/common/arrow_blue.svg");
    transition: 0.3s;
  }
  .c-btn a:hover span {
    color: #019DE4;
  }
}
.c-btn__green {
  max-width: 303px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .c-btn__green {
    max-width: 370px;
  }
}
.c-btn__green a {
  width: 100%;
  padding: 16px 0;
  text-align: center;
  display: inline-block;
  border: 1px solid #009B37;
  color: #fff;
  background: #009B37;
  border-radius: 8px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .c-btn__green a {
    padding: 24px 0;
  }
}
.c-btn__green a::before {
  content: "";
  position: absolute;
  top: 25%;
  right: 4%;
  width: 28px;
  height: 28px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .c-btn__green a::before {
    width: 36px;
    height: 36px;
  }
}
.c-btn__green a::after {
  content: "";
  display: inline-block;
  background-image: url("../images/common/arrow_green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 10px;
  position: absolute;
  top: 43%;
  right: 6.5%;
}
@media screen and (min-width: 769px) {
  .c-btn__green a::after {
    width: 14px;
    height: 15px;
    right: 7%;
  }
}
.c-btn__green a span {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .c-btn__green a:hover::before {
    background: #009B37;
    transition: 0.3s;
  }
  .c-btn__green a:hover::after {
    background-image: url("../images/common/arrow.svg");
    transition: 0.3s;
  }
}
.c-btn__blue {
  max-width: 303px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .c-btn__blue {
    max-width: 370px;
  }
}
.c-btn__blue a {
  width: 100%;
  padding: 16px 0;
  text-align: center;
  display: inline-block;
  border: 1px solid #019DE4;
  color: #fff;
  background: #019DE4;
  border-radius: 8px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .c-btn__blue a {
    padding: 24px 0;
  }
}
.c-btn__blue a::before {
  content: "";
  position: absolute;
  top: 25%;
  right: 4%;
  width: 28px;
  height: 28px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .c-btn__blue a::before {
    width: 36px;
    height: 36px;
  }
}
.c-btn__blue a::after {
  content: "";
  display: inline-block;
  background-image: url("../images/common/arrow_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 10px;
  position: absolute;
  top: 43%;
  right: 6.5%;
}
@media screen and (min-width: 769px) {
  .c-btn__blue a::after {
    width: 14px;
    height: 15px;
    right: 7%;
  }
}
.c-btn__blue a span {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .c-btn__blue a:hover::before {
    background: #019DE4;
    transition: 0.3s;
  }
  .c-btn__blue a:hover::after {
    background-image: url("../images/common/arrow.svg");
    transition: 0.3s;
  }
}

.c-search {
  padding-top: 60px;
  max-width: 520px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .c-search {
    padding-top: 80px;
    width: 50%;
  }
}
.c-search__ttl {
  font-weight: bold;
  padding-bottom: 8px;
}
.c-search__form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 1px solid #727272;
  border-radius: 8px;
}
.c-search__form label {
  width: 100%;
}
.c-search__form label input {
  width: 100%;
  padding: 16px 24px;
  border: none;
  box-sizing: border-box;
  font-size: 1.6rem;
  outline: none;
}
.c-search__form label input::-moz-placeholder {
  color: #727272;
}
.c-search__form label input::placeholder {
  color: #727272;
}
.c-search__form label input:focus::-moz-placeholder {
  color: transparent;
}
.c-search__form label input:focus::placeholder {
  color: transparent;
}
.c-search__form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 45px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.c-search__form button::after {
  width: 23px;
  height: 26px;
  background-image: url("../images/common/search.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.c-list__pagenation--li {
  display: flex;
  justify-content: center;
}
.c-list__pagenation--li .page_btn {
  padding-right: 16px;
}
.c-list__pagenation--li .page_btn:last-child {
  padding-right: 0;
}
.c-list__pagenation--li .page_btn a {
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .c-list__pagenation--li .page_btn a:hover {
    color: #009B37;
  }
}
.c-list__pagenation--li .page_btn a, .c-list__pagenation--li .page_btn span {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #727272;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-list__pagenation--li .page_btn a.active, .c-list__pagenation--li .page_btn span.active {
  border: 1px solid #009B37;
  color: #fff;
  background: #009B37;
  border-radius: 50%;
}
.c-list__pagenation--li .page_btn--next {
  position: relative;
}
.c-list__pagenation--li .page_btn--next::before {
  content: "";
  display: inline-block;
  background-image: url("../images/common/arrow_black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 10px;
  position: absolute;
  top: 37%;
  right: 30%;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .c-list__pagenation--li .page_btn--next::before {
    width: 14px;
    height: 15px;
    right: 24%;
    top: 34%;
  }
}
@media screen and (min-width: 769px) {
  .c-list__pagenation--li .page_btn--next:hover::before {
    background-image: url("../images/common/arrow_green.svg");
  }
}
.c-list__pagenation--li .page_btn--prev {
  position: relative;
}
.c-list__pagenation--li .page_btn--prev::before {
  content: "";
  display: inline-block;
  background-image: url("../images/common/arrow_black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(-1, 1);
  width: 11px;
  height: 10px;
  position: absolute;
  top: 37%;
  right: 30%;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .c-list__pagenation--li .page_btn--prev::before {
    width: 14px;
    height: 15px;
    right: 24%;
    top: 34%;
  }
}
@media screen and (min-width: 769px) {
  .c-list__pagenation--li .page_btn--prev:hover::before {
    background-image: url("../images/common/arrow_green.svg");
  }
}