@charset "UTF-8";
:root {
  --noto: "Noto Sans JP", sans-serif;
  --mont: "Montserrat", sans-serif;
  --word: #1a1a1a;
  --footerBg: #2a2b2c;
  --white: #ffffff;
  --grayBg: #f3f3f3;
  --grayLine: #eeeeee;
  --blue: #1779cd;
  --green: #23bdbf;
  --ggreen: #006400;
  --fw4: 400;
  --fw5: 500;
  --fw6: 600;
  --fw7: 700;
  --fz10: calc(10 / 16 * 1rem);
  --fz12: calc(12 / 16 * 1rem);
  --fz14: calc(14 / 16 * 1rem);
  --fz16: 1rem;
  --fz18: calc(18 / 16 * 1rem);
  --fz10_12: clamp(0.625rem, 0.529rem + 0.29vw, 0.75rem);
  --fz12_16: clamp(0.75rem, 0.559rem + 0.59vw, 1rem);
  --fz12_18: clamp(0.75rem, 0.463rem + 0.88vw, 1.125rem);
  --fz14_16: clamp(0.875rem, 0.779rem + 0.29vw, 1rem);
  --fz14_18: clamp(0.875rem, 0.684rem + 0.59vw, 1.125rem);
  --fz15_24: clamp(0.938rem, 0.507rem + 1.32vw, 1.5rem);
  --fz16_18: clamp(1rem, 0.904rem + 0.29vw, 1.125rem);
  --fz16_20: clamp(1rem, 0.809rem + 0.59vw, 1.25rem);
  --fz16_24: clamp(1rem, 0.618rem + 1.18vw, 1.5rem);
  --fz18_20: clamp(1.125rem, 1.029rem + 0.29vw, 1.25rem);
  --fz18_24: clamp(1.125rem, 0.838rem + 0.88vw, 1.5rem);
  --fz20_24: clamp(1.25rem, 1.059rem + 0.59vw, 1.5rem);
  --fz20_32: clamp(1.25rem, 0.676rem + 1.76vw, 2rem);
  --fz24_28: clamp(1.5rem, 1.309rem + 0.59vw, 1.75rem);
  --fz22_28: clamp(1.375rem, 1.088rem + 0.88vw, 1.75rem);
  --fz24_32: clamp(1.5rem, 1.118rem + 1.18vw, 2rem);
  --fz28_40: clamp(1.75rem, 1.176rem + 1.76vw, 2.5rem);
  --fz28_48: clamp(1.75rem, 0.794rem + 2.94vw, 3rem);
  --fz32_40: clamp(2rem, 1.618rem + 1.18vw, 2.5rem);
  --fz40_56: clamp(2.5rem, 1.735rem + 2.35vw, 3.5rem);
  --fz40_72: clamp(2.5rem, 0.971rem + 4.71vw, 4.5rem);
  --fz48_56: clamp(3rem, 2.618rem + 1.18vw, 3.5rem);
  --pad: 32px;
  --max: 1024px;
}
@media (min-width: 520px) {
  :root :root {
    --pad: 80px;
  }
}

html{
  scroll-behavior: smooth;
}

body {
  font-size: var(--fz14_16);
  font-family: var(--noto);
  font-weight: var(--fw4);
  background-color: var(--white);
  color: var(--word);
  overflow-wrap: break-word;
  line-height: 1.75;
  letter-spacing: 0.08em;
  overflow-x: hidden;
}

picture,
figure {
  line-height: 1;
}

.tablet-in {
  display: none;
}
@media (min-width: 520px) {
  .tablet-in {
    display: inline-block;
  }
}

.desktop-in {
  display: none;
}
@media (min-width: 960px) {
  .desktop-in {
    display: inline-block;
  }
}

@media (min-width: 960px) {
  .desktop-none {
    display: none;
  }
}

.link a {
  display: inline-block;
  background-color: var(--white);
  color: var(--ggreen);
  font-weight: var(--fw5);
  padding-top: 24px;
  padding-bottom: 24px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border-radius: 40px;
  position: relative;
  width: min(100%, 544px);
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .link a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
  .link a:where(:any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}
.link a::before, .link a::after {
  content: "";
  background-color: var(--blue);
  position: absolute;
}

.target {
  opacity: 0;
}
.target.active {
  animation-name: fluffy;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

@media (min-width: 960px) {
  .service li:nth-child(1) {
    animation-delay: calc(1 * 0.3s) !important;
  }
  .service li:nth-child(2) {
    animation-delay: calc(2 * 0.3s) !important;
  }
  .service li:nth-child(3) {
    animation-delay: calc(3 * 0.3s) !important;
  }
  .service li:nth-child(4) {
    animation-delay: calc(4 * 0.3s) !important;
  }
}


@media (min-width: 960px) {
  .person li:nth-child(1) {
    animation-delay: calc(1 * 0.3s) !important;
  }
  .person li:nth-child(2) {
    animation-delay: calc(2 * 0.3s) !important;
  }
}

@media (min-width: 960px) {
  .case .caseItem:nth-of-type(1) {
    animation-delay: calc(1 * 0.3s) !important;
  }
  .case .caseItem:nth-of-type(2) {
    animation-delay: calc(2 * 0.3s) !important;
  }
}

@keyframes fluffy {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.sec {
  padding-top: 64px;
  width: min(100% - var(--pad), var(--max));
  margin-inline: auto;
}
@media (min-width: 960px) {
  .sec {
    padding-top: 120px;
  }
  .about .sec{
    padding-top:80px;
  }
}

.secHeader {
  font-weight: var(--fw5);
  text-align: center;
}
.secHeader h2 {
  font-size: var(--fz28_40);
  font-family: var(--mont);
  color: var(--ggreen);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.1em;
}
.secHeader p {
  font-size: var(--fz16);
  margin-top: 8px;
}
@media (min-width: 960px) {
  .secHeader p {
    margin-top: 16px;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background-color: #FFF; /* お好みで背景色を設定 */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* 下に影をつける */
  position: fixed; /* ヘッダーを固定 */
  width: 100%; /* ビューポート全体の幅 */
  top: 0; /* 上部から0pxの位置に */
  left: 0; /* 左端から0pxの位置に */
  z-index: 1000; /* 他の要素より上に表示されるように */
};


.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff; /* 背景色はサイトのデザインに合わせて調整してください */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* スクロール時にヘッダーに影を追加 */
}


#nav{
  position:fixed;
  right:34px;
  top:25px;
}
 
.nav-list{
  list-style: none;
  display: flex;
  gap: 20px; /* ナビゲーションアイテム間の間隔 */
  margin: 0;
  padding: 0;
}

.nav-list li {
  padding: 10px; /* タップしやすいようにパディングを追加 */
}

.nav-list a {
  text-decoration: none;
  color: #333; /* リンクの色 */
  font-weight: bold;
}

.header a img {
  width: 160px; /* デフォルトサイズ */
  height: 62.68px;
}
/* ドロップダウン矢印 */
.service-dropdown > a {
  position: relative;
  padding-right: 10px;
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
}

.service-dropdown > a .arrow {
  display: inline-block;
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.service-dropdown:hover > a .arrow {
  transform: rotate(180deg);
}

/* ドロップダウンメニューのスタイル */
.service-dropdown {
  position: relative;
}

.service-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.9));
  backdrop-filter: blur(10px);
  width: 220px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  border-radius: 10px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
}

.service-dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 8px 20px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.dropdown-menu li:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.dropdown-menu li a {
  display: block;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 0;
  position: relative;
  overflow: hidden;
}

.dropdown-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--ggreen);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.dropdown-menu li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown-menu li a:hover {
  color: var(--ggreen);
  background-color: rgba(200, 230, 230, 0.2);
  border-radius: 5px;
}

/* モバイルデバイスの画面幅に基づいたメディアクエリ */
@media (max-width: 768px) {
  .header a img {
      width: 120px; /* モバイルデバイス用のサイズ */
      height: auto; /* 高さを自動調整 */
  }
  .nav-list {
    gap: 8px; /* タップしやすいようにパディングを追加 */
  }
}

/* モバイルデバイス向けのスタイル */
@media (max-width: 768px) {
  /* 'About', 'Service', '会社概要' のナビゲーションリンクを非表示にする */
  .nav-list li:not(:nth-last-child(-n+2)) {
      display: none;
  }
}


.main{
  padding-top:100px;
}

/* 背景の透過エフェクトを追加 */
.top {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/mainvisual.jpg);
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  animation: backgroundFadeIn 4s ease-in-out forwards;
}
.top .title{
  position:relative;
  border-radius:8px;
  animation: slideInFromTop 2s ease forwards;
  font-family:'Noto Sans JP';
}
/* 各角に横線と縦線を追加 */
.corner {
  position: absolute;
  background-color: white;
}

/* 左上の角 */
.corner-top-left-horizontal {
  top: -10px;
  left: -10px;
  width: 20px;
  height: 4px;
}
.corner-top-left-vertical {
  top: -10px;
  left: -10px;
  width: 4px;
  height: 20px;
}

/* 右上の角 */
/* .corner-top-right-horizontal {
  top: -10px;
  right: -10px;
  width: 20px;
  height: 4px;
}
.corner-top-right-vertical {
  top: -10px;
  right: -10px;
  width: 4px;
  height: 20px;
} */

/* 左下の角 */
/* .corner-bottom-left-horizontal {
  bottom: -10px;
  left: -10px;
  width: 20px;
  height: 4px;
}
.corner-bottom-left-vertical {
  bottom: -10px;
  left: -10px;
  width: 4px;
  height: 20px;
} */

/* 右下の角 */
.corner-bottom-right-horizontal {
  bottom: -10px;
  right: -10px;
  width: 20px;
  height: 4px;
}
.corner-bottom-right-vertical {
  bottom: -10px;
  right: -10px;
  width: 4px;
  height: 20px;
}
.top .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.top .inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
  padding: 20px;
  animation: fadeIn 2s ease-in-out 1s forwards;
  opacity: 0;
}

.top h1 {
  font-size: var(--fz40_72);
  font-weight: bold;
  animation: fadeInText 2.5s ease forwards;
}

.top h2 {
  font-weight: 500;
  font-size: var(--fz24_32);
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 72px;
  animation: fadeInText 3s ease forwards;
}

.top .link {
  margin-top: 24px;
}


/* モバイル対応 */
@media (min-width: 520px) {
  .top {
    padding: 120px 40px;
  }


  .top .link {
    margin-top: 40px;
  }
}

@media (min-width: 960px) {
  .top {
    padding: 140px 60px;
  }

  .top .link {
    margin-top: 110px;
  }
}

/* フェードインアニメーション */
@keyframes backgroundFadeIn {
  to {
    opacity: 1;
  }
}

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

@keyframes slideInFromTop {
  from {
    transform: translateY(-30px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

.about {
  padding-top: 100px;  /* ヘッダーの高さと同じ */
  margin-top: -100px;  /* ヘッダーの高さと同じだが負の値 */
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 64px;
  text-align: center;
  background-color: var(--grayBg);
  border-radius: 15px; /* 角を丸くする */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ボックスシャドウを追加 */
}
@media (min-width: 520px) and (min-width: 960px) {
  .about {
    padding-bottom: 60px;
  }
}

.about h1 {
  font-size: var(--fz15_24);
  font-weight: var(--fw6);
  letter-spacing: 0.1em;
  display: inline-block;
  text-align: center;
  color: var(--ggreen);
  line-height: 2;
  border-bottom: 3px solid var(--ggreen); /* ボーダーを強調 */
  padding-bottom: 10px; /* ボーダーとの間隔 */
  margin-bottom: 20px; /* 下のマージン */
}
.about p{
  padding-top:18px;
  font-size: var(--fz16_20);
  font-weight: var(--fw5);
  letter-spacing: 0.1em;
  display: inline-block;
  text-align: center;
  line-height: 2;
  padding-bottom: 32px;
}
.about .desc{
  font-size:var(--fz12_18);
}
.trouble .subTitle {
  font-size: var(--fz16_20);
}
.trouble ul {
  padding-top: 112px;
  padding-bottom: 64px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 960px) {
  .trouble ul {
    padding-top: 128px;
    padding-bottom: 120px;
  }
}
.trouble ul li {
  width: 320px;
  text-align: center;
}
/* @media (min-width: 520px) {
  .trouble ul li:first-child .problem {
    padding-bottom: 62px;
  }
} */
.trouble ul li .problem {
  padding: 90px 24px 24px;
  background-color: var(--grayBg);
  position: relative;
  border-radius: 20px;
}
@media (min-width: 960px) {
  .trouble ul li .problem {
    padding-bottom: 32px;
  }
}
/* .trouble ul li .problem::after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 20px;
  height: 16px;
  background-color: var(--ggreen);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
} */
.trouble ul li .problem figure {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.trouble ul li .problem figure img {
  width: auto;
  height: 130px;
}
.trouble ul li .problem h3 {
  font-weight: var(--fw5);
  font-size: var(--fz18);
  position: relative;
}
.trouble ul li .problem h3::after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 20px;
  height: 16px;
  background-color: var(--ggreen);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.trouble ul li .problem h3 span {
  font-weight: var(--fw7);
  color: var(--ggreen);
}
.trouble ul li .problem p {
  margin-top: 48px;
  font-size: var(--fz14);
  line-height: 2;
}
@media (min-width: 960px) {
  .trouble ul li .problem p {
    text-align: left;
  }
}
.trouble ul li .solution {
  margin-top: 46px;
  width: 300px;
  height: 300px;
  line-height: 1;
  margin-inline: auto;
}
.trouble ul li .solution img {
  width: 100%;
  height: auto;
}

.person {
  background-color: var(--grayBg);
  padding-top: 64px;
  padding-bottom: 64px;
}
.person .secHeader h2 {
  line-height: 1.5;
}
@media (min-width: 960px) {
  .person .secHeader h2 {
    line-height: 1;
  }
}
@media (min-width: 960px) {
  .person {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.person .inner {
  margin-top: 32px;
  padding: 48px 24px;
  background-color: var(--white);
  border-radius: 20px;
}
@media (min-width: 960px) {
  .person .inner {
    margin-top: 64px;
    padding-top: 64px;
    padding-bottom: 64px;
    border-radius: 30px;
  }
}
.person .inner ol {
  display: grid;
  grid-template: "it1 it1" "it2 it2" "it3 it3" "it4 it4";
  gap: 32px 48px;
  max-width: 660px;
  margin-inline: auto;
}
@media (min-width: 520px) {
  .person .inner ol {
    grid-template: "it1 it2" "it3 it3" "it4 it4";
  }
}
@media (min-width: 520px) and (min-width: 960px) {
  .person .inner ol {
    gap: 48px 100px;
  }
}
.person .inner ol li {
  position: relative;
}
.person .inner ol li:nth-child(1) {
  grid-area: it1;
}
.person .inner ol li:nth-child(2) {
  grid-area: it2;
}
.person .inner ol li:nth-child(3) {
  grid-area: it3;
}
.person .inner ol li:nth-child(4) {
  grid-area: it4;
}
.person .inner ol li:nth-child(1) h3::before {
  content: "01";
  font-family: var(--mont);
  font-size: var(--fz20_32);
  color: var(--green);
  display: inline-block;
  margin-right: 8px;
  line-height: 1.5;
}
@media (min-width: 960px) {
  .person .inner ol li:nth-child(1) h3::before {
    margin-right: 16px;
    position: relative;
    top: 5px;
  }
}
.person .inner ol li:nth-child(2) h3::before {
  content: "02";
  font-family: var(--mont);
  font-size: var(--fz20_32);
  color: var(--green);
  display: inline-block;
  margin-right: 8px;
  line-height: 1.5;
}
@media (min-width: 960px) {
  .person .inner ol li:nth-child(2) h3::before {
    margin-right: 16px;
    position: relative;
    top: 5px;
  }
}
.person .inner ol li:nth-child(3) h3::before {
  content: "03";
  font-family: var(--mont);
  font-size: var(--fz20_32);
  color: var(--green);
  display: inline-block;
  margin-right: 8px;
  line-height: 1.5;
}
@media (min-width: 960px) {
  .person .inner ol li:nth-child(3) h3::before {
    margin-right: 16px;
    position: relative;
    top: 5px;
  }
}
.person .inner ol li:nth-child(4) h3::before {
  content: "04";
  font-family: var(--mont);
  font-size: var(--fz20_32);
  color: var(--green);
  display: inline-block;
  margin-right: 8px;
  line-height: 1.5;
}
@media (min-width: 960px) {
  .person .inner ol li:nth-child(4) h3::before {
    margin-right: 16px;
    position: relative;
    top: 5px;
  }
}
.person .inner ol li:nth-child(1), .person .inner ol li:nth-child(2) {
  text-align: center;
  max-width: 240px;
  margin-inline: auto;
}
@media (min-width: 960px) {
  .person .inner ol li:nth-child(1), .person .inner ol li:nth-child(2) {
    text-align: left;
    max-width: 100%;
    margin-inline: 0;
  }
}
.person .inner ol li h3 {
  font-size: var(--fz16_20);
  font-weight: var(--fw5);
  line-height: 1.5;
  text-align: left;
}
.person .inner ol li figure,
.person .inner ol li p {
  margin-top: 8px;
}
@media (min-width: 960px) {
  .person .inner ol li figure,
  .person .inner ol li p {
    margin-top: 16px;
  }
}
.person .inner ol li figure {
  display: inline-block;
}
.person .inner ol li figure img {
  width: 100%;
  height: auto;
}

.service {
  padding-bottom: 64px;
  /* background-color: var(--grayBg); */
}
@media (min-width: 960px) {
  .service {
    padding-bottom: 120px;
  }
}
.service .list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}
@media (min-width: 520px) {
  .service .list {
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
@media (min-width: 520px) and (min-width: 960px) {
  .service .list {
    margin-top: 48px;
    /* justify-content: space-between; */
    gap: 1;
  }
}
.service .list .listItem {
  border-radius: 30px;
  width: min(100%, 400px);
  /* background: linear-gradient(145deg, #ffffff, #f3f3f3); */
  background-color:aliceblue;
  padding: 24px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-origin: center; /* 追加 */
}

.service .list .listItem:hover {
  transform: scale(1.05) !important;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
}


@media (min-width: 960px) {
  .service .list .listItem {
    padding: 32px 32px 24px 32px;
    width: 440px;
  }
}
@media (min-width: 960px) and (min-width: 960px) {
  .service .list .listItem {
    padding-bottom: 0;
    height: 465px;
  }
}
.service .list .listItem:last-child .text {
  letter-spacing: 0.06em;
}
.service .list .listItem .num {
  font-family: var(--mont);
  font-weight: var(--fw6);
  font-size: var(--fz24_32);
  color: var(--ggreen);
  letter-spacing: 0.1em;
  line-height: 1;
}
.service .list .listItem h3 {
  margin-top: 8px;
  font-size: var(--fz20_24);
  font-weight: var(--fw5);
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: relative;
  padding-bottom: 8px;
  margin-bottom:4px;
}

.service .list .listItem h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 3px;
  background-color: var(--ggreen);
  border-radius: 2px;
}
.service .list .listItem h3 span {
  font-weight: var(--fw7);
  color: var(--ggreen);
}
.service .list .listItem .text {
  margin-top: 8px;
  letter-spacing: 0.04em;
}
@media (min-width: 960px) {
  .service .list .listItem .text {
    margin-top: 16px;
  }
}
.service .list .listItem .img{
  text-align: center;
}
@media (min-width: 992px) {
  .service .list .listItem .img {
      padding: 0;
  }
}

.service .list .listItem .img img {
  vertical-align: top;
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
  margin-top:15px;
}

@media (min-width: 992px) {
  .service .list .listItem .img img {
      width: 914px;
      height: 300px;
      border-radius: 50px;
  }
}

.service .list .listItem .listItemList li::before {
  content: "・";
}

.case {
  padding-bottom: 64px;
}
@media (min-width: 960px) {
  .case {
    padding-bottom: 120px;
  }
}
.case h3 {
  margin-top: 48px;
  background-color: var(--green);
  color: var(--white);
  font-weight: var(--fw5);
  padding: 16px;
  width: min(100%, 466px);
  text-align: center;
  border-radius: 39px;
  margin-inline: auto;
  margin-bottom: 16px;
}
@media (min-width: 960px) {
  .case h3 {
    border-radius: 32px;
    margin-bottom: 32px;
  }
}
.case h3.sub2 {
  margin-top: 32px;
  width: min(100%, 614px);
}
@media (min-width: 960px) {
  .case h3.sub2 {
    margin-top: 64px;
  }
}
.case .wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 960px) {
  .case .wrapper {
    flex-direction: row;
    gap: 68px;
  }
}
.case .wrapper .caseItem {
  padding: 4px;
  position: relative;
  background-image: linear-gradient(145deg, var(--green), var(--ggreen));
}
@media (min-width: 960px) {
  .case .wrapper .caseItem {
    width: 480px;
    height: 641px;
  }
}
.case .wrapper .caseItem .inner {
  padding: 28px 20px;
  background-color: var(--white);
}
@media (min-width: 960px) {
  .case .wrapper .caseItem .inner {
    padding: 36px 36px 0;
    height: 633px;
  }
}
.case .wrapper .caseItem h4 {
  color: var(--ggreen);
  font-size: var(--fz16_20);
  font-weight: var(--fw7);
  text-align: center;
}
.case .wrapper .caseItem p {
  line-height: 1.5;
  margin-top: 8px;
  text-align: center;
  font-size: var(--fz18_20);
  font-weight: var(--fw5);
  display: inline-block;
  background-image: linear-gradient(transparent 70%, var(--grayLine) 0%);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 960px) {
  .case .wrapper .caseItem p {
    margin-top: 16px;
  }
}
.case .wrapper .caseItem p span {
  font-weight: var(--fw7);
  font-size: var(--fz32_40);
  color: var(--ggreen);
  display: inline-block;
  margin: 0 8px;
  letter-spacing: 0.1em;
}
.case .wrapper .caseItem figure {
  height: 150px;
  margin-top: 24px;
  width: 100%;
}
@media (min-width: 960px) {
  .case .wrapper .caseItem figure {
    margin-top: 32px;
    width: min(100%, 400px);
    margin-top: 32px;
  }
}
.case .wrapper .caseItem figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case .wrapper .caseItem ul {
  margin-top: 24px;
}
@media (min-width: 960px) {
  .case .wrapper .caseItem ul {
    margin-top: 32px;
  }
}
.case .wrapper .caseItem ul li {
  position: relative;
  padding-left: 16px;
  letter-spacing: 0.05em;
}
.case .wrapper .caseItem ul li:not(:first-child) {
  margin-top: 6px;
}
.case .wrapper .caseItem ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
}
@media (min-width: 960px) {
  .case .wrapper .caseItem ul li::before {
    top: 11px;
  }
}

.awards {
  background-color: var(--grayBg);
  padding-bottom: 64px;
}
@media (min-width: 960px) {
  .awards {
    padding-bottom: 120px;
  }
}
.awards .awardsItem {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.awards .awardsItem::before, .awards .awardsItem::after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
}
@media (min-width: 960px) {
  .awards .awardsItem::before, .awards .awardsItem::after {
    display: inline-block;
    min-width: 100px;
    height: 231.04px;
  }
}
.awards .awardsItem::before {
  background-image: url(../images/awards_left.png);
}
.awards .awardsItem::after {
  background-image: url(../images/awards_right.png);
}
.awards .awardsItem:first-of-type {
  margin-top: 16px;
}
@media (min-width: 960px) {
  .awards .awardsItem:first-of-type {
    margin-top: 64px;
  }
}
.awards .awardsItem:not(:first-of-type) {
  margin-top: 48px;
}
@media (min-width: 960px) {
  .awards .awardsItem:not(:first-of-type) {
    margin-top: 64px;
  }
}
.awards .awardsItem .title {
  display: flex;
  align-items: center;
  width: min(100%, 520px);
  margin-inline: auto;
  justify-content: space-between;
}
@media (min-width: 960px) {
  .awards .awardsItem .title {
    justify-content: center;
    width: 100%;
  }
}
.awards .awardsItem .title .sub {
  font-size: var(--fz14);
}
.awards .awardsItem .title .ul {
  font-size: var(--fz12);
}
.awards .awardsItem .title::before, .awards .awardsItem .title::after {
  content: "";
  display: inline-block;
  min-width: 37px;
  height: 86.04px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 960px) {
  .awards .awardsItem .title::before, .awards .awardsItem .title::after {
    display: none;
  }
}
.awards .awardsItem .title::before {
  background-image: url(../images/awards_left.png);
}
.awards .awardsItem .title::after {
  background-image: url(../images/awards_right.png);
}
.awards .awardsItem .title div {
  text-align: center;
}
.awards .awardsItem .title div h3 {
  font-size: var(--fz16_24);
  font-weight: var(--fw7);
  color: var(--ggreen);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.awards .awardsItem .title div p {
  margin-top: 8px;
}
@media (min-width: 960px) {
  .awards .awardsItem .title div p br {
    display: none;
  }
}
.awards .awardsItem .awardsWrap {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 960px) {
  .awards .awardsItem .awardsWrap {
    margin-top: 32px;
    gap: 32px;
  }
}
.awards .awardsItem .awardsWrap .awardsFirst,
.awards .awardsItem .awardsWrap .awardsSecond {
  width: min(100%, 250px);
}
.awards .awardsItem .awardsWrap .awardsFirst img,
.awards .awardsItem .awardsWrap .awardsSecond img {
  width: 100%;
  height: auto;
}
.awards .awardsItem .awardsText {
  margin-top: 16px;
  font-size: var(--fz14);
  text-align: center;
  margin-inline: auto;
}
.awards .awardsItem .awardsText .awardsTextWrap {
  display: inline-block;
  text-align: center;
}
@media (min-width: 960px) {
  .awards .awardsItem .awardsText .awardsTextWrap {
    display: block;
  }
}
.awards .awardsItem .awardsText .firstText {
  display: inline-block;
  font-size: var(--fz14);
}
.awards .awardsItem .awardsText .secondText {
  font-size: var(--fz14);
}
.awards .awardsItem .awardsText .big {
  margin-top: 4px;
  font-size: var(--fz22_28);
  font-weight: var(--fw7);
  color: var(--ggreen);
  display: block;
}
@media (min-width: 960px) {
  .awards .awardsItem .awardsText .big {
    display: inline-block;
  }
}
.awards .awardsItem .awardsText .small {
  font-size: var(--fz14_18);
  margin-left: 8px;
  font-weight: var(--fw5);
  display: block;
}
@media (min-width: 520px) {
  .awards .awardsItem .awardsText .small {
    display: inline-block;
  }
}
.awards .awardsItem .img {
  margin-top: 16px;
  height: auto;
  margin-inline: auto;
}
@media (min-width: 960px) {
  .awards .awardsItem .img {
    margin-top: 24px;
  }
}
.awards .awardsItem .img img {
  width: 100%;
  height: auto;
}
.awards .awardsItem .img01 {
  width: min(100%, 558.63px);
}
.awards .awardsItem .img02 {
  width: min(100%, 574px);
  margin-top: 16px;
}
@media (min-width: 960px) {
  .awards .awardsItem .img02 {
    margin-top: 48px;
  }
}
.awards .awardsItem .img03 {
  width: min(100%, 462px);
}
.awards .awardsItem .text {
  margin-top: 16px;
  font-size: var(--fz12_16);
  margin-inline: auto;
}
@media (min-width: 960px) {
  .awards .awardsItem .text {
    margin-top: 24px;
  }
}
.awards .awardsItem .text01 {
  max-width: 470px;
}
.awards .awardsItem .text02 {
  max-width: 480px;
}
.awards .awardsItem .text03 {
  max-width: 700px;
}

.flow {
  background-color: var(--grayBg);
  padding-bottom: 64px;
}
@media (min-width: 960px) {
  .flow {
    padding-bottom: 120px;
  }
}
.flow ol {
  margin-top: 32px;
}
@media (min-width: 960px) {
  .flow ol {
    margin-top: 64px;
  }
}
.flow ol li {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  gap: 26px;
}
@media (min-width: 960px) {
  .flow ol li {
    gap: 42px;
    align-items: center;
    margin-bottom:30px;
  }
}
.flow ol li:not(:first-of-type) {
  margin-top: 32px;
}
.flow ol li:nth-child(1)::before {
  content: "01";
  position: absolute;
  top: -12px;
  left: 0;
  color: var(--ggreen);
  font-size: var(--fz24_32);
  font-weight: var(--fw5);
  font-family: var(--mont);
}
.flow ol li:nth-child(2)::before {
  content: "02";
  position: absolute;
  top: -12px;
  left: 0;
  color: var(--ggreen);
  font-size: var(--fz24_32);
  font-weight: var(--fw5);
  font-family: var(--mont);
}
.flow ol li:nth-child(3)::before {
  content: "03";
  position: absolute;
  top: -12px;
  left: 0;
  color: var(--ggreen);
  font-size: var(--fz24_32);
  font-weight: var(--fw5);
  font-family: var(--mont);
}
.flow ol li:nth-child(4)::before {
  content: "04";
  position: absolute;
  top: -12px;
  left: 0;
  color: var(--ggreen);
  font-size: var(--fz24_32);
  font-weight: var(--fw5);
  font-family: var(--mont);
}
.flow ol li:nth-child(5)::before {
  content: "05";
  position: absolute;
  top: -12px;
  left: 0;
  color: var(--ggreen);
  font-size: var(--fz24_32);
  font-weight: var(--fw5);
  font-family: var(--mont);
}
.flow ol li .contents {
  flex: 1;
}
.flow ol li .contents h3 {
  color: var(--ggreen);
  font-size: var(--fz16_20);
  font-weight: var(--fw5);
}
.flow ol li .contents p {
  margin-top: 4px;
}
.flow ol li figure {
  width: 100px;
  height: auto;
}
@media (min-width: 960px) {
  .flow ol li figure {
    width: 150px;
  }
}
.flow ol li figure img {
  width: 100%;
  height: auto;
}

.option {
  background-color: var(--grayBg);
  padding-bottom: 64px;
}
.option .secHeader{
  margin-bottom:52px;
}
@media (min-width: 960px) {
  .option {
    padding-bottom: 120px;
  }
}
.option dl{
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ccc;
}
.option dl:first-of-type{
  border-top:2px solid #ccc;
}
.option dl:last-of-type{
  border-bottom:2px solid #ccc;
}
@media (min-width: 960px) {
  .option dl {
    flex-direction: row;
    border-color: #ccc;
  }
  .option dl dt{
    border-bottom:none;
  }
}
.option dt{
  border-bottom: 1px solid #ccc;
  font-weight:500;
  font-size: 14px;
  background-color: rgba(28,34,79,0.05);
  padding: 26px 24px;
  min-width:182px;
}
.option dd{
  padding:26px 24px;
}
.option .contents .text * + * {
  margin-top: 8px;
}
@media (min-width: 960px) {
  .option .contents .text * + * {
    margin-top: 16px;
  }
}
.option .contents figure {
  width: min(100%, 512px);
}
.option .contents figure img {
  width: 100%;
  height: auto;
}

.qa {
  margin-bottom: 64px;
}
@media (min-width: 960px) {
  .qa {
    margin-bottom: 120px;
  }
}
.qa dl:first-of-type {
  margin-top: 32px;
}
@media (min-width: 960px) {
  .qa dl:first-of-type {
    margin-top: 64px;
  }
}
.qa dl:not(:first-of-type) {
  margin-top: 32px;
}
@media (min-width: 960px) {
  .qa dl:not(:first-of-type) {
    margin-top: 40px;
  }
}
.qa dl dt {
  font-size: var(--fz16_18);
  font-weight: var(--fw5);
  position: relative;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 960px) {
  .qa dl dt {
    gap: 24px;
  }
}
.qa dl dt::before {
  content: "Q";
  display: inline-block;
  font-family: var(--mont);
  width: 48px;
  height: 48px;
  color: var(--white);
  background-color: var(--green);
  font-size: var(--fz24_28);
  border-radius: 50%;
  text-align: center;
  line-height: 2;
}
@media (min-width: 960px) {
  .qa dl dt::before {
    width: 56px;
    height: 56px;
  }
}
.qa dl dd {
  margin-top: 16px;
  background-color: var(--grayBg);
  padding: 24px;
  border-radius: 15px;
}

.contact {
  position: relative;
  height: 200px;
  background-image: url(../images/contact.jpg);
  background-size: cover;
  background-position: center center;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.contact .inner {
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2; /* 追加 */
}

.contact .link {
  position: relative;
  z-index: 3; /* innerより大きい値 */
}


.footer {
  background-color: var(--footerBg);
  color: var(--white);
  padding: 32px 16px; /* 上下のパディング */
  text-align: center; /* 中央揃え */
}

.footer-inner {
  display: flex;
  justify-content: space-between; /* アイテム間のスペースを均等に */
  align-items: flex-start; /* 上揃え */
  flex-wrap: wrap; /* コンテナが狭くなったら折り返す */
  margin-bottom: 16px; /* 下のマージン */
}

.footer-logo {
  flex: 1; /* 等間隔で表示 */
}

.footer-about,
.footer-services,
.footer-contact {
  flex: 1; /* 等間隔で表示 */
  margin: 0 16px; /* 左右のマージン */
}

.footer h4 {
  font-size: var(--fz16_20);
  font-weight: var(--fw6);
  margin-bottom: 8px; /* ヘッダーとリストの間隔 */
}

.footer ul {
  list-style: none; /* リストのデフォルトスタイルを削除 */
  padding: 0; /* パディングを削除 */
}

.footer ul li {
  margin: 4px 0; /* リストアイテム間のマージン */
}

.footer a {
  color: var(--white); /* リンクの色 */
  text-decoration: none; /* リンクの下線を削除 */
}

.footer a:hover {
  text-decoration: underline; /* ホバー時に下線を追加 */
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column; /* 縦に並ぶように */
    align-items: center; /* 中央に配置 */
  }

  .footer-logo,
  .footer-about,
  .footer-services,
  .footer-contact {
    margin: 8px 0; /* モバイル用のマージンを小さく */
    text-align: center; /* 中央揃え */
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
.swiper-button-next::before,
.swiper-button-prev::before {
  font-size: 24px;
  color: var(--ggreen);
}

.swiper-button-next {
  top: 230px !important;
}
.swiper-button-next::before {
  content: "＞";
}

.swiper-button-prev {
  top: 230px !important;
}
.swiper-button-prev::before {
  content: "＜";
}

.swiper-pagination {
  top: 150px !important;
  left: 28% !important;
}
.swiper-pagination .swiper-pagination-bullet {
  margin: 0 8px !important;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--ggreen);
}/*# sourceMappingURL=style.css.map */