@charset "UTF-8";

:root {
  --header-h: 92px;
  --color-main: #43CB31;
  --color-yellow:#FFF500;
}

@media screen and (max-width: 768px) {
  :root {
    --header-h: 60px;
  }
}

.font-caveat{
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
}
.font-mplus{
  font-family: "M PLUS Rounded 1c", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
}

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

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

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

.orange{
  color: #F04D10;
}
.bgcolor--yellow{
  background-color: yellow;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

button {
  padding: 0;
  color: inherit;
  font: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.wrap {
  overflow-x: hidden;
}

.btn-normal{
  a{
    background-color: var(--color-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 45px;
    font-weight: 600;
    color: #fff;
    padding: 0 20px;
    img{
      width: auto;
    }
  }
}

.inner {
  max-width: 1170px;
  margin-inline: auto;
  padding: 0 20px;
}

.mb0{
  margin-bottom: 0 !important;
}

.main.is-scroll{
  margin-top: var(--header-h);;
}

.full-bleed{
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.spacer {
  width: 100%;
  height: 60px;
  @media screen and (max-width: 768px) {
    height: 40px;
  }
}

.line-through{
  text-decoration: line-through;
}

.header {
  width: 100%;
  height: var(--header-h);
  padding: 10px 13px 10px;
  /*positio24n: absolute;*/
  top: 0;
  z-index: 7;
  transition: background-color 0.3s ease;
  @media screen and (max-width: 768px) {
    padding: 8px 13px 10px;
  }
}

.header.is-scroll {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
  position: fixed;
}

.header--inner {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  padding-right: 69px;
}

.header--logo {
  margin-right: auto;
  display: flex;
  align-items: center;
  p{
    font-size: 14px;
    margin-left: 15px;
    @media screen and (max-width: 768px) {
      font-size: 11px;
    }
  }
  img{
    margin-top: -3px;
    @media screen and (max-width: 768px) {
      width: 116px;
    }
  }
}

.header--logo a {
  display: block;
}

.header--ui {
  flex-shrink: 0;
}

.btn-language a {
  display: inline-block;
  font-size: 12px;
  padding: 3px 15px;
  border: 1px solid;
  border-radius: 22px;
}

.gnav {
  display: none;
}

.menu--btn {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 48px;
  /*border: 1px solid;*/
  border-radius: 50%;
  position: fixed;
  top: 22px;
  right: 16px;
  z-index: 9;
  @media screen and (max-width: 768px) {
    top: 7px;
    right: 12px;
  }
}

.menu--btn .line-1,
.menu--btn .line-2 {
  display: block;
  width: 26px;
  height: 0;
  border: 1px solid;
  position: absolute;
  transition: transform 0.3s ease;
  color: var(--color-main);
}

.menu--btn .line-1 {
  top: 19px;
}

.menu--btn .line-2 {
  bottom: 19px;
}

.menu--btn[aria-expanded="true"] {
  color: #fff;
}

.menu--btn[aria-expanded="true"] .line-1 {
  transform: translateY(4.7px) rotate(26deg);
}

.menu--btn[aria-expanded="true"] .line-2 {
  transform: translateY(-3px) rotate(-26deg);
}

@media screen and (min-width: 1024px) {
  .header {
    padding: 9px 32px 10px 32px;
  }

  .header--inner {
    align-items: center;
    padding-right: 0;
  }

  .gnav {
    display: revert;
    flex-shrink: 0;
  }

  .menu--btn {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .header--inner {
    gap: 30px;
  }
}

.menu {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  z-index: 8;
}

.menu[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
}

.menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.menu--content {
  height: 100%;
  padding: 95px 30px 120px;
  color: #000;
  background-color: #fff;
  overflow-y: auto;
  position: relative;
}

.menu--inner {
  max-width: 430px;
  margin-inline: auto;
}

.menu--ui {
  position: absolute;
  top: 29px;
  right: 82px;
}

.menu--ui a {
  color: #000;
  background-color: #fff;
  border-color: #707070;
}

.menu--list {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.71;
  border-top: 1px solid;
}

.menu--list a {
  display: inline-block;
  padding: 5px;
}

.menu--list .li-lv1 {
  padding: 10px 15px;
  border-bottom: 1px solid;
}

.menu--list .li-lv1 ul {
  display: grid;
  row-gap: 25px;
  margin-top: 25px;
  padding-bottom: 10px;
}

.menu--list .li-lv2 {
  padding-left: 5px;
}

.menu--list .li-lv2 a {
  padding-left: 26px;
  position: relative;
}

.menu--list .li-lv2 a::before {
  content: '';
  display: block;
  width: 10px;
  height: 1px;
  background-color: currentcolor;
  position: absolute;
  top: 50%;
  left: 0;
}

.gnav {
  letter-spacing: 0.05em;
}

.gnav--list {
  display: flex;
  gap: 30px;
  font-size: 15px;
  @media screen and (max-width: 1080px) {
    gap: 20px;
  }
}

.gnav--list a {
  display: inline-block;
  padding: 5px;
}

.gnav--list .li-lv1 {
  padding: 12px 0;
  position: relative;
}

.gnav--sub {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  min-width: 173px;
  padding: 17px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  background-color: #000;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  @media screen and (max-width: 768px) {
    color: #000;
    background-color: #fff;
    position: inherit;
    translate: inherit;
    opacity: inherit;
    visibility: inherit;
  }
}

.gnav--sub ul {
  display: grid;
  row-gap: 18px;
  margin-top: 0 !important;
}

@media (any-hover: hover) {
  .gnav--list .li-lv1:hover .gnav--sub {
    opacity: 1;
    visibility: visible;
  }
}

.btn-scroll {
  display: none;
}

.footer {
  padding: 20px 20px;
  background-color: var(--color-main);
}

.footer--inner {
  max-width: 430px;
  margin-inline: auto;
}

.footer--logo {
  max-width: 209px;
  margin-inline: auto;
  margin-bottom: 30px;
}

.footer-nav{
  color: #fff;
  margin-bottom: 38px;
  font-size: 14px;
  @media screen and (max-width: 768px) {
    font-size: 12px;
  }
  ul{
    display: flex;
    justify-content: center;
    li{
      margin-right: 2em;
      &:last-child{
        margin-right: 0;
      }
    }
  }
}

.footer--nav {
  margin-top: 43px;
}

.footer--nav .menu--list {
  border-color: #d5d5d5;
}

.footer--nav .menu--list:not(:first-child) {
  border: none;
}

.footer--nav .menu--list .li-lv1 {
  border-color: #d5d5d5;
}
.footer--txt {
  color: #fff;
  text-align: center;
}
.footer--copy {
  color: #fff;
  margin-top: 40px;
  font-size: 12px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 40px 10px 50px;
  }

  .footer--inner {
    max-width: 669px;
  }

  .footer--logo {
    max-width: 277px;
  }

  .footer--nav {
    margin-top: 55px;
  }

  .footer--nav .menu--list {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);
    align-items: start;
    justify-content: space-between;
    border: none;
  }

  .footer--nav .menu--list .li-lv1 {
    padding: 0;
    border: none;
  }

  .footer--nav .menu--list .li-lv1:first-child,
  .footer--nav .menu--list .li-lv1:nth-child(2) {
    grid-row: 1/-1;
  }

  .footer--nav .menu--list .li-lv1 ul {
    gap: 8px;
    margin-top: 8px;
    padding-bottom: 0;
  }

  .footer--nav .low {
    display: grid;
    gap: 8px;
  }

  .footer--copy {
    margin-top: 50px;
  }
}

@media screen and (min-width: 1024px) {
  .footer {
    position: relative;
  }

  .btn-scroll {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    width: 51px;
    color: #fff;
    background-color: var(--color-main);
    position: fixed;
    bottom: 0;
    right: 0px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }

  .btn-scroll.is-scroll {
    opacity: 1;
    visibility: visible;
  }
  .btn-scroll.is-stop {
    position: absolute;
    top: -48px;
  }

  .btn-scroll .icon {
    aspect-ratio: 1;
    display: block;
    width: 18px;
    border: 1px solid;
    border-color: currentcolor currentcolor transparent transparent;
    rotate: -45deg;
    position: absolute;
    top: 24px;
    left: 50%;
    translate: -50% 0;
  }
}

.hero{
  height: 240px;
  background-image: url("../img/page/hero.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.1em;
  @media screen and (max-width: 768px) {
    font-size: 28px;
    height: 190px;
    background-image: url("../img/page/hero.jpg");
  }
}
.page-content{
  padding: 50px 0;
}

.ttl-ptn01{
  font-size: 22px;
  font-weight: normal;
  text-align: center;
  color: var(--color-main);
  margin-bottom: 1em;
}