@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

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

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

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

html {
  font-size: 62.5%;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: #005934;
}
@media screen and (max-width: 768px) {
  .header {
    height: 100px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 0 140px;
  height: inherit;
  position: relative;
  z-index: 2;
  background-color: #005934;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0 25px;
  }
}
@media screen and (max-width: 375px) {
  .header__inner {
    padding: 0 15px;
  }
}

.header__name {
  display: flex;
  align-items: center;
  margin-right: auto;
  height: inherit;
}

.header__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header__logo__img {
  max-width: 164px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header__logo__img {
    max-width: 110px;
  }
}

.header__logo__text {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .header__logo__text {
    font-size: 1.2rem;
    letter-spacing: 0.04rem;
  }
}

.header__nav {
  height: inherit;
}

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

.header__item:not(:first-child) {
  margin-left: 60px;
}

.header__link {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 12px;
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}

.header__link:hover {
  opacity: 1;
}

.header__link:hover::after {
  transform: scale(1, 1);
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 32px;
  right: 29px;
  width: 42px;
  height: 37px;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 7px;
  background-color: #fff;
  transition: transform 0.3s;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 15px;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

.hamburger.is-active span:first-child {
  top: 15px;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}

.drawer-menu {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background: #F4F7FC url(../images/drawer-menu-img.png) no-repeat bottom right/50%;
}

.drawer-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
  padding: 0 2rem;
}

.drawer-menu__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.drawer-menu__item {
  display: inline-block;
  border-bottom: 1px dotted #333;
  width: 100%;
  text-align: center;
  padding: 3.2rem 0;
}

.drawer-menu__link {
  font-size: 1.6rem;
  letter-spacing: 0.04rem;
  line-height: 1.88;
  font-weight: 700;
  color: #333;
}

.mv {
  background-color: #005934;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv {
    padding-bottom: 105px;
  }
}

.mv__img {
  padding-left: 18rem;
}
@media screen and (max-width: 768px) {
  .mv__img {
    padding-left: 0;
  }
}

.mv__text {
  max-width: 535px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  position: absolute;
  bottom: 30px;
  left: 80px;
}
@media screen and (max-width: 1200px) {
  .mv__text {
    left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .mv__text {
    padding: 20px;
    max-width: 89%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
}

.mv__text__text {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .mv__text__text {
    font-size: 1.8rem;
    line-height: 150%;
    padding-left: 20px;
  }
}

.mv__text__title {
  font-size: 4rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #5170c6;
  margin: 12px 0 0 -20px;
}
@media screen and (max-width: 768px) {
  .mv__text__title {
    font-size: 3.2rem;
    margin: 24px 0 0 0;
  }
}

.top-project {
  background: url(../images/top-project-right.png) no-repeat top 25px right 33px/187px, url(../images/top-project-text.png) no-repeat top 120px left 10px/454px, url(../images/top-project-left.png) no-repeat bottom 10px left 9px/129px, #F4F7FC;
}
@media screen and (max-width: 768px) {
  .top-project {
    background: url(../images/top-project-right.png) no-repeat top 129px right -1px/77px, url(../images/top-project-text.png) no-repeat top 170px left 1px/199px, url(../images/top-project-left-sp.png) no-repeat bottom 18px left 4px/63px, #F4F7FC;
  }
}

.project__banner__items {
  display: flex;
  align-items: stretch;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .project__banner__items {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6rem;
  }
}
@media screen and (max-width: 375px) {
  .project__banner__items {
    gap: 0;
  }
}

.project__banner__item {
  background: url(../images/project__banner__item1.jpg) no-repeat center/cover;
  width: 25%;
  padding: 5px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .project__banner__item {
    width: 48%;
  }
}
@media screen and (max-width: 680px) {
  .project__banner__item {
    background: url(../images/project__banner__item1-sp.jpg) no-repeat center/cover;
  }
}
@media screen and (max-width: 375px) {
  .project__banner__item {
    width: 50%;
  }
}

.project__banner__item2 {
  background-image: url(../images/project__banner__item2.jpg);
}
@media screen and (max-width: 680px) {
  .project__banner__item2 {
    background: url(../images/project__banner__item2-sp.jpg) no-repeat center/cover;
  }
}

.project__banner__item3 {
  background-image: url(../images/project__banner__item3.jpg);
}
@media screen and (max-width: 680px) {
  .project__banner__item3 {
    background: url(../images/project__banner__item3-sp.jpg) no-repeat center/cover;
  }
}

.project__banner__item4 {
  background-image: url(../images/project__banner__item4.jpg);
}
@media screen and (max-width: 680px) {
  .project__banner__item4 {
    background: url(../images/project__banner__item4-sp.jpg) no-repeat center/cover;
  }
}

.project__banner__item::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 26, 63, 0.8);
  z-index: 1;
}
@media screen and (max-width: 680px) {
  .project__banner__item::after {
    display: none;
  }
}

.project__banner__item:hover::after {
  background-color: rgb(1, 26, 63);
}

.project__banner__item__link {
  position: relative;
  z-index: 2;
}

.project__banner__item__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 39px 5px;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .project__banner__item__body {
    padding: 27px 5px;
  }
}

.project__banner__item__icon {
  max-width: 60px;
  width: 100%;
}

.project__banner__item__text {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  letter-spacing: 0.04rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .project__banner__item__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 375px) {
  .project__banner__item__text {
    font-size: 1.2rem;
  }
}

.link {
  background: url(../images/link-bg.png) no-repeat top 160px right / 275px, #005934;
}
@media screen and (max-width: 768px) {
  .link {
    background: url(../images/link-bg.png) no-repeat top 170px right 2px / 121px, #005934;
  }
}

.link__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 40px;
  -moz-column-gap: 64px;
       column-gap: 64px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .link__items {
    row-gap: 32px;
  }
}

.link__item {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  height: 80px;
  border: 2px solid #fff;
  text-align: center;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .link__item {
    height: 70px;
  }
}
.link__item:hover {
  background-color: #fff;
}

.link__item__link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .link__item__link {
    font-size: 1.6rem;
  }
}
.link__item__link:hover {
  opacity: 1;
}

.link__item:hover .link__item__link {
  color: #005934;
}

.footer {
  background-color: #005934;
  padding: 47px 20px 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 20px 31px;
  }
}

.footer__copyright {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 1.2rem;
  }
}

.rotary-purpose {
  background: url(../images/rotary-purpose-bg.png) no-repeat top 148px right 7px/500px, #fff;
}
@media screen and (max-width: 768px) {
  .rotary-purpose {
    background: url(../images/rotary-purpose-bg.png) no-repeat top 170px right 2px /160px, #fff
  }
}

.rotary__title {
  background-color: #005934;
  opacity: 0.5;
  border-radius: 10px;
  padding: 33px 45px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 80px 0 48px;
}
@media screen and (max-width: 768px) {
  .rotary__title {
    flex-direction: column;
    gap: 24px;
    padding: 24px 21px;
    margin: 60px 0 60px;
  }
}

.rotary__title.rotary-purpose__title {
  padding: 20px 45px;
}
@media screen and (max-width: 768px) {
  .rotary__title.rotary-purpose__title {
    padding: 24px 21px;
  }
}

.rotary__title__icon {
  width: 46px;
}
@media screen and (max-width: 768px) {
  .rotary__title__icon {
    width: 30px;
  }
}

.rotary__title__main {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .rotary__title__main {
    font-size: 1.8rem;
    text-align: center;
  }
}

.rotary-purpose__text.text {
  letter-spacing: 0;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .rotary-purpose__text.text {
    font-size: 1.4rem;
  }
}

.rotary-body__lists {
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .rotary-body__lists {
    padding: 0;
  }
}

.rotary-body__list.text {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 700;
  padding-left: 38px;
}
.rotary-body__list.text:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../images/rotary__check.png) no-repeat center/contain;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .rotary-body__list.text:before {
    width: 18px;
    height: 18px;
  }
}

.rotary-body__list:not(:first-child) {
  margin-top: 24px;
}

.rotary-conduct {
  background: url(../images/rotary-conduct__bg-top.png) no-repeat top 140px left 7px / 520px, url(../images/rotary-conduct__bg-bottom.png) no-repeat bottom right / 242px, #F4F7FC;
}
@media screen and (max-width: 768px) {
  .rotary-conduct {
    background: url(../images/rotary-conduct__bg-top.png) no-repeat top 170px left 2px / 167px, url(../images/rotary-conduct__bg-bottom-sp.png) no-repeat bottom right/147px, #F4F7FC;
  }
}

.rotary-test {
  background: url(../images/rotary-test-bg.png) no-repeat top 150px right 7px/ 240px, #fff;
}
@media screen and (max-width: 768px) {
  .rotary-test {
    background: url(../images/rotary-test-bg.png) no-repeat top 170px right 2px/85px, #fff;
  }
}

.rotary-test__list.text {
  max-width: 960px;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.04em;
  counter-increment: mycounter;
  background-color: #F4F7FC;
  border-radius: 10px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.rotary-test__list.text:before {
  content: counter(mycounter, decimal-leading-zero);
  display: inline-block;
  height: 100%;
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.04em;
  line-height: 180%;
  color: #fff;
  background-color: #005934;
  margin-right: 50px;
  padding: 18px 26px 19px 25px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .rotary-test__list.text:before {
    font-size: 2rem;
    width: 100%;
    text-align: center;
    border-radius: 10px 10px 0 0;
    padding: 2px 0;
    margin: 0 0 16px 0;
    box-shadow: none;
  }
}
@media screen and (max-width: 768px) {
  .rotary-test__list.text {
    line-height: 220%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 16px;
  }
}

.rotary-test__list.text:not(:first-child) {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .rotary-test__list.text:not(:first-child) {
    margin-top: 40px;
  }
}

.about-greeting {
  background: url(../images/about-greeting-left.png) no-repeat top 67px left 37px/ 76px, url(../images/about-greeting-right.png) no-repeat top 145px right 4px / 554px, url(../images/about-greeting-bottom.png) no-repeat bottom 20px right 33px/227px, #fff;
}
@media screen and (max-width: 768px) {
  .about-greeting {
    background: url(../images/about-greeting-left-sp.png) no-repeat top 150px left 20px / 48px, url(../images/about-greeting-right.png) no-repeat top 170px right 2px/173px, url(../images/about-greeting-bottom-sp.png) no-repeat bottom 8px right 0/92px, #fff;
  }
}

.about-greeting__body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  max-width: 760px;
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .about-greeting__body {
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
  }
}

.about-greeting__body__img {
  max-width: 286px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about-greeting__body__img {
    max-width: 260px;
  }
}

.about-greeting__name.text {
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  margin-top: 8px;
}

.about-greeting__body__text {
  flex: 1;
}

.about-greeting__text:nth-child(2) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .about-greeting__text:nth-child(2) {
    margin-top: 40px;
  }
}

.about-policy {
  background: url(../images/about-policy-bg-text.png) no-repeat top 130px left 10px / 377px, url(../images/about-policy-bg-right.png) no-repeat top 102px right 35px / 186px, url(../images/about-policy-bg-bottom.png) no-repeat bottom 0 left 37px / 226px, #F4F7FC;
}
@media screen and (max-width: 768px) {
  .about-policy {
    background: url(../images/about-policy-bg-text.png) no-repeat top 160px left 6px / 118px, url(../images/about-policy-bg-right-sp.png) no-repeat top 35px right / 93px, url(../images/about-policy-bg-bottom-sp.png) no-repeat bottom  7px left 5px / 136px, #F4F7FC;
  }
}

.about-policy__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  margin-top: 80px;
}
.about-policy__title:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 50px;
  background-color: #005934;
  margin-right: 28px;
}
@media screen and (max-width: 768px) {
  .about-policy__title:before {
    height: 30px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 768px) {
  .about-policy__title {
    font-size: 2rem;
    margin-top: 60px;
  }
}

.about-policy__text.text {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .about-policy__text.text {
    margin-top: 40px;
  }
}

.about-policy__cards {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 250px);
  grid-template-rows: repeat(1, 250px);
  margin-top: 80px;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .about-policy__cards {
    max-width: 250px;
    width: 100%;
    grid-template-columns: repeat(1, 100%);
    grid-template-rows: repeat(3, 250px);
    margin: 40px auto 0;
  }
}

.about-policy__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  background-color: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
.about-policy__card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 80px solid transparent;
  border-left: 80px solid #005934;
  z-index: 100;
}
.about-policy__card:after {
  content: "01";
  position: absolute;
  top: 8px;
  left: 9px;
  color: #fff;
  font-size: 2.4rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  z-index: 200;
}

.about-policy__card:nth-child(1) {
  gap: 11px;
}

.about-policy__card:nth-child(2):after {
  content: "02";
}

.about-policy__card:nth-child(3):after {
  content: "03";
}

.about-policy__card__icon {
  width: 82px;
}

.about-policy__card__text.text {
  font-weight: 700;
  text-align: center;
}

.about-overview {
  background: url(../images/about-overview-bg-text.png) no-repeat top 140px right 3px / 606px, #fff;
}
@media screen and (max-width: 768px) {
  .about-overview { 
    background: url(../images/about-overview-bg-text.png) no-repeat top 165px right 3px / 190px, #fff;
  }
}

.about-overview__table {
  border-collapse: collapse;
  margin: 80px auto 0;
  max-width: 700px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about-overview__table {
    margin-top: 60px;
  }
}

.about-overview__table th, .about-overview__table td {
  border: 1px solid #005934;
}

.about-overview__table th {
  font-size: 1.6rem;
  font-weight: 400;
  width: 200px;
  padding: 30px 8px 27px;
}
@media screen and (max-width: 768px) {
  .about-overview__table th {
    width: 100%;
    display: block;
    text-align: left;
    padding: 18px 18px 18px 8px;
    background-color: #F4F7FC;
    font-weight: 700;
  }
}

.about-overview__table td {
  font-size: 1.4rem;
  padding: 16px 16px 16px 24px;
  width: 500px;
}
@media screen and (max-width: 768px) {
  .about-overview__table td {
    width: 100%;
    display: block;
    padding: 24px 12px 24px 8px;
    line-height: 200%;
    border-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .about-overview__table tr:not(:last-child) td {
    border-bottom: 0;
  }
}

.about-overview__table__text:nth-child(2) {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .about-overview__table__text:nth-child(2) {
    margin-top: 16px;
  }
}

.about-history {
  background: url(../images/about-history-bg-text.png) no-repeat top 150px left 13px / 467px, url(../images/about-history-bg-right.png) no-repeat top right / 480px, #F4F7FC;
}
@media screen and (max-width: 768px) {
  .about-history {
    background: url(../images/about-history-bg-text.png) no-repeat top 165px left 6px/146px, url(../images/about-history-bg-right.png) no-repeat top right / 150px, #F4F7FC;
  }
}

.about-history__table {
  max-width: 800px;
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .about-history__table {
    margin-top: 60px;
  }
}

.about-history__table tr {
  margin-top: 24.5px;
  padding-bottom: 24.5px;
  border-bottom: 1px dotted #B4B1B1;
  display: block;
}

@media screen and (max-width: 768px) {
  .about-history__table tr:first-child {
    margin-top: 0;
  }
}

.about-history__table td, .about-history__table th {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .about-history__table td, .about-history__table th {
    display: block;
    width: 100%;
    padding-left: 16px;
  }
}

.about-history__table th {
  width: 180px;
  padding-left: 16px;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media screen and (max-width: 768px) {
  .about-history__table th {
    width: 100%;
    font-weight: 700;
  }
}

@media screen and (max-width: 768px) {
  .about-history__table td {
    padding-left: 16px;
    margin-top: 8px;
    line-height: 200%;
  }
}

.top-project.activity-project {
  background: #fff;
}

.activity-project__banner__items {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .activity-project__banner__items {
    gap: 10px;
  }
}
@media screen and (max-width: 375px) {
  .activity-project__banner__items {
    gap: 0;
  }
}

.activity-project__banner__item {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .activity-project__banner__item {
    width: 48%;
  }
}

.activity-project__banner__item__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border: 1px solid #005934;
  padding: 24px 5px;
}
@media screen and (max-width: 768px) {
  .activity-project__banner__item__body {
    padding: 12px 5px;
  }
}

@media screen and (max-width: 768px) {
  .activity-project__banner__item__icon {
    width: 50px;
  }
}

.activity-project__banner__item__text {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #005934;
  letter-spacing: 0.04rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .activity-project__banner__item__text {
    font-size: 1.6rem;
  }
}


.vocational-service {
  background: url(../images/vocational-service-bg-text.png) no-repeat top 270px right 11px / 670px, url(../images/vocational-service-bg-left.png) no-repeat top 48px left/199px, url(../images/vocational-service-bg-bottom.png) no-repeat bottom 130px right 9px/92px, #F4F7FC;
}
@media screen and (max-width: 768px) {
  .vocational-service {
    background: url(../images/vocational-service-bg-text.png) no-repeat top 320px right 3px / 210px, url(../images/vocational-service-bg-left-sp.png) no-repeat top 6px left 4px/84px, url(../images/vocational-service-bg-bottom.png) no-repeat bottom 15px right 3px/52px, #F4F7FC;
  }
}

.section-title.activity__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.activity__title__icon {
  width: 60px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .activity__title__icon {
    width: 40px;
  }
}

.activity-service__container {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .activity-service__container {
    margin-top: 60px;
  }
}

.activity-service__text.text:not(:first-child) {
  margin-top: 46px;
}
@media screen and (max-width: 768px) {
  .activity-service__text.text:not(:first-child) {
    margin-top: 35px;
  }
}

.activity__gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .activity__gallery {
    gap: 60px;
  }
}

.activity__gallery__img {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .activity__gallery__img {
    max-width: 100%;
  }
}

.community-service {
  background: url(../images/community-service-bg-text.png) no-repeat top 280px left 6px / 735px, url(../images/community-service-bg-right.png) no-repeat top 54px right 15px/189px, url(../images/community-service-bg-bottom.png) no-repeat bottom 14px left 40px/113px, #fff;
}
@media screen and (max-width: 768px) {
  .community-service {
    background: url(../images/community-service-bg-text.png) no-repeat top 300px left 1px/234px, url(../images/community-service-bg-right-sp.png) no-repeat top 15px right 3px/111px, url(../images/community-service-bg-bottom-sp.png) no-repeat bottom 14px left 3px/131px, #fff;
  }
}

.international-service {
  background: url(../images/international-service-bg-text.png) no-repeat top 280px right 10px / 825px, #F4F7FC;
}
@media screen and (max-width: 768px) {
  .international-service {
    background: url(../images/international-service-bg-text.png) no-repeat top 260px right 4px / 260px, #F4F7FC;
  }
}

.activity__gallery__text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  margin-top: 8px;
}

.youth-service {
  background: url(../images/youth-service-bg.png) no-repeat top 280px left / 383px, #fff;
}
@media screen and (max-width: 768px) {
  .youth-service {
    background: url(../images/youth-service-bg.png) no-repeat top 340px left / 120px, #fff;
  }
}

.archive {
  background: url(../images/archive-bg-text.png) no-repeat top 165px right 6px / 470px, #F4F7FC;
}
@media screen and (max-width: 768px) {
  .archive {
    background: url(../images/archive-bg-text.png) no-repeat top 170px right/152px, #F4F7FC;
  }
}

.archive__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 80px;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .archive__container {
    margin-top: 60px;
  }
}

.archive__container__link {
  font-size: 2rem;
  font-weight: 700;
  line-height: 150%;
  color: #333;
}
@media screen and (max-width: 768px) {
  .archive__container__link {
    font-size: 1.6rem;
  }
}

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

.section-title {
  text-align: center;
}

.section__title--sub {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 768px) {
  .section__title--sub {
    font-size: 1.4rem;
  }
}

.section__title--main {
  position: relative;
  font-size: 5.6rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #005934;
  letter-spacing: 0.04rem;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .section__title--main {
    font-size: 4rem;
    letter-spacing: 0;
  }
}
.section__title--main:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  border-radius: 2px;
  background-color: #005934;
}

.section__title--sub.section__title--sub--white, .section__title--main.section__title--main--white {
  color: #fff;
}

.section__title--main.section__title--main--white::after {
  background-color: #fff;
}

.sub-mv {
  text-align: center;
  padding: 46px 0 60px;
  background-color: #F4F7FC;
}
@media screen and (max-width: 768px) {
  .sub-mv {
    padding: 36px 0 42px;
  }
}

.sub-mv__title--sub {
  font-size: 2rem;
  font-weight: 700;
  line-height: 150%;
  color: #333;
}
@media screen and (max-width: 768px) {
  .sub-mv__title--sub {
    font-size: 1.4rem;
  }
}

.sub-mv__title--main {
  font-size: 6.4rem;
  font-weight: 700;
  color: #005934;
  font-family: "Open Sans", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .sub-mv__title--main {
    font-size: 4rem;
  }
}

.section__title--sub.sub-section__title--sub {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  color: #005934;
}
@media screen and (max-width: 768px) {
  .section__title--sub.sub-section__title--sub {
    font-size: 1.4rem;
  }
}

.section__title--main.sub-section__title--main {
  font-size: 3.2rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 150%;
  margin-top: 8px;
}
.section__title--main.sub-section__title--main:after {
  width: 40px;
  height: 3px;
}
@media screen and (max-width: 768px) {
  .section__title--main.sub-section__title--main {
    font-size: 2.4rem;
  }
}

.text {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 180%;
  color: #333;
}

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

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

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

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