/* 2024/05/14 update */

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Roboto+Condensed:wght@400;700&family=Roboto:wght@400;700&display=swap");
/*
 * Easing function
 * Original：http://easings.net/
 */
.header {
 width:100%;
 padding: 15px 0;
  background: #ffffff;
  position: fixed;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .header {
/*    width: calc(100% - 20px);*/
    padding: 10px;
  }
}
@media screen and (max-width: 750px) {
  .header {
/*    width: calc(100% - 60px);*/
    padding: 20px 30px;
  }
}
@media screen and (max-width: 650px) {
  .header {
/*    width: calc(100% - 20px);*/
    padding: 10px;
  }
}
.header_inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header_inner {
    justify-content: space-between;
  }
}
.header_title {
  width: 290px;
  padding: 0 10px 0 60px;
}
@media screen and (max-width: 768px) {
  .header_title {
    width: 13.0208333333vw;
    padding: 0;
  }
}
@media screen and (max-width: 750px) {
  .header_title {
    width: 26.6666666667vw;
    margin-left: 10px;
    padding-left: 0px;
  }
}
@media screen and (max-width: 650px) {
  .header_title {
    width: 23.0769230769vw;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .header_nav {
    display: none;
  }
}
.header_nav .gnav_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.header_nav .gnav_item {
  margin: 0 30px;
}
.header_nav .gnav_item a {
  display: inline-block;
  color: #222222;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  position: relative;
}
.header_nav .gnav_item a::after {
  content: url(../images/img_star@2x.png);
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.header_nav .gnav_item a:hover {
  color: #2da424;
}
.header_nav .gnav_item a:hover::after {
  opacity: 1;
}
.header_mobileMenu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.header_mobileNav {
  width: calc(100% - 100px);
  padding: 50px;
  position: absolute;
  top: 90px;
  right: 0;
  left: 0;
  transform: translateY(-200%);
  background-color: #ffffff;
  border-radius: 20px;
  transition: ease 0.4s;
}
@media screen and (max-width: 750px) {
  .header_mobileNav {
    width: calc(100% - 60px);
    padding: 100px 30px;
    top: 160px;
  }
}
@media screen and (max-width: 650px) {
  .header_mobileNav {
    width: calc(100% - 100px);
    padding: 50px;
    top: 90px;
  }
}
.header_mobileNav .mobileNav_item {
  padding: 0 0 30px 0;
  border-bottom: 3px solid rgba(213, 16, 0, 0.2);
  border-image: linear-gradient(to right, rgba(213, 16, 0, 0.2) 0%, rgba(45, 164, 36, 0.2) 100%);
  border-image-slice: 1;
}
@media screen and (max-width: 750px) {
  .header_mobileNav .mobileNav_item {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 650px) {
  .header_mobileNav .mobileNav_item {
    padding-bottom: 30px;
  }
}
.header_mobileNav .mobileNav_item a {
  color: #222222;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  .header_mobileNav .mobileNav_item a {
    font-size: 3rem;
  }
}
@media screen and (max-width: 650px) {
  .header_mobileNav .mobileNav_item a {
    font-size: 1.8rem;
  }
}
.header_mobileNav .mobileNav_item:not(:last-child) {
  margin: 0 0 30px 0;
}
@media screen and (max-width: 750px) {
  .header_mobileNav .mobileNav_item:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 650px) {
  .header_mobileNav .mobileNav_item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.header_mobileNav.active {
  transform: translateY(0);
}
.header_hamburger {
  width: 30px;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .header_hamburger {
    width: 60px;
  }
}
@media screen and (max-width: 650px) {
  .header_hamburger {
    width: 30px;
  }
}
.header .hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .hamburger {
    padding: 0;
    margin: 0 30px 0 0;
    display: block;
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
  }
}
@media screen and (max-width: 750px) {
  .header .hamburger {
    margin-right: 60px;
  }
}
@media screen and (max-width: 650px) {
  .header .hamburger {
    margin-right: 30px;
  }
}
.header .hamburger span {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #d51000 0%, #d51000 40%, #2da424 40%, #2da424 100%);
  position: relative;
  transition: ease 0.4s;
  display: block;
}
@media screen and (max-width: 750px) {
  .header .hamburger span {
    height: 2px;
    background: linear-gradient(90deg, #d51000 0%, #d51000 20%, #2da424 20%, #2da424 100%);
  }
}
@media screen and (max-width: 650px) {
  .header .hamburger span {
    height: 1px;
    background: linear-gradient(90deg, #d51000 0%, #d51000 40%, #2da424 40%, #2da424 100%);
  }
}
.header .hamburger span:nth-child(1) {
  top: 0;
}
.header .hamburger span:nth-child(2) {
  margin: 5px 0;
}
@media screen and (max-width: 750px) {
  .header .hamburger span:nth-child(2) {
    margin: 10px 0;
  }
}
@media screen and (max-width: 650px) {
  .header .hamburger span:nth-child(2) {
    margin: 5px 0;
  }
}
.header .hamburger span:nth-child(3) {
  top: 0;
}
.header .hamburger.active span:nth-child(1) {
  background: #2da424;
  top: 5px;
  transform: rotate(45deg);
}
.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.active span:nth-child(3) {
  background: #d51000;
  top: -6px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 750px) {
  .header .hamburger.active span:nth-child(3) {
    top: -18px;
  }
}
@media screen and (max-width: 650px) {
  .header .hamburger.active span:nth-child(3) {
    top: -6px;
  }
}
@media screen and (max-width: 768px) {
  .header .header_btn {
    display: none;
  }
}
.header .header_btn a {
  width: 280px;
  height: 70px;
  margin: 0 15px 0 65px;
  border-radius: 35px;
  cursor: pointer;
  display: block;
  background: url(../images/btn_finder-green@2x.png) no-repeat center/contain;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.header .header_btn a:hover {
  background-image: url(../images/btn_finder-green_hover@2x.png);
  filter: drop-shadow(5px 5px 10px rgba(56, 56, 56, 0.5));
}
.header .header_btn a:hover img:nth-of-type(2) {
  opacity: 0;
}
.header .header_btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.header_mobileBtn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header_mobileBtn {
    width: 60px;
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .header_mobileBtn {
    width: 16vw;
  }
}
@media screen and (max-width: 650px) {
  .header_mobileBtn {
    width: 9.2307692308vw;
  }
}

.footer {
  background: #ffffff;
  border-bottom: 4px solid rgba(213, 16, 0, 0.2);
  border-image: linear-gradient(to right, rgba(213, 16, 0, 0.2) 0%, rgba(45, 164, 36, 0.2) 100%);
  border-image-slice: 1;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 750px) {
  .footer {
    border-bottom-width: 20px;
  }
}
.footer_top {
  padding: 60px 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid rgba(213, 16, 0, 0.2);
  border-image: linear-gradient(to right, rgba(213, 16, 0, 0.2) 0%, rgba(45, 164, 36, 0.2) 100%);
  border-image-slice: 1;
}
@media screen and (max-width: 750px) {
  .footer_top {
    padding: 80px 0;
    margin: 0 4vw;
    flex-direction: column;
    align-items: center;
    border-bottom-width: 4px;
  }
}
@media screen and (max-width: 650px) {
  .footer_top {
    padding: 40px 0;
  }
}
.footer_credit {
  width: 820px;
}
@media screen and (max-width: 768px) {
  .footer_credit {
    width: 42.96875vw;
  }
}
@media screen and (max-width: 750px) {
  .footer_credit {
    width: 100%;
    margin: 0 0 100px 0;
  }
}
@media screen and (max-width: 650px) {
  .footer_credit {
    margin-bottom: 60px;
  }
}
.footer .logo {
  width: 290px;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .footer .logo {
    width: 18.6197916667vw;
  }
}
@media screen and (max-width: 750px) {
  .footer .logo {
    width: 38.1333333333vw;
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 650px) {
  .footer .logo {
    width: 27.6923076923vw;
    margin-bottom: 40px;
  }
}
.footer .copyright {
  color: #222222;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 750px) {
  .footer .copyright {
    font-size: 2.8rem;
    text-align: center;
  }
}
@media screen and (max-width: 650px) {
  .footer .copyright {
    font-size: 1.4rem;
  }
}
.footer_nav {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .footer_nav {
    width: 26.0416666667vw;
  }
}
@media screen and (max-width: 750px) {
  .footer_nav {
    width: 100%;
    margin: 0 0 80px 0;
  }
}
.footer_nav .nav_item a {
  color: #222222;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 750px) {
  .footer_nav .nav_item a {
    font-size: 3rem;
  }
}
@media screen and (max-width: 650px) {
  .footer_nav .nav_item a {
    font-size: 1.8rem;
  }
}
.footer_nav .nav_item:not(:last-child) {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 750px) {
  .footer_nav .nav_item:not(:last-child) {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 750px) {
  .footer_nav .nav_item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.footer_nav .nav_item a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #222222;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.footer_nav .nav_item a:hover::after {
  visibility: visible;
  bottom: -5px;
  opacity: 1;
}
@media screen and (max-width: 750px) {
  .footer_link {
    width: 100%;
  }
}
.footer_link .link_item a {
  color: #222222;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 750px) {
  .footer_link .link_item a {
    font-size: 3rem;
  }
}
@media screen and (max-width: 750px) {
  .footer_link .link_item a {
    font-size: 1.6rem;
  }
}
.footer_link .link_item:not(:last-child) {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 750px) {
  .footer_link .link_item:not(:last-child) {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 650px) {
  .footer_link .link_item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.footer_link .link_item a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #222222;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.footer_link .link_item a:hover::after {
  visibility: visible;
  bottom: -5px;
  opacity: 1;
}
.footer_bottom {
  padding: 60px 0;
}
@media screen and (max-width: 750px) {
  .footer_bottom {
    padding: 80px 0 100px 0;
    margin: 0 4vw;
  }
}
@media screen and (max-width: 650px) {
  .footer_bottom {
    padding: 40px 0;
  }
}
.footer_text {
  color: #222222;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .footer_text {
    font-size: 3rem;
  }
}
@media screen and (max-width: 650px) {
  .footer_text {
    font-size: 1.6rem;
  }
}
.footer .icon-blank {
  width: 12px;
  margin: 0 0 0 10px;
  vertical-align: baseline;
}
@media screen and (max-width: 750px) {
  .footer .icon-blank {
    width: 24px;
  }
}
@media screen and (max-width: 650px) {
  .footer .icon-blank {
    width: 12px;
  }
}
@media screen and (max-width: 768px) {
  .footer #pagetop {
    display: none;
  }
}
.footer #pagetop a {
  width: 60px;
  height: 160px;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  cursor: pointer;
  position: fixed;
  bottom: 0;
  right: 40px;
  display: block;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  filter: drop-shadow(5px 5px 10px rgba(56, 56, 56, 0.4));
}
.footer #pagetop a:hover img:nth-of-type(2) {
  opacity: 0;
}
.footer #pagetop img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.contact {
  padding: 60px 0 70px 0;
  background-color: #2da424;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.contact_title {
  margin: 0 0 30px 0;
  color: #ffffff;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact_title {
    font-size: 6.3rem;
  }
}
@media screen and (max-width: 750px) {
  .contact_title {
    font-size: 12.6rem;
  }
}
@media screen and (max-width: 650px) {
  .contact_title {
    font-size: 4.5rem;
  }
}
.contact_title span {
  margin: 0 0 0 30px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 2.5rem;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .contact_title span {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 750px) {
  .contact_title span {
    margin-top: 40px;
    margin-left: 0;
    font-size: 4.5rem;
    display: block;
  }
}
@media screen and (max-width: 650px) {
  .contact_title span {
    margin-top: 20px;
    font-size: 1.8rem;
  }
}
.contact_inner {
  width: 1200px;
  padding: 30px 50px;
  background-color: #2a9b22;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .contact_inner {
    width: calc(100% - 40px);
    padding: 30px 20px 20px;
  }
}
@media screen and (max-width: 750px) {
  .contact_inner {
    width: calc(100% - 8vw);
    padding: 60px 4vw 20px;
  }
}
@media screen and (max-width: 650px) {
  .contact_inner {
    padding: 30px 15px;
  }
}
.contact_heading {
  padding: 0 0 20px 0;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border-bottom: solid 1px #95cd91;
}
@media screen and (max-width: 768px) {
  .contact_heading {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 750px) {
  .contact_heading {
    font-size: 4.32rem;
  }
}
@media screen and (max-width: 650px) {
  .contact_heading {
    font-size: 2.2rem;
  }
}
.contact_list {
  padding: 30px 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact_list {
    align-items: flex-start;
  }
}
@media screen and (max-width: 750px) {
  .contact_list {
    padding: 0;
    flex-direction: column;
  }
}
.contact_item {
  width: calc(50% - 0.5px);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact_item {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 750px) {
  .contact_item {
    width: 100%;
    padding: 40px 0;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 650px) {
  .contact_item {
    padding: 30px 0;
    font-size: 1.8rem;
  }
}
.contact_item dt {
  margin: 0 0 25px 0;
}
.contact_item dd {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .contact_item dd {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 750px) {
  .contact_item dd {
    font-size: 5.4rem;
  }
}
@media screen and (max-width: 650px) {
  .contact_item dd {
    font-size: 2.8rem;
  }
}
.contact_item dd span {
  margin: 20px 0 0 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .contact_item dd span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 750px) {
  .contact_item dd span {
    margin-top: 40px;
    font-size: 2.52rem;
  }
}
@media screen and (max-width: 650px) {
  .contact_item dd span {
    margin-top: 20px;
    font-size: 1.4rem;
  }
}
.contact_item dd a {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .contact_item dd.tell {
    font-size: 3.4rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 750px) {
  .contact_item dd.tell {
    font-size: 6.8rem;
  }
}
@media screen and (max-width: 750px) {
  .contact_item dd.tell {
    font-size: 3rem;
  }
}
.contact_item dd.tell a {
  text-decoration: none;
}
.contact_item:first-child {
  border-right: solid 1px #95cd91;
}
@media screen and (max-width: 750px) {
  .contact_item:first-child {
    border-right: none;
    border-bottom: solid 1px #95cd91;
  }
}
.contact .icon-mail,
.contact .icon-tell {
  margin: 0 10px 0 0;
  vertical-align: middle;
}
.contact .icon-mail {
  width: 20px;
}
@media screen and (max-width: 750px) {
  .contact .icon-mail {
    width: 40px;
  }
}
@media screen and (max-width: 650px) {
  .contact .icon-mail {
    width: 20px;
  }
}
.contact .icon-tell {
  width: 18px;
}
@media screen and (max-width: 750px) {
  .contact .icon-tell {
    width: 36px;
  }
}
@media screen and (max-width: 650px) {
  .contact .icon-tell {
    width: 18px;
  }
}

.l-container {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-container {
    width: auto;
    padding: 0 3.90625vw;
  }
}
@media screen and (max-width: 750px) {
  .l-container {
    padding: 0 2.6666666667vw;
  }
}

html {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 62.5%;
  background-color: #f2f2f2;
}

.wrapper {
  width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    width: 100%;
  }
}

.text-s {
  font-size: 70%;
}

.text-l {
  font-size: 240%;
}

.text-red {
  color: #d51000;
}

.text-green {
  color: #2da424;
}

img {
  width: 100%;
  vertical-align: bottom;
}

.indent1 {
  text-indent: -1em;
  padding-left: 1em;
}

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

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

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

.index .nav-index > a::after,
.tvcm .nav-tvcm > a::after,
.a .nav-a > a::after,
.a .nav-b > a::after {
  opacity: 1;
}

#js-cover {
  transition: ease 0.4s;
}
#js-cover.active {
  width: 100vw;
  height: 100%;
  position: fixed;
  overflow: scroll;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
}