@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  line-height: 2.5;
  color: #242B23;
  background-color: #F4F2E9;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

.u-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 1260px) {
  html {
    font-size: 1.2698412698vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

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

html {
  scroll-behavior: smooth;
}

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

ul,
ol {
  list-style: none;
}

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

a {
  text-decoration: none;
}

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

article > * + * {
  margin-top: 1em;
}

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

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  height: 6rem;
  background-color: #ece5de;
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .header {
    height: 5rem;
  }
}

.header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  max-width: 14.5rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .header__logo {
    max-width: 8.4375rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
}

.header__nav-item {
  height: 100%;
}

.header__nav-item a {
  padding: 0.75rem 0.75rem;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #242B23;
  position: relative;
}

.header__nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #242B23;
  transition: width 0.3s ease;
}

.header__nav-item a:hover {
  opacity: 1;
}

.header__nav-item a:hover::after {
  width: 80%;
}

/* 現在のページのリンクに適用するスタイル */
.header__nav-item a.active::after {
  width: 80%;
}

.header__hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    position: relative;
    z-index: 999;
    width: 2.5rem;
    height: inherit;
    cursor: pointer;
    transition: 0.3s;
    display: block;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.5rem;
  height: 0.25rem;
  border-radius: 0.3125rem;
  background-color: #646464;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.375rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.375rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.5rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 7.5rem 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #ece5de;
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 1.25rem 0;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #242B23;
  text-align: center;
}

.footer {
  background-color: #ece5de;
  padding: 7.5rem 0 2rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 2rem 0;
  }
}

.footer__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  margin-bottom: 8.125rem;
}
@media screen and (max-width: 768px) {
  .footer__contact {
    flex-direction: column;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.footer__department {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__department {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}

.footer__flex {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .footer__flex {
    gap: 1rem;
    margin-top: 1.5rem;
  }
}

.footer__flex-img {
  max-width: 12.5rem;
  width: 100%;
  height: auto;
  aspect-ratio: 200/136;
}
@media screen and (max-width: 768px) {
  .footer__flex-img {
    max-width: 6.25rem;
  }
}

.footer__flex-img img {
  height: 100%;
  object-fit: cover;
}

.footer__flex-text {
  font-size: 1rem;
  font-weight: 400;
  font-feature-settings: normal;
}
@media screen and (max-width: 768px) {
  .footer__flex-text {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}

.footer__flex-text a {
  color: #242B23;
}

.footer__map {
  max-width: 30rem;
  width: 100%;
  height: auto;
  aspect-ratio: 480/260;
}
@media screen and (max-width: 768px) {
  .footer__map {
    margin-top: 1.5rem;
  }
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
}

.footer__nav {
  padding-top: 2rem;
}

.footer__nav-items {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__nav-items {
    flex-direction: column;
    height: 14.5rem;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 1.5rem;
  }
}

.footer__nav-item a {
  padding: 0 0.75rem;
  color: #242B23;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer__nav-item a {
    font-size: 0.875rem;
    padding: 0;
  }
}

.footer__copyright {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 2.5rem;
  }
}

.inner {
  max-width: 1310px;
  padding-right: 25px;
  padding-left: 25px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.btn {
  padding: 1rem;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  background-color: #55B166;
  border-radius: 1.875rem;
  color: #fff;
  max-width: 25rem;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .btn {
    max-width: 12.5rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
  }
}

.h1-title {
  text-shadow: 0px 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  font-family: "Kosugi Maru", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  position: relative;
  width: fit-content;
  margin-inline: auto;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .h1-title {
    font-size: 1.5rem;
  }
}

.h1-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.25rem;
  background: rgba(85, 177, 102, 0.3);
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .h1-title::after {
    height: 0.25rem;
    bottom: 0.25rem;
  }
}

.h2-title {
  text-shadow: 0px 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  font-family: "Kosugi Maru", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  position: relative;
  width: fit-content;
  margin-inline: auto;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .h2-title {
    font-size: 1.25rem;
  }
}

.h2-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.25rem;
  background: rgba(85, 177, 102, 0.3);
  bottom: 0.4375rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .h2-title::after {
    height: 0.25rem;
  }
}

.common-under {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .common-under {
    margin-top: 5rem;
  }
}

.breadcrumb {
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding-top: 0.75rem;
  }
}

.common-under__title {
  padding-top: 2.5rem;
  margin-bottom: 5rem;
  text-shadow: 0px 3px 4px #b9b9b9;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  position: relative;
  width: fit-content;
  margin-inline: auto;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .common-under__title {
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    font-size: 1.5rem;
    text-shadow: 0px 2px 4px #b9b9b9;
  }
}

.common-under__title::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.25rem;
  background: rgba(85, 177, 102, 0.3);
  bottom: 0.9375rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .common-under__title::after {
    height: 0.25rem;
    bottom: 0.25rem;
  }
}

.archive-case__title--custom {
  margin-bottom: 2.5rem;
  padding-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .archive-case__title--custom {
    margin-bottom: 1.875rem;
  }
}

.breadcrumb .wrap {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  line-height: 1.2;
}

.breadcrumb span {
  color: #242B23;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .breadcrumb span {
    font-size: 0.625rem;
  }
}

.top-fv {
  font-size: 1.5rem;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .top-fv {
    font-size: 1.125rem;
  }
}

.top-fv__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top-fv__inner {
    padding-inline: 0.625rem 0;
    flex-direction: column;
  }
}

.top-fv__title-sub {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .top-fv__title-sub {
    font-size: 0.875rem;
  }
}

.top-fv__title-main {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 100%;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .top-fv__title-main {
    font-size: 1.75rem;
    line-height: 2rem;
    margin-top: 0.5rem;
  }
}

.top-fv__img-main {
  display: block;
  width: 36vw;
  right: 0;
}
@media screen and (max-width: 768px) {
  .top-fv__img-main {
    width: 100%;
    margin-top: 2.5rem;
  }
}

.top-fv__img-left {
  display: block;
  width: 18.5vw;
  height: auto;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-fv__img-left {
    display: none;
  }
}

.top-concept {
  margin-top: 12.5rem;
}
@media screen and (max-width: 768px) {
  .top-concept {
    margin-top: 2.5rem;
  }
}

.top-concept__inner {
  position: relative;
  padding-block: 6.25rem;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .top-concept__inner {
    padding-block: 2.5rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 0.7) 31.5%, rgba(255, 255, 255, 0.7) 70.5%, rgba(255, 255, 255, 0) 100%);
    border-radius: 6.25rem;
  }
}

.top-concept__description {
  text-align: center;
  color: #242B23;
}

.top-concept__title-sub {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 4rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-concept__title-sub {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-top: 2.5rem;
  }
}

.top-concept__text {
  margin-top: 4rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-concept__text {
    margin-top: 2.5rem;
    line-height: 2rem;
  }
}

.top-concept__img-left {
  position: absolute;
  bottom: 6.6875rem;
  left: 0;
  width: 20rem;
  height: auto;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-concept__img-left {
    width: 5rem;
    bottom: -3rem;
    left: 1.5625rem;
  }
}

.top-concept__img-right {
  position: absolute;
  bottom: 6.6875rem;
  right: 0;
  width: 17.0625rem;
  height: auto;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-concept__img-right {
    width: 5rem;
    right: 1.25rem;
    bottom: -3.25rem;
  }
}

.top-about {
  margin-top: 12.5rem;
}
@media screen and (max-width: 768px) {
  .top-about {
    margin-top: 8.125rem;
  }
}

.top-about__content {
  display: flex;
  justify-content: space-between;
  align-items: bottom;
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .top-about__content {
    display: block;
    margin-top: 1.875rem;
  }
}

.top-about__content-item {
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .top-about__content-item {
    width: 22.5rem;
    margin-bottom: 1.875rem;
    margin-inline: auto;
  }
}

.top-about__content-item01 {
  background-image: url(../images/about01.png);
  position: relative;
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 20.625rem;
}

.top-about__content-item02 {
  background-image: url(../images/about02.png);
  position: relative;
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 20.625rem;
}

.top-about__content-item03 {
  background-image: url(../images/about03.png);
  background-size: cover;
  position: relative;
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 20.625rem;
}

.top-about__content-item-img01 {
  width: 26.875rem;
  height: auto;
}

.top-about__content-item-img02 {
  width: 17.9375rem;
  height: auto;
}

.top-about__content-item-img03 {
  width: 19.6875rem;
  height: auto;
}

.top-about__content-item-title {
  margin-block: 1.125rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .top-about__content-item-title {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 100%;
  }
}

.top-about__content-item-text {
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-about__content-item-text {
    line-height: 2rem;
  }
}

.top-about__text {
  margin-top: 2.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .top-about__text {
    text-align: center;
  }
}

.top-about__btn {
  display: block;
  margin: 4.5rem auto 0;
}

.top-service {
  margin-top: 12.5rem;
}
@media screen and (max-width: 768px) {
  .top-service {
    margin-top: 7.5rem;
  }
}

.top-service__inner {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .top-service__inner {
    display: block;
  }
}

.top-service__img {
  width: 25rem;
  height: auto;
  margin-left: 5rem;
}
@media screen and (max-width: 768px) {
  .top-service__img {
    margin-inline: auto;
    margin-top: 2.5rem;
    width: 22.5rem;
  }
}

.top-service__imgbox {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-service__imgbox {
    max-width: 22.5rem;
    margin-inline: auto;
  }
}

.top-service__text {
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .top-service__text {
    font-size: 1rem;
  }
}

.top-service__img-right {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-service__img-right {
    display: block;
    position: absolute;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    width: 5rem;
    z-index: -1;
  }
}

.top-service__img-left {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-service__img-left {
    display: block;
    position: absolute;
    bottom: 23%;
    left: 0;
    transform: translateY(50%);
    width: 5rem;
    z-index: -1;
  }
}

.top-service__content {
  position: relative;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-service__content {
    margin-top: 0;
  }
}

.top-service__content::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(25%);
  width: 10rem;
  height: 10rem;
  background-image: url(../images/trees.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .top-service__content::before {
    display: none;
  }
}

.top-service__content-text {
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-service__content-text {
    margin-top: 2.5rem;
    text-align: center;
  }
}

.top-service__btn {
  display: block;
  width: fit-content;
  padding-inline: 2.5rem;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 768px) {
  .top-service__btn {
    margin-top: 4rem;
  }
}

.top-achievement {
  margin-top: 12.5rem;
  padding-bottom: 5rem;
  position: relative;
  background-image: url(../images/mountain.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .top-achievement {
    margin-top: 7.5rem;
  }
}

.top-achievement__contents {
  display: flex;
  gap: 3rem;
  position: relative;
  margin-top: 4.375rem;
  justify-content: stretch;
  overflow-x: auto;
  align-items: stretch;
}
.top-achievement__contents::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
.top-achievement__contents::-webkit-scrollbar-thumb {
  background-color: #55B166;
  border-radius: 0.25rem;
}
.top-achievement__contents::-webkit-scrollbar-track {
  background: #FFFFFF;
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  .top-achievement__contents {
    margin-top: 2.5rem;
    padding-left: 0.9375rem;
    gap: 1.5rem;
  }
}

.top-achievement__content {
  display: flex;
  flex-direction: column;
  width: 25rem;
  min-width: 25rem;
}
@media screen and (max-width: 768px) {
  .top-achievement__content {
    width: 85%;
    max-width: 25rem;
    min-width: 17.5rem;
  }
}

.top-achievement__content-item {
  background-color: rgba(255, 255, 255, 0.5);
  padding-bottom: 1.5rem;
  border-bottom-right-radius: 1.875rem;
  border-bottom-left-radius: 1.875rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .top-achievement__content-item {
    padding-inline: 0.9375rem;
  }
}

.top-achievement__content-img {
  width: 25rem;
  height: 17.5rem;
  border-top-right-radius: 1.875rem;
  border-top-left-radius: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-achievement__content-img {
    width: 100%;
    height: 12.25rem;
  }
}

.top-achievement__content-img img {
  border-radius: 1.875rem 1.875rem 0 0;
  width: 25rem;
  height: 17.5rem;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .top-achievement__content-img img {
    width: 100%;
    height: 12.25rem;
  }
}

.top-achievement__content-info {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: solid 0.0625rem #242B23;
  width: 20rem;
  margin: 0 auto;
  padding-top: 2.5rem;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .top-achievement__content-info {
    width: 100%;
    gap: 1.5rem;
    margin-inline: 0;
  }
}

.top-achievement__content-info-date {
  font-size: 0.75rem;
  line-height: 2.5rem;
  min-width: 4.5rem;
}
@media screen and (max-width: 768px) {
  .top-achievement__content-info-date {
    min-width: 4.25rem;
  }
}

.top-achievement__content-info-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-achievement__content-info-title {
    font-size: 1.125rem;
  }
}

.top-achievement__meta-top,
.top-achievement__meta-bottom {
  padding-inline: 2.375rem;
}
@media screen and (max-width: 768px) {
  .top-achievement__meta-top,
  .top-achievement__meta-bottom {
    padding-inline: 0;
  }
}

.top-achievement__content-place {
  text-align: center;
  font-size: 0.75rem;
  margin-block: 1rem 1.5rem;
  font-weight: 500;
  line-height: 1;
  padding-inline: 0.625rem;
}

.top-achievement__content-text {
  line-height: 1.5rem;
  padding-inline: 2.375rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .top-achievement__content-text {
    padding-inline: 0;
  }
}

.top-achievement__content-btn {
  background: none;
  border: 0.25rem solid #55B166;
  color: #242B23;
  position: relative;
  width: 12.5rem;
  height: 2.5rem;
  line-height: 2rem;
  text-align: center;
  padding: 0;
  margin: 2rem auto 0;
  display: block;
}

.top-achievement__content-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(-200%);
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.8625rem solid #55B166;
}

.top-achievement__btn {
  position: absolute;
  display: block;
  bottom: -3.75rem;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.top-article {
  margin-top: 15.625rem;
  background-image: url(../images/top_article_background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-article {
    background-color: #EFEAE5;
    border-top-right-radius: 7.5rem;
    border-bottom-left-radius: 7.5rem;
    padding-bottom: 3.5rem;
    background-image: none;
  }
}

.top-article__title {
  padding-top: 2rem;
}

.top-article__inner {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .top-article__inner {
    position: relative;
  }
}

.top-article__content {
  display: flex;
  background-color: #FFFFFF;
  border-radius: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-article__content {
    position: relative;
    display: block;
    background-color: #FFFFFF;
    border-radius: 0.625rem;
  }
}

.top-article__content-img {
  width: 35rem;
  height: 25rem;
  object-fit: cover;
  border-top-left-radius: 2.5rem;
  border-bottom-left-radius: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-article__content-img {
    height: 15.625rem;
    width: 100%;
    border-bottom-left-radius: 0.625rem;
    border-top-left-radius: 0.625rem;
  }
}

.top-article__content-item {
  padding-inline: 4.375rem;
  border-top-right-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
  border: solid 0.0625rem #242B23;
  border-left: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top-article__content-item {
    border-top-right-radius: 0rem;
    border-bottom-right-radius: 0.625rem;
    border-bottom-left-radius: 0.625rem;
    padding-inline: 2rem;
    padding-bottom: 1.875rem;
    border: none;
  }
}

.top-article__content-info {
  border-bottom: solid 0.0625rem #242B23;
}
@media screen and (max-width: 768px) {
  .top-article__content-info {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1.5rem;
  }
}

.top-article__content-date {
  margin-top: 1.5rem;
  line-height: 2rem;
}
@media screen and (max-width: 768px) {
  .top-article__content-date {
    margin-top: 0;
  }
}

.top-article__content-title {
  font-size: 2rem;
  font-weight: 400;
  font-family: "Kosugi Maru", sans-serif;
  line-height: 1;
  padding-block: 1rem;
}
@media screen and (max-width: 768px) {
  .top-article__content-title {
    font-size: 1.125rem;
  }
}

.top-article__content-text {
  padding-top: 1.5rem;
  line-height: 2.5rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.top-article__content-btn {
  display: block;
  width: 12.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0;
  margin: 1.875rem 0 1.5rem auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-article__content-btn {
    background-color: #FFFFFF;
    content: "";
    font-size: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
  }
}

@media screen and (max-width: 768px) {
  .top-article__content-btn::before,
  .top-article__content-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
  }
}

.top-article__content-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.75rem;
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 1rem solid #fff;
}
@media screen and (max-width: 768px) {
  .top-article__content-btn::before {
    border: 2px dashed #55B166;
    clip-path: inset(0 50% 0 0);
    width: inherit;
    height: inherit;
  }
}

@media screen and (max-width: 768px) {
  .top-article__content-btn::after {
    border: 2px solid #55B166;
    clip-path: inset(0 0 0 50%);
  }
}

@media screen and (max-width: 768px) {
  .top-article__content-btn-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-40%, -50%);
    border-style: solid;
    border-width: 0.375rem 0 0.375rem 0.625rem;
    border-color: transparent transparent transparent #55B166;
  }
}

.top-article__btn {
  display: block;
  margin: 7.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .top-article__btn {
    margin-top: 3.5rem;
  }
}

.top-article__circle-left-bottom01 {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-article__circle-left-bottom01 {
    display: block;
    position: absolute;
    transform: scale(1, -1);
    top: -3.125rem;
    right: 0;
    width: 5rem;
    z-index: 2;
  }
}

.top-article__circle-right-top01 {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-article__circle-right-top01 {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 4.875rem;
    z-index: 2;
  }
}

.top-article__circle-left-bottom02 {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-article__circle-left-bottom02 {
    display: block;
    position: absolute;
    transform: scale(-1, -1);
    bottom: -2.5rem;
    right: 2.5rem;
    width: 5rem;
    z-index: 2;
  }
}

.top-article__circle-right-top02 {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-article__circle-right-top02 {
    display: block;
    position: absolute;
    transform: scale(-1, 1);
    bottom: -3.125rem;
    left: 0;
    width: 5rem;
    z-index: 2;
  }
}

.top-article__circle-right-top03 {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-article__circle-right-top03 {
    display: block;
    position: absolute;
    transform: scale(-1, 1);
    bottom: -3.125rem;
    right: 0;
    width: 5rem;
    z-index: 2;
  }
}

.top-news {
  margin-block: 11.625rem 12.5rem;
}
@media screen and (max-width: 768px) {
  .top-news {
    margin-block: 9.75rem 8.125rem;
    margin-inline: 0.9375rem;
  }
}

.top-news__inner {
  padding-block: 3.5rem;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 6.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-news__inner {
    padding-block: 2rem;
    border-radius: 1.875rem;
  }
}

.top-news__content-lists {
  width: 50vw;
  max-width: 50rem;
  margin: 3.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .top-news__content-lists {
    width: 90%;
  }
}

.top-news__content-list {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5rem;
  border-bottom: 1px solid rgba(85, 177, 102, 0.5);
  filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.25));
  padding-block: 2.5rem;
  padding-right: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-news__content-list {
    padding-block: 0.5rem;
    gap: 1.5rem;
    padding-right: 1.5rem;
  }
}

.top-news__content-list::before {
  position: absolute;
  content: "→";
  height: fit-content;
  right: 0.375rem;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .top-news__content-list::before {
    font-size: 0.75rem;
  }
}

.top-news__content-list:first-child {
  border-top: 1px solid rgba(85, 177, 102, 0.5);
  filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.25));
}

.top-news__content-lists a {
  color: #242B23;
}

.top-news__content-list-info {
  border-bottom: solid 0.0625rem #242B23;
}

.top-news__content-list-date {
  font-size: 0.75rem;
  line-height: 2.5rem;
}

.top-news__content-list-title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.5rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .top-news__content-list-title {
    width: 50%;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.top-news__content-img {
  width: 10rem;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-news__content-img {
    top: 0;
    transform: translateY(0);
    right: 1.875rem;
    width: 5rem;
  }
}

.top-news__btn {
  display: block;
  margin: 2.5rem auto 0;
}

.related__lists {
  padding: 2rem 6.5625rem;
  background-color: #fff;
  border-radius: 3.125rem;
  max-width: 69.5rem;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 13.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .related__lists {
    padding: 2rem 1rem;
    margin-bottom: 7.5rem;
  }
}

.related__lists::after {
  content: "";
  position: absolute;
  right: -1.4375rem;
  width: 19.1875rem;
  height: 19.1875rem;
  top: min(-10vw, -8.875rem);
  background-image: url(../images/related_img.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .related__lists::after {
    width: 8.25rem;
    height: 8.25rem;
    right: -0.625rem;
    top: -2.5rem;
  }
}

.related__list {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .related__list {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}

@media screen and (max-width: 768px) {
  .related__list + .related__list {
    margin-top: 2.5rem;
  }
}

.related__text,
.related__link {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .related__text,
  .related__link {
    line-height: 1.7;
  }
}

.related__link {
  color: #242B23;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .related__link {
    word-break: break-word;
  }
}

.about-concept {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .about-concept {
    margin-top: 2.5rem;
  }
}

.about-concept__inner {
  position: relative;
  padding-block: 6.25rem;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .about-concept__inner {
    padding-block: 2.5rem;
    border-radius: 6.25rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 0.7) 31.5%, rgba(255, 255, 255, 0.7) 70.5%, rgba(255, 255, 255, 0) 100%);
  }
}

.about-concept__description {
  text-align: center;
  color: #242B23;
}

.about-concept__title-sub {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 1.5rem;
  margin-top: 4rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .about-concept__title-sub {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-top: 2.5rem;
  }
}

.about-concept__text {
  margin-top: 4rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .about-concept__text {
    margin-top: 2.5rem;
    line-height: 2rem;
  }
}

.about-concept__img-left {
  position: absolute;
  bottom: 6.6875rem;
  left: 0;
  width: 20rem;
  height: auto;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about-concept__img-left {
    width: 5rem;
    top: 18.75rem;
    bottom: 0;
  }
}

.about-concept__img-right {
  position: absolute;
  bottom: 6.6875rem;
  right: 0;
  width: 17.0625rem;
  height: auto;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about-concept__img-right {
    width: 5rem;
    bottom: 15.625rem;
  }
}

.about-about {
  margin-top: 12.5rem;
}
@media screen and (max-width: 768px) {
  .about-about {
    margin-top: 8.125rem;
  }
}

.about-about__content {
  display: flex;
  justify-content: space-between;
  align-items: bottom;
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .about-about__content {
    display: block;
    margin-top: 1.875rem;
  }
}

.about-about__content-item {
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .about-about__content-item {
    width: 22.5rem;
    margin-bottom: 1.875rem;
    margin-inline: auto;
  }
}

.about-about__content-item01 {
  background-image: url(../images/about01.png);
  position: relative;
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 20.625rem;
}

.about-about__content-item02 {
  background-image: url(../images/about02.png);
  position: relative;
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 20.625rem;
}

.about-about__content-item03 {
  background-image: url(../images/about03.png);
  background-size: cover;
  position: relative;
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 20.625rem;
}

.about-about__content-item-img01 {
  width: 26.875rem;
  height: auto;
}

.about-about__content-item-img02 {
  width: 17.9375rem;
  height: auto;
}

.about-about__content-item-img03 {
  width: 19.6875rem;
  height: auto;
}

.about-about__content-item-title {
  margin-block: 1.125rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .about-about__content-item-title {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 100%;
  }
}

.about-about__content-item-text {
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .about-about__content-item-text {
    line-height: 2rem;
  }
}

.about-about__text {
  margin-top: 2.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .about-about__text {
    text-align: center;
  }
}

.about-about__btn {
  display: block;
  margin: 4.5rem auto 0;
}

.about-structure {
  margin-top: 12.5rem;
}
@media screen and (max-width: 768px) {
  .about-structure {
    margin-top: 7.5rem;
  }
}

.about-structure__inner {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  height: 39.375rem;
}
@media screen and (max-width: 768px) {
  .about-structure__inner {
    border-radius: 1.875rem;
    height: auto;
    width: 90vw;
  }
}

.about-structure__title {
  padding-top: 3.375rem;
}

.about-structure__description {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .about-structure__description {
    margin-top: 1.5rem;
    line-height: 1.5rem;
  }
}

.about-structure__persons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .about-structure__persons-container {
    margin-top: 1.5rem;
    padding-bottom: 2.5rem;
    gap: 1rem;
  }
}

.about-structure__persons {
  width: 26rem;
}
@media screen and (max-width: 768px) {
  .about-structure__persons {
    width: 12.5rem;
  }
}

.about-structure__persons-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.about-structure__persons-item:not(:first-child) {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .about-structure__persons-item:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.about-structure__persons-item-role {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .about-structure__persons-item-role {
    font-size: 0.625rem;
    line-height: 1.5rem;
  }
}

.about-structure__persons-item-name {
  font-size: 1.5rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .about-structure__persons-item-name {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}

.about-structure__img {
  width: 19rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .about-structure__img {
    width: 7.5rem;
  }
}

.about-introduction {
  margin-top: 12.5rem;
  padding-bottom: 12.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-introduction {
    margin-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.about-introduction__title {
  text-align: center;
}

.about-introduction__description {
  font-family: "Kosugi Maru", sans-serif;
  text-align: center;
  margin-top: 5rem;
  font-size: 1.5rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .about-introduction__description {
    margin-top: 2.5rem;
    font-size: 1.125rem;
    line-height: 2.25rem;
  }
}

.about-introduction__content {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  gap: 9.375rem;
}
@media screen and (max-width: 768px) {
  .about-introduction__content {
    flex-direction: column;
    margin-top: 2.5rem;
    gap: 4.5rem;
  }
}

.about-introduction__content-left {
  position: relative;
  padding-left: 9.375rem;
}
@media screen and (max-width: 1440px) {
  .about-introduction__content-left {
    padding-left: 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .about-introduction__content-left {
    padding-left: 0;
    margin-inline: auto;
  }
}

.about-introduction__content-circle-img {
  position: absolute;
  top: -6.25rem;
  left: 0;
  width: 11.5rem;
  height: auto;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about-introduction__content-circle-img {
    width: 6.25rem;
    right: 3.125rem;
    top: -12.5rem;
  }
}

.about-introduction__content-left-img {
  width: 18.75rem;
  height: 25rem;
}

.about-introduction__content-left-item {
  background-color: rgba(186, 215, 108, 0.6);
  text-align: center;
  border-bottom-left-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
  padding-block: 1rem;
  width: 18.75rem;
}

.about-introduction__content-left-item-role {
  font-size: 1rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .about-introduction__content-left-item-role {
    font-size: 0.875rem;
  }
}

.about-introduction__content-left-item-name {
  font-size: 1.5rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .about-introduction__content-left-item-name {
    font-size: 1.125rem;
  }
}

.about-introduction__content-right {
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .about-introduction__content-right {
    position: relative;
    margin-top: 4.5rem;
    width: 100%;
  }
}

.about-introduction__content-right-title {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .about-introduction__content-right-title {
    width: fit-content;
    font-size: 1.125rem;
    line-height: 2.5rem;
    margin-inline: auto;
  }
}

@media screen and (max-width: 768px) {
  .about-introduction__content-right-title-sp {
    display: inline-block;
  }
}

.about-introduction__content-right-text {
  font-size: 1rem;
  line-height: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .about-introduction__content-right-text {
    margin-top: 2rem;
    text-align: center;
    width: 90%;
    margin-inline: auto;
    letter-spacing: -0.04em;
  }
}

.about-introduction__content-right-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 82.875rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .about-introduction__content-right-img {
    height: 100%;
    top: 0;
    bottom: 0;
    width: 100vw;
  }
}

.service-fv__inner {
  position: relative;
}

.service-fv__img-container {
  margin-top: 6.25rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 100%;
  padding: 1.25rem;
}
@media screen and (max-width: 768px) {
  .service-fv__img-container {
    margin-top: 2rem;
  }
}

.service-fv__hyogo-img {
  width: 40rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .service-fv__hyogo-img {
    width: 20rem;
  }
}

.service-fv__left-bottom-img {
  position: absolute;
  bottom: 12.5rem;
  left: 3.125rem;
  width: 14.125rem;
}
@media screen and (max-width: 768px) {
  .service-fv__left-bottom-img {
    width: 3.5rem;
    bottom: 0;
  }
}

.service-fv__right-top-img {
  position: absolute;
  top: 15.625rem;
  right: 3.125rem;
  width: 11.8125rem;
}
@media screen and (max-width: 768px) {
  .service-fv__right-top-img {
    width: 3rem;
    top: 0;
  }
}

.service-content {
  margin-top: 3.75rem;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 768px) {
  .service-content {
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .service-content__inner {
    padding-right: 0;
  }
}

.service-content__faculty {
  margin-top: 12.5rem;
}

.service-content__title {
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .service-content__title {
    font-size: 1.125rem;
    font-weight: 700;
  }
}

.service-content__container-faculty {
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .service-content__container-faculty {
    font-size: 1.125rem;
  }
}

.service-content__container-faculty::before {
  content: "・";
  color: #242B23; /* 色を指定 */
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin-right: 0.25rem;
}
@media screen and (max-width: 768px) {
  .service-content__container-faculty::before {
    font-size: 1.125rem;
  }
}

.service-content__container-date {
  font-size: 1rem;
  line-height: 130%;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .service-content__container-date {
    font-size: 0.875rem;
    font-weight: 700;
  }
}

.service-content__container-table-container {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .service-content__container-table-container {
    overflow-x: scroll;
  }
  .service-content__container-table-container::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
  }
  .service-content__container-table-container::-webkit-scrollbar-thumb {
    background-color: #55B166;
    border-radius: 0.25rem;
  }
  .service-content__container-table-container::-webkit-scrollbar-track {
    background: #FFFFFF;
    border-radius: 0.25rem;
  }
}

.service-content__container-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 768px) {
  .service-content__container-table {
    width: 78.75rem;
    overflow-x: hidden;
  }
}

.service-content__container-last-table {
  margin-bottom: 0;
}

.service-content__container-table th {
  background-color: rgba(85, 177, 102, 0.3);
}

.service-content__container-table td {
  padding-inline: 1.25rem;
}

.service-content__container-table th,
.service-content__container-table td {
  line-height: 130%;
  border: 1px solid #55B166;
  padding-block: 1.875rem;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .service-content__container-table th,
  .service-content__container-table td {
    font-weight: 700;
    line-height: 130%;
  }
}

.service-content__container-table-title {
  text-align: center;
}

.service-content__container-table tr:first-child th:first-child {
  border-top: 1px solid #B9B9B9;
  border-left: 1px solid #B9B9B9;
}

.service-content__container-table-partner {
  width: 15.625rem;
  text-align: center;
}

.service-content__container-table-partner-link {
  position: relative;
  font-weight: normal;
  transition: all 0.3s;
  display: inline;
  color: #242B23;
  background-image: linear-gradient(transparent 97%, #55B166 0);
  background-size: 0 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 0.1em;
}
.service-content__container-table-partner-link span {
  display: inline;
  background-image: linear-gradient(transparent 97%, #55B166 0);
  background-size: 0 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 0.1em;
  transition: all 0.3s;
}
.service-content__container-table-partner-link:hover {
  font-weight: 700;
  background-size: 100% 100%;
  opacity: 1;
}
.service-content__container-table-partner-link:hover span {
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  .service-content__container-table-partner-link {
    background-image: linear-gradient(transparent 95%, #55B166 0);
  }
  .service-content__container-table-partner-link span {
    background-image: linear-gradient(transparent 95%, #55B166 0);
  }
}

.service-content__container-table-date {
  width: 7.5rem;
}

.service-content__container-table-content {
  width: 32.5rem;
  line-height: 150%;
}

.service-content__container-table-content-margin {
  margin-top: 1.5rem;
}

.service-content__container-table-achievement {
  width: 27.5rem;
}

.service-content__container-table ol {
  list-style: none;
  padding-left: 0;
  counter-reset: circle-counter;
}

.service-content__container-table ol li {
  counter-increment: circle-counter;
  position: relative;
  padding-left: 1.2em;
}

.service-content__container-table ol li::before {
  content: counter(circle-counter);
  border: 1px solid #242B23;
  color: #242B23;
  font-size: 0.8em;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0.35em;
}

.service-content__container-table ul {
  list-style: none;
  padding-left: 0;
}

.service-content__container-table ul li {
  position: relative;
  padding-left: 1.5em;
}

.service-content__container-table ul li::before {
  content: "";
  position: absolute;
  left: 0.5em;
  top: 0.4em;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  border: 1px solid #242B23;
}

.news__contents {
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news__contents {
    max-width: 20rem;
  }
}

.news__contents::before,
.news__contents::after,
.news__content a::after {
  content: "";
  position: absolute;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.news__contents::before {
  left: -8.375rem;
  width: 12.9375rem;
  height: 5.75rem;
  top: -4rem;
  background-image: url(../images/news_img01.png);
}
@media screen and (max-width: 768px) {
  .news__contents::before {
    left: -0.9375rem;
    width: 5.75rem;
    height: 2.5625rem;
    top: -1.8125rem;
  }
}

.news__contents::after {
  right: -4.4375rem;
  width: 9.625rem;
  height: 6.25rem;
  bottom: -5.9375rem;
  background-image: url(../images/news_img02.png);
}
@media screen and (max-width: 768px) {
  .news__contents::after {
    right: -0.625rem;
    width: 5.3125rem;
    height: 3.4375rem;
    bottom: -2.625rem;
  }
}

.news__content {
  border-bottom: 1px solid rgba(85, 177, 102, 0.5);
  filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.25));
}

.news__content:first-child {
  border-top: 1px solid rgba(85, 177, 102, 0.5);
  filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.25));
}

.news__content a {
  padding: 1.75rem 3rem 1.75rem 0;
  display: block;
  display: flex;
  align-items: center;
  gap: 5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news__content a {
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    gap: 1.25rem;
  }
}

.news__content a::after {
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../images/arrow.svg);
}
@media screen and (max-width: 768px) {
  .news__content a::after {
    width: 1rem;
    height: 1rem;
    right: 0.3125rem;
  }
}

.news__data,
.news__title {
  color: #242B23;
  font-weight: 400;
}

.news__data {
  font-size: 0.75rem;
}

.news__title {
  font-size: 1rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .news__title {
    font-size: 0.875rem;
  }
}

.news__navi {
  margin-top: 7.5rem;
  margin-bottom: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .news__navi {
    margin-top: 2.5rem;
    margin-bottom: 7.5rem;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .pagination {
    row-gap: 0.9375rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.pagination .page-link,
.pagination .current-page {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .pagination .page-link,
  .pagination .current-page {
    font-size: 0.75rem;
  }
}

.pagination .page-link::before,
.pagination .current-page::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -0.3125rem;
  width: 2.5rem;
  height: 4rem;
  background-image: url(../images/tree.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .pagination .page-link::before,
  .pagination .current-page::before {
    top: -0.0625rem;
    width: 1.5rem;
    height: 2.5rem;
  }
}

.pagination .page-link::after,
.pagination .current-page::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  width: 2rem;
  height: 0.125rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #55B166;
}
@media screen and (max-width: 768px) {
  .pagination .page-link::after,
  .pagination .current-page::after {
    bottom: -0.8125rem;
    width: 1rem;
  }
}

.pagination .page-link::after {
  opacity: 0;
}

.pagination .page-link:hover::after {
  opacity: 1;
}

.pagination .dots {
  color: #55B166;
  font-size: 2.125rem;
  line-height: 0.5;
}
@media screen and (max-width: 768px) {
  .pagination .dots {
    font-size: 1.25rem;
  }
}

.blog-page {
  position: relative;
}

.blog-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/blog_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .blog-page::before {
    background-image: url("../images/blog_bg_sp.png");
    background-position: top;
  }
}

.blog-page__item {
  display: flex;
}
@media screen and (max-width: 768px) {
  .blog-page__item {
    flex-direction: column;
  }
}

.blog-page__item + .blog-page__item {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .blog-page__item + .blog-page__item {
    margin-top: 2rem;
  }
}

.blog-page__img {
  max-width: 35rem;
  width: 100%;
  height: auto;
  aspect-ratio: 560/400;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .blog-page__img {
    max-width: 100%;
    aspect-ratio: 360/252;
  }
}

.blog-page__img img {
  height: 100%;
  object-fit: cover;
  border-radius: 1.875rem 0 0 1.875rem;
}
@media screen and (max-width: 768px) {
  .blog-page__img img {
    border-radius: 0.625rem 0.625rem 0 0;
  }
}

.blog-page__text-wrapper {
  padding: 1.5rem 4.375rem;
  background-color: #fff;
  border: 1px solid #242B23;
  border-left: transparent;
  border-radius: 0 1.875rem 1.875rem 0;
}
@media screen and (max-width: 768px) {
  .blog-page__text-wrapper {
    border-radius: 0 0 0.625rem 0.625rem;
    border: transparent;
    padding: 1rem 2rem 1.625rem;
  }
}

@media screen and (max-width: 768px) {
  .blog-page__flex {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-bottom: 1px solid #242B23;
  }
}

.blog-page__date {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .blog-page__date {
    font-size: 0.75rem;
  }
}

.blog-page__title {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400;
  padding-bottom: 1rem;
  border-bottom: 1px solid #242B23;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .blog-page__title {
    font-size: 1.125rem;
    padding-bottom: 0;
    border-bottom: transparent;
    margin-top: 0;
  }
}

.blog-page__text {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1.25rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 768px) {
  .blog-page__text {
    font-size: 0.875rem;
    margin-top: 0.75rem;
  }
}

.blog-page__link.btn {
  display: block;
  width: 12.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0;
  margin: 1.875rem 0 1.5rem auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .blog-page__link.btn {
    background-color: #FFFFFF;
    content: "";
    font-size: 0;
    max-width: 100%;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    margin: 0 0 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .blog-page__link.btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    border: 2px dashed #55B166;
    clip-path: inset(0 50% 0 0);
  }
}

.blog-page__link.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.75rem;
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 1rem solid #fff;
}
@media screen and (max-width: 768px) {
  .blog-page__link.btn::after {
    border: 2px solid #55B166;
    clip-path: inset(0 0 0 50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 12px;
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  .blog-page__link-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-40%, -50%);
    border-style: solid;
    border-width: 0.375rem 0 0.375rem 0.625rem;
    border-color: transparent transparent transparent #55B166;
  }
}

.blog-page__navi {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .blog-page__navi {
    padding-top: 3.125rem;
  }
}

.blog-article__content {
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 768px) {
  .blog-article__content {
    margin-bottom: 7.5rem;
  }
}

.blog-article__content a {
  color: #55B166 !important;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 1rem;
}

.blog-article__content p {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .blog-article__content p {
    font-size: 0.875rem;
  }
}

.blog-article__content .size-large {
  margin-top: 2.3125rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 768px) {
  .blog-article__content .size-large {
    margin-top: 0.1875rem;
    margin-bottom: 0.6875rem;
  }
}

.blog-article__content .size-large img {
  border-radius: 6.25rem;
}
@media screen and (max-width: 768px) {
  .blog-article__content .size-large img {
    border-radius: 3.125rem;
  }
}

.blog-article__content .size-medium img,
.blog-article__content .size-thumbnail img {
  border-radius: 3.125rem;
}

@media screen and (max-width: 768px) {
  .blog-article__content .size-thumbnail img {
    border-radius: 1.25rem;
    max-height: 7.5rem;
  }
}

.blog-article__content .blog-article__grid {
  display: grid;
  grid-template-columns: 10rem 1fr;
}
@media screen and (max-width: 768px) {
  .blog-article__content .blog-article__grid {
    grid-template-columns: 5rem 1fr;
  }
}

.blog-article__content .blog-article__flex {
  display: grid;
  grid-template-columns: 10rem 1fr;
}
@media screen and (max-width: 768px) {
  .blog-article__content .blog-article__flex {
    grid-template-columns: 5rem 1fr;
    align-items: start !important;
  }
}

.blog-article__content .blog-article__flex p {
  margin-top: 0;
}

.blog-article__flex > *:first-child {
  align-self: start;
}

.blog-article__content .blog-article__flex img {
  border-radius: 3.125rem;
}
@media screen and (max-width: 768px) {
  .blog-article__content .blog-article__flex img {
    border-radius: 1.25rem;
    max-height: 7.5rem;
  }
}

@media screen and (max-width: 768px) {
  .blog-article__content .blog-article__grid img {
    max-height: 7.5rem;
  }
}

.blog-article__content p.has-text-color {
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .blog-article__content p.has-text-color {
    font-size: 0.875rem;
  }
}

.is-blog-title {
  margin-bottom: 0;
  line-height: 1;
}

.is-blog-title::after {
  content: none;
}

.blog__title32 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .blog__title32 {
    font-size: 1.125rem;
    line-height: 2.2;
    margin-top: 0.3125rem;
  }
}

.blog__vol {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 4.75rem;
}
@media screen and (max-width: 768px) {
  .blog__vol {
    font-size: 0.875rem;
    line-height: 2.85;
    margin-top: 1rem;
  }
}

.blog__x {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .blog__x {
    font-size: 0.875rem;
    line-height: 1.78;
    margin-top: 0;
  }
}

.blog__title48 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 5.75rem;
}
@media screen and (max-width: 768px) {
  .blog__title48 {
    font-size: 1rem;
    line-height: 2.5;
    margin-top: 1.375rem;
  }
}

.blog__text20 {
  margin-top: 1.25rem;
}

.blog__gap40 {
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .blog__gap40 {
    gap: 1rem;
  }
}

.blog__color-orange {
  color: #ea9100 !important;
}

.blog__color-green {
  color: #3d8e6e !important;
}

.blog__color-blue {
  color: #6aa5b6 !important;
}

.blog__subtitle48 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .blog__subtitle48 {
    font-size: 1.125rem;
    letter-spacing: -0.03em;
    text-align: center;
    line-height: 1.5;
  }
}

.blog__margin {
  margin: 1.75rem 0 1rem 5rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .blog__margin {
    margin: 0.5rem 0 1rem 1rem;
    font-size: 1rem;
  }
}

.blog-article__content .blog-article__grid {
  margin-bottom: 1rem;
}

.blog__mt28 {
  margin-top: 1.75rem;
}

.blog__h3 {
  font-size: 1.5rem;
  line-height: 1.666;
}
@media screen and (max-width: 768px) {
  .blog__h3 {
    font-size: 1rem;
  }
}

.blog__mt40 {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .blog__mt40 {
    margin-top: 1rem;
  }
}

.case-card {
  margin-top: 3.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .case-card {
    margin-top: 6.25rem;
  }
}

.case-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/case_bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .case-card::before {
    background-image: url("../images/case_bg_sp.png");
  }
}

.case-card__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.875rem;
  row-gap: 3.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .case-card__items {
    grid-template-columns: 1fr;
  }
}

.case-card__items::before {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  top: -3.75rem;
  right: 0;
  width: 20rem;
  height: 12.5rem;
  background-image: url("../images/case_illust01.png");
}
@media screen and (max-width: 768px) {
  .case-card__items::before {
    width: 12.5rem;
    height: 7.8125rem;
    top: -6.875rem;
  }
}

.case-card__item {
  border-radius: 1.875rem;
  position: relative;
}

.case-card__link {
  display: flex;
  flex-direction: column;
}

.case-card__item:nth-child(3n+2) {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .case-card__item:nth-child(3n+2) {
    margin-top: 0;
  }
}

.case-card__item:nth-child(3n+3) {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .case-card__item:nth-child(3n+3) {
    margin-top: 0;
  }
}

.case-card__item::before {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.case-card__item:nth-child(4)::before {
  top: -12.125rem;
  right: 0;
  width: 24.9375rem;
  height: 12.125rem;
  background-image: url("../images/case_illust02.png");
}
@media screen and (max-width: 768px) {
  .case-card__item:nth-child(4)::before {
    width: 7.5rem;
    height: 3.75rem;
    top: -3.75rem;
  }
}

.case-card__item:nth-child(6)::before {
  top: -12.375rem;
  right: -0.375rem;
  width: 25rem;
  height: 12.125rem;
  background-image: url("../images/case_illust03.png");
}
@media screen and (max-width: 768px) {
  .case-card__item:nth-child(6)::before {
    width: 7.5rem;
    height: 3.75rem;
    top: -3.75rem;
  }
}

.case-card__item:nth-child(7)::before {
  top: -8.25rem;
  right: -2.8125rem;
  width: 16.0625rem;
  height: 10rem;
  background-image: url("../images/case_illust04.png");
}
@media screen and (max-width: 768px) {
  .case-card__item:nth-child(7)::before {
    width: 6.25rem;
    height: 3.875rem;
    right: -0.625rem;
    top: -3.75rem;
  }
}

.case-card__item:nth-child(9)::before {
  top: -11.625rem;
  left: -1.5rem;
  width: 11rem;
  height: 12.9375rem;
  background-image: url("../images/case_illust05.png");
}
@media screen and (max-width: 768px) {
  .case-card__item:nth-child(9)::before {
    width: 5rem;
    height: 5.875rem;
    left: -0.625rem;
    top: -3.75rem;
  }
}

.case-card__item:nth-child(10)::before {
  top: -9.375rem;
  left: 0.625rem;
  width: 11.25rem;
  height: 8.625rem;
  background-image: url("../images/case_illust06.png");
}
@media screen and (max-width: 768px) {
  .case-card__item:nth-child(10)::before {
    width: 6.25rem;
    height: 4.8125rem;
    top: -3.75rem;
  }
}

.case-card__item:nth-child(11)::before {
  top: -12.375rem;
  left: 2.5rem;
  width: 20rem;
  height: 15rem;
  background-image: url("../images/case_illust07.png");
}
@media screen and (max-width: 768px) {
  .case-card__item:nth-child(11)::before {
    width: 6.25rem;
    height: 4.6875rem;
    left: 0.625rem;
    top: -3.75rem;
  }
}

.case-card__item:nth-child(12)::before {
  top: -9.8125rem;
  right: 0.5rem;
  width: 11.4375rem;
  height: 7.875rem;
  background-image: url("../images/case_illust08.png");
}
@media screen and (max-width: 768px) {
  .case-card__item:nth-child(12)::before {
    width: 6.25rem;
    height: 4.3125rem;
    top: -3.75rem;
  }
}

.case-card__img {
  max-width: 25rem;
  width: 100%;
  height: auto;
  aspect-ratio: 400/280;
}
@media screen and (max-width: 768px) {
  .case-card__img {
    max-width: 100%;
  }
}

.case-card__img img {
  object-fit: cover;
  height: 100%;
  border-radius: 1.875rem 1.875rem 0 0;
}

.case-card__content {
  background-color: #fff;
  color: #242B23;
  padding: 2rem 2.5rem 1.625rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .case-card__content {
    padding: 0.625rem 1.25rem 1.25rem;
  }
}

.case-card__flex {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 1px solid #242B23;
  padding-bottom: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .case-card__flex {
    justify-content: center;
  }
}

.case-card__date {
  font-size: 0.75rem;
  font-weight: 400;
}

.case-card__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .case-card__title {
    font-size: 1.125rem;
  }
}

.case-card__subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .case-card__subtitle {
    margin-top: 0;
  }
}

.case-card__excerpt {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .case-card__excerpt {
    margin-top: 1rem;
  }
}

.case-card__btn {
  background-color: #c9de8c;
  color: #242B23;
  font-size: 1rem;
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0 0 1.875rem 1.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .case-card__btn {
    padding: 0.5rem;
  }
}

.case-card__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8.125rem;
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 1rem solid #242B23;
}
@media screen and (max-width: 768px) {
  .case-card__btn::after {
    right: 6.25rem;
  }
}

.case-card__navi {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .case-card__navi {
    padding-top: 3.125rem;
  }
}

.case-card__meta-top {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.5rem;
  row-gap: 0.25rem;
  margin-top: 1rem;
}

.case-card__label {
  display: inline-block;
  padding: 0.375rem;
  background-color: #f4f2e9;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: #242B23;
  line-height: 1;
  white-space: nowrap;
}

.case-card__meta-bottom {
  margin-top: 0.5rem;
  word-break: keep-all;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #38a54c;
}

.case-search__group {
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem 2.5rem;
  display: flex;
  gap: 5.625rem;
}
@media screen and (max-width: 768px) {
  .case-search__group {
    padding: 1.25rem;
    flex-direction: column;
    gap: 0.625rem;
  }
}

.case-search__group + .case-search__group {
  margin-top: 0.75rem;
}

.case-search__checkbox-list {
  margin-top: 0.1875rem;
}
@media screen and (max-width: 768px) {
  .case-search__checkbox-list {
    margin-top: 0;
  }
}

.case-search__title {
  color: #38a54c;
  font-size: 1.75rem;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .case-search__title {
    font-size: 1.25rem;
  }
}

.case-search__checkbox-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 2.5rem;
  row-gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .case-search__checkbox-list {
    column-gap: 1.875rem;
    row-gap: 0;
  }
}

.case-search__checkbox-item input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 1.5625rem;
  position: relative;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .case-search__checkbox-item input + span {
    font-size: 1.125rem;
  }
}

.case-search__checkbox-item input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 0.125rem solid #242B23;
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  .case-search__checkbox-item input + span::before {
    border-width: 1px;
  }
}

.case-search__checkbox-item input + span::after {
  content: "";
  margin-top: -0.125rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 0.9375rem;
  height: 0.5rem;
  border-bottom: 0.1875rem solid #242B23;
  border-left: 0.1875rem solid #242B23;
  transition: 0.3s;
  opacity: 0;
}

.case-search__checkbox-item input:checked + span::after {
  opacity: 1;
}

.case-search__group--area.case-search__group {
  flex-direction: column;
  gap: 0;
}

.area-subgroup {
  display: flex;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .area-subgroup {
    flex-direction: column;
    gap: 0.625rem;
  }
}

.case-search__submit.btn {
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  max-width: 15rem;
}
@media screen and (max-width: 768px) {
  .case-search__submit.btn {
    font-size: 0.875rem;
    max-width: 12.5rem;
  }
}

.case-search__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .case-search__btn-wrap {
    margin-top: 1.25rem;
  }
}

.case-search__submit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.125rem;
  transform: translateY(-50%);
  width: 1.875rem;
  height: 1.875rem;
  background-image: url("../images/magnifying_glass_white.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .case-search__submit::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.case-detail {
  margin-bottom: 11.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .case-detail {
    margin-bottom: 7.5rem;
  }
}

.case-detail::before {
  content: "";
  position: absolute;
  top: -8.75rem;
  right: 8%;
  width: 19.125rem;
  height: 14.5rem;
  z-index: -1;
  background-image: url("../images/cloud.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .case-detail::before {
    width: 6.25rem;
    height: 5rem;
    top: -2.5rem;
    right: 0;
  }
}

.case-detail__date {
  padding-left: 2.375rem;
}
@media screen and (max-width: 768px) {
  .case-detail__date {
    padding-left: 0.5rem;
  }
}

.case-detail__date {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .case-detail__date {
    font-size: 0.75rem;
  }
}

.case-detail__fiscal-year {
  font-size: 1.75rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .case-detail__fiscal-year {
    font-size: 1rem;
  }
}

.case-detail__title {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .case-detail__title {
    font-size: 1.25rem;
  }
}

.case-detail__meta {
  display: flex;
  column-gap: 1.875rem;
  row-gap: 0.625rem;
  flex-wrap: wrap;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 400;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .case-detail__meta {
    font-size: 1rem;
    column-gap: 0.625rem;
    margin-top: 1rem;
  }
}

.case-detail__label {
  padding: 5px 8px;
  background-color: #fff;
  border-radius: 0.25rem;
}

.case-detail__label:not(:first-child) {
  margin-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .case-detail__label:not(:first-child) {
    margin-left: 0.625rem;
  }
}

.case-detail__meta-bottom {
  color: #38a54c;
  font-feature-settings: normal;
}

.case-detail__mainimg {
  width: 100%;
  margin-top: 2.5rem;
  aspect-ratio: 1260/848;
}

.case-detail__mainimg img {
  height: 100%;
  border-radius: 6.25rem;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .case-detail__mainimg img {
    border-radius: 3.125rem;
  }
}

.case-detail__flex {
  display: flex;
  margin-top: 5rem;
  gap: 2.125rem;
}
@media screen and (max-width: 768px) {
  .case-detail__flex {
    margin-top: 2rem;
    flex-direction: column;
  }
}

.case-detail__textbox,
.case-detail__imgbox {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .case-detail__textbox,
  .case-detail__imgbox {
    width: 100%;
  }
}

.case-detail__block {
  position: relative;
}

.case-detail__block::before {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.case-detail__block:first-child::before {
  top: 7.375rem;
  right: -2.125rem;
  width: 12.5rem;
  height: 10.375rem;
  background-image: url("../images/case-detail_illust01.png");
}
@media screen and (max-width: 768px) {
  .case-detail__block:first-child::before {
    width: 8.5rem;
    height: 7rem;
    top: -1.5rem;
    right: 0;
  }
}

.case-detail__block:nth-child(2)::before {
  top: 11.875rem;
  left: 0;
  width: 8rem;
  height: 8rem;
  background-image: url("../images/case-detail_illust02.png");
}

.case-detail__block:nth-child(3)::before {
  bottom: -9.125rem;
  right: -1.75rem;
  width: 14.375rem;
  height: 12rem;
  background-image: url("../images/case-detail_illust03.png");
}
@media screen and (max-width: 768px) {
  .case-detail__block:nth-child(3)::before {
    right: 0;
    width: 6.0625rem;
    height: 5rem;
    bottom: -5.625rem;
  }
}

.case-detail__textbox.img-count-0 .case-detail__block + .case-detail__block {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .case-detail__textbox.img-count-0 .case-detail__block + .case-detail__block {
    margin-top: 2rem;
  }
}

.case-detail__textbox.img-count-2 .case-detail__block:first-child {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .case-detail__textbox.img-count-2 .case-detail__block:first-child {
    margin-top: 0;
  }
}
.case-detail__textbox.img-count-2 .case-detail__block + .case-detail__block {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .case-detail__textbox.img-count-2 .case-detail__block + .case-detail__block {
    margin-top: 2.5rem;
  }
}

.case-detail__images.img-count-2 .case-detail__image + .case-detail__image {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .case-detail__images.img-count-2 .case-detail__image + .case-detail__image {
    margin-top: 1.75rem;
  }
}

.case-detail__textbox.img-count-3 .case-detail__block:first-child {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .case-detail__textbox.img-count-3 .case-detail__block:first-child {
    margin-top: 0;
  }
}
.case-detail__textbox.img-count-3 .case-detail__block + .case-detail__block {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .case-detail__textbox.img-count-3 .case-detail__block + .case-detail__block {
    margin-top: 2.5rem;
  }
}

.case-detail__images.img-count-3 .case-detail__image + .case-detail__image {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .case-detail__images.img-count-3 .case-detail__image + .case-detail__image {
    margin-top: 1.75rem;
  }
}

.case-detail__textbox.img-count-4 .case-detail__block:first-child {
  margin-top: 11.25rem;
}
@media screen and (max-width: 768px) {
  .case-detail__textbox.img-count-4 .case-detail__block:first-child {
    margin-top: 0;
  }
}
.case-detail__textbox.img-count-4 .case-detail__block + .case-detail__block {
  margin-top: 12.5rem;
}
@media screen and (max-width: 768px) {
  .case-detail__textbox.img-count-4 .case-detail__block + .case-detail__block {
    margin-top: 2.5rem;
  }
}
.case-detail__textbox.img-count-4 .case-detail__image + .case-detail__image {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .case-detail__textbox.img-count-4 .case-detail__image + .case-detail__image {
    margin-top: 1.75rem;
  }
}

.case-detail__images.img-count-4 .case-detail__image + .case-detail__image {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .case-detail__images.img-count-4 .case-detail__image + .case-detail__image {
    margin-top: 1.75rem;
  }
}

.case-detail__heading {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #242B23;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .case-detail__heading {
    font-size: 1.125rem;
  }
}

.case-detail__block p {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .case-detail__block p {
    margin-top: 0.625rem;
  }
}

.case-detail__url {
  line-height: 1.5;
  word-break: break-all;
}

.case-detail__link {
  display: block;
  color: #242B23;
  text-decoration: underline;
}

.case-detail__wrapper {
  display: flex;
  align-items: end;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .case-detail__wrapper {
    flex-direction: column-reverse;
    gap: 2rem;
    align-items: start;
  }
}

.case-detail__img {
  max-width: 12.5rem;
  width: 100%;
  height: auto;
  aspect-ratio: 200/168;
}

.case-detail__img img {
  height: 100%;
  object-fit: cover;
}

.case-detail__image img {
  height: 100%;
  border-radius: 3.125rem;
}

.privacy {
  margin-bottom: 7.5rem;
}

.privacy__read {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}

.privacy__read a {
  color: #242B23;
}

.privacy__items {
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .privacy__items {
    margin-top: 2.5rem;
  }
}

.privacy__item + .privacy__item {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .privacy__item + .privacy__item {
    margin-top: 2.5rem;
  }
}

.privacy__title {
  position: relative;
  font-size: 2.25rem;
  line-height: 1.75;
  font-weight: 700;
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 768px) {
  .privacy__title {
    font-size: 1.5rem;
  }
}

.privacy__title::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0.0625rem;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #55B166 120px, #ddd 120px, #ddd 100%);
}

.privacy__lists {
  margin-top: 1.25rem;
  counter-reset: number;
}

.privacy__list {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  position: relative;
  counter-increment: number;
  position: relative;
  padding-left: 2.5rem;
}

.privacy__list::before {
  content: counter(number, decimal);
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  background-color: #55B166;
  border-radius: 50%;
  font-weight: bold;
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.privacy__list + .privacy__list {
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .privacy__list + .privacy__list {
    margin-top: 1rem;
  }
}