@charset "UTF-8";
/************************************
** Linkus専用CSS
** Page Class: page-id-26
************************************/

/* ページ内リンクでヘッダーの高さを考慮 */
/* TODO PC/SPは考慮 タブレット画面も考慮して要修正 */
#about {
  scroll-margin-top: 60px;
}

#solution {
  scroll-margin-top: 30px;
}

#keyfeatures {
  scroll-margin-top: 0px;
}

#price {
  scroll-margin-top: 20px;
}

#functions {
  scroll-margin-top: 20px;
}

#news {
  scroll-margin-top: 0px;
}

/************************************
** Reset
************************************/
.page .entry-header,
.page .entry-title {
  display: none;
}
.page .entry-title {
  display: none;
}

/************************************
** ページ全体
************************************/
body {
  color: var(--color-LinkusSecondary-030);
}

/************************************
** コンテンツ用ボタンスタイル
************************************/
.article .button a {
  border-radius: var(--border-radius-M);
  display: block;
  font-weight: bold;
  padding: 16px 24px;
  text-align: center;
}
.buttonContact {
  width: 300px;
}
.buttonContact a {
  background-color: var(--color-LinkusPrimary-030);
  background-size: 100%;
  box-shadow: 0 2px 2px rgba(0, 0, 0, .25);
  color: var(--color-grayscale-100) !important;
  font-size: var(--font-size-emphasize);
  margin: 0 auto;
  transition: background-position .5s ease;
}
.buttonContact a:hover {
  background-image: linear-gradient(to right, #df4661, #f07389);
  background-position: 0 0;
}
.buttonContact a::before {
  content: '\f0e0';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 8px;
}
.article .viewPhone {
  display: inline-block;
  font-size: var(--font-size-heading-S);
  font-weight: bold;
  margin: 24px auto 0;
  padding-left: 32px;
  position: relative;
  width: fit-content;
}
.article .viewPhone::before {
  background-image: url(../img/linkus/phone-volume-solid.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 24px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}

@media screen and (max-width: 834px) {
  .buttonContact {
    width: 200px;
  }
}

@media screen and (max-width: 640px) {
  .button a {
    width: 100%;
  }
  .buttonContact {
    width: 100%;
  }
  .article .buttonPhone a {
    align-items: center;
    background-color: var(--color-LinkusSecondary-030);
    color: var(--color-grayscale-100);
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .article .buttonPhone a::before {
    background-image: url(../img/linkus/phone-volume-solid-w.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    height: 24px;
    width: 24px;
  }
}

/************************************
** LP Contents -- common
************************************/
/* Common Check Line */
.checkLine {
  background-color: var(--color-grayscale-100);
  font-size: var(--font-size-emphasize);
  font-weight: bold;
  margin-bottom: 16px;
  padding: 0 8px;
  width: fit-content;
}
.checkLine::before {
  color: var(--color-LinkusPrimary-030);
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 8px;
}

@media screen and (max-width: 640px) {
  .checkLine  {
    font-size: var(--font-size-content-M);
  }
}

/************************************
** LP Contents -- Key Visual
************************************/
.kv {
  background-image: url(../img/linkus/kv_bg-scaled.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 48px 0;
  width: auto;
}
.kvContent.view--pcOnly {
  align-items: center;
  display: flex;
  gap: 48px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1256px;
  width: 96%;
}
.kvCatch {
  font-weight: bold;
}
.kvCatch__main {
  font-size: var(--font-size-heading-M);
  line-height: 200%;
  margin-bottom: 24px;
}
.kvCatch__sub {
  margin-bottom: 16px;
}
.subFunction {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 4px;
  width: fit-content;
}
.kvCatch__sub .kvCatch__label {
  background-color: var(--color-LinkusSecondary-060);
  color: var(--color-grayscale-100);
  padding: 4px 8px;
}
.kvCatch__cv {
  align-items: center;
  background-color: rgba(var(--color-grayscale-100-rgb), .8);
  border: 1px solid var(--color-grayscale-070);
  border-radius: var(--border-radius-M);
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 24px 32px;
  transition: background-position .5s ease;
}
.kvCatch__cv:hover {
  background-image: linear-gradient(to right, var(--color-grayscale-100), var(--color-LinkusAccent-080));
  background-position: 0 0;
}
.kvCatch__cv .buttonContact {
  width: 200px;
}
.cvText {
  position: relative;
  width: 200px;
  z-index: 0;
}
.cvText__underline {
  display: inline-block;
  position: relative;
}
.cvText__underline::after {
  background-color: rgba(var(--color-LinkusPrimary-060-rgb), .7);
  bottom: .4rem;
  content: '';
  height: 6px;
  left: -4px;
  position: absolute;
  transform: skewX(-15deg);
  width: calc(100% + 8px);
  z-index: -1;
}
.cvText__underline:last-child:after {
  bottom: .5rem;
}
.kvImage {
  width: 45%;
}

@media screen and (max-width: 1023px) {
  .kv {
    padding: 48px 24px
  }
  .kvContent {
    flex-direction: column;
  }
  .kvContent__inner--top {
    display: flex;
    justify-content: center;
  }
  .cvText {
    font-weight: bold;
    letter-spacing: 2px;
    width: auto;
  }
}

@media screen and (max-width: 834px) {
  .kvCatch__main {
    font-size: var(--font-size-heading-S);
  }
  .kvCatch__main img {
    width: 260px;
  }
  .kvCatch__label {
    font-size: var(--font-size-content-S);
  }
  .kvCatch__cv {
    gap: 32px;
  }
}

@media screen and (max-width: 640px) {
  .kvContent__inner--top {
    flex-direction: column;
    margin-bottom: 24px;
  }
  .kvImage {
    align-self: flex-end;
    margin-top: -50px;
    width: 90%;
  }
  .kvCatch__cv {
    flex-direction: column;
    gap: 16px;
  }
  .cvText {
    font-size: var(--font-size-content-M);
    letter-spacing: 1px;
  }
  .kvCatch__cv .buttonContact {
    width: 100%;
  }
}

@media screen and (max-width: 375px) {
  .kv {
    padding: 32px 16px
  }
  .subFunction {
    align-items: end;
    gap: 8px;
    justify-content: flex-start;
  }
  .kvCatch__sub .kvCatch__label {
    line-height: 1.4;
    padding: 4px 10px;
    text-align: center;
  }
  .cvText {
    font-size: var(--font-size-content-S);
    letter-spacing: 1px;
  }
}

/************************************
** LP Contents -- Logo Slider
************************************/
.logo_slider {
  padding: 24px 0;
}
.flexslider,
.metaslider .flexslider {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 640px) {
  .flexslider .slides li {
    width: auto !important;
    margin-right: 1% !important; 
  }
  .flexslider .slides li img {
    height: 70px;
    width: auto;
  }
}

/************************************
** LP Contents -- Linkusとは
************************************/
.contents.contentAbout {
  padding: 30px 0 140px 0;
}
.aboutList {
  display: flex;
  gap: 72px;
  justify-content: space-between;
}
.aboutList__box {
  position: relative;
}
.aboutList__box .about__image {
  border-radius: var(--border-radius-M);
  border: 2px solid var(--color-LinkusSecondary-030);
  padding: 16px 42px 42px;
  position: relative;
}
.about__description {
  background-color: var(--color-grayscale-100);
  border: 2px solid var(--color-LinkusSecondary-030);
  border-radius: var(--border-radius-M);
  bottom: -30px;
  font-size: var(--font-size-content-M);
  font-weight: bold;
  left: 50%;
  padding: 8px;
  position: absolute !important;
  text-align: center;
  transform: translate(-50%);
  width: 288px;
}
.about__image.border--hasGap::before {
  background-image: linear-gradient(
    var(--color-grayscale-100) 0%,
    var(--color-grayscale-100) 33%,
    transparent 33%,
    transparent 66%,
    var(--color-grayscale-100) 66%,
    var(--color-grayscale-100) 100%
  );
  height: 60px;
  left: -3px;
  top: 15%;
  width: 4px;
}
.about__image.border--hasGap::after {
  background-color: var(--color-grayscale-100);
  bottom: 20%;
  height: 20px;
  right: -3px;
  width: 4px;
}
.about__description.border--hasGap::before {
  background-color: var(--color-grayscale-100);
  height: 4px;
  right: 15%;
  top: -4px;
  width: 10px;
}
.about__description.border--hasGap::after {
  background-color: var(--color-grayscale-100);
  bottom: -4px;
  height: 4px;
  left: 15%;
  width: 10px;
}

@media screen and (max-width: 834px) {
  .aboutList {
    gap: 16px;
  }
}

@media screen and (max-width: 640px) {
  .aboutList {
    flex-direction: column;
    gap: 60px;
  }
}

/************************************
** LP Contents -- 今こんな課題を抱えていませんか
************************************/
.contents.contentSolution {
  background-color: var(--color-LinkusSecondary-080);
  padding-bottom: 200px;
  position: relative;
}
.solution__list {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.solution__list figure {
  width: 38%;
}
.solution__box {
  bottom: -60px;
  left: 50%;
  position: absolute !important;
  transform: translate(-50%);
}
.solution__badge--pc {
  align-items: baseline;
  background-color: var(--color-grayscale-100);
  border: 2px solid var(--color-LinkusSecondary-030);
  border-radius: var(--border-radius-full);
  box-shadow: 0 4px 4px rgba(0 ,0 ,0 ,.25); ;
  display: flex;
  font-size: 48px;
  padding: 24px 48px;
  width: max-content;
}
.solution__badge--pc .badge--Linkus {
  height: 50px;
  transform: translateY(2px);
}
.solution__badge--pc .badge--light {
  height: 65px;
  transform: translateY(10px);
}
.solution__badge.border--hasGap::before {
  background-color: var(--color-grayscale-100);
  border-top: 1px solid var(--color-LinkusSecondary-080);
  height: 3px;
  left: 15%;
  top: -3px;
  width: 30px;
}
.solution__badge.border--hasGap::after {
  background-color: var(--color-grayscale-100);
  border-bottom: 1px solid var(--color-LinkusSecondary-090);
  bottom: -3px;
  height: 3px;
  right: 15%;
  width: 30px;
}

@media screen and (max-width: 834px) {
  .solution__list {
    flex-direction: column-reverse;
    gap: 32px;
  }
}

@media screen and (max-width: 640px) {
  .contents.contentSolution {
    padding-bottom: 160px;
  }
  .solution__list figure {
    width: 70%;
  }
  .solution__box {
    bottom: -70px;
  }
  .solution__badge--sp {
    align-items: center;
    background-color: var(--color-grayscale-100);
    border: 2px solid var(--color-LinkusSecondary-030);
    border-radius: var(--border-radius-full);
    box-shadow: 0 4px 4px rgba(0 ,0 ,0 ,.25); ;
    display: flex !important;
    justify-content: center;
    padding: 24px 0 16px 16px;
    position: absolute;
    width: max-content;
}
  .badge--R {
    margin-left: -16px;
    width: 28%;
  }
  .row01 {
    align-items: baseline;
    display: flex;
    font-size: var(--font-size-heading-M);
    line-height: 1;
    margin-bottom: 4px;
  }
  .row01 .badge--Linkus {
    height: 40px;
  }
  .row02 {
    font-size: var(--font-size-heading-L);
    line-height: 1;
    width: fit-content;
  }
  .solution__badge--sp.border--hasGap::before {
    left: 22%;
  }
  .solution__badge.border--hasGap::after {
    right: 22%;
  }
}

/************************************
** LP Contents -- Linkusの特徴的な機能
************************************/
.contents.contentKeyFeatures {
  background-color: var(--color-LinkusSecondary-090);
  padding: 160px 0 120px 0;
}
.keyFeatures__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 88px;
}
.keyFeatures__item {
  background-color: rgba(var(--color-grayscale-100-rgb), .8);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  padding: 24px;
  width: 48%;
}
.keyFeatures__item dl {
  margin-bottom: 0;
}
.keyFeatures__item .itemName {
  font-size: var(--font-size-emphasize);
  font-weight: bold;
}
.keyFeatures__item .itemDescription {
  font-size: var(--font-size-content-M);
  line-height: 1.4;
  margin-left: 0;
}
.device__box .device__heading {
  align-items: center;
  background-color: transparent;
  border: none;
  display: flex;
  font-size: var(--font-size-emphasize);
  font-weight: bold;
  text-align: center;
  justify-content: center;
  margin-bottom: 32px;
}
.device__box .device__heading::before {
  content: '\\';
  padding-right: 16px;
}
.device__box .device__heading::after {
  content: '/';
  padding-left: 16px;
}
.deviceImage {
  align-items: center;
  display: flex;
  gap: 24px;
  margin: 0 auto;
  justify-content: center;
}
.deviceImage figure {
  width: 50%;
}

@media screen and (max-width: 640px) {
  .keyFeatures__list {
    flex-direction: column;
  }
  .keyFeatures__item {
    flex-direction: column-reverse;
    width: 100%;
  }
  .item08 {
    margin-bottom: 0;
  }
  .keyFeatures__item .itemName {
    font-size: var(--font-size-emphasize);
  }
  .keyFeatures__item .itemDescription {
    font-size: var(--font-size-content-S);
    margin-left: 0;
  }
  .device__box .device__heading::before,
  .device__box .device__heading::after {
    font-size: 50px;
    font-weight: normal;
  }
  .deviceImage {
    flex-direction: column;
  }
  .deviceImage figure {
    width: 80%;
  }
  .deviceImage ul {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  .deviceImage ul .checkLine {
    font-size: var(--font-size-content-S);
  }
}

@media screen and (max-width: 375px) {
  .device__box .device__heading {
    font-size: var(--font-size-content-M);
  }
  .device__box .device__heading::before,
  .device__box .device__heading::after {
    font-size: var(--font-size-heading-M);
  }
  .deviceImage ul {
    flex-direction: column;
    gap: 8px;
  }
  .deviceImage ul .checkLine {
    margin-bottom: 0;
    width: auto;
  }
}

/************************************
** LP Contents -- 利用料金
************************************/
.price__box {
  position: relative;
}
.price__heading {
  background-color: var(--color-grayscale-100);
  border: 2px solid var(--color-LinkusSecondary-030);
  border-radius: var(--border-radius-M);
  left: 80px;
  padding: 16px 24px;
  position: absolute !important;
  top: -30px;
  width: fit-content;
  z-index: 1;
}
.price__heading.border--hasGap::before {
  background-color: var(--color-grayscale-100);
  height: 3px;
  left: 10%;
  top: -3px;
  width: 15px;
}
.price__heading.border--hasGap::after {
  background-color: var(--color-grayscale-100);
  border-bottom: 1px solid var(--color-LinkusSecondary-070);
  bottom: -3px;
  height: 4px;
  right: 10%;
  width: 15px;
}
.price__contents {
  background-color: var(--color-LinkusSecondary-070);
  border: 2px solid var(--color-LinkusSecondary-030);
  border-radius: var(--border-radius-M);
  margin-bottom: 94px;
  padding: 64px 80px;
}
.price__contents.border--hasGap::before {
  background-image: linear-gradient(
    var(--color-LinkusSecondary-070) 0%,
    var(--color-LinkusSecondary-070) 20%,
    transparent 20%,
    transparent 80%,
    var(--color-LinkusSecondary-070) 80%,
    var(--color-LinkusSecondary-070) 100%
  );
  border-left: 1px solid var(--color-grayscale-100);
  bottom: 15%;
  height: 160px;
  left: -3px;
  width: 3px;
}
.price__box--basic .price__contents.border--hasGap::before {
  height: 160px;
}
.price__box--option .price__contents.border--hasGap::before {
  height: 80px;
}
.price__contents.border--hasGap::after {
  background-color: var(--color-LinkusSecondary-070);
  border-right: 1px solid var(--color-grayscale-100);
  height: 30px;
  right: -3px;
  top: 20%;
  width: 3px;
}
.iconPlus {
  margin: 24px 0;
  text-align: center;
}
.iconPlus::before {
  color: var(--color-grayscale-100);
  content: '\f067';
  font-family: 'Font Awesome 5 Free';
  font-size: 40px;
  font-weight: 900;
}
.fee__box {
  background-color: var(--color-grayscale-100);
  border-radius: var(--border-radius-M);
  padding: 32px;
}
.fee__box dl {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.fee__box dt {
  font-size: var(--font-size-emphasize);
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  width: 30%;
}
.fee__box dd {
  border-left: 1px solid var(--color-LinkusSecondary-030);
  width: 60%;
  padding-left: 24px;
}
.fee__box .payment {
  font-size: var(--font-size-heading-M);
  font-weight: bold;
}
.price__box--option p {
  text-align: center;
}
.feeLine {
  align-items: center;
  display: flex;
  gap: 32px;
}
.feeLine:first-child {
  margin-bottom: 24px;
}
.feeLine .size {
  color: var(--color-grayscale-100);
  font-size: var(--font-size-content-M);
  height: fit-content;
  padding: 0 12px;
  text-align: center;
  width: 110px;
}
.feeLine .under200 {
  background-color: var(--color-LinkusSecondary-030);
}
.feeLine .over201 {
  background-color: var(--color-LinkusPrimary-030);
}
.fee__box figure {
  background-color: var(--color-grayscale-080);
  margin: 24px auto 0;
  width: 90%;
}
.fee__box figure img {
  padding: 48px;
}

@media screen and (max-width: 834px) {
  .price__contents {
    padding: 64px 32px;
  }
  .fee__box {
    padding: 24px;
  }
  .fee__box dl {
    justify-content: space-around;
  }
  .fee__box .payment {
    font-size: var(--font-size-28);
  }
  .feeLine {
    gap: 16px;
  }
}

@media screen and (max-width: 640px) {
  .price__contents {
    padding: 48px 16px 32px;
  }
  .price__heading {
    font-size: var(--font-size-content-M);
    left: 16px;
    padding: 8px 16px;
    top: -20px;
  }
  .fee__box {
    padding: 16px;
  }
  .fee__box dt {
    font-size: var(--font-size-content-M);
    width: 30%;
  }
  .fee__box .payment {
    font-size: var(--font-size-heading-S);
    line-height: 1;
  }
  .feeLine {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .fee__box figure {
    width: 100%;
  }
  .fee__box figure img {
    padding: 16px;
  }
  .iconPlus {
    margin: 8px 0;
  }
  .iconPlus::before {
    font-size: var(--font-size-heading-S);
  }
}

/************************************
** LP Contents -- 機能一覧
************************************/
.functions__accordion {
  margin-bottom: 120px;
}
.accordion__box {
  background-color: var(--color-LinkusSecondary-090);
  border-radius: var(--border-radius-M);
  margin-bottom: 32px;
  padding: 24px;
}
.accordion__heading {
  font-size: var(--font-size-emphasize);
  font-weight: bold;
  position: relative;
}
.accordion__heading::before {
  color: var(--color-LinkusPrimary-030);
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-size: var(--font-size-emphasize);
  font-weight: 400;
  margin-right: 8px;
}
.accordion__heading::after {
  content: '\f067';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: var(--font-size-emphasize);
  position: absolute;
  right: 0;
  transition: transform .3s ease-in-out;
}
.accordion__heading.open::after {
  content: '\f068';
  transform: rotate(180deg);
}
.accordion__inner {
  border-top: 2px solid var(--color-LinkusSecondary-030);
  margin-top: 8px;
  padding-top: 16px;
  transition: transform .3s ease-in-out;
}
.accordion__inner.close {
  display: none;
}
.functions__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  row-gap: 16px;
}
.functions__item {
  background-color: var(--color-grayscale-100);
  border-radius: var(--border-radius-M);
  font-weight: 500;
  padding: 16px;
  width: 32%;
}

@media screen and (max-width: 834px) {
  .functions__item {
    width: 48%;
  }
}

@media screen and (max-width: 640px) {
  .accordion__box {
    margin-bottom: 24px;
  }
  .accordion__heading {
    font-size: var(--font-size-18);
  }
  .functions__list {
    flex-direction: column;
  }
  .functions__item {
    padding: 8px 16px;
    width: 100%;
  }
}

/************************************
** LP Contents -- NEWS
************************************/
/* News List */
.news__list {
  font-weight: bold;
  margin: 0 auto;
  width: 90%;
}
.news__item {
  border-bottom: 1px solid var(--color-LinkusSecondary-030);
  margin-bottom: 24px;
  padding-bottom: 8px;
}
.news__topline {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.news__date {
  font-size: var(--font-size-content-S);
}
.news__category {
  border: 1px solid var(--color-LinkusSecondary-030);
  font-size: var(--font-size-caption);
  line-height: 2;
  padding: 0 4px;
}
.news__link {
  line-height: 1.2;
}
.news__link a {
  color: var(--color-LinkusSecondary-030);
  font-size: var(--font-size-content-S);
}
.news__link a:hover {
  color: var(--color-LinkusSecondary-060);
}

@media screen and (max-width: 640px) {
  .news__list {
    width: 100%;
  }
}

/* Pagination */
.pagination {
  display: flex;
}
.pagination a {
  color: var(--color-LinkusSecondary-030);
}
.pagination a:hover {
  background-color: transparent !important;
  color: var(--color-LinkusSecondary-060) !important;
}
.pagination .first {
  margin-right: 16px;
  padding-left: 16px;
}
.pagination .last {
  margin-left: 16px;
  padding-right: 16px;
}
.pagination .prev {
  padding-right: 16px;
}
.pagination .next {
  padding-left: 16px;
}
.pagination .first::before,
.pagination .last::after,
.pagination .prev::before,
.pagination .next::after {
  font-family: 'Font Awesome 5 Free';
  font-size: var(--font-size-content-M);
  font-weight: 900;
  padding-left: 4px;
}
.pagination .first::before {
  content: '\f100';
  padding-right: 4px;
}
.pagination .last::after {
  content: '\f101';
}
.pagination .prev::before {
  content: '\f104';
  padding-right: 4px;
}
.pagination .next::after {
  content: '\f105';
}
.pagination .number {
  width: 40px;
}
.pagination .number.active a {
  color: var(--color-LinkusPrimary-030);
}

@media screen and (max-width: 834px) {
  .pagination {
    flex-wrap: wrap;
  }
}

/************************************
** CTA -- Common
************************************/
.contents.contentCta {
  padding: 48px 0;
}
.contentCta {
  background-image: url(../img/linkus/kv_bg-scaled.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.ctaContact {
  display: flex;
}
.ctaContact__box {
  background-color: rgba(var(--color-grayscale-100-rgb), .9);
  border: 1px solid var(--color-LinkusSecondary-080);
  border-radius: var(--border-radius-M);
  padding: 32px 48px;
  position: relative;
  text-align: center;
  z-index: 0;
}
.ctaContact__box .button {
  margin: 0 auto;
}
.ctaContact__heading {
  border: none;
  font-size: var(--font-size-18);
  margin-bottom: 16px;
}
.ctaContact .note {
  display: inline-block;
  font-weight: bold;
  margin-top: 24px;
  position: relative;
}
.note::before {
  background-color: var(--color-LinkusAccent-060);
  bottom: .4rem;
  content: '';
  height: 10px;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.ctaContact .viewPhone {
  margin: 24px auto 0;
}

@media screen and (max-width: 1023px) {
  .viewPhone {
    margin: 32px auto 0;
  }
}

@media screen and (max-width: 834px) {
  .ctaContact__box {
    padding: 24px;
  }
}

@media screen and (max-width: 640px) {
  .ctaContact {
    flex-direction: column;
    width: 100%;
  }
}

/************************************
** CTA -- 料金
************************************/
.price__Cta .ctaContact {
  gap: 54px;
  justify-content: center;
}
.price__Cta .ctaContact__box {
  width: 48%;
}

@media screen and (max-width: 834px) {
  .price__Cta .ctaContact {
    gap: 16px;
  }
}

@media screen and (max-width: 640px) {
  .price__Cta .ctaContact {
    gap: 24px;
  }
  .price__Cta .ctaContact__box {
    width: 100%;
  }
}

/************************************
** CTA -- 最下部
************************************/
.lpBottom__cta .cta__box {
  align-items: center;
  display: flex;
  gap: 72px;
  justify-content: center;
}
.lpBottom__cta .ctaMessage {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 45%;
}
.lpBottom__cta .ctaMessage .message01 {
  font-size: var(--font-size-28);
  font-weight: bold;
}
.lpBottom__cta .ctaMessage .message02 {
  border-top: 2px solid var(--color-LinkusSecondary-030);
  font-size: var(--font-size-emphasize);
  font-weight: bold;
  padding-top: 8px;
  width: 100%;
}
.lpBottom__cta .ctaMessage .logo {
  margin-bottom: 24px;
}
.lpBottom__cta .ctaContact {
  flex-direction: column;
  gap: 24px;
  width: 45%;
}
.lpBottom__cta .ctaContact .viewPhone {
  margin-top: 0;
}

@media screen and (max-width: 834px) {
  .lpBottom__cta .ctaMessage .message01 {
    font-size: var(--font-size-emphasize);
  }
}

@media screen and (max-width: 640px) {
  .lpBottom__cta .cta__box {
    flex-direction: column;
    gap: 24px;
  }
  .lpBottom__cta .ctaMessage {
    align-items: center;
    gap: 12px;
    width: 80%;
  }
  .lpBottom__cta .ctaMessage .message01 {
    font-size: var(--font-size-emphasize);
  }
  .lpBottom__cta .ctaMessage .message02 {
    text-align: center;
    font-size: var(--font-size-content-M);
  }
  .lpBottom__cta .ctaMessage .logo {
    margin-bottom: 12px;
  }
  .lpBottom__cta .ctaMessage .logo img {
    margin-left: 16px;
    width: 80%;
  }
  .lpBottom__cta .ctaContact {
    gap: 24px;
    width: 100%;
  }
}

/************************************
** Popup
************************************/
.login__popup {
  margin: 0 auto;
  padding: 24px 0;
  width: fit-content;
}
.login__popup .login__button {
  margin-bottom: 24px;
  position: relative;
  width: 360px;
}
.login__popup .login__button::after {
  content: '\f138';
  font-family: 'Font Awesome 5 Free';
  font-size: var(--font-size-content-M);
  font-weight: 900;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.login__popup .login__button.loginUsers::after {
  color: #ea537b;
}
.login__popup .login__button.loginSending::after {
  color: #e65e34;
}
.login__popup .login__button.loginSupport::after {
  color: #30acd3;
}
.login__popup .login__button.loginEmployers::after {
  color: #8cab27;
}
.login__popup .login__button a {
  border-radius: var(--border-radius-M);
  border: 2px solid var(--color-LinkusSecondary-030);
  color: var(--color-LinkusSecondary-030);
  display: block;
  font-weight: bold;
  padding: 16px;
  text-align: center;
}
.login__popup .login__button a:hover {
  background-color: var(--color-LinkusSecondary-090);
}
.login__note {
  text-align: center;
}
.login__note a {
  color: var(--color-LinkusPrimary-030);
  text-decoration: underline;
  position: relative;
  z-index: 2999999999;
}
.login__note a:hover {
  text-decoration: none;
}

@media screen and (max-width: 480px) {
  .login__popup {
    width: 100%;
  }
  .login__popup .login__button {
    width: 100%;
  }
}