@charset "UTF-8";
/* ================================
リセットCSS
================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

a {
  display: inline-block;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  word-wrap: break-word;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-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;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

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

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

picture {
  display: inline-block;
}

img {
  max-width: 100%;
  object-fit: cover;
}

span {
  display: inline-block;
}

/* ================================
基本設定
================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}
@media screen and (max-width: 600px) {
  html {
    font-size: 14px;
    scroll-padding-top: 60px;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #194866;
}

a, button {
  transition: all 0.2s linear;
}
a:hover, button:hover {
  opacity: 0.7;
}

/* ================================
ボタン
================================ */
/*--- ボタンラッパー ---*/
.c-btn__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 0.625rem;
}

/*--- ボタン ---*/
.c-btn {
  display: inline-block;
  min-width: 160px;
  height: 48px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  background-color: #028551;
  border-radius: 9999px;
}
.c-btn > span {
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.625rem;
}
.c-btn--wh {
  color: #028551;
  background-color: #fff;
  border: 3px solid #028551;
}
.c-btn--trial {
  min-width: 10.1875rem;
}
.c-btn--trial > span::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  aspect-ratio: 1/1;
  background: url(../img/cmn/mail_ico.svg) no-repeat center center/contain;
}
.c-btn--sm {
  min-width: initial;
  height: 40px;
  font-size: 0.875rem;
  padding: 0 1em;
}

/* ================================
見出し
================================ */
.c-heading {
  color: #194866;
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
  }
}

/* ================================
テキスト装飾
================================ */
/*--- テキストリンク ---*/
.c-link-text {
  color: #028551;
  text-decoration: underline;
}

/* ================================
コンテナー・インナー
================================ */
/*--- 全体ラッパー ---*/
.l-wrapper {
  position: relative;
}

/*--- コンテンツラッパー ---*/
.l-content-wrapper {
  position: relative;
  width: calc(100% - 320px);
  overflow-x: hidden;
}
@media screen and (max-width: 1280px) {
  .l-content-wrapper {
    width: calc(100% - 245px);
  }
}
@media screen and (max-width: 1024px) {
  .l-content-wrapper {
    width: 100%;
  }
}

/*--- メインコンテナー ---*/
.l-content-container {
  margin-top: 70px;
}
@media screen and (max-width: 600px) {
  .l-content-container {
    margin-top: 60px;
  }
}

/*--- 下部固定エリア ---*/
.l-sticky-area {
  display: none;
}
.l-sticky-area__btn {
  min-width: 200px;
}
.l-sticky-area__btn span::before {
  content: none;
}
@media screen and (max-width: 1024px) {
  .l-sticky-area {
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
  }
}

@media screen and (max-width: 600px) {
  .l-sticky-area button, .l-sticky-area a {
    width: 48%;
    min-width: 0;
  }
}
/*--- インナー ---*/
.l-inner {
  max-width: 960px;
  width: calc(100% - 3rem);
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  margin: 0 auto;
}
.l-inner--lg {
  max-width: calc(100% - 3rem);
}
@media screen and (max-width: 600px) {
  .l-inner {
    width: calc(100% - 24px);
  }
  .l-inner--lg {
    max-width: calc(100% - 24px);
  }
}

/* ================================
グローバルナビ
================================ */
.l-global-nav {
  display: flex;
  align-items: center;
  gap: 2rem 2rem;
}
.l-global-nav__menu {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}
.l-global-nav__menu-item > a {
  display: block;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  .l-global-nav__btn-wrap {
    flex-wrap: nowrap;
    column-gap: 12px;
    column-gap: 0.8333333333vw;
  }
}
@media screen and (max-width: 1280px) {
  .l-global-nav {
    column-gap: 1rem;
  }
  .l-global-nav__menu {
    column-gap: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-global-nav {
    position: fixed;
    top: 70px;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    max-width: 375px;
    width: 100%;
    height: calc(100vh - 70px);
    padding: 2rem 1.5rem;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    background-color: #EFF8F6;
  }
  .l-global-nav__menu {
    flex-wrap: wrap;
  }
  .l-global-nav__menu-item {
    width: 100%;
    border-bottom: 1px solid #028551;
  }
  .l-global-nav__menu-item > a {
    padding: 1em 0;
  }
  .l-global-nav__btn {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .l-global-nav {
    top: 60px;
    height: calc(100vh - 60px);
  }
}

/* ================================
ヘッダー
================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: calc(100% - 320px);
  height: 70px;
  background-color: #fff;
}
.l-header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 32px;
  column-gap: 2.2222222222vw;
  padding-top: 0;
  padding-bottom: 0;
}
.l-header__logo {
  width: 21.25rem;
}
.l-header__toggle {
  display: none;
  position: relative;
  z-index: 1000;
  width: 40px;
  aspect-ratio: 1/1;
  cursor: pointer;
  background-color: #028551;
  border-radius: 50%;
}
.l-header__toggle > span {
  position: absolute;
  left: 10px;
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background-color: #fff;
  border-radius: 1.5px;
  transition: all 0.2s linear;
}
.l-header__toggle > span:nth-of-type(1) {
  top: 16px;
}
.l-header__toggle > span:nth-of-type(2) {
  bottom: 16px;
}
.l-header__toggle.is-active > span:nth-of-type(1) {
  transform: translateY(3px) rotate(45deg);
}
.l-header__toggle.is-active > span:nth-of-type(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}
@media screen and (max-width: 1280px) {
  .l-header {
    width: calc(100% - 245px);
  }
}
@media screen and (max-width: 1024px) {
  .l-header {
    width: 100%;
  }
  .l-header__toggle {
    display: block;
  }
  .l-header__nav {
    display: none;
  }
  .l-header__nav.is-active {
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .l-header {
    height: 60px;
  }
}

/* ================================
フッター
================================ */
.l-footer {
  text-align: center;
}
.l-footer__inner {
  padding-top: 0.8125rem;
  padding-bottom: 1.5rem;
}
.l-footer__copy {
  color: #000000;
  font-size: 0.75rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__inner {
    padding-bottom: 6.75rem;
  }
}

/* ================================
メインビジュアル
================================ */
.p-mv {
  width: 100%;
  background: url(../img/mv_bg2.png) no-repeat top right/cover;
  padding: 0.8rem 0 1.25rem;
}
.p-mv__flex {
  display: flex;
  align-items: center;
}
.p-mv__cnt {
  flex-shrink: 0;
  width: 61%;
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 4vw;
  white-space: nowrap;
}
.p-mv__catch {
  color: #111111;
  font-size: 3.25vw;
  text-align: left;
  transform: rotate(-8deg);
  padding-left: 5vw;
}
.p-mv__catch .marker-wh {
  position: relative;
  font-size: 5vw;
  font-weight: 900;
  line-height: 1.3;
  margin-right: -1.7vw;
  margin-bottom: 1.3vw;
  z-index: 2;
}
.p-mv__catch .marker-wh::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 4px);
  transform: translateX(-50%);
  width: 84%;
  height: 30%;
  background: #ffffff;
  z-index: -1;
}
.p-mv__catch .marker-y {
  font-size: 7vw;
  font-weight: 900;
  background: linear-gradient(transparent 70%, #f3ff34 70%);
  line-height: 1.3;
  padding-left: 1.5vw;
  margin-left: 1.5vw;
}
.p-mv__catch .marker-y .sm {
  font-size: 5vw;
}
.p-mv__seo--pc {
  width: 100%;
  margin-top: 6.3rem;
}
.p-mv__seo--pc .top-txt {
  position: relative;
  font-size: 1.5vw;
  font-weight: 600;
  padding-left: 2vw;
}
.p-mv__seo--pc .bottom-txt {
  font-size: 2.34vw;
  font-weight: 600;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 82%);
  margin-top: 1.7rem;
  padding: 1.32rem 0 1.44rem 2vw;
}
.p-mv__seo--sp {
  display: none;
}
.p-mv__img {
  height: 15.29vw;
  max-height: 210px;
  margin-left: -14.5vw;
  margin-right: -16.5vw;
  margin-bottom: -18rem;
  width: 46vw;
  max-width: 51.0625rem;
  position: relative;
}
.p-mv__img img {
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .p-mv {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .p-mv__img {
    margin-left: -24.5vw;
    margin-bottom: -13rem;
    width: 54vw;
  }
}
@media screen and (max-width: 980px) {
  .p-mv {
    height: auto;
    min-height: calc(100vh - 70px);
    padding: 2.5rem 0 5.5rem;
  }
  .p-mv__flex {
    flex-direction: column;
  }
  .p-mv__cnt {
    min-width: initial;
    height: auto;
    padding-top: 0;
  }
  .p-mv__cnt .marker-wh {
    font-size: 2.8rem;
  }
  .p-mv__cnt .marker-y {
    font-size: 5.2rem;
  }
  .p-mv__cnt .marker-y .sm {
    font-size: 2.8rem;
  }
  .p-mv__catch {
    font-size: 2rem;
    padding-left: 0;
  }
  .p-mv__img {
    flex-shrink: initial;
    height: auto;
    margin: 0;
    width: 134vw;
    max-width: 53.75rem;
  }
  .p-mv__img img {
    width: 135vw;
    max-width: 60rem;
    height: 77vw;
    max-height: 28rem;
    margin-left: -15vw;
  }
  .p-mv__seo--pc {
    display: none;
  }
  .p-mv__seo--sp {
    display: block;
    margin-top: 2rem;
    width: 100%;
  }
  .p-mv__seo--sp .top-txt {
    text-align: center;
    margin-top: 2rem;
  }
  .p-mv__seo--sp .bottom-txt {
    font-weight: 900;
    font-size: 1.8rem;
    background-color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .p-mv {
    min-height: calc(100vh - 60px);
    padding: 1.5rem 0 0;
  }
  .p-mv__catch {
    font-size: 28px;
    font-size: 7.4666666667vw;
  }
  .p-mv .marker-y {
    font-size: 3.6rem;
  }
  .p-mv__seo--sp .top-txt {
    margin-top: 0.5rem;
  }
  .p-mv .bottom-txt {
    font-size: 1.4rem;
  }
}

/* ================================
お申込みフォーム
================================ */
.p-app__inner {
  padding: 0.625rem 0.875rem 1.5rem;
}
.p-app__heading {
  color: #437F75;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0.3125rem;
}
.p-app__txt {
  color: #111111;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 1025px) {
  .p-app {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 60;
    width: 320px;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0px 4px rgba(0, 0, 0, 0.04);
  }
  .p-app__list {
    margin-bottom: 5px;
    margin-bottom: 0.5555555556vh;
  }
  .p-app__heading {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .p-app {
    width: 245px;
  }
}
@media screen and (max-width: 600px) {
  .p-app__inner {
    padding: 5rem 12px;
  }
  .p-app__heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .p-app__txt {
    margin-bottom: 1.5rem;
  }
}
.p-app-form label.error {
  color: #f03b13;
  font-size: 0.75rem;
}
.p-app-form__list {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 1.625rem auto;
}
.p-app-form__ttl {
  color: #111111;
  font-size: 0.875rem;
}
.p-app-form__ttl.is-required::after {
  content: "*";
  color: #f03b13;
  font-weight: 700;
  margin-left: 5px;
}
.p-app-form__ttl + .p-app-form__cnt {
  margin-top: 0.5rem;
}
.p-app-form__cnt + .p-app-form__ttl {
  margin-top: 1rem;
}
.p-app-form__textbox {
  color: #111111;
  width: 100%;
  height: 1.875rem;
  font-size: 0.875rem;
  border: 1px solid #ACABAF;
  border-radius: 4px;
  background-color: #fff;
  padding: 0 0.625rem;
}
.p-app-form__control {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}
.p-app-form__agree {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  font-size: 0.875rem;
}
.p-app-form__agree > input[type=checkbox] {
  border: 1px solid #ACABAF;
}
.p-app-form__agree + label.error {
  margin-top: -1.375rem;
}
.p-app-form textarea.p-app-form__textbox {
  height: 7.625rem;
}
.p-app-form__link {
  font-size: 0.875rem;
}
@media screen and (min-width: 1025px) {
  .p-app-form__list {
    margin-bottom: 5px;
    margin-bottom: 0.5555555556vh;
  }
  .p-app-form__ttl + .p-app-form__cnt {
    margin-top: 8px;
    margin-top: 0.8888888889vh;
  }
  .p-app-form__cnt + .p-app-form__ttl {
    margin-top: 16px;
    margin-top: 1.7777777778vh;
  }
  .p-app-form__control {
    row-gap: 32px;
    row-gap: 3.5555555556vh;
  }
}

/* ================================
SDGs
================================ */
.p-sdgs {
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}
.p-sdgs__head {
  display: flex;
  align-items: center;
  gap: 1rem 1rem;
  margin-bottom: 2.8125rem;
}
.p-sdgs__head-img {
  height: 4rem;
}
.p-sdgs__head-txt {
  color: #47464A;
  font-size: 0.75rem;
}
.p-sdgs__txt {
  font-size: 2.25rem;
  font-weight: 900;
  margin-left: 5.875rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1280px) {
  .p-sdgs__txt {
    margin-left: 7.7vw;
  }
}
.p-sdgs__slider {
  display: none;
  margin-right: -24px;
}
.p-sdgs__slider.slick-initialized {
  display: block;
}
.p-sdgs__logo {
  display: block;
  width: 8.75rem;
  aspect-ratio: 140/48;
  margin: 0 0.375rem;
}
.p-sdgs__logo > img {
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
  padding: 0.625rem;
}
@media screen and (min-width: 769px) {
  .p-sdgs {
    padding-top: 30px;
    padding-top: 3.3333333333vh;
    padding-bottom: 60px;
    padding-bottom: 6.6666666667vh;
  }
  .p-sdgs__head-text {
    font-size: 12px;
    font-size: 1.3333333333vh;
  }
}
@media screen and (max-width: 768px) {
  .p-sdgs__head {
    margin-bottom: 1.5625rem;
  }
  .p-sdgs__txt {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 600px) {
  .p-sdgs__head {
    flex-direction: column;
  }
  .p-sdgs__txt {
    margin-left: 0;
    font-size: 16px;
    font-weight: 700;
  }
}

/* ================================
サービス紹介動画
================================ */
.p-movie {
  padding-top: 1.875rem;
  padding-bottom: 0;
}
.p-movie__youtube {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 875px;
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 0 auto;
}
.p-movie__youtube > iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* ================================
こんなお悩みはありませんか？
================================ */
.p-problem {
  background: #FAFAFA;
}
.p-problem__inner {
  padding-top: 1.5625rem;
  padding-bottom: 0.9375rem;
}
.p-problem__head {
  text-align: center;
  margin-bottom: 2.8125rem;
}
.p-problem__head-txt {
  color: #028551;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.43;
}
.p-problem__head-ttl {
  display: inline-block;
  color: #028551;
  font-size: 3rem;
  line-height: 1.45;
  font-weight: 900;
  border-bottom: 3px solid #028551;
}
.p-problem__cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 1.5rem;
}
.p-problem__cnt::before {
  content: "";
  display: inline-block;
  width: 17.8125rem;
  aspect-ratio: 220/335;
  background: url(../img/problem_img.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .p-problem__head-txt {
    font-size: 1.25rem;
  }
  .p-problem__head-ttl {
    font-size: 2rem;
  }
  .p-problem__list-ttl {
    font-size: 1.125rem;
    line-height: 1.1;
    margin-bottom: 0.625rem;
  }
  .p-problem__list-txt {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 600px) {
  .p-problem__head-ttl {
    font-size: 24px;
    font-weight: 700;
  }
  .p-problem__cnt {
    flex-direction: column;
  }
  .p-problem__cnt::before {
    width: 150px;
  }
}
.p-problem__list {
  width: 97%;
  color: #111111;
}
.p-problem__list > li {
  padding-left: 1.75rem;
}
.p-problem__list > li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.p-problem__list-ttl {
  font-size: 1.125rem;
  text-indent: -1.75rem;
}
.p-problem__list-ttl::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  aspect-ratio: 1/1.3572;
  vertical-align: middle;
  background: url(../img/problem-list_ico.svg) no-repeat center center/contain;
}
.p-problem__list-txt li {
  list-style: disc;
  text-indent: -0.25rem;
  margin-left: 1.2rem;
}

/* ================================
そのお悩み、SEOanalycaが解決します！
================================ */
.p-sol__inner {
  padding-top: 0;
  padding-bottom: 3.125rem;
}
.p-sol__inner::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 58px 184px 0 184px;
  border-color: #FAFAFA transparent transparent transparent;
  margin: 0 auto 4.6875rem;
}
.p-sol__head-ttl {
  color: #028551;
  font-size: 3rem;
  line-height: 1.45;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-sol__head-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .p-sol__inner::before {
    border-width: 38px 122px 0 122px;
    margin-bottom: 6.25rem;
  }
  .p-sol__head-ttl {
    font-size: 24px;
    font-weight: 700;
  }
}
.p-sol-block {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 785px;
  background-color: #FFFFFF;
  border-radius: 0.625rem;
  padding: 1.25rem 0 1.5625rem 1.5625rem;
  margin: 0 auto 2.1875rem;
}
.p-sol-block__cnt {
  flex: 1;
}
.p-sol-block__cnt-img {
  margin-top: 1.25rem;
}
.p-sol-block__cnt-img img {
  width: 100%;
  height: 100%;
}
.p-sol-block__banner {
  position: relative;
  overflow: hidden;
}
.p-sol-block__banner::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 10%;
  height: 150%;
  background: #FFFFFF;
  transform: rotate(45deg);
  animation: sparkly 5s ease-in-out infinite;
}
.p-sol-block__ttl {
  position: relative;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.45;
  background: #028551;
  padding: 0.375rem 0.625rem;
  margin-bottom: 2.1875rem;
}
.p-sol-block__num {
  position: absolute;
  bottom: 0.375rem;
  right: 0.375rem;
  font-size: 5.625rem;
  font-weight: 400;
  line-height: 0;
}
.p-sol-block__txt {
  line-height: 1.42;
}
.p-sol-block:nth-of-type(even) {
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: 0.1875rem;
}
.p-sol-block:nth-of-type(even) .p-sol-block__txt {
  padding-left: 1.25rem;
}
.p-sol-block:nth-of-type(1) {
  padding-bottom: 0;
}
.p-sol-block:nth-of-type(1) .p-sol-block__img {
  width: 31.09%;
}
.p-sol-block:nth-of-type(2) .p-sol-block__img {
  width: 31.21%;
}
.p-sol-block:nth-of-type(3) .p-sol-block__img {
  width: 29%;
}
@media screen and (max-width: 1280px) {
  .p-sol-block {
    padding-left: 0;
  }
  .p-sol-block__txt {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 600px) {
  .p-sol-block {
    flex-direction: column;
    width: 90%;
  }
  .p-sol-block__num {
    font-size: 3.75rem;
  }
  .p-sol-block__ttl {
    font-weight: 700;
    margin-bottom: 1.25rem;
  }
  .p-sol-block__txt {
    padding: 0 0.625rem;
  }
  .p-sol-block:nth-of-type(even) {
    flex-direction: column;
    padding-left: 0;
  }
  .p-sol-block:nth-of-type(even) .p-sol-block__txt {
    padding-left: 0.625rem;
  }
  .p-sol-block:nth-of-type(1) .p-sol-block__img, .p-sol-block:nth-of-type(2) .p-sol-block__img, .p-sol-block:nth-of-type(3) .p-sol-block__img {
    width: 50%;
  }
}
.p-sol-service {
  margin-top: 2.5rem;
}
.p-sol-service__txt {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
}
.p-sol-service__txt span {
  color: #028551;
}
.p-sol-service__img {
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-sol-service__txt {
    font-size: 1.125rem;
  }
}
.p-sol__list {
  display: flex;
  justify-content: space-around;
  margin: 3.4375rem 0 3.4375rem;
}
.p-sol__item {
  width: 23.16%;
}
.p-sol-step {
  position: relative;
}
.p-sol-step:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: calc(-51px - 1.8vw);
  top: calc(50% + 15px);
  transform: translateY(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25.5px 0 25.5px 44px;
  border-color: transparent transparent transparent #028551;
}
.p-sol-step__num {
  color: #FFFFFF;
  position: relative;
  display: block;
  width: fit-content;
  font-size: 1.5rem;
  background: #028551;
  padding: 0 1.5rem 0.0625rem;
  margin: 0 auto -0.9375rem;
  z-index: 2;
}
.p-sol-step__cnt {
  height: 100%;
  background: #FFFFFF;
  padding: 3.125rem 0.75rem 0.375rem;
}
.p-sol-step__ttl {
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.9375rem;
}
.p-sol-step__txt li {
  list-style: disc;
  text-indent: -0.25rem;
  margin-left: 1.2rem;
}
.p-sol-step__foot {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .p-sol-step__txt {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-sol-step:not(:last-of-type)::after {
    right: calc(-24px - 3.4vw);
    border-width: 15.5px 0 15.5px 24px;
  }
}
@media screen and (max-width: 768px) {
  .p-sol-step__cnt {
    padding-top: 1.875rem;
  }
  .p-sol-step__num {
    font-size: 1.25rem;
  }
  .p-sol-step__ttl {
    font-size: 1.375rem;
  }
  .p-sol-step__foot {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 600px) {
  .p-sol__list {
    align-items: center;
    flex-direction: column;
    row-gap: 5rem;
  }
  .p-sol__item {
    width: 80%;
  }
  .p-sol-step__cnt {
    padding-bottom: 1.875rem;
  }
  .p-sol-step:not(:last-of-type)::after {
    top: auto;
    bottom: -52px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

@keyframes sparkly {
  0%, 60% {
    transform: rotate(45deg) scale(0);
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) scale(100);
    opacity: 0;
  }
}
/* ================================
SEOanalycaとは？
================================ */
.p-about__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 6rem 1.25rem;
  padding: 3.125rem 0 2.1875rem;
}
.p-about__item {
  width: 31.76%;
  display: flex;
  flex-direction: column;
  background: #EFF8F6;
  border-radius: 1.875rem;
  padding: 1.5625rem 0.3125rem 1.25rem;
}
.p-about__item:nth-of-type(1) {
  margin-top: 6.875rem;
}
.p-about__item:nth-of-type(2) {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 1280px) {
  .p-about__list {
    column-gap: 0.9375rem;
  }
  .p-about__item {
    width: calc(32% - 0.125rem);
  }
}
@media screen and (max-width: 768px) {
  .p-about__list {
    align-items: normal;
    flex-wrap: wrap;
    row-gap: 3.5rem;
  }
  .p-about__item {
    width: calc(50% - 0.625rem);
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .p-about__item:nth-of-type(1), .p-about__item:nth-of-type(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 600px) {
  .p-about__list {
    row-gap: 60px;
  }
  .p-about__item {
    width: 80%;
  }
}
.p-about-block {
  position: relative;
}
.p-about-block__num {
  color: #1C3556;
  position: absolute;
  top: -3.4375rem;
  left: -2.1875rem;
  font-size: 4.375rem;
}
.p-about-block__ttl {
  color: #028551;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1.5rem;
}
.p-about-block__txt {
  font-size: 0.875rem;
}
.p-about-block__txt ul li {
  list-style: disc;
  text-indent: -0.25rem;
  margin-left: 1.2rem;
}
.p-about-block__txt ul li span {
  display: inline;
}
.p-about-block__txt ul li span.p-about-block__txt-center {
  display: block;
  text-align: center;
}
.p-about-block:nth-of-type(1) li:not(:last-of-type) {
  margin-bottom: 2.1875rem;
}
.p-about-block:nth-of-type(2) .p-about-block__txt > p:not(:last-of-type) {
  margin-bottom: 1rem;
}
.p-about-block:nth-of-type(2) .p-about-block__txt ul {
  margin-bottom: 1.25rem;
}
.p-about-block:nth-of-type(3) .u-clr--grn {
  font-size: 2rem;
}
@media screen and (max-width: 1280px) {
  .p-about-block:nth-of-type(3) .u-clr--grn {
    font-size: 1.75rem;
  }
  .p-about-block:nth-of-type(3) li:not(:last-of-type) {
    margin-bottom: 0.625rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-about-block__ttl {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 768px) {
  .p-about-block__num {
    top: -2.1875rem;
    left: -0.9375rem;
    font-size: 3.125rem;
  }
  .p-about-block:nth-of-type(1) li:not(:last-of-type) {
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .p-about-block__ttl {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.9375rem;
  }
}
.p-about__txt {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-about__txt {
    font-size: 1.125rem;
  }
}

/* ================================
そのお悩み、SEOanalycaが解決します！
================================ */
.p-seo__heading {
  margin-bottom: 9.6875rem;
}
.p-seo__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7.8125rem 1.25rem;
  margin-bottom: 3.75rem;
}
.p-seo__item {
  width: calc(32% - 0.3125rem);
  aspect-ratio: 1/1;
}
.p-seo__item:nth-of-type(1)::before {
  top: -5.625rem;
  width: 61.38%;
  aspect-ratio: 172/135;
  background: url(../img/result_img01.png) no-repeat center center/contain;
}
.p-seo__item:nth-of-type(2)::before {
  top: -5.4375rem;
  width: 62.45%;
  aspect-ratio: 175/128;
  background: url(../img/result_img02.png) no-repeat center center/contain;
}
.p-seo__item:nth-of-type(3)::before {
  top: -3.3125rem;
  width: 96.35%;
  aspect-ratio: 270/106;
  background: url(../img/result_img03.png) no-repeat center center/contain;
}
.p-seo__item:nth-of-type(4)::before {
  top: -5.4375rem;
  width: 88.5%;
  aspect-ratio: 248/143;
  background: url(../img/result_img04.png) no-repeat center center/contain;
}
.p-seo__item:nth-of-type(5)::before {
  top: -5.4375rem;
  width: 57.1%;
  aspect-ratio: 160/140;
  background: url(../img/result_img05.png) no-repeat center center/contain;
}
.p-seo__item:nth-of-type(6)::before {
  top: -4.5625rem;
  width: 75.3%;
  aspect-ratio: 211/129;
  background: url(../img/result_img06.png) no-repeat center center/contain;
}
@media screen and (max-width: 1280px) {
  .p-seo__list {
    column-gap: 1.25rem;
  }
  .p-seo__item {
    width: calc(32% - 0.1875rem);
    min-width: 16.875rem;
  }
}
@media screen and (max-width: 768px) {
  .p-seo__list {
    flex-wrap: wrap;
  }
  .p-seo__item {
    width: calc(50% - 0.625rem);
    min-width: auto;
  }
}
@media screen and (max-width: 600px) {
  .p-seo__heading {
    font-size: 24px;
  }
  .p-seo__list {
    row-gap: 120px;
    margin-bottom: 40px;
  }
  .p-seo__item {
    width: 75%;
  }
}
.p-seo-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.75rem;
  background-color: #EFF8F6;
  border-radius: 50%;
  padding: 4.0625rem 1.25rem 1.875rem;
}
.p-seo-block::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}
.p-seo-block__ttl {
  color: #028551;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}
.p-seo-block__txt {
  font-size: 0.875rem;
  line-height: 1.42;
}
.p-seo-block__txt ul li {
  list-style: disc;
  text-indent: -0.25rem;
  margin-left: 1.2rem;
}
.p-seo__foot {
  color: #028551;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-seo-block {
    justify-content: center;
    padding-top: 1.875rem;
  }
  .p-seo__foot {
    font-size: 1.125rem;
  }
}

/* ================================
まずは圧倒的な成果をご覧ください
================================ */
.p-result__inner {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
.p-result__heading {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 600px) {
  .p-result__inner {
    padding-bottom: 5rem;
  }
  .p-result__heading {
    font-size: 24px;
  }
}
.p-result__ttl {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}
.p-result__cnt {
  margin-top: 2.5rem;
}
.p-result__txt {
  font-size: 1.25rem;
  font-weight: 700;
}
.p-result__txt span {
  font-size: 2.5rem;
  padding: 0 4px;
}
.p-result__foot {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.33;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-result__ttl {
    margin-bottom: 1.25rem;
  }
  .p-result__cnt {
    margin-top: 0.9375rem;
  }
  .p-result__txt {
    font-size: 1.125rem;
  }
  .p-result__txt span {
    font-size: 2.1875rem;
  }
  .p-result__foot {
    font-size: 1.125rem;
  }
}

/* ================================
コンテライズが選ばれる5つの理由
================================ */
.p-point {
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 600px) {
  .p-point__inner {
    padding-bottom: 5rem;
  }
}
.p-point__txt {
  font-size: 1.5rem;
  font-weight: 700;
}
.p-point__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6rem 1.4375rem;
  padding: 6rem 0 3.75rem;
}
.p-point__item {
  width: 29.77%;
}
.p-point__item:nth-of-type(1), .p-point__item:nth-of-type(2) {
  margin: 0 1.375rem;
}
@media screen and (max-width: 1280px) {
  .p-point__list {
    column-gap: 1.4375rem;
  }
  .p-point__item {
    width: calc(32% - 0.625rem);
  }
}
@media screen and (max-width: 768px) {
  .p-point__list {
    padding-top: 3.5rem;
    row-gap: 3.5rem;
  }
  .p-point__txt {
    font-size: 1.125rem;
  }
  .p-point__item {
    width: calc(50% - 1.25rem);
  }
  .p-point__item:nth-of-type(1), .p-point__item:nth-of-type(2) {
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  .p-point__heading {
    font-size: 24px;
  }
  .p-point__list {
    row-gap: 60px;
  }
  .p-point__item {
    width: 80%;
  }
}
.p-point-block {
  position: relative;
  background: #EFF8F6;
  padding: 3.125rem 5px 3.4375rem;
}
.p-point-block__num {
  color: #1C3556;
  position: absolute;
  top: -4.6875rem;
  left: -1.25rem;
  font-size: 8rem;
}
.p-point-block__ttl {
  color: #028551;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1.5rem;
}
.p-point-block__txt {
  font-size: 0.875rem;
}
.p-point-case {
  padding-top: 2.5rem;
  font-size: 1.25rem;
}
.p-point-case__ttl {
  color: #028551;
  margin-bottom: 1.25rem;
}
.p-point-case__txt {
  font-weight: 700;
  margin-top: 3.375rem;
}
@media screen and (max-width: 1024px) {
  .p-point-block__ttl {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 768px) {
  .p-point-block {
    padding: 1.5625rem 0.625rem 1.875rem;
  }
  .p-point-block__num {
    top: -3.4375rem;
    left: -0.9375rem;
    font-size: 6.75rem;
  }
  .p-point-case__ttl {
    margin-bottom: 1.25rem;
  }
  .p-point-case__txt {
    font-size: 1.125rem;
    margin-top: 0.9375rem;
  }
}
@media screen and (max-width: 600px) {
  .p-point-block__ttl {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.9375rem;
  }
}

/* ================================
他社サービスとの違い
================================ */
.p-comparison__inner {
  padding-top: 2.5rem;
  padding-bottom: 3.125rem;
}
.p-comparison__ttl {
  margin-bottom: 3.125rem;
}
.p-comparison__table {
  width: fit-content;
  margin: 0 auto;
}
.p-comparison__note {
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-comparison__table {
    width: auto;
    overflow-x: scroll;
  }
  .p-comparison__table > img {
    max-width: initial;
    width: 560px;
  }
}

/* ================================
お客様の声
================================ */
.p-review__ttl {
  margin-bottom: 5rem;
}
.p-review__list {
  display: flex;
  justify-content: center;
  gap: 1.25rem 3.125rem;
}
.p-review__item {
  width: calc(50% - 5.8125rem);
}
@media screen and (max-width: 1280px) {
  .p-review__ttl {
    margin-bottom: 2.5rem;
  }
  .p-review__list {
    column-gap: 1.25rem;
  }
  .p-review__item {
    width: calc(50% - 5.1875rem);
  }
}
@media screen and (max-width: 768px) {
  .p-review__list {
    column-gap: 1.25rem;
  }
  .p-review__item {
    width: calc(50% - 0.625rem);
  }
}
@media screen and (max-width: 600px) {
  .p-review__list {
    flex-direction: column;
    row-gap: 60px;
  }
  .p-review__item {
    width: 100%;
  }
}
.p-review-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 4.0625rem;
}
.p-review-block__cnt {
  position: relative;
  background: #EFF8F6;
  border-radius: 3.25rem;
  padding: 3.125rem 1rem 1.875rem;
}
.p-review-block__cnt::after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 21px 41px 0 41px;
  border-color: #EFF8F6 transparent transparent transparent;
}
.p-review-block__ttl {
  margin-bottom: 3.125rem;
  color: #028551;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.p-review-block__txt {
  margin-bottom: 3.4375rem;
}
.p-review-block__info {
  text-align: center;
}
.p-review-block__img {
  width: 43.46%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.p-review-block__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-review-block__ttl {
    font-size: 1.25rem;
    margin-bottom: 1.875rem;
  }
  .p-review-block__txt {
    margin-bottom: 2.1875rem;
  }
  .p-review-block__info {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .p-review-block {
    row-gap: 45px;
  }
  .p-review-block__ttl {
    margin-bottom: 1.25rem;
  }
  .p-review-block__txt {
    margin-bottom: 1.25rem;
  }
}

/* ================================
お問い合わせの流れ
================================ */
.p-flow__list {
  display: flex;
}
.p-flow__item {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .p-flow__list {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3.5rem 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .p-flow__list {
    align-items: center;
    flex-direction: column;
  }
}
.p-flow-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.p-flow-block::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
  background: #484848;
}
.p-flow-block__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 232px;
}
.p-flow-block__inner::before {
  content: "";
  position: absolute;
  bottom: -3.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 4.125rem;
  background: url(../img/flow_arrow_bottom.svg);
}
.p-flow-block__num {
  color: #028551;
  font-size: 3.75rem;
}
.p-flow-block__ttl {
  color: #028551;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
}
.p-flow-block__txt {
  font-weight: 700;
}
.p-flow-block:nth-of-type(odd) .p-flow-block__inner:first-of-type {
  margin-bottom: 4.0625rem;
}
.p-flow-block:nth-of-type(odd) .p-flow-block__inner:first-of-type::before {
  content: none;
}
.p-flow-block:nth-of-type(odd) .p-flow-block__inner:last-of-type {
  margin-top: 4.6875rem;
}
.p-flow-block:nth-of-type(odd) .p-flow-block__inner:last-of-type::before {
  bottom: auto;
  top: -5rem;
  background: url(../img/flow_arrow_top.svg);
}
.p-flow-block:nth-of-type(even) {
  flex-direction: column-reverse;
}
.p-flow-block:nth-of-type(even) .p-flow-block__inner:first-of-type::before {
  content: none;
}
.p-flow-block:nth-of-type(even) .p-flow-block__inner:last-of-type {
  padding-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-flow-block {
    justify-content: stretch;
    width: calc(50% - 0.625rem);
  }
  .p-flow-block::after {
    content: none;
  }
  .p-flow-block__num {
    font-size: 3.125rem;
    margin-bottom: 0.3125rem;
  }
  .p-flow-block__inner {
    min-height: auto;
  }
  .p-flow-block__inner:nth-child(2) {
    margin-top: auto;
  }
  .p-flow-block__inner::before {
    content: none;
  }
  .p-flow-block__ttl {
    font-size: 1.5rem;
    margin: 0.9375rem 0 0.625rem;
  }
  .p-flow-block:nth-of-type(odd) .p-flow-block__inner:first-of-type {
    margin-bottom: 0;
  }
  .p-flow-block:nth-of-type(odd) .p-flow-block__inner:last-of-type {
    margin-top: auto;
  }
  .p-flow-block:nth-of-type(even) {
    flex-direction: column;
  }
  .p-flow-block:nth-of-type(even) .p-flow-block__inner:last-of-type {
    padding-top: 0;
  }
  .p-flow-block:nth-of-type(3) .p-flow-block__inner:last-of-type {
    margin-bottom: auto;
  }
}
@media screen and (max-width: 600px) {
  .p-flow-block {
    width: 80%;
  }
}

/* ================================
よくあるご質問
================================ */
.p-faq {
  padding-bottom: 3.75rem;
}
.p-faq__list {
  max-width: 850px;
  margin: 0 auto;
}
.p-faq-block__q, .p-faq-block__a {
  position: relative;
  display: flex;
  column-gap: 1.5625rem;
  padding: 0.4375rem 3.125rem 0.4375rem 3.75rem;
}
.p-faq-block__q::before, .p-faq-block__q::after, .p-faq-block__a::before, .p-faq-block__a::after {
  font-family: "century-old-style-std", serif;
  font-size: 2.25rem;
}
.p-faq-block__q::before, .p-faq-block__a::before {
  color: #028551;
  font-weight: 700;
}
.p-faq-block__q {
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid #028551;
  border-radius: 9999px;
}
.p-faq-block__q::before {
  content: "Q.";
}
.p-faq-block__q::after {
  content: "＋";
  margin-left: auto;
}
.p-faq-block__a {
  font-size: 1.25rem;
  padding-top: 1.625rem;
  padding-bottom: 1.25rem;
}
.p-faq-block__a::before {
  content: "A.";
  color: #FF0101;
}
.p-faq-block.is-open .p-faq-block__q::after {
  content: "ー";
}
.p-faq-block + .p-faq-block {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-faq-block__q::before, .p-faq-block__q::after, .p-faq-block__a::before, .p-faq-block__a::after {
    font-size: 1.875rem;
  }
  .p-faq-block__q {
    font-size: 1.125rem;
  }
  .p-faq-block__a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .p-faq-block__q, .p-faq-block__a {
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
  }
  .p-faq-block__q::before, .p-faq-block__q::after, .p-faq-block__a::before, .p-faq-block__a::after {
    font-size: 1.5rem;
  }
}

/* ================================
会社概要
================================ */
.p-company__inner {
  max-width: 575px;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.p-company__ttl {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.p-company__table {
  color: #000000;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 1.875rem;
}
.p-company__table tr:not(:last-of-type) {
  border-bottom: 1px solid #000000;
}
.p-company__table th, .p-company__table td {
  padding: 1rem 0;
}
.p-company__table th {
  width: 6.25rem;
}
.p-company__table td {
  font-size: 0.875rem;
}
.p-company__map {
  position: relative;
  max-width: 440px;
  width: 100%;
  aspect-ratio: 440/250;
  margin: 0 auto;
}
.p-company__map > iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 600px) {
  .p-company__table th {
    width: 100px;
  }
}

/* ================================
調整用
================================ */
/*--- 背景 ---*/
.u-bg--gry {
  background-color: #FAFAFA;
}
.u-bg--grn {
  background-color: #EFF8F6;
}

/*--- テキスト ---*/
.u-clr--grn {
  color: #028551;
}

/*--- 画像 ---*/
.u-img--cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.u-img--contain > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*--- フォントファミリー ---*/
.u-ff--en {
  font-family: "century-old-style-std", serif;
}
.u-ff--num {
  font-family: hummingbird, sans-serif;
}
.u-ff--yu-gothic {
  font-family: "Yu Gothic UI", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

/*--- フォントウェイト ---*/
.u-fw--700 {
  font-weight: 700;
}

/*--- 表示・非表示 ---*/
.u-display--lg {
  display: none;
}
@media screen and (max-width: 1280px) {
  .u-display--lg {
    display: block;
  }
}
.u-display-md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-display-md {
    display: block;
  }
}
.u-display--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display--sm {
    display: block;
  }
}
.u-display--xs {
  display: none;
}
@media screen and (max-width: 600px) {
  .u-display--xs {
    display: block;
  }
}

@media screen and (max-width: 1280px) {
  .u-hidden--lg {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-hidden--md {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-hidden--sm {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .u-hidden--xs {
    display: none !important;
  }
}/*# sourceMappingURL=styles.css.map */