@charset "UTF-8";
/*-----------------------------------------------------------------------------------------------------
共通設定(PC)
--------------------------------------------------------------------------------------------------------*/
html,
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  font-style: normal;
  line-height: 1.5;
  background-color: #fff;
  scroll-behavior: smooth;
  color: #252525;
}
body .sp-item {
  display: none !important;
}
body .pc-item {
  display: block !important;
}
/*リンク文字の設定*/
a {
  text-decoration: underline;
}
/*ボタン*/
.btn {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
  position: relative;
  overflow: hidden;
}
@keyframes poyopoyo {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }
}
.btn::after {
  animation: 2s 0s shine-btn linear infinite;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
}
@keyframes shine-btn {
  0% {
    left: -100%;
  }
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
.btn:hover {
  opacity: 0.7;
}
img {
  width: 100%;
}
/*ページ全体*/
.container {
  width: 1200px;
  margin: 0 auto;
  padding: 0;
}
/* ページ内リンク先の要素にマージンを適用 */
section {
  scroll-margin-top: 150px; /* ヘッダーの高さ分ずらす */
}
/* 上へ戻るボタン */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 2px;
  background: #005bea;
  color: #fff;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 1.4rem;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
/* hidden項目 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
/*-----------------------------------------------------------------------------------------------------
ヘッダーエリア(PC)
-----------------------------------------------------------------------------------------------------*/
.header-area {
  background: linear-gradient(to right, #00c6fb, #005bea);
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.header-fixed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: 1200px;
  width: 100%;
}
.header-logo {
  max-width: 100%;
  max-height: 100%;
  width: 15%;
  height: auto;
  margin-left: 20px;
}
.header-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 70%;
}
.header-tel {
  width: 35%;
  height: auto;
  margin-right: 20px;
}
.header-btn {
  width: 31%;
  height: auto;
}
/*-----------------------------------------------------------------------------------------------------
メインエリア(PC)
-----------------------------------------------------------------------------------------------------*/
.main-area {
  margin-top: 100px;
}
/*-----------------------------------------------------------------------------------------------------
ファーストビューエリア(PC)
-----------------------------------------------------------------------------------------------------*/
.fv-wrap {
  display: flex;
  flex-direction: row;
}
.fv-left {
  flex-basis: 60%;
}
.fv-right {
  flex-basis: 40%;
  margin: 40px auto 0;
  padding: 40px 30px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  max-height: 740px;
}
.form-fv {
  max-height: 560px;
  overflow-y: auto;
  margin: 40px 0;
  padding-bottom: 20px;
  padding-right: 20px;
}
.form-ttl-fv {
  width: 80%;
  margin: 0 auto;
}
.fv-sub {
  position: relative;
}
.fv-sub-date-note {
  position: absolute;
  left: 12%;
  top: 75%;
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
}
/*-----------------------------------------------------------------------------------------------------
悩みエリア(PC)
-----------------------------------------------------------------------------------------------------*/
.nayami-arrow {
  margin: -25px auto;
  width: 15%;
  position: relative;
  z-index: 100;
}
.questionnaire {
  background-color: #e6e6e6;
  padding-bottom: 80px;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
}
.questionnaire-ttl {
  padding: 60px 160px 40px;
}
.questionnaire-img {
  margin: 0 160px 40px;
}
/*-----------------------------------------------------------------------------------------------------
サポートエリア(PC)
-----------------------------------------------------------------------------------------------------*/
.support-area {
  margin: 40px auto 0;
}
/*-----------------------------------------------------------------------------------------------------
CTAエリア(PC)
-----------------------------------------------------------------------------------------------------*/
.cta-container {
  position: relative;
}
.cta-btn-mail {
  position: absolute;
  width: 90%;
  top: 61%;
  left: 5%;
}
.cta-date-note {
  position: absolute;
  font-size: 2.2rem;
  top: 38.4%;
  left: 52%;
}
/*-----------------------------------------------------------------------------------------------------
事例エリア(PC)
-----------------------------------------------------------------------------------------------------*/
.case-area {
  padding: 60px 80px;
  background-color: #eefaff;
}
.case-ttl {
  margin-bottom: 20px;
}
.case-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
  margin-bottom: 40px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.case-card-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
.case-card-title-num {
  color: #fff;
  background-color: #005bea;
  padding: 0 10px;
  margin-right: 20px;
}
.case-card-body {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
.case-card-image {
  flex-basis: 30%;
}
.case-card-text {
  display: flex;
  flex-direction: column;
  flex-basis: 70%;
}
.case-card-item {
  font-size: 1.8rem;
  text-align: justify;
  margin-bottom: 20px;
}
.case-card-item span {
  color: #f16e24;
  font-weight: bold;
}
.case-card-result {
  margin-top: 10px;
  width: 65%;
}
/*-----------------------------------------------------------------------------------------------------
制作実績エリア(PC)
-----------------------------------------------------------------------------------------------------*/
.works-area {
  padding: 60px 0 20px;
}
.works-ttl {
  /* margin-bottom: 0; */
}
.works-card-odd {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 40px;
  width: 100%;
}
.works-card-odd .works-card-body {
  flex-direction: row;
}
.works-card-even {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 40px;
  background-color: #eefaff;
  width: 100%;
}
.works-card-even .works-card-body {
  flex-direction: row-reverse;
}
.works-card-inner {
  padding: 0 120px;
}
.works-card-title {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
}
.works-card-title-image {
  width: 13%;
}
.works-card-heading {
  font-size: 3rem;
  font-weight: bold;
}
.works-card-body {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.works-card-image {
  flex-basis: 40%;
}
.works-card-text {
  display: flex;
  flex-direction: column;
  flex-basis: 60%;
}
.works-card-lead {
  font-size: 1.8rem;
  text-align: justify;
  margin-bottom: 20px;
}
.works-card-lead span {
  color: #005bea;
  font-weight: bold;
}
.works-card-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: justify;
}
.works-card-feature-item {
  display: flex;
  align-items: flex-start;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.works-card-check-icon {
  width: 18px;
  margin-right: 8px;
  margin-top: 6px;
}
/*--------------------------------------------------------
選ばれる理由エリア(PC)
--------------------------------------------------------*/
.reasons-area {
  margin-bottom: 80px;
}
.reasons {
  padding: 60px 120px;
}
.reasons-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
}
.reasons-item {
  width: calc(50% - 80px);
  border: 1px solid #252525;
  border-radius: 10px;
  text-align: center;
  padding: 24px 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.reasons-icon {
  width: 70%;
  margin-bottom: 16px;
}
.reasons-text {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
}
.reasons-note {
  font-size: 1.8rem;
  display: block;
  margin-top: 8px;
}
.reasons-comparison {
  padding: 0 120px;
}
/*--------------------------------------------------------
よくある質問エリア(PC)
--------------------------------------------------------*/
.faq-area {
  width: 100%;
  padding: 80px 0 0;
}
.faq-items {
  padding: 40px 80px;
}
.acd-check {
  display: none;
}
.acd-label {
  display: flex;
  align-items: flex-start;
  padding: 10px 20px;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  text-align: justify;
}
.acd-label:before {
  content: "Q";
  color: #005bea;
  font-weight: bold;
  display: inline-block;
  width: 2em;
  flex-shrink: 0;
}
.acd-label:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  display: block;
  box-sizing: border-box;
}
.acd-content {
  display: flex;
  align-items: flex-start;
  height: 0;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
  font-size: 2rem;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 60px 0 20px;
  text-align: justify;
}
.acd-content:before {
  content: "A";
  color: #f16e24;
  font-weight: bold;
  display: inline-block;
  width: 2em;
  flex-shrink: 0;
}
.acd-check:checked + .acd-label:after {
  content: "\f068";
}
.qa-box {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
.qa-box:first-of-type {
  border-top: 1px solid #ddd;
}
/*--------------------------------------------------------
会社情報エリア
--------------------------------------------------------*/
.company-info-area {
  width: 100%;
  padding: 80px 120px 40px 120px;
}
.company-info-table {
  border-collapse: collapse;
  border: 1px solid #ccc;
  border-left: none;
  border-right: none;
  margin: 60px auto;
  padding: 0 120px;
}
.company-info-table th {
  font-size: 1.8rem;
  font-weight: bold;
  width: 30%;
  padding: 30px 40px;
  border-top: 1px solid #ccc;
  text-align: left;
  padding-left: 80px;
  vertical-align: middle;
}
.company-info-table td {
  font-size: 1.8rem;
  width: 70%;
  padding: 30px 40px;
  border-top: 1px solid #ccc;
  text-align: justify;
  line-height: 180%;
}
/*-----------------------------------------------------------------------------------------------------
お問合せエリア(PC)
-----------------------------------------------------------------------------------------------------*/
.form-area {
  background: linear-gradient(to right, #00c6fb, #005bea);
  padding: 40px;
}
.form-main-ttl-wrap {
  margin: 0 auto;
  background: #fff;
  width: 100%;
  position: relative;
  z-index: 0;
}
.form-main-ttl {
  position: relative;
  margin: 0 auto;
  padding-top: 60px;
  width: 108%;
  left: -4%;
}
.form-wrap {
  margin: 0 auto;
  background: #fff;
}
.form-card {
  padding: 0 200px 60px;
  margin: 0 auto;
}
.form-main-date-note {
  position: absolute;
  font-size: 2.2rem;
  top: 48.5%;
  left: 52%;
}
/*-----------------------------------------------------------------------------------------------------
フッター部分(PC)
-----------------------------------------------------------------------------------------------------*/
.footer-area {
  margin: 20px auto;
  text-align: center;
  padding: 30px;
  font-size: 1.6rem;
}
.footer-area a {
  color: #252525;
  text-decoration: none;
}
.footer-area a:hover {
  text-decoration: underline;
}
.footer-area .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-area .menu li {
  margin: 0;
  padding: 0 20px;
}
.footer-area .copyright {
  margin: 0;
  padding: 20px 0 0 0;
}
/*-----------------------------------------------------------------------------------------------------
スマホ用
-----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
    height: 100%;
  }
  body .sp-item {
    display: block !important;
  }
  body .pc-item {
    display: none !important;
  }
  section {
    scroll-margin-top: 0px;
  }
  .container {
    width: 100%;
  }
  /*-----------------------------------------------------------------------------------------------------
ヘッダーエリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .header-area-only-pc {
    display: none !important;
  }
  /*-----------------------------------------------------------------------------------------------------
メインエリア(PC)
-----------------------------------------------------------------------------------------------------*/
  .main-area {
    margin-top: 0;
  }
  /*-----------------------------------------------------------------------------------------------------
ファーストビューエリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .fv-left {
    flex-basis: 100%;
  }
  /*-----------------------------------------------------------------------------------------------------
下部固定ボタンエリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .fixed-button {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none; /* 初期状態で非表示 */
    z-index: 1000; /* 常に前面に表示 */
    transition: opacity 0.3s ease-in-out; /* スムーズな表示 */
  }
  .fixed-button.visible {
    display: flex; /* 表示状態 */
    opacity: 1;
  }
  /*-----------------------------------------------------------------------------------------------------
CTAエリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .cta-btn-mail {
    top: 58%;
  }
  .cta-btn-tel {
    position: absolute;
    width: 90%;
    top: 75%;
    left: 5%;
  }
  .cta-btn-tel img {
    display: block;
    width: 100%;
    height: auto;
  }
  .cta-date-note {
    font-size: 1.4rem;
    font-weight: bold;
    top: 35%;
    left: 30%;
  }
  /*-----------------------------------------------------------------------------------------------------
悩みエリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .nayami-arrow {
    margin: -25px auto;
    width: 35%;
  }
  .questionnaire {
    background-color: #e6e6e6;
    padding-bottom: 50px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
  }
  .questionnaire-ttl {
    padding: 30px 30px 40px;
  }
  .questionnaire-img {
    margin: 0 10px 20px;
  }
  /*-----------------------------------------------------------------------------------------------------
事例エリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .case-area {
    padding: 40px 10px;
    background-color: #eefaff;
  }
  .case-card {
    padding: 40px 20px;
  }
  .case-card-title {
    font-size: 2.4rem;
  }
  .case-card-title-num {
    margin-right: 0;
  }
  .case-card-body {
    flex-direction: column;
    gap: 40px;
  }
  .case-card-image {
    width: 60%;
    margin: 0 auto;
  }
  .case-card-result {
    width: 90%;
    margin: 0 auto;
  }
  /*-----------------------------------------------------------------------------------------------------
制作実績エリア(SP)
-----------------------------------------------------------------------------------------------------*/
  .works-ttl {
    margin-bottom: 0;
  }
  .works-card-odd {
    padding: 40px 20px;
  }
  .works-card-odd .works-card-body {
    flex-direction: column;
  }
  .works-card-even {
    padding: 60px 20px;
  }
  .works-card-even .works-card-body {
    flex-direction: column;
  }
  .works-card-inner {
    padding: 0;
  }
  .works-card-title {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    text-align: center;
  }
  .works-card-title-image {
    width: 30%;
    margin: 0 auto;
  }
  .works-card-body {
    flex-direction: column;
  }
  /*--------------------------------------------------------
選ばれる理由エリア(SP)
--------------------------------------------------------*/
  .reasons-area {
    margin-bottom: 40px;
  }
  .reasons {
    padding: 20px 10px;
  }
  .reasons-list {
    gap: 20px;
    margin: 0 auto;
    max-width: 100%;
  }
  .reasons-item {
    width: calc(50% - 10px);
    padding: 20px 10px;
  }
  .reasons-icon {
    width: 90%;
  }
  .reasons-text {
    font-size: 1.8rem;
  }
  .reasons-note {
    font-size: 1.2rem;
  }
  .reasons-comparison {
    margin-top: 20px;
    padding: 0 10px;
  }
  /*--------------------------------------------------------
よくある質問エリア(SP)
--------------------------------------------------------*/
  .faq-area {
    padding: 40px 0 20px 0;
  }
  .faq-items {
    padding: 40px 10px;
  }
  .acd-label,
  .acd-content {
    padding-right: 50px;
  }
  /*--------------------------------------------------------
会社情報エリア(SP)
--------------------------------------------------------*/
  .company-info-area {
    width: 100%;
    padding: 0 10px;
  }
  .company-info-table {
    margin: 40px auto;
    padding: 0 20px;
  }
  .company-info-table th {
    width: 35%;
    padding: 30px 15px 30px 10px;
  }
  .company-info-table td {
    width: 65%;
    padding: 15px 10px 15px 0;
  }
  /*-----------------------------------------------------------------------------------------------------
お問合せエリア(PC)
-----------------------------------------------------------------------------------------------------*/
  .form-area {
    padding: 20px 10px;
  }
  .form-main-ttl {
    padding: 30px 0;
    width: 104%;
    left: -2%;
  }
  .form-wrap {
    margin: 0 auto;
    background: #fff;
  }
  .form-card {
    padding: 0 20px 40px;
    margin: 0 auto;
  }
  .form-main-date-note {
    position: absolute;
    font-size: 1.4rem;
    font-weight: bold;
    top: 47%;
    left: 30%;
  }
  /*-----------------------------------------------------------------------------------------------------
フッター部分(SP)
-----------------------------------------------------------------------------------------------------*/
  .footer-area {
    margin-bottom: 80px;
  }
  .footer-area .menu {
    margin-bottom: 0px;
  }
  .footer-area .menu li {
    margin-bottom: 20px;
  }
  .footer-area .copyright {
    padding: 0;
  }
}
