@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@700&family=Poppins:wght@400;700&display=swap");
:root {
  --animate-delay: 0.5s;
  --color-primary: #27a24d;
  --color-primary-rgb: 39, 162, 77;
  --color-primary-hover: #1f7a3c;
}

@keyframes fadeInRight {
  0% {
    transform: translateX(100px);
  }
  to {
    transform: translateX(0);
  }
}
html {
  width: 100%;
  font-size: 62.5%;
}
html * {
  box-sizing: border-box;
  outline: none;
}

body {
  position: relative;
  margin: 0;
  min-height: 100dvh;
  font-family: "Noto Sans JP", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 400;
  color: #231815;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  color: #27a24d;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.hide {
  display: none !important;
}

.hidden {
  visibility: hidden;
}

.imeon {
  ime-mode: active;
}

.imeoff {
  ime-mode: disabled;
}

.wbr {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.trans {
  transition: all 0.5s;
}

main .sa {
  position: relative;
  top: 30px;
  left: 30px;
  visibility: hidden;
  opacity: 0;
  transition: all 1.5s;
}

main .sa.show {
  position: relative;
  top: 0px;
  left: 0px;
  visibility: visible;
  opacity: 1;
}

a.outer_link {
  display: inline-flex;
  align-items: center;
}

a.outer_link::after {
  content: "";
  display: block;
  background: url(../img/icon_outer_link.svg) 50% 50%/contain no-repeat;
  margin: 0px 4px;
  width: 0.9em;
  aspect-ratio: 319/316;
}

.link_line {
  position: relative;
}

.link_line::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: var(--text-color-main);
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.link_line.on::before {
  width: 100%;
  transform: scaleX(1);
  transform-origin: bottom left;
  transition: transform 0.25s ease-out;
}

.loading {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-inline: auto !important;
  padding: 60px !important;
  overflow: hidden !important;
}

.loading p {
  border: solid 4px !important;
  border-color: var(--sub-color) rgba(0, 0, 0, 0.062745098) rgba(0, 0, 0, 0.062745098) !important;
  border-radius: 50% !important;
  width: 60px !important;
  height: 60px !important;
  animation-name: spin !important;
  animation-duration: 1.2s !important;
  animation-iteration-count: infinite !important;
  animation-timing-function: ease-in-out !important;
  color: transparent !important;
  font-size: 0.01rem !important;
  text-align: left !important;
  text-indent: -99999999em !important;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#gototop {
  display: none;
}

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

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

.logo {
  background: url(../img/logo.png) center/cover no-repeat;
  display: block;
  text-indent: -100vw;
  aspect-ratio: 276/74;
  overflow: hidden;
  width: 27.6rem;
}

.logo2 {
  color: #ffffff;
  font-weight: bold;
}

.header-logo {
  padding-bottom: 10px;
}

.header-logo .logo2 {
  font-size: 2.4rem;
}

.container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-title {
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  font-size: 20px;
  font-size: clamp(20px, 11.8367346939px + 2.1768707483vw, 36px);
}
@media screen and (min-width: 768px) {
  .section-title {
    margin-bottom: 60px;
  }
}

#header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(var(--color-primary-rgb), 0.9);
}

.header_wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .header_wrap {
    padding: 10px 0;
  }
}

@media screen and (max-width: 767px) {
  .header-logo {
    position: relative;
    z-index: 2;
    padding: 13px 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.header-logo .logo {
  width: 130px;
}
@media screen and (min-width: 768px) {
  .header-logo .logo {
    width: 276px;
  }
}

.btn-menu {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 64px;
  height: 60px;
  cursor: pointer;
  transition: all 0.5s;
  box-sizing: border-box;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .btn-menu {
    display: none;
  }
}
.btn-menu span {
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-menu span:nth-of-type(1) {
  top: 0;
}
.btn-menu span:nth-of-type(2) {
  top: 20px;
}
.btn-menu span:nth-of-type(3) {
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .header-menu {
    position: fixed;
    top: 0;
    right: -100dvw;
    width: 100dvw;
    height: 100dvh;
    min-height: 400px;
    background-color: var(--color-primary, #27a24d);
    overflow-y: auto;
    transition: 0.3s cubic-bezier(0.68, 0.55, 0.265, 1.2);
  }
  .header-menu .header-menu-wrap {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}
.header-menu ul {
  display: flex;
}
.header-menu p {
  position: absolute;
  top: 30px;
  right: 20px;
}
.header-menu p a {
  display: block;
  background: url(../img/icon_instagram.svg) center / contain no-repeat;
  width: 32px;
  aspect-ratio: 1 / 1;
  text-indent: -99999em;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .header-menu ul {
    flex-direction: column;
    align-items: center;
  }
  .header-menu p {
    top: 470px;
    right: 50%;
    margin-right: -16px;
  }
}
@media screen and (min-width: 768px) {
  .header-menu ul {
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 10px;
    margin-bottom: 6px;
  }
}
.header-menu ul li a {
  display: block;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .header-menu ul li a {
    padding: 10px;
  }
}

.open_menu {
  overflow: hidden;
}
.open_menu .btn-menu {
  transform: rotate(360deg);
}
.open_menu .btn-menu span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}
.open_menu .btn-menu span:nth-of-type(2) {
  transform: translateY(0) rotate(45deg);
}
.open_menu .btn-menu span:nth-of-type(3) {
  opacity: 0;
}
.open_menu .header-logo {
  background-color: var(--color-primary, #27a24d);
}
.open_menu .header-menu {
  right: 0;
}

#footer {
  background-color: var(--color-primary, #27a24d);
  position: sticky;
  top: 100dvh;
}

.footer_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 12px;
  letter-spacing: 0.025em;
  line-height: 1.8;
  color: #fff;
}
.footer_wrap a {
  color: inherit;
}
@media screen and (min-width: 768px) {
  .footer_wrap {
    padding: 25px 20px;
  }
}
.footer_wrap .logo {
  width: 104px;
}
@media screen and (min-width: 768px) {
  .footer_wrap .logo {
    width: 124px;
  }
}
.footer_wrap .copyright {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}