@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.6vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.c-button {
  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;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  padding: 8px 20px;
  padding: 0.5rem 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  color: #00b900;
  background-color: #fff;
  font-weight: 700;
  text-align: center;
  border: 1px solid #00b900;
}
@media screen and (min-width: 768px) {
  .c-button {
    padding: 0.875rem 3.125rem;
  }
}

.c-button img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 40/38;
  max-width: 40px;
  max-width: 2.5rem;
}

.c-button--contact {
  background-color: #00b900;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-button--contact {
    padding: 0.875rem 1.25rem;
  }
}

.c-heading {
  text-align: center;
}
.c-heading__en {
  color: #047449;
  line-height: 1.67;
  letter-spacing: 1.26px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-heading__en {
    font-size: 1.125rem;
  }
}

.c-heading__ja {
  letter-spacing: 3.15px;
  font-size: 32px;
  font-size: 2rem;
  color: #030303;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-heading__ja {
    font-size: 2.8125rem;
  }
}

.hamburger {
  padding: 18px 21px;
  padding: 1.125rem 1.3125rem;
}

.hamburger span {
  display: block;
  width: 26px;
  width: 1.625rem;
  height: 2px;
  height: 0.125rem;
  background-color: #000;
  border-radius: 0.125rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hamburger span:nth-child(2) {
  margin: 4.75px 0;
  margin: 0.296875rem 0;
}

.hamburger.open span:nth-child(1) {
  -webkit-transform: translate(0.1875rem, -0.0625rem) rotate(45deg);
          transform: translate(0.1875rem, -0.0625rem) rotate(45deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  -webkit-transform: translate(0.1875rem, 0.1875rem) rotate(-45deg);
          transform: translate(0.1875rem, 0.1875rem) rotate(-45deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.pagetop {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  background: #030303;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  /*   デフォルトは非表示 */
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: 4.75rem;
    height: 4.75rem;
  }
}

.pagetop span {
  display: block;
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1050px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-footer {
  background-color: #047449;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 3.375rem;
       -moz-column-gap: 3.375rem;
            column-gap: 3.375rem;
  }
}

.l-footer__nav-item:not(:first-of-type) {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-item:not(:first-of-type) {
    margin-top: 0;
    margin-top: initial;
  }
}

.l-footer__nav-link {
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-link {
    text-align: left;
  }
}

.l-footer__logo {
  margin-top: 20px;
  margin-top: 1.25rem;
  max-width: 172px;
  max-width: 10.75rem;
  margin-left: auto;
  margin-right: auto;
}
.l-footer__logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 172/96;
}

.l-footer__legal {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 2.25;
  letter-spacing: 1.6px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__legal {
    font-size: 1rem;
  }
}

.l-footer__legal span {
  color: #030303;
}

.l-footer__copy {
  margin-top: 23px;
  margin-top: 1.4375rem;
  line-height: 2.25;
  letter-spacing: 1.6px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    font-size: 1rem;
  }
}

.header-nav {
  width: 100%;
  height: 100vh;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header-nav {
    background-color: transparent;
    background-color: initial;
    margin-top: 0;
    margin-top: initial;
    width: auto;
    width: initial;
    height: inherit;
    overflow-y: visible;
    overflow-y: initial;
  }
}

.header-nav__items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 179px;
  margin-top: 11.1875rem;
  min-height: 400px;
  min-height: 25rem;
}
@media screen and (min-width: 768px) {
  .header-nav__items {
    margin-top: 0;
    margin-top: initial;
    min-height: 0;
    min-height: initial;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 2.3125rem;
       -moz-column-gap: 2.3125rem;
            column-gap: 2.3125rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header-nav__item {
  position: relative;
  color: #000;
  text-align: center;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .header-nav__item {
    height: inherit;
    margin-top: 0;
    margin-top: initial;
  }
}

.header-nav__item a {
  position: relative;
  padding-right: 14px;
  padding-right: 0.875rem;
}
@media screen and (min-width: 768px) {
  .header-nav__item a {
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header-nav__item a::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  -webkit-transform: rotate(135deg) translateY(-50%);
          transform: rotate(135deg) translateY(-50%);
  border-left: 2px solid #51b443;
  border-top: 2px solid #51b443;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
@media screen and (min-width: 768px) {
  .header-nav__item a::after {
    top: 43%;
    width: 0.625rem;
    height: 0.625rem;
    border-left: 2.5px solid #51b443;
    border-top: 2.5px solid #51b443;
  }
}

.header-nav__btn {
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .header-nav__btn {
    margin-top: 0;
    margin-top: initial;
  }
}

.header-nav__btn a {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  background-color: #047449;
  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;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  text-align: center;
  padding: 16.8px 54px;
  padding: 1.05rem 3.375rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #047449;
}
@media screen and (min-width: 768px) {
  .header-nav__btn a {
    height: inherit;
    font-size: 1.125rem;
    max-width: unset;
    display: block;
  }
}

.header-nav__btn a img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 40/38;
  max-width: 40px;
  max-width: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
.header-nav__btn a:hover {
  opacity: 0.7;
}

.header {
  background: #fff;
  height: 50px;
  height: 3.125rem;
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .header {
    height: 6.25rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__logo {
  height: inherit;
  width: 100%;
  max-width: 120px;
  max-width: 7.5rem;
  width: 100%;
  z-index: 9999;
  padding-left: 20px;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 100%;
    max-width: 13.75rem;
    padding-left: 1.25rem;
  }
}
@media screen and (min-width: 1440px) {
  .header__logo {
    width: 100%;
    max-width: 25rem;
    padding-left: 3.375rem;
  }
}

.header__logo img {
  aspect-ratio: 95/36;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    aspect-ratio: 346/72;
  }
}

.header__logo-img {
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .header__logo-img {
    margin-top: 0;
    margin-top: initial;
  }
}

.header__hamburger {
  position: relative;
  z-index: 30;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
    position: static;
  }
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: orange;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .test {
    font-size: 1.25rem;
  }
}

.p-benefits {
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  background-color: #f7f7f7;
}
@media screen and (min-width: 768px) {
  .p-benefits {
    padding-top: 8.4375rem;
    padding-bottom: 8.75rem;
  }
}

.p-benefits__title {
  background-color: #f8f8f8;
}

.p-benefits__description {
  margin-top: 16px;
  margin-top: 1rem;
  line-height: 2.25;
  letter-spacing: 0.8px;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-benefits__description {
    margin-top: 1.3125rem;
    font-size: 1rem;
  }
}

.p-benefits__items {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__items {
    margin-top: 2.5rem;
  }
}

.p-benefits__item:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__item:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.p-benefits__item {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  background-color: #fff;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__item {
    padding: 2.9375rem;
  }
}

.p-benefits__wrap {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3.75rem;
       -moz-column-gap: 3.75rem;
            column-gap: 3.75rem;
    margin-top: 1.6875rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-benefits__subTitle {
  background-color: #f8f8f8;
  line-height: 1.51;
  letter-spacing: 1.7px;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  border-bottom: 2px solid #047449;
  padding-left: 7px;
  padding-left: 0.4375rem;
  word-break: keep-all;
  word-wrap: anywhere;
}
@media screen and (min-width: 768px) {
  .p-benefits__subTitle {
    font-size: 2.125rem;
  }
}

.p-benefits__lists {
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__lists {
    margin-top: 0.5625rem;
    width: 44%;
  }
}

.p-benefits__list {
  position: relative;
  line-height: 2.1;
  letter-spacing: 1px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #030303;
  padding-left: 22px;
  padding-left: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__list {
    padding-left: 2.0625rem;
    font-size: 1.25rem;
  }
}

.p-benefits__list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/icon-check.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 26/20;
  width: 16px;
  width: 1rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__list::before {
    width: 1.25rem;
  }
}

.p-benefits__list-text {
  margin-top: 12px;
  margin-top: 0.75rem;
  color: #030303;
  line-height: 2.25;
  letter-spacing: 0.8px;
  font-weight: normal;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__list-text {
    margin-top: 1.375rem;
    font-size: 1rem;
  }
}

.p-benefits__img {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__img {
    width: 44%;
    margin-top: 0;
    margin-top: initial;
  }
}

.p-benefits__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 392/271;
}

.p-benefits__text {
  margin-top: 12px;
  margin-top: 0.75rem;
  color: #030303;
  line-height: 2.25;
  letter-spacing: 0.8px;
  font-weight: normal;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__text {
    margin-top: 1.375rem;
    width: 44%;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-benefits__text-wrap {
    width: 44%;
  }
}

.p-benefits__text-item {
  margin-top: 12px;
  margin-top: 0.75rem;
  color: #030303;
  line-height: 2.25;
  letter-spacing: 0.8px;
  font-weight: normal;
  font-size: 14px;
  font-size: 0.875rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .p-benefits__text-item {
    margin-top: 1.375rem;
    font-size: 1rem;
  }
}

.p-benefits__text-item span {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #51b443;
}
@media screen and (min-width: 768px) {
  .p-benefits__text-item span {
    font-size: 1.25rem;
  }
}

.p-company {
  margin-top: 100px;
  margin-top: 6.25rem;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-company {
    margin-top: 8.4375rem;
    margin-bottom: 10.125rem;
  }
}

.p-company__wrap {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-company__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 3.75rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-company__logo {
  max-width: 224px;
  max-width: 14rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-company__logo {
    width: 30%;
    max-width: 18.8125rem;
    padding-left: 4.8125rem;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
  }
}

.p-company__logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 224/165;
}

@media screen and (min-width: 768px) {
  .p-company__details {
    width: 60%;
  }
}

.p-company__description {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.8px;
  color: #030303;
}
@media screen and (min-width: 768px) {
  .p-company__description {
    margin-top: 0;
    margin-top: initial;
    font-size: 1rem;
  }
}

.p-company__table {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-company__table {
    margin-top: 1.5rem;
  }
}

.p-company__table,
.p-company__table td,
.p-company__table th {
  border-collapse: collapse;
}

.p-company__table td,
.p-company__table th {
  padding: 16px 0;
  padding: 1rem 0;
  line-height: 2.25;
  letter-spacing: 0.8px;
  font-weight: normal;
  font-size: 14px;
  font-size: 0.875rem;
  color: #030303;
}
@media screen and (min-width: 768px) {
  .p-company__table td,
  .p-company__table th {
    padding: 1.5rem 0;
    font-size: 1rem;
  }
}

.p-company__table th {
  border-bottom: 1px solid #51b443;
  width: 22%;
  vertical-align: top;
}

.p-company__table th.-first {
  border-top: 1px solid #51b443;
}

.p-company__table th.-last {
  border-bottom: 1px solid #dfdede;
}

.p-company__table td {
  border-bottom: 1px solid #dfdede;
  width: 72%;
  padding-left: 16px;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-company__table td {
    padding-left: 1.75rem;
  }
}

.p-company__table td.-first {
  border-top: 1px solid #dfdede;
}

.p-company__profile {
  margin-top: 42px;
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .p-company__profile {
    margin-top: 3.9375rem;
  }
}

.p-contact {
  background-image: url(../images/contact-back.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-top: 5.375rem;
    padding-bottom: 6.3125rem;
  }
}

.p-contact__title {
  font-size: 32px;
  font-size: 2rem;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  letter-spacing: 2.4px;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 2.5rem;
  }
}

.p-contact__subtitle {
  line-height: 1.88;
  letter-spacing: 1.6px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__subtitle {
    font-size: 1rem;
  }
}

.p-contact__text {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 22px;
  margin-top: 1.375rem;
  line-height: 2.25;
  letter-spacing: 0.8px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    font-size: 1rem;
  }
}

.p-contact__buttons {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.875rem;
  }
}

.p-contact__btn {
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__btn {
    margin-top: 0;
    margin-top: initial;
  }
}

.p-drone-school__feature:not(:first-child) {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-drone-school__feature:not(:first-child) {
    margin-top: 4rem;
  }
}

.p-drone-school__feature {
  border: 4px solid #dceed9;
  padding: 10px 10px 10px 10px;
  padding: 0.625rem 0.625rem 0.625rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-drone-school__feature {
    border: none;
    padding: 0;
    padding: initial;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-drone-school__feature--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .p-drone-school__feature-box {
    border: 8px solid #dceed9;
    padding: 6.25rem 23.0625rem 5rem 3.75rem;
    min-height: 27.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-drone-school__feature-box--reverse {
    padding: 6.25rem 3.75rem 5rem 23.0625rem;
  }
}

.p-drone-school__feature-header {
  background-color: #047449;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  color: #fff;
  padding: 9px 7px 4px;
  padding: 0.5625rem 0.4375rem 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-drone-school__feature-header {
    position: absolute;
    top: -0.75rem;
    left: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-drone-school__feature-header--right {
    left: auto;
    left: initial;
    right: 3.75rem;
  }
}

.p-drone-school__feature-number {
  letter-spacing: 0.9px;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-align: center;
  display: block;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-drone-school__feature-number {
    font-size: 2.25rem;
  }
}

.p-drone-school__feature-label {
  display: block;
  letter-spacing: 0.35px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-drone-school__feature-label {
    font-size: 0.875rem;
  }
}

.p-drone-school__feature-title {
  line-height: normal;
  letter-spacing: 2px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-drone-school__feature-title {
    font-size: 2.375rem;
    margin-top: 0;
    margin-top: initial;
  }
}

.p-drone-school__feature-title span {
  color: #51b443;
}

.p-drone-school__feature-text {
  line-height: 2.25;
  letter-spacing: 0.8px;
  font-weight: normal;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-drone-school__feature-text {
    margin-top: 1.3125rem;
    font-size: 1rem;
  }
}

.p-drone-school__feature-image {
  aspect-ratio: 254/166;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-drone-school__feature-image {
    margin-top: 0;
    margin-top: initial;
    max-width: 28.75rem;
    margin-left: -19.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-drone-school__feature-image--reverse {
    margin-right: -19.8125rem;
    margin-left: 0;
    margin-left: initial;
    z-index: 10;
  }
}

.p-features {
  margin-top: -50px;
  margin-top: -3.125rem;
  padding-top: 150px;
  padding-top: 9.375rem;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-features {
    padding-top: 11.6875rem;
    margin-top: -3.125rem;
    margin-bottom: 8.75rem;
  }
}

.p-features__description {
  line-height: 2.25;
  letter-spacing: 0.8px;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-features__description {
    margin-top: 1.3125rem;
    font-size: 1rem;
  }
}

.p-features__content {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-features__content {
    margin-top: 2.5rem;
  }
}

.p-fv {
  margin-top: 50px;
  margin-top: 3.125rem;
  background-image: url(../images/fv_sp2.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 149px;
  padding-top: 9.3125rem;
  padding-bottom: 110px;
  padding-bottom: 6.875rem;
  aspect-ratio: 750/1000;
}
@media screen and (min-width: 768px) {
  .p-fv {
    margin-top: 6.25rem;
    padding-top: 7.125rem;
    padding-bottom: 8.4375rem;
    background-position: bottom;
    background-image: url(../images/fv3.webp);
    aspect-ratio: initial;
  }
}
@media screen and (min-width: 1440px) {
  .p-fv {
    padding-bottom: 20.9375rem;
  }
}

.p-fv__content {
  color: #fff;
  font-weight: 700;
  letter-spacing: 3.08px;
  line-height: 1.39;
}
.p-fv__title {
  font-size: 20px;
  font-size: 1.25rem;
  border-bottom: 1px solid #dfdede;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-fv__title {
    font-size: 1.75rem;
  }
}

.p-fv__title span {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-fv__title span {
    font-size: 2.5625rem;
  }
}

.p-fv__catch {
  font-size: 28px;
  font-size: 1.75rem;
  margin-left: 25px;
  margin-left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-fv__catch {
    font-size: 2.0625rem;
    margin-left: 3.5625rem;
  }
}

.p-fv__catch .-border {
  border-bottom: 1px solid #dfdede;
  display: inline-block;
}
.p-fv__catch .-md {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-fv__catch .-md {
    font-size: 2.75rem;
  }
}

.p-fv__catch .-lg {
  border-bottom: 1px solid #dfdede;
  display: inline-block;
  font-size: 42px;
  font-size: 2.625rem;
  margin-left: 45px;
  margin-left: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-fv__catch .-lg {
    font-size: 3.875rem;
    margin-left: 8.25rem;
  }
}

.p-fv__subTitle:first-of-type {
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-fv__subTitle:first-of-type {
    margin-top: 2.5rem;
  }
}

.p-fv__subTitle {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  color: #000;
  line-height: 2.05;
  letter-spacing: 1.54px;
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-fv__subTitle {
    font-size: 1.375rem;
    margin-top: 0.625rem;
    padding-left: 3.1875rem;
    padding-right: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-fv__subTitle span {
    color: #51b443;
  }
}

@media screen and (min-width: 768px) {
  .p-fv__subTitle::after {
    -webkit-transform: skewX(-20deg);
            transform: skewX(-20deg);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-color: #fff;
  }
}

@media screen and (min-width: 768px) {
  .p-fv__subTitle::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(../images/icon-check.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    left: 1.25rem;
    width: 0.9375rem;
    aspect-ratio: 15/11;
  }
}

.p-fv__subTitle .-child {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding-right: 12px;
  padding-right: 0.75rem;
  padding-left: 12px;
  padding-left: 0.75rem;
}

.p-fv__subTitle .-child::after {
  -webkit-transform: skewX(-13deg);
          transform: skewX(-13deg);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #fff;
}

.p-fv__subTitle .-child.-first {
  padding-left: 32px;
  padding-left: 2rem;
  padding-right: 12px;
  padding-right: 0.75rem;
}
.p-fv__subTitle .-child.-first::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  left: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/icon-check.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 15/11;
  width: 12px;
  width: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-fv__subTitle .-child.-first::before {
    /* 必要なら追加のスタイル */
  }
}

.p-fv__subTitle .-child.-right {
  margin-left: 130px;
  margin-left: 8.125rem;
}

.p-fv__subTitle .-child.-second {
  margin-left: 38px;
  margin-left: 2.375rem;
}

.p-fv__subTitle .-child.-third {
  margin-left: 10px;
  margin-left: 0.625rem;
}

.p-profile {
  border: 3px solid #047449;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-profile {
    border: 7px solid #047449;
    padding: 3.0625rem 3.5rem 3.125rem 2.875rem;
  }
}

.p-profile__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1.2px;
  position: relative;
  border-bottom: 1px solid #dfdede;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-profile__title {
    font-size: 1.5rem;
    padding-bottom: 0.875rem;
  }
}

.p-profile__title::before {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 20%;
  height: 1px;
  background: #047449;
}
@media screen and (min-width: 768px) {
  .p-profile__title::before {
    width: 11%;
  }
}

@media screen and (min-width: 768px) {
  .p-profile__content {
    margin-top: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 2.25rem;
       -moz-column-gap: 2.25rem;
            column-gap: 2.25rem;
  }
}

.p-profile__image {
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-profile__image {
    width: 35%;
    margin-top: 0.4375rem;
  }
}

.p-profile__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 197/197;
  max-width: 307px;
  max-width: 19.1875rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-profile__image img {
    max-width: 12.3125rem;
  }
}

.p-profile__name {
  margin-top: 12px;
  margin-top: 0.75rem;
  color: #030303;
  line-height: 3.43;
  letter-spacing: 0.7px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-profile__name {
    font-size: 0.875rem;
  }
}

.p-profile__name span {
  line-height: 2.4;
  letter-spacing: 1px;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-profile__name span {
    font-size: 1.25rem;
  }
}

.p-profile__position {
  padding: 16px 18px 14px;
  padding: 1rem 1.125rem 0.875rem;
  background-color: #f7f7f7;
  font-weight: normal;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.69;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .p-profile__position {
    font-size: 1rem;
  }
}

.p-profile__details {
  line-height: 2.25;
  letter-spacing: 0.8px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #030303;
  font-weight: normal;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-profile__details {
    width: 66%;
    font-size: 1rem;
    margin-top: 0;
    margin-top: initial;
  }
}

.u-greeen {
  color: #51b443;
}
/*# sourceMappingURL=styles.css.map */
