@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
.l-banner {
  background-color: #F7F5ED;
  padding: 60px 40px;
}
@media (max-width: 828px) {
  .l-banner {
    padding: 40px 20px;
  }
}
.l-banner__container {
  max-width: 1040px;
  margin: auto;
}
.l-banner__title {
  color: #009688;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}
.l-banner__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  justify-content: flex-start;
}
.l-banner__list a {
  max-width: 100%;
  height: 72px;
  border: solid 1px #009688;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #FFF;
  box-sizing: border-box;
}
.l-banner__list a img {
  height: 100%;
}
@media (max-width: 828px) {
  .l-banner__list a img {
    max-width: 100%;
  }
}
.l-banner__list a:hover {
  opacity: 0.7;
}

.l-block {
  padding: 40px 0;
}
@media (max-width: 828px) {
  .l-block {
    padding: 32px 0;
  }
}
.l-block__container {
  text-align: center;
}
.l-block__container--title {
  font-size: 32px;
  color: #CF8C8A;
  font-weight: bold;
  margin-bottom: 32px;
}
@media (max-width: 828px) {
  .l-block__container--title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.l-card .card {
  padding: 20px;
  border: solid 1px #CCC;
  border-radius: 8px;
}
.l-card .card_about {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.l-card .card_about > * {
  width: 100%;
}
.l-card .card_about img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 8px;
  max-width: 400px;
  margin: auto;
}
.l-card .card_about--title {
  color: #CF8C8A;
  text-align: left;
  font-size: 20px;
}
.l-card .card_about--text {
  text-align: left;
  font-size: 15px;
}
.l-card .card_support {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}
@media (max-width: 828px) {
  .l-card .card_support {
    flex-direction: column-reverse;
  }
}
.l-card .card_support--img {
  width: calc(40% - 8px);
  aspect-ratio: 4/3;
  padding: 20px;
  box-sizing: border-box;
}
.l-card .card_support--img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 828px) {
  .l-card .card_support--img img {
    max-height: 180px;
  }
}
@media (max-width: 828px) {
  .l-card .card_support--img {
    width: 100%;
    max-height: 220px;
  }
}
.l-card .card_support--contents {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: calc(60% - 8px);
  position: relative;
}
@media (max-width: 828px) {
  .l-card .card_support--contents {
    width: 100%;
  }
}
.l-card .card_support--contents > * {
  width: 100%;
}
.l-card .card_support img {
  width: 100%;
  border-radius: 8px;
  max-width: 320px;
  margin: auto;
}
.l-card .card_support--title {
  color: #CF8C8A;
  text-align: left;
  font-size: 18px;
  margin-bottom: 8px;
}
.l-card .card_support--subtitle {
  color: #000;
  text-align: left;
  font-size: 16px;
}
.l-card .card_support--text {
  text-align: left;
  font-size: 15px;
  margin-bottom: 60px;
}
.l-card .card_support--btn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: auto;
}
@media (max-width: 828px) {
  .l-card .card_support--btn {
    left: 50%;
    transform: translateX(-50%);
  }
}
.l-card .card_support--btn .button {
  width: 180px;
}
@media (max-width: 828px) {
  .l-card .card_support--btn .button {
    width: 160px;
  }
}

.l-company {
  padding: 20px 0;
}
@media (max-width: 828px) {
  .l-company {
    padding: 32px 0;
  }
}
.l-company__container {
  text-align: left;
}
.l-company__title {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 828px) {
  .l-company__title {
    margin-bottom: 20px;
  }
}
.l-company__title .title {
  font-size: 32px;
  color: #009688;
  font-weight: bold;
  margin-bottom: 32px;
}
@media (max-width: 828px) {
  .l-company__title .title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.l-company__title .mark {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 20px;
}
@media (max-width: 828px) {
  .l-company__title .mark {
    top: -32px;
  }
}
.l-company__title .mark > div {
  border: solid 1px;
  width: 100px;
  text-align: center;
  font-size: 13px;
  border-radius: 8px;
  font-weight: bold;
  padding: 2px 4px;
}
@media (max-width: 828px) {
  .l-company__title .mark > div {
    width: 80px;
  }
}
.l-company__title .mark > div.red {
  border-color: #CF8C8A;
  color: #CF8C8A;
}
.l-company__title .mark > div.blue {
  border-color: #6DB5E3;
  color: #6DB5E3;
}
.l-company__title .mark > div.yellow {
  border-color: #bdac29;
  color: #bdac29;
}
.l-company__tag {
  background-color: #F7F5ED;
  padding: 20px;
  margin: auto;
  border-radius: 8px;
}
@media (max-width: 828px) {
  .l-company__tag {
    padding: 20px;
  }
}
.l-company__tag ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 828px) {
  .l-company__tag ul {
    gap: 10px;
  }
}
.l-company__tag ul li {
  color: #009688;
  font-size: 14px;
}
.l-company__tag ul li::before {
  content: "#";
  margin-right: 2px;
}
.l-company__header .header_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.l-company__header .header_list .list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  border-top: 1px solid #ccc;
  width: 100%;
  padding: 20px 0;
  gap: 40px;
}
@media (max-width: 828px) {
  .l-company__header .header_list .list {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.l-company__header .header_list .list:last-child {
  border-bottom: 1px solid #ccc;
}
.l-company__header .header_list .list__title {
  color: #CF8C8A;
  font-size: 24px;
  font-weight: bold;
  width: 100px;
}
@media (max-width: 828px) {
  .l-company__header .header_list .list__title {
    width: 100%;
  }
}
.l-company__header .header_list .list__text {
  margin-top: 8px;
  font-size: 14px;
  width: calc(100% - 100px - 40px);
}
@media (max-width: 828px) {
  .l-company__header .header_list .list__text {
    margin-top: 0;
    width: 100%;
  }
}
.l-company__photo {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 828px) {
  .l-company__photo {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.l-company__photo--img {
  width: 240px;
  margin: auto;
}
.l-company__photo--img img {
  width: 100%;
  object-fit: contain;
  vertical-align: bottom;
}
.l-company__photo--text {
  width: calc(100% - 240px - 40px);
}
@media (max-width: 828px) {
  .l-company__photo--text {
    width: 100%;
  }
}
.l-company__photo--text.noimg {
  width: 100%;
}
.l-company__photo--text .title {
  color: #009688;
  font-size: 18px;
}
.l-company__photo--text .text {
  font-size: 14px;
  margin-top: 8px;
}
.l-company__summary .summary_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
}
.l-company__summary .summary_list .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  border-top: 1px solid #ccc;
  width: 100%;
  padding: 20px 0 40px;
  gap: 20px;
}
.l-company__summary .summary_list .list:last-child {
  border-bottom: 1px solid #ccc;
}
.l-company__summary .summary_list .list__title {
  color: #6DB5E3;
  font-size: 24px;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.l-company__summary .summary_list .list__text {
  font-size: 14px;
  width: 100%;
  padding: 0 40px;
}
@media (max-width: 828px) {
  .l-company__summary .summary_list .list__text {
    padding: 0;
  }
}

.l-companybtn {
  background-color: #F7F5ED;
  padding: 60px 40px;
}
@media (max-width: 828px) {
  .l-companybtn {
    padding: 40px 20px;
  }
}
.l-companybtn__container {
  max-width: 1040px;
  margin: auto;
}
.l-companybtn__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 828px) {
  .l-companybtn__list {
    flex-direction: column-reverse;
  }
}
.l-companybtn__list .button {
  width: 320px;
  border: solid 1px #009688;
  text-decoration: none;
  padding: 20px;
  border-radius: 40px;
  background-color: #FFF;
  box-sizing: border-box;
  font-size: 20px;
}
@media (max-width: 828px) {
  .l-companybtn__list .button {
    width: 280px;
    padding: 16px;
  }
}

.l-companylist__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
@media (max-width: 828px) {
  .l-companylist__list {
    justify-content: center;
  }
}
.l-companylist .card {
  border: solid 1px #CCC;
  border-radius: 8px;
  width: 260px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 56px;
  position: relative;
  align-content: flex-start;
}
.l-companylist .card__img {
  width: 100%;
}
.l-companylist .card__img img {
  width: 100%;
  vertical-align: bottom;
  object-fit: contain;
  border-radius: 8px 8px 0 0;
}
.l-companylist .card__text {
  text-align: left;
  width: 100%;
}
.l-companylist .card__text--title {
  color: #009688;
  font-size: 16px;
  font-weight: bold;
  padding: 0 8px;
  margin-bottom: 12px;
}
.l-companylist .card__text--text {
  font-size: 13px;
  padding: 8px;
  background-color: #F7F5ED;
}
.l-companylist .card__text--text p {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
.l-companylist .card__button {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}
.l-companylist .card__button .button {
  width: 120px;
  font-size: 14px;
}

.l-entry {
  padding: 20px 0 0;
}
.l-entry .header_list {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
.l-entry .header_list .list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  border-top: 1px solid #ccc;
  width: 100%;
  padding: 30px 0;
  gap: 40px;
  align-items: center;
}
@media (max-width: 828px) {
  .l-entry .header_list .list {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.l-entry .header_list .list:last-child {
  border-bottom: 1px solid #ccc;
}
.l-entry .header_list .list__title {
  color: #6DB5E3;
  font-size: 28px;
  font-weight: bold;
  width: 240px;
}
.l-entry .header_list .list__title .required {
  color: #F66;
  margin-left: 4px;
  font-size: 16px;
  vertical-align: top;
}
.l-entry .header_list .list__title .sub {
  font-size: 16px;
  display: block;
}
@media (max-width: 828px) {
  .l-entry .header_list .list__title {
    width: 100%;
  }
}
.l-entry .header_list .list__input {
  width: calc(100% - 240px - 40px);
}
@media (max-width: 828px) {
  .l-entry .header_list .list__input {
    margin-top: 0;
    width: 100%;
  }
}
.l-entry .header_list .list__input.items {
  display: flex;
  gap: 20px 40px;
  align-items: center;
}
.l-entry .header_list .list__input.items label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  position: relative;
}
.l-entry .header_list .list__ctitle {
  color: #6DB5E3;
  font-size: 20px;
  font-weight: bold;
  width: 200px;
}
.l-entry .header_list .list__ctitle span {
  font-size: 14px;
  display: block;
}
@media (max-width: 828px) {
  .l-entry .header_list .list__ctitle {
    width: 100%;
  }
}
.l-entry .header_list .list__ctext {
  width: calc(100% - 200px - 40px);
  font-size: 14px;
}
@media (max-width: 828px) {
  .l-entry .header_list .list__ctext {
    margin-top: 0;
    width: 100%;
  }
}

.l-confirm {
  display: none;
  position: absolute;
  z-index: 1000;
}
.l-confirm.active {
  display: block;
}
.l-confirm.active .l-confirm__inner {
  opacity: 1;
}
.l-confirm__background {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000 !important;
  opacity: 0.6 !important;
}
.l-confirm__inner {
  opacity: 0;
  position: fixed;
  z-index: 20;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 1040px;
  max-height: 90vh;
  overflow: auto;
  background-color: #FFF;
  transform: translate(-50%, -50%);
}
@media (max-width: 828px) {
  .l-confirm__inner {
    width: 100%;
    max-height: 100vh;
    padding-top: 0px;
  }
}
.l-confirm__container {
  margin: auto;
  max-width: 1200px;
  padding: 40px;
}

.l-explain__container {
  max-width: 920px;
  background-color: #F7F5ED;
  padding: 40px;
  margin: auto;
  border-radius: 8px;
}
@media (max-width: 828px) {
  .l-explain__container {
    padding: 20px;
  }
}
.l-explain__container--text {
  font-size: 16px;
  text-align: left;
}
.l-explain__container--text span {
  color: #009688;
  font-size: 20px;
  font-weight: bold;
}
.l-explain__container--point {
  margin-top: 60px;
  padding: 20px;
  border: solid 1px #009688;
  background-color: #FFF;
  text-align: left;
  border-radius: 0 8px 8px 8px;
  position: relative;
}
.l-explain__container--point::before {
  content: "POINT";
  position: absolute;
  background-color: #009688;
  border-radius: 8px 8px 0 0;
  text-align: center;
  color: #FFF;
  padding: 10px 40px;
  font-size: 14px;
  font-weight: bold;
  top: 0;
  left: -1px;
  transform: translateY(-100%);
}

.l-greed {
  background-color: #B2D4EA;
  padding: 60px 40px;
}
@media (max-width: 828px) {
  .l-greed {
    padding: 40px 20px;
  }
}
.l-greed__container {
  max-width: 1040px;
  background-color: #F7F5ED;
  padding: 40px;
  margin: auto;
  border-radius: 8px;
}
@media (max-width: 828px) {
  .l-greed__container {
    padding: 20px;
  }
}
.l-greed__title {
  color: #6DB5E3;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 828px) {
  .l-greed__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.l-greed__text {
  margin-bottom: 40px;
  font-size: 15px;
}
.l-greed__photo {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 40px;
}
@media (max-width: 828px) {
  .l-greed__photo {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.l-greed__photo--box {
  width: 50%;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
}
@media (max-width: 828px) {
  .l-greed__photo--box {
    width: 100%;
  }
}
.l-greed__photo--box__img {
  width: 100px;
}
@media (max-width: 828px) {
  .l-greed__photo--box__img {
    width: 80px;
  }
}
.l-greed__photo--box__img img {
  border-radius: 50%;
  width: 100%;
}
.l-greed__photo--box__text {
  font-size: 14px;
  width: calc(100% - 100px - 20px);
}
@media (max-width: 828px) {
  .l-greed__photo--box__text {
    width: calc(100% - 80px - 20px);
  }
}

footer {
  background-color: #F0F0F0;
}

.l-footer {
  margin: auto;
  max-width: 1320px;
  box-sizing: border-box;
  padding: 60px 40px 40px;
}
@media (max-width: 828px) {
  .l-footer {
    padding: 40px 40px 20px;
  }
}
@media (max-width: 540px) {
  .l-footer {
    padding: 40px 20px 20px;
  }
}
.l-footer__box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
}
@media (max-width: 828px) {
  .l-footer__box {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.l-footer__box--about {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 400px;
  max-width: 100%;
}
.l-footer__box--about__logo {
  margin-left: 80px;
  padding: 10px 20px;
  position: relative;
  background-color: #FFF;
  border-radius: 16px;
  width: 276px;
}
@media (max-width: 828px) {
  .l-footer__box--about__logo {
    margin-left: 60px;
  }
}
.l-footer__box--about__logo:hover {
  opacity: 0.7;
}
.l-footer__box--about__logo::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 64px;
  background-image: url(../../assets/img/neppi.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 828px) {
  .l-footer__box--about__logo::before {
    left: -60px;
    width: 40px;
    height: 52px;
  }
}
.l-footer__box--about__logo img {
  width: 100%;
}
.l-footer__box--about__copylight {
  font-size: 12px;
  font-weight: bold;
}
.l-footer__box--link {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 200px;
}
.l-footer__box--link a {
  font-size: 15px;
  color: #222;
  width: 100%;
}
.l-footer__box--link a:hover {
  opacity: 0.7;
}

header {
  background-color: #FFF;
  border-bottom: #CCC 1px solid;
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
}

.l-header {
  margin: auto;
  max-width: 1320px;
  box-sizing: border-box;
  padding: 40px 20px;
  height: 94px;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 828px) {
  .l-header {
    padding: 20px;
    height: 74px;
  }
}
.l-header__logo {
  width: 360px;
}
@media (max-width: 828px) {
  .l-header__logo {
    width: 300px;
  }
}
.l-header__logo:hover {
  opacity: 0.7;
}
.l-header__logo img {
  width: 100%;
}
.l-header__list {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
}
@media (max-width: 1024px) {
  .l-header__list {
    display: none;
  }
}
.l-header__list a {
  width: auto;
  align-items: center;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  color: #222;
}
.l-header__list a:hover {
  opacity: 0.7;
}
.l-header__menu {
  display: none;
  width: 120px;
}
@media (max-width: 1024px) {
  .l-header__menu {
    display: block;
  }
}
.l-header__menu .menu-hamburger {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.l-header__menu .menu-hamburger .btn-hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #009688;
  border: solid 2px #009688 !important;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-left: 15px;
  border: none;
}
.l-header__menu .menu-hamburger .btn-hamburger:hover {
  background-color: #FFF;
}
.l-header__menu .menu-hamburger .btn-hamburger:hover .box-hamburger span {
  background-color: #009688;
}
.l-header__menu .menu-hamburger .btn-hamburger.active {
  background-color: #FFF;
}
.l-header__menu .menu-hamburger .btn-hamburger.active span {
  background-color: #009688 !important;
}
.l-header__menu .menu-hamburger .btn-hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(-45deg);
}
.l-header__menu .menu-hamburger .btn-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.l-header__menu .menu-hamburger .btn-hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(45deg);
}
.l-header__menu .menu-hamburger .btn-hamburger .box-hamburger {
  position: relative;
  width: 20px;
  height: 20px;
}
.l-header__menu .menu-hamburger .btn-hamburger .box-hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.l-header__menu .menu-hamburger .btn-hamburger .box-hamburger span:nth-child(1) {
  top: 0;
}
.l-header__menu .menu-hamburger .btn-hamburger .box-hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l-header__menu .menu-hamburger .btn-hamburger .box-hamburger span:nth-child(3) {
  bottom: 0;
}

.l-map {
  background-color: #B2D4EA;
  padding: 60px 40px;
}
@media (max-width: 828px) {
  .l-map {
    padding: 40px 20px;
  }
}
.l-map__container {
  max-width: 1040px;
  background-color: #F7F5ED;
  padding: 40px;
  margin: auto;
  border-radius: 8px;
}
@media (max-width: 828px) {
  .l-map__container {
    padding: 20px 0;
  }
}
.l-map__title {
  color: #6DB5E3;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 828px) {
  .l-map__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.l-map__frame {
  margin-bottom: 40px;
  font-size: 15px;
}
.l-map__frame iframe {
  width: 100%;
  height: 640px;
}

.l-menu {
  display: none;
}
.l-menu.active {
  display: block;
}
.l-menu.active .l-menu__inner {
  opacity: 1;
}
.l-menu__background {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000 !important;
  opacity: 0.6 !important;
}
.l-menu__inner {
  opacity: 0;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  padding-top: 94px;
  width: 100%;
  max-height: 100vh;
  overflow: auto;
  background-color: #F2F4F8;
}
@media (max-width: 828px) {
  .l-menu__inner {
    padding-top: 74px;
  }
}
.l-menu__container {
  margin: auto;
  max-width: 1200px;
  padding: 40px;
}
.l-menu__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 800px;
  margin: auto;
}
.l-menu__list a {
  width: 100%;
  align-items: center;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  color: #222;
}
.l-menu__list a:hover {
  opacity: 0.7;
}

.l-info {
  background-color: #D1E0D1;
  padding: 40px;
}
@media (max-width: 828px) {
  .l-info {
    padding: 40px 20px;
  }
}
.l-info__container {
  max-width: 1040px;
  background-color: #F7F5ED;
  padding: 40px;
  display: flex;
  margin: auto;
  gap: 40px;
  border-radius: 8px;
}
@media (max-width: 828px) {
  .l-info__container {
    padding: 20px;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.l-info__container .box_text {
  width: calc(60% - 20px);
  position: relative;
}
@media (max-width: 828px) {
  .l-info__container .box_text {
    width: 100%;
    max-width: 600px;
    margin: auto;
  }
}
.l-info__container .box_text--title {
  color: #009688;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 828px) {
  .l-info__container .box_text--title {
    font-size: 20px;
  }
}
.l-info__container .box_text--text {
  margin-bottom: 60px;
  font-size: 15px;
}
.l-info__container .box_text--btn {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 828px) {
  .l-info__container .box_text--btn {
    right: 50%;
    transform: translateX(50%);
  }
}
.l-info__container .box_text--btn .button {
  width: 180px;
}
@media (max-width: 828px) {
  .l-info__container .box_text--btn .button {
    width: 160px;
  }
}
.l-info__container .box_img {
  width: calc(40% - 20px);
}
@media (max-width: 828px) {
  .l-info__container .box_img {
    width: 100%;
    text-align: center;
  }
}
.l-info__container .box_img img {
  width: 100%;
  max-width: 400px;
}

/* レイアウトのためのCSS */
body {
  overflow-x: hidden;
  /*  background: #fccf00;*/
  font-family: "Noto Sans JP", "Zen Maru Gothic", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  letter-spacing: 0.2em;
  padding: 0;
  margin: 0;
}

main {
  min-height: calc(100vh - 326px);
  margin: auto;
  position: relative;
}
@media (max-width: 1024px) {
  main {
    min-height: calc(100vh - 450px);
    background-size: 75px;
  }
}
main.sub {
  margin-top: 94px;
}
@media (max-width: 828px) {
  main.sub {
    margin-top: 74px;
  }
}

.l-main {
  max-width: 1120px;
  width: calc(100% - 40px);
  margin: auto;
  background-color: rgba(255, 255, 255, 0.96);
  padding: 40px 0 60px;
}

.title {
  font-weight: bold;
  font-family: "Zen Maru Gothic";
}

@media (max-width: 828px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media (max-width: 828px) {
  .sp {
    display: block !important;
  }
}

button, .button {
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  border: unset;
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 20px;
  cursor: pointer;
  border: solid 2px;
}
@media (max-width: 828px) {
  button, .button {
    font-size: 14px;
  }
}
button.green, .button.green {
  background-color: #009688;
  border-color: #009688;
}
button.green:hover, .button.green:hover {
  color: #009688;
}
button.red, .button.red {
  background-color: #CF8C8A;
  border-color: #CF8C8A;
}
button.red:hover, .button.red:hover {
  color: #CF8C8A;
}
button.blue, .button.blue {
  background-color: #6DB5E3;
  border-color: #6DB5E3;
}
button.blue:hover, .button.blue:hover {
  color: #6DB5E3;
}
button.white, .button.white {
  color: #009688;
  background-color: #FFF;
  border-color: #CCC;
}
button.white:hover, .button.white:hover {
  background-color: #CCC;
  color: #FFF;
}
button:hover, .button:hover {
  background-color: #FFF;
}
button.large, .button.large {
  width: 280px;
  padding: 12px 16px;
  font-size: 20px;
  border-radius: 40px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

input[type=text], input[type=tel], input[type=email], input[type=date], textarea {
  border: solid 1px #6DB5E3;
  padding: 6px 16px;
  font-size: 18px;
  box-sizing: border-box;
  border-radius: 4px;
}

input[type=text], input[type=email], textarea {
  width: 100%;
}

input[type=date], input[type=tel] {
  width: 240px;
}
@media (max-width: 828px) {
  input[type=date], input[type=tel] {
    width: 100%;
  }
}

input[type=radio] {
  width: 20px;
  height: 20px;
  border: solid 1px #6DB5E3;
}

input.error {
  background-color: #FCC;
  position: relative;
}
input + .invalid-feedback {
  color: #F66;
}
input + .invalid-feedback p {
  margin: 0;
  font-size: 14px;
}
input + * + .invalid-feedback {
  color: #F66;
  position: absolute;
  top: 28px;
  width: 200px;
}
input + * + .invalid-feedback p {
  margin: 0;
  font-size: 14px;
}

.spiner {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #009688;
  transform: translate(-50%, -50%);
  animation: scale-blink 1s infinite;
  z-index: 1000;
}

@keyframes blinking {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.9;
  }
}
@keyframes scale-blink {
  0%, 100% {
    transform: scale(0.75);
    opacity: 0.9;
  }
  50% {
    transform: scale(1);
    opacity: 0.5;
  }
}
@keyframes ui-spinner-rotate-right {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ui-spinner-rotate-left {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes ui-spinner-rotate-right {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes ui-spinner-rotate-left {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.l-top {
  margin-top: 94px;
  background-color: #F7F5ED;
}
@media (max-width: 828px) {
  .l-top {
    margin-top: 74px;
    padding-bottom: 140px;
  }
}
.l-top__img {
  max-width: 1280px;
  aspect-ratio: 16/9;
  margin: auto;
  position: relative;
  /* スライドショー */
}
.l-top__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: bottom;
}
.l-top__img--text {
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  bottom: 40px;
  left: 60px;
  padding: 20px 40px;
  box-sizing: border-box;
  z-index: 10;
}
@media (max-width: 828px) {
  .l-top__img--text {
    left: 0;
    bottom: 0;
    transform: translateY(90%);
    width: 100%;
    text-align: center;
    padding: 10px 20px 20px;
  }
}
.l-top__img--text p {
  color: #009688;
  font-weight: bold;
  font-size: 24px;
  font-family: "Zen Maru Gothic";
  margin: 0 0 16px;
  padding: 0;
}
.l-top__img--text p span {
  position: relative;
  z-index: 1;
}
.l-top__img--text p span::before {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #FFE500;
  position: absolute;
  bottom: 2px;
  z-index: -1;
}
.l-top__img--text img {
  width: 500px;
}
@media (max-width: 828px) {
  .l-top__img--text img {
    max-width: 500px;
    width: 100%;
  }
}
.l-top__img .slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}
.l-top__img .slider div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
  opacity: 0;
  animation-name: slide-fade;
  animation-duration: 15s; /* 30秒に変更 */
  animation-iteration-count: infinite;
  transform: scale(1.1); /* 最初に画像を大きくしておく */
}
@keyframes slide-fade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    transform: scale(1); /* ここで画像サイズを1に戻す */
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}
.l-top__img .slider div:first-of-type {
  background-image: url(../../assets/img/top/top_1_1.jpg);
}
.l-top__img .slider div:nth-of-type(2) {
  background-image: url(../../assets/img/top/top_2_2.png);
  animation-delay: 5s; /* 秒数を変更 */
}
.l-top__img .slider div:last-of-type {
  background-image: url(../../assets/img/top/top_3.jpg);
  animation-delay: 10s; /* 秒数を変更 */
}

.l-topsearch__container {
  display: flex;
}
.l-topsearch__container .search_box {
  width: 50%;
  position: relative;
}
.l-topsearch__container .search_box:first-child {
  background-color: #CF8C8A;
  border-radius: 8px 0 0 8px;
}
.l-topsearch__container .search_box:first-child a:hover {
  color: #793E3B;
}
.l-topsearch__container .search_box:first-child a::before {
  background-color: #CF8C8A;
  top: 0;
  right: -59px;
  height: calc(50% + 4px);
  clip-path: polygon(100% 0, 0% 100%, 0 0%);
}
@media (max-width: 828px) {
  .l-topsearch__container .search_box:first-child a::before {
    right: -29px;
  }
}
.l-topsearch__container .search_box:last-child {
  background-color: #6DB5E3;
}
.l-topsearch__container .search_box:last-child a:hover {
  color: #35607E;
}
.l-topsearch__container .search_box:last-child a::before {
  background-color: #6DB5E3;
  bottom: 0;
  left: -59px;
  height: calc(50% + 4px);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media (max-width: 828px) {
  .l-topsearch__container .search_box:last-child a::before {
    left: -29px;
  }
}
.l-topsearch__container .search_box a {
  display: block;
  color: #FFF;
  position: relative;
  padding: 60px 40px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
  cursor: pointer;
}
@media (max-width: 828px) {
  .l-topsearch__container .search_box a {
    padding: 60px 10px;
    font-size: 18px;
    height: 200px;
    box-sizing: border-box;
  }
}
@media (max-width: 540px) {
  .l-topsearch__container .search_box a {
    font-size: 16px;
  }
}
.l-topsearch__container .search_box a::after {
  content: "";
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../assets/img/icon_search.png);
  background-size: contain;
  width: 40px;
  height: 40px;
}
@media (max-width: 828px) {
  .l-topsearch__container .search_box a::after {
    top: 80%;
    right: 50%;
    transform: translateX(50%);
    width: 24px;
    height: 24px;
  }
}
.l-topsearch__container .search_box a::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 60px;
}
@media (max-width: 828px) {
  .l-topsearch__container .search_box a::before {
    width: 30px;
  }
}

@media (max-width: 828px) {
  .sub .l-topsearch {
    width: 100vw;
    margin-left: -20px;
  }
}
.sub .l-topsearch__container .search_box:first-child {
  border-radius: 20px 0 0 20px;
}
.sub .l-topsearch__container .search_box:last-child {
  border-radius: 0 20px 20px 0;
}/*# sourceMappingURL=style.css.map */