@charset "utf-8";

/* CSS読み込み状況 2025年9月
style.css - トップページ用に作られた既存のCSS
taidan.css - 対談ページ用に作られた既存のCSS
common.css - 今回比較ページ用に新たに作られたCSS
header.css  - CSSの競合を解決するために、今回新たにindex.html, discussion/index.htmlのヘッダー用に作られたCSS

index.html - style.css, header.css
discussion/index.html - taidan.css, header.css
comparison/index.html - common.css*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  background-image: url(../img/backgroud-repeat.webp);
  background-size: 100% auto;
  background-repeat: repeat-y;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

.divImg {
  width: 100%;
}

.divImg img {
  width: 100%;
}

/* SP版-------------------------------------------- */

.pcShown {
  display: none;
}

.spShown {
  display: block;
}

/* ヘッダー ----------------------------------------*/
header {
  padding: 18px 20px;
  position: fixed;
  background-color: rgb(255, 255, 255, 0.5);
  width: 100%;
  z-index: 99;
}

/* ハンバーガーをクリックした時に、ヘッダー下にラインを追加 */
.headerIsOpen::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 2px;
  background: linear-gradient(to right, #28315f 0%, #2844da 25%, #883ea2 80%);
  top: 54px;
  margin: 0 -30px;
}

.headerContents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  gap: 1rem;
  position: relative;
  z-index: 999;
}

/* ロゴ */
.headerLogo {
  width: 160px;
}

/* ハンバーガーメニューとお問い合わせボタン */
.contactAndMenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.contactAndMenu a {
  text-decoration: none;
}

/* お問い合わせボタン */
.contactButton {
  display: flex;
  justify-content: space-between;
  width: 115px;
  background-color: #dc000b;
  padding: 11px 16px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contactButton:hover {
  background-color: #fb676f;
}

.contactButton .contactText {
  font-size: 1rem;
  color: white;
  font-weight: 600;
}

.contactButton img {
  width: 22%;
}

/* ハンバーガーメニュー */
/* メニューの線一括設定 */
.hamburgerButton span {
  display: block;
  width: 34px;
  height: 2px;
  background-color: #535353;
  transition: all 0.3s;
}

/* メニューの線の間の余白 */
.hamburgerButton span:nth-child(2),
.hamburgerButton span:nth-child(3) {
  margin-top: 10px;
}

/* ハンバーガーメニューをクリックしたときに、一番上の線が移動して×になる */
.buttonIsOpen span:first-child {
  transform: translateY(12px) rotate(45deg);
}

/* ×にしたときに真ん中の線が消える */
.hamburgerButton.buttonIsOpen span:nth-child(2) {
  opacity: 0;
}

/* ハンバーガーメニューをクリックしたときに、一番下の線が移動して×になる */
.buttonIsOpen span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

/* ハンバーガーメニューの設定 */
.overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transition: all 0.3s;
  background-color: white;
}

/* ハンバーガーメニューをクリックした時に見えるようになる */
.overlayIsOpen {
  visibility: visible;
  opacity: 1;
}

/* 各メニューの設定 */
.hamburgerMain {
  margin: 80px 20px 30px;
}

.hamburgerMain ul {
  padding-left: 0px;
}

.hamburgerMain li {
  list-style: none;
}

.hamburgerMain li a {
  color: #2e3176;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 20px 0 20px 20px;
  display: block;
  border-bottom: 1px solid #2e3176;
}

.hamburgerMain li a span {
  margin-left: 25px;
  font-size: 1.2rem;
}

.hamburgerList img {
  display: inline;
  padding: 0 6px 1px 3px;
}

/* 公式サイトへのボタン */
.eastButton {
  display: block;
  padding: 15px 20px;
  font-size: min(3.8vw, 18px);
  font-weight: 600;
  background-color: #2e3176;
  color: white;
  text-align: center;
  margin: 40vh 20px 0;
  text-decoration: none;
}

/* メインコンテンツ ------------------------------------------------------------ */
main {
  padding: 73px 20px 0;
}

/* 白枠内 -------------------------- */
#whiteBackground {
  background-color: white;
  padding: 20px 20px 35px;
  margin: 20px 0;
  border-radius: 12px;
}

/* 白枠内のフォント一括設定 */
#whiteBackground p {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  line-height: 2.2;
  font-weight: 500;
  color: #333333;
}

/* JS */
.kv {
  opacity: 0;
  transition: opacity 1s ease;
}

/* JS */
.kv.active {
  opacity: 1;
}

/* 大見出し */
h1 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #2e3176;
  padding-left: 4.4rem;
  margin-bottom: 0.5rem;
}

/* 大見出し 左についてる四角形の装飾 */
h1::before {
  content: "";
  position: absolute;
  background-image: url(/images/purple_shape.svg);
  background-size: contain;
  width: 3.7rem;
  height: 2.6rem;
  background-repeat: no-repeat;
  left: 0%;
  top: 3%;
  display: inline-block;
}

/* セクション1 PowerCMS Xの誕生 --------------------------*/
.sectionOne {
  margin-top: 3rem;
  /* JS */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* JS */
.sectionOne.active {
  opacity: 1;
  transform: translateY(0);
}

/* セクション2 3つの革新的な価値 --------------------------*/
.sectionTwo {
  margin-top: 6rem;
}

.sectionTwo .sectionTwoKv > .divImg {
  margin-top: 2rem;
}

/* JS */
.sectionTwoKv {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* JS */
.sectionTwoKv.active {
  opacity: 1;
  transform: translateY(0);
}

/* セクション2内 3つのコンテンツ 見出し --------------------------*/
.sectionTwo h2 {
  color: #2e3176;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: #dbdbdb 1px solid;
}

.sectionTwoOne {
  margin-top: 4rem;
  /* JS */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.sectionTwoTwo,
.sectionTwoThree {
  margin-top: 6rem;
  /* JS */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* JS */
.sectionTwoOne.active,
.sectionTwoTwo.active,
.sectionTwoThree.active {
  opacity: 1;
  transform: translateY(0);
}

/* セクション3 PowerCMSとPowerCMS Xの比較 --------------------------*/
.sectionThree {
  margin-top: 6rem;
}

.sectionThree h1 {
  margin-bottom: 2rem;
  opacity: 0;
  /* JS */
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* JS */
.sectionThree h1.active {
  opacity: 1;
  transform: translateY(0);
}

/* 比較表 --------------------*/
table {
  border-collapse: collapse;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 500;
  color: #333333;
  width: 100%;
  background-color: white;
  min-width: 730px;
}

/* 比較表のドロップシャドウ */
.js-scrollable {
  box-shadow: 2px 2px 30px rgb(0, 0, 0, 0.05);
  /* JS */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* JS */
.js-scrollable.active {
  opacity: 1;
  transform: translateY(0);
}

/* .js-scrollable のデフォルト設定をリセット*/
#whiteBackground .scroll-hint-shadow-wrap {
  position: static;
}

/* .js-scrollable のデフォルト設定をリセット*/
.scroll-hint-shadow-wrap::before,
.scroll-hint-shadow-wrap::after {
  background: none !important;
}

/* 1段目 見出し部分 */
th {
  background-color: #1e2277;
  color: white;
  height: 45px;
}

/* 1列目 項目部分*/
td:nth-child(1) {
  background-color: #f3fbff;
  width: 20%;
  text-align: center;
  padding: 25px;
}

/* 2列目、3列目 */
td {
  width: 40%;
  padding: 25px 25px 25px 36px;
}

/* 2列目、3列目の間の線 */
td:nth-child(2) {
  border-right: solid #d7d7d7 0.5px;
}

/* 各列の下線 */
tr {
  border-bottom: solid #d7d7d7 0.5px;
}

/* 各列の下線 最後の行だけなし*/
tr:last-child {
  border-bottom: none;
}

/* 黄色の帯 */
.tableLightYellow {
  background-color: #ffffe9;
}

.tableYellow {
  background-color: #fff5bd;
}

/* ◯などの記号部分のインデント設定 */
.indent {
  display: block;
  text-indent: -1.5rem;
  padding-left: 2rem;
}

/* アイコン SP --------------------*/
.iconList {
  margin-top: 55px;
  /* JS */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* JS */
.iconList.active {
  opacity: 1;
  transform: translateY(0);
}

.iconList img {
  height: 50%;
  margin: 0 auto;
}

#whiteBackground .sectionThree .iconList div p {
  font-size: min(2.5vw, 12px);
  line-height: 1.4;
  text-align: center;
  margin-top: 1rem;
}

/* PHPの文章を垂直方向にセンタリング */
#whiteBackground
  .sectionThree
  .iconList
  .iconFirstRow
  .iconImgAndText:nth-child(2)
  p {
  margin-top: 2rem;
}

/* アイコン上の行 */
.iconFirstRow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2rem;
}

/* アイコン下の行 */
.iconSecondRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 27px 35px 0;
}

/* スピード比較表 --------------------*/
.speedDiagram {
  margin-top: 35px;
  padding: 15px 10px 7px;
  background-color: #f2faff;
  border: solid 0.7px #deedff;
  border-radius: 2px;
  /* JS */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* JS */
.speedDiagram.active {
  opacity: 1;
  transform: translateY(0);
}

.speedDiagramImg {
  width: 90%;
  margin: 0 auto;
}

.speedDiagramImg svg {
  width: 100%;
}

/* 脚注 */
.speedText {
  margin-top: 15px;
}

/* 脚注 文字一括設定*/
#whiteBackground .speedDiagram p {
  font-size: 1.5vw;
  line-height: 1.5;
  font-weight: 400;
  text-align: end;
  color: black;
}

#whiteBackground .speedDiagram p a {
  color: black;
}

/* 脚注 二行目のmargin-top*/
#whiteBackground .speedDiagram .speedText .arrowFlex p {
  margin-top: 2px;
}

/* テキストと外部リンクアイコン */
.arrowFlex {
  display: flex;
  gap: 0.4rem;
  justify-content: end;
  align-items: center;
}

/* 外部リンクアイコン */
.arrowFlex img {
  width: 2.6%;
}

/* セクション4 まとめ --------------------------*/
.sectionFour {
  margin-top: 6rem;
  /* JS */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.sectionFour.active {
  opacity: 1;
  transform: translateY(0);
}

/* 白枠外  -------------------------- */
/* 制作実績 */

#blueBackground {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#blueBackground.active {
  opacity: 1;
  transform: translateY(0);
}

.titleEnterprise {
  margin: 50px auto;
  max-width: 530px;
}

.titleWork {
  margin: 0 auto 40px;
  width: 90%;
  max-width: 430px;
}

.titleWork img {
  width: 100%;
}

.tokyoSK img,
.hasekoC img {
  margin: 0 auto;
  max-width: 500px;
}

.hasekoC {
  margin: 25px 0;
}

#blueBackground p {
  font-size: 1.4rem;
  line-height: 2.2;
  font-weight: 500;
  color: #333333;
}

/* PC版をメディアクエリに設定 */
@media screen and (min-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .pcShown {
    display: block;
  }

  .spShown {
    display: none;
  }

  /* ヘッダー */

  header {
    padding: 18px 30px;
  }

  .headerContents {
    max-width: 1100px;
  }

  .headerLogo {
    width: 198px;
  }

  .contactButton {
    width: 207px;
    padding: 15px 39px;
  }

  .contactButton .contactText {
    font-size: 1.6rem;
  }

  .contactButton img {
    width: 20%;
  }

  .headerIsOpen::after {
    display: none;
  }

  /* メインコンテンツ ------------------------------------------------------------ */
  main {
    padding: 77px 30px 0;
  }

  /* 白枠内 -------------------------- */
  #whiteBackground {
    padding: 70px 85px 105px;
    margin: 32px auto 0;
    max-width: 1100px;
  }

  /* 白枠内のフォント一括設定 */
  #whiteBackground p {
    font-size: 1.6rem;
    margin-top: 2.3rem;
  }

  /* 大見出し */
  h1 {
    font-size: 2.8rem;
    padding-left: 6.2rem;
    margin-bottom: 0;
  }

  /* 大見出し 左についてる四角形の装飾 */
  h1::before {
    width: 5.7rem;
    height: 4rem;
  }

  /* PCのみ リンクボタン */
  .linkButton {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 40px 0 60px;
    gap: 1rem;
    opacity: 0;
    transition: opacity 1s ease;
  }

  .linkButton.active {
    opacity: 1;
  }

  /* セクション2 3つの革新的な価値 --------------------------*/
  .sectionTwo {
    margin-top: 10rem;
  }

  .sectionTwo .sectionTwoKv > .divImg {
    margin-top: 3.6rem;
  }

  /* セクション2内 3つのコンテンツ 見出し */
  .sectionTwo h2 {
    font-size: 2.2rem;
  }

  .sectionTwoOne {
    margin-top: 6rem;
  }

  .sectionTwoTwo,
  .sectionTwoThree {
    margin-top: 7.4rem;
  }

  /* セクション3 PowerCMSとPowerCMS Xの比較 --------------------------*/
  .sectionThree {
    margin-top: 10rem;
  }

  .sectionThree h1 {
    margin-bottom: 3.6rem;
  }

  /* 比較表 --------------------*/
  table {
    min-width: unset;
    font-size: 1.4rem;
  }

  /* アイコン PC --------------------*/
  .iconList.spShown {
    display: none;
  }

  .iconList {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-left: 1px #e6e6e6 solid;
    border-right: 1px #e6e6e6 solid;
  }

  /* アイコンと文章ひとつずつの設定 */
  .iconImgAndText {
    border-right: #e6e6e6 solid 1px;
    padding: 0 20px;
  }

  /* 1番右の線は.iconListで設定してるため削除 */
  .iconImgAndText:last-child {
    border-right: none;
  }

  #whiteBackground .sectionThree .iconList div p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 1.7rem 0 0;
  }

  /* PHPの文章を垂直方向にセンタリング */
  #whiteBackground .sectionThree .iconList div:nth-of-type(2) p {
    margin-top: 2.5rem;
  }

  /* スピード比較表 --------------------*/
  .speedDiagram {
    margin-top: 54px;
  }

  #whiteBackground .speedDiagram p {
    font-size: min(0.8vw, 12px);
    margin: 0;
  }

  /* 脚注 */
  .speedText {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: end;
    font-size: min(0.8vw, 12px);
    margin-top: 25px;
  }

  /* FlexなのでSP版の二行目のmargin-top削除 */
  #whiteBackground .speedDiagram .speedText .arrowFlex p {
    margin-top: 0;
  }

  /* テキストと外部リンクアイコン */
  .arrowFlex {
    gap: 0.6rem;
  }

  /* 外部リンクアイコン */
  .arrowFlex img {
    width: 8%;
    margin-bottom: 4px;
  }

  /* セクション4 まとめ --------------------------*/
  .sectionFour {
    margin-top: 10rem;
  }

  /* 白枠外  -------------------------- */
  #blueBackground {
    margin: 0 90px;
  }

  /* 制作実績 */
  .titleEnterprise {
    margin: 60px auto;
    max-width: 924px;
  }

  .titleWork {
    margin: 0 auto 30px;
    max-width: 802px;
  }

  .workExample {
    display: flex;
    width: 84%;
    justify-content: space-around;
    gap: 60px;
    margin: 35px auto;
    max-width: 1000px;
  }

  #blueBackground .tokyoSK p,
  #blueBackground .hasekoC p {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Flexなのでmargin削除 */
  .hasekoC {
    margin: 0;
  }

  #blueBackground p {
    font-size: 1.6rem;
    line-height: 2.2;
    text-align: center;
  }

  /* 背景の青設定 */
  .backgroundBlue {
    background-color: #f2fbff;
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}

/* ここから流用（今ページに合うように全て調整済み）---------------------------------------------------------------- */

#common,
footer {
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  #common,
  footer {
    letter-spacing: 1px;
  }
}

/* takagi san interview section style */
.interview-section {
  width: 100%;
  margin: 5% auto 53px;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  gap: 34px;
  max-width: 1100px;
  /* opacity: 0; */
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.interview-section.active {
  opacity: 1;
  transform: translateY(0);
}

.interview-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: left;
  align-items: center;
  margin-top: 0px;
}

.interview-title {
  font-size: 22px;
  font-weight: 400;
  margin-right: auto;
}

.interview-para {
  line-height: 2.2;
  letter-spacing: 0.7px;
  font-size: 1.6rem;
}

.interview-para > span {
  font-size: 12px;
}

.interview-link {
  width: 322px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2769e9;
  color: white;
  border-radius: 3px;
  font-size: 1.4rem;
  margin: 8px 0 53px;
  transition: 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.interview-link:hover {
  background-color: #588ffa;
}

@media (min-width: 768px) {
  .interview-section {
    width: 74%;
    grid-template-columns: repeat(2, 1fr);
    gap: 67px;
  }

  .interview-content {
    align-items: flex-start;
    margin-top: 40px;
  }

  .interview-title {
    font-size: 2.4rem;
    margin-right: 0;
  }

  .interview-para {
    letter-spacing: normal;
  }

  .interview-link {
    width: 200px;
    height: 44px;
    margin-top: 1.5rem;
  }
}

/* form section style */
.inquiry-section {
  margin-top: 53px;
}

.inquiry-title-container {
  height: 180px;
  background-image: url(/images/blue_bg_sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: calc(100% + 40px);
  margin-left: -20px;
}

.inquiry-title {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
}

.inquiry-title-container > p {
  font-size: 15px;
  max-width: 50ch;
  line-height: 2.2;
  margin-bottom: 1rem;
}

.inquiry-title-container > p > br {
  display: block;
}

.inquiry-form {
  position: relative;
  z-index: 1;
  bottom: 25px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 37px 20px;
  border-radius: 1rem;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 7px 16px rgba(104, 140, 211, 0.15);
}

.phone-inquiry {
  border: 1px solid #cbc8c4;
  border-radius: 4px;
  padding: 21px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.phone-inquiry-text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.phone-inquiry-text > p:nth-child(2) {
  font-size: 14px;
  color: #656565;
}

.phone-inquiry-title {
  font-size: 22px;
  font-weight: 400;
  color: #000000;
}

.vertical-line {
  height: 1px;
  width: 40px;
  background-color: #cbc8c4;
}

.phone-num {
  display: flex;
  align-items: center;
  gap: 3px;
}

.phone-num > span > img {
  height: 25px;
  margin-top: 10px;
}

.phone-num > span > a {
  text-decoration: none;
  color: #2e3176;
  font-weight: 500;
  font-size: 30px;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#common .form h1 {
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  margin: 44px 0 20px 0;
  color: #000000;
  padding-left: 0;
}

#common .form h1:before {
  display: none;
}

.input {
  height: 52px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

input {
  width: 100%;
  padding: 16px;
  border: 0.5px solid #cccccc;
  margin-top: 0.5rem;
  font-size: 12px;
}

input:focus {
  outline: 0.7px solid #656565;
}

input::placeholder {
  font-size: 12px;
  font-weight: 300;
  color: #cccccc;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

label {
  font-size: 1.4rem;
  font-weight: 400;
  color: #000000;
  margin-top: 1rem;
}

.required-star {
  color: #dc000b;
}

.checkbox {
  text-align: center;
}

.container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #ffffff;
  border: 1px solid #cbc8c4;
}

/* On mouse-over */
.container:hover input ~ .checkmark {
  border: 1px solid #cbc8c4;
  background-color: #ffffff;
}

/* When checked */
.container input:checked ~ .checkmark {
  border: 1px solid #333333;
  background-color: #333333;
}

/* Checkmark indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark */
.container .checkmark:after {
  left: 7.5px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

#error-msg {
  display: none;
  font-size: 12px;
  color: #dc000b;
}

.privacy-text {
  color: #656565;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 300;
}

.privacy-link {
  color: #1535a8;
  text-decoration: underline;
}

.form-btn {
  width: 100%;
  height: 62px;
  margin: 20px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 1rem;
  background: linear-gradient(to bottom, #3051c7, #1411a8);
  color: white;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.22);
  transition: 0.3s ease;
  border: none;
}

.form-btn:hover {
  opacity: 0.8;
}

.form-btn > img {
  width: 20px;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 1280px;
  height: 330px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.popup-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.popup-text > img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.popup-text > p {
  font-size: 16px;
}

.popup-button {
  width: 100%;
  height: 62px;
  margin-top: 33px;
  padding: 10px 30px;
  background-color: #e7e7e7;
  color: #333333;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.popup-button:hover {
  background-color: #cecece;
}

@media (min-width: 768px) {
  .inquiry-section {
    margin-top: 100px;
  }

  .inquiry-title-container {
    height: 280px;png
    background-image: url(/images/inquiry_img.);
    width: 100%;
    margin-left: 0px;
  }

  .inquiry-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .inquiry-title-container > p {
    font-size: 1.6rem;
  }

  .inquiry-title-container > p > br {
    display: none;
  }

  .inquiry-form {
    width: 80%;
    max-width: 1280px;
    bottom: 50px;
    padding: 6% 5%;
    gap: 1rem;
  }

  .phone-inquiry {
    flex-direction: row;
    padding: 22px 0;
    gap: 1rem;
    justify-content: space-evenly;
  }

  .vertical-line {
    display: block;
    width: 1px;
    height: 60px;
  }

  .phone-inquiry-title {
    font-size: 2.2rem;
    font-weight: 500;
  }

  .phone-num > span > img {
    height: 34px;
  }

  .phone-num > span > a {
    font-size: 3.6rem;
    font-weight: 400;
  }

  .phone-num {
    gap: 0.5rem;
  }

  #common .form h1 {
    font-size: 2.5rem;
    margin: 55px 0 27px;
    font-weight: 500;
  }

  label {
    font-weight: 500;
  }

  input {
    padding: 20px 18px 18px;
    font-size: 16px;
  }

  input::placeholder {
    font-size: 16px;
  }

  .form-btn {
    width: clamp(200px, 38%, 354px);
    height: 66px;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: normal;
    margin-top: 30px;
    gap: 1.6rem;
  }

  .popup-content {
    padding: 5rem;
    height: 500px;
  }

  .popup-text > img {
    width: 85px;
    height: 85px;
  }

  .popup-text > p {
    font-size: 22px;
  }

  .popup-button {
    margin-top: 80px;
  }
}

/* footer style */
footer {
  width: 100%;
  background-color: #05082f;
}

.footer-content {
  width: 85%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.footer-logo {
  width: 33px;
  height: 37px;
}

.footer-content > p {
  font-size: 12px;
  font-weight: 300;
  color: #cacaca;
}

@media (min-width: 768px) {
  .footer-content {
    padding: 32px 0;
  }
}
