@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;
  width: calc(100% - 270px);
  padding: 0 24px;
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  .footer__banner {
    max-width: 1300px;
    width: calc(100% - 230px);
  }
}
@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;
  width: calc(100% - 270px);
  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;
    width: calc(100% - 230px);
  }
}
@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;
  width: calc(100% - 270px);
  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;
    width: calc(100% - 230px);
  }
}
@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;
}
@media screen and (min-width: 769px) {
  .footer__wrap .footer__menu--list {
    padding-right: 100px;
  }
  .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;
  width: calc(100% - 270px);
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  main {
    max-width: 1300px;
    width: calc(100% - 230px);
  }
}
@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;
  }
}

.main__container {
  display: flex;
}

#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%;
  }
}

.sidebar {
  width: 100%;
  max-width: 270px;
  position: relative;
  height: 100%;
  right: 0;
}
@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 {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #FAF9F8;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  padding: 24px 24px;
  max-width: 270px;
  overflow-y: auto;
}
.sidebar__wrap::-webkit-scrollbar {
  width: 2px;
}
.sidebar__wrap:hover {
  overflow-y: scroll;
}
.sidebar__wrap:hover::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #ccc;
}
@media screen and (min-width: 1201px) and (max-width: 1530px) {
  .sidebar__wrap {
    max-width: 230px;
  }
}
.sidebar__wrap .side_menu__list--link {
  font-size: 1.8rem;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.sidebar__wrap .side_menu__list--link span {
  padding-top: 8px;
  font-size: 1.2rem;
  color: #727272;
}
@media screen and (min-width: 769px) {
  .sidebar__wrap .side_menu__list--link:hover {
    transition: 0.3s;
    color: #009B37;
  }
  .sidebar__wrap .side_menu__list--link:hover span {
    transition: 0.3s;
    color: #009B37;
  }
}
.sidebar__wrap .side_sns__wrap {
  padding: 24px 0;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sidebar__wrap .side_sns__wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border: 1px solid #ccc;
  top: 0;
  right: 0;
}
.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_magazine__wrap {
  padding: 24px 0;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sidebar__wrap .side_magazine__wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border: 1px solid #ccc;
  top: 0;
  right: 0;
}
.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:hover .side_magazine__con img {
    transition: 0.3s;
    opacity: 0.8;
  }
  .sidebar__wrap .side_magazine__wrap .side_magazine__link:hover .side_magazine__con p {
    transition: 0.3s;
    color: #009B37;
  }
}
.sidebar__wrap .side_banner__wrap {
  padding: 24px 0;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sidebar__wrap .side_banner__wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border: 1px solid #ccc;
  top: 0;
  right: 0;
}
.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;
  }
}

.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;
  }
}

.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;
  }
}

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

.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 .ttl {
  font-weight: bold;
}
.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 .box_a .img img {
  width: 100%;
}
.p-article__main--con .box_a .txt {
  padding-top: 8px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .box_a .txt {
    padding-top: 16px;
  }
}
.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: 8px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .box_b .txt_wrap .txt:nth-child(n+2) {
    padding-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .p-article__main--con .box_b .txt_wrap .txt {
    padding-top: 16px;
  }
}
.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: 8px;
}
@media screen and (min-width: 769px) {
  .p-article__main--con .box_c .txt_wrap .txt:nth-child(n+2) {
    padding-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .p-article__main--con .box_c .txt_wrap .txt {
    padding-top: 16px;
  }
}
.p-article__main--con .photo_area .photo_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@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%;
}
@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--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 {
  padding-top: 16px;
}
@media screen and (min-width: 769px) {
  .p-article__main--btnarea .c-btn__green {
    padding-top: 24px;
  }
}

.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;
  }
}

.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;
  bottom: 78px;
  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;
  }
}

.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;
  }
}
@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;
  }
  .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-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: #009B37;
  border: 1px solid #009B37;
  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_green.svg");
    transition: 0.3s;
  }
  .c-btn a:hover span {
    color: #009B37;
  }
}
.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-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");
  }
}