@charset "UTF-8";
/* CSS Document */

/* ============================================================
    default
============================================================ */

body {
  background-color: #fff;
  color: #222;
  font-family:
    BlinkMacSystemFont, 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN',
    'Hiragino Sans', Meiryo, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
}

/*海外版単語折り返し*/
#language_En {
  word-wrap: break-word;
}

body a {
  color: #4ab3df;
  outline: none;
  text-decoration: none;
}

body a:hover {
  text-decoration: underline;
}

/*google コンバージョンソースを不可視*/
iframe[name='google_conversion_frame'] {
  display: none;
}

/*
  /vue/css/header/index.css を読み込んだことにより、
  common.css の設定が上書きされてしまうため、元の値に上書きするためのスタイル
*/
body :where([data-page-type='classic']) {
  line-height: 1;
}

body :where([data-page-type='classic']) img,
body :where([data-page-type='classic']) svg {
  display: inline;
  vertical-align: baseline;
}

body :where([data-page-type='classic']) input[type='radio'],
body :where([data-page-type='classic']) input[type='checkbox'] {
  margin: 3px 3px 3px 4px;
}

/* ============================================================
    header
============================================================ */
/* ベース */
#header {
  background: #fff;
  line-height: 1;
  width: 100%;
}

#headerIn {
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  gap: 32px;
  height: 64px;
  padding: 0 24px;
}

/* ロゴ　ログイン前後共通 */
#logo-wrapper {
  flex-shrink: 0;
  width: 200px;
}

.siteId {
  display: block;
}

.siteId:hover {
  opacity: 0.8;
  text-decoration: none;
}

.makuake-logo {
  display: block;
  height: 27px;
  width: 136px;
}

/* 検索フォーム ログイン前後共通 */
.findHeaderForm {
  display: flex;
}

.findHeaderInput {
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-radius: 4px 0 0 4px !important;
  border-right: none;
  border-top: 1px solid #d3d3d3;
  font-size: 14px;
  height: 36px;
  line-height: 36px;
  outline: none;
  padding: 0 12px;
  width: 210px;
}

.findHeaderInput::-webkit-input-placeholder {
  color: #a2a2a2;
  font-size: 14px;
  letter-spacing: 2px;
}

.findFormHeaderSubmit {
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 0 4px 4px 0;
  color: #333333;
  cursor: pointer;
  font-size: 14px;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 90px;
}

.findFormHeaderSubmit-txt {
  font-size: 14px;
  left: 45px;
  position: absolute;
  top: 10px;
}
/* サーチアイコン */
.findFormHeaderSubmit-iconbox {
  height: 60px;
  left: 17px;
  position: absolute;
  top: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 19px;
}

.findFormHeaderSubmit-iconboxin {
  display: block;
}

.findFormHeaderSubmit-iconboxin:not(:last-child) {
  margin-bottom: 23px;
}

.findFormHeaderSubmit-iconboxin--black {
  fill: #707070;
  height: 18px;
  width: 18px;
}

.findFormHeaderSubmit-iconboxin--white {
  fill: #fff;
  height: 18px;
  width: 18px;
}
/* 探すhover時 */
.findHeaderForm:hover .findFormHeaderSubmit {
  background-color: #f7c600;
  background-position: 14px -33px;
  border: 1px solid #f7c600;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.findHeaderForm:hover .findFormHeaderSubmit-iconbox {
  top: -35px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* ログイン前 */
#navigation {
  height: 100%;
  margin-left: auto;
  white-space: nowrap;
}

#navigation .nav-header-box {
  align-items: center;
  display: flex;
  gap: 16px;
  height: 100%;
}

#navigation .nav-header-box li,
#navigation .header-like-box {
  display: contents;
}

/* ログイン前 掲載する */
#navigation .header-link-apply {
  align-items: center;
  color: #222;
  display: flex;
  font-size: 14px;
  height: 100%;
  margin-right: 8px;
}

/* ログイン前 気になる登録 */
#navigation .header-like {
  align-items: center;
  color: #222;
  display: flex;
  font-size: 14px;
  height: 100%;
  margin-right: 16px;
}

#navigation .like-heart {
  fill: #707070;
  height: 18px;
  margin-right: 4px;
  stroke: #707070;
  stroke-width: 0.5;
  width: 20px;
}

#navigation .like-heart-txt {
  position: relative;
}

.header-like-box:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  visibility: visible;
}

/* ログイン前 ログインボタン */
#navigation .header-btn-login {
  align-items: center;
  background: #f7c600;
  border-radius: 4px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height: 36px;
  justify-content: center;
  line-height: 21px;
  padding: 0 16px;
}

#navigation .header-btn-login:hover {
  background: #f9d133;
  text-decoration: none;
}

/* ログイン前 新規登録 */
#navigation .header-btn-signin {
  align-items: center;
  border: 2px solid #f7c600;
  border-radius: 4px;
  color: #f7c600;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height: 36px;
  justify-content: center;
  line-height: 21px;
  padding: 0 16px;
}

#navigation .header-btn-signin:hover {
  opacity: 0.6;
  text-decoration: none;
}

/* ログイン後---------------------------------------- */
#navigation02 {
  height: 100%;
  margin-left: auto;
  white-space: nowrap;
}

#navigation02 .nav-header-box-after {
  align-items: center;
  display: flex;
  height: 100%;
}

#navigation02 .nav-header-box-after li,
#navigation02 .header-like-box {
  display: contents;
}

/* ログイン後 掲載する */
#navigation02 .header-link-apply-after {
  align-items: center;
  color: inherit;
  display: flex;
  font-size: 14px;
  height: 100%;
  margin-right: 24px;
}

/* ログイン後 気になる登録後  */
#navigation02 .header-like-after,
#navigation02 .header-mail-after,
#navigation02 .header-bell-after {
  align-items: center;
  color: inherit;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0 12px;
  position: relative;
}

#navigation02 .header-like-after:hover {
  opacity: 0.7;
}

#navigation02 .like-heart-after,
#navigation02 .mail-after,
#navigation02 .bell-after {
  fill: currentColor;
  height: 28px;
  width: 28px;
}

#navigation02 .like-after-num {
  background: #fe2278;
  border-radius: 70px;
  bottom: 18px;
  color: white;
  font-size: 10px;
  height: 17px;
  line-height: 12px;
  padding: 3px 6px;
  position: absolute;
  right: 8px;
  width: 17px;
}

#navigation02 .header-mail-after:hover {
  opacity: 0.7;
}

#navigation02 .mail-after-num {
  background: #fe2278;
  border-radius: 70px;
  bottom: 18px;
  color: white;
  font-size: 10px;
  height: 18px;
  line-height: 12px;
  padding: 3px 6px;
  position: absolute;
  right: 6px;
}

#navigation02 .header-bell-after:hover {
  opacity: 0.7;
}

#navigation02 .bell-after-num,
#navigation02 .like-icon-cnt {
  background: #fe2278;
  border-radius: 50%;
  bottom: 19px;
  height: 17px;
  position: absolute;
  right: 9px;
  width: 17px;
}

/* ログイン後の自分の顔 */
#navigation02 .link03After {
  border-radius: 4px;
  cursor: pointer;
  height: 32px;
  margin-left: 24px;
  width: 32px;
}

#navigation02 .link03After:hover {
  cursor: pointer;
  opacity: 0.8;
}

/* マイページへの導線ツールチップ マイページ プロジェクト管理 支援したプロジェクト 購入履歴ストア ヘルプ　ログアウト */
#myMenuBox {
  display: none;
  font-size: 14px;
  position: absolute;
  right: 24px;
  top: 0;
  z-index: 9999;
}

#myMenuBox .headerMyIconClick {
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 2px;
  box-shadow: rgba(12, 3, 7, 0.14902) 0px 0px 13px 0px;
  height: auto;
  position: absolute;
  right: -15px;
  top: 64px;
  width: 260px;
  z-index: 20;
}

#myMenuBox .headerMyIconClick::before {
  border-color: #e4e4e4 transparent transparent;
  border-right: 5px solid transparent;
  border-style: solid;
  border-width: 12px;
  content: '';
  filter: drop-shadow(0px 4px 4px rgba(12, 3, 7, 0.14902));
  position: absolute;
  right: 18px;
  top: -24px;
  transform: rotateX(180deg);
  width: 20px;
}

#myMenuBox .headerMyIconClick::after {
  border-color: white transparent transparent;
  border-right: 5px solid transparent;
  border-style: solid;
  border-width: 12px;
  content: '';
  position: absolute;
  right: 18px;
  top: -23px;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  width: 10px;
}

#myMenuBox .userImage02 {
  border-radius: 2px;
  height: 42px;
  margin-right: 14px;
  width: 42px;
}

#myMenuBox .myLink01 {
  -webkit-align-items: center;
  align-items: center;
  color: #333333;
  display: -webkit-flex;
  display: flex;
  height: 70px;
  padding-left: 14px;
}

#myMenuBox .linkDashChild {
  border-radius: 2px;
  display: block;
  margin: 0 auto 12px;
}

#myMenuBox ul li:hover {
  background-color: #f8f8f8;
}

#myMenuBox ul li:not(:last-child) {
  border-bottom: 1px solid #e4e4e4;
}

#myMenuBox .linkDash {
  color: #333333;
  display: block;
  padding: 14px 14px;
  text-align: center;
}

#myMenuBox .links-mypage {
  color: #333333;
  display: block;
  line-height: 47px;
  padding-left: 14px;
}

#myMenuBox .myLink01:hover,
#header_dashboard .linkDash:hover,
#myMenuBox .links-mypage:hover {
  text-decoration: none;
}

/* perfect-scrollbar */
.modalRight .scrollArea {
  height: 418px;
  overflow: hidden;
  position: relative;
}

.modalLeft .scrollArea {
  height: auto;
  overflow: hidden;
  position: relative;
}

.ps-container .ps-scrollbar-y {
  background-color: #4c4c4c !important;
  right: 3px !important;
  width: 4px !important;
}

.ps-scrollbar-x {
  display: none !important;
  overflow: hidden !important;
}

/* ============================================================
    ツールチップ
============================================================ */
#toolTipsPjt {
  display: none;
  font-size: 14px;
  margin: auto;
  position: relative;
  width: 1000px;
}

.toolTipsPjtIn {
  background: white;
  border: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  border-radius: 2px;
  box-shadow: rgba(12, 3, 7, 0.14902) 0px 0px 13px 0px;
  color: #333333;
  height: auto;
  max-height: 403px;
  min-height: 45px;
  overflow: hidden;
  position: absolute;
  right: 35px;
  top: 65px;
  width: 430px;
  z-index: 1000;
}

.toolTipsPjtIn .notNotice {
  display: none;
  padding: 20px 0;
  text-align: center;
}

#toolTipsPjt::before {
  border-color: #e4e4e4 transparent transparent;
  border-right: 5px solid transparent;
  border-style: solid;
  border-width: 12px;
  content: '';
  filter: drop-shadow(0px 2px 4px rgba(12, 3, 7, 0.14902));
  position: absolute;
  right: 70px;
  top: -24px;
  transform: rotateX(180deg);
  width: 20px;
}

#toolTipsPjt::after {
  border-color: white transparent transparent;
  border-right: 5px solid transparent;
  border-style: solid;
  border-width: 12px;
  content: '';
  position: absolute;
  right: 70px;
  top: -23px;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  width: 10px;
  z-index: 1000;
}

.toolTipsPjt02 {
  height: 391px;
  margin-top: 5px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.inMsHeader {
  background: white;
  border-bottom: 1px solid rgb(219, 219, 219);
  cursor: pointer;
  padding: 12px;
}

.inMsHeader:hover {
  background: #f8f8f8;
}

.inMsLeft {
  float: left;
  height: 57px;
  width: 40px;
}

.inMsLeft img {
  border-radius: 2px;
  display: block;
  height: 40px;
  width: 40px;
}

.posOrner {
  color: #b2b2b2;
  font-size: 12px;
  left: 2px;
  padding: 0px;
  position: relative;
  text-align: center;
  top: 8px;
}

.inMsRight {
  float: left;
  margin-left: 13px;
  width: 325px;
}

.inMsTimeHeader {
  color: #8d8d8d;
  font-size: 10px;
  font-weight: bold;
  line-height: 15px;
  margin-top: 14px;
  text-align: left;
}

.inMsRead {
  background: #fffcee !important;
}

.inMsRead:hover {
  background: #f8f8f8;
}

.inMsCreator {
  background: #ffe600;
}

.inMsCreator:hover {
  background: #ffec38;
}

.toolHx {
  background: whiteSmoke;
  border-bottom: 1px solid rgb(216, 216, 216);
  color: #8d8d8d;
  font-weight: bold;
  text-indent: 9px;
}

.notice-next {
  border-radius: 2px;
  display: block;
  height: 42px;
  line-height: 41px;
  margin: 12px auto;
  text-align: center;
  width: 173px;
}

.notice-next img {
  height: 20px;
  margin: 10px 0;
  width: 20px;
}

.inMsComment {
  color: #3b3b3b;
  font-size: 14px;
  line-height: 1.3;
}

.iMcBold {
  font-weight: bold;
}

/* ============================================================
    footer
============================================================ */
/*footer*/
.footer {
  background: #fff;
  line-height: 1;
  padding: 40px 24px;
  position: relative;
}

.footer-in {
  margin: 0 auto;
  max-width: 1000px;
}

.footer img,
.footer svg {
  display: block;
}

.footer img {
  height: auto;
  max-width: 100%;
}

/* バナーセクション */
.banner-section {
  margin-bottom: 64px;
}

/* アプリダウンロードバナー */
.appBanner {
  margin: 0 auto 32px;
  max-width: 1000px;
  position: relative;
}

.app-banner-img {
  display: block;
}

.appDownload {
  bottom: 20%;
  display: flex;
  gap: 10%;
  justify-content: space-between;
  left: 20%;
  position: absolute;
  right: 52.5%;
}

.appDownload a:hover {
  opacity: 0.8;
}

.appDownload svg {
  display: block;
  height: auto;
  max-height: 40px;
  max-width: 100%;
  width: auto;
}

/* バナーボタン枠 */
.footer-bn-block {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 0 auto 64px;
}

/* バナーボタン共通 */
.footer-apply-link,
.footer-help-link {
  align-items: center;
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex: 1 0 auto;
  max-width: 484px;
  min-width: min-content;
  padding: 16px;
  width: calc((100% - 32px) / 2);
}

/* applyボタン */
.footer-apply-link {
  background: #82d9ee;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-apply-link:hover {
  opacity: 0.8;
  text-decoration: none;
}

.footer-apply-link-ttl-txt {
  font-size: 18px;
  font-weight: bold;
  line-height: 32px;
  margin: -7px 0 -5px;
  text-align: justify;
  width: min-content;
}

.footer-apply-link-ttl-main {
  font-size: 22px;
  line-height: 32px;
  white-space: nowrap;
}

.footer-apply-link-btn {
  align-items: center;
  background: #f7c600;
  border-radius: 9999px;
  display: flex;
  font-size: 16px;
  font-weight: bold;
  height: 48px;
  line-height: 28px;
  padding: 0 16px;
  white-space: nowrap;
}

/* よくある質問・ヘルプボタン */
.footer-help-link {
  background: #90e36f;
  gap: 16px;
  justify-content: space-around;
  padding-inline: 24px;
}

.footer-help-link:hover {
  opacity: 0.8;
  text-decoration: none;
}

.footer-help-icon,
.footer-help-link-arrow {
  fill: #fff;
  flex-shrink: 0;
  height: 32px;
  width: 32px;
}

.footer-help-link-ttl {
  font-size: 22px;
  font-weight: bold;
  line-height: 32px;
  margin: -5px 0;
  text-align: center;
  word-break: auto-phrase;
}

.footer-column {
  border-bottom: 1px solid #eaeaea;
  display: grid;
  gap: 64px 24px;
  grid-template-columns: repeat(auto-fill, minmax(min(160px, 33vw), 1fr));
  margin: 0 0 40px;
  padding: 0 0 64px;
}

.footer-column-in--2 {
  grid-column: span 2 / span 2;
}

.footer-column-ttl {
  align-items: end;
  display: flex;
  font-size: 20px;
  font-weight: bold;
  justify-content: space-between;
  line-height: 28px;
  margin: -4px 0;
  padding: 0 0 24px;
}

/* メニューのカラム */
.footer-column-menu {
  display: -webkit-flex;
  display: flex;
}

/*文字列のリンク*/
.footer-link {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.footer-link-block {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(min(160px, 40vw), 1fr));
}

.footer-link-block-txt {
  color: inherit;
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 22px;
  margin: -5px 0;
}

.footer-app-bns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* appsotreバッジ */
.footer-app-bns a {
  display: block;
  width: max-content;
}

.footer-app-bns a:hover {
  opacity: 0.8;
}

.footer-app-bns svg {
  height: 48px;
  width: auto;
}

/* 全てのタグ */
.footer-link-tag {
  align-items: center;
  color: inherit;
  display: flex;
  flex: 0 0 auto;
  font-size: 12px;
  gap: 4px;
  line-height: 22px;
  width: calc((100% - 24px) / 2);
}

.footer-link-tag-arrow {
  fill: currentColor;
  height: 8px;
  width: 8px;
}

/* SNS */
.footer-sns-title {
  color: #989898;
  font-size: 14px;
  padding: 14px 0 20px 0;
  text-align: center;
}

.footer-sns-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-sns-icon {
  align-items: center;
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height: 32px;
  line-height: 25px;
  padding: 0 12px;
  text-align: center;
  width: 160px;
}

.footer-sns-icon:hover {
  opacity: 0.8;
  text-decoration: none;
}

.footer-sns-icon--face {
  background: #0866ff;
}

.footer-sns-icon--tw {
  background: #000;
}

.footer-sns-icon--line {
  background: #06c755;
}

.footer-sns-icon--insta {
  background: linear-gradient(
    210.13deg,
    #b900b4 21.31%,
    #f50000 66.34%,
    #ffd521 117.22%
  );
}

.footer-sns-icon--fill {
  fill: #fff;
  flex-shrink: 0;
  height: 16px;
  width: 16px;
}

.footer-sns-text {
  flex-grow: 1;
}

/* 運営会社 利用規約 プライバシーポリシー  コピーライト */
.footer-bottom {
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-bottom-copy-txt {
  color: #707070;
  display: block;
  font-size: 10px;
  line-height: 18px;
  margin: -4px 0;
  white-space: nowrap;
}

.footer-bottom-link {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(min(160px, 40vw), 1fr));
}

.footer-bottom-link-text {
  color: #707070;
  display: block;
  font-size: 12px;
  line-height: 22px;
  margin: -5px 0;
}

.row-span-2 {
  grid-row: span 2 / span 2;
}

.grow {
  flex-grow: 1;
}

/* ============================================================
    smartphoneに切り替え
============================================================ */
.changeSP {
  background-color: #484848;
  padding: 10px 0 30px 0;
  width: 100%;
}

.changeSPbtn {
  background: url('../img/icon_smartPhone_36.gif') no-repeat 220px 12px #2f2f2f;
  border-radius: 2px;
  color: #fff;
  display: block;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin: auto;
  padding: 20px 0 20px 20px;
  text-align: center;
  width: 800px;
}

.changeSPbtn:hover {
  background-color: #626262;
  text-decoration: none;
}
/* ============================================================
    PAGETOP
============================================================ */

#page-top_jq {
  bottom: 20px;
  position: fixed;
  right: 20px;
  z-index: 1;
}

#page-top_jq a {
  background: url(../img/btn_pagetop.png) no-repeat;
  display: block;
  height: 50px;
  overflow: hidden;
  text-indent: -9999px;
  width: 50px;
}

#page-top_jq a:hover {
  opacity: 0.8;
}

/* ============================================================
    パンくず
============================================================ */
.bread-crumb-listBase {
  margin: 0 auto 48px;
  max-width: 1000px;
}

#bread-crumb-list {
  align-items: center;
  color: #707070;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 25px;
  margin: -5.5px 0;
}

#bread-crumb-list a {
  color: #222;
}

#gFooter #gFooterInner {
  width: 1000px !important;
}

/* ============================================================
    メンテナンスのお知らせ
============================================================ */
.maintenanceBase {
  background: rgb(87, 105, 121);
}

.maintenanceBaseIn {
  margin: auto;
  padding: 10px 0;
  width: 1000px;
}

.maintenanceBaseIn a {
  color: white;
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5;
}

/* ============================================================
   ページネーション全ページ共通
============================================================ */
.pagiBase {
  overflow: hidden;
  position: relative;
}

.pagiBase ul {
  display: -webkit-flex;
  display: flex;
}

.pagiBase ul li a {
  background: white;
  border-radius: 4px;
  color: #797979;
  display: block;
  font-size: 13px;
  height: 30px;
  line-height: 30px;
  margin-right: 10px;
  text-align: center;
  width: 30px;
}

.pagiBase a:hover {
  background: #f7c600;
  color: #fff;
  text-decoration: none;
}

.pageStay {
  background: #f7c600 !important;
  color: white !important;
}

.pageStay:hover {
  background: #f9d133 !important;
}

.pageIcon {
  fill: #f7c600;
  height: 30px;
  padding: 9px;
  width: 30px;
}

.pageIcon:hover {
  fill: #fff;
}

/* ============================================================
    問い合わせページへの誘導対応
============================================================ */
.toApplyLinkSide {
  align-items: center;
  background: #fff;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 1px 8px 0px rgba(0 0 0 / 12%);
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  position: fixed;
  right: 0;
  top: 165px;
  width: 64px;
  z-index: 5;
}

.toApplyLinkSide .toApplyLinkTxt {
  font-size: 14px;
  line-height: 25px;
  writing-mode: vertical-rl;
}

.toApplyLinkSide .toApplyLinkBtn {
  align-items: center;
  border-radius: 8px;
  display: flex;
  height: 32px;
  justify-content: center;
  position: relative;
  width: 100%;
}

.toApplyLinkSide .toApplyLinkBtn::after {
  border-color: transparent #fff;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  content: '';
  margin-right: -4px;
}

.toApplyLinkSide_Pos_Top .toApplyLinkSide {
  top: 95px;
}

.toApplyLinkSide_Pos_Project .toApplyLinkSide {
  top: 165px;
}
@media screen and (max-width: 1136px) {
  .toApplyLinkSide {
    display: none;
  }
}

/* ===================================================================
  ボタン色全ページ統一(全ボタンにこのクラスを適用出来るようにしていってください)
=================================================================== */
/*水色*/
.btncol_01 {
  background: #21bde1;
  color: white;
}

.btncol_01:hover {
  background: #4dcae7;
  text-decoration: none;
}
/*赤色*/
.btncol_02 {
  background: #f83591;
  color: white;
}

.btncol_02:hover {
  background: #f95da7;
  text-decoration: none;
}
/*黄色*/
.btncol_03 {
  background: #f7c600;
  color: white;
}

.btncol_03:hover {
  background: #f9d133;
  text-decoration: none;
}
/*緑色*/
.btncol_04 {
  background: #a0d468;
  color: white;
}

.btncol_04:hover {
  background: #b3dd86;
  text-decoration: none;
}
/*キャンセルボタン(灰色)*/
.btncol_05 {
  background: #c8c8c8;
  color: white;
}

.btncol_05:hover {
  background: #d3d3d3;
  text-decoration: none;
}
/*削除ボタン(赤)*/
.btncol_06 {
  background: #f53a67;
  color: white;
}

.btncol_06:hover {
  background: #f76185;
  text-decoration: none;
}
/*非活性*/
.btncol_07 {
  background: #f7f7f7;
  border: 1px solid #e3e3e3;
  color: #c7c7c7;
}
