@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

@media screen and (max-width: px(1440)-1px) and (min-width: px(768)) {
  html {
    font-size: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: px(768)-1px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  color: #3A3A3A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
}

.main {
  overflow: hidden;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

.l-inner {
  padding-inline: 20px;
}

.c-header {
  height: 60px;
  position: fixed; /* ヘッダーを固定 */
  top: 0; /* 上部に配置 */
  left: 0; /* 左端に配置 */
  width: 100%; /* 横幅を全体に広げる */
  background: rgba(255, 255, 255, 0.85);
  z-index: 1000; /* 重なり順を他の要素より前に */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングを含めてボックスサイズを計算 */
}
@media (min-width: 1200px) {
  .c-header {
    height: 80px;
  }
}

.c-header__inner {
  height: inherit;
  padding-block: 16px;
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 1200px) {
  .c-header__inner {
    padding-inline: 128px;
  }
}

.c-header__logo img {
  width: 50px;
}
@media (min-width: 1200px) {
  .c-header__logo img {
    width: 113.152px;
  }
}
@media (min-width: 768px) {
  .c-header__logo {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .c-header__logo:hover {
    opacity: 0.8;
  }
}

.c-header__nav {
  display: none;
}
@media (min-width: 1200px) {
  .c-header__nav {
    display: inline;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 51px;
  }
}

.c-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
}

.c-header__nav-item a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.6px;
  position: relative;
  display: inline-block;
}
.c-header__nav-item a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3A3A3A;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}
.c-header__nav-item a:hover::before,
.c-header__nav-item.is-active a::before {
  width: 100%;
}

.c-header-contact__link {
  padding: 10px 52px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 40px;
  background: #ff910a;
  border: 1px solid transparent;
  -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);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .c-header-contact__link:hover {
    background: #fff;
    color: #ff910a;
    border: 1px solid #ff910a;
  }
}

.c-drawer-icon {
  width: 32px;
  height: 27px;
  position: relative;
  z-index: 51;
}
.c-drawer-icon.is-checked .c-drawer-icon__bar:nth-of-type(1) {
  top: 14px;
  width: 32px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-drawer-icon.is-checked .c-drawer-icon__bar:nth-of-type(2) {
  top: 9px;
  display: none;
}
.c-drawer-icon.is-checked .c-drawer-icon__bar:nth-of-type(3) {
  top: 14px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 1200px) {
  .c-drawer-icon {
    display: none;
  }
}

.c-drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background-color: #3A3A3A;
  border-radius: 6px;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.c-drawer-icon__bar:nth-of-type(2) {
  top: 12px;
}
.c-drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.c-drawer-content {
  width: 100%;
  height: 100%;
  position: fixed; /*固定して浮かせる*/
  top: 60px;
  background: #fff;
  z-index: 50;
  padding: 74px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.c-drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (min-width: 1200px) {
  .c-drawer-content {
    display: none;
  }
}

.c-drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  text-align: center;
  height: 543px;
}

.ç-content__link {
  display: inline-block;
  font-size: 16px;
  padding-block: 8px;
}

.c-drawer-button {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 40px;
  background: #ff910a;
  padding: 10px 52px;
  -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);
}

.c-top-section {
  padding-block: 40px;
}

.c-top-section-title {
  text-align: center;
}

.c-top-section-title__ja {
  font-family: "Roboto", sans-serif;
  color: #37A112;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 52px; /* 92.857% */
  letter-spacing: 2.24px;
}
@media (min-width: 768px) {
  .c-top-section-title__ja {
    font-size: 56px;
  }
}

.c-top-section-title__en {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: 0.8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .c-top-section-title__en {
    font-size: 20px;
    padding-top: 24px;
  }
}
.c-top-section-title__en::before {
  position: absolute;
  content: "";
  width: 72px;
  height: 2px;
  background: #37A112;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .c-top-section-title__en::before {
    height: 4px;
    bottom: -32px;
  }
}

.c-button___container {
  text-align: center;
  margin-top: 40px;
}

.c-button__link {
  display: inline-block;
  color: #fff;
  background: #37A112;
  border-radius: 48px;
  border: 1px solid #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
  font-size: 14px;
  font-weight: 700;
  line-height: 32px; /* 177.778% */
  letter-spacing: 0.72px;
  padding: 10px 80px 10px 80px;
  position: relative;
}
@media (min-width: 768px) {
  .c-button__link {
    font-size: 18px;
    padding: 12px 115px 17px 115px;
  }
}
.c-button__link::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  -webkit-transition: width 1.2s ease;
  transition: width 1.2s ease;
}
@media (min-width: 768px) {
  .c-button__link::before {
    width: 64px;
  }
}
@media (min-width: 768px) {
  .c-button__link:hover {
    -webkit-box-shadow: 0px 2px 2px 0px rgba(45, 45, 45, 0.15);
            box-shadow: 0px 2px 2px 0px rgba(45, 45, 45, 0.15);
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
            
    background-color: #fff;
    color: #37A112;
    border: 1px solid #37A112;
  }
  .c-button__link:hover::before {
    width: 20px;
    background: #37A112;
  }
}

.c-main {
  overflow: hidden;
}

.c-page-mv {
  height: 380px;
}

.c-page-mv__inner {
  position: relative;
}

.c-page-mv__bg {
  position: absolute;
}

.c-page-mv__bg1 {
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-page-mv__bg1 img {
    width: 65%;
  }
}

.c-page-mv__bg2 {
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .c-page-mv__bg2 {
    right: -70px;
  }
  .c-page-mv__bg2 img {
    width: 65%;
  }
}

.c-page-mv__bg3 {
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-page-mv__bg3 img {
    width: 65%;
  }
}

.c-page-mv__inner {
  height: 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;
  position: relative;
}

.c-page-title {
  margin: 170px auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
  position: relative;
}
.c-page-title::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 3px;
  bottom: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #37A112;
}

.c-page-main-title {
  font-size: 54px;
  font-family: "Roboto", sans-serif;
  color: #37A112;
  font-weight: 700;
  line-height: 52px; /* 96.296% */
  letter-spacing: 2.16px;
}

.c-page-sub-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 20px; /* 83.333% */
  letter-spacing: 0.96px;
}

.c-page-section-title-wrap {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  position: relative;
}
.c-page-section-title-wrap::before {
  position: absolute;
  content: "";
  width: 72px;
  height: 4px;
  background: #37A112;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -32px;
}

.c-page-section-main-title {
  font-family: "Roboto", sans-serif;
  font-size: 56px;
  color: #37A112;
  font-weight: 700;
  line-height: 52px; /* 92.857% */
  letter-spacing: 2.24px;
}
@media screen and (max-width: 767px) {
  .c-page-section-main-title {
    font-size: 45px;
  }
}

.c-page-section-sub-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .c-page-section-sub-title {
    font-size: 18px;
  }
}

.c-page-contact {
  background: rgba(240, 240, 238, 0.7);
  position: relative;
}

.c-page-contact__bg {
  position: absolute;
  opacity: 0.7;
}
.c-page-contact__bg1 {
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-page-contact__bg1 img {
    width: 60%;
  }
}

.c-page-contact__bg2 {
  bottom: 0;
  right: 0;
  z-index: 1;
}

.c-page-contact__inner {
  padding-top: 80px;
  padding-bottom: 105px;
  padding-inline: 145px;
  margin-inline: auto;
  max-width: 1440px;
}
@media screen and (max-width: 1199px) {
  .c-page-contact__inner {
    padding-inline: 100px;
  }
}
@media screen and (max-width: 899px) {
  .c-page-contact__inner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-page-contact__inner {
    padding-inline: 20px;
  }
}

.c-page-contact__wrap {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
  padding: 79px 0 54px ;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .c-page-contact__wrap {
    padding: 79px 160px 54px 160px;
  }
}
@media screen and (max-width: 767px) {
  .c-page-contact__wrap {
    padding: 20px;
  }
}

.c-page-contact__text {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px; /* 150% */
  letter-spacing: 1.92px;
}
@media screen and (max-width: 1199px) {
  .c-page-contact__text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-page-contact__text {
    font-size: 15px;
  }
}

.c-page-contact-button-wrap {
  -webkit-margin-before: 48px;
          margin-block-start: 48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-page-contact-button-wrap {
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

.c-page-contact__link {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  line-height: 32px; /* 177.778% */
  letter-spacing: 0.72px;
  padding: 12px 115px;
  border-radius: 48px;
  border: 2px solid #fff;
  background: #ff910a;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
  position: relative;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.c-page-contact__link::before {
  position: absolute;
  content: "";
  width: 68px;
  height: 1px;
  background: #fff;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: width 1.2s ease;
}

/* SPサイズ（〜767px） */
@media screen and (max-width: 767px) {
  .c-page-contact__link {
    padding: 12px 50px;
    font-size: 15px;
  }

  .c-page-contact__link::before {
    width: 30px;
  }
}

/* PCサイズ（768px〜） */
@media screen and (min-width: 768px) {
  .c-page-contact__link:hover {
    -webkit-box-shadow: 0px 2px 2px 0px rgba(45, 45, 45, 0.15);
            box-shadow: 0px 2px 2px 0px rgba(45, 45, 45, 0.15);
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }

  .c-page-contact__link:hover::before {
    width: 20px;
  }
}


.c-news__card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 10px;
}
@media screen and (max-width: 899px) {
  .c-news__card {
    -ms-flex-preferred-size: calc(50% - 18px);
        flex-basis: calc(50% - 18px); 
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .c-news__card {
        -ms-flex-preferred-size: calc(50% - 7px);
        flex-basis: calc(50% - 7px); 
  }
}

.c-news__card a{
    border-radius: 8px;
    width: 100%;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 10px;
    margin-bottom: 30px;
      -webkit-box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
}



.c-news-card__image {
  position: relative; 
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.c-news-card__new {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ff3b39; 
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
  z-index: 2;
}

.c-news-card__image {
	height: 14rem;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
	.c-news-card__image {
	height: 7rem;
    }
}

.c-news-card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.c-news__card:hover .c-news-card__image img {
  transform: scale(1.1);
}

.c-news-card__body {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  border-radius: 0px 0px 12px 12px;
  background: #fff;
  padding: 19px 25px 16px 25px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
}
@media screen and (max-width: 1439px) {
  .c-news-card__body {
    min-height: 200px;
  }
}

@media screen and (max-width: 767px) {
  .c-news-card__body {
    padding: 12px 4px;
    min-height: 180px;
  }
}

.c-news-card__tag {
  width: fit-content;
  height: fit-content;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px; /* 164.286% */
  letter-spacing: 0.84px;
  border-radius: 32px;
  background: #37A112;
  padding: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 899px) {
  .c-news-card__tag {
    font-size: 12px;
    padding: 3px 8px;
  }
}

@media screen and (max-width: 767px) {
  .c-news-card__tag {
    font-size: 10px;
    padding: 3px 3px;
  }
}

.c-news-card__title {
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px; /* 143.75% */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 767px) {
  .c-news-card__title {
    font-size: 12px;
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.c-news-card__date {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
}
@media screen and (max-width: 767px) {
  .c-news-card__date {
    font-size: 11px;
  }
}


.c-news-card__title,
.c-news-card__date {
 padding-inline: 19px;
}

.c-news-card__tag{
 margin-left: 10px;
}

.c-news-card__date{
 padding-bottom: 19px;
}



.c-single-header {
  background: rgba(247, 247, 247, 0.85);
}

.c-single-content__inner {
  padding-top: 249px;
  padding-bottom: 88px;
  padding-inline: 325px;
  margin-inline: auto;
  max-width: 1440px;
}
@media screen and (max-width: 1199px) {
  .c-single-content__inner {
    padding-inline: 200px;
    padding-top: 169px;
  }
}
@media screen and (max-width: 899px) {
  .c-single-content__inner {
    padding-inline: 150px;
  }
}
@media screen and (max-width: 767px) {
  .c-single-content__inner {
    padding-inline: 20px;
  }
}

.c-single-content__title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2.4px;
  -webkit-margin-after: 26px;
          margin-block-end: 26px;
}
@media screen and (max-width: 767px) {
  .c-single-content__title {
    font-size: 20px;
  }
}

.c-single-content__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .c-single-content__meta {
    gap: 18px;
  }
}

.c-single-content__date {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 767px) {
  .c-single-content__date {
    font-size: 16px;
  }
}

.c-single-content__category {
  color: #37A112;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 767px) {
  .c-single-content__category {
    font-size: 16px;
  }
}

.c-single-content__thumbnail {
  -webkit-margin-before: 17px;
          margin-block-start: 17px;
}
.c-single-content__body {
  -webkit-margin-before: 56px;
          margin-block-start: 56px;
}
.c-single-content__body p {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px; /* 177.778% */
  letter-spacing: 1.8px;
}
@media screen and (max-width: 767px) {
  .c-single-content__body p {
    font-size: 15px;
  }
}
.c-single-content__body p:nth-of-type(2) {
  -webkit-margin-before: 56px;
          margin-block-start: 56px;
}


.c-single-content__mask-text {
  position: relative;
  height: 400px; 
  margin-top: -350px;
  overflow: hidden;
}

.c-single-content__mask-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}

.c-single-content__move{
 font-weight: 700;
 font-size: 12px;
 margin-top: 8px;
}

.c-single-content__contact--data{
    display: flex;
    flex-direction: column;
}


.c-single-related {
  background: #F0F0EE;
}

.c-single-related__inner {
  padding-top: 88px;
  padding-bottom: 126px;
  padding-inline: 152px;
  margin-inline: auto;
  max-width: 1440px;
}
@media screen and (max-width: 1199px) {
  .c-single-related__inner {
    padding-inline: 100px;
  }
}
@media screen and (max-width: 999px) {
  .c-single-related__inner {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 767px) {
  .c-single-related__inner {
    padding-inline: 40px;
  }
}

.c-single-related__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 20px; /* 83.333% */
  letter-spacing: 0.96px;
  position: relative;
}
.c-single-related__title::before {
  position: absolute;
  content: "";
  width: 72px;
  height: 3px;
  background: #37A112;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -34px;
}

.c-single-related__cards {
  -webkit-margin-before: 90px;
          margin-block-start: 90px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 28px;
}
@media screen and (max-width: 767px) {
  .c-single-related__cards {
   display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}

.c-related-card {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 10px;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.06);
}

.c-related-card__image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.c-related-card__body {
  display: flex;
  flex-direction: column;
  min-height: 162px;
  flex-grow: 1;
  border-radius: 0px 0px 12px 12px;
  background: #fff;
  padding: 29px 26px 12px 26px;
}
.c-related-card__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px; /* 143.75% */
  letter-spacing: 0.96px;
}

.c-related-card__more {
  margin-top: auto;
  text-align: end;
  color: #37A112;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px; /* 143.75% */
  letter-spacing: 0.96px;
}
.c-related-card__title,
.c-related-card__more {
  padding-inline: 25px;
}

.c-related-card__more{
 padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .c-related-card__more {
    transition: opacity 0.3s ease;
  }

  .c-related-card__more:hover {
    opacity: 0.8;
  }
}


.c-footer {
  background: #3A3A3A;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .c-footer {
    text-align: start;
  }
}

.c-footer__inner {
  padding-top: 40px;
  text-align: left;
}
@media (min-width: 768px) {
  .c-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-inline: 50px;
    max-width: 1000px;
    margin-inline: auto;
  }
}
@media (min-width: 1200px) {
  .c-footer__inner {
    padding-top: 74px;
    padding-inline: 110px;
    margin-inline: auto;
    max-width: 1440px;
  }
}
@media (min-width: 1440px) {
  .c-footer__inner {
    padding-top: 72px;
  }
}

.c-footer__logo img {
  width: 150px;
}
@media (min-width: 1200px) {
  .c-footer__logo img {
    width: 178px;
  }
}
@media (min-width: 768px) {
  .c-footer__logo {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .c-footer__logo:hover {
    opacity: 0.8;
  }
}

.c-footer__company {
  margin-top: 49px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
}

.c-footer__info {
  margin-top: 26px;
}

.c-footer__info-item {
  font-size: 13px;
  font-weight: 500;
  line-height: 26px; /* 200% */
  letter-spacing: 1.3px;
}

.c-footer__nav {
  margin-top: 50px;
}
@media (min-width: 1200px) {
  .c-footer__nav {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 45px;
  }
}
@media (min-width: 1440px) {
  .c-footer__nav {
    margin-top: 37px;
  }
}

.c-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .c-footer__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .c-footer__nav-list {
    gap: 30px;
  }
}
@media (min-width: 1440px) {
  .c-footer__nav-list {
    gap: 48px;
  }
}

.c-footer__nav-item a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.6px;
  position: relative;
  display: inline-block;
}
.c-footer__nav-item a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}
.c-footer__nav-item a:hover::before {
  width: 100%;
}

.c-footer__contact {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .c-footer__contact {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .c-footer__contact {
    margin-top: 0;
  }
}

.c-footer-contact__link {
  color: #fff;
  padding: 10px 52px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 40px;
  background: #ff910a;
  border: 1px solid transparent;
  -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);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .c-footer-contact__link:hover {
    background: #fff;
    color: #ff910a;
    border: 1px solid #ff910a;
  }
}

.c-footer__policy_box {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 1em;
}

.c-footer__policy {
	border-right: 1px solid #FFF;
    font-size: 13px;
    font-weight: 500;
    line-height: 28px; /* 215.385% */
    letter-spacing: 1.3px;
    margin-right: 1em;
    padding-right: 1em;
}

.c-footer__policy_box p {
	font-size: 13px;
    font-weight: 500;
    line-height: 28px; /* 215.385% */
    letter-spacing: 1.3px;
}	

@media (min-width: 768px) {
  .c-footer__policy {
    text-align: center;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .c-footer__policy:hover {
    opacity: 0.8;
  }
}
@media (min-width: 1440px) {
  .c-footer__policy_box {
    max-width: 1440px;
    margin-inline: auto;
  }
}

.c-footer__bg {
  background: #363636;
  padding-block: 25px;
}
@media (min-width: 1200px) {
  .c-footer__bg {
    padding-block: 55px;
  }
}

.p-top-mv {
  height: 100vh;
}

@media (max-width: 767px) {
  .p-top-mv{
  height: 525px;
  }
}

.p-top-mv__inner {
  position: relative;
}
.p-top-mv__bg {
  position: absolute;
}
.p-top-mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv__bg1 {
  width: 160px;
  top: 0;
  right: 0;
}
@media (min-width: 768px) {
  .p-top-mv__bg1 {
    width: 380px;
    right: -82px;
  }
}
@media (min-width: 1440px) {
  .p-top-mv__bg1 {
    width: 420.649px;
    top: -48px;
    right: 0;
  }
}
.p-top-mv__bg2 {
  width: 306px;
  top: 279px;
  right: 0;
}
@media (min-width: 768px) {
  .p-top-mv__bg2 {
    width: 489px;
    top: 351px;
    right: 0;
  }
}
@media (min-width: 1200px) {
  .p-top-mv__bg2 {
    top: 352px;
    right: 0px;
  }
}
@media (min-width: 1440px) {
  .p-top-mv__bg2 {
    top: 49px;
    right: 0px;
    width: 914px;
  }
}
.p-top-mv__bg3 {
  width: 150px;
  top: 447px;
  left: 0px;
}
@media (min-width: 768px) {
  .p-top-mv__bg3 {
    width: 321px;
    top: 581px;
    left: 0px;
  }
}
@media (min-width: 1200px) {
  .p-top-mv__bg3 {
    top: 580px;
  }
}
@media (min-width: 1440px) {
  .p-top-mv__bg3 {
    top: 643px;
    left: 0;
    width: 276px;
  }
}
.p-top-mv__bg4 {
  width: 200px;
  top: 0;
  left: 0px;
}
@media (min-width: 768px) {
  .p-top-mv__bg4 {
    width: 340px;
  }
}
@media (min-width: 1440px) {
  .p-top-mv__bg4 {
    width: 478.422px;
    top: -37px;
  }
}
.p-top-mv__lead {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(50% + 324px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .p-top-mv__lead{
    top: calc(50% + 192px);
  }
}
@media (min-width: 640px) {
  .p-top-mv__lead {
    gap: 30px;
    left: 40%;
  }
}
@media (min-width: 768px) {
  .p-top-mv__lead {
    gap: 40px;
    left: 40%;
  }
}
@media (min-width: 1200px) {
  .p-top-mv__lead {
    gap: 75px;
    top: calc(50% + 288px);
  }
}
@media (min-width: 1440px) {
  .p-top-mv__lead {
    gap: 75px;
    left: 38%;
    top: calc(50% + 288px);
  }
}

.p-top-mv__title {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 65px;
  font-weight: 700;
  line-height: 68px; /* 51.515% */
  letter-spacing: 5.28px;
}
@media (min-width: 640px) {
  .p-top-mv__title {
    font-size: 80px;
  }
}
@media (min-width: 768px) {
  .p-top-mv__title {
    font-size: 100px;
  }
}
@media (min-width: 1200px) {
  .p-top-mv__title {
    font-size: 132px;
    font-weight: 700;
    line-height: 68px; /* 51.515% */
    letter-spacing: 5.28px;
  }
}
.p-top-mv__text {
  font-size: 15px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 2.24px;
}
@media (min-width: 640px) {
  .p-top-mv__text {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .p-top-mv__text {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .p-top-mv__text {
    font-size: 28px;
    line-height: 44px; /* 137.5% */
    letter-spacing: 2.24px;
  }
}
.p-top-mv__text span {
  color: #37A112;
  font-size: 20px;
  font-weight: 600;
  line-height: 44px; /* 137.5% */
  letter-spacing: 2.56px;
}
@media (min-width: 640px) {
  .p-top-mv__text span {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .p-top-mv__text span {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  .p-top-mv__text span {
    font-size: 32px;
    line-height: 44px; /* 137.5% */
    letter-spacing: 2.56px;
  }
}
@media (min-width: 1440px) {
  .p-top-mv__text span {
    font-size: 32px;
    line-height: 44px; /* 137.5% */
    letter-spacing: 2.56px;
  }
}

@media (min-width: 768px) {
  .p-top-topics {
    padding-top: 45px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .p-top-topics {
    padding-top: 29px;
  }
}

@media (min-width: 768px) {
  .p-top-topics__inner {
    padding-inline: 20px;
  }
}
@media (min-width: 1200px) {
  .p-top-topics__inner {
    padding-inline: 144px;
    margin-inline: auto;
    max-width: 1440px;
  }
}

.p-top-topics__cards {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .p-top-topics__cards {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
  column-gap: 36px;
  }
}
.p-top-topics-card__link{
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .p-top-topics-card__link{
   display: grid;
   grid-template-rows: subgrid;
   grid-row: span 4;
   gap: 10px;
  }
}


@media screen and (max-width: 767px) {
  .p-top-topics__cards--hidden {
    display: none;
  }
}

.p-top-topics__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden; 
  position: relative;
  border-radius: 0px 0px 12px 12px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
}
@media (min-width: 768px) {
  .p-top-topics__card {
   justify-content: unset;
   display: grid;
   grid-template-rows: subgrid;
   grid-row: span 4;
   gap: 10px;
  }
}
.p-top-topics-card__image {
  overflow: hidden; 
  height: 14rem;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

@media screen and (max-width: 769px) {
	.p-top-topics-card__image {
    	height: 9rem;
    }
}
.p-top-topics-card__image img {
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s ease;
}

.p-top-topics-card:hover .p-top-topics-card__image img {
  transform: scale(1.1);
}

.p-top-topics-card__body {
  padding: 19px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}




.p-top-topics-card__tag {
  width: fit-content;
  height: fit-content;
  font-size: 12px;
  font-weight: 500;
  line-height: 23px; /* 164.286% */
  letter-spacing: 0.84px;
  color: #fff;
  background: #37A112;
  border-radius: 32px;
  display: inline-block;
padding-inline:10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media (min-width: 1200px) {
  .p-top-topics-card__tag {
    font-size: 14px;
  }
}

.p-top-topics-card__title {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px; /* 143.75% */
  letter-spacing: 0.96px;
}
@media (max-width: 767px) {
  .p-top-topics-card__title {
  overflow: hidden;
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; 
  }
}

@media (min-width: 1200px) {
  .p-top-topics-card__title {
    font-size: 16px;
  }
}

.p-top-topics-card__date {
  margin-top: 16px;
  display: block;
}
@media (min-width: 1200px) {
  .p-top-topics-card__date {
    font-size: 14px;
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .p-top-topics-card__title,
  .p-top-topics-card__date {
    padding-inline: 19px;
  }
}
  
@media (min-width: 768px) {
  .p-top-topics-card__tag{
    margin-left: 10px;
  }
}
@media (min-width: 768px) {
  .p-top-topics-card__date{
    padding-bottom: 10px;
  }
}

@media (min-width: 768px) {
  .p-top-topics-button__container {
    margin-top: 50px;
  }
}



.p-top-topics-swiper__container {
  position: relative;
  padding-inline: 40px;
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
}


.p-top-topics-swiper {
  overflow: visible;
}


.p-top-topics-swiper-slide {
  width: 300px;
  height: auto;
}


.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  height: 36px;
  color: #000;
  border-radius: 50%;
  z-index: 10;
}

.swiper-button-prev {
  left: -42px;
}

.swiper-button-next {
  right: -42px;
}

@media (min-width: 768px) {
  .p-top-topics-swiper--hidden {
    display: none;
  }
}
.p-top-service {
  background: #F0F0EE;
}
@media (min-width: 1440px) {
  .p-top-service {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .p-top-service__inner {
    padding-top: 80px;
    padding-bottom: 88px;
  }
}
@media (min-width: 1200px) {
  .p-top-service__inner {
    padding-inline: 191px;
    margin-inline: auto;
    max-width: 1440px;
  }
}
@media (min-width: 1440px) {
  .p-top-service__inner {
    padding-inline: 230px;
    margin-inline: auto;
    max-width: 1440px;
  }
}

.p-top-service__cards {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .p-top-service__cards {
    margin-top: 96px;
    max-width: 800px;
    margin-inline: auto;
  }
}
@media (min-width: 1200px) {
  .p-top-service__cards {
    max-width: 100%;
  }
}

.p-top-service__cards-head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 1200px) {
  .p-top-service__cards-head {
 display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 34px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-inline: auto;
  }
}

.p-top-service__cards-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (min-width: 1200px) {
  .p-top-service__cards-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-inline: auto;
  }
}
@media (min-width: 1440px) {
  .p-top-service__cards-bottom {
    padding-left: 173px;
    padding-right: 165px;
    margin-inline: auto;
  }
}

.p-top-service__card {
  position: relative;
  padding: 29px 5px;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  border: 2px solid #ccc;
  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;
  min-height: 312px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top-service__card {
    padding: 29px 32px;
  }
}

@media (min-width: 1200px) {
  .p-top-service__card {
    width: 250px;
  }
}
@media (min-width: 1440px) {
  .p-top-service__card {
    width: 304px;
  }
}

.p-top-service-card__title {
  color: #37A112;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px; /* 130% */
  letter-spacing: 1.6px;
}
.p-top-service-card__title span {
  color: #37A112;
  font-size: 28px;
  letter-spacing: 2.24px;
}

.p-top-service-card__image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
.p-top-service-card__text {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 130% */
  letter-spacing: 1.6px;
}
@media screen and (max-width: 767px) {
  .p-top-service-card__text {
    font-size: 16px;
  }
}

.p-top-service-button__container {
  margin-top: 48px;
}

@media (min-width: 1200px) {
  .p-top-service-card__text-small {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .p-top-service-card4 {
    display: none;
  }
}

.p-top-service-card5 {
  display: none;
}
@media (min-width: 1200px) {
  .p-top-service-card5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 768px) {
  .p-top-service-card__text--hidden {
    display: none;
  }
}



@media (min-width: 768px) {
  .p-top-community__inner {
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 880px;
    margin-inline: auto;
  }
}
@media (min-width: 1200px) {
  .p-top-community__inner {
    padding-inline: 30px;
    margin-inline: auto;
    max-width: 1440px;
  }
}
@media (min-width: 1440px) {
  .p-top-community__inner {
    padding-top: 35px;
    padding-inline: 120px;
    margin-inline: auto;
    max-width: 1440px;
  }
}

.p-top-community__card {
  margin-top: 64px;
}
@media (min-width: 1200px) {
  .p-top-community__card {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    margin-top: 96px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 36px;
    border-radius: 16px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.55);
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.55);
  }
}

.p-top-community-card__head {
  width: 100%;
  position: relative;
}
@media (max-width: 1199px) {
  .p-top-community-card__head {
   display: none;
  }
}

@media (min-width: 1440px) {
  .p-top-community-card__head {
    width: 690px;
  }
}
.p-top-community-card__head--sp{
display: none;
}
@media (max-width: 1199px) {
  .p-top-community-card__head--sp {
   display: inline;
  }
}
@media (max-width: 1199px) {
  .p-top-community-card__head--sp img {
   border-top-left-radius: 16px;
   border-top-right-radius: 16px;
  }
}

.p-top-community__card__image {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 95%;
  left: 0;
}
@media screen and (min-width: 599px) {
  .p-top-community__card__image {
    width: 95%;
    left: 0;
  }
}
@media (min-width: 768px) {
  .p-top-community__card__image {
    width: 96%;
    left: 0;
  }
}
@media (min-width: 1200px) {
  .p-top-community__card__image {
    width: 99%;
    left: unset;
  }
}
.p-top-community__card__image img {
  width: 100%;
}
@media (min-width: 1440px) {
  .p-top-community-card__body {
    margin-right: 40px;
  }
}
@media (min-width: 1440px) {
  .p-top-community-card__body {
    margin-right: 40px;
    padding: 2rem 0;
  }
}

.p-top-community-card__title {
  margin-top: 36px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
  letter-spacing: 0.96px;
  position: relative;
}
.p-top-community-card__title::before {
  position: absolute;
  content: "";
  background: #37A112;
  width: 44px;
  height: 3px;
  left: 0;
  top: -14px;
}
@media (min-width: 1200px) {
  .p-top-community-card__title {
    margin-top: 28px;
  }
}

.p-top-community-card__text {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 500;
  line-height: 32px; /* 228.571% */
  letter-spacing: 0.56px;
}


@media (min-width: 1440px) {
  .p-top-community-card__text {
    width: 511px;
  }
}

.p-top-community-button__container {
  margin-top: 38px;
}
@media (min-width: 1200px) {
  .p-top-community-button__container {
    text-align: right;
    margin-top: 6px;
    margin-right: 48px;
  }
}
@media (min-width: 1440px) {
  .p-top-community-button__container {
    margin-top: 25px;
    margin-right: 10px;
  }
}

.p-top-community-button__link{
 background:#37A112;
 color: #fff;
}
@media (max-width: 1439px) {
  .p-top-community-button__link {
    padding: 12px 70px 17px 60px;
  }
}

@media (min-width: 768px) {
  .p-top-community-button__link:hover {
    background: #fff;
    color: #37A112;
    border-color: #37A112;
  }

  .p-top-community-button__link:hover::before {
    background-color: #37A112;
  }
}


.p-top-community-button__link::before {
  position: absolute;
  content: "";
  background: url(../img/top-community-button-bg.png) no-repeat center center/cover;
  width: 24px;
  height: 24px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .p-top-community-button__link:hover::before {
   background: url(../img/community-icon.webp) no-repeat center center/cover;
  }
}
@media (min-width: 1440px) {
  .p-top-community-button__link {
    padding: 4px 65px 4px 28px;
    max-width: 251px;
    font-size: 16px;
    font-weight: 700;
    line-height: 32px; /* 200% */
    letter-spacing: 0.64px;
  }
}

.p-top-company {
  background: #F0F0EE;
}

@media (min-width: 768px) {
  .p-top-company__inner {
    padding-top: 80px;
    padding-bottom: 142px;
    max-width: 880px;
    margin-inline: auto;
  }
}
@media (min-width: 1200px) {
  .p-top-company__inner {
    padding-inline: 30px;
    margin-inline: auto;
    max-width: 1440px;
  }
}
@media (min-width: 1440px) {
  .p-top-company__inner {
    padding-top: 40px;
    padding-bottom: 102px;
    padding-inline: 120px;
    margin-inline: auto;
    max-width: 1440px;
  }
}

.p-top-company__card {
  margin-top: 64px;
}
@media (min-width: 1200px) {
  .p-top-company__card {
    max-width: 1200px;
    margin-inline: auto;
    justify-content: space-between;
    padding-left: 130px;
    margin-top: 96px;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.55);
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.55);
    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;
    gap: 11px;
  }
}
@media (min-width: 1440px) {
  .p-top-company__card {
    justify-content: unset;
    gap: 40px;
  }
}

@media screen and (max-width: 1199px) {
  .p-top-company-card__head {
   display: none;
  }
}

@media screen and (max-width: 1199px) {
  .p-top-company-card__head--sp {
   display: inline;
  }
}
@media screen and (max-width: 1199px) {
  .p-top-company-card__head--sp img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}

@media (min-width: 1200px) {
  .p-top-company__image {
        width: 550px;
  }
}
@media (min-width: 1440px) {
  .p-top-company__image {
        max-width: 100%;
  }
}



@media (min-width: 1200px) {
  .p-top-company-card__body {
    background: #fff;
  }
}

.p-top-company-card__title {
  margin-top: 36px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
  letter-spacing: 0.96px;
  position: relative;
}
.p-top-company-card__title::before {
  position: absolute;
  content: "";
  background: #37A112;
  width: 44px;
  height: 3px;
  left: 0;
  top: -14px;
}
@media (min-width: 1200px) {
  .p-top-company-card__title {
    margin-top: 83px;
  }
}

@media (max-width: 1199px) {
  .p-top-company-card-title__hidden {
   overflow: hidden;
  }
}

.p-top-company-card__text {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 500;
  line-height: 32px; /* 228.571% */
  letter-spacing: 0.56px;
}
@media (min-width: 1200px) {
  .p-top-company-card__text {
    width: 537px;
  }
}

@media (min-width: 1200px) {
  .p-top-company-button__container {
    text-align: right;
    margin-top: 15px;
  }
}

.p-about-top-lead__inner {
  text-align: center;
  padding-top: 125px;
  padding-bottom: 104px;
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.p-about-top-lead__inner p {
  color: #3A3A3A;
  font-size: 24px;
  font-weight: 500;
  line-height: 20px; /* 83.333% */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 767px) {
  .p-about-top-lead__inner p {
    font-size: 15px;
  }
}

.p-about-top-lead__text {
  font-size: 28px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1.12px;
}
@media screen and (max-width: 767px) {
  .p-about-top-lead__text {
    font-size: 18px;
    white-space: nowrap;
  }
}
.p-about-top-lead__text span:nth-of-type(1) {
  color: #fff;
  border-radius: 3px;
  border: 2px solid #37A112;
  background: #37A112;
  font-size: 40px;
  font-weight: 700;
  line-height: 20px; /* 50% */
  width: 52px;
  height: 52px;
  aspect-ratio: 1/1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-about-top-lead__text span:nth-of-type(1) {
    font-size: 28px;
    width: 40px;
    height: 40px;
  }
}
.p-about-top-lead__text span:nth-of-type(2) {
  color: #fff;
  border-radius: 3px;
  border: 2px solid #37A112;
  background: #37A112;
  font-size: 40px;
  font-weight: 700;
  line-height: 20px; /* 50% */
  width: 52px;
  height: 52px;
  aspect-ratio: 1/1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-about-top-lead__text span:nth-of-type(2) {
    font-size: 28px;
    width: 40px;
    height: 40px;
  }
}
.p-about-top-lead__text span:nth-of-type(3) {
  color: #37A112;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 55.556% */
  letter-spacing: 1.44px;
}
@media screen and (max-width: 767px) {
  .p-about-top-lead__text span:nth-of-type(3) {
    font-size: 18px;
  }
}
.p-about-top-lead__text span:nth-of-type(4) {
  color: #fff;
  border-radius: 3px;
  border: 2px solid #37A112;
  background: #37A112;
  font-size: 40px;
  font-weight: 700;
  line-height: 20px; /* 50% */
  width: 52px;
  height: 52px;
  aspect-ratio: 1/1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-about-top-lead__text span:nth-of-type(4) {
    font-size: 28px;
    width: 40px;
    height: 40px;
  }
}
.p-about-top-lead__text span:nth-of-type(5) {
  color: #fff;
  border-radius: 3px;
  border: 2px solid #37A112;
  background: #37A112;
  font-size: 40px;
  font-weight: 700;
  line-height: 20px; /* 50% */
  width: 52px;
  height: 52px;
  aspect-ratio: 1/1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-about-top-lead__text span:nth-of-type(5) {
    font-size: 28px;
    width: 40px;
    height: 40px;
  }
}
.p-about-top-lead__text span:nth-of-type(6) {
  color: #37A112;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 50% */
  letter-spacing: 1.6px;
}
@media screen and (max-width: 899px) {
  .p-about-top-lead__text span:nth-of-type(6) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-top-lead__text span:nth-of-type(6) {
    font-size: 23px;
  }
}

.p-about-lead-hidden {
  display: none;
}
@media screen and (max-width: 899px) {
  .p-about-lead-hidden {
    display: inline;
  }
}

.p-about-content {
  padding-block: 60px;
  background: #F0F0EE;
}
@media (min-width: 768px) {
  .p-about-content {
    padding-bottom: 120px;
    padding-top: 120px;
  }
}

.p-about-content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  .p-about-content__inner {
    gap: 96px;
    padding-inline: 150px;
    margin-inline: auto;
    max-width: 1440px;
  }
}
@media screen and (max-width: 1199px) {
  .p-about-content__inner {
    padding-inline: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-content__inner {
    padding-inline: 20px;
  }
}

.p-about-content__wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;          
}


.p-about-content__wrap:nth-of-type(odd) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.p-about-content__wrap:nth-of-type(odd) .p-about-content__title-wrap .p-about-content-sub-title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1199px) {
  .p-about-content__wrap:nth-of-type(odd) .p-about-content__title-wrap .p-about-content-sub-title {

  }
}
@media screen and (max-width: 1199px) {
  .p-about-content__wrap:nth-of-type(odd) {
    -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;
            row-gap: 30px;
  }
}
.p-about-content__wrap:nth-of-type(even) {
  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;
          row-gap: 30px;
}
.p-about-content__wrap:nth-of-type(even) .p-about-content__title-wrap {
  text-align: end;
}
@media screen and (max-width: 1199px) {
  .p-about-content__wrap:nth-of-type(odd) .p-about-content__title-wrap{
  margin-right: auto;
  }
}
@media screen and (max-width: 1199px) {
  .p-about-content__wrap:nth-of-type(even) .p-about-content__title-wrap{
  margin-left: auto;
  }
}
.p-about-content__wrap:nth-of-type(even) .p-about-content__title-wrap::before {
  right: 0;
}
.p-about-content__wrap:nth-of-type(even) .p-about-content__title-wrap .p-about-content-main-title span {
  text-align: end;
}
@media screen and (max-width: 1199px) {
  .p-about-content__wrap:nth-of-type(even) .p-about-content__title-wrap .p-about-content-main-title span {
   
  }
}
.p-about-content__wrap:nth-of-type(even) .p-about-content__title-wrap .p-about-content-sub-title {
    align-items: end;
}
@media screen and (max-width: 1199px) {
  .p-about-content__wrap:nth-of-type(even) .p-about-content__title-wrap .p-about-content-sub-title {

  }
}
@media screen and (max-width: 1199px) {
  .p-about-content__wrap:nth-of-type(even) {
    -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;
  }
}

.p-about-content__title-wrap {
  margin-top: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  position: relative;
}


.p-about-content__title-wrap::before {
  position: absolute;
  content: "";
  background: #37A112;
  width: 100px;
  height: 4px;
  top: -34px;
}
@media screen and (max-width: 1199px) {
  .p-about-content__title-wrap::before {

  }
}
@media screen and (max-width: 767px) {
  .p-about-content__title-wrap::before {
    top: -20px;
  }
}

.p-about-content-main-title {
  color: #37A112;
  font-size: 80px;
  font-weight: 700;
  line-height: 60px; /* 75% */
  letter-spacing: 3.2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}


.p-about-content-main-title span {
  margin-top: 13px;
  color: #3A3A3A;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .p-about-content-main-title span {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .p-about-content-main-title {
   
  }
}
@media screen and (max-width: 767px) {
  .p-about-content-main-title {
    font-size: 56px;
  }
}

.p-about-content-sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 109px;
  right: -36px;
}
@media screen and (max-width: 1199px) {
  .p-about-content-sub-title {
    position: unset;
  }
}
.p-about-content-sub-title span {
  font-size: 24px;
  font-weight: 700;
  line-height: 44px; /* 183.333% */
  letter-spacing: 0.96px;
  color: #fff;
  background: #37A112;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  background: #37a112;
  padding-right: 40px;
  padding-left: 5px;
}
.p-about-content-sub-title span:nth-of-type(1) {
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .p-about-content-sub-title span {
    font-size: 18px;
    padding-right: 0;
  }
}

.p-about-content-sub-title2 span:nth-of-type(1) {
  padding-right: 10px;
}
.p-about-content-sub-title2 span:nth-of-type(2) {
  padding-right: 0;
  padding-left: 17px;
}
@media screen and (max-width: 767px) {
  .p-about-content-sub-title2 span:nth-of-type(2) {
    padding-right: 0;
    padding-left: 5px;
  }
}
.p-about-content-sub-title2 span:nth-of-type(3) {
  padding-left: 35px;
  padding-right: 9px;
}
@media screen and (max-width: 767px) {
  .p-about-content-sub-title2 span:nth-of-type(3) {
    padding-left: 5px;
  }
}

.p-about-content-sub-title3 {
  right: -20px;
}
.p-about-content-sub-title3 span:nth-of-type(1) {
  padding-right: 8px;
}
.p-about-content-sub-title3 span:nth-of-type(2) {
  padding-right: 13px;
}argin-top: 13px;
}
@media screen and (max-width: 767px) {
  .p-about-content-sub-title span {
    font-size: 18px;
  }
}

.p-about-content__text-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 48px 80px;
  max-width: 809px;
  width: 70.9649122807%;
}
@media screen and (max-width: 1199px) {
  .p-about-content__text-wrap {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-about-content__text-wrap {
    margin-top: 15px;
    padding: 30px 50px;
  }
}

.p-about-content__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 40px; /* 250% */
  letter-spacing: 0.64px;
}
@media screen and (max-width: 767px) {
  .p-about-content__text {
    font-size: 14px;
    line-height: 35px;
  }
}

.p-about-content__image {
  margin-top: 41px;
  aspect-ratio: 580/536;
  padding-left: 8%;
}


.p-about-content__image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about-message__inner {
  margin-block: 104px;
  padding-inline: 152px;
  margin-inline: auto;
  max-width: 1440px;
}
@media screen and (max-width: 1299px) {
 .p-about-message__inner {
  padding-inline: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-message__inner {
    padding-inline: 20px;
  }
}

.p-about-message__contents {
  margin-top: 92px;
  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;
  gap: 30px;
}
@media screen and (max-width: 1199px) {
  .p-about-message__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-about-message__content-head {
  width: 48.5915492958%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 1199px) {
  .p-about-message__content-head {
    width: 100%;
  }
}

.p-about-message__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 44px; /* 157.143% */
  letter-spacing: 1.12px;
}
@media screen and (max-width: 1199px) {
  .p-about-message__title {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-message__title {
    font-size: 16px;
    line-height: 30px;
  }
}

.p-about-message__content-name {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 29px;
}
.p-about-message__content-name span {
  font-weight: 500;
  line-height: 44px; /* 183.333% */
  letter-spacing: 0.96px;
}
.p-about-message__content-name span:nth-of-type(1) {
  font-size: 20px;
  color: #37A112;
}
@media screen and (max-width: 767px) {
  .p-about-message__content-name span:nth-of-type(1) {
    font-size: 16px;
  }
}
.p-about-message__content-name span:nth-of-type(2) {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-about-message__content-name span:nth-of-type(2) {
    font-size: 18px;
  }
}

.p-about-message__content-text-wrap {
  margin-top: 72px;
  position: relative;
  max-width: 474px;
}
.p-about-message__content-text-wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #3A3A3A;
  left: 0;
  top: -25px;
}
@media screen and (max-width: 1199px) {
  .p-about-message__content-text-wrap {
    max-width: 100%;
  }
}

.p-about-message__content-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 33px; /* 206.25% */
  letter-spacing: 0.64px;
}
@media screen and (max-width: 767px) {
  .p-about-message__content-text {
    font-size: 14px;
  }
}

.p-about-message__content-image {
  max-width: 500px;
}


.p-about-message__content-image img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .p-about-message__content-image {
    width: 100%;
    max-width: 100%;
  }
}

.p-about-company {
  background: #F0F0EE;
  padding-block: 88px;
}

.p-about-company__inner {
  padding-inline: 157px;
  margin-inline: auto;
  max-width: 1440px;
}
@media screen and (max-width: 999px) {
  .p-about-company__inner {
    padding-inline: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-company__inner {
    padding-inline: 20px;
  }
}

.p-about-company__wrap {
  -webkit-margin-before: 88px;
          margin-block-start: 88px;
  margin-inline: 88px;
  background: #fff;
  padding: 48px;
}
@media screen and (max-width: 999px) {
  .p-about-company__wrap {
    margin-inline: 44px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-company__wrap {
    margin-inline: 0;
  }
}

.p-about-company__list {
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 18px;
}
@media screen and (max-width: 767px) {
  .p-about-company__list {
    grid-template-columns: 85px 1fr;
  }
}
.p-about-company__list dt,
.p-about-company__list dd {
  padding-bottom: 18px;
  border-bottom: 1px solid #dedede;
}
.p-about-company__list dt {
  font-size: 16px;
  font-weight: 600;
  line-height: 32px; /* 200% */
  letter-spacing: 0.64px;
  color: #37A112;
}
.p-about-company__list dd {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 767px) {
  .p-about-company__list dd {
    font-size: 14px;
  }
}

.p-about-company__list dt:last-of-type,
.p-about-company__list dd:last-of-type {
  border-bottom: none;
}

.p-about-company__button {
  margin-left: 120px;
}

@media screen and (max-width: 767px) {
  .p-about-company__button {
    margin-left: 75px;
  }
}


.p-about-company__button--link {
  color: #37a112; 
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #37a112;
  border-radius: 100vmax;
}

@media screen and (min-width: 768px) {
  .p-about-company__button--link {
    transition: all 0.3s ease;
  }

  .p-about-company__button--link:hover {
    background: #37a112;
    color: #fff;
    border: 1px solid #fff;
  }
}

@media screen and (max-width: 767px) {
  .p-about-company__button--link {
    font-size: 14px;
    padding: 5px 10px;
    white-space: nowrap;
  }
}




.p-about-company__map {
  -webkit-margin-before: 42px;
          margin-block-start: 42px;
}
.p-about-company__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1126/421;
}
@media screen and (max-width: 767px) {
  .p-about-company__map iframe {
    aspect-ratio: 335/178;
  }
}

/* -------------------------
フェードインの初期状態
-------------------------- */
/* 共通：初期状態 */
.js-fade-title,
.js-fade-sub span,
.js-fade-text {
  opacity: 0;
  transform: translateY(40px);
}

.js-fade-title,
.js-fade-sub span {
  transition: all 0.8s ease;
}

/* ふわっと感を強調（テキストだけ） */
.js-fade-text {
  transition: opacity 4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 4s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-fade-image {
  opacity: 0;
  transform: translateY(40px);
  transition: all 3s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-fade-image.is-inview {
  opacity: 1;
  transform: translateY(0);
}


/* -------------------------
基本アニメーション（SP）
-------------------------- */
.js-fade-title.is-inview,
.js-fade-sub span.is-inview,
.js-fade-text.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------
PC版アニメーション上書き
-------------------------- */
@media screen and (min-width: 768px) {
  /* 左からフェードイン */
  .js-fade-title.left,
  .js-fade-sub.left span,
  .js-fade-text.left {
    transform: translateX(-40px);
  }
  .js-fade-title.left.is-inview,
  .js-fade-sub.left span.is-inview,
  .js-fade-text.left.is-inview {
    transform: translateX(0);
  }

  /* 右からフェードイン */
  .js-fade-title.right,
  .js-fade-sub.right span,
  .js-fade-text.right {
    transform: translateX(40px);
  }
  .js-fade-title.right.is-inview,
  .js-fade-sub.right span.is-inview,
  .js-fade-text.right.is-inview {
    transform: translateX(0);
  }
}

/* 遅延指定（順番制御） */
.js-fade-sub span:nth-child(1) {
  transition-delay: 0.2s;
}
.js-fade-sub span:nth-child(2) {
  transition-delay: 0.4s;
}
.js-fade-sub span:nth-child(3) {
  transition-delay: 0.6s;
}






.p-service-cards__inner {
  -webkit-margin-before: 129px;
          margin-block-start: 129px;
  -webkit-margin-after: 121px;
          margin-block-end: 121px;
  padding-inline: 192px;
  margin-inline: auto;
  max-width: 1440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}
@media screen and (max-width: 1199px) {
  .p-service-cards__inner {
    padding-inline: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-cards__inner {
    padding-inline: 20px;
  }
}

.p-service__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 12px;
  border: 2px solid #ccc;
  background: #fff;
  padding-top: 18px;
  padding-bottom: 32px;
  padding-inline: 72px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .p-service__card {
    flex-direction: column-reverse;
    padding: 30px;
  }
}

.p-service-card__head {
  max-width: 518px;
}
@media screen and (max-width: 899px) {
  .p-service-card__head {
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-card__head {
    max-width: 100%;
  }
}

.p-service-card__title-num {
  padding-left: 77px;
  color: #37A112;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px; /* 200% */
  letter-spacing: 0.96px;
  position: relative;
}
.p-service-card__title-num::before {
  position: absolute;
  content: "";
  width: 64px;
  height: 2px;
  background: #37A112;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-service-card__title-num {
    font-size: 20px;
  }
}

.p-service-card__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 200% */
  letter-spacing: 0.96px;
  position: relative;
}
.p-service-card__title::before {
  position: absolute;
  content: "";
  background: #d0d0d0;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -20px;
}
@media (min-width: 1440px) {
  .p-service-card__title::before {
    width: 525px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-card__title {
    font-size: 20px;
  }
}

.p-service-card__text {
  -webkit-margin-before: 41px;
          margin-block-start: 41px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 200% */
  letter-spacing: 0.64px;
}
@media screen and (max-width: 767px) {
  .p-service-card__text {
    font-size: 14px;
    line-height: 22px;
  }
}

.p-service-card__container {
  -webkit-margin-before: 54px;
          margin-block-start: 54px;
}
@media screen and (max-width: 767px) {
  .p-service-card__container {
    text-align: center;
      -webkit-margin-before: 20px;
          margin-block-start: 20px;
  }
}

.p-service-card__link {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: 32px; /* 228.571% */
  letter-spacing: 0.56px;
  border-radius: 48px;
  border: 2px solid #37A112;
  background: #37A112;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
  padding: 4px 60px 3px 60px;
  position: relative;
  transition: all 0.3s ease; 
}
  @media screen and (max-width: 899px){
    .p-service-card__link{
   padding: 4px 30px 3px 30px;
    font-size: 13px;
   }
  }

.p-service-card__link::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  transition: width 1.2s ease, background 0.3s ease;
}
  @media screen and (max-width: 899px){
    .p-service-card__link::before {
      width: 24px;
   }
  }

@media screen and (min-width: 768px) {
  .p-service-card__link:hover {
    box-shadow: 0px 2px 2px 0px rgba(45, 45, 45, 0.15);
    transform: translateY(2px);
    background-color: #fff;     
    color: #37A112;     
    border-color: #37A112;
  }

  .p-service-card__link:hover::before {
    width: 20px;
    background: #37A112;        // 線も緑に反転
  }
}

@media screen and (max-width: 767px) {
  .p-service-card__image {
    max-width: 130px;
  }
}



.p-archive__inner {
  padding-block: 107px;
  padding-inline: 144px;
  margin-inline: auto;
  max-width: 1440px;
}
@media screen and (max-width: 1199px) {
  .p-archive__inner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-archive__inner {
    padding-inline: 20px;
  }
}

.p-archive-category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 94px;
  padding-left: 8px;
}
@media screen and (max-width: 767px) {
  .p-archive-category-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 50px;
    padding-left: 0;
  }
}

.p-archive-category-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 23px; /* 95.833% */
  letter-spacing: 1.44px;
  white-space: nowrap;
}

.p-archive-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-archive-category-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: repeat(2, auto); 
    gap: 15px;

  }
}
@media screen and (max-width: 529px) {
  .p-archive-category-list {
    display: flex;
    text-align: center;
    display: flex;
    justify-content: center;
  }
}

.p-archive-category-list::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  background: #b7b7b7;
  left: -52px;
}
@media screen and (max-width: 767px) {
  .p-archive-category-list::before {
  height: 2px;
  width: 100%;
  left: 0;
  top:-25px;
  }
}

.p-archive-category__item {
  color: #7b7b7b;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px; /* 127.778% */
  letter-spacing: 1.08px;
  padding-block: 4px;
  padding-inline: 24px;
  border-radius: 100vmax;
  transition: background 0.3s ease, color 0.2s ease;
}

@media screen and (max-width: 767px) {
  .p-archive-category__item {
    font-size: 14px;
    text-align: center;
  }
}

.p-archive__cards {
  -webkit-margin-before: 82px;
          margin-block-start: 82px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 36px;
}
@media screen and (max-width: 899px) {
  .p-archive__cards {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-archive__cards {
    gap: 14px;
  }
}


.p-archive-category-0 {
  background: #b1f49a;
}
.p-archive-category-0:hover,
.p-archive-category-0.is-active {
  color: #fff;
  background: #37A112;
}

.p-archive-category-1 {
  background: #d1d1d1;
}
.p-archive-category-1:hover,
.p-archive-category-1.is-active {
  color: #fff;
  background: #666;
}

.p-archive-category-2 {
  background: #fad1dc;
}

.p-archive-category-2:hover,
.p-archive-category-2.is-active {
  color: #fff;
  background: #ec4171;
}

.p-archive-category-3 {
  background: rgba(252, 233, 151, 0.6);
}

.p-archive-category-3:hover,
.p-archive-category-3.is-active {
  color: #fff;
  background: #fadd5c;
}

.p-archive-category-4 {
  background: #bde3ff;
}

.p-archive-category-4:hover,
.p-archive-category-4.is-active {
  color: #fff;
  background: #008ef7;
}

.p-archive-category-5 {
  background: #f0c8f9;
}

.p-archive-category-5:hover,
.p-archive-category-5.is-active {
  color: #fff;
  background: #d25aed;
}

.p-archive-category-6 {
  background: #ffddb2;
}

.p-archive-category-6:hover,
.p-archive-category-6.is-active {
  color: #fff;
  background: #ff910a;
}


.p-archive-category-1-tag {
  background: #666;
  color: #fff;
}
.p-archive-category-2-tag {
  background: #ec4171;
  color: #fff;
}
.p-archive-category-3-tag {
  background: #fadd5c;
  color: #fff;
}
.p-archive-category-4-tag {
  background: #008ef7;
  color: #fff;
}
.p-archive-category-5-tag {
  background: #d25aed;
  color: #fff;
}
.p-archive-category-6-tag {
  background: #ff910a;
  color: #fff;
}


.p-date__inner {
  padding-block: 101px;
  padding-inline: 152px;
  margin-inline: auto;
  max-width: 1440px;
}
@media screen and (max-width: 1199px) {
  .p-date__inner {
    padding-inline: 100px;
  }
}
@media screen and (max-width: 999px) {
  .p-date__inner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-date__inner {
    padding-inline: 20px;
  }
}

.p-date__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.72px;
}

.p-date__cards {
  -webkit-margin-before: 56px;
          margin-block-start: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 36px;
}
@media screen and (max-width: 767px) {
  .p-date__cards {
  grid-template-columns: repeat(2, 1fr);
   column-gap: 15px;
  }
}

.p-date__card {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 10px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .p-date__card {
  margin-bottom: 30px;
  }
}



.p-date-card__title {
  padding-inline: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px; /* 143.75% */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 999px) {
  .p-date-card__title {
    font-size: 15px;
  }
}

.p-date-card__image {
  position: relative; 
}


.p-date-card__new {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ff3b39;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
  z-index: 2;
}


.p-date-card__button {
  -webkit-margin-before: 41px;
          margin-block-start: 41px;
          text-align: center;
          padding-bottom: 10px;
          padding-inline: 10px;
}

.p-date-card__link {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 40px;
  background: #ff910a;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  padding: 10px 52px;
  border: 2px solid transparent; /* ← 透明なボーダーで崩れ防止 */
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .p-date-card__link {
    padding: 10px 40px;
  }
}

@media screen and (max-width: 767px) {
  .p-date-card__link {
    padding: 3px 18px;
  }
}

/* ホバー時の色変更 */
.p-date-card__link:hover {
  background: #fff;
  color: #ff910a;
  border: 2px solid #ff910a;
}

.p-data-contact__link{
 font-size: 14px;
 margin: 0 auto;
}


.p-privacy__inner {
  padding-inline: 100px;
  margin-inline: auto;
  max-width: 1440px;
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .p-privacy__inner {
    padding-inline: 20px;
  }
}

.p-privacy{
    letter-spacing: 2px;
    line-height: 2;
}
.p-privacy h2{
 font-size: 25px;
}
@media screen and (max-width: 499px) {
  .p-privacy h2 {
    font-size: 18px;
  }
}

.p-privacy-title {
  text-align: center;
  font-size: 45px;
}
@media screen and (max-width: 767px) {
  .p-privacy-title {
    font-size: 30px;
    margin: 100px auto;
  }
}

.p-privacy__section {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-privacy__section {
    margin-bottom: 30px;
  }
}

.p-privacy__heading {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 16px;
  border-left: 4px solid #37a112;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .p-privacy__heading {
    font-size: 18px;
  }
}

.p-privacy__text {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 2px;
}
.p-privacy__text span {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-privacy__text {
    font-size: 15px;
  }
}

.p-privacy__list {
  list-style: decimal;
  padding-left: 1.2em;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-privacy__list {
    font-size: 15px;
  }
}

.p-privacy__list-item {
  margin-bottom: 12px;
}

.p-privacy__sublist {
  list-style: disc;
  padding-left: 1.5em;
  margin-top: 12px;
}

.p-privacy__sublist-item {
  margin-bottom: 8px;
}

.p-privacy__subsublist {
  list-style: circle;
  padding-left: 1.8em;
  margin-top: 8px;
}

.p-privacy__subsublist-item {
  margin-bottom: 6px;
}







.p-contact__inner {
  padding-top: 83px;
  padding-bottom: 136px;
  padding-inline: 199px;
  margin-inline: auto;
  max-width: 1440px;
}
@media screen and (max-width: 1299px) {
  .p-contact__inner {
    padding-inline: 100px;
  }
}
@media screen and (max-width: 999px) {
  .p-contact__inner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    padding-inline: 20px;
  }
}

.p-contact__steps {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 148px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.p-contact__steps::before, .p-contact__steps::after {
  z-index: 1;
  position: absolute;
  content: "";
  background: #37A112;
  height: 7px;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 899px) {
  .p-contact__steps {
    gap: 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__steps {
    gap: 50px;
  }
}

.p-contact__step {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #37A112;
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 66.667% */
  letter-spacing: 0.96px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
}
.p-contact__step.is-active {
  font-size: 32px;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .p-contact__step.is-active {
    font-size: 18px;
    width: 90px;
    height: 90px;
  }
}
.p-contact__step.is-active::before {
  position: absolute;
  content: "";
  width: 110px;
  height: 110px;
  border: 3px solid #fff;
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact__step.is-active::before {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__step {
    font-size: 16px;
    width: 70px;
    height: 70px;
  }
}

.p-contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
      margin-top: 80px;
}

.p-contact__field {
  position: relative;
}
.p-contact__field::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #ddd;
  bottom: -40px;
  left: 0;
}

.p-contact__conditional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}

.p-contact__form {
  -webkit-margin-before: 92px;
          margin-block-start: 92px;
}

.p-contact-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
  position: relative;
}
.p-contact-form__group::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #ddd;
  bottom: -40px;
  left: 0;
}
@media screen and (max-width: 899px) {
  .p-contact-form__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-contact-form__label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 93px;
}
@media screen and (max-width: 1199px) {
  .p-contact-form__label-wrap {
    gap: 20px;
  }
}

.p-contact-form__label {
  font-size: 18px;
  font-weight: 500;
  line-height: 16px; /* 88.889% */
  letter-spacing: 0.72px;
  width: 150px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 899px) {
  .p-contact-form__label {
    width: unset;
  }
}

.p-contact-form__radio-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.p-contact-form__radio-input:checked + .p-contact-form__radio-text::after {
  opacity: 1;
}
.p-contact-form__radio-input:focus + .p-contact-form__radio-text::before {
  border: 1px solid #37A112;
}

.p-contact-form__radio-text {
  position: relative;
  padding-left: 44px;
}
.p-contact-form__radio-text::before, .p-contact-form__radio-text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.p-contact-form__radio-text::before {
  width: 28px;
  height: 28px;
  background: #fff;
  background: #e7e7e7;
  left: 0;
}
.p-contact-form__radio-text::after {
  width: 16px;
  height: 16px;
  background: #37A112;
  left: 6px;
  opacity: 0;
}

.p-contact-form__required {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px; /* 100% */
  letter-spacing: 1.92px;
  color: #fff;
  border-radius: 24px;
  background: #ff910a;
  padding: 5px 14px;
}

.p-contact-form__radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 46px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-contact-form__radio {
  font-size: 20px;
  font-weight: 500;
  line-height: 16px; /* 80% */
  letter-spacing: 0.8px;
}

.p-contact__privacy {
  -webkit-margin-before: 96px;
          margin-block-start: 96px;
}

.p-contact__conditional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
        position: relative;
}
.p-contact__conditional:last-of-type::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #ddd;
  bottom: -40px;
  left: 0;
}

.p-contact__conditional.is-hidden {
  display: none;
}

.p-contact-button {
  padding: 12px 115px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px; /* 177.778% */
  letter-spacing: 0.72px;
  border-radius: 48px;
  border: 2px solid #fff;
  background: #37a112;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
  position: relative;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.p-contact-button::before {
  position: absolute;
  content: "";
  width: 68px;
  height: 1px;
  background: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  transition: width 1.2s ease;
}

@media screen and (max-width: 767px) {
  .p-contact-button {
    font-size: 16px;
    padding: 8px 80px;
  }

  .p-contact-button::before {
    width: 50px;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-button:hover {
    -webkit-box-shadow: 0px 2px 2px 0px rgba(45, 45, 45, 0.15);
            box-shadow: 0px 2px 2px 0px rgba(45, 45, 45, 0.15);
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }

  .p-contact-button:hover::before {
    width: 20px;
  }
}

.p-contact-button-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 48px;
  background: #37a112;
  border: 2px solid #fff;
  box-shadow: 0px 4px 4px rgba(45, 45, 45, 0.25);
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 0; /* 余計な内側余白をなくす */
}

.p-contact-button-wrapper::before {
  content: "";
  position: absolute;
  width: 68px;
  height: 1px;
  background: #fff;
  top: 50%;
  right: 0; /* ボタン内に収める */
  transform: translateY(-50%);
  transition: width 1.2s ease;
  pointer-events: none;
}

.p-contact-button-wrapper:hover {
  box-shadow: 0px 2px 2px rgba(45, 45, 45, 0.15);
  transform: translateY(2px);
}

.p-contact-button-wrapper:hover::before {
  width: 20px;
}

.p-contact-button-input {
  all: unset;
  padding: 12px 55px 12px 115px;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.72px;
  color: #fff;
  cursor: pointer;
  border-radius: 48px;
  text-align: center;
  display: inline-block;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-contact-button-input {
    padding: 8px 8px 8px 70px;
    font-size: 16px;
  }

  .p-contact-button-wrapper::before {
    width: 50px;
  }

  .p-contact-button-wrapper:hover::before {
    width: 20px;
  }
}



.p-contact-confirm__text {
  -webkit-margin-before: 97px;
          margin-block-start: 97px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 16px; /* 88.889% */
  letter-spacing: 0.72px;
}
@media screen and (max-width: 767px) {
  .p-contact-confirm__text {
    line-height: 25px;
  }
}

.p-contact-confirm__fields {
  -webkit-margin-before: 106px;
          margin-block-start: 106px;
}

.p-contact-confirm-button__wrap {
  padding-top: 42px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-contact-confirm-button__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
    margin-inline: auto;
  }
}

.p-contact-confirm-button {
  border-radius: 48px;
  border: 2px solid #fff;
  background: #878787;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
}

.is-confirm .p-contact__field:last-of-type::before {
  display: none;
}

.p-contact__field--line {
  position: relative;
}

.p-contact__field--line::after {
  position: absolute;
   content: "";
  width: 100%;
  height: 1px;
  background: #ddd;
  bottom: 64px;
  left: 0;
}

.p-form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 899px) {
  .p-form-field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}

.p-form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 93px;
}
@media screen and (max-width: 1199px) {
  .p-form-field__head {
    gap: 20px;
  }
}

.p-form-field__label {
  font-size: 18px;
  font-weight: 500;
  line-height: 16px; /* 88.889% */
  letter-spacing: 0.72px;
  width: 150px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 899px) {
  .p-form-field__label {
    width: unset;
  }
}

.p-form-field__tag {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px; /* 100% */
  letter-spacing: 1.92px;
  color: #fff;
  border-radius: 24px;
  background: #ff910a;
  padding: 5px 14px;
}

.p-form-color-gray {
  background: #717171;
}

.p-form-field__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-form-field__item span {
width: 100%;
}

.p-form-text {
  padding: 16px 29px;
  border-radius: 8px;
  background: #e8e8e8;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  letter-spacing: 0.64px;
  border: none;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}
.p-form-text::-webkit-input-placeholder {
  color: #878787;
}
.p-form-text::-moz-placeholder {
  color: #878787;
}
.p-form-text:-ms-input-placeholder {
  color: #878787;
}
.p-form-text::-ms-input-placeholder {
  color: #878787;
}
.p-form-text::placeholder {
  color: #878787;
}

.p-form-select {
  padding: 16px 29px;
  border: none;
  width: 100%;
  border-radius: 8px;
  background: #e8e8e8;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  letter-spacing: 0.64px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
}
.p-form-select:invalid {
  color: #878787;
}

.p-form-select-wrap {
  position: relative;
}
.p-form-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 115px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 10.432px;
  height: 10.432px;
  border-right: 3px solid #878787;
  border-bottom: 3px solid #878787;
  pointer-events: none;
}
.p-form-select-wrap.is-selected::after {
  opacity: 0;
}

.p-form-field__item--name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.p-form-field__item--name-tag{
 width: 64px;
}

.p-form-textarea {
  padding: 16px 29px;
  border: none;
  border-radius: 8px;
  background: #e8e8e8;
  width: 100%;
  color: #878787;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  letter-spacing: 0.64px;
}

.p-form-checkbox__container {
  -webkit-margin-before: 96px;
          margin-block-start: 96px;
  text-align: center;
}

.p-form-checkbox {
  text-align: center;
}

.p-form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.p-form-checkbox__input:checked + .p-form-checkbox__text::after {
  opacity: 1;
}
.p-form-checkbox__input:focus + .p-form-checkbox__text::before {
  border: 1px solid #37A112;
}

.p-form-checkbox__text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 38px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  position: relative;
}
.p-form-checkbox__text a {
  color: #008ef7;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
}
.p-form-checkbox__text::before, .p-form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-form-checkbox__text::before {
  width: 20px;
  height: 20px;
  border: 1px solid #8a8a8a;
  background: #fff;
}
.p-form-checkbox__text::after {
  content: "✔";
  font-size: 16px;
  color: #37A112;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.p-form-contact__button {
  -webkit-margin-before: 51px;
          margin-block-start: 51px;
  text-align: center;
}

.p-form-confirm__field {
  gap: 203px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-form-confirm__field {
    gap: 20px;
  }
}
.p-form-confirm__field::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #ddd;
  top: -40px;
  left: 0;
}

.p-form-confirm-policy__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0.64px;
}

.is-confirm .p-form-field__item {
  color: #878787;
}


.p-contact-confirm-button__wrap{
  padding-top: 42px;
  text-align: center !important;
  display: flex;
  gap: 24px;
  justify-content: center;
     @media screen and (max-width: 899px) {
     flex-direction: column;
    max-width: 500px;
    margin-inline: auto;
}
  
   @media screen and (max-width: 767px) {
     flex-direction: column;
    max-width: 400px;
    margin-inline: auto;
  }
}


.p-contact-thanks-main {
  position: relative;
}

.p-contact-thanks-page__inner {
  padding-inline: 20px;
}
.p-contact-thanks-bg {
  position: absolute;
}

.p-contact-thanks-bg1 {
  top: 0;
  left: 0;
}

@media screen and (max-width: 899px) {
  .p-contact-thanks-bg1 {
    width: 20%;
  }
}

@media screen and (max-width: 767px) {
  .p-contact-thanks-bg1 {
    width: 35%;
  }
}

/* =============================== */

.p-contact-thanks-bg2 {
  right: 0;
}

@media screen and (max-width: 1199px) {
  .p-contact-thanks-bg2 {
    width: 30%;
    bottom: 0;
  }
}

@media screen and (max-width: 899px) {
  .p-contact-thanks-bg2 {
    width: 25%;
  }
}

/* =============================== */

.p-contact-thanks-bg3 {
  bottom: -365px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .p-contact-thanks-bg3 {
    bottom: -390px;
    max-width: 138px;
  }
}
.p-contact-thanks-page {
  height: 100vh;
  background: #F0F0EE;
  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;
}

.p-contact-thanks__content {
  margin: 236px auto;
}

.p-contact-thanks__title-wrap {
 text-align: center;
 
}

.p-contact-thanks__title {
  color: #37A112; 
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 52px; /* 81.25% */
  letter-spacing: 2.56px;
}

@media screen and (max-width: 767px) {
  .p-contact-thanks__title {
    font-size: 40px;
  }
}

.p-contact-thanks__content-text {
  margin-block-start: 54px;
  font-size: 20px;
  font-weight: 500;
  line-height: 35px; /* 175% */
  letter-spacing: 2.4px;
}

@media screen and (max-width: 767px) {
  .p-contact-thanks__content-text {
    font-size: 16px;
  }
}


.p-contact-thanks__content-attention {
  -webkit-margin-before: 56px;
          margin-block-start: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px; /* 218.75% */
  letter-spacing: 1.92px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__content-attention {
    font-size: 14px;
  }
.p-contact-thanks__button {
  -webkit-margin-before: 109px;
   margin-block-start: 109px;
}