@charset "UTF-8";
html {
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: calc(18 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  font-family: "M PLUS Rounded 1c", "M PLUS 1p", sans-serif;
  font-weight: 400;
  color: #333;
}

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

span,
a,
button {
  display: inline-block;
}

.c-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .c-section-title {
    gap: calc(20 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .c-section-title {
    gap: calc(10 / 375 * 100vw);
  }
}

.c-section-title__main {
  font-size: 50px;
}
@media screen and (max-width: 1024px) {
  .c-section-title__main {
    font-size: calc(50 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .c-section-title__main {
    font-size: calc(36 / 375 * 100vw);
  }
}

.l-section-inner {
  margin-inline: auto;
  padding-block: 120px;
  padding-inline: 40px;
  max-width: 1104px;
}
@media screen and (max-width: 1024px) {
  .l-section-inner {
    padding-block: calc(120 / 1024 * 100vw);
    padding-inline: calc(40 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .l-section-inner {
    padding-block: calc(120 / 375 * 100vw);
    padding-inline: calc(15 / 375 * 100vw);
  }
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: transparent;
}
@media screen and (max-width: 1024px) {
  .header {
    height: calc(80 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .header {
    height: calc(64 / 375 * 100vw);
  }
}
.header.is-show {
  background: #abe8ad;
}

.header__inner {
  height: inherit;
  margin-inline: auto;
  padding-inline: 40px;
  max-width: 1024px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding-inline: calc(40 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .header__inner {
    padding-inline: calc(24 / 375 * 100vw);
  }
}

.header__logo {
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-shadow: 0px 0.5px 0.5px rgba(0, 0, 0, 0.15);
}
.header__logo:hover {
  color: #FFF19E;
}
.header__logo span {
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .header__logo span {
    font-size: calc(14 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .header__logo span {
    font-size: calc(14 / 375 * 100vw);
  }
}

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

.header__nav-lists {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__nav-lists {
    gap: calc(24 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .header__nav-lists {
    gap: calc(24 / 375 * 100vw);
  }
}

.header__nav-list {
  width: 140px;
  text-align: center;
  background-color: #fff;
  font-size: 16px;
  padding-top: 9px;
  padding-bottom: 10px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .header__nav-list {
    width: calc(140 / 1024 * 100vw);
    font-size: calc(16 / 1024 * 100vw);
    padding-top: calc(9 / 1024 * 100vw);
    padding-bottom: calc(10 / 1024 * 100vw);
    border-radius: calc(30 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .header__nav-list {
    width: calc(140 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    padding-top: calc(9 / 375 * 100vw);
    padding-bottom: calc(10 / 375 * 100vw);
    border-radius: calc(30 / 375 * 100vw);
  }
}
.header__nav-list:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  color: #61c664;
}
.header__nav-list:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #61c664;
}

.header__nav-btn {
  background-color: #FFF19E;
  font-size: 16px;
  padding-top: 9px;
  padding-bottom: 10px;
  padding-inline: 16px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .header__nav-btn {
    font-size: calc(16 / 1024 * 100vw);
    padding-top: calc(9 / 1024 * 100vw);
    padding-bottom: calc(10 / 1024 * 100vw);
    padding-inline: calc(16 / 1024 * 100vw);
    border-radius: calc(30 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .header__nav-btn {
    font-size: calc(16 / 375 * 100vw);
    padding-top: calc(9 / 375 * 100vw);
    padding-bottom: calc(10 / 375 * 100vw);
    padding-inline: calc(16 / 375 * 100vw);
    border-radius: calc(30 / 375 * 100vw);
  }
}
.header__nav-btn:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  color: #61c664;
}
.header__nav-btn:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #61c664;
}

.drawer__icon {
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer__icon {
    position: fixed;
    z-index: 102;
    top: calc(22 / 375 * 100vw);
    right: calc(24 / 375 * 100vw);
    width: calc(24 / 375 * 100vw);
    height: calc(18 / 375 * 100vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.drawer__icon-bar {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media screen and (max-width: 1024px) {
  .drawer__icon-bar {
    height: 0 calc(2 / 1024 * 100vw);
    border-radius: 0 calc(1 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .drawer__icon-bar {
    height: 0 calc(2 / 375 * 100vw);
    border-radius: 0 calc(1 / 375 * 100vw);
  }
}

.drawer__icon.is-checked .drawer__icon-bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 8px;
}
@media screen and (max-width: 1024px) {
  .drawer__icon.is-checked .drawer__icon-bar:nth-of-type(1) {
    translate: 0 calc(8 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .drawer__icon.is-checked .drawer__icon-bar:nth-of-type(1) {
    translate: 0 calc(8 / 375 * 100vw);
  }
}
.drawer__icon.is-checked .drawer__icon-bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -8px;
}
@media screen and (max-width: 1024px) {
  .drawer__icon.is-checked .drawer__icon-bar:nth-of-type(3) {
    translate: 0 calc(-8 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .drawer__icon.is-checked .drawer__icon-bar:nth-of-type(3) {
    translate: 0 calc(-8 / 375 * 100vw);
  }
}

.drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer {
    display: block;
    margin-top: calc(64 / 375 * 100vw);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: fixed;
    z-index: 101;
    top: 0;
    right: calc(-20 / 375 * 100vw);
    width: calc(200 / 375 * 100vw);
    height: calc(280 / 375 * 100vw);
    border-radius: calc(20 / 375 * 100vw) 0 0 calc(20 / 375 * 100vw);
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background: #abe8ad;
    overflow-y: scroll;
  }
  .drawer.is-checked {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.drawer__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .drawer__nav-lists {
    gap: calc(32 / 1024 * 100vw);
    margin-top: calc(40 / 1024 * 100vw);
    margin-bottom: calc(40 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .drawer__nav-lists {
    gap: calc(32 / 375 * 100vw);
    margin-top: calc(40 / 375 * 100vw);
    margin-bottom: calc(40 / 375 * 100vw);
  }
}

.drawer__nav-list {
  width: 130px;
  text-align: center;
  background-color: #fff;
  font-size: 16px;
  padding-top: 9px;
  padding-bottom: 10px;
  padding-inline: 16px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .drawer__nav-list {
    width: calc(130 / 1024 * 100vw);
    font-size: calc(16 / 1024 * 100vw);
    padding-top: calc(9 / 1024 * 100vw);
    padding-bottom: calc(10 / 1024 * 100vw);
    padding-inline: calc(16 / 1024 * 100vw);
    border-radius: calc(30 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .drawer__nav-list {
    width: calc(130 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    padding-top: calc(9 / 375 * 100vw);
    padding-bottom: calc(10 / 375 * 100vw);
    padding-inline: calc(16 / 375 * 100vw);
    border-radius: calc(30 / 375 * 100vw);
  }
}
.drawer__nav-list:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  color: #61c664;
}
.drawer__nav-list:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #61c664;
}

.drawer__nav-btn {
  background-color: #FFF19E;
  font-size: 16px;
  padding-top: 9px;
  padding-bottom: 10px;
  padding-inline: 16px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .drawer__nav-btn {
    font-size: calc(16 / 1024 * 100vw);
    padding-top: calc(9 / 1024 * 100vw);
    padding-bottom: calc(10 / 1024 * 100vw);
    padding-inline: calc(16 / 1024 * 100vw);
    border-radius: calc(30 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .drawer__nav-btn {
    font-size: calc(16 / 375 * 100vw);
    padding-top: calc(9 / 375 * 100vw);
    padding-bottom: calc(10 / 375 * 100vw);
    padding-inline: calc(16 / 375 * 100vw);
    border-radius: calc(30 / 375 * 100vw);
  }
}
.drawer__nav-btn:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  color: #61c664;
}
.drawer__nav-btn:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #61c664;
}

.fv {
  padding-top: 80px;
  height: 845px;
  width: 100%;
  background-color: #abe8ad;
}
@media screen and (max-width: 1024px) {
  .fv {
    padding-top: calc(80 / 1024 * 100vw);
    height: calc(845 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .fv {
    padding-top: calc(64 / 375 * 100vw);
    height: calc(670 / 375 * 100vw);
  }
}

.fv__inner {
  margin-inline: auto;
  height: 100%;
  max-width: 1024px;
  padding-inline: 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .fv__inner {
    max-width: calc(1024 / 1024 * 100vw);
    padding-inline: calc(40 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .fv__inner {
    padding-inline: calc(25 / 375 * 100vw);
  }
}

.fv__img {
  position: absolute;
  top: calc(50% - 80px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
  width: 95%;
}
@media screen and (max-width: 1024px) {
  .fv__img {
    top: calc(50% - 80 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .fv__img {
    top: calc(50% - 64 / 375 * 100vw);
  }
}

.fv__img--close {
  -webkit-animation: show1 3s infinite;
          animation: show1 3s infinite;
}

.fv__img--open {
  -webkit-animation: show2 3s infinite;
          animation: show2 3s infinite;
}

@-webkit-keyframes show1 {
  0%, 49.99% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

@keyframes show1 {
  0%, 49.99% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
@-webkit-keyframes show2 {
  0%, 49.99% {
    opacity: 0;
  }
  50%, 100% {
    opacity: 1;
  }
}
@keyframes show2 {
  0%, 49.99% {
    opacity: 0;
  }
  50%, 100% {
    opacity: 1;
  }
}
.scrolldown {
  width: 16px;
  height: 100px;
  z-index: 80;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
@media screen and (max-width: 1024px) {
  .scrolldown {
    width: calc(16 / 1024 * 100vw);
    height: calc(100 / 1024 * 100vw);
    bottom: calc(-20 / 1024 * 100vw);
    gap: calc(2 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .scrolldown {
    width: calc(16 / 375 * 100vw);
    height: calc(100 / 375 * 100vw);
    bottom: calc(-20 / 375 * 100vw);
    gap: calc(2 / 375 * 100vw);
  }
}

.scrolldown_text1-3 {
  font-size: 16px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
}
@media screen and (max-width: 1024px) {
  .scrolldown_text1-3 {
    font-size: calc(16 / 1024 * 100vw);
    gap: calc(1 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .scrolldown_text1-3 {
    font-size: calc(16 / 375 * 100vw);
    gap: calc(1 / 375 * 100vw);
  }
}

.scrolldown_text1,
.scrolldown_text2,
.scrolldown_text3 {
  width: 16px;
  height: 16px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .scrolldown_text1,
  .scrolldown_text2,
  .scrolldown_text3 {
    width: calc(16 / 1024 * 100vw);
    height: calc(16 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .scrolldown_text1,
  .scrolldown_text2,
  .scrolldown_text3 {
    width: calc(16 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
  }
}
.scrolldown_text1::before,
.scrolldown_text2::before,
.scrolldown_text3::before {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.scrolldown_text1::before {
  content: "ス";
}

.scrolldown_text2::before {
  content: "ク";
}

.scrolldown_text3::before {
  content: "ロ";
}

.scrolldown_text1::before,
.scrolldown_text2::before,
.scrolldown_text3::before {
  -webkit-animation: fadeIn 0.5s ease-in-out 1s forwards;
          animation: fadeIn 0.5s ease-in-out 1s forwards;
  opacity: 0;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.scrolldown-bar {
  opacity: 0;
  width: 1.4px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  margin-top: 4px;
  -webkit-animation: fadeIn 0.5s ease-in-out 1s forwards, scrollDownBar 3s 1.5s infinite;
          animation: fadeIn 0.5s ease-in-out 1s forwards, scrollDownBar 3s 1.5s infinite;
}
@media screen and (max-width: 1024px) {
  .scrolldown-bar {
    width: calc(1.4 / 1024 * 100vw);
    height: calc(2 / 1024 * 100vw);
    margin-top: calc(4 / 1024 * 100vw);
    border-radius: calc(1 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .scrolldown-bar {
    width: calc(1.4 / 375 * 100vw);
    height: calc(2 / 375 * 100vw);
    margin-top: calc(4 / 375 * 100vw);
    border-radius: calc(1 / 1024 * 100vw);
  }
}

@-webkit-keyframes scrollDownBar {
  0% {
    height: 2px;
    @media screen and (max-width: 1024px) {
      height: calc(2 / 1024 * 100vw);
    }
    @media screen and (max-width: 1024px) and (max-width: 767px) {
      height: calc(2 / 375 * 100vw);
    }
  }
  100% {
    height: 24px;
    @media screen and (max-width: 1024px) {
      height: calc(24 / 1024 * 100vw);
    }
    @media screen and (max-width: 1024px) and (max-width: 767px) {
      height: calc(24 / 375 * 100vw);
    }
  }
}

@keyframes scrollDownBar {
  0% {
    height: 2px;
    @media screen and (max-width: 1024px) {
      height: calc(2 / 1024 * 100vw);
    }
    @media screen and (max-width: 1024px) and (max-width: 767px) {
      height: calc(2 / 375 * 100vw);
    }
  }
  100% {
    height: 24px;
    @media screen and (max-width: 1024px) {
      height: calc(24 / 1024 * 100vw);
    }
    @media screen and (max-width: 1024px) and (max-width: 767px) {
      height: calc(24 / 375 * 100vw);
    }
  }
}
.scrolldown_text4 {
  position: relative;
  width: 16px;
  height: 16px;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  -webkit-animation: fadeIn 0.5s ease-in-out 1s forwards;
          animation: fadeIn 0.5s ease-in-out 1s forwards;
}
@media screen and (max-width: 1024px) {
  .scrolldown_text4 {
    width: calc(16 / 1024 * 100vw);
    height: calc(16 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .scrolldown_text4 {
    width: calc(16 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
  }
}
.scrolldown_text4::before {
  content: "ル";
  position: absolute;
  top: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .scrolldown_text4::before {
    top: calc(-3 / 1024 * 100vw);
    font-size: calc(16 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .scrolldown_text4::before {
    top: calc(-3 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}

.works {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
.works::before {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  border-radius: 50%;
  background-color: #abe8ad;
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .works::before {
    width: calc(120 / 1024 * 100vw);
    height: calc(120 / 1024 * 100vw);
    top: calc(-80 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .works::before {
    width: calc(120 / 375 * 100vw);
    height: calc(120 / 375 * 100vw);
    top: calc(-80 / 375 * 100vw);
  }
}

.works__lead {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .works__lead {
    margin-top: calc(40 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .works__lead {
    margin-top: calc(60 / 375 * 100vw);
  }
}

.works__cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 50px;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  justify-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .works__cards {
    margin-top: calc(50 / 1024 * 100vw);
    row-gap: calc(50 / 1024 * 100vw);
    -webkit-column-gap: calc(60 / 1024 * 100vw);
       -moz-column-gap: calc(60 / 1024 * 100vw);
            column-gap: calc(60 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .works__cards {
    margin-top: calc(50 / 375 * 100vw);
    grid-template-columns: 1fr;
    row-gap: calc(50 / 375 * 100vw);
    -webkit-column-gap: calc(50 / 375 * 100vw);
       -moz-column-gap: calc(50 / 375 * 100vw);
            column-gap: calc(50 / 375 * 100vw);
  }
}

.works-card {
  width: 317px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .works-card {
    width: calc(317 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .works-card {
    width: calc(288 / 375 * 100vw);
  }
}

.works-card__image {
  margin-top: 6px;
  width: 100%;
  height: auto;
  border-radius: 7px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .works-card__image {
    margin-top: calc(6 / 1024 * 100vw);
    border-radius: calc(7 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .works-card__image {
    margin-top: calc(6 / 375 * 100vw);
    border-radius: calc(7 / 1024 * 100vw);
  }
}
.works-card__image img {
  aspect-ratio: 1872/1136;
  -o-object-fit: cover;
     object-fit: cover;
}

.works-card__title {
  text-align: center;
  font-weight: 500;
}

.works-card__text {
  text-align: center;
}

.works-card__memo {
  margin-top: 4px;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .works-card__memo {
    margin-top: calc(4 / 1024 * 100vw);
    font-size: calc(14 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .works-card__memo {
    margin-top: calc(4 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
}

.works-card__memo + .works-card__memo {
  margin-top: 0;
}

.works-card__links {
  padding-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .works-card__links {
    padding-top: calc(10 / 1024 * 100vw);
    gap: calc(20 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .works-card__links {
    padding-top: calc(10 / 375 * 100vw);
    gap: calc(20 / 375 * 100vw);
  }
}

.works-card__link {
  display: inline-block;
  text-align: center;
  width: 140px;
  font-size: 14px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-color: #FFF19E;
  padding-top: 9px;
  padding-bottom: 10px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .works-card__link {
    width: calc(140 / 1024 * 100vw);
    font-size: calc(14 / 1024 * 100vw);
    padding-top: calc(9 / 1024 * 100vw);
    padding-bottom: calc(10 / 1024 * 100vw);
    border-radius: calc(30 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .works-card__link {
    width: calc(140 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    padding-top: calc(9 / 375 * 100vw);
    padding-bottom: calc(10 / 375 * 100vw);
    border-radius: calc(30 / 375 * 100vw);
  }
}
.works-card__link:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  text-decoration-color: #61c664;
  color: #61c664;
}
.works-card__link:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #61c664;
}

.about {
  width: 100%;
  background-color: #f0fdf0;
  position: relative;
  overflow: hidden;
  position: relative;
}
.about::before {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .about::before {
    width: calc(120 / 1024 * 100vw);
    height: calc(120 / 1024 * 100vw);
    top: calc(-80 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .about::before {
    width: calc(120 / 375 * 100vw);
    height: calc(120 / 375 * 100vw);
    top: calc(-80 / 375 * 100vw);
  }
}

.about__content-wrapper {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .about__content-wrapper {
    margin-top: calc(30 / 1024 * 100vw);
    gap: calc(40 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .about__content-wrapper {
    margin-top: calc(20 / 375 * 100vw);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.about__content-image {
  width: 230px;
  overflow: hidden;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .about__content-image {
    width: calc(230 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .about__content-image {
    width: calc(160 / 375 * 100vw);
  }
}

.about-name {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .about-name {
    font-size: calc(24 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .about-name {
    font-size: calc(24 / 375 * 100vw);
    text-align: center;
  }
}

.about-text {
  font-size: 16px;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .about-text {
    font-size: calc(16 / 1024 * 100vw);
    margin-top: calc(30 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .about-text {
    font-size: calc(16 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
    text-align: center;
  }
}

.about-skills {
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .about-skills {
    margin-top: calc(10 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .about-skills {
    margin-top: calc(30 / 375 * 100vw);
  }
}

.about-skills__head {
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .about-skills__head {
    font-size: calc(12 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .about-skills__head {
    font-size: calc(12 / 375 * 100vw);
    text-align: center;
  }
}

.about-skills__body {
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .about-skills__body {
    margin-top: calc(12 / 1024 * 100vw);
    gap: calc(20 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .about-skills__body {
    margin-top: calc(12 / 375 * 100vw);
    gap: calc(20 / 375 * 100vw);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.about-skill {
  font-size: 30px;
  color: #61c664;
}
@media screen and (max-width: 1024px) {
  .about-skill {
    font-size: calc(30 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .about-skill {
    font-size: calc(30 / 375 * 100vw);
  }
}

.contact {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
.contact::before {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  border-radius: 50%;
  background-color: #f7fff7;
  background-color: #f0fdf0;
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .contact::before {
    width: calc(120 / 1024 * 100vw);
    height: calc(120 / 1024 * 100vw);
    top: calc(-80 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .contact::before {
    width: calc(120 / 375 * 100vw);
    height: calc(120 / 375 * 100vw);
    top: calc(-80 / 375 * 100vw);
  }
}

.contact__inner {
  margin-inline: auto;
  padding-block: 120px;
  max-width: 1024px;
}
@media screen and (max-width: 1024px) {
  .contact__inner {
    padding-block: calc(120 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .contact__inner {
    padding-block: calc(120 / 375 * 100vw);
  }
}

.contact-text {
  text-align: center;
}

.contact-form {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .contact-form {
    margin-top: calc(80 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .contact-form {
    margin-top: calc(80 / 375 * 100vw);
  }
}

.contact__btn {
  display: block;
  font-size: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 32px;
  background-color: #FFF19E;
  padding-top: 10px;
  padding-bottom: 12px;
  padding-inline: 88px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .contact__btn {
    font-size: calc(24 / 1024 * 100vw);
    margin-top: calc(32 / 1024 * 100vw);
    padding-top: calc(10 / 1024 * 100vw);
    padding-bottom: calc(12 / 1024 * 100vw);
    padding-inline: calc(88 / 1024 * 100vw);
    border-radius: calc(30 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .contact__btn {
    font-size: calc(24 / 375 * 100vw);
    margin-top: calc(32 / 375 * 100vw);
    padding-top: calc(10 / 375 * 100vw);
    padding-bottom: calc(12 / 375 * 100vw);
    padding-inline: calc(54 / 375 * 100vw);
    border-radius: calc(30 / 375 * 100vw);
  }
}
.contact__btn:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  color: #61c664;
}
.contact__btn:hover i {
  color: #61c664;
}
.contact__btn:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #61c664;
}
.contact__btn:active i {
  color: #61c664;
}
.contact__btn i {
  color: #545454;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.footer {
  width: 100%;
  height: 48px;
  background-color: #abe8ad;
}
@media screen and (max-width: 1024px) {
  .footer {
    height: calc(48 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .footer {
    height: calc(48 / 375 * 100vw);
  }
}

.copyright {
  font-size: 12px;
  display: block;
  margin-inline: auto;
  color: #fff;
  text-align: center;
  line-height: 48px;
}
@media screen and (max-width: 1024px) {
  .copyright {
    font-size: calc(12 / 1024 * 100vw);
    line-height: calc(48 / 1024 * 100vw);
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .copyright {
    font-size: calc(12 / 375 * 100vw);
    line-height: calc(48 / 375 * 100vw);
  }
}

.u-sp-hidden {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-sp-hidden {
    display: none;
  }
}

.u-pc-hidden {
  display: block;
}
@media screen and (min-width: 1024px) {
  .u-pc-hidden {
    display: none;
  }
}

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

.u-pc-display {
  display: none;
}
@media screen and (min-width: 1024px) {
  .u-pc-display {
    display: block;
  }
}