@charset "UTF-8";
/*
    base
-------------------------------------------------- */
html {
  font-size: 0.0520833333vw;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16rem;
  font-weight: 400;
  line-height: 1.4;
  font-style: normal;
  color: #222222;
}

h1 {
  margin: 0;
}

a {
  color: #222222;
  text-decoration: none;
}
a:focus {
  outline: none;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.1333333333vw;
  }
}
/*
    common
-------------------------------------------------- */
:root {
  --palt: "palt";
  --trim: trim-both cap alphabetic;
  --main-color-green: #80c13f;
}

.inner {
  width: 1280rem;
  margin-inline: auto;
}

.sectitle {
  font-weight: 700;
  line-height: 1;
}
.sectitle .en {
  font-family: "Montserrat", sans-serif;
  font-size: 64rem;
  display: inline-block;
  margin-bottom: 20rem;
}
.sectitle .ja {
  font-size: 16rem;
}

.seclead {
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.5;
  text-box: var(--trim);
}

.spIn {
  display: none;
}

.pcIn {
  display: inline;
}

.alignCenter {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .inner {
    width: 670rem;
  }
  .sectitle .en {
    font-size: 60rem;
  }
  .sectitle .ja {
    font-size: 25rem;
  }
  .seclead {
    font-size: 38rem;
    line-height: 1.5263157895;
  }
  .spIn {
    display: inline;
  }
  .pcIn {
    display: none;
  }
}
/*
    part
-------------------------------------------------- */
.button {
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 240rem;
  height: 60rem;
  padding-inline: 30rem 20rem;
  border-radius: 9999px;
  background: #fff;
}
.button::after {
  content: "";
  display: block;
  width: 33rem;
  height: 9rem;
  background: url(../image/common/arrow_black.svg) center center/100% 100%;
  transition: transform 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover::after {
    transform: translateX(10rem);
  }
}
@media screen and (max-width: 768px) {
  .button {
    font-size: 40rem;
    width: 670rem;
    height: 110rem;
    padding-inline: 50rem;
  }
  .button::after {
    width: 60rem;
    height: 16rem;
  }
}
.button_grad {
  color: #fff;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: 0 center;
  background-size: 200% auto;
  border-radius: 9999px;
  transition: background-position 0.5s;
}
.button_grad:where(main *) {
  width: 240rem;
  height: 60rem;
}
.button_grad.grad_blue {
  background-image: linear-gradient(to right, #0068e2 0%, #0990e3 50%, #0068e2 100%);
}
.button_grad.grad_green {
  background-image: linear-gradient(to right, #3da700 0%, #80c13f 50%, #3da700 100%);
}
.button_grad.has_arrow {
  justify-content: space-between;
  padding-inline: 30rem 20rem;
}
.button_grad.has_arrow::after {
  content: "";
  width: 33rem;
  height: 9rem;
  background: url(../image/common/arrow_white.svg) center center/100% 100%;
}

@media (hover: hover) and (pointer: fine) {
  .button_grad:hover {
    background-position: 100% center;
  }
}
@media screen and (max-width: 768px) {
  .button_grad {
    font-size: 40rem;
    width: 670rem;
    height: 110rem;
  }
  .button_grad.has_arrow {
    padding-inline: 50rem;
  }
  .button_grad.has_arrow::after {
    width: 60rem;
    height: 16rem;
  }
}
/*
    header
-------------------------------------------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  padding: 15rem 40rem 15rem 55rem;
  position: sticky;
  top: 0;
  left: 0;
  z-index: calc(infinity);
}
header .hd_logo {
  width: 413rem;
}
header .hd_logo a {
  transition: opacity 0.3s;
}
header #gnav {
  display: flex;
  align-items: center;
  -moz-column-gap: 40rem;
       column-gap: 40rem;
}
header #gnav .gnav_list {
  display: flex;
  -moz-column-gap: 35rem;
       column-gap: 35rem;
}
header #gnav .gnav_list .menu-item .menu-toggle {
  line-height: 1;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 12rem;
       column-gap: 12rem;
  transition: color 0.3s;
}
header #gnav .gnav_list .menu-item .menu-toggle::after {
  content: "";
  display: inline-block;
  width: 15rem;
  height: 9rem;
  background: #000;
  clip-path: polygon(0 7.5rem, 50% 0, 100% 7.5rem, 13rem 100%, 50% 3rem, 2rem 100%);
  transition: all 0.3s;
}
header #gnav .gnav_list .menu-item .mega-menu {
  position: absolute;
  width: 100%;
  top: 96.52rem;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
  padding-block: 50rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
header #gnav .gnav_list .menu-item .mega-menu .mega-menu-container {
  display: flex;
  -moz-column-gap: 180rem;
       column-gap: 180rem;
}
header #gnav .gnav_list .menu-item .mega-menu .mega-menu-container .mega-menu-head {
  font-size: 32rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  padding: 84rem 110rem 84rem 0;
  border-right: 1rem solid #fff;
}
header #gnav .gnav_list .menu-item .mega-menu .mega-menu-container .mega-menu-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, 66.6666666667rem);
  -moz-column-gap: 90rem;
       column-gap: 90rem;
}
header #gnav .gnav_list .menu-item .mega-menu .mega-menu-container .mega-menu-list li a {
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
  transition: opacity 0.3s;
}
header #gnav .gnav_list .menu-item .mega-menu .mega-menu-container .mega-menu-list li a::before {
  content: "＞";
  flex-shrink: 0;
}
header #gnav .gnav_list .menu-item.open .menu-toggle {
  color: var(--main-color-green);
}
header #gnav .gnav_list .menu-item.open .menu-toggle::after {
  background: var(--main-color-green);
  transform: rotate(180deg);
}
header #gnav .gnav_list .menu-item.open .mega-menu {
  opacity: 1;
  pointer-events: all;
}
header #gnav .gnav_button {
  display: flex;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}
header #gnav .gnav_button li .button_grad {
  width: 190rem;
  height: 60rem;
}
header .hd_button,
header #gnav_sp {
  display: none;
  width: 0;
  height: 0;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  header .hd_logo a:hover,
  header #gnav .gnav_list .menu-item .mega-menu .mega-menu-container .mega-menu-list li a:hover {
    opacity: 0.5;
  }
  header #gnav .gnav_list .menu-item .menu-toggle:hover {
    color: var(--main-color-green);
  }
  header #gnav .gnav_list .menu-item .menu-toggle:hover::after {
    background: var(--main-color-green);
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 30rem 25rem 30rem 35rem;
    box-shadow: 0 7rem 10rem rgba(0, 0, 0, 0.3);
  }
  header .hd_logo {
    width: 560rem;
  }
  header #gnav {
    display: none;
    width: 0;
  }
  header .hd_button {
    display: block;
    position: relative;
    width: 80rem;
    height: 63rem;
    pointer-events: all;
  }
  header .hd_button span {
    position: absolute;
    width: 100%;
    height: 5rem;
    background: #80a63f;
    transition: all 0.3s;
  }
  header .hd_button span:nth-of-type(1) {
    top: 0;
  }
  header .hd_button span:nth-of-type(2) {
    top: 29rem;
  }
  header .hd_button span:nth-of-type(3) {
    top: 58rem;
  }
  header .hd_button.active span:nth-of-type(1) {
    top: 29rem;
    transform: rotate(45deg);
  }
  header .hd_button.active span:nth-of-type(2) {
    width: 0;
  }
  header .hd_button.active span:nth-of-type(3) {
    top: 29rem;
    transform: rotate(-45deg);
  }
  header #gnav_sp {
    position: absolute;
    display: block;
    left: 0;
    top: 150.19rem;
    width: 100%;
    height: calc(100vh - 150.19rem);
    transition: opacity 0.3s;
    background: #fff;
    opacity: 0;
    padding: 40rem 25rem 140rem;
    overflow-y: auto;
  }
  header #gnav_sp.open {
    opacity: 1;
    pointer-events: all;
  }
  header #gnav_sp .gnav_list {
    margin-bottom: 70rem;
  }
  header #gnav_sp .gnav_list li {
    padding-block: 15rem;
    border-bottom: 2rem solid #dddddd;
  }
  header #gnav_sp .gnav_list li .accordion .accordion_head {
    font-size: 32rem;
    font-weight: 500;
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 40rem;
  }
  header #gnav_sp .gnav_list li .accordion .accordion_head .arrow {
    line-height: 0;
    border-left: 1rem solid #dddddd;
    padding: 25rem 0 25rem 25rem;
  }
  header #gnav_sp .gnav_list li .accordion .accordion_head .arrow img {
    width: 26rem;
    transition: transform 0.3s;
  }
  header #gnav_sp .gnav_list li .accordion .accordion_head .arrow img:where(.accordion_head.active *) {
    transform: rotate(180deg);
  }
  header #gnav_sp .gnav_list li .accordion .accordion_child {
    display: none;
    margin-top: 40rem;
    padding-left: 80rem;
    padding-bottom: 35rem;
  }
  header #gnav_sp .gnav_list li .accordion .accordion_child p {
    font-size: 26rem;
    font-weight: 500;
    line-height: 3.2692307692;
    text-box: var(--trim);
  }
  header #gnav_sp .gnav_list li .accordion .accordion_child p a {
    color: #666666;
  }
  header #gnav_sp .gnav_button li + li {
    margin-top: 40rem;
  }
  header #gnav_sp .gnav_button li a {
    width: 560rem;
    height: 100rem;
    margin-inline: auto;
  }
}
/*
    footer
-------------------------------------------------- */
footer {
  border-top: 2rem solid #222222;
  padding-block: 60rem 70rem;
  background: #fff;
  position: relative;
}
footer .ft_head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60rem;
}
footer .ft_head .ft_info .ft_logo {
  width: 131rem;
  margin-bottom: 50rem;
}
footer .ft_head .ft_info .ft_logo a {
  transition: opacity 0.3s;
}
footer .ft_head .ft_info .ft_name {
  font-size: 28rem;
  font-weight: 700;
  line-height: 1.4285714286;
  text-box: var(--trim);
  margin-bottom: 35rem;
}
footer .ft_head .ft_info .ft_name small {
  font-size: 0.6428571429em;
}
footer .ft_head .ft_info .ft_address {
  font-weight: 500;
  line-height: 1.5;
  text-box: var(--trim);
}
footer .ft_head .ft_sitemap {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 90rem;
       column-gap: 90rem;
}
footer .ft_head .ft_sitemap .ft_sitemap_item p {
  font-weight: 700;
  line-height: 2;
}
footer .ft_head .ft_sitemap .ft_sitemap_item p + p {
  margin-top: 20rem;
}
footer .ft_head .ft_sitemap .ft_sitemap_item p a {
  color: #666666;
  transition: all 0.3s;
}
footer .ft_head .ft_sitemap .ft_sitemap_item p a.arrow {
  display: inline-flex;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
}
footer .ft_head .ft_sitemap .ft_sitemap_item p a.arrow::before {
  content: "＞";
  flex-shrink: 0;
}
footer .ft_bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 55rem;
}
footer .ft_bottom .ft_bottom_insta .insta_item + .insta_item {
  margin-top: 30rem;
}
footer .ft_bottom .ft_bottom_insta .insta_item a {
  display: flex;
  align-items: center;
  -moz-column-gap: 20rem;
       column-gap: 20rem;
  transition: opacity 0.3s;
}
footer .ft_bottom .ft_bottom_insta .insta_item a .insta_icon {
  width: 30rem;
}
footer .ft_bottom .ft_bottom_insta .insta_item a p {
  color: #666666;
  font-weight: 500;
}
footer .ft_bottom .ft_bottom_insta .insta_item a p small {
  font-size: 0.75em;
  font-weight: 400;
}
footer .ft_bottom .ft_bottom_logo {
  width: 200rem;
}
footer .ft_bottom .ft_bottom_logo a {
  transition: opacity 0.3s;
}
footer .ft_bottom .button_grad {
  width: 275rem;
  height: 72rem;
}
footer .copy {
  font-size: 14rem;
  line-height: 1;
  font-weight: 500;
  color: #666666;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  footer .ft_head .ft_sitemap .ft_sitemap_item p a:hover,
  footer .ft_head .ft_logo a:hover,
  footer .ft_bottom .ft_bottom_insta .insta_item a:hover,
  footer .ft_bottom .ft_bottom_logo a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding-block: 100rem 60rem;
  }
  footer .ft_head {
    margin-bottom: 75rem;
  }
  footer .ft_head .ft_info .ft_logo {
    width: 637rem;
    margin-bottom: 60rem;
  }
  footer .ft_head .ft_info .ft_name {
    display: none;
  }
  footer .ft_head .ft_info .ft_address {
    font-size: 29rem;
    line-height: 1.8965517241;
  }
  footer .ft_head .ft_sitemap {
    display: none;
  }
  footer .ft_bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 60rem;
    margin-bottom: 100rem;
  }
  footer .ft_bottom .ft_bottom_logo {
    width: 278rem;
    order: 1;
  }
  footer .ft_bottom .ft_bottom_insta {
    display: flex;
    justify-content: space-between;
    width: 100%;
    order: 2;
  }
  footer .ft_bottom .ft_bottom_insta .insta_item a {
    align-items: flex-start;
  }
  footer .ft_bottom .ft_bottom_insta .insta_item a .insta_icon {
    width: 70rem;
  }
  footer .ft_bottom .ft_bottom_insta .insta_item a p {
    font-size: 22rem;
  }
  footer .ft_bottom .ft_bottom_insta .insta_item a p small {
    font-size: 0.8181818182em;
  }
  footer .ft_bottom .ft_bottom_insta .insta_item + .insta_item {
    margin-top: 0;
  }
  footer .ft_bottom .button_grad {
    width: 670rem;
    height: 110rem;
    order: 3;
  }
  footer .copy {
    font-size: 38rem;
  }
}
/*
    pagetop
-------------------------------------------------- */
.pagetop {
  position: fixed;
  right: 45rem;
  bottom: 50rem;
  z-index: 999;
}
.pagetop.fixed {
  position: absolute;
  bottom: auto;
  top: -40rem;
}
.pagetop a {
  display: block;
  position: relative;
  width: 80rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: linear-gradient(to right, #3da700 0%, #80c13f 100%);
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
.pagetop a .arrow {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-top: 2rem solid #fff;
  border-left: 2rem solid #fff;
  transform: rotate(45deg);
  top: 35.5rem;
  left: 31rem;
  transition: top 0.3s;
}
.pagetop.active a {
  opacity: 1;
  pointer-events: all;
}

@media (hover: hover) and (pointer: fine) {
  .pagetop a:hover .arrow {
    top: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .pagetop.fixed {
    top: -60rem;
  }
  .pagetop a {
    width: 120rem;
  }
  .pagetop a .arrow {
    width: 28rem;
    height: 28rem;
    top: 52rem;
    left: 45rem;
  }
}
/*
    animation
-------------------------------------------------- */
.animation_fadeIn {
  opacity: 0;
  transform: translateY(50rem);
  transition: all 0.7s;
}
.animation_fadeIn.animated {
  opacity: 1;
  transform: none;
}

.animated .animation_fadeIn {
  opacity: 1;
  transform: none;
}/*# sourceMappingURL=common.css.map */