@charset "UTF-8";
/*共通スタイル*/
/* main colors */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  word-break: break-all;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  color: #111111;
  line-height: 1.8;
  font-size: 16px;
  position: relative;
}
@media (min-width: 920px) {
  body {
    font-size: min(1.11vw, 16px);
  }
}
body.active {
  overflow: hidden;
  position: relative;
}
body.active::before {
  content: "";
  position: absolute;
  background: #111111;
  opacity: 0.75;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9997;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site_body {
  margin-bottom: auto;
}

.container-base {
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .container-base {
    padding: 0 min(11.11vw, 160px);
  }
}

.inner_link {
  position: relative;
}
.inner_link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #111111;
  position: absolute;
  bottom: -4px;
  left: 0;
  scale: 0 1;
  transition: scale 0.3s ease-out;
  transform-origin: 100% 0;
}
.inner_link:hover {
  opacity: 1;
  visibility: visible;
}
.inner_link:hover::before {
  scale: 1 1;
  transform-origin: 0 0;
}

.stream_line {
  background-image: linear-gradient(to right, #111111, #111111);
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  line-height: 1.5;
  padding-bottom: 2px;
  width: -moz-fit-content;
  width: fit-content;
}
.stream_line:hover {
  animation: none;
}
@media (min-width: 920px) {
  .stream_line:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}

.br_sp {
  display: block;
}
@media (min-width: 920px) {
  .br_sp {
    display: none;
  }
}

.br_pc {
  display: none;
}
@media (min-width: 920px) {
  .br_pc {
    display: block;
  }
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
.text-center_pc {
  text-align: left !important;
}
@media (min-width: 920px) {
  .text-center_pc {
    text-align: center !important;
  }
}
.text-center_sp {
  text-align: center !important;
}
@media (min-width: 920px) {
  .text-center_sp {
    text-align: left !important;
  }
}

.txt {
  font-weight: 600;
  line-height: 1;
}

.circle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111111;
  border-radius: 9999px;
}
@media (min-width: 920px) {
  .circle {
    width: min(3.33vw, 48px);
    height: min(3.33vw, 48px);
  }
}

.icon::before {
  transition: translate 0.2s ease-out, background-color 0.3s;
}
.icon_arrow {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 12px;
  height: 12px;
}
@media (min-width: 920px) {
  .icon_arrow {
    width: min(1.388vw, 20px);
    height: min(1.388vw, 20px);
  }
}
.icon_arrow::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/arrow.svg);
  mask-image: url(../img/common/arrow.svg);
  display: block;
  width: 12px;
  height: 12px;
  background: #fff;
  transition: translate 0.2s ease-out;
}
@media (min-width: 920px) {
  .icon_arrow::before {
    width: min(1.388vw, 20px);
    height: min(1.388vw, 20px);
  }
}

.btn {
  width: 100%;
  max-width: 272px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 16px;
  border-radius: 5px;
  background-color: #F4DB22;
}
@media (min-width: 920px) {
  .btn {
    width: min(19.44vw, 280px);
    padding: 0 0 0 min(1.66vw, 24px);
    max-width: 100%;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  }
}
.btn_arrow {
  width: 61px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 5px 5px 0;
  background-color: #E8D01E;
}
@media (min-width: 920px) {
  .btn_arrow {
    width: min(4.23611vw, 61px);
    height: min(4.23611vw, 61px);
  }
}
.btn .icon_arrow {
  width: 20px;
  height: 20px;
}
@media (min-width: 920px) {
  .btn .icon_arrow {
    width: min(1.388vw, 20px);
    height: min(1.388vw, 20px);
  }
}
.btn .icon_arrow::before {
  width: 20px;
  height: 20px;
  background: #111111;
}
@media (min-width: 920px) {
  .btn .icon_arrow::before {
    width: min(1.388vw, 20px);
    height: min(1.388vw, 20px);
  }
}
.btn-gr {
  background-color: #59D581;
}
.btn-gr .btn_arrow {
  background-color: #24AA5A;
}
.btn-wh {
  background-color: #fff;
}
.btn-wh .btn_arrow {
  background-color: #EFEFEF;
}
@media (min-width: 920px) {
  .btn:hover {
    opacity: 0.75;
  }
}

.copyright {
  font-weight: 300;
  font-size: 10px;
  line-height: 1;
  display: block;
  text-align: center;
}
@media (min-width: 920px) {
  .copyright {
    font-size: min(0.833vw, 12px);
  }
}

/*ヘッダーのスタイル*/
.site_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 4px 16px;
  background-color: #fff;
  position: fixed;
  z-index: 9999;
}
@media (min-width: 920px) {
  .site_header {
    padding: min(2.22vw, 32px) min(2.22vw, 32px) 0 min(3.33vw, 48px);
    background-color: transparent;
  }
}
.site_header_logo {
  display: flex;
  width: 157px;
  height: 20px;
}
@media (min-width: 920px) {
  .site_header_logo {
    width: min(15.277vw, 220px);
    height: min(1.944vw, 28px);
  }
}
.site_header_logo img {
  width: 100%;
  height: 100%;
}
.site_header_nav {
  display: none;
}
@media (min-width: 920px) {
  .site_header_nav {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    padding: min(1.11vw, 16px) min(1.11vw, 16px) min(1.11vw, 16px) min(2.22vw, 32px);
    border-radius: 8px;
    background-color: #fff;
  }
}
.site_header_nav ul {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: min(1.11vw, 16px);
}
.site_header_link {
  font-weight: 600;
  font-size: min(0.97222vw, 14px);
  line-height: 1.25;
}
.site_header_btn {
  width: -moz-fit-content;
  width: fit-content;
  height: min(3.54166vw, 51px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: min(1.388vw, 20px) min(1.11vw, 16px);
  border-radius: 8px;
  background-color: #F4DB22;
  margin: 0 0 0 min(1.11vw, 16px);
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.site_header_btn-gr {
  background-color: #24AA5A;
  margin: 0 0 0 0.5rem;
}
.site_header_btn .txt {
  font-weight: 600;
  font-size: min(1.04166vw, 15px);
  line-height: 1.15;
}
.site_header_btn:hover {
  opacity: 0.75;
}
.site_header_hb {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F4DB22;
  border-radius: 3px;
  cursor: pointer;
}
@media (min-width: 920px) {
  .site_header_hb {
    display: none;
  }
}
.site_header_menu {
  width: 82%;
  height: 100vh;
  margin: 64px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  translate: 100% 0;
  z-index: 9998;
  background-color: #F4F1E7;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media (min-width: 920px) {
  .site_header_menu {
    display: none;
  }
}
.site_header_menu.active {
  translate: 0 0;
}
.site_header_menu_container {
  padding: 32px 0 0;
}
.site_header_menu_inner {
  overflow-y: auto;
  height: calc(100vh - 64px);
  padding: 0 20px 80px;
}
.site_header_menu_inner .btn-gr {
  margin: 24px 0 0;
}
.site_header_menu_inner .copyright {
  margin: 32px 0 0;
}
.site_header_menu_list {
  margin: 0 0 40px;
}
.site_header_menu_list li {
  border-bottom: 1px solid #111111;
}
.site_header_menu_link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.site_header_menu_link-first {
  padding: 0 0 24px;
}
.site_header_menu_link .circle {
  width: 21px;
  height: 21px;
}

.openbtn {
  width: 20px;
  height: 14.88px;
  position: relative;
}
.openbtn span {
  display: inline-block;
  transition: all 0.3s; /*アニメーションの設定*/
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #111111;
}
.openbtn span:nth-of-type(1) {
  top: 0;
}
.openbtn span:nth-of-type(2) {
  top: 50%;
}
.openbtn span:nth-of-type(3) {
  top: 100%;
}
.openbtn.active span:nth-of-type(1) {
  rotate: -45deg;
  translate: 0 -50%;
  top: 50%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  rotate: 45deg;
  translate: 0 -50%;
  top: 50%;
}

.cta_follow {
  width: 100%;
  display: flex;
  max-width: 390px;
  border-top: 1px solid #111111;
  position: fixed;
  z-index: 9990;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media (min-width: 920px) {
  .cta_follow {
    display: none;
  }
}
.cta_follow .btn {
  width: 50%;
  border-radius: 0;
}
.cta_follow .btn_arrow {
  border-radius: 0;
}
.cta_follow .btn .txt {
  font-size: 13px;
  line-height: 1.35;
}
.cta_follow.is-visible {
  opacity: 0;
  pointer-events: none;
}

/*cta*/
.cta {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 920px) {
  .cta {
    flex-direction: row;
  }
}
.cta_bnr {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
@media (min-width: 920px) {
  .cta_bnr {
    width: 50%;
    padding: min(5.55vw, 80px);
  }
}
.cta_bnr:nth-child(1) {
  background-color: #F4DB22;
}
.cta_bnr:nth-child(2) {
  background-color: #24AA5A;
  padding: 40px 20px 102px;
}
@media (min-width: 920px) {
  .cta_bnr:nth-child(2) {
    padding: min(5.55vw, 80px);
  }
}
.cta_bnr_inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.cta_head {
  margin: 0 auto 40px;
}
@media (min-width: 920px) {
  .cta_head {
    margin: 0 auto min(2.77vw, 40px);
  }
}
.cta_head picture, .cta_head img {
  display: block;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .cta_head picture, .cta_head img {
    width: min(28.611vw, 412px);
  }
}
.cta_txt {
  text-align: justify;
  display: block;
  margin: 0 auto 40px;
}
@media (min-width: 920px) {
  .cta_txt {
    width: min(38.88vw, 560px);
    margin: 0 auto min(2.77vw, 40px);
  }
}

/*フッターのスタイル*/
.site_footer {
  width: 100%;
  padding: 55px 20px 0;
  background-color: #59D581;
}
@media (min-width: 920px) {
  .site_footer {
    padding: min(5.55vw, 80px) min(11.11vw, 160px) 0;
  }
}
.site_footer_container {
  position: relative;
}
@media (min-width: 920px) {
  .site_footer_container {
    max-width: 1120px;
    margin: 0 auto;
  }
}
.site_footer_nav {
  display: none;
}
@media (min-width: 920px) {
  .site_footer_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: min(59.5833vw, 858px);
    gap: min(1.66vw, 24px);
    margin: min(4.44vw, 64px) auto min(2.77vw, 40px);
  }
}
.site_footer_link {
  font-weight: 600;
  font-size: min(1.04166vw, 15px);
  line-height: 1.15;
}
.site_footer_bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #24AA5A;
  padding: 24px 0;
}
@media (min-width: 920px) {
  .site_footer_bottom {
    padding: min(2.77vw, 40px) 0;
  }
}
.site_footer_other {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
@media (min-width: 920px) {
  .site_footer_other {
    gap: min(1.11vw, 16px);
  }
}
.site_footer_other .copyright {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 16px;
  border-left: 1px solid #24AA5A;
}
@media (min-width: 920px) {
  .site_footer_other .copyright {
    padding-left: min(1.11vw, 16px);
  }
}
.site_footer_policy {
  font-size: 10px;
  line-height: 1.15;
}
@media (min-width: 920px) {
  .site_footer_policy {
    font-size: 0.8125rem;
  }
}

.pageTop_btn {
  width: 64px;
  height: 64px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -135%;
}
@media (min-width: 920px) {
  .pageTop_btn {
    width: min(5.55vw, 80px);
    height: min(5.55vw, 80px);
    position: relative;
    top: auto;
    left: auto;
    translate: 0 0;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  }
}
.pageTop_btn img {
  width: 100%;
  height: 100%;
}
@media (min-width: 920px) {
  .pageTop_btn:hover {
    opacity: 0.75;
  }
}

.site_link {
  font-weight: 700;
  line-height: 1.25;
  display: flex;
  width: fit-content;
  margin: 20px auto;
}
@media (min-width: 920px) {
  .site_link {
    margin: min(2.77vw, 40px) auto;
  }
}

.news_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.news_list_link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
}
@media (min-width: 920px) {
  .news_list_link {
    gap: min(2.22vw, 32px);
    padding: min(2.22vw, 32px);
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  }
}
.news_list_link_textArea {
  flex: 1 1 0;
}
.news_list_link_head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 16px;
}
@media (min-width: 920px) {
  .news_list_link_head {
    margin: 0 0 min(1.11vw, 16px);
  }
}
.news_list_link_date {
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.8;
}
.news_list_link_category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news_list_link_ttl {
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 表示したい最大行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 920px) {
  .news_list_link_ttl {
    font-size: min(1.388vw, 20px);
  }
}
.news_list_link .circle {
  flex: 0 1 24px;
}
@media (min-width: 920px) {
  .news_list_link .circle {
    flex: 0 1 min(3.33vw, 48px);
  }
}
@media (min-width: 920px) {
  .news_list_link:hover {
    opacity: 0.75;
  }
}

.news_category {
  padding: 0.5rem 0.75rem;
  background-color: #D4E224;
  border: 1px solid #111111;
  border-radius: 500px;
  font-weight: 300;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 920px) {
  .news_category {
    font-size: min(0.90277vw, 13px);
  }
}

.pagenation {
  margin: 40px auto 0;
}
@media (min-width: 920px) {
  .pagenation {
    margin: min(4.44vw, 64px) auto 0;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto;
  position: relative;
}

.page-numbers {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  line-height: 1;
}
@media (min-width: 920px) {
  .page-numbers {
    width: min(2.77vw, 40px);
    height: min(2.77vw, 40px);
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  }
}
@media (min-width: 920px) {
  .page-numbers:hover {
    background-color: #24AA5A;
    color: #fff;
  }
}

.current {
  pointer-events: none;
  background-color: #24AA5A;
  color: #fff;
}

.next,
.prev {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  gap: 0.5rem;
  border-radius: 0;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
@media (min-width: 600px) {
  .next,
  .prev {
    right: 20%;
  }
}
@media (min-width: 920px) {
  .next:hover,
  .prev:hover {
    background-color: transparent !important;
    color: #24AA5A;
  }
}
.next .circle,
.prev .circle {
  width: 24px;
  height: 24px;
  background-color: #24AA5A;
}
@media (min-width: 920px) {
  .next .circle,
  .prev .circle {
    width: min(2.22vw, 32px);
    height: min(2.22vw, 32px);
  }
}
@media (min-width: 920px) {
  .next .circle .icon_arrow,
  .prev .circle .icon_arrow {
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 920px) {
  .next .circle .icon_arrow::before,
  .prev .circle .icon_arrow::before {
    width: 12px;
    height: 12px;
  }
}
.next p:empty,
.prev p:empty {
  display: none;
}

.prev {
  right: auto;
  left: 0;
}
@media (min-width: 600px) {
  .prev {
    left: 20%;
  }
}
.prev .icon_arrow {
  rotate: 180deg;
}

.post_head {
  margin: 0 0 40px;
}
@media (min-width: 920px) {
  .post_head {
    margin: 0 0 min(4.44vw, 64px);
  }
}
.post_head_row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 16px;
}
@media (min-width: 920px) {
  .post_head_row {
    gap: 1rem;
    margin: 0 0 min(1.66vw, 24px);
  }
}
.post_row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 920px) {
  .post_row {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
@media (min-width: 920px) {
  .post_row .post_body {
    flex: 0 1 min(51.388vw, 740px);
  }
}
.post_date {
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.8;
}
.post_category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post_ttl {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  margin: -0.5rem 0;
}
@media (min-width: 920px) {
  .post_ttl {
    font-size: min(2.22vw, 32px);
  }
}
.post_menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 0;
  border-top: 1px solid #818181;
  margin: 40px 0 0;
}
@media (min-width: 920px) {
  .post_menu {
    padding: min(2.77vw, 40px) 0 0;
    margin: min(4.44vw, 64px) 0 0;
  }
}
.post_menu_link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-image: none !important;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.post_menu_link_icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #24AA5A;
  border-radius: 9999px;
}
@media (min-width: 920px) {
  .post_menu_link_icon {
    width: min(2.22vw, 32px);
    height: min(2.22vw, 32px);
  }
}
@media (min-width: 920px) {
  .post_menu_link_icon .icon_arrow {
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 920px) {
  .post_menu_link_icon .icon_arrow:before {
    width: 12px;
    height: 12px;
  }
}
.post_menu_link .txt {
  font-weight: 300 !important;
  line-height: 1;
  color: #111111;
  margin: 0 !important;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.post_menu_link-prev .icon_arrow {
  rotate: 180deg;
}
@media (min-width: 920px) {
  .post_menu_link:hover .txt {
    color: #24AA5A;
  }
}
.post_menu_link.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}
@media (min-width: 920px) {
  .post_side {
    flex: 0 1 min(12.5vw, 180px);
  }
}
.post_side_ttl {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  display: block;
  padding: 0 0 16px;
  border-bottom: 1px solid #D9D9D9;
  margin: 0 0 20px;
}
@media (min-width: 920px) {
  .post_side_ttl {
    font-size: min(1.66vw, 24px);
    padding: 0 0 min(1.11vw, 16px);
    margin: 0 0 min(1.66vw, 24px);
  }
}
.post_side_category {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 920px) {
  .post_side_category {
    gap: min(1.11vw, 16px);
  }
}
.post_side_category .news_category {
  width: -moz-fit-content;
  width: fit-content;
}

.subPage_contents {
  padding: 120px 0 0;
  background-color: #F4F1E7;
}
@media (min-width: 920px) {
  .subPage_contents {
    padding: min(16.31944vw, 235px) 0 0;
  }
}

.subPage_head {
  margin: 0 0 60px;
}
@media (min-width: 920px) {
  .subPage_head {
    margin: 0 0 min(6.944vw, 100px);
  }
}
.subPage_head p {
  line-height: 1.8;
  display: block;
  margin: -0.5rem 0 60px;
}
@media (min-width: 920px) {
  .subPage_head p {
    text-align: center;
    margin: -0.5rem 0 min(6.944vw, 100px);
  }
}

.subPage_ttl {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.8;
  text-align: center;
  display: block;
  margin: 0 0 40px;
}
@media (min-width: 920px) {
  .subPage_ttl {
    font-size: min(3.33vw, 48px);
    margin: 0 0 min(5.55vw, 80px);
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1.15;
  gap: 0.75rem;
  font-size: 14px;
}
@media (min-width: 920px) {
  .breadcrumbs {
    gap: 1rem;
    font-size: min(1.11vw, 16px);
  }
}
.breadcrumbs a {
  position: relative;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.breadcrumbs a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #111111;
  position: absolute;
  bottom: -4px;
  left: 0;
  scale: 0 1;
  transition: scale 0.3s ease-out;
  transform-origin: 100% 0;
}
.breadcrumbs a:hover {
  opacity: 1;
  color: #111111;
  visibility: visible;
}
.breadcrumbs a:hover::before {
  scale: 1 1;
  transform-origin: 0 0;
}
.breadcrumbs .current-item {
  color: #818181;
}

.subPage_container {
  padding: 0 0 80px;
}
@media (min-width: 920px) {
  .subPage_container {
    padding: 0 0 min(6.944vw, 100px);
  }
}

.subPage_inner {
  width: 100%;
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 20px;
}
@media (min-width: 920px) {
  .subPage_inner {
    padding: min(5.55vw, 80px);
    border-radius: 40px;
  }
}
.subPage_inner-conatact {
  background-color: #59D581;
}
@media (min-width: 920px) {
  .subPage_inner-conatact {
    padding: min(5.55vw, 80px) min(16.5277vw, 238px);
  }
}

.post_body h2.wp-block-heading {
  background-color: #59D581;
  padding: 12px;
  border: 1px solid #111111;
  border-radius: 5px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  margin: 20px 0;
}
@media (min-width: 920px) {
  .post_body h2.wp-block-heading {
    padding: min(1.11vw, 16px);
    font-size: min(1.388vw, 20px);
    margin: min(1.66vw, 24px) 0;
  }
}
.post_body h3.wp-block-heading {
  padding: 0 0 0.5rem 0.5rem;
  border-bottom: 2px solid #F4DB22;
  border-left: 2px solid #F4DB22;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  color: #24AA5A;
  margin: -0.5rem 0 20px 0;
}
@media (min-width: 920px) {
  .post_body h3.wp-block-heading {
    font-size: min(1.25vw, 18px);
    margin: -0.5rem 0 min(1.66vw, 24px) 0;
  }
}
.post_body p {
  line-height: 1.8;
  text-align: justify;
  display: block;
  margin: 20px 0 40px;
}
@media (min-width: 920px) {
  .post_body p {
    margin: min(1.66vw, 24px) 0 min(4.44vw, 64px);
  }
}
.post_body p:last-of-type {
  margin: 20px 0 0;
}
@media (min-width: 920px) {
  .post_body p:last-of-type {
    margin: min(1.66vw, 24px) 0 0;
  }
}
.post_body a {
  color: #24AA5A;
  background-image: linear-gradient(to right, #24AA5A, #24AA5A);
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
}
.post_body a:hover {
  animation: none;
}
@media (min-width: 920px) {
  .post_body a:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}
.post_body ul.wp-block-list,
.post_body ol.wp-block-list {
  margin: 0.5rem 0 40px;
  padding-left: 20px;
}
@media (min-width: 920px) {
  .post_body ul.wp-block-list,
  .post_body ol.wp-block-list {
    margin: 0.5rem 0 min(4.44vw, 64px);
    padding-left: min(1.66vw, 24px);
  }
}
.post_body ul.wp-block-list {
  list-style: disc;
}
.post_body-policy p:first-of-type {
  margin: 0 0 40px;
}
@media (min-width: 920px) {
  .post_body-policy p:first-of-type {
    margin: 0 0 min(4.44vw, 64px);
  }
}
.post_body figure.wp-block-image {
  border-radius: 20px;
  margin: 0 0 40px;
}
@media (min-width: 920px) {
  .post_body figure.wp-block-image {
    height: min(34.23611vw, 493px);
    margin: 0 0 min(4.44vw, 64px);
  }
}
.post_body figure.wp-block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}

.form_info {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
  display: block;
  margin: -0.5rem 0 40px;
}
@media (min-width: 920px) {
  .form_info {
    font-size: min(1.66vw, 24px);
    margin: -0.5rem 0 min(5.55vw, 80px);
  }
}
.form_content {
  margin: 0 0 20px;
}
@media (min-width: 920px) {
  .form_content {
    margin: 0 0 min(1.66vw, 24px);
  }
}
.form_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 0 40px;
}
@media (min-width: 920px) {
  .form_item {
    gap: min(1.388vw, 20px);
    margin: 0 0 min(2.77vw, 40px);
  }
}
.form_item_label {
  font-weight: 600;
  line-height: 1.15;
}
.form_item-last {
  margin: 0;
}
.form_wrap {
  width: 100%;
}
.form input,
.form textarea {
  width: 100%;
  padding: 1rem 0.75rem;
  border: none;
  border-radius: 5px;
}
@media (min-width: 920px) {
  .form input,
  .form textarea {
    padding: min(1.388vw, 20px) min(1.11vw, 16px);
  }
}
.form input::-moz-placeholder, .form textarea::-moz-placeholder {
  color: #B3B3B3;
}
.form input::placeholder,
.form textarea::placeholder {
  color: #B3B3B3;
}
.form_radio {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-left: 0.5rem;
}
@media (min-width: 600px) {
  .form_radio {
    flex-direction: row;
    align-items: center;
    gap: min(3.33vw, 48px);
    margin-left: 5px;
  }
}
.form_radio .wpcf7-list-item {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
}
.form input[type=radio],
.form input[type=checkbox] {
  width: auto;
  padding: 0;
  margin: 0;
  scale: 1.5;
  accent-color: #111111;
  cursor: pointer;
}
.form_consent {
  display: flex;
  justify-content: center;
  margin: 20px 0 32px;
}
@media (min-width: 920px) {
  .form_consent {
    margin: min(1.388vw, 20px) 0 min(2.22vw, 32px);
  }
}
.form input[type=checkbox] {
  width: auto;
  padding: 0;
  margin: 0 4px 0 0;
}
.form_submit {
  width: 156px;
  height: 64px;
  position: relative;
  margin: 0 auto;
}
.form_submit input[type=submit] {
  height: 64px;
  padding: 0 40px;
  text-align: left;
  background-color: #F4DB22;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: #111111;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.form_submit::after {
  content: "";
  position: absolute;
  background: url(../img/common/arrow_submit.svg) center center no-repeat;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 40px;
  translate: 0 -50%;
  opacity: 1;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.form_submit.is-disabled::after {
  opacity: 0.35;
}
.form_submit.is-disabled input[type=submit] {
  background-color: #cccccc;
  color: #969696;
}
.form_bottom .wpcf7-spinner {
  display: none !important;
}
.form_request {
  display: none;
  margin: 20px 0 0;
}
@media (min-width: 920px) {
  .form_request {
    margin: min(1.388vw, 20px) 0 0;
  }
}
.form_request_head {
  margin: 0 0 28px;
}
@media (min-width: 920px) {
  .form_request_head {
    margin: 0 0 min(2.77vw, 40px);
  }
}
.form_request_head p {
  line-height: 1.6;
  margin: -0.5rem 0;
}
.form_request_catch {
  font-weight: 600;
  line-height: 1.35;
  display: block;
  margin: 0 0 1rem;
}
@media (min-width: 920px) {
  .form_request_catch {
    margin: 0 0 min(1.388vw, 20px);
  }
}
.form_request_wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 0 28px;
}
@media (min-width: 920px) {
  .form_request_wrap {
    gap: min(1.11vw, 16px);
    margin: 0 0 min(2.77vw, 40px);
  }
}
.form_request_link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.form_request_link_icon {
  width: 24px;
  height: 24px;
}
@media (min-width: 920px) {
  .form_request_link_icon {
    width: min(2.22vw, 32px);
    height: min(2.22vw, 32px);
  }
}
.form_request_link_icon img {
  width: 100%;
  height: 100%;
}
.form_request_link p {
  font-weight: 600;
  line-height: 1.35;
}
@media (min-width: 920px) {
  .form_request_link:hover .stream_line {
    animation: linkLineReverse 0.5s ease forwards;
  }
}
.form_request_up {
  margin: 0 0 20px;
}
@media (min-width: 920px) {
  .form_request_up {
    margin: 0 0 min(1.388vw, 20px);
  }
}
.form_request_info {
  margin: 40px 0 0;
}
@media (min-width: 920px) {
  .form_request_info {
    margin: min(4.44vw, 64px) 0 0;
  }
}
.form_request_info_head {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #24AA5A;
  border-radius: 10px 10px 0 0;
}
@media (min-width: 920px) {
  .form_request_info_head {
    height: min(4.23611vw, 61px);
    padding: 0 min(1.66vw, 24px);
  }
}
.form_request_info_ttl {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}
@media (min-width: 920px) {
  .form_request_info_ttl {
    font-size: min(1.11vw, 16px);
  }
}
.form_request_info_inner {
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
@media (min-width: 920px) {
  .form_request_info_inner {
    padding: min(2.77vw, 40px);
  }
}
.form_request_info_catch {
  font-weight: 600;
  line-height: 1;
  display: block;
  margin: 0 0 1rem;
}
.form_request_info_list li {
  width: 100%;
  display: flex;
  gap: 1rem;
}
@media (min-width: 920px) {
  .form_request_info_list li {
    gap: min(1.388vw, 20px);
  }
}
.form_request_info_list_ttl {
  flex: 0 1 38px;
  font-weight: 600;
  line-height: 1.6;
}
.form_request_info_list_txt {
  flex: 1 1 0;
}
.form_request input[type=file] {
  border: 1px solid #fff;
  padding: 0.5rem;
  border-radius: 0;
}
@media (min-width: 920px) {
  .form_request input[type=file] {
    padding: 10px;
  }
}
.form_request .wpcf7-file #file-upload-button {
  margin: 0 1rem 0 0;
}