@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

/* Set core root defaults */
html {
  scroll-padding-top: 60px;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.6;
}

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

/* Make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/* 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);
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
}

.btn {
  position: relative;
  display: inline-block;
  background-color: #9fc53c;
  border-radius: 4vw;
  height: 100%;
  padding: 1.5vw 10vw 1.5vw 3vw;
  font-size: 2vw;
  color: #fff;
  line-height: 1.2;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 768px) {
  .btn {
    border-radius: 20px;
    padding: 11.6px 76px 11.6px 23px;
    font-size: 15.3px;
  }
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateX(-101%);
  transition: transform 0.5s ease;
  z-index: -1;
  background-color: #fff;
}
.btn::after {
  content: "";
  position: absolute;
  bottom: 0.5vw;
  right: 1.5vw;
  background-color: #fff;
  clip-path: polygon(0 76%, 91% 76%, 69% 62%, 71% 60%, 100% 79%, 0 79%);
  clip-path: path();
  width: 6vw;
  height: 6vw;
}
@media screen and (max-width: 768px) {
  .btn::after {
    bottom: 6px;
    right: 18px;
    width: 40px;
    height: 40px;
  }
}
.btn:hover {
  color: #2977a7;
}
.btn:hover::before {
  transform: translateX(0);
}
.btn:hover::after {
  background-color: #2977a7;
}

.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 100svh;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: #2c2c2c;
  line-height: 1.8;
}
@media screen and (max-width: 480px) {
  body {
    font-size: 0.875rem;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header {
    height: 50px;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 5px 20px;
}
@media screen and (max-width: 768px) {
  .header__container {
    padding: 1px 10px;
  }
}
.header-logo {
  padding: 4px 0;
}
.header-logo a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header-logo img {
    width: 114px;
  }
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-contact {
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .header-contact {
    display: none;
  }
}
.header-contact a {
  position: relative;
  display: inline-block;
  border: 1px solid #9fc53c;
  background-color: #9fc53c;
  border-radius: 20px;
  height: 100%;
  padding: 8px 30px;
  color: #fff;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  .header-contact a {
    font-size: 0.875rem;
  }
}
.header-contact a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateX(-101%);
  transition: transform 0.5s ease;
  z-index: -1;
  background-color: #fff;
}
.header-contact a:hover {
  color: #9fc53c;
}
.header-contact a:hover::before {
  transform: translateX(0);
}

@media screen and (max-width: 768px) {
  .nav-pc {
    display: none;
  }
}
.nav-pc ul {
  display: flex;
  line-height: 1;
}
.nav-pc li {
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .nav-pc li {
    padding: 0 5px;
  }
}
.nav-pc a {
  position: relative;
  display: block;
  padding: 0 5px;
}
@media screen and (max-width: 1024px) {
  .nav-pc a {
    font-size: 0.875rem;
  }
}
.nav-pc a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background-color: #9fc53c;
  transition: width 0.3s ease 0s;
}
.nav-pc a:hover {
  color: #9fc53c;
}
.nav-pc a:hover::before {
  width: 100%;
}
.nav-sp {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
}
@media screen and (max-width: 768px) {
  .nav-sp {
    display: block;
  }
}
.nav-sp__btn {
  float: right;
  position: relative;
  background: #e9e9e9;
  width: 50px;
  height: 50px;
  z-index: 102;
}
.nav-sp__btn span {
  position: absolute;
  left: 14px;
  display: block;
  height: 2px;
  width: 22px;
  border-radius: 5px;
  background: #2c2c2c;
  transition: transform 0.3s;
  cursor: pointer;
}
.nav-sp__btn span:nth-child(1) {
  top: 14px;
}
.nav-sp__btn span:nth-child(2) {
  top: 24px;
}
.nav-sp__btn span:nth-child(3) {
  bottom: 14px;
}
.nav-sp__btn.active span:nth-child(1) {
  transform: translatey(10px) rotate(-45deg);
}
.nav-sp__btn.active span:nth-child(2) {
  display: none;
}
.nav-sp__btn.active span:nth-child(3) {
  transform: translatey(-10px) rotate(45deg);
}
.nav-sp__menu {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e9e9e9;
  padding: 10px;
  z-index: 101;
  overflow-y: auto;
}
.nav-sp__menu .logo {
  padding: 16px;
}
.nav-sp__menu .logo img {
  max-width: 120px;
}
.nav-sp__menu li {
  border-bottom: 1px solid #2c2c2c;
}
.nav-sp__menu li a {
  position: relative;
  display: block;
  padding: 15px 20px;
}
.nav-sp__menu li a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 24px;
  color: #5c5b5b;
}

.breadcrumb {
  background-color: #e6e6e6;
}
.breadcrumb ol {
  display: flex;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 480px) {
  .breadcrumb ol {
    padding: 0 10px;
  }
}
.breadcrumb li {
  position: relative;
  padding: 5px 20px 5px 0;
  font-size: 0.875rem;
  line-height: 1.2;
}
.breadcrumb li::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb a {
  color: #174977;
  text-decoration: underline;
}
.breadcrumb a:hover {
  text-decoration: none;
}

.section-sub-hero {
  position: relative;
  z-index: 0;
  background: #145116;
  background: linear-gradient(314deg, rgb(20, 81, 22) 0%, rgb(159, 197, 60) 100%);
  padding: 40px 0;
  overflow: hidden;
}
.section-sub-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 4vw;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .section-sub-hero h1 {
    font-size: 1.5rem;
  }
}
.section-sub-hero h1 span {
  font-size: 2.4vw;
  letter-spacing: 0.01em;
  color: #ced805;
}
@media screen and (max-width: 480px) {
  .section-sub-hero h1 span {
    font-size: 1rem;
  }
}
.section-sub-hero .bg {
  position: absolute;
  top: -40%;
  left: 0;
  right: -5%;
  bottom: -40%;
  z-index: 1;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .section-sub-hero .bg {
    right: -12%;
  }
}
.section-sub-hero .bg img {
  width: auto;
  height: 100%;
}
.section-title {
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.4;
}
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 1rem;
  }
}
.section-title span {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 480px) {
  .section-title span {
    font-size: 2.25rem;
  }
}
.section-title-2 h2,
.section-title-2 h3 {
  display: flex;
  align-items: center;
  font-family: "Outfit", sans-serif;
  font-size: 2.4vw;
  font-weight: bold;
  line-height: 1;
  color: #174977;
}
@media screen and (max-width: 768px) {
  .section-title-2 h2,
  .section-title-2 h3 {
    font-size: 20px;
  }
}
.section-title-2 h2 img,
.section-title-2 h3 img {
  max-width: 3.636vw;
  margin-right: 0.378vw;
}
@media screen and (max-width: 768px) {
  .section-title-2 h2 img,
  .section-title-2 h3 img {
    max-width: 28px;
    margin-right: 2.9px;
  }
}
.section-title-2 h2 .en,
.section-title-2 h3 .en {
  font-size: 4.09vw;
}
@media screen and (max-width: 768px) {
  .section-title-2 h2 .en,
  .section-title-2 h3 .en {
    font-size: 31px;
  }
}
.section-title-2 .txt {
  margin-top: 1vw;
  font-size: 1.6vw;
  font-weight: 900;
  color: #174977;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .section-title-2 .txt {
    font-size: 0.75rem;
  }
}
.section-link .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3vw;
  width: 100%;
  max-width: 80%;
  margin: 3vw auto;
}
@media screen and (max-width: 480px) {
  .section-link .box {
    grid-template-columns: 1fr;
  }
}
.section-link .box-col a {
  display: block;
  position: relative;
  z-index: 1;
  background-color: #08a1a7;
  padding: 3vw;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  text-align: center;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .section-link .box-col a {
    padding: 23px;
  }
}
.section-link .box-col a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 4vw;
  z-index: 1;
  background-color: #fff;
  clip-path: polygon(0 76%, 91% 76%, 69% 62%, 71% 60%, 100% 79%, 0 79%);
  width: 7vw;
  height: 7vw;
}
@media screen and (max-width: 768px) {
  .section-link .box-col a::after {
    bottom: 3.8px;
    right: 7.6px;
    width: 53.7px;
    height: 53.7px;
  }
}
.section-link .box-col a .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  transition: scale 0.3s ease;
}
.section-link .box-col a .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-link .box-col a:hover {
  background-color: #2c2c2c;
}
.section-link .box-col a:hover .bg {
  scale: 1.1;
}
.section-contact {
  position: relative;
  z-index: 0;
  padding: 8vw 0;
}
@media screen and (max-width: 480px) {
  .section-contact {
    padding-top: 30px;
  }
}
.section-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgba(159, 197, 60, 0.9);
}
.section-contact h2 {
  color: #fff;
  text-align: center;
}
.section-contact__box {
  margin-top: 2vw;
}
@media screen and (max-width: 480px) {
  .section-contact__box {
    margin-top: 20px;
  }
}
.section-contact__box .txt01 {
  line-height: 1.4;
  text-align: center;
  color: #fff;
}
.section-contact__box .box {
  display: grid;
  grid-template-columns: 2fr 2fr;
  width: 100%;
  max-width: 80vw;
  margin: 4vw auto 0;
}
@media screen and (max-width: 768px) {
  .section-contact__box .box {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-top: 40px;
  }
}
.section-contact__box .box-tel {
  border-right: 1px solid #fff;
  padding: 0 10px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .section-contact__box .box-tel {
    border-right: 0;
  }
}
.section-contact__box .box-tel .txt {
  line-height: 1.2;
}
.section-contact__box .box-tel .tel {
  margin-top: 6px;
  line-height: 1;
}
.section-contact__box .box-tel .tel a {
  font-size: 4vw;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .section-contact__box .box-tel .tel a {
    font-size: 50px;
  }
}
@media screen and (max-width: 480px) {
  .section-contact__box .box-tel .tel a {
    font-size: 40px;
  }
}
.section-contact__box .box-tel .tel a img {
  margin-top: -0.4vw;
  margin-right: 0.5vw;
  width: 4vw;
}
@media screen and (max-width: 768px) {
  .section-contact__box .box-tel .tel a img {
    margin-top: -5px;
    width: 50px;
  }
}
@media screen and (max-width: 480px) {
  .section-contact__box .box-tel .tel a img {
    margin-top: -4px;
    width: 40px;
  }
}
.section-contact__box .box-form {
  display: flex;
  justify-content: center;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .section-contact__box .box-form {
    margin-top: 30px;
  }
}
.section-contact__box .box-form a {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 4vw;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  padding: 2vw 3vw;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .section-contact__box .box-form a {
    border-radius: 40px;
    padding: 20px 50px;
  }
}
@media screen and (max-width: 480px) {
  .section-contact__box .box-form a {
    padding: 20px 40px;
    font-size: 1rem;
  }
}
.section-contact__box .box-form a img {
  margin-right: 10px;
}
.section-contact .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}
.section-contact .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer {
  padding: 6vw 0 1vw;
}
.footer-top {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer-top {
    max-width: 100%;
    padding: 0 20px;
  }
}
.footer-top__inner {
  display: flex;
  align-items: center;
  gap: 8vw;
}
@media screen and (max-width: 480px) {
  .footer-top__inner {
    display: block;
  }
}
.footer-logo {
  font-size: 1.4vw;
  text-align: center;
  color: #174977;
}
@media screen and (max-width: 480px) {
  .footer-logo {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-logo a img {
    width: 114px;
  }
}
.footer-address {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  line-height: 1.4;
}
.footer-address h3 {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 500;
}
.footer-address h3::before {
  content: "■";
}
.footer-address h3:first-child {
  margin-top: 0;
}
.footer-nav {
  background-color: #efefef;
  display: flex;
  justify-content: center;
  margin-top: 6vw;
  padding: 6vw 0;
}
.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 30px;
  width: 100%;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .footer-nav ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
    max-width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .footer-nav ul {
    max-width: 100%;
    padding: 0 20px;
  }
}
.footer-nav li {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer-nav li {
    width: 50%;
    padding-right: 10px;
    line-height: 1.2;
    text-align: left;
  }
}
.footer-nav a {
  display: block;
  position: relative;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  white-space: nowrap;
}
.footer-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #9fc53c;
  transition: width 0.3s ease 0s;
}
.footer-nav a:hover {
  color: #9fc53c;
}
.footer-nav a:hover::before {
  width: 100%;
}
.footer-nav a span {
  font-size: 0.75rem;
  font-weight: 400;
}
.footer-img {
  display: flex;
  justify-content: center;
  gap: 1vw;
  margin-top: 2vw;
}
@media screen and (max-width: 768px) {
  .footer-img {
    gap: 10px;
  }
}
.footer-img .img {
  display: flex;
  justify-self: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #e9e9e9;
}

.copyright {
  margin-top: 4vw;
  text-align: center;
  font-size: 0.75rem;
}
