@charset "utf-8";
/* CSS Custom Properties Around Colors */
:root {
  --white: #fff;
  --gray: #808f99;
  --gray01: #808f99;
  --gray02: #465866;
  --gray03: #2f3e47;
  --black: #162026;
  --rich-black: #000b12;
  --main-color: #0e93eb;
  --dark-color: #05304d;
  --main-bright: #00b1ff;
  --accent-color: #ffcc00;
  --accent-bright: #ffe600;
  --alert-color: #f13800;
  --alert-bright: #ff0000;
  --title: var(--black);
  --text: var(--black);
  --link: var(--black);
  --visited: var(--link);
  --hover: var(--main-bright);
  --text-strong: var(--rich-black);
  --text-discreet: var(--gray);
  --text-border: var(--gray);
  --marker: var(--accent-color);
  --shadow: rgba(0, 0, 0, 0.05);
  --error: var(--alert-color);
  --btn: var(--main-color);
  --btn-text: var(--white);
  --btn-hover: var(--main-bright);
  /*
	--btn-important: var(--main-color);
	--btn-important-text: var(--white);
	--btn-important-shade: var(--main-dark01);
	--btn-important-hover: var(--main-bright);
	--btn-important-hover-shade: var(--main-dark01);
	*/
  /* phone setting
	////////////////////////////////////////// */
}
:root ::-moz-selection {
  color: var(--white);
  background-color: var(--black);
}
:root ::selection {
  color: var(--white);
  background-color: var(--black);
}
#header {
  --shade: rgba(5, 48, 77, 0.3);
  width: 100%;
  height: var(--header-height);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* 背景 */
}
#home #header {
  margin-top: var(--header-init-top);
}
#header::before {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--shade);
  mix-blend-mode: screen;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#header .wrap {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
#header .logo {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* 背景 */
}
#header .logo::before {
  content: "";
  display: block;
  width: 50vw;
  height: 100%;
  background-color: var(--main-color);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
#header .logo a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: var(--m);
  margin-left: calc(var(--m) * 2);
}
#header .logo img {
  width: var(--logo-width);
  aspect-ratio: var(--logo-aspect-ratio);
}
.switch {
  display: none;
}
.header-nav {
  --link: var(--white);
  --visited: var(--white);
  --hover: var(--white);
  --bg: var(--main-color);
  --shade: rgba(5, 48, 77, 0.5);
  height: 100%;
  padding-right: var(--m);
  display: flex;
  justify-content: left;
  align-items: center;
}
.header-nav > a,
.header-nav .group {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: min(var(--fs, 1.19vw), 1.5rem);
  padding-inline: calc(var(--m) * 0.75);
}
.header-nav .group {
  cursor: pointer;
  position: relative;
}
.header-nav .group .title {
  color: var(--link, currentColor);
  display: flex;
  align-items: center;
  gap: 9px;
  /* 下矢印 */
}
.header-nav .group .title::after {
  display: block;
  width: calc(1lh / var(--lh, 1.75) * 0.5);
  height: calc(1lh / var(--lh, 1.75) * 0.5);
  border-right: calc(1lh / var(--lh, 1.75) * 0.13) solid var(--link, currentColor);
  border-bottom: calc(1lh / var(--lh, 1.75) * 0.13) solid var(--link, currentColor);
  transform-origin: center;
  transform: translateY(-20%) rotate(45deg);
}
.header-nav .group:not(.active) .container {
  display: none;
}
.header-nav .group .container {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--shade);
  padding-inline: 0;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
}
.header-nav .group .container a {
  display: flex;
  padding: calc(var(--m) * 0.5) var(--m);
}
.header-nav a:hover,
.header-nav .group:hover {
  background-color: var(--bg);
}
.header-nav .nav-contact img {
  width: 24px;
  aspect-ratio: 10 / 6.837;
  vertical-align: middle;
}
.header-nav a .complex .roboto {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.1em;
  font-size: 130%;
}
.header-nav a .complex .small {
  font-size: 80%;
}
#footer {
  --color: var(--white);
  background: url('/wp-content/themes/idx2022/imgs/common/footer-bg.jpg') no-repeat;
  background-size: cover;
  padding-top: var(--g, min(11.9vw, 150px));
  font-size: var(--fs, 1.19vw);
  position: relative;
  z-index: 0;
  overflow: hidden;
  /* 左側マスク */
}
#footer::after {
  display: block;
  width: calc(var(--m) * 3 + 87px + (100vw - var(--main-width)) / 2);
  min-width: calc(var(--m) * 3 + 87px);
  height: 100%;
  background-color: rgba(5, 48, 77, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#footer .container {
  width: 100%;
  box-sizing: border-box;
  max-width: var(--main-width);
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: calc(var(--m) * 3);
  position: relative;
  z-index: 3;
}
#footer .profile {
  display: flex;
  gap: 0 calc(var(--m) * 2);
  position: relative;
  z-index: 3;
}
#footer .logo {
  display: block;
  width: var(--logo-width);
  aspect-ratio: var(--logo-aspect-ratio);
  box-sizing: content-box;
  align-self: flex-start;
  padding-left: calc(var(--m) * 2);
  position: relative;
  z-index: 3;
}
#footer .info {
  color: var(--color);
  font-weight: 500;
}
#footer .info .name {
  margin-top: 12px;
}
#footer .footer-nav {
  width: 20%;
  box-sizing: border-box;
  padding-left: var(--m);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#footer .footer-nav a {
  --link: var(--color);
  --visited: var(--color);
  --hover: rgba(255, 255, 255, 0.8);
  display: flex;
}
#footer .footer-nav a::before {
  display: block;
  width: 0;
  height: 100%;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  vertical-align: middle;
  margin-right: 0.5em;
  margin-left: calc(-1 * 0.5em);
  transition: 0.4s 0.1s ease;
}
#footer .footer-nav a:hover::before {
  border-left: 6px solid #ffffff;
  margin-right: 0.5em;
  margin-left: calc(-1 * 0.5em);
  transition: 0.2s 0s ease;
}
#footer .page-top {
  width: 100%;
  min-width: 20%;
  position: absolute;
  bottom: 0;
  left: 100%;
  margin-left: -20%;
  z-index: 5;
  height: var(--m);
  box-sizing: border-box;
  padding-left: var(--m);
  background-color: var(--black);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color);
}
#footer .page-top::before {
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--color);
  border-left: 2px solid var(--color);
  transform: translateY(40%) rotate(45deg);
}
#footer .copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--m);
  background-color: var(--black);
  font-size: 1.2rem;
  color: var(--color);
  text-align: center;
  position: relative;
  z-index: 4;
}
:root {
  --main-width: 1260px;
  --logo-width: 87px;
  --logo-aspect-ratio: 87 / 42;
  --header-height: 80px;
  --m: min(2.38vw, 30px);
}
:where(a, a:link) {
  color: var(--link);
  text-decoration: none;
}
:where(a:visited) {
  color: var(--link);
}
:where(a:hover) {
  color: var(--hover);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::before,
*::after {
  content: "";
  display: none;
}
br[sp] {
  display: none;
}
br[pc],
br[pc][sp] {
  display: inline;
}
body {
  font-family: 'Roboto', Arial, "Noto Sans JP", 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  background: #fff;
}
.header-nav :is(> a, .group) {
  font-size: 0.9375rem;
}
#header {
  --shade: rgba(5, 48, 77, 0.3);
  width: 100%;
  height: var(--header-height);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* 背景 */
}
#header::before {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--shade);
  mix-blend-mode: screen;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#header .wrap {
  width: auto;
  max-width: var(--main-width);
  margin-inline: auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
#header .logo {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* 背景 */
}
#header .logo::before {
  content: "";
  display: block;
  width: 50vw;
  height: 100%;
  background-color: #0e93eb;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
#header .logo a {
  display: block;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin-right: var(--m);
  margin-left: calc(var(--m) * 2);
}
#header .logo img {
  width: var(--logo-width);
  aspect-ratio: var(--logo-aspect-ratio);
}
#footer {
  font-family: -apple-system, blinkMacSystemFont, /* Macの欧文はSan Francisco (OS X 10.11以降) */ 'Helvetica Neue', /* Macの欧文 (OS X 10.10以前) */ 'Segoe UI', /* Windowsの欧文 */ YuGothicM, /* Windows8.1以上は游ゴシック */ YuGothic, /* Macの游ゴシック */ Meiryo, /* 游ゴシックが入っていないWindows */ sans-serif;
}
#footer .copyright {
  font-size: 0.8rem;
  font-style: normal;
}
main {
  margin-top: calc(-1 * var(--header-height));
  position: relative;
}
main::before,
main::after {
  display: block;
  width: calc(100vw - (var(--m) * 3 + 87px));
  position: absolute;
  top: 100%;
  right: 0;
}
main::before {
  height: calc(var(--m) * 3);
  background: white;
  z-index: 1;
}
main::after {
  height: calc(var(--m) * 1.5);
  background: #f8f9fa;
  z-index: 2;
}
main .container {
  max-width: var(--main-width);
  margin: 0 auto;
  padding: 0 20px;
}
/* ファーストビュー */
.hero {
  color: white;
  padding-block: calc(var(--m) * 5) calc(var(--m) * 2);
  position: relative;
  overflow: hidden;
}
.hero::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(3 20 33 / 0.7);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content::before {
  left: 60px;
}
.hero-content::after {
  right: 60px;
}
.service-name {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  align-items: center;
  margin-bottom: calc(var(--m) * 2);
  margin-inline: auto;
}
.service-name h1 {
  flex: 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0;
  padding-inline: 0;
  border: 0;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  position: relative;
}
.service-name h1::after {
  display: block;
  border-top: 2px solid currentColor;
}
.service-name .flash {
  padding-block: 0.1lh 0.4lh;
  padding-inline: 0.4em 0.2em;
  margin-inline: 0.5em 0.2em;
  font-size: 170%;
  font-weight: 400;
  letter-spacing: 0.2em;
  position: relative;
  z-index: -1;
}
.service-name .flash::after {
  display: block;
  width: 100%;
  height: 100%;
  background: #4ECDC4;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform: skewX(-7deg);
}
.catch-copy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: left;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1ic;
}
.hero-features {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-block: var(--m);
  margin-inline: auto;
  list-style: none;
  font-size: 1.2rem;
}
.hero-features li {
  padding-block: 0.2lh;
  padding-inline: 2.5ic 1ic;
  border-radius: 6px;
  border: 1px solid currentColor;
  color: white;
  letter-spacing: 0.1ic;
  position: relative;
}
.hero-features li + li {
  margin-top: 20px;
}
.hero-features li::before {
  --weight: 4px;
  content: '';
  display: block;
  width: 18px;
  height: 12px;
  background: #ff9a9e;
  -webkit-clip-path: polygon(0 0, var(--weight) 0, var(--weight) calc(100% - var(--weight)), 100% calc(100% - var(--weight)), 100% 100%, 0 100%);
          clip-path: polygon(0 0, var(--weight) 0, var(--weight) calc(100% - var(--weight)), 100% calc(100% - var(--weight)), 100% 100%, 0 100%);
  rotate: -45deg;
  translate: 0 -25%;
  position: absolute;
  left: 1ic;
  top: 0.6lh;
  translate: 0 -50%;
}
.hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  translate: -50% -50%;
}
/* CVボタン */
.hero .cta {
  margin-top: calc(var(--m) * 2);
  position: relative;
}
.hero .hero-sample {
  width: 23%;
  position: absolute;
  right: calc(var(--m) * 5);
  top: calc(var(--m) * 1.3);
}
.cta-primary-block {
  color: black;
  width: 65%;
  padding-block: 45px;
  padding-inline: 60px;
  border-radius: 20px;
  background: white;
  margin-inline: auto;
  margin-bottom: calc(var(--m) * 2);
}
.cta-primary-block h3 {
	width: fit-content;
  max-width: 75%;
  font-size: 1.9rem;
  font-weight: 700;
  margin-inline: auto;
  margin-bottom: 15px;
  display: block;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.hero .cta-primary-block h3 {
  margin-inline: 0;
}
.cta-primary-block h3 + p {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 30px;
}
.cta-primary-block ul {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 75%;
  padding-block: 0.75lh;
  padding-inline: 2ic 1.5ic;
  border-radius: 10px;
  border: 2px solid var(--shadow);
  margin-bottom: var(--m);
}
.cta-primary-block li + li {
  margin-top: 0.5lh;
}
:is(.cta-primary, .cta-secondary) {
  color: white;
  cursor: pointer;
  text-decoration: none;
  display: block;
  width: 100%;
  padding-block: 0.5lh;
  padding-inline: 2ic;
  border-radius: 2lh;
  margin-inline: auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.cta-primary {
  font-size: 1.5rem;
  background: linear-gradient(45deg, #FF6B6B, #FF6B6B 50%, #4ECDC4);
  position: relative;
}
.cta-primary svg {
  height: 0.75lh;
  fill: currentColor;
  vertical-align: text-bottom;
  position: absolute;
  right: 1lh;
  top: 50%;
  translate: 0 -50%;
}
.cta-secondary {
  margin-top: 30px;
  width: calc(65% - 120px);
  margin-inline: auto;
  font-size: 1.1rem;
  color: black;
  background: #4ECDC4;
}
:is(.cta-primary, .cta-secondary):hover {
  scale: 1.05;
}
.cta-secondary:hover {
  background: #FF6B6B;
  color: white;
}
/* セクション共通 */
.section {
  padding: 100px 0;
}
.section-alt {
  background: #f8f9fa;
}
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 400;
  color: #2c3e50;
}
/* サービス説明 */
.service-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.service-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #555;
}
.service-visual {
  display: block;
  width: 600px;
  max-width: 100%;
  margin: 60px auto;
}
/* お悩みセクション */
.problems {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  padding: 100px 0;
}
.problems-list {
  max-width: 800px;
  margin: 0 auto;
}
.problem-item {
  background: white;
  padding: 30px;
  margin: 20px 0;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 80px;
}
.problem-item::before {
  display: inline;
  content: '😟';
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}
.problem-item p {
  font-size: 1.1rem;
  color: #555;
}
/* 特長セクション */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.feature-item {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-10px);
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}
.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
}
.feature-desc {
  color: #666;
  line-height: 1.6;
}
/* 費用セクション */
.pricing {
  background: #2c3e50;
  color: white;
  text-align: center;
}
.pricing-table {
  background: white;
  color: #333;
  border-radius: 20px;
  padding: 40px;
  margin: 40px auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.pricing-table .table {
  width: 100%;
  overflow-x: scroll;
}
.pricing-table table {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-spacing: 0;
}
.pricing-table tr + tr :is(th, td) {
  border-top: 1px solid rgba(0, 0, 0, 0.7);
}
.pricing-table :is(th, td) {
  padding: 20px 30px;
}
.pricing-table th {
  font-size: 1.3rem;
}
.pricing-table :is(th, td):nth-child(even) {
  background: rgba(0, 0, 0, 0.03);
}
.pricing-table .fee {
  font-family: "Roboto";
  font-weight: 700;
  font-style: italic;
  font-size: 2.1rem;
  color: #4ECDC4;
}
.pricing-table .fee span {
  font-size: 66%;
}
.pricing-examples {
  margin-top: 40px;
  text-align: left;
}
.example-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  margin: 15px 0;
  border-radius: 10px;
  border-left: 4px solid #4ECDC4;
}
/* サービスの流れ */
.process {
  overflow: hidden;
}
.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}
.process-step {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px 10px;
  position: relative;
}
.process-step::after {
  content: '→';
  display: block;
  position: absolute;
  right: -15px;
  top: 50%;
  translate: 0 -50%;
  font-size: 1.5rem;
  color: #4ECDC4;
}
.process-step:last-child::after {
  display: none;
}
.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 15px;
}
/* レポート見本 */
.sample {
  background: #f8f9fa;
}
.sample .swiper {
  --swiper-navigation-size: 60px;
  --swiper-navigation-sides-offset: 0;
  --swiper-navigation-color: #764ba2;
  max-width: 900px;
  box-sizing: content-box;
  padding-inline: calc(var(--swiper-navigation-size) * 1.5);
}
/* お客様の声 */
.review {
  background: #2c3e50;
  color: white;
}
.review .block {
  display: flex;
  align-items: center;
  gap: 60px;
}
.review .block:nth-child(even) {
  flex-direction: row-reverse;
}
.review .block + .block {
  margin-top: 90px;
}
.review img {
  flex: 0 0 auto;
  width: 150px;
}
.review .text {
  flex: 1 0 50%;
  padding: 40px;
  border-radius: 20px;
  background: white;
  color: black;
  position: relative;
  z-index: 0;
}
.review .text::before {
  display: block;
  width: 90px;
  border-top: 2px solid white;
  rotate: 30deg;
  position: absolute;
  left: 0;
  top: 70%;
  translate: -50% -50%;
  z-index: -1;
}
.review .block:nth-child(even) .text::before {
  left: auto;
  right: 0;
  rotate: -30deg;
  translate: 50% -50%;
}
.review h3 {
  font-size: 1.8rem;
  padding-bottom: 0.5lh;
  border-bottom: 1px solid rgba(0, 0, 0, 0.7);
  margin-bottom: 0.5lh;
}
section.cta {
  padding-block: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
section.cta h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 60px;
}
.form {
  background: #f8f9fa;
}
.form .container {
  max-width: 900px;
  padding-block: 60px;
  padding-inline: 90px;
  background: white;
}
.form .section-title {
  margin-bottom: 15px;
}
body:has(.mw_wp_form_input .error, .mw_wp_form_complete) section:not(.hero, .form) {
  display: none;
}
.mw_wp_form_complete .section-title {
  font-size: 1.8rem;
}
.mw_wp_form_complete .headline {
  margin-top: calc(var(--m) * 2);
  text-align: center;
  font-size: 2.1rem;
  color: #FF6B6B;
  margin-bottom: 1lh;
}
.mw_wp_form_complete .lead {
  text-align: center;
}
.mw_wp_form_complete .button {
  margin-top: calc(var(--m) * 3);
  margin-inline: auto;
  border-radius: 2lh;
  border: 0;
  cursor: pointer;
  display: block;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 0.5lh 3ic;
  box-shadow: inset 0 0 0 2px transparent;
  background: #FF6B6B;
  /* 21px / 1260px * 100 (vw) */
  font-size: 1rem;
  color: white;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: 0.3s 0s ease;
}
.mw_wp_form_complete .button:hover {
  background-color: #4ECDC4;
}
/* ==================================================================
	フォーム
================================================================== */
.form .block {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form .title {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  font-size: 1rem;
  font-weight: 700;
}
.form .title::after {
  display: none;
}
.form .block.must .title::after {
  display: block;
  border: 0;
  content: "必須";
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  padding-right: 6px;
  padding-left: 6px;
  background-color: #4ECDC4;
  color: white;
  font-size: 0.8rem;
}
.form .input .vertical-item {
  display: block;
}
.form .input .vertical-item + .vertical-item {
  margin-top: 15px;
}
.form a[href*="privacy"],
.form a[href*="policy"] {
  display: block;
  margin-top: calc(var(--m) * 0.5);
}
.form a[href*="privacy"]:link,
.form a[href*="policy"]:link,
.form a[href*="privacy"]:visited,
.form a[href*="policy"]:visited {
  color: #162026;
  text-decoration: underline;
}
.form a[href*="privacy"]:hover,
.form a[href*="policy"]:hover {
  color: #162026;
}
.form .mw_wp_form_confirm .input {
  min-height: clamp(calc(1.5rem * var(--lh)), calc(1.42vw * var(--lh)), calc(2.4rem * var(--lh)));
  padding: 6px;
  /* 18px / 1260px * 100 (vw) */
  font-size: 1rem;
  background-color: rgba(128, 143, 153, 0.1);
}
.form .block.btns {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.form .back {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
  transform: translate(-50%, -50%);
}
.form input[type="text"],
.form input[type="email"],
.form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 6px;
  border-radius: 2px;
  border: 1px solid gray;
}
.form input[type="text"]::-moz-placeholder,
.form input[type="email"]::-moz-placeholder,
.form textarea::-moz-placeholder {
  color: lightgray;
}
.form input[type="text"]::-moz-placeholder, .form input[type="email"]::-moz-placeholder, .form textarea::-moz-placeholder {
  color: lightgray;
}
.form input[type="text"]:-ms-input-placeholder, .form input[type="email"]:-ms-input-placeholder, .form textarea:-ms-input-placeholder {
  color: lightgray;
}
.form input[type="text"]::-ms-input-placeholder, .form input[type="email"]::-ms-input-placeholder, .form textarea::-ms-input-placeholder {
  color: lightgray;
}
.form input[type="text"]::placeholder,
.form input[type="email"]::placeholder,
.form textarea::placeholder {
  color: lightgray;
}
.form input[type="text"],
.form input[type="email"],
.form textarea,
.form .mwform-checkbox-field-text {
  /* 18px / 1260px * 100 (vw) */
  font-size: 1rem;
}
.form textarea {
  resize: vertical;
}
.form input:is([type="checkbox"], [type="radio"]) {
  margin-right: 0.5ic;
}
.form input[name="submitBack"],
.form input[name="submitConfirm"],
.form input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 2lh;
  border: 0;
  cursor: pointer;
  display: block;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 1lh 8ic;
  box-shadow: inset 0 0 0 2px transparent;
  background: #FF6B6B;
  /* 21px / 1260px * 100 (vw) */
  font-size: 1rem;
  color: white;
  letter-spacing: 0.1em;
  transition: 0.3s 0s ease;
  position: relative;
}
.form input[name="submitBack"]:link,
.form input[name="submitConfirm"]:link,
.form input[type="submit"]:link,
.form input[name="submitBack"]:visited,
.form input[name="submitConfirm"]:visited,
.form input[type="submit"]:visited {
  color: var(--color);
}
.form input[name="submitBack"]:hover,
.form input[name="submitConfirm"]:hover,
.form input[type="submit"]:hover {
  background-color: #4ECDC4;
}
.form input[name="submitBack"] {
  background-color: gray;
}
.form .error {
  margin-top: calc(var(--m) * 0.3);
  display: block;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  padding: 3px calc(var(--m) * 0.3);
  background-color: red;
  color: white;
  /* 15px / 1260px * 100 (vw) */
  font-size: 1rem;
}
/* レスポンシブ */
@media (max-width: 768px) {
  #header {
    /* 背景 */
  }
  #header::before {
    background-color: var(--main-color);
  }
  #header .logo a {
    margin-right: calc(var(--m) * 4);
  }
  .switch {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--header-height);
    height: var(--header-height);
    margin-right: calc(var(--m) * 1);
    position: relative;
    overflow: hidden;
  }
  .switch::before {
    /* バーガーオンスイッチ */
    display: block;
    width: 70%;
    height: 3vw;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    position: relative;
    z-index: 2;
  }
  .switch::after {
    /* バーガーオフスイッチ */
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
  }
  .switch.active::after {
    display: block;
  }
  body:has(.header-nav.active) {
    overflow: clip;
  }
  .header-nav {
    --bg: rgba(5, 48, 77, 0.95);
    --shade: rgba(22, 32, 38, 0.75);
    --border: rgba(255, 255, 255, 0.25);
    width: 100%;
    height: calc(100vh - var(--header-height));
    box-sizing: border-box;
    padding-right: 0;
    background-color: var(--shade);
    overflow-y: auto;
    overflow-x: hidden;
    position: absolute;
    top: var(--header-height);
    left: 0;
    z-index: 100;
    flex-direction: column;
  }
  .header-nav:not(.active) {
    display: none;
  }
  .header-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* 右矢印 */
  }
  .header-nav a::after {
    display: block;
    width: 9px;
    height: 9px;
    border-right: 1px solid var(--link);
    border-bottom: 1px solid var(--link);
    margin-right: calc(var(--m) * 1.25);
    transform-origin: center;
    transform: translateX(-25%) rotate(-45deg);
  }
  .header-nav > a,
  .header-nav .group {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    justify-content: flex-start;
  }
  .header-nav > a,
  .header-nav .group .title {
    padding: calc(var(--m) * 2) calc(var(--m) * 2);
    border-bottom: 1px solid var(--border);
    background-color: var(--bg);
    justify-content: space-between;
    font-size: 4vw;
    color: var(--link);
  }
  .header-nav .group {
    padding-right: 0;
    padding-left: 0;
    flex-wrap: wrap;
    background-color: transparent;
  }
  .header-nav .group .title {
    width: 100%;
    /* 下矢印 */
  }
  .header-nav .group .title::after {
    margin-right: calc(var(--m) * 1.25);
  }
  .header-nav .group.active .title {
    border-bottom: 0;
    background-color: var(--main-color);
    /* 上矢印 */
  }
  .header-nav .group.active .title::after {
    border-color: var(--bg);
    transform: translateY(40%) rotate(-135deg);
  }
  .header-nav .group:not(.active) .container {
    display: block;
    height: 0px;
    overflow: hidden;
  }
  .header-nav .group.active .container {
    flex-shrink: 0;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    box-sizing: border-box;
    -webkit-margin-before: var(--mb);
            margin-block-start: var(--mb);
    border-top: 1px solid var(--border);
    padding: var(--mb) 0 calc(var(--mb) * 2);
    background-color: var(--bg);
    position: static;
  }
  .header-nav .group.active .container a {
    padding: calc(var(--m) * 2);
    padding-left: calc(var(--m) * 4);
    font-size: 4vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.125);
  }
  .header-nav .nav-service-group.active .title {
    border-top: 1px solid var(--border);
  }
  .header-nav .nav-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--m);
  }
  .header-nav .nav-contact::before {
    content: "お問い合せ";
    display: block;
    order: 2;
  }
  .header-nav .nav-contact::after {
    order: 3;
    margin-left: auto;
  }
  .header-nav .nav-contact img {
    width: auto;
    height: calc(var(--fs, 3vw) * var(--lh, 1.75) * 0.75);
  }
  #footer {
    background-position-x: 20%;
    padding-top: calc(var(--g, min(11.9vw, 150px)) + var(--m) * 2);
    /* 左側マスク */
  }
  #footer::after {
    width: 50vw;
    background-color: transparent;
  }
  #footer .container {
    flex-direction: column;
    padding-bottom: 0;
  }
  #footer .profile {
    order: 1;
    flex-direction: column;
    gap: calc(var(--m) * 3);
    padding-bottom: var(--g, min(11.9vw, 150px));
  }
  #footer .info {
    padding-left: calc(var(--m) * 2);
  }
  #footer .info .name {
    margin-top: 0;
  }
  #footer .footer-nav {
    order: 3;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    background-color: rgba(22, 32, 38, 0.75);
    gap: 0;
  }
  #footer .footer-nav a {
    padding: calc(var(--m) * 2);
    font-size: 3.6vw;
    justify-content: space-between;
    align-items: center;
  }
  #footer .footer-nav a:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.125);
  }
  #footer .footer-nav a::after {
    display: block;
    width: 9px;
    height: 9px;
    border-right: 1px solid var(--link);
    border-bottom: 1px solid var(--link);
    transform: translateX(-25%) rotate(-45deg);
  }
  #footer .footer-nav a::before {
    display: none;
  }
  #footer .page-top {
    order: 2;
    position: static;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: unset;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: var(--m) calc(var(--m) * 3);
    background-color: var(--main-color);
    margin: 0 auto calc(var(--g, min(11.9vw, 150px)) / 2);
  }
  #footer .page-top::before {
    transform: translateY(30%) rotate(45deg);
  }
  #footer .copyright {
    height: auto;
    padding: var(--m) 0;
    background-color: var(--black);
  }
  :root {
    --main-width: 100vw;
    --logo-width: 14.93vw;
    --header-height: 13.33vw;
    --m: 4vw;
  }
  br[pc] {
    display: none;
  }
  br[sp],
  br[pc][sp] {
    display: inline;
  }
  #header::before {
    background-color: var(--main-color);
  }
  #header .logo a {
    margin-right: calc(var(--m) * 4);
  }
  #footer .info .name {
    font-size: 0.9rem;
  }
  #footer .page-top {
    font-size: 0.9rem;
  }
  .hero-content {
    padding-left: 0;
  }
  .service-name {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 30px;
  }
  .service-name h1 {
    padding-inline: 0.8em;
    font-size: 2rem;
    letter-spacing: 0.2em;
    text-align: center;
  }
  .service-name .flash {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-block: 0.1lh;
    margin-inline: auto;
    font-size: 160%;
    margin-bottom: 0.2lh;
  }
  .catch-copy {
    font-size: 1.2rem;
    text-align: center;
    padding-inline: 0;
    line-height: 1.75;
    margin-bottom: 30px;
    border-left: 0;
  }
  .hero-features {
    font-size: 0.9rem;
    letter-spacing: 0;
    margin-bottom: 30px;
  }
  .hero-features li {
    padding-block: 0.4lh;
    padding-right: 0.5ic;
  }
  .hero-features li::before {
    width: 13px;
    height: 9px;
    --weight: 3px;
    top: 0.8lh;
  }
  .hero {
    padding: 80px 0;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .process-steps {
    flex-direction: column;
  }
  .process-step::after {
    content: '↓';
    right: 50%;
    top: 100%;
    translate: 50% -50%;
  }
  .hero .cta {
    padding-top: 90px;
    padding-right: 0;
  }
  .hero .hero-sample {
    width: 90%;
    right: auto;
    top: 0;
    left: 50%;
    translate: -50% 10%;
  }
  .cta-primary-block {
    width: 100%;
    padding-block: 30px;
    padding-inline: 20px;
  }
  section.cta h2 {
    font-size: 1.3rem;
  }
  .cta-primary-block h3 {
    max-width: unset;
    font-size: 1.3rem;
    text-align: center;
  }
  .cta-primary-block ul {
    max-width: 100%;
    font-size: 0.9rem;
  }
  .cta-primary {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-align: center;
  }
  .cta-secondary {
    width: calc(100% - 40px);
    font-size: 1rem;
  }
  .pricing-table {
    padding-block: 30px;
    padding-inline: 0;
    margin-inline: -20px;
  }
  .pricing-table .table {
    padding-left: 20px;
  }
  /* レポート見本 */
  .sample .swiper {
    --swiper-navigation-size: 30px;
    box-sizing: content-box;
    padding-inline: calc(var(--swiper-navigation-size) * 1.5);
  }
  .review .block {
    display: block;
  }
  .review .block + .block {
    margin-top: 60px;
  }
  .review img {
    display: block;
    width: 100px;
    margin-inline: auto;
    margin-bottom: 30px;
  }
  .review .text {
    padding-block: 20px;
    padding-inline: 30px;
  }
  .review .text::before {
    width: 54px;
    right: auto !important;
    left: 45% !important;
    top: 0 !important;
    rotate: -60deg !important;
    translate: -50% -50% !important;
  }
  .review .block:nth-child(even) .text::before {
    left: 55% !important;
    rotate: 60deg!important;
  }
  .review h3 {
    font-size: 1.2rem;
  }
  section.cta .cta-primary-block {
    margin-top: 0;
  }
  .form .container {
    max-width: 100%;
    padding-block: 30px;
    padding-inline: 30px;
  }
  .form input[name="submitBack"],
  .form input[name="submitConfirm"],
  .form input[type="submit"] {
    width: 100%;
    padding-inline: 2ic;
  }
}
