@charset "UTF-8";

/* 下層ページ　共通設定 */
/* 下層MV page-mv */
.p-page-mv {
  display: block;
  width: 100%;
  height: 400px;
  position: relative;
  background-color: var(--bg-light);
}
.p-page-mv .section-inner {
  height: 100%;
}
.p-page-mv .content {
  position: relative;
  z-index: 2;
  width: 50%;
  display: flex;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
}
.p-page-mv .img-area {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 10%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 10%
  );
}
.p-page-mv.profile-mv .img-area {
  background-image: url(../images/sub/proflile/profile-mv.webp);
}
.p-page-mv.service-mv .img-area {
  background-image: url(../images/sub/service/service-mv.webp);
}
.p-page-mv .logo-area {
  width: 400px;
  max-width: 100%;
}
.p-page-mv .page-ttl {
  font-size: 2.6rem;
  font-weight: 400;
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-page-mv {
    height: 300px;
  }
  .p-page-mv .logo-area {
    width: 300px;
    padding: 10px;
  }
  .p-page-mv .page-ttl {
    font-size: 2.2rem;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv {
    height: 250px;
  }
  .p-page-mv .logo-area {
    width: 250px;
  }
  .p-page-mv .page-ttl {
    font-size: 2rem;
    margin-top: 10px;
  }
}
@media screen and (max-width: 540px) {
  .p-page-mv {
    height: 100%;
  }
  .p-page-mv .img-area {
    width: 100%;
    height: 200px;
    position: relative;
    -webkit-mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 15%
    );
    mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 15%
    );
    /* ------------------------------------------------------------- */
  }
  .p-page-mv .content {
    top: initial;
    transform: initial;
    width: 100%;
  }
  .p-page-mv .logo-area {
    max-width: 300px;
    padding: 20px;
  }
}

/* 下層共通タイトル */
.page-sub-ttl {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 30px;
}
.main-ttl.page-main-ttl {
  font-weight: 800;
  color: var(--bg-base);
  text-align: center;
  letter-spacing: 3px;
  -webkit-text-stroke: 5px var(--tx-accent);
  paint-order: stroke fill;
  filter: drop-shadow(2px 2px 3px rgba(112, 112, 112, 0.5));
}
.page-small-ttl {
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  color: var(--bg-dark);
  text-shadow: none;
  -webkit-text-stroke: 0 transparent;
  filter: none;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 1024px) {
  .page-sub-ttl {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .page-sub-ttl {
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 430px) {
  .page-sub-ttl {
    font-size: 1.8rem;
  }
}

/* 共通アイコン */
.icon-area {
  text-align: center;
  margin-bottom: 20px;
}
.icon-area img {
  width: 64px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .icon-area {
    margin-bottom: 5px;
  }
  .icon-area img {
    width: 50px;
  }
}

/* 共通セクション1 */
.cs-lower {
  margin-bottom: 0;
}
.cs-lower .content {
  background-color: var(--bg-base);
  border-radius: 20px;
  padding: 60px;
}
.cs-lower .card-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
  row-gap: 40px;
  column-gap: 20px;
}
.cs-lower .page-sub-ttl span {
  color: var(--tx-accent);
}
.cs-lower .img-area {
  width: 100%;
  max-width: 250px;
  margin: 0 auto 10px;
}
.cs-lower .info-area {
  text-align: center;
}
.cs-lower .info-ttl {
  font-weight: 400;
  color: var(--tx-accent);
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .cs-lower .content {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .cs-lower .content {
    padding: 30px 20px;
  }
  .cs-lower .card-area {
    column-gap: 15px;
  }
}
@media screen and (max-width: 430px) {
  .cs-lower .info-area .text {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}

/* 共通セクション2 */
.p-top .ttl-area {
  background-color: var(--bg-accent);
  text-align: center;
  color: var(--tx-on-color);
  padding: 24px 10px;
  margin-bottom: 0;
  border-radius: 40px 40px 0 0;
}
.p-body {
  display: flex;
  align-items: stretch;
  max-height: 500px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 80px;
}
.p-body .text-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 80px;
}
.p-body .text-area.text-left {
  align-items: flex-start;
}
.p-body .text-area .icon {
  width: 70px;
  margin-bottom: 20px;
}
.p-body .content-ttl {
  margin-bottom: 30px;
}
.p-body .text-area.text-left .content-ttl {
  border-left: 5px solid var(--tx-accent);
  padding-left: 1.5em;
}
.p-body .text-area p {
  font-size: 1.8rem;
  text-align: left;
  line-height: 2;
}
.p-body .image-area {
  flex: 1;
  overflow: hidden;
}
.p-body .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-bottom {
  border-radius: 0 0 40px 40px;
  background-color: var(--bg-soft);
  padding-top: 60px;
  padding-bottom: 60px;
}
.p-bottom .list-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
}
.p-bottom .list-area li {
  background-color: var(--bg-light);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
}
.p-bottom .list-area li:has(a) {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.p-bottom .list-area li:has(a):hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.p-bottom .list-area li a {
  display: block;
  margin: -30px -20px;
  padding: 30px 20px;
}
.p-bottom .small-ttl {
  color: var(--tx-accent);
  text-align: center;
  letter-spacing: 0.4px;
}
.p-bottom .list-area .img-area {
  max-width: 220px;
  margin: 0 auto;
}
.p-bottom .list-area .sub-ttl {
  text-align: center;
}
.p-bottom .list-area .text {
  margin-top: 20px;
  text-align: center;
}
.p-bottom .list-area .name {
  margin-top: 10px;
  color: var(--tx-accent);
}
@media screen and (max-width: 1280px) {
  .p-top .ttl-area {
    padding: 15px 10px;
  }
  .p-layout .content-main-ttl {
    font-size: 2.8rem;
  }
  .p-body {
    max-height: 450px;
  }
  .p-body .text-area {
    padding: 40px 60px;
  }
  .p-body .text-area.text-left .content-ttl {
    padding-left: 1em;
  }
  .p-bottom .list-area {
    column-gap: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .p-top .main-ttl {
    line-height: 1.4;
  }
  .p-layout .content-main-ttl {
    font-size: 2.6rem;
  }
  .p-body {
    max-height: 400px;
  }
  .p-body .text-area {
    padding: 30px;
  }
  .p-body .text-area .icon {
    width: 50px;
    margin-bottom: 10px;
  }
  .p-body .content-ttl {
    margin-bottom: 20px;
  }
  .p-body .text-area.text-left .content-ttl {
    padding-left: 15px;
    text-align: left;
  }
  .p-body .content-main-ttl {
    text-align: center;
  }
  .p-body .text-area.text-left .content-main-ttl {
    text-align: left;
  }
  .p-body .text-area p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .p-bottom .small-ttl {
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 2rem;
  }
  .p-bottom .list-area .sub-ttl {
    font-size: 1.4rem;
  }
  .p-bottom .list-area li {
    padding: 20px 15px;
  }
  .p-bottom .list-area li a {
    margin: -20px -15px;
    padding: 20px 15px;
  }
  .p-bottom .list-area .img-area {
    max-width: 90%;
  }
}
@media screen and (max-width: 960px) {
  .p-body .text-area.text-left .content-main-ttl br {
    display: none;
  }
  .p-bottom .list-area li {
    padding: 20px 8px;
  }
  .p-bottom .list-area li a {
    margin: -20px -8px;
    padding: 20px 8px;
  }
  .p-layout .small-ttl {
    font-size: 1.8rem;
  }
  .p-bottom .list-area .sub-ttl {
    font-size: 1.3rem;
    letter-spacing: 0.1px;
  }
  .p-bottom .list-area .text p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-body .text-area {
    padding: 20px;
  }
  .p-body .text-area p {
    line-height: 1.5;
  }
  .p-layout .content-main-ttl {
    font-size: 2rem;
  }
  .p-body .content-ttl {
    margin-bottom: 10px;
  }
  .p-bottom .list-area {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  .p-bottom .list-area .img-area {
    max-width: 200px;
  }
  .p-bottom .list-area .sub-ttl {
    font-size: 1.5rem;
  }
  .p-bottom .list-area .text p {
    font-size: 1.6rem;
  }
  .p-layout .small-ttl {
    font-size: 2rem;
  }
  .p-bottom .list-area .name {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 600px) {
  .p-top .ttl-area {
    border-radius: 30px 30px 0 0;
  }
  .p-body {
    display: flex;
    flex-direction: column-reverse;
    max-height: initial;
  }
  .p-body .image-area {
    max-height: 55vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-body .text-area p {
    font-size: 1.4rem;
  }
  .p-bottom {
    border-radius: 0 0 30px 30px;
  }
  .p-bottom .list-area li {
    padding: 15px;
  }
  .p-bottom .list-area li a {
    margin: -15pxx;
    padding: 15px;
  }
  .p-body .text-area.text-left .content-main-ttl br {
    display: block;
  }
}
@media screen and (max-width: 430px) {
  .p-top .main-ttl {
    font-size: 2.4rem;
  }
  .p-layout .content-main-ttl {
    font-size: 1.8rem;
  }
  .p-bottom .list-area .text p {
    text-align: left;
  }
  .p-bottom .list-area .img-area {
    max-width: 170px;
  }
  .p-body .text-area.text-left .content-main-ttl br {
    display: none;
  }
}

/*---------------------*
profileページ
*---------------------*/
/* 会社のはじまり　detail */
.p-detail .unit {
  margin-bottom: 140px;
}
.p-detail .unit03 {
  max-width: 1200px;
  margin: 0 auto;
}
.p-detail .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.p-detail .content-reverse {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "right-item left-item";
}
.p-detail .unit02 .content-reverse {
  margin-bottom: 80px;
}
.p-detail .content-reverse .img-area {
  grid-area: left-item;
}
.p-detail .content-reverse .text-area {
  grid-area: right-item;
}
.p-detail .text-area {
  padding: 20px 100px 20px 50px;
}
.p-detail .content-reverse .text-area {
  padding: 20px 50px 20px 100px;
}
.p-detail .content-main-ttl {
  margin-bottom: 30px;
  padding-left: 60px;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: relative;
}
.p-detail .content-main-ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background-color: var(--bg-dark);
}
.p-detail .text-area p {
  line-height: 1.8;
}
.p-detail .text-area p span {
  font-weight: bold;
  margin-right: 1em;
}
.p-detail .last-content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1280px) {
  .p-detail .unit {
    margin-bottom: 100px;
  }
  .p-detail .unit02 .content-reverse {
    margin-bottom: 50px;
  }
  .p-detail .main-ttl {
    font-size: 3.4rem;
  }
  .p-detail .content-reverse .text-area {
    padding: 0px 30px;
  }
  .p-detail .text-area {
    padding: 0px 30px;
  }
  .p-detail .content-main-ttl {
    margin-bottom: 20px;
    padding-left: 40px;
    font-size: 2.8rem;
  }
  .p-detail .content-main-ttl::before {
    width: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .p-detail .main-ttl {
    font-size: 3rem;
  }
  .p-detail .content-main-ttl {
    font-size: 2.6rem;
  }
  .p-detail .text-area,
  .p-detail .content-reverse .text-area {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-detail .unit {
    margin-bottom: 60px;
  }
  .p-detail .img-area {
    max-width: 500px;
    margin: 0 auto;
  }
  .p-detail .last-content .img-area {
    max-width: 100%;
  }
  .p-detail .main-ttl {
    font-size: 2.8rem;
  }
  .p-detail .content-main-ttl {
    font-size: 2.2rem;
  }
  .p-detail .content,
  .p-detail .content-reverse {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .p-detail .main-ttl {
    font-size: 2.4rem;
  }
  .p-detail .text-area,
  .p-detail .content-reverse .text-area {
    padding: 0px;
  }
  .p-detail .content-main-ttl {
    margin-bottom: 10px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 430px) {
  .p-detail .main-ttl {
    font-size: 2.2rem;
  }
}

/*---------------------*/
/* 歩み　history */
.p-history .grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 0;
  list-style: none;
}
/* 中央を縦に貫く直線 */
.p-history .grid::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 12px;
  height: calc(100% - 24px);
  width: 8px;
  background-color: #ffffff;
  z-index: 1;
}
/* 各カードの配置 */
.p-history .card {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 3;
  width: 100%;
}
.p-history .card.is-left {
  grid-column: 1;
  justify-self: end;
}
.p-history .card.is-right {
  grid-column: 2;
  justify-self: start;
  align-items: flex-end;
}
/* 交互の食い込み調整 */
.p-history .card:nth-child(2) {
  margin-top: 180px;
}
.p-history .card:nth-child(3) {
  margin-top: -80px;
}
.p-history .card:nth-child(4) {
  margin-top: 80px;
}
.p-history .card:nth-child(5) {
  margin-top: -200px;
}
.p-history .card:nth-child(6) {
  margin-top: 80px;
}
.p-history .card:nth-child(7) {
  margin-top: 50px;
}
.p-history .card:nth-child(8) {
  margin-top: 200px;
}
.p-history .card:nth-child(9) {
  margin-top: 40px;
}
/* 共通パーツ */
.p-history .img-wp {
  width: 400px;
  border: 4px solid var(--bg-light);
  line-height: 0;
  z-index: 10;
}
.p-history .img-wp img {
  width: 100%;
  height: auto;
  display: block;
}
.p-history .text-wp {
  color: #ffffff;
  margin-top: 5px;
}
.p-history .card.no-img .text-wp {
  margin-top: 0;
}
.p-history .date,
.p-history .era {
  font-size: 2.6rem;
  font-weight: 600;
  margin: 0;
}
.p-history .date {
  background-color: var(--bg-accent);
  padding: 5px 10px;
  display: inline-block;
}
.p-history .desc {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 500;
  padding: 0 10px;
}
/*  ●（白丸）と点線 */
.p-history .card::before {
  content: "";
  position: absolute;
  top: 24px;
  width: 25px;
  height: 25px;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 4;
}
.p-history .card::after {
  content: "";
  position: absolute;
  top: 24px;
  width: 100px;
  border-bottom: 5px dotted #ffffff;
  z-index: -1;
  transform: translateY(-50%);
}
.p-history .card.no-img::after {
  width: 100%;
}
.p-history .card.is-left::before {
  right: -40px;
  transform: translate(50%, -50%);
}
.p-history .card.is-left::after {
  right: -40px;
}
.p-history .card.is-right::before {
  left: -40px;
  transform: translate(-50%, -50%);
}
.p-history .card.is-right::after {
  left: -40px;
}
@media screen and (max-width: 1024px) {
  .p-history .img-wp {
    max-width: 400px;
    width: 96%;
  }
  .p-history .date,
  .p-history .era {
    font-size: 2.2rem;
  }
  .p-history .card:nth-child(4) {
    margin-top: 50px;
  }
  .p-history .card:nth-child(5) {
    margin-top: -150px;
  }
}
@media screen and (max-width: 767px) {
  .p-history .date,
  .p-history .era {
    font-size: 2rem;
  }
  .p-history .desc {
    font-size: 1.6rem;
  }
  .p-history .card:nth-child(5) {
    margin-top: -100px;
  }
}
@media screen and (max-width: 600px) {
  .p-history .grid {
    display: block;
    margin-top: 40px;
  }
  .p-history .grid::before {
    left: 15px;
    transform: none;
    top: 12px;
    height: calc(100% - 69px);
    width: 4px;
  }
  .p-history .card {
    padding: 0 0 12px;
    margin-top: 0 !important;
    margin-bottom: 45px !important;
    width: 100%;
    padding-left: 60px;
  }
  .p-history .card.is-right {
    align-items: initial;
  }
  .p-history .img-wp {
    top: -10px;
    position: relative;
  }
  .p-history .text-wp {
    margin-top: 0;
    padding-left: 0px;
  }
  .p-history .card.is-left::after,
  .p-history .card.is-right::after {
    left: 15px;
    top: 18px;
  }
  .p-history .card::before {
    left: 15px !important;
    right: auto !important;
    top: 18px !important;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%) !important;
  }
  .p-history .card.no-img::after {
    width: 150px;
  }
  .p-history .date {
    padding: 0px 10px;
  }
}
@media screen and (max-width: 430px) {
  .p-history .card {
    margin-bottom: 30px !important;
  }
  .p-history .date,
  .p-history .era {
    font-size: 1.8rem;
  }
  .p-history .desc {
    font-size: 1.4rem;
  }
}

/*---------------------*/
/* 会社概要 company */
.p-company .info-table {
  width: 100%;
  margin-bottom: 60px;
  border: 3px solid var(--bg-accent);
}
.p-company .info-table th,
.p-company .info-table td {
  font-size: 2rem;
  padding: 30px 0;
  border-bottom: 3px solid var(--bg-accent);
}
.p-company .info-table th {
  width: 20%;
  border-right: 3px solid var(--bg-accent);
  text-align: center;
  vertical-align: middle;
  background-color: rgba(119, 187, 141, 0.2);
  font-weight: 400;
}
.p-company .info-table tr:last-child th,
.p-company .info-table tr:last-child td {
  border-bottom: none;
}
.p-company .info-table td {
  text-align: left;
  padding-left: 50px;
  padding-right: 30px;
}
.p-company .info-table ul li {
  line-height: 1.8;
}
.p-company .info-table .list1 {
  list-style: disc;
  margin-bottom: 30px;
  padding-left: 1em;
}
@media screen and (max-width: 1280px) {
  .p-company .info-table th,
  .p-company .info-table td {
    font-size: 1.8rem;
    padding: 15px 0;
  }
  .p-company .info-table td {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .p-company .info-table th,
  .p-company .info-table td {
    font-size: 1.6rem;
    padding: 10px 0;
  }
  .p-company .info-table td {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .p-company .info-table th,
  .p-company .info-table td {
    font-size: 1.4rem;
    padding: 6px 0;
  }
  .p-company .info-table td {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 430px) {
  .p-company .info-table th {
    width: 25%;
  }
}

/*---------------------*/
/* 業績 achiv */
.achieve-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 15px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;

  list-style: none;
}
.achieve-list .item {
  text-align: left;
  font-size: 2.2rem;
}
@media screen and (max-width: 1024px) {
  .achieve-list {
    column-gap: 10px;
  }
  .achieve-list .item {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .achieve-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    padding: 0 20px;
    column-gap: 0;
  }
}
@media screen and (max-width: 600px) {
  .achieve-list {
    padding: 0;
  }
  .achieve-list .item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 430px) {
  .achieve-list {
    display: flex;
    flex-direction: column;
    padding: 0 30px;
    row-gap: 5px;
  }
}

/*---------------------*/
/* エリア area */
.p-area .content {
  background-color: var(--bg-base);
  border-radius: 20px;
  padding: 60px 60px 80px;
  margin-bottom: 30px;
}
.p-area .ttl-area {
  margin-bottom: 60px;
}
.p-area .content .main-ttl {
  color: var(--tx-accent);
}
.p-area .text-area p {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--tx-on-color);
  text-align: center;
}
.p-area .map-sp {
  display: none;
}
@media screen and (max-width: 1280px) {
  .p-area .main-ttl {
    font-size: 3.4rem;
  }
  .p-area .content {
    padding: 30px 20px 50px;
  }
  .p-area .img-area {
    max-width: 900px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .p-area .main-ttl {
    font-size: 3rem;
  }
  .p-area .text-area p {
    font-size: 2.4rem;
  }
  .p-area .ttl-area {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-area .main-ttl {
    font-size: 2.8rem;
  }
  .p-area .text-area p {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 600px) {
  .p-area .main-ttl {
    font-size: 2.4rem;
  }
  .p-area .map-pc {
    display: none;
  }
  .p-area .map-sp {
    display: block;
  }
}
@media screen and (max-width: 430px) {
  .p-area .main-ttl {
    font-size: 2.2rem;
  }
  .p-area .content {
    padding: 20px 15px 30px;
  }
  .p-area .text-area p {
    font-size: 1.8rem;
  }
}

/*---------------------*
serviceページ
*---------------------*/
/* サービス　service-lower */
.cs-lower.service-lower .card-area {
  grid-template-columns: repeat(6, 1fr);
  max-width: 1100px;
}
.cs-lower.service-lower .card-area .card:nth-child(-n + 3) {
  grid-column: span 2;
}
.cs-lower.service-lower .card-area .card:nth-child(n + 4) {
  grid-column: span 3;
}
.cs-lower.service-lower .card-area a {
  width: fit-content;
  margin: 0 auto;
  display: block;
}
.cs-lower.service-lower .card-area .img-area {
  overflow: hidden;
  border-radius: 50%;
}
.cs-lower.service-lower .card-area .img-area img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-out;
}
.cs-lower.service-lower .card-area .info-area .text,
.cs-lower.service-lower .card-area .info-area .info-ttl {
  transition: color 0.3s ease-out;
}
.cs-lower.service-lower .info-ttl {
  font-weight: bold;
  line-height: 1.2;
}
.cs-lower.service-lower .card-area a:hover .img-area img {
  transform: scale(1.1);
}
@media screen and (max-width: 1280px) {
  .cs-lower .img-area {
    max-width: 220px;
  }
}
@media screen and (max-width: 1024px) {
  .cs-lower .card-area {
    row-gap: 30px;
  }
  .cs-lower .img-area {
    max-width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .cs-lower .img-area {
    max-width: 150px;
  }
}
@media screen and (max-width: 600px) {
  .cs-lower .content {
    padding: 30px 15px;
  }
  .service-lower.section .img-area {
    max-width: 100px;
  }
  .cs-lower .small-ttl {
    font-size: 1.7rem;
    letter-spacing: 0.3px;
    margin-bottom: 0;
  }
  .cs-lower .info-area .text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 430px) {
  .cs-lower .content {
    padding: 20px 15px;
  }
  .cs-lower.service-lower .card-area {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
  }
  .cs-lower.service-lower .card-area a {
    display: grid;
    grid-template-columns: 25% 75%;
    column-gap: 5px;
  }
  .service-lower.section .img-area {
    max-width: initial;
    margin-bottom: 0;
  }
  .cs-lower .small-ttl {
    font-size: 1.8rem;
  }
  .cs-lower .info-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding-left: 4vw;
    margin-top: 5px;
  }
}
.cs-lower .info-area.interview-info {
  align-items: center;
  padding-left: 0;
  text-align: center;
}

/*---------------------*/
/* リネン　linen */
.p-linen .content-main-ttl br {
  display: none;
}
.p-linen .p-bottom .list-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  .p-linen .p-bottom .list-area li {
    padding: 15px 8px;
  }
}
@media screen and (max-width: 430px) {
  .p-linen .p-bottom .list-area {
    display: flex;
    flex-direction: column;
  }
  .p-linen .p-bottom .list-area .img-area {
    max-width: 100px;
  }
}

/* サポートの流れ flow */
.p-flow {
  margin-bottom: 100px;
}
.p-flow .flow-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-flow .flow-item {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  padding: 25px 30px 25px 60px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 20px;
}
.p-flow .flow-num {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: var(--bg-accent);
  color: var(--tx-on-color);
  font-size: 3.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-flow .flow-icon {
  width: 100px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.p-flow .flow-icon img {
  width: 100%;
  height: auto;
}
.p-flow .flow-ttl {
  color: var(--tx-accent);
  margin: 0 0 8px 0;
  font-weight: 700;
}
.p-flow .flow-text p {
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.6;
}
.p-flow .flow-item:not(:last-child)::after {
  content: "▼";
  position: absolute;
  bottom: -35px;
  left: 0px;
  transform: translateX(-50%);
  color: var(--bg-dark);
  font-size: 2.8rem;
}
@media screen and (max-width: 1024px) {
  .p-flow .flow-list {
    gap: 30px;
  }
  .p-flow .flow-item {
    padding: 15px 20px 20px 50px;
  }
  .p-flow .flow-num {
    width: 50px;
    height: 50px;
    font-size: 3rem;
    left: -25px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow .flow-icon {
    width: 80px;
  }
  .p-flow .flow-item {
    gap: 15px;
    padding: 10px 20px 15px 40px;
  }
  .p-flow .flow-ttl {
    margin: 0;
  }
  .p-flow .flow-text p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .p-flow .section-inner {
    padding: 0;
  }
  .p-flow .flow-num {
    width: 40px;
    height: 40px;
    font-size: 2.6rem;
    left: -20px;
  }
  .p-flow .flow-item:not(:last-child)::after {
    bottom: -30px;
    font-size: 2.4rem;
  }
  .p-flow .flow-text p {
    font-size: 1.4rem;
  }
  .p-flow .flow-icon {
    width: 65px;
  }
}
@media screen and (max-width: 600px) {
  .p-flow .flow-item {
    padding: 10px 10px 10px 30px;
  }
  .p-flow .flow-icon {
    width: 65px;
  }
}
@media screen and (max-width: 430px) {
  .p-flow .flow-item {
    padding: 10px 10px 10px 20px;
    gap: 10px;
  }
  .p-flow .flow-num {
    width: 30px;
    height: 30px;
    font-size: 2rem;
    left: -15px;
  }
  .p-flow .flow-icon {
    width: 55px;
  }
  .p-flow .flow-text p {
    line-height: 1.4;
  }
}

/* おすすめ　product */
.p-product {
  margin-bottom: 100px;
}
.p-product ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
}
.p-product ul li {
  background-color: var(--bg-light);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.p-product ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.p-product ul li a {
  padding: 10px 15px 20px;
  display: block;
  width: 100%;
  height: 100%;
}
.p-product .product-ttl-area {
  min-height: 110px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-product .product-ttl {
  color: var(--tx-accent);
}
.p-product .img-box {
  margin-bottom: 10px;
}
.p-product .name {
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .p-product ul {
    column-gap: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .p-product .product-ttl {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-product ul {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  .p-product .product-ttl-area {
    min-height: auto;
  }
  .p-product .img-box {
    max-width: 280px;
    margin: 0 auto 10px;
  }
}

/* ネオリネン neolinen */
.p-neolinen .p-body {
  margin-bottom: 0;
}

/*---------------------*/
/* コインランドリー　laundromat */
.p-laundromat .p-body {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-laundromat .p-bottom .small-ttl .br-960 {
    display: none;
  }
}

/*---------------------*/
/* 福祉施設 welfare */
.p-welfare .p-body {
  margin-bottom: 0;
}
.p-welfare .p-bottom .list02 .small-ttl {
  margin-bottom: 0;
}

/*---------------------*/
/* その他 others */
.p-others .p-body {
  margin-bottom: 0;
}
.p-others .p-bottom .list-area .img-area {
  max-width: 150px;
}
@media screen and (max-width: 767px) {
  .p-others .p-bottom .list-area .img-area {
    max-width: 130px;
  }
}

/*---------------------*/
/* 開業支援 startup */
.p-startup .p-body {
  margin-bottom: 0;
}
.p-startup .content-ttl {
  text-align: center;
}
/* .p-startup .p-bottom .small-ttl {
  font-size: 1.8rem;
} */
.p-startup .p-block {
  display: flex;
  flex-direction: column;
  row-gap: 100px;
  margin-bottom: 100px;
}
.p-startup .p-block ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
}
.p-startup .p-block ul li {
  background-color: var(--bg-light);
  border-radius: 20px;
  padding: 30px;
}
.p-startup .p-model .img-area {
  max-width: 300px;
  height: auto;
  margin: 0 auto 30px;
}
.p-startup .p-block .name {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}
.p-startup .p-block .text p {
  font-size: 1.8rem;
  line-height: 1.8;
}
.p-startup .propose-li {
  position: relative;
}
.p-startup .staff {
  position: absolute;
  max-width: 160px;
  height: auto;
  top: -100px;
}
.p-startup .staff01 {
  right: 60px;
}
.p-startup .staff02 {
  left: 60px;
}
@media screen and (max-width: 1280px) {
  .p-startup .p-model .img-area {
    max-width: 220px;
    margin: 0 auto 10px;
  }
  .p-startup .p-block .name {
    margin-bottom: 10px;
  }
  .p-startup .staff {
    max-width: 140px;
    top: -110px;
  }
}
@media screen and (max-width: 1024px) {
  .p-startup .p-block {
    row-gap: 70px;
    margin-bottom: 70px;
  }
  .p-startup .p-block ul {
    column-gap: 30px;
  }
  .p-startup .p-block ul li {
    padding: 25px;
  }
  .p-startup .p-model .img-area {
    max-width: 180px;
  }
  .p-startup .p-block .text p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .p-startup .staff {
    max-width: 120px;
    top: -100px;
  }
}
@media screen and (max-width: 600px) {
  .p-startup .p-block ul {
    column-gap: 15px;
  }
  .p-startup .p-block ul li {
    padding: 20px 15px;
  }
  .p-startup .staff {
    max-width: 100px;
    top: -80px;
  }
  .p-startup .p-block .text p {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 500px) {
  .p-startup .p-block {
    row-gap: 50px;
    margin-bottom: 50px;
  }
  .p-startup .p-block ul {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .p-startup .p-model .img-area {
    max-width: 140px;
  }
  .p-startup .staff {
    max-width: 80px;
    top: -35px;
  }
  .p-startup .staff01 {
    right: 0px;
  }
  .p-startup .staff02 {
    left: 0px;
  }
}

/*---------------------*/
/* メーカー一覧 company-list */
.p-company-list.section {
  padding-top: 0 !important;
}
.p-company-list {
  background-color: var(--bg-light);
  padding-bottom: 60px;
  margin-bottom: 0;
}
.p-company-list .content-ttl {
  text-align: center;
  background-color: var(--bg-accent);
  color: var(--tx-on-color);
  padding: 30px;
}
.p-company-list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  padding-top: 20px;
  row-gap: 60px;
}
.p-company-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-light);
  border: 3px solid var(--bg-accent);
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.p-company-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.p-company-list li img {
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .p-company-list ul {
    column-gap: 20px;
    row-gap: 30px;
    padding-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-company-list ul {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-company-list ul {
    gap: 15px;
  }
}
@media screen and (max-width: 600px) {
  .p-company-list ul {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .p-company-list .content-ttl {
    padding: 20px;
  }
}

/*---------------------*
お問い合わせ
*---------------------*/
.p-contact {
  margin-bottom: 0;
}
.p-contact-form {
  background-color: var(--bg-base);
  border-radius: 20px;
  padding: 60px;
}
.p-contact-form .form-list {
  margin-bottom: 50px;
}
.form-item {
  display: flex;
  padding: 20px 0;
}
.form-item dt {
  width: 25%;
  font-weight: 800;
  font-size: 15px;
  padding-top: 10px;
}
.form-item dt span {
  background-color: var(--bg-accent);
  color: var(--tx-on-color);
  padding: 4px 10px;
  margin-left: 10px;
  font-size: 1.3rem;
}
.form-item dd {
  width: 80%;
  margin: 0;
}
.form-item input[type="text"],
.form-item input[type="email"],
.form-item input[type="tel"],
.form-item textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: var(--bg-light);
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}
.form-item textarea {
  resize: vertical;
}
.p-contact .btn-area .btn {
  width: 200px;
}

@media screen and (max-width: 1280px) {
  .p-contact-form {
    padding: 40px;
  }
  .form-item {
    padding: 10px 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-contact-form {
    padding: 30px;
  }
  .p-contact-form .form-list {
    margin-bottom: 30px;
  }
  .form-item dt {
    width: 30%;
  }
  .form-item dt span {
    padding: 2px 6px;
    margin-left: 6px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    padding: 20px;
  }
  .p-contact-form .form-list {
    margin-bottom: 30px;
  }
  .form-item {
    flex-direction: column;
    padding: 0;
  }
  .form-item dt,
  .form-item dd {
    width: 100%;
  }
  .form-item dt {
    margin-bottom: 5px;
  }
  .form-item input[type="text"],
  .form-item input[type="email"],
  .form-item input[type="tel"],
  .form-item textarea {
    font-size: 1.4rem;
  }
  .p-contact-form .c-btn-area {
    margin-bottom: 20px;
  }
}

/*---------------------*
プライバシーポリシー
*---------------------*/
.p-policy .lead {
  margin-bottom: 40px;
}
.p-policy .po-list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.p-policy .po-list .ttl-area {
  margin-bottom: 10px;
  text-align: left;
  border-bottom: 1px solid var(--bg-accent);
  padding-bottom: 10px;
}
.p-policy .po-list .main-ttl {
  font-size: 2.6rem;
}
.p-policy .small-list {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.p-policy .small-list li {
  list-style-type: disc !important;
  display: list-item !important;
  margin-left: 1.5em;
}
@media screen and (max-width: 600px) {
  .p-policy .po-list .main-ttl {
    font-size: 2rem;
  }
  .p-policy .po-list .ttl-area {
    margin-bottom: 5px;
    padding-bottom: 5px;
  }
}
