@charset "UTF-8";



.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
}

.p-header {
  background-color: #36B64B;
  height: 47px;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-header__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 41;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.p-header__logo a {
  gap: 19px;
  gap: 1.1875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  width: auto;
  width: 77px;
  width: 4.8125rem;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

.p-footer {
  padding: 51.5px 0 34px;
  padding: 3.21875rem 0 2.125rem;
  overflow-x: clip;
}

.p-footer__btns {
  margin-inline: auto;
  gap: 24px;
  gap: 1.5rem;
  display: grid;
  width: 289px;
  width: 18.0625rem;
}

.p-footer__btn a {
  width: 100%;
}

.p-footer__logo {
  margin-top: 82px;
  margin-top: 5.125rem;
  max-width: 223px;
  max-width: 13.9375rem;
}

.p-footer__logo img {
  aspect-ratio: 223/83;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__text {
  margin-top: 12.6px;
  margin-top: .7875rem;
  border-left: 1px solid #707070;
  padding-left: 13px;
  padding-left: .8125rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.p-footer__line {
  margin: 0 min(-200px, 50% - 50vw);
  margin: 0 min(-12.5rem, 50% - 50vw);
  margin-top: 13.4px;
  margin-top: .8375rem;
  background-color: #F6EE08;
  height: 41px;
  height: 2.5625rem;
}

.p-footer__copy {
  margin-top: 9px;
  margin-top: .5625rem;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 400;
  text-align: center;
}

.p-drawer {
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 41;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 9px;
  font-size: .5625rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  content: 'MENU';
}

.p-drawer__icon.is-opened::after {
  content: 'CLOSE';
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 26px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 5px;
  background: #fff;
  width: 100%;
  height: 2px;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  margin-top: 47px;
  background: #FAF682;
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: auto;
  color: #36B64B;
  text-align: center;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: .5em;
}

.p-drawer__navLink {
  display: block;
  padding-top: .5em;
  padding-bottom: .5em;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.p-drawer__sns {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-snsMenu {
  margin-inline: auto;
  position: relative;
  padding-top: 30px;
  padding-top: 1.875rem;
}

.p-snsMenu__caption {
  position: absolute;
  top: 0;
  left: -20px;
  left: -1.25rem;
  background-color: #36B64B;
  padding: 0 8px 0 20px;
  padding: 0 .5rem 0 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: 500;
  line-height: 1.875;
}

.p-snsMenu__list {
  display: grid;
  position: relative;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 4.7px;
  margin-top: .29375rem;
  border: 2px solid #36B64B;
}

.p-snsMenu__list::after {
  aspect-ratio: 8/7;
  display: block;
  position: absolute;
  bottom: 100%;
  left: 47px;
  left: 2.9375rem;
  -webkit-clip-path: var(--clip-triangle-bottom);
  clip-path: var(--clip-triangle-bottom);
  background-color: #36B64B;
  width: 10px;
  width: .625rem;
  content: '';
}

.p-snsMenu__item {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
}

.p-snsMenu__item:not(:first-child) {
  border-left: 2px solid #36B64B;
}

.p-snsMenu__item img {
  aspect-ratio: 1/1;
  -webkit-transition: scale .3s;
  transition: scale .3s;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-snsMenu__link {
  padding: 8px;
  padding: .5rem;
}

.p-headerLine {
  background-color: #F6EE08;
  padding: 0;
}

.p-headerLine__text {
  position: relative;
  padding: 1px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 10px;
  font-size: .625rem;
  font-weight: 700;
}

.p-headerLine__text::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(100% + 1.75rem);
  z-index: 21;
  background-image: url(../img/common/headerLine_sp.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  width: 85px;
  width: 5.3125rem;
  height: 70px;
  height: 4.375rem;
  content: '';
}

.c-totop {
  aspect-ratio: 1;
  display: block;
  position: fixed;
  right: 10px;
  right: .625rem;
  bottom: 82px;
  bottom: 5.125rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  border-radius: 50%;
  background-color: #36B64B;
  width: 50px;
  width: 3.125rem;
}

.c-totop::before {
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 22px;
  width: 1.375rem;
  content: '';
}

.c-totop.is-active {
  visibility: visible;
  opacity: .7;
}

.c-totop.is-active:hover, .c-totop.is-active:focus {
  opacity: 1;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  margin: 0;
  border: 1px solid #36B64B;
  background-color: #fff;
  padding: 16px 65px 16px 41px;
  padding: 1rem 4.0625rem 1rem 2.5625rem;
  color: #36B64B;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75;
  text-align: center;
  text-decoration: none;
}

.c-btn span {
  position: relative;
}

.c-btn span::before {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 50%;
  top: 50%;
  right: -21px;
  right: -1.3125rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform .3s ease 0s;
  transition: -webkit-transform .3s ease 0s;
  transition: transform .3s ease 0s;
  transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  width: 18px;
  width: 1.125rem;
  -o-object-fit: cover;
  object-fit: cover;
  content: '';
}

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {

  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: '';
}

.c-btn.c-btn--shine:hover, .c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #fff;
  background-color: #fff;
  color: #36B64B;
}

.c-btn.c-btn--shine:hover::before, .c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine .7s;
  animation: shine .7s;
}

@-webkit-keyframes shine {

  100% {
    left: 125%;
  }
}

@keyframes shine {

  100% {
    left: 125%;
  }
}

.c-btn--arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: .83em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: var(--fa-font-solid);
  font-weight: 900;
  content: '\f061';
}

.c-btn--yellow {
  background-color: yellow;
  color: #222;
}

.c-btn--yellow:hover, .c-btn--yellow:focus {
  border-color: yellow;
  color: #222;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(42.3305084746, 142.6694915254, 58.7923728814);
  background-color: #36B64B;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover, .c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #36B64B;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid currentColor;
  padding: .2em .3em;
  color: #36B64B;
  text-decoration: none;
}

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #36B64B;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: .5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: '\f019';
}

.u-overflowHidden {
  overflow: hidden !important;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 47px;
}

.cmn-post {
  overflow-x: clip;
}

html {
  font-size: 16px;
}

.ttl-cmn02 {
  text-align: center;
}

@media screen and (min-width: 768px) {

  .p-header {
    height: 80px;
  }

  .p-header__inner.l-container {
    padding-right: 0;
  }

  .p-header__logo {
    font-size: 43px;
    font-size: 2.6875rem;
  }

  .p-header__logo a {
    gap: 27px;
    gap: 1.6875rem;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
  }

  .p-header__logo a:hover {
    opacity: .8;
  }

  .p-header__logo img,
  .p-header__logo svg {
    width: 144px;
    width: 9rem;
  }

  .p-header__nav {
    display: block;
    margin-left: auto;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .p-header__nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-header__nav li > a {
    display: block;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
    padding: 5px 30px;
    padding: .3125rem 1.875rem;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
  }

  .p-header__nav li > a:hover {
    color: #fff;
  }

  .p-header__drawer {
    display: none;
  }

  .p-footer {
    padding: 132px 0 30px;
    padding: 8.25rem 0 1.875rem;
  }

  .p-footer__contents {
    margin-inline: auto;
    gap: 23.6px 42.1px;
    gap: 1.475rem 2.63125rem;
    display: grid;
    grid-template-columns: 3.6fr 6.4fr;
    grid-template-rows: repeat(2, 1fr);
    max-width: 1094px;
    max-width: 68.375rem;
  }

  .p-footer__btns {
    grid-area: 1/2/2/3;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .p-footer__logo {
    border-right: 1px solid #707070;
    padding-right: 41px;
    padding-right: 2.5625rem;
    max-width: 100%;
  }

  .p-footer__logo {
    grid-area: 1/1/3/2;
    margin-top: 0;
  }

  .p-footer__text {
    grid-area: 2/2/3/3;
    margin-top: 0;
    border: initial;
    padding-left: 0;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-footer__line {
    margin-top: 38.9px;
    margin-top: 2.43125rem;
    height: 56px;
    height: 3.5rem;
  }

  .p-footer__copy {
    margin-top: 26px;
    margin-top: 1.625rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .p-snsMenu {
    padding-top: 90px;
    padding-top: 5.625rem;
  }

  .p-snsMenu__caption {
    left: 0;
    padding: 8px 0;
    padding: .5rem 0;
    width: 90px;
    width: 5.625rem;
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .p-snsMenu__list::after {
    left: 35px;
    left: 2.1875rem;
    width: 16px;
    width: 1rem;
  }

  .p-snsMenu__list {
    gap: 3px;
    gap: .1875rem;
    grid-template-columns: initial;
    margin-top: 0;
    border: initial;
  }

  .p-snsMenu__item {
    border: 2px solid #36B64B;
  }

  .p-snsMenu__link {
    padding: 13px 38px 13px 13px;
    padding: .8125rem 2.375rem .8125rem .8125rem;
  }

  .p-headerLine__text {
    padding: 13px 0 17px;
    padding: .8125rem 0 1.0625rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-headerLine__text::after {
    left: calc(100% + 3.875rem);
    background-image: url(../img/common/headerLine.png);
    width: 196px;
    width: 12.25rem;
    height: 144px;
    height: 9rem;
  }

  .c-totop {
    right: 40px;
    right: 2.5rem;
    bottom: 40px;
    bottom: 2.5rem;
    width: 89px;
    width: 5.5625rem;
  }

  .c-totop::before {
    width: 40px;
    width: 2.5rem;
  }

  .c-btn {
    padding: 20px 60px 20px 41px;
    padding: 1.25rem 3.75rem 1.25rem 2.5625rem;
  }

  .c-btn:hover, .c-btn:focus-visible {
    outline: none;
    background-color: #36B64B;
    color: #fff;
  }

  .c-btn:hover span::before, .c-btn:focus-visible span::before {
    -webkit-transform: translate(.625rem, -50%) rotate(45deg);
    transform: translate(.625rem, -50%) rotate(45deg);
  }

  :root {
    --header-height: 80px;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {

  .p-snsMenu__link:hover img {
    scale: 1.2;
  }
}

@media (min-width: 1060px) {

  html {
    font-size: 16px;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}