@charset "UTF-8";
.c-header {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  background-color: #fff;
  padding-block: 2.5rem;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 1000px) {
  .c-header {
    padding-block: 2rem;
  }
}
.c-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 3.2rem;
}
@media (max-width: 1000px) {
  .c-header__inner {
    padding-inline: 1.5rem;
  }
}
.c-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.c-header__logo {
  max-width: clamp(9.6rem, 8.33vw, 12rem);
}
.c-header__logo-line {
  width: 1px;
  height: 13.925px;
  background: #ABABAB;
}
@media (max-width: 768px) {
  .c-header__logo-line {
    display: none;
  }
}
.c-header__logo-text {
  font-size: clamp(1.2rem, 1.1vw, 1.6rem);
  line-height: 1;
}
@media (max-width: 768px) {
  .c-header__logo-text {
    display: none;
  }
}
.c-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1000px) {
  .c-header__right {
    display: none;
  }
}
.c-header__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(1rem, 2.7vw, 4rem);
     -moz-column-gap: clamp(1rem, 2.7vw, 4rem);
          column-gap: clamp(1rem, 2.7vw, 4rem);
}
.c-header__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.85rem;
     -moz-column-gap: 0.85rem;
          column-gap: 0.85rem;
  margin-left: 4rem;
  border-bottom: 2px solid #333;
}
.c-header__search-icon {
  width: 27.529px;
  height: 27.529px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
}

.c-hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .c-hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-hamburger__line {
  width: 100%;
  height: 0.1rem;
  background-color: #1A73E8;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 2px;
}

.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(9px);
          transform: rotate(45deg) translateY(9px);
}

.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
  opacity: 0;
}

.c-hamburger.is-active .c-hamburger__line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(-10px);
          transform: rotate(-45deg) translateY(-10px);
}

.c-sp-header-content {
  position: fixed;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: 998;
  width: 100vw;
  height: 45svh;
  padding-top: 8rem;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-top: 11.6rem;
}
.c-sp-header-content.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-sp-header-content__inner {
  padding-inline: 1.5rem;
}
.c-sp-header-content__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.4rem;
  margin-top: 2.5rem;
}
.c-sp-header-content__top {
  display: block;
  text-align: center;
  margin-top: 3.2rem;
  color: #1A73E8;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.8px;
}
.c-sp-header-content .c-header__search {
  max-width: 23.2rem;
  margin-left: 0;
}

.c-column__item-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1000px) {
  .c-column__item-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .c-column__item-list {
    grid-template-columns: 1fr;
  }
}
.c-column__item {
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.c-column__item-heading {
  aspect-ratio: 280/140;
}
@media (max-width: 1000px) {
  .c-column__item-heading {
    max-width: 100%;
  }
}
.c-column__item-heading img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.c-column__item-body {
  padding: 1.2rem 1.5rem;
}
.c-column__title {
  font-size: 1.6rem;
  line-height: 1.5;
}
.c-column__category-wrapper {
  margin-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
  row-gap: 0.5rem;
}
.c-column .e-article__date {
  margin-top: 1.2rem;
  color: #ABABAB;
  font-size: 1.2rem;
}

.c-cta {
  margin-top: 11rem;
}
.c-cta__upper-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4.5rem;
     -moz-column-gap: 4.5rem;
          column-gap: 4.5rem;
}
@media (max-width: 768px) {
  .c-cta__upper-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 3.2rem;
  }
}
.c-cta__card {
  position: relative;
  max-width: 58rem;
  aspect-ratio: 580/560;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30.42%, rgba(153, 153, 153, 0)), color-stop(64.05%, rgba(26, 115, 232, 0.9)));
  background: linear-gradient(180deg, rgba(153, 153, 153, 0) 30.42%, rgba(26, 115, 232, 0.9) 64.05%);
}
@media (max-width: 768px) {
  .c-cta__card {
    padding: 3rem 2rem;
  }
}
@media (max-width: 450px) {
  .c-cta__card {
    aspect-ratio: 343/382;
  }
}
.c-cta__card-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-cta__card-title {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: clamp(2.2rem, 2.22vw, 2.8rem);
  line-height: 1.25;
  color: #fff;
}
@media (max-width: 768px) {
  .c-cta__card-title {
    line-height: 1.45;
  }
}
.c-cta__card-text {
  position: relative;
  z-index: 1;
  margin-top: 2.4rem;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
}
@media (max-width: 600px) {
  .c-cta__card-text {
    margin-top: 1.63em;
    text-align: left;
  }
}
@media (max-width: 600px) {
  .c-cta__card-text--contact {
    margin-bottom: 2rem;
    text-align: center;
  }
}
.c-cta .e-btn {
  position: relative;
  z-index: 1;
  margin-top: 3.2rem;
  margin-inline: auto;
  width: clamp(20.8rem, 19.4vw, 28rem);
}
@media (max-width: 600px) {
  .c-cta .e-btn {
    margin-top: 1rem;
  }
}
.c-cta .e-btn__text {
  font-size: clamp(1.8rem, 1.38vw, 2rem);
  line-height: 1.3;
  letter-spacing: 1px;
}
.c-cta__contact-block {
  position: relative;
  margin-top: 10rem;
  padding-block: 3.2rem;
}
.c-cta .cta-contact__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  border-radius: 1rem;
}

.c-page-heading {
  position: relative;
  height: 37.5rem;
}
.c-page-heading__inner {
  padding-inline: 3.2rem;
}
@media (max-width: 1000px) {
  .c-page-heading__inner {
    padding-inline: 1.6rem;
  }
}
.c-page-heading__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.c-page-heading__text-wrapper {
  position: absolute;
  bottom: 2.4rem;
}
.c-page-heading__title {
  color: #fff;
  font-size: clamp(3.2rem, 4.4vw, 6.4rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 3.2px;
}
.c-page-heading__breadcrumb {
  margin-top: 3.2rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-top: 4rem;
}
.c-pagination__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  border: 1px solid #007aff;
  border-radius: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  color: #007aff;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.c-pagination__arrow:hover {
  background-color: rgba(0, 122, 255, 0.1);
}
.c-pagination__arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.c-pagination__count {
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.c-footer {
  padding-top: 14rem;
  padding-bottom: 1.5rem;
  background: #EFEFF0;
}
@media (max-width: 500px) {
  .c-footer {
    padding-top: 7.3rem;
  }
}
.c-footer__upper-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 500px) {
  .c-footer__upper-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 2.4rem;
  }
}
.c-footer__logo-wrapper {
  width: 18rem;
}
.c-footer__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
}
.c-footer__bottom-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .c-footer__bottom-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 3rem;
  }
}
.c-footer__sns-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6.3rem;
     -moz-column-gap: 6.3rem;
          column-gap: 6.3rem;
}
@media (max-width: 500px) {
  .c-footer__sns-wrapper {
    margin-inline: auto;
  }
}
.c-footer__copyright {
  color: #737373;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
.c-footer__sns-icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}

.e-section-title {
  position: relative;
  font-size: clamp(2rem, 2.08vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.5px;
  padding-left: 1.2rem;
}

.e-section-title::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  content: "";
  width: 0.3rem;
  height: 80%;
  background-color: #1A73E8;
}

.e-section-entitle {
  position: absolute;
  z-index: -1;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #EFEFF0;
  font-family: "Playfair Display";
  font-size: 10rem;
  line-height: 1;
}
@media (max-width: 1000px) {
  .e-section-entitle {
    display: none;
  }
}

.e-article__date {
  line-height: 1.3;
  letter-spacing: 0.8px;
}

.e-article__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.4rem;
  padding-left: 2rem;
  padding-right: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.3;
  border-radius: 5rem;
  border: 1px solid #ABABAB;
}
.e-article__category::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0.8rem;
  content: "";
  width: 0.8rem;
  aspect-ratio: 1/1;
  background-color: var(--dot-color, #FAB906);
  border-radius: 50%;
}

.e-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  border-radius: 10px;
  width: 20rem;
  max-width: 100%;
  padding-block: 1.5rem;
  background: #E1F5FE;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.e-btn__icon {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
}
.e-btn__text {
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: 0.7px;
  color: #044396;
}
.e-btn--blue {
  background: #044396;
}
.e-btn--blue .e-btn__text {
  color: #fff;
}

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

body {
  color: #333;
  background-color: #fff;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;
}
body.is-fixed {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

a:hover {
  cursor: pointer;
  opacity: 0.5;
}

.p-apart .c-cta-contact,
.p-tenants .c-cta-contact,
.p-others .c-cta-contact {
  background: none;
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.main {
  margin-top: 10.4rem;
  margin-bottom: -5rem;
}
@media (max-width: 1000px) {
  .main {
    margin-top: 8rem;
  }
}

.home-fv {
  margin-bottom: 7.2rem;
  padding-block: 2.5rem;
  background: -webkit-gradient(linear, right top, left top, from(#FFF), color-stop(6.25%, #E1F5FE), color-stop(50%, #1A73E8), color-stop(94%, #E1F5FE), to(#FFF));
  background: linear-gradient(270deg, #FFF 0%, #E1F5FE 6.25%, #1A73E8 50%, #E1F5FE 94%, #FFF 100%);
}
.home-fv__inner {
  padding-inline: 1.5rem;
}
.home-fv__slider-item {
  max-width: 51.5rem;
  aspect-ratio: 515/270;
}
.home-fv__slider-item img {
  border-radius: 10px 10px 0 0;
}
.home-fv__slider-title {
  padding: 1.8rem 1.2rem;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  line-height: 1.33;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
.home-fv__slider-title a {
  display: block;
  min-height: 5rem;
}

.home-fv-slider__controls {
  position: absolute;
  right: 0;
  bottom: -10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
.home-fv-slider__progress {
  width: clamp(12rem, 13.8vw, 20rem);
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  overflow: hidden;
}
.home-fv-slider__progress-bar {
  height: 100%;
  width: 0%;
  background: #007bff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.home-fv-slider__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.home-fv-slider__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(4rem, 3.3vw, 4.8rem);
  height: 4.8rem;
  border-radius: 1rem;
  border: 1px solid #1A73E8;
}

.home-topics {
  position: relative;
  padding-top: 8rem;
}
.home-topics__inner {
  position: relative;
}
.home-topics .e-section-entitle {
  top: 12rem;
  left: -12rem;
}
.home-topics__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(1rem, 2.7vw, 4rem);
     -moz-column-gap: clamp(1rem, 2.7vw, 4rem);
          column-gap: clamp(1rem, 2.7vw, 4rem);
  margin-top: 7.5rem;
}
@media (max-width: 768px) {
  .home-topics__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 3rem;
  }
}
.home-topics__img-wrapper {
  position: relative;
  width: 50%;
}
@media (max-width: 768px) {
  .home-topics__img-wrapper {
    width: 100%;
  }
}
.home-topics__img-wrapper::before {
  position: absolute;
  top: 0;
  z-index: -1;
  content: "";
  width: 569.362px;
  max-width: 100%;
  aspect-ratio: 340/190.44;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  border-radius: 10px;
  background: var(--blue, linear-gradient(99deg, #1A73E8 2.6%, #6CA0FF 101.85%));
}
.home-topics__img {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 569.362/318.91;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  border-radius: 1rem;
}
.home-topics__text-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .home-topics__text-wrapper {
    width: 100%;
    margin-top: 6.5rem;
  }
}
.home-topics__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
}
.home-topics__article-title {
  position: relative;
  margin-top: 1.2rem;
  padding-block: 1.6rem;
  padding-left: 1rem;
  color: #1A73E8;
  font-size: clamp(2.4rem, 2vw, 3rem);
  line-height: 1.26;
  letter-spacing: 0.15rem;
  border-top: 1px solid #1A73E8;
  border-bottom: 1px solid #1A73E8;
}
@media (max-width: 768px) {
  .home-topics__article-title {
    letter-spacing: 0.12rem;
  }
}
.home-topics__article-title::before, .home-topics__article-title::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  aspect-ratio: 1/1;
  background-color: #1A73E8;
  border-radius: 50%;
}
.home-topics__article-title::before {
  top: -3px;
  left: 0;
}
.home-topics__article-title::after {
  bottom: -3px;
  right: 0;
}
.home-topics__article-excerpt {
  margin-top: 2rem;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  line-height: 1.66;
  letter-spacing: 0.09rem;
}
@media (max-width: 768px) {
  .home-topics__article-excerpt {
    letter-spacing: 1.25;
    letter-spacing: 0.08rem;
  }
}

.home-category {
  margin-top: 10rem;
}
.home-category__inner {
  position: relative;
}
.home-category .e-section-entitle {
  top: 15rem;
  left: -17rem;
}
.home-category__tab-list {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1000px) {
  .home-category__tab-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.home-category__tab-item:nth-of-type(n + 2) {
  border-left: 1px solid #ABABAB;
}
@media (max-width: 1000px) {
  .home-category__tab-item:nth-of-type(n + 2):nth-of-type(3n + 1) {
    border-left: none;
  }
}
.home-category__tab-item:first-child .home-category__tab-btn {
  border-radius: 5px 0 0 5px;
}
@media (max-width: 1000px) {
  .home-category__tab-item:first-child .home-category__tab-btn {
    border-radius: 5px 0 0 5px;
  }
}
.home-category__tab-item:last-child .home-category__tab-btn {
  border-radius: 0 5px 5px 0px;
}
@media (max-width: 1000px) {
  .home-category__tab-item:last-child .home-category__tab-btn {
    border-radius: 0 5px 5px 0;
  }
}
@media (max-width: 1000px) {
  .home-category__tab-item:nth-child(3) .home-category__tab-btn {
    border-radius: 0 5px 5px 0;
  }
  .home-category__tab-item:nth-child(4) .home-category__tab-btn {
    border-radius: 5px 0 0 5px;
  }
  .home-category__tab-item:nth-child(-n+3) .home-category__tab-btn {
    border-bottom: 1px solid #ABABAB;
  }
}
.home-category__tab-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(0.6rem, 0.83vw, 1.2rem);
     -moz-column-gap: clamp(0.6rem, 0.83vw, 1.2rem);
          column-gap: clamp(0.6rem, 0.83vw, 1.2rem);
  width: 100%;
  padding-block: 1.7rem;
  background: #F4F4F4;
}
.home-category__tab-btn.is-active {
  background-color: #FAB906;
}
.home-category__tab-btn.is-active .home-category__tab-name {
  color: #fff;
}
.home-category__tab-btn.is-active .home-category__tab-circle {
  background-color: #fff;
}
.home-category__tab-name {
  display: block;
  font-size: clamp(1.2rem, 1.38vw, 2rem);
  line-height: 1.3;
  letter-spacing: 1px;
}
.home-category__tab-circle {
  display: block;
  width: clamp(1.2rem, 1.1vw, 1.6rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
}
.home-category__tab-circle--blue {
  background: #1A73E8;
}
.home-category__tab-circle--pink {
  background: #E92E53;
}
.home-category__tab-circle--purple {
  background: #A142F4;
}
.home-category__tab-circle--green {
  background: #34A853;
}
.home-category__tab-circle--aqua {
  background: #40E0D0;
}
.home-category .c-column {
  margin-top: 4.8rem;
}

.home-ranking {
  margin-top: 10rem;
}
.home-ranking__inner {
  position: relative;
}
.home-ranking .e-section-entitle {
  top: 15rem;
  left: -16rem;
}
.home-ranking__content {
  margin-top: 6rem;
}
@media (max-width: 1000px) {
  .home-ranking__content {
    margin-top: 4rem;
  }
}
.home-ranking__item {
  padding-block: 2.4rem;
  border-bottom: 1px solid #ABABAB;
}
.home-ranking__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.2rem;
     -moz-column-gap: 3.2rem;
          column-gap: 3.2rem;
  padding-inline: clamp(1.5rem, 7vw, 10rem);
}
@media (max-width: 768px) {
  .home-ranking__item-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-inline: 0;
    row-gap: 1rem;
  }
}
.home-ranking__item-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 24rem;
  aspect-ratio: 240/135;
}
@media (max-width: 768px) {
  .home-ranking__item-img-wrapper {
    max-width: 100%;
  }
}
.home-ranking__item-img-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-radius: 1rem;
}
.home-ranking__item-number {
  position: absolute;
  top: -1.3rem;
  left: -1.3rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3.7rem;
  height: 3.7rem;
  aspect-ratio: 1/1;
  padding: 0.6rem;
  color: #fff;
  background-color: #1A73E8;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  border-radius: 50%;
}
.home-ranking__item-text-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.home-ranking__text-wrapper-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  margin-top: 2.2rem;
}
@media (max-width: 768px) {
  .home-ranking__text-wrapper-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 1rem;
  }
}
.home-ranking__item-date {
  display: block;
  color: #1A73E8;
  font-size: 1.6rem;
  line-height: 1;
}
.home-ranking__item-title {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: -0.32px;
}

.home-latest {
  margin-top: 10rem;
}
.home-latest__inner {
  position: relative;
}
.home-latest .e-section-entitle {
  top: 23rem;
  left: -23rem;
}
.home-latest .c-column {
  margin-top: 6rem;
}
.home-latest .c-column__btn-wrapper {
  margin-top: 5rem;
}
.home-latest .c-column__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35rem;
  max-width: 100%;
  margin-inline: auto;
  padding-block: 1.5rem;
  color: #1A73E8;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.8px;
  border: 1px solid #1A73E8;
  border-radius: 1rem;
}

.s-column__thumb-wrapper img {
  border-radius: 1rem;
}
.s-column__container {
  position: relative;
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: 2.3fr 0.7fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media (max-width: 768px) {
  .s-column__container {
    grid-template-columns: 1fr;
    row-gap: 8rem;
  }
}
.s-column .e-section-entitle {
  top: 26rem;
  left: -27rem;
}
.s-column__title {
  margin-top: 1.6rem;
  font-size: clamp(2.4rem, 2.77vw, 4rem);
  font-weight: 700;
  line-height: 1;
}
.s-column__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.6rem;
}
.s-column__category-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.s-column__date {
  font-size: clamp(1.2rem, 1.11vw, 1.6rem);
  font-weight: 400;
  line-height: 1;
}
.s-column__lead-text {
  margin-top: 4.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.s-column__outline {
  margin-top: 3.5rem;
  padding-inline: 3.2rem;
  padding-top: 1.6rem;
  padding-bottom: 1.9rem;
  background-color: #E1F5FE;
  border-radius: 1rem;
}
.s-column__outline-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.9px;
}
.s-column__outline-list {
  margin-top: 2.5rem;
  list-style: decimal;
  list-style-position: inside;
}
.s-column__outline-item {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.8px;
}
.s-column__outline-item::marker {
  color: #1A73E8;
}
.s-column__outline-item:nth-of-type(n + 2) {
  margin-top: 1.8rem;
}
.s-column__text p {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.s-column__text h2 {
  position: relative;
  margin-top: 4rem;
  margin-bottom: 4.8rem;
  padding-block: 1.6rem;
  color: #1A73E8;
  font-size: clamp(2.4rem, 2.08vw, 3rem);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.5px;
  border-top: 1px solid #1A73E8;
  border-bottom: 1px solid #1A73E8;
}
.s-column__text h2::before,
.s-column__text h2::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  aspect-ratio: 1/1;
  background-color: #1A73E8;
  border-radius: 50%;
}
.s-column__text h2::before {
  top: -3px;
  left: 0;
}
.s-column__text h2::after {
  bottom: -3px;
  right: 0;
}
.s-column__btn {
  margin-top: 5rem;
  margin-inline: auto;
  background-color: #1A73E8;
}
.s-column__btn .e-btn__text {
  color: #fff;
}

.s-column-aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.6rem;
}

.s-document {
  margin-bottom: 0;
  padding-bottom: 5rem;
}
.s-document__breadcrumb {
  padding-top: 3rem;
  padding-left: 3.6rem;
}
.s-document__container {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .s-document__container {
    grid-template-columns: 1fr;
    row-gap: 8rem;
  }
}
.s-document .e-section-entitle {
  position: absolute;
  top: 34rem;
  left: -35rem;
}
.s-document__title {
  font-size: clamp(2.4rem, 2.77vw, 4rem);
  font-weight: 700;
  line-height: 1;
}
.s-document__thumb-wrapper {
  margin-top: 1.6rem;
}
.s-document__description {
  margin-top: 4rem;
  padding-block: 1.6rem;
  padding-inline: 3.2rem;
  background-color: #E1F5FE;
  border-radius: 1rem;
}
.s-document__description-title {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.9px;
}
.s-document__description-list {
  margin-top: 3.2rem;
}
.s-document__description-item {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.8px;
  padding-left: 2rem;
}
.s-document__description-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../../assets/imgs/common/icon/check-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.s-document__description-item:nth-of-type(n + 2) {
  margin-top: 1.6rem;
}
.s-document__outline {
  margin-top: 3.5rem;
  padding-bottom: 1.9rem;
  border-radius: 1rem;
}
.s-document__outline-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.9px;
}
.s-document__outline-list {
  margin-top: 2.5rem;
  list-style: decimal;
  list-style-position: inside;
}
.s-document__outline-item {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.8px;
}
.s-document__outline-item::marker {
  color: #1A73E8;
}
.s-document__outline-item:nth-of-type(n + 2) {
  margin-top: 1.8rem;
}
.s-document__heading-h4 {
  position: relative;
  margin-top: 4rem;
  padding-block: 1.6rem;
  color: #1A73E8;
  font-size: clamp(2.4rem, 2.08vw, 3rem);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.5px;
  border-top: 1px solid #1A73E8;
  border-bottom: 1px solid #1A73E8;
}
.s-document__heading-h4::before, .s-document__heading-h4::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  aspect-ratio: 1/1;
  background-color: #1A73E8;
  border-radius: 50%;
}
.s-document__heading-h4::before {
  top: -3px;
  left: 0;
}
.s-document__heading-h4::after {
  bottom: -3px;
  right: 0;
}
.s-document__text {
  margin-top: 4.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.s-document__btn {
  margin-top: 3rem;
  margin-inline: auto;
  background-color: #1A73E8;
}
.s-document__btn .e-btn__text {
  color: #fff;
}
.s-document__description-img-wrapper {
  margin-top: 4rem;
}

.s-document-aside .form {
  background-color: aqua;
}

.whitepaper-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  background: #EDEDEE;
  border-radius: 1rem;
}

.whitepaper-form-content {
  padding: 2.4rem 1rem;
  border-radius: 1rem;
  background-color: #fff;
}

.form-description {
  padding-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.8px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 1.4rem;
  color: #1A73E8;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.7px;
}

.form-row label.required::after {
  content: "*";
  color: #1A73E8;
  margin-left: 3px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: white;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #3498db;
  -webkit-box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
          box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.wpcf7-list-item-label {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.7px;
}

.checkbox-group {
  margin-bottom: 25px;
}

.checkbox-options {
  margin-top: 10px;
}

.checkbox-options label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  font-weight: normal;
  cursor: pointer;
}

.form-input::-webkit-input-placeholder {
  color: #ABABAB;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.7px;
}

.form-input::-moz-placeholder {
  color: #ABABAB;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.7px;
}

.form-input:-ms-input-placeholder {
  color: #ABABAB;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.7px;
}

.form-input::-ms-input-placeholder {
  color: #ABABAB;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.7px;
}

.form-input::placeholder {
  color: #ABABAB;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.7px;
}

.checkbox-options input[type=checkbox] {
  margin-right: 0.5rem;
  width: 1.2rem;
  height: 1.2em;
  -webkit-appearance: auto !important;
     -moz-appearance: auto !important;
          appearance: auto !important;
}

.privacy-row {
  text-align: center;
  margin-bottom: 1rem;
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.7px;
}

.privacy-link {
  color: #3498db;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

.form-submit {
  text-align: center;
}

.download-btn {
  background: #1e5aa8;
  color: white;
  padding: 1.5rem 4rem;
  border: none;
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  min-width: 25rem;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.download-btn:hover {
  background: #164a91;
}

/* Contact Form 7のデフォルトスタイル調整 */
.wpcf7-form p {
  margin: 0;
}

.wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
}

.wpcf7-validation-errors {
  background: #ffebee;
  border: 1px solid #e74c3c;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  color: #c62828;
}

.wpcf7-mail-sent-ok {
  background: #e8f5e8;
  border: 1px solid #4caf50;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  color: #2e7d32;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
  .whitepaper-form {
    padding: 20px 15px;
  }
  .download-btn {
    min-width: 200px;
    padding: 12px 30px;
  }
}
.p-contact {
  margin-bottom: 8rem;
}
.p-contact__page-heading-text {
  margin-top: 1rem;
  color: #fff;
  font-family: "Yu Gothic";
  font-size: clamp(1.4rem, 1.38vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
}
.p-contact__inner {
  position: relative;
}
.p-contact .e-section-entitle {
  position: absolute;
  top: 20rem;
  left: -14rem;
}

.p-contact-form {
  max-width: 97.5rem;
  margin-top: 6.4rem;
  margin-inline: auto;
  padding-block: 5.6rem;
  padding-inline: 13rem;
  background-color: #EDF2F8;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .p-contact-form {
    margin-top: 4rem;
    padding-inline: 1.6rem;
    padding-block: 4.8rem;
  }
}
.p-contact-form__row:nth-of-type(n + 2) {
  margin-top: 3.7rem;
}
@media (max-width: 768px) {
  .p-contact-form__row:nth-of-type(n + 2) {
    margin-top: 1.6rem;
  }
}
.p-contact-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  color: #1A73E8;
  font-family: "Noto Sans";
  font-size: clamp(1.8rem, 1.38vw, 2rem);
  font-weight: 700;
}
.p-contact-form .required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 5.32rem;
  padding-block: 0.2rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: #1A73E8;
  border-radius: 4px;
}
.p-contact-form__field {
  margin-top: 0.6rem;
}
.p-contact-form__field input, .p-contact-form__field textarea {
  background-color: #fff;
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
}
.p-contact-form__privacy {
  margin-top: 3.3rem;
  text-align: center;
  color: #060C2F;
  font-family: "Yu Gothic";
  font-size: 1.4rem;
  font-weight: 500;
}
.p-contact-form .p-contact-form__privacy input[type=checkbox] {
  background-color: red;
}
.p-contact-form .p-contact-form__privacy .form-privacy {
  background-color: red !important;
  border-radius: 50%;
}
.p-contact-form__submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 0.5rem;
}
.p-contact-form__submit input[type=submit] {
  display: block;
  max-width: 33.6rem;
  width: 100%;
  margin-inline: auto;
  padding-block: 1.35rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #044396;
  border-radius: 1rem;
}

.wpcf7-spinner {
  display: none;
}

/* =========================================
   CF7 チェックボックスの再表示（destyle.css対策）
   ========================================= */
input[type=checkbox],
input[type=radio] {
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
       appearance: auto !important;
  display: inline-block !important;
}

.u-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 8.3vw, 12rem);
}
@media (max-width: 1000px) {
  .u-inner {
    padding-inline: 1.5rem;
  }
}

.u-pc-only {
  display: block;
}
@media (max-width: 768px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}
@media (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
}

.u-sptb-only {
  display: none;
}
@media (max-width: 1000px) {
  .u-sptb-only {
    display: block;
  }
}