@charset "UTF-8";
/**
 * header var
 * NOTE: ヘッダーの変数のみここに記載してください。その他のグローバル変数はbase.cssへ記載してください。
**/ :root {
  --header-padding-block: 28px;
  --header-padding-inline: 20px;
  --header-height: 144px;
  /*--header-logo-width: 112px;*/
  --header-logo-width: 88px;
  --header-icon-size: 88px;
}
@media (min-width: 1601px) {
  :root {
    --header-padding-block: 28px;
    --header-padding-inline: 20px;
    --header-height: 144px;
    /*--header-logo-width: 112px;*/
    --header-logo-width: 88px;
    --header-icon-size: 88px;
  }
}
@media screen and (max-width: 1600px) {
  :root {
    --header-padding-block: 28px;
    --header-padding-inline: 20px;
    --header-height: 144px;
    --header-logo-width: 88px;
    --header-icon-size: 88px;
  }
}
@media screen and (max-width: 959px) {
  :root {
    --header-padding-block: 16px;
    --header-padding-inline: 20px;
    --header-height: 144px;
    --header-logo-width: 64px;
    --header-icon-size: 72px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-padding-block: 16px;
    --header-padding-inline: 16px;
    --header-height: 96px;
    --header-logo-width: 52px;
    --header-icon-size: 64px;
  }
}
@media screen and (max-width: 560px) {
  :root {
    --header-padding-block: 8px;
    --header-padding-inline: 16px;
    --header-height: 72px;
    --header-logo-width: 52px;
    --header-icon-size: 56px;
  }
}
/**
 * header
 * NOTE:
**/
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: transparent;
  height: var(--header-height);
  width: 100%;
  padding-block: var(--header-padding-block);
  padding-inline: var(--header-padding-inline);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.3s ease;
}
@media screen and (max-width: 560px) {
  header {
    padding-inline: var(--header-padding-inline) 0;
  }
}
.header__logo {
  display: block;
  width: var(--header-logo-width);
  position: relative;
}
.header__logo > a {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.header__logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 10;
  object-fit: contain;
}
.head-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  width: calc(100% - var(--header-logo-width));
  padding-left: var(--header-padding-inline);
}
.head-nav > ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  padding: 0 var(--header-padding-inline) 0 0;
  gap: 1ex 3ex;
}
@media screen and (max-width: 1200px) {
  .head-nav > ul {
    gap: 1ex 3ex;
  }
}
@media screen and (max-width: 1024px) {
  .head-nav > ul {
    gap: 1ex 3ex;
  }
}
@media screen and (max-width: 959px) {
  .head-nav > ul {
    display: none;
  }
}
.head-nav > ul li {
  font-feature-settings: 'palt';
  position: relative;
}
.head-nav > ul li.head-message, .head-message {
  padding-right: 0.9em;
  margin-right: 1em;
}
.head-nav > ul li a {
  font-size: inherit;
  font-weight: inherit;
}
.head-nav > ul li .item__badge {
  position: absolute;
  right: -9px;
  top: -6px;
}
/* header button wrapper */
.head-nav .head-btn-wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  gap: 4px;
}
@media screen and (max-width: 1200px) {
  .head-nav .head-btn-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .head-nav .head-btn-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 560px) {
  .head-nav .head-btn-wrap {
    gap: 2px;
  }
}
/* header button */
.head-nav .head-btn {
  display: block;
  text-align: center;
  min-width: 104px;
  height: 48px;
  margin: 0;
}
@media (min-width: 1441px) {
  .head-nav .head-btn {
    min-width: 144px;
  }
}
@media (min-width: 1601px) {
  .head-nav .head-btn {
    min-width: 144px;
  }
}
@media screen and (max-width: 767px) {
  .head-nav .head-btn {
    min-width: 88px;
    height: 36px;
  }
}
@media screen and (max-width: 560px) {
  .head-nav .head-btn {
    min-width: 72px;
    height: 36px;
  }
}
.head-nav .head-btn a {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  border-radius: var(--site-radius-btn);
  border: 1px solid var(--site-c-lightgray);
  background: #fff;
  color: var(--site-c-main);
  font-size: 14px;
  font-feature-settings: 'palt';
  font-weight: 600;
  line-height: 1.2;
  width: 100%;
  height: 100%;
  padding: 0 1ex;
}
.head-nav .head-btn a:hover {
  background: var(--site-c-main);
  color: #fff;
}
.head-nav .head-btn span {
  display: block;
}
.head-nav .head-btn span + span {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .head-nav .head-btn a {
    font-size: 12px;
    padding: 0 0.5ex;
  }
  .head-nav .head-btn span + span {
    margin-top: 2px;
  }
}
@media screen and (max-width: 560px) {
  .head-nav .head-btn a {
    font-size: 11px;
    padding: 0 0.5ex;
  }
}
@media screen and (max-width: 400px) {
  .head-nav .head-btn a {
    font-size: 10.5px;
    padding: 0 0.25ex;
  }
}
/* header icon button */
.head-nav .head-icon {
  width: var(--header-icon-size);
}
.head-nav .head-icon a {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  color: var(--site-c-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06ex;
  text-align: center;
  white-space: nowrap;
}
.head-nav .head-icon [href*="login2"] {
  letter-spacing: -0.1ex;
}
.head-nav .head-icon a::before {
  content: '';
  display: block;
  box-shadow: 0 4px 8px 0 rgba(133, 90, 90, 0.5);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: calc(100% - 14px) auto;
  background-color: #fff;
  width: calc(var(--header-icon-size) - 24px);
  height: auto;
  margin: 0 0 1ex;
  aspect-ratio: 1 / 1;
}
.head-nav .head-icon [href*="register1"]::before {
  background-image: url('/common/images/icon-hospital.svg');
}
.head-nav .head-icon [href*="register2"]::before {
  background-image: url('/common/images/icon-user.svg');
}
.head-nav .head-icon [href*="login1"]::before {
  background-image: url('/common/images/icon-login.svg');
}
.head-nav .head-icon [href*="login2"]::before {
  background-image: url('/common/images/icon-login.svg');
}
@media screen and (max-width: 959px) {
  .head-nav .head-icon a {
    font-size: 11px;
  }
  .head-nav .head-icon a::before {
    background-size: calc(100% - 12px) auto;
    width: calc(var(--header-icon-size) - 16px);
  }
}
@media screen and (max-width: 767px) {
  .head-nav .head-icon a {
    font-size: 9px;
  }
  .head-nav .head-icon a::before {
    background-size: calc(100% - 8px) auto;
    width: calc(var(--header-icon-size) - 16px);
  }
}
/* header secondary navi */
/* TODO: 調整 */
/* NOTE: 調整 2025.05.14 */
.head-nav-secondary {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  padding-inline: var(--header-padding-inline);
  position: absolute;
  top: auto;
  right: 0;
  bottom: calc(var(--header-icon-size) * 0.5 - 2em);
  left: 0;
  z-index: 1;
  transform: translate(0, 100%);
}
@media screen and (max-width: 767px) {
  .head-nav-secondary {
    padding-inline: var(--header-padding-inline);
  }
}
@media screen and (max-width: 560px) {
  .head-nav-secondary {
    padding-inline: var(--header-padding-inline) 4px;
  }
}
/* button */
.head-nav-secondary .head-btn {
  display: block;
  text-align: center;
  width: auto;
  min-width: calc(var(--header-icon-size) * 2);
  height: 40px;
  margin: 0;
}
.head-nav-secondary .head-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--site-radius-btn);
  border: 1px solid var(--site-c-lightgray);
  background: #fff;
  color: var(--site-c-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  width: 100%;
  height: 100%;
  padding: 0 1ex;
}
.head-nav-secondary .head-btn a:hover {
  background: var(--site-c-main);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .head-nav-secondary .head-btn {
    height: 32px;
  }
  .head-nav-secondary .head-btn a {
    font-size: 12px;
  }
}
@media screen and (max-width: 560px) {
  .head-nav-secondary .head-btn {
    height: 28px;
  }
  .head-nav-secondary .head-btn a {
    font-size: 9px;
  }
}
/**
 * ハンバーガー
 * NOTE:
**/
#nav-drawer {
  width: var(--header-icon-size);
  margin: 0;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}
/*アイコンのスペース*/
#nav-open {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  color: var(--site-c-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06ex;
  width: var(--header-icon-size);
  cursor: pointer;
  position: relative;
  z-index: 1;
}
#nav-open::before {
  content: '';
  display: block;
  box-shadow: 0 4px 8px 0 rgba(133, 90, 90, 0.5);
  border-radius: 50%;
  background-image: url('/common/images/icon-menu.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: calc(100% - 14px) auto;
  background-color: #fff;
  width: calc(var(--header-icon-size) - 24px);
  height: auto;
  margin: 0 0 1ex;
  aspect-ratio: 1 / 1;
}
@media screen and (max-width: 959px) {
  #nav-open {
    font-size: 11px;
  }
  #nav-open::before {
    background-size: calc(100% - 12px) auto;
    width: calc(var(--header-icon-size) - 16px);
  }
}
@media screen and (max-width: 767px) {
  #nav-open {
    font-size: 9px;
  }
  #nav-open::before {
    background-size: calc(100% - 8px) auto;
    width: calc(var(--header-icon-size) - 16px);
  }
}
/*閉じる用の薄黒カバー*/
#nav-close {
  display: block;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--site-c-black);
  opacity: 0;
  transition: 0.4s ease-in-out;
  pointer-events: none;
}
/*チェックが入ったら表示*/
#nav-input:checked ~ #nav-close {
  opacity: 0.2;
  pointer-events: auto;
}
/*中身*/
[id="nav-content"] {
/*
  background-image: url('/common/images/bg-card-item-01.png');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 200px auto;
*/
  background-color: #fff;
  border-radius: var(--site-radius) 0 0 var(--site-radius);
  box-shadow: 6px 0 24px 0 rgba(0, 0, 0, 0);
  max-width: 360px;
  width: 90%;
  height: 100%;
  padding: var(--header-padding-block) var(--header-padding-inline);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  transform: translate(100%, 0);
  overflow: auto;
  transition: 0.3s ease-in-out;
  pointer-events: none;
}
[id="nav-content"]::before {
  content: '';
  display: block;
  border-radius: inherit;
  background-image: url('/common/images/bg-card-item-01.png');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 200px auto;
  background-color: transparent;
  width: 100%;
  height: 160px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
[id="nav-content"]::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
[id="nav-content"]::-webkit-scrollbar-thumb {
  background: #e1e1e1;
  border-radius: 6px;
  box-shadow: none;
}
[id="nav-content"]::-webkit-scrollbar-track {
  background: #f6f6f6;
  border-radius: 6px;
  box-shadow: none;
}
[id="nav-content"]::-webkit-scrollbar-corner {
  display: none;
}


/*チェックが入ったら表示*/
#nav-input:checked ~ [id="nav-content"] {
  box-shadow: 6px 0 24px 0 rgba(0, 0, 0, 0.1);
  transform: translate(0, 0);
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  [id="nav-content"] {
    max-width: 280px;
  }
}
.nav-drawer-close {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  color: #ddd;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06ex;
  width: var(--header-icon-size);
  margin: 0 0 20px auto;
  cursor: pointer;
}
.nav-drawer-close:hover {
  color: var(--site-c-main);
}
.nav-drawer-close > [class*="fa-"] {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: solid 1px #ddd;
  background-color: #fff;
  width: calc(var(--header-icon-size) - 24px);
  height: auto;
  margin: 0;
  aspect-ratio: 1 / 1;
}
.nav-drawer-close:hover > [class*="fa-"] {
  border-color: rgba(133, 90, 90, 0.5);
}
.nav-drawer-close > [class*="fa-"]::before {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .nav-drawer-close {
    font-size: 12px;
  }
  .nav-drawer-close > [class*="fa-"] {
    width: calc(var(--header-icon-size) - 16px);
  }
  .nav-drawer-close > [class*="fa-"]::before {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .nav-drawer-close {
    font-size: 12px;
  }
  .nav-drawer-close > [class*="fa-"] {
    width: calc(var(--header-icon-size) - 16px);
  }
  .nav-drawer-close > [class*="fa-"]::before {
    font-size: 20px;
  }
}
.nav-drawer__item {
  font-size: inherit;
  margin: 0;
}
.nav-drawer__item > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: inherit;
  font-size: inherit;
  padding: 0;
  gap: 0.75ex;/* NOTE: gapはアイコン設定時に必要になります。 */
  position: relative;
}

/* basic item icon style */
/* NOTE: アイコン追加の際は、以下にもセレクタを追加する必要があります */
.nav-drawer__item > [href$="register1/"]::before,
.nav-drawer__item > [href$="register2/"]::before,
.nav-drawer__item > [href$="login1/"]::before,
.nav-drawer__item > [href$="login2/"]::before,
.nav-drawer__item > [href$="m_o1/"]::before,
.nav-drawer__item > [href$="m_o2/"]::before,
.nav-drawer__item > [href$="/search1/"]::before,
.nav-drawer__item > [href$="/search2/"]::before,
.nav-drawer__item > [href$="m_search1/"]::before,
.nav-drawer__item > [href$="m_search2/"]::before,
.nav-drawer__item > [href$="m_top1/"]::before,
.nav-drawer__item > [href$="m_top2/"]::before,
.nav-drawer__item > [href$="m_point1/"]::before,
.nav-drawer__item > [href$="m_point2/"]::before,
.nav-drawer__item > [href$="m_kakin/"]::before,
.nav-drawer__item > [href$="m_kakin1/"]::before,
.nav-drawer__item > [href$="m_kakin2/"]::before,
.nav-drawer__item > [href$="m_kyuyo1/"]::before,
.nav-drawer__item > [href$="m_kyuyo2/"]::before {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1em;
  height: 1em;
}

/* each item icon style */
/* NOTE: URLに合わせたアイコンを設定してください。 */
.nav-drawer__item > [href$="register1/"]::before {
  background-image: url("/common/images/icon-hospital-c-bold.svg");
}
.nav-drawer__item > [href$="register2/"]::before {
  background-image: url("/common/images/icon-user-c-bold.svg");
}
.nav-drawer__item > [href$="login1/"]::before {
  background-image: url("/common/images/icon-login-c-bold.svg");
}
.nav-drawer__item > [href$="login2/"]::before {
  background-image: url("/common/images/icon-login-c-bold.svg");
}
.nav-drawer__item > [href$="m_o1/"]::before {
  background-image: url("/common/images/icon-boshu.svg");
}
.nav-drawer__item > [href$="m_o2/"]::before {
  background-image: url("/common/images/icon-schedule.svg");
}
.nav-drawer__item > [href$="/search1/"]::before {
  background-image: url("/common/images/icon-search-partnar.svg");
}
.nav-drawer__item > [href$="/search2/"]::before {
  background-image: url("/common/images/icon-search-hospital.svg");
}
.nav-drawer__item > [href$="m_search1/"]::before {
  background-image: url("/common/images/icon-search-partnar.svg");
}
.nav-drawer__item > [href$="m_search2/"]::before {
  background-image: url("/common/images/icon-search-hospital.svg");
}
.nav-drawer__item > [href$="m_top1/"]::before {
  background-image: url("/common/images/icon-job.svg");
}
.nav-drawer__item > [href$="m_top2/"]::before {
  background-image: url("/common/images/icon-job.svg");
}
.nav-drawer__item > [href$="m_point1/"]::before,
.nav-drawer__item > [href$="m_point2/"]::before {
  background-image: url("/common/images/icon-point-c.svg");
}
.nav-drawer__item > [href$="m_kakin/"]::before,
.nav-drawer__item > [href$="m_kakin1/"]::before,
.nav-drawer__item > [href$="m_kakin2/"]::before {
  background-image: url("/common/images/icon-table.svg");
}
.nav-drawer__item > [href$="m_kyuyo1/"]::before,
.nav-drawer__item > [href$="m_kyuyo2/"]::before {
  background-image: url("/common/images/icon-money-c.svg");
}

.nav-drawer__list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06ex;
  margin: 0;
  padding: 0;
  gap: 1ex;
}
.nav-drawer__list .nav-drawer__item {
  padding: 0 1ex;
}
.nav-drawer__list + .nav-drawer__list {
  border-top: solid 1px var(--site-c-lightgray);
  margin-top: 12px;
  padding-top: 12px;
}
@media screen and (max-width: 767px) {
  .nav-drawer__list {
    font-size: inherit;
  }
}
.nav-drawer__list .nav-drawer__item > a::after {
  content: '\f105';
  color: var(--site-c-main);
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%) scale(0.75);
  transform-origin: right center;
}
.nav-drawer__list-small {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06ex;
  margin: 0;
  padding: 32px 0 0;
  gap: 1.5ex 3ex;
  position: relative;
}
* + .nav-drawer__list-small {
  margin-top: 32px;
}
.nav-drawer__list-small::before {
  content: '';
  display: block;
  background-image: url('/common/images/bg-default.jpg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% auto;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.nav-drawer__list-small .nav-drawer__item {
  white-space: nowrap;
}
/**
 * バッジ
 * NOTE:
**/
.item__badge {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 20px;
  background: rgba(236, 13, 13, .8);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  min-width: 20px;
  width: auto;
  height: 20px;
  padding: 5px;
  position: absolute;
  right: -20px;
  top: -2px;
  z-index: 1;
  transition: all 0.4s ease 0.2s;
}
a:has(.item__badge) {
  position: relative;
}
.btn > a .item__badge, .btn > button .item__badge, .btn > span .item__badge {
  right: -4px;
  top: -4px;
}
@media screen and (max-width: 1024px) {
  .item__badge {
    right: -35px;
  }
}
/**
 * 下部固定ボタン
 * NOTE:
**/
.bottom-btn {
  box-shadow: 0 -2px 10px 0 rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .85);
  text-align: center;
  width: 100%;
  padding: 8px;
  position: fixed;
  bottom: 0;
  z-index: 100;
}
@media only screen and (min-width: 561px) {
  .bottom-btn {
    display: none;
  }
}
.bottom-btn > div {
  margin: 0 auto;
}
.bottom-btn .box-btn, .bottom-btn .btnBox {
  margin: 0 auto;
}
.bottom-btn .btn {
  margin-top: 0;
}
.bottom-btn .btn-box__2 {
  max-width: 100%
}
.bottom-btn .btn-box__2 .btn {
  flex-basis: 49%;
  max-width: none;
  margin: 0;
}
/**
 * footer
 * NOTE:
**/
footer {
  color: var(--site-c-black);
  width: 100%;
  padding: 0;
}
@media screen and (max-width: 767px) {
  footer {
    width: 100%;
  }
}
.foot-logo {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  margin: 0 0 64px;
}
.foot-logo > span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  width: 100%;
  margin: 0 0 64px;
}
.foot-logo img {
  width: 96px;
  /* design size */
  width: 72px;
  height: auto;
  aspect-ratio: 7 / 10;
}
@media screen and (max-width: 767px) {
  .foot-logo {
    margin: 0 0 32px;
  }
  .foot-logo > span {
    font-size: 11px;
    margin: 0 0 32px;
  }
  .foot-logo img {
    width: 72px;
    height: auto;
    aspect-ratio: 7 / 10;
  }
}
.foot-nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  gap: 2em 1.5em;
}
* + .foot-nav {
  margin-top: 2em;
}
.foot-nav li {
  font-size: 16px;
  font-weight: 400;
}
.foot-nav a {
  color: var(--site-c-black);
}
.foot-nav a:hover {
  color: var(--site-c-main);
}
.foot-subnav {
  max-width: none;
  width: 100%;
}
.foot__txt {}
@media screen and (max-width: 767px) {
  .foot-nav li {
    font-size: 13px;
  }
}
.foot-bottom {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  background-image: url('/common/images/bg-default.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: transparent;
  color: var(--site-c-black);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  height: 160px;
  margin: 64px 0 0;
}
@media screen and (max-width: 767px) {
  .foot-bottom {
    font-size: 11px;
    height: 96px;
    margin: 32px 0 0;
  }
}
/**
 * パンくず
 * NOTE:
**/
.breadcrumb {
  background: transparent;
  /* NOTE: backgroundは、bootstrapのスタイル解除目的 */
  font-size: 13px;
  padding: calc(var(--site-subpage-bg-offset) + 40px) 0 0;
}
@media screen and (max-width: 959px) {
  .breadcrumb {
    padding: calc(var(--site-subpage-bg-offset) + 32px) 0 0;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: calc(var(--site-subpage-bg-offset) + 20px) 0 0;
  }
}
@media screen and (max-width: 560px) {
  .breadcrumb {
    padding: calc(var(--site-subpage-bg-offset) + 24px) 0 0;
  }
}
.breadcrumb__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: inherit;
  font-weight: 600;
  width: 100%;
  height: 40px;
}
.breadcrumb__item::before {
  content: '\f105';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding: 0 1ex;
  opacity: 0.66;
}
.breadcrumb__item:first-child::before {
  display: none;
}
.breadcrumb__item a {
  color: var(--site-c-main);
}
@media screen and (max-width:767px) {
  .breadcrumb__list {
    display: block;
    color: #999;
    font-size: 10px;
    font-weight: 400;
    line-height: 36px;
    white-space: nowrap;
    height: 36px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto;
  }
  .breadcrumb__item {
    display: inline;
    flex: 0 0 40%;
  }
  .breadcrumb__item::before {
    opacity: 0.5;
  }
}
/**
 * 検索条件
 * NOTE:
**/
.search {
  padding-bottom: 0;
}
.subpage-head + .search {
  padding-top: 0;
  padding-bottom: 0;
}
.search__area {
  border-bottom: 1px solid var(--site-c-lightgray);
  padding-bottom: 20px;
}
.search__area--second {
  background: #fafafa;
  padding-top: 20px;
}
.search__word, .search__sort, .search__filter {
  --search-ui-gap: 8px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  font-size: 14px;
  width: 100%;
  max-width: var(--site-container-width);
  margin: 0 auto;
  padding: 0 var(--site-container-padding-inline);
  gap: var(--search-ui-gap);
}
.search__word.search__word--center, .search__sort.search__sort--center, .search__filter.search__filter--center {
  justify-content: center;
  align-content: center;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .search__word, .search__sort, .search__filter {
    --search-ui-gap: 8px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    gap: var(--search-ui-gap);
  }
}
@media screen and (max-width: 767px) {
  .search__word, .search__sort, .search__filter {
    --search-ui-gap: 8px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    gap: var(--search-ui-gap);
  }
}
.search__ttl {
  font-weight: 700;
  margin: 0;
}
.search__item {
  margin: 0;
}
/*
.search__word .search__ttl {}
.search__word .search__item {}
@media screen and (max-width: 959px) {
  .search__word .search__ttl {}
  .search__word .search__item {}
}
@media screen and (max-width: 767px) {
  .search__word .search__ttl {}
  .search__word .search__item {}
}
*/
/*
.search__sort .search__ttl {}
.search__sort .search__item {}
@media screen and (max-width: 959px) {
  .search__sort .search__ttl {}
  .search__sort .search__item {}
}
@media screen and (max-width: 767px) {
  .search__sort .search__ttl {}
  .search__sort .search__item {}
}
*/
/*
.search__filter .search__ttl {}
.search__filter .search__item {}
@media screen and (max-width: 959px) {
  .search__filter .search__ttl {}
  .search__filter .search__item {}
}
@media screen and (max-width: 767px) {
  .search__filter .search__ttl {}
  .search__filter .search__item {}
}
*/
/* .search__item input style */
/* .select */
.search .select select {
  box-shadow: none;
  padding: 0 2.75em 0 1em;
}
.search .select::after {
  border-radius: 0 var(--site-radius-btn) var(--site-radius-btn) 0;
  background: var(--site-c-main);
  color: #fff;
  width: 2em;
  height: var(--site-input-height);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  transform: translate(0, 0);
  transform-origin: right center;
}
@media screen and (max-width: 767px) {
  .search .select, .search .select select {
    font-size: 13px;
    width: 100%;
  }
}
/* input tag */
.search__item > [type="date"], .search__item > [type="search"], .search__item > [type="number"], .search__item > [type="text"] {
  border-radius: var(--site-radius-btn);
  border: 1px solid var(--site-c-lightgray);
  background: #fff;
  font-size: 16px;
  max-width: 500px;
  width: 100%;
  height: var(--site-input-height);
  padding: 0 1em;
}
@media screen and (max-width: 767px) {
  .search__item > [type="date"], .search__item > [type="search"], .search__item > [type="number"], .search__item > [type="text"] {
    font-size: 13px;
  }
}
.search__item > [type="submit"], .search__item > [onclick*="submit"], .search__item > [onClick*="submit"] {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
  border-radius: var(--site-radius-btn);
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
  font-weight: 400;
  width: 100%;
  height: var(--site-input-height);
  padding-inline: 1.5em;
}
.search__submit {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .search__item > [type="submit"], .search__item > [onclick*="submit"], .search__item > [onClick*="submit"] {
    font-size: 13px;
  }
  .search__submit {
    margin-left: 0;
  }
}
/* NOTE: ボタンのカプセルスタイル */
.search__radio-capsule {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .search__radio-capsule {
    width: 100%;
  }
}
.search__radio-capsule > .btn {
  display: block;
  box-shadow: none;
  border-radius: 0;
  border: none;
  padding: 0;
  flex: 1 1;
}
.search__radio-capsule > * + .btn {
  margin-left: -1px;
}
.search__radio-capsule > .btn > a, .search__radio-capsule > .btn > [type="submit"], .search__radio-capsule > .btn > [type="button"], .search__radio-capsule > .btn > button, .search__radio-capsule > .btn > span {
  border-radius: 0;
  box-shadow: none;
  font-weight: 400;
  min-width: 96px;
  padding-inline: 1ex;
}
.search__radio-capsule > .btn > a::after, .search__radio-capsule > .btn > [type="submit"]::after, .search__radio-capsule > .btn > [type="button"]::after, .search__radio-capsule > .btn > button::after, .search__radio-capsule > .btn > span::after {
  display: none;
}
.search__radio-capsule > .btn:first-child > a, .search__radio-capsule > .btn:first-child > [type="submit"], .search__radio-capsule > .btn:first-child > [type="button"], .search__radio-capsule > .btn:first-child > button, .search__radio-capsule > .btn:first-child > span {
  border-radius: var(--site-radius-btn) 0 0 var(--site-radius-btn);
}
.search__radio-capsule > .btn:last-child > a, .search__radio-capsule > .btn:last-child > [type="submit"], .search__radio-capsule > .btn:last-child > [type="button"], .search__radio-capsule > .btn:last-child > button, .search__radio-capsule > .btn:last-child > span {
  border-radius: 0 var(--site-radius-btn) var(--site-radius-btn) 0;
}
@media screen and (max-width: 767px) {
  .search__radio-capsule > .btn > a, .search__radio-capsule > .btn > [type="submit"], .search__radio-capsule > .btn > [type="button"], .search__radio-capsule > .btn > button, .search__radio-capsule > .btn > span {
    font-size: 13px;
    min-width: 0;
  }
}
/* NOTE: ボタンのカプセルスタイル(ul.mlistXXp) */
.search__radio-capsule > [class*="mlist"] {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.search__radio-capsule > [class*="mlist"] > li {
  display: block;
  box-shadow: none;
  border-radius: 0;
  border: none;
  padding: 0;
  flex: 1 1;
}
.search__radio-capsule > [class*="mlist"] > * + li {
  margin-left: -1px;
  position: relative;
}
.search__radio-capsule > [class*="mlist"] > li > [type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.search__radio-capsule > [class*="mlist"] > li > label {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  min-width: 96px;
  width: 100%;
  height: 35px;
  padding-inline: 1ex;
  transition: box-shadow 0.2s ease, border 0.2s ease, background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
.search__radio-capsule > [class*="mlist"] > li > :checked + label {
  border: 1px solid var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
}
.search__radio-capsule > [class*="mlist"] > li:first-child > label {
  border-radius: var(--site-radius-btn) 0 0 var(--site-radius-btn);
}
.search__radio-capsule > [class*="mlist"] > li:last-child > label {
  border-radius: 0 var(--site-radius-btn) var(--site-radius-btn) 0;
}
.search__radio-capsule > [class*="mlist"] > li > label::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .search__radio-capsule > [class*="mlist"] > li > label {
    font-size: 13px;
    min-width: 0;
  }
}
/**
 * mypage 給与管理
 * NOTE:
**/
.mypTable__searchArea {
  padding: 20px;
  background: #fafafa;
}
.mypTable__searchArea .search__filter {
  padding: 0;
  gap: 15px 20px;
}
.mypTable__ttl {
  width: 100%;
  max-width: var(--site-container-width);
  margin: 0 auto;
  padding: 15px 20px;
  background: var(--site-c-lightgray);
  font-size: 28px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.2ex;
}
.search__calendar-ttl {
  display: inline-block;
  font-weight: 700;
  position: relative
}
.search__calendar {
  --search-ui-gap: 8px;
  display: flex;
  align-items: center;
  gap: var(--search-ui-gap);
}
.search__item > .form-calendar {
  padding: .8rem 1.2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  border-radius: var(--site-radius-btn);
  border: 1px solid var(--site-c-lightgray);
  background: #fff;
  color: var(--site-c-black);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.resultMeisai__filter {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
}
.resultMeisai__filter.resultMeisai__filter--center {
  justify-content: center;
  align-content: center;
  align-items: center;
}
.resultMeisai__ttl {
  font-weight: 700
}
@media screen and (max-width: 959px) {
  .resultMeisai__filter {
    --search-ui-gap: 8px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    gap: var(--search-ui-gap);
  }
}
@media screen and (max-width: 767px) {
  .mypTable__ttl {
    font-size: 20px
  }
  .search__calendar-ttl {
    min-width: 60px;
  }
  .resultMeisai__filter {
    --search-ui-gap: 8px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    gap: var(--search-ui-gap);
  }
}
/**
 * modal
 * NOTE:
**/
/****************modal****************/
.modal-drawer, [id="modal-drawer"] {
  width: 180px;
  /*box-shadow: 0 2px 4px rgba(0, 0, 0, .1);*/
  /*border-radius: 6px;*/
  margin: 0 auto;
}
/* NOTE: body直下に .modal-drawerを配置した場合は、z-indexを body>.wrapよりも上に */
body > .modal-drawer, body > [id="modal-drawer"] {
  position: relative;
  z-index: 20;
}
@media only screen and (max-width: 959px) {
  .modal-drawer, [id="modal-drawer"] {
    width: 110px;
    font-size: 12px
  }
}
.modal-unshown {
  display: none;
}
.modal__btn {
  max-width: 180px;
  margin-top: 0;
  margin-left: auto;
}
.modal__btn > span {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
  border-radius: var(--site-radius-btn);
  border: solid 1px var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
  text-align: center;
  width: 100%;
  height: var(--site-btn-height);
  padding-inline: 1.5em;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal__btn > span:hover {
  border: solid 1px var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
  opacity: 0.9;
}
.modal-open, [id="modal-open"] {
  display: block
}
.modal-close, [id="modal-close"] {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
  z-index: 1000
}
.modal-content, [id="modal-content"] {
  border-radius: var(--site-radius-btn);
  border: 20px solid #fff;
  background: #fff;
  width: 900px;
  height: 80%;
  position: fixed;
  top: 10%;
  left: calc((100% - 900px) / 2);
  padding: 20px;
  transform: translate(0, 0);
  opacity: 0;
  z-index: 1001;
  overflow: auto;
  pointer-events: none;
}
.modal-switch:checked ~ .modal-content, [id="modal-input"]:checked ~ [id="modal-content"] {
  box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
  opacity: 1;
  pointer-events: auto;
}
.modal-content::-webkit-scrollbar, [id="modal-content"]::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.modal-content::-webkit-scrollbar-thumb, [id="modal-content"]::-webkit-scrollbar-thumb {
  background: var(--site-c-main);
  border-radius: 6px;
  box-shadow: none;
}
.modal-content::-webkit-scrollbar-track, [id="modal-content"]::-webkit-scrollbar-track {
  background: var(--site-c-lightgray);
  border-radius: 6px;
  box-shadow: none;
}
.modal-content::-webkit-scrollbar-corner, [id="modal-content"]::-webkit-scrollbar-corner {
  display: none;
}
@media only screen and (max-width: 959px) {
  .modal-content, [id="modal-content"] {
    width: 80%;
    left: 10%;
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .modal-content, [id="modal-content"] {
    border: 10px solid #fff;
    width: 98%;
    left: 1%;
    padding: 10px 0;
  }
}
.modal-switch:checked ~ .modal-close, [id="modal-input"]:checked ~ [id="modal-close"] {
  display: block;
  opacity: .5
}
.modal-content .table th, .modal-content .table td, [id="modal-content"] .table th, [id="modal-content"] .table td {
  padding: 10px 20px
}
@media only screen and (max-width: 767px) {
  .modal-content .table td, [id="modal-content"] .table td {
    padding: 10px 10px 15px
  }
}
.modal-content .c-head {
  margin: 0 0 12px;
}
.modal-content .c-head__ttl {
  font-size: 28px;
  line-height: 1.4;
}
.modal-content .c-head__txt {
  font-size: 14px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .modal-content .c-head__ttl {
    font-size: 20px;
  }
  .modal-content .c-head__txt {
    font-size: 14px;
  }
}

.modal-content .formset {
  box-shadow: none;
  border-radius: 0;
  border: none;
  background: transparent;
  margin-bottom: 32px;
  padding: 0;
}
.modal-content .formset__item {
  /* NOTE: 2025.06.14 ozawa ページごとに不具合が起きる可能性があるので .modal-content .formset__itemは base.cssへ記述をお願いします */
  /* NOTE: 詳しくは、base.css .formset__itemを参照ください */
}

.modal-content .formset__ttl {
  /* NOTE: 2025.06.14 ozawa .formset__itemの上部余白の調整は.formset__ttlで行わず base.cssの .modal-content .formset__itemへ記述をお願いします */
  /* NOTE: 詳しくは、base.css .formset__itemを参照ください */
  /*padding-bottom: 12px;*/
}
.modal-content-tuuti .formset__ttl {
  min-width: 320px;
}
.modal-content .formset__input {
  /* NOTE: 2025.06.14 ozawa .formset__itemの上部余白の調整は.formset__inputで行わず base.cssの .modal-content .formset__itemへ記述をお願いします */
  /* NOTE: 詳しくは、base.css .formset__itemを参照ください */
  /*padding-bottom: 12px;*/
}
.modal-content .formset__img {
  margin-block: 32px -32px;
}

/* モーダル個別 */
/* スマホ表示時に1ページにおさめる */
@media only screen and (max-width: 767px) {
  .modal-formpopup .modal-content.modal-content-forsp {
    height: 84svh;
    top: 8svh;
  }
  /* NOTE: 2025.06.14 ozawa ページごとに不具合が起きる可能性があったためコメントアウトしました */
  /* NOTE: --formset-ttl-widthを他で参照して整合性を取っているので、--formset-ttl-widthの調整で解決が望ましいです。 */
  /* NOTE: 詳しくは、base.css .formset__itemを参照ください */
  /*
  .modal-content-forsp .formset__item {
    flex-flow: row nowrap;
    margin: 0 auto;
    gap: 0;
  }
  .modal-content-forsp .formset__ttl {
    width: 80px;
    min-width: inherit;
  }
  .modal-content-forsp .formset__input {
    width: calc(100% - 80px);
  }
  */
}

/* モーダル個別 */
/* カレンダーで使用しているモーダル */
.modal-formpopup .modal-content, .modal-formpopup [id="modal-content"] {
  height: auto;
  min-height: 600px;
  top: calc((100% - 600px) / 2);
}
@media only screen and (max-width: 959px) {
  .modal-formpopup .modal-content, .modal-formpopup [id="modal-content"] {
    height: auto;
    min-height: 600px;
    top: calc((100% - 600px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  .modal-formpopup .modal-content, .modal-formpopup [id="modal-content"] {
    height: 80%;
    min-height: 0;
    top: 10%;
  }
}

/* モーダル内部 ボタンラッパー */
.modal-content .box-btn {
  max-width: 560px;
  margin-inline: auto;
}
/* 戻るボタンの矢印の位置と向きを調整 */
/* NOTE: 暫定処置のため、ボタン数の仕様変更があった場合、以下のスタイルで対応不可になります。 */
.modal-drawer .box-btn:has(.btn:nth-child(2):last-child) .btn:first-child > a::after, .modal-drawer .box-btn:has(.btn:nth-child(2):last-child) .btn:first-child > [type="submit"]::after, .modal-drawer .box-btn:has(.btn:nth-child(2):last-child) .btn:first-child > [type="button"]::after, .modal-drawer .box-btn:has(.btn:nth-child(2):last-child) .btn:first-child > button::after, .modal-drawer .box-btn:has(.btn:nth-child(2):last-child) .btn:first-child > span::after {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 1.5em;
  transform: translate(100%, -50%) scaleX(-1);
  transform-origin: left center;
}
/* モーダル内部 submitなど（ボタンラッパー風に配置する） */
.modal-content>.btn.btn__attract, [id="modal-content"]>.btn.btn__attract {
  display: flex;
  margin: 40px auto;
}

/**
 *
 * 汎用モーダル（jsモーダル）
 * NOTE: .modal-drawerとは互換性がないので、コードを混在させないように注意してください。
 * .modalに「__部位名」が続くのが特徴です。
 * .modal-drawerは部位はハイフン区切り（＝子要素を部位として取り扱っていない）という違いがあります。
 *
**/
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  /*background: #ccc;*/
  z-index: 1000;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.33);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  border-radius: var(--site-radius-btn);
  background: #fff;
  line-height: 2;
  text-align: center;
  width: 60%;
  height: 75%;
  padding: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 20000;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .modal__content {
    width: calc(100% - 10px * 2);
    padding: 10px;
    line-height: 35px;
  }
}
/* close button */
.modal__close {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020.414%2020.413%22%3E%20%3Cg%20transform%3D%22translate(-1073.293%20-406.293)%22%3E%20%3Crect%20fill%3D%22%23fff%22%20width%3D%2227.494%22%20height%3D%221.375%22%20transform%3D%22translate(1074.266%20406.293)%20rotate(45)%22%20%2F%3E%20%3Crect%20fill%3D%22%23fff%22%20width%3D%2227.494%22%20height%3D%221.375%22%20transform%3D%22translate(1073.293%20425.734)%20rotate(-45)%22%20%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40% auto;
  background-color: var(--site-c-main);
  color: #fff;
  text-decoration: none;
  text-align: center;
  width: 50px;
  height: 50px;
  margin: 10px 0;
  border-radius: 50%;
  position: absolute;
  z-index: 1000;
  top: -25px;
  right: -25px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .modal__close {
    width: 40px;
    height: 40px;
    margin: 0;
    top: -8px;
    right: -8px;
  }
}
.modal__close button, .modal__close a {
  width: 100%;
  height: 100%;
}
/* iframe */
.modal__iframe {
  width: 100%;
  height: 100%;
}
iframe#kiyaku {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .modal__iframe {
    width: 100%;
    height: calc(100% - 50px);
  }
  iframe#kiyaku {
    width: 100%;
    height: calc(100% - 50px);
  }
}
/**
 * modal utility
 * NOTE:
**/
/* link list */
.modal-list-links {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
}
.modal-list-links > li {
  border-top: 1px solid var(--site-c-lightgray);
  border-bottom: 1px solid var(--site-c-lightgray);
  padding: 12px;
}
.modal-list-links > li + li {
  border-top: none;
  border-bottom: 1px solid var(--site-c-lightgray);
}
.modal-list-links > li > a {
  display: block;
  position: relative;
}
.modal-list-links > li > a::before {
  content: '\f105';
  color: var(--site-c-main);
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%) scale(0.75);
  transform-origin: right center;
}
/**
 * result
 * NOTE:
**/
/* list section */
.result {}
/* list wrapper */
.result__list {
  --result-item-width: 280px;
  /* NOTE: max-widthに指定するので注意 */
  --result-list-gap-row: 80px;
  --result-list-gap-col: 56px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
  gap: var(--result-list-gap-row) var(--result-list-gap-col);
}
@media only screen and (max-width: 1300px) {
  .result__list {
    --result-list-gap-row: 64px;
    --result-list-gap-col: 40px;
    gap: var(--result-list-gap-row) var(--result-list-gap-col);
  }
}
@media only screen and (max-width: 959px) {
  .result__list {
    --result-list-gap-row: 64px;
    --result-list-gap-col: 40px;
    gap: var(--result-list-gap-row) var(--result-list-gap-col);
  }
}
@media only screen and (max-width: 767px) {
  .result__list {
    --result-list-gap-row: 32px;
    --result-list-gap-col: 8px;
    gap: var(--result-list-gap-row) var(--result-list-gap-col);
  }
}
/* list item */
.result__item {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  border-radius: var(--site-radius);
  border: none;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 200px auto;
  background-color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  max-width: var(--result-item-width);
  width: calc((100% - var(--result-list-gap-col) * 2) / 3);
  margin: 0;
  padding: 40px 20px 24px;
  position: relative;
  overflow: hidden;
}
.result__item--benable {
  background-color: var(--site-c-disabledgray);
}
.result__item--benable, .result__item--gray-out {
  filter: grayscale(1);
}
.result__item--benable:hover, .result__item--gray-out:hover {
  filter: grayscale(0);
}
@media only screen and (max-width: 959px) {
  .result__item {
    width: calc((100% - var(--result-list-gap-col) * 2) / 3);
    padding: 40px 20px 24px;
  }
}
@media only screen and (max-width: 767px) {
  .result__item {
    width: calc((100% - var(--result-list-gap-col) * 1) / 2);
    padding: 32px 12px 16px;
  }
}
.result__item:nth-child(6n+1) {
  background-image: url('/common/images/bg-card-item-01.png');
}
.result__item:nth-child(6n+2) {
  background-image: url('/common/images/bg-card-item-02.png');
}
.result__item:nth-child(6n+3) {
  background-image: url('/common/images/bg-card-item-03.png');
}
.result__item:nth-child(6n+4) {
  background-image: url('/common/images/bg-card-item-04.png');
}
.result__item:nth-child(6n+5) {
  background-image: url('/common/images/bg-card-item-05.png');
}
.result__item:nth-child(6n+6) {
  background-image: url('/common/images/bg-card-item-06.png');
}
.result__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.result__img img {
  border-radius: var(--site-radius-btn);
  max-width: 192px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.result__img .item--clinic-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
}
.result__img .item--circle {
  border-radius: 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}
.result__img:has([src*="s.gif"])::before {
  content: '';
  display: block;
  border-radius: var(--site-radius-btn);
  background-image: url('/common/images/no-image.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #f9eff2;
  max-width: 210px;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}
.result__img:has([src*="s.gif"]):has(.item--clinic-image)::before {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
}
.result__img:has([src*="s.gif"]):has(.item--circle)::before {
  border-radius: 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}
.result__img:has([src*="s.gif"]) img {
  display: none;
}
@media only screen and (max-width: 767px) {
  .result__img img {
    max-width: 210px;
    width: 100%;
    height: auto;
  }
  .result__img:has([src*="s.gif"])::before {
    max-width: 210px;
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 560px) {
  .result__img img {
    max-width: 160px;
    width: 100%;
    height: auto;
  }
  .result__img:has([src*="s.gif"])::before {
    max-width: 160px;
    width: 100%;
    height: auto;
  }
}
.result__rate {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: var(--site-radius);
  border: 1px solid var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  min-width: 96px;
  width: fit-content;
  height: 32px;
  margin: 0;
  padding: 0 1ex;
}
.result__point {
  font-size: 18px;
  line-height: 18px;
  margin-left: 0.5ex;
}
.result__public {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: var(--site-radius);
  border: 1px solid var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
  font-size: 14px;
  font-weight: 700;
  min-width: 96px;
  width: fit-content;
  height: 32px;
  margin: 1rem auto;
  padding: 0 1ex;
}
.result__period {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: var(--site-radius);
  border: 1px solid var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
  font-size: 14px;
  font-weight: 700;
  min-width: 96px;
  width: fit-content;
  height: 32px;
  margin: 1rem auto;
  padding: 0 1ex;
}
.result__desc {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0;
}
* + .result__desc {
  margin-top: 20px;
}
.result__name {
  display: block;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}
.result__name .item--name {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  font-feature-settings: 'palt';
  line-height: 1.25;
  vertical-align: baseline;
}
.result__name .item--suffix {
  display: inline-block;
  font-size: inherit;
  font-weight: 400;
  font-feature-settings: 'palt';
  vertical-align: baseline;
}
@media only screen and (max-width: 767px) {
  .result__name {
    font-size: 9px;
    line-height: 16px;
  }
  .result__name .item--name {
    font-size: 16px;
    line-height: 1.25;
  }
}
.result__ttl {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  display: -webkit-box;
  align-content: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 2lh;
}
.result__ttl:has(a) {
  display: block;
}
.result__ttl > a {
  display: -webkit-box;
  align-content: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 2lh;
}
.result__txt {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  height: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.result__bottom {
  width: 100%;
}
* + .result__bottom {
  margin-top: 12px;
}
.result__profile {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.result__profile li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  vertical-align: middle;
}
.result__profile img {
  width: 18px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  vertical-align: middle;
}
.result__profile i {
  color: #f4c3d2;
  vertical-align: middle;
}
.result__profile [class*="fa-"]::before {
  transform: scale(1);
}
.result__profile span {
  vertical-align: middle;
}
.result__profile * + span {
  margin-left: 0.75ex;
}
@media only screen and (max-width: 767px) {
  .result__profile li {
    font-size: 13px;
  }
  .result__profile img {
    width: 15px;
    height: auto;
  }
}
@media only screen and (max-width: 359px) {
  .result__profile li {
    font-size: 12px;
  }
  .result__profile img {
    width: 13px;
    height: auto;
  }
}
.btn.result__btn {
  max-width: none;
  width: 100%;
  margin: 0;
}
* + .btn.result__btn {
  margin-top: 12px;
}
.result__fav {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  filter: grayscale(1) contrast(0);
  opacity: 0.25;
}
.result__fav:hover {
  filter: grayscale(0);
  opacity: 1;
}
.result__fav.is--active {
  filter: grayscale(0);
  opacity: 1;
}
.result__fav.is--active:hover {
  filter: grayscale(1) contrast(0);
  opacity: 0.25;
}
.result__fav a {
  display: block;
  opacity: 1;
}
.result__fav a:focus, .result__fav a:hover {
  opacity: 1;
}
.result__fav i {
  display: block;
  background-image: url('/common/images/img-fav-active.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 32px;
  height: auto;
  aspect-ratio: 1 / 1;
}
@media screen and (max-width: 767px) {
  .result__fav {
    top: 12px;
    right: 12px;
  }
  .result__fav i {
    width: 20px;
  }
}
/**
 * m_o1, m_o2
 * NOTE: 時給や職種などのスタイル
**/
.result__jikyu {
  width: 100%;
  margin: 12px 0 0;
}
.result__jikyu-ttl {
  font-weight: 700;
}
.result__jikyu-desc {
  border-radius: var(--site-radius-small);
  border: solid 4px var(--site-c-main-light);
  padding: 18px 16px 16px;
}
* + .result__jikyu-desc {
  margin-top: 6px;
}
.result__jikyu-desc > dt {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1ex;
}
.result__jikyu-desc:nth-of-type(2) > dt {
  color: #FFA7A7;
}
.result__jikyu-desc > dd {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1ex;
  text-align: right;
}
.result__jikyu-desc .item--num {
  line-height: inherit;
}
.result__jikyu-desc .item--unit {
  font-size: 14px;
  line-height: inherit;
}
.result__jikyu-desc * + .item--unit {
  margin-left: 0.75ex;
}
@media only screen and (max-width: 767px) {
  .result__jikyu-desc > dd {
    font-size: 24px;
  }
  .result__jikyu-desc .item--unit {
    font-size: 12px;
  }
}
.result__record {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  width: 100%;
  margin: 12px 0 0;
}
.result__record-desc {}
.result__record-desc > dt {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1ex;
  text-align: center;
}
.result__record-desc > dt > i {
  font-size: 3em;
  margin: 0 0 12px;
}
.result__record-desc > dt > span {
  font-size: inherit;
}
.result__record-desc > dt > i > img {
  width: 1em;
  height: 1em;
  object-fit: contain;
}
.result__record-desc > dd {
  font-size: 36px;
  font-weight: 600;
  font-feature-settings: 'palt';
  line-height: 36px;
  text-align: center;
  padding-left: 22px;
}
.result__record-desc > * + dd {
  margin-top: 8px;
}
.result__record-desc .item--num {
  line-height: inherit;
}
.result__record-desc .item--unit {
  font-size: 14px;
  line-height: inherit;
}
.result__record-desc * + .item--unit {
  margin-left: 0.75ex;
}
@media only screen and (max-width: 767px) {
  .result__record-desc > dt {
    font-size: 12px;
  }
  .result__record-desc > dt > i {
    font-size: 2.5em;
  }
  .result__record-desc > dd {
    font-size: 28px;
    line-height: 28px;
    padding-left: 22px;
  }
  .result__record-desc .item--unit {
    font-size: 12px;
    line-height: inherit;
  }
}
.result__job {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  width: 100%;
  margin: 0;
  gap: 6px;
}
*+.result__job {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .result__job {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }
}
.result__job-desc {
  flex: 1 1;
  border-radius: var(--site-radius-small);
  border: solid 4px var(--site-c-main-light);
  max-width: calc((100% - 6px * 2) / 3);
  padding: 12px;
}
@media only screen and (max-width: 959px) {
  .result__job-desc {
    max-width: none;
    padding: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .result__job-desc {
    flex: auto;
    padding: 12px;
  }
}
.result__job-desc > dt {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1ex;
  text-align: left;
}
.result__job-desc > dt i {
  color: var(--site-c-main-light);
  margin-right: 0.75ex;
}
.result__job-desc > dt img {
  width: 1em;
  height: 1em;
  object-fit: contain;
}
.result__job-desc > dt > span {}
.result__job-desc > dd {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1ex;
  text-align: right;
}
.result__job-desc > * + dd {
  margin-top: 12px;
}
.result__job-desc .item--txt {
  line-height: inherit;
}
.result__job-desc .item--num {
  line-height: inherit;
}
.result__job-desc .item--unit {
  font-size: 14px;
  line-height: inherit;
}
.result__job-desc * + .item--unit {
  margin-left: 0.25ex;
}
.result__job-desc .item--sep {
  font-size: 14px;
  line-height: inherit;
}
.result__job-desc .item--sep + * {
  margin-left: 0.25ex;
}
@media only screen and (max-width: 959px) {
  .result__job-desc > dt {
    font-size: 16px;
  }
  .result__job-desc > dd {
    font-size: 22px;
    font-feature-settings: 'palt';
  }
  .result__job-desc .item--sep, .result__job-desc .item--unit {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .result__job-desc > dt {
    font-size: 16px;
  }
  .result__job-desc > dd {
    font-size: 22px;
  }
  .result__job-desc > * + dd {
    margin-top: 8px;
  }
  .result__job-desc .item--sep, .result__job-desc .item--unit {
    font-size: 12px;
  }
}
/**
 * カード型リスト
 * NOTE:
**/
.card__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .card__list {
    gap: 16px 8px;
  }
}
.card__item {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  border-radius: var(--site-radius-btn);
  border: 1px solid var(--site-c-lightgray);
  background: #fff;
  width: calc((100% - 16px * 3) / 4);
  /* 4col */
  margin: 0;
  padding: 16px;
  position: relative;
}
.card__item--gray-out {
  background-color: var(--site-c-disabledgray);
  filter: grayscale(1);
}
.card__item--gray-out:hover {
  filter: grayscale(0);
}
@media screen and (max-width: 767px) {
  .card__item {
    width: calc((100% - 8px * 1) / 2);
    /* 2col */
  }
}
.card__img {
  width: 100%;
}
.card__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
@media screen and (max-width:959px) {}
@media screen and (max-width:767px) {
  .card__img img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}
.card__desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}
.card__ttl {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 3em;
}
.card__ttl.item--content-fit {
  display: block;
  -webkit-box-orient: auto;
  -webkit-line-clamp: auto;
  overflow: visible;
  height: auto;
}
.card__profile {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}
.card__profile li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  vertical-align: middle;
}
.card__profile i {
  color: #f4c3d2;
  vertical-align: middle;
}
.card__profile img {
  width: 18px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  vertical-align: middle;
}
.card__profile * + span {
  margin-left: 0.75ex;
}
@media screen and (max-width:959px) {}
@media screen and (max-width:767px) {
  .card__profile li {
    font-size: 13px;
  }
  .card__profile img {
    width: 15px;
  }
}
.card__btn .btn, .card__btn .btn--small {
  max-width: none;
}
.card__btn {}
.card__btn .btn--small:first-child {
  margin-bottom: 5px;
}
.card__btn .btn:only-child, .card__btn .btn--small:only-child {
  width: 100%;
}
.card__item .btnBox .btn--small {}
@media screen and (max-width:959px) {}
@media screen and (max-width:767px) {}
/**
 * スレッド型リスト
 * NOTE:
**/
.thread__list {
  margin-bottom: 30px;
  padding: 40px;
  border: 1px solid var(--site-c-lightgray);
  border-radius: var(--site-radius-btn);
}
.thread__item {
  border-top: 1px solid var(--site-c-lightgray)
}
.thread__item:last-child {
  border-bottom: 1px solid var(--site-c-lightgray)
}
.thread__item a {
  padding: 15px;
  display: block;
}
@media screen and (max-width: 767px) {
  .thread__list {
    padding: 10px 0;
    margin-bottom: 20px;
  }
}
/**
 * pagination
 * NOTE:
**/
.pagination {
  display: block;
  /* NOTE: bootstrapのスタイル解除目的 */
  font-size: inherit;
  padding: 60px 0 0;
}
@media only screen and (max-width: 767px) {
  .pagination {
    font-size: 13px;
    padding: 20px 0 0;
  }
}
@media only screen and (max-width: 320px) {
  .pagination {
    font-size: 11px;
  }
}
.pagination__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.pagination span, .pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: solid 2px var(--site-c-gray);
  background: transparent;
  color: var(--site-c-gray);
  font-size: inherit;
  font-weight: 500;
  width: 48px;
  height: 48px;
  margin: 0;
}
.pagination span:last-child, .pagination a:last-child {
  margin: 0;
}
.pagination span {
  border: solid 2px transparent;
  background: transparent;
  color: var(--site-c-main);
}
.pagination .current, .pagination a:hover {
  border: solid 2px var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .pagination span, .pagination a {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 320px) {
  .pagination span, .pagination a {
    width: 36px;
    height: 36px;
  }
}
/**
 * outline-head
 * NOTE: 詳細ページのヘッダー部分
**/
/* outline header */
.outline-head {
  padding: 56px 0 96px;
}
.outline-head__item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 959px) {
  .outline-head {
    padding: 56px 0 96px;
  }
}
@media screen and (max-width: 767px) {
  .outline-head {
    padding: 56px 0 56px;
  }
}
@media screen and (max-width: 560px) {
  .outline-head {
    padding: 24px 0 56px;
  }
  .outline-head__item {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }
}
.outline-head__img {
  width: 320px;
}
.outline-head__img img {
  border-radius: var(--site-radius-small);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.outline-head__img .item--clinic-image {
  aspect-ratio: 4 / 3;
}
.outline-head__img .item--circle {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}
@media screen and (max-width: 959px) {
  .outline-head__img {
    width: 33.33%;
  }
}
@media screen and (max-width: 767px) {
  .outline-head__img {
    width: 33.33%;
  }
}
@media screen and (max-width: 560px) {
  .outline-head__img {
    max-width: 220px;
    width: 100%;
    margin: 0 auto;
  }
}
.outline-head__desc {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: calc(100% - 320px - var(--site-container-padding-inline));
  margin: 0 0 0 var(--site-container-padding-inline);
}
@media screen and (max-width: 959px) {
  .outline-head__desc {
    width: calc(100% - 33.33% - var(--site-container-padding-inline));
    margin: 0 0 0 var(--site-container-padding-inline);
  }
}
@media screen and (max-width: 767px) {
  .outline-head__desc {
    width: calc(100% - 33.33% - var(--site-container-padding-inline));
    margin: 0 0 0 var(--site-container-padding-inline);
  }
}
@media screen and (max-width: 560px) {
  .outline-head__desc {
    width: auto;
    margin: 24px 0 0;
  }
}
.outline-head__top {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 0 20px;
}
.outline-head__top > * {
  width: 100%;
}
.outline-head__bottom {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 20px 0 0;
  padding: 0;
}
@media screen and (max-width: 959px) {}
@media screen and (max-width: 767px) {}
.outline-head__name {
  font-size: 36px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.1ex;
  padding: 0 80px 0 0;
}
.outline-head__name .item--name {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.outline-head__name .item--suffix {
  font-size: 0.5em;
  font-weight: inherit;
  line-height: inherit;
}
@media screen and (max-width: 959px) {
  .outline-head__name {
    font-size: 32px;
    line-height: 32px;
    padding: 0 80px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .outline-head__name {
    font-size: 28px;
    line-height: 28px;
    padding: 0 64px 0 0;
  }
}
@media screen and (max-width: 560px) {
  .outline-head__name {
    font-size: 22px;
    line-height: 22px;
    text-align: center;
    padding: 0;
  }
}
.outline-head__login-date {
  color: var(--site-c-gray);
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
  margin: 8px 0 0;
}
@media screen and (max-width: 560px) {
  .outline-head__login-date {
    text-align: center;
  }
}
.outline-head__profile {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin: 8px 0 0;
}
.outline-head__profile li {
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
  vertical-align: middle;
}
.outline-head__profile img {
  width: 1em;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  vertical-align: middle;
  transform: scale(1.25);
  transform-origin: left center;
  margin: 0 4px 0 0;
}
.outline-head__profile i {
  vertical-align: middle;
}
.outline-head__profile span {
  vertical-align: middle;
}
.outline-head__profile * + span {
  margin-left: 0.75ex;
}
@media screen and (max-width: 560px) {
  .outline-head__profile {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.outline-head__jikyu {
  width: 33.33%;
  margin: 24px 0 0;
}
.outline-head__ttl ~ .outline-head__jikyu {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .outline-head__jikyu {
    width: 100%;
    margin: 32px 0 0;
  }
  .outline-head__ttl ~ .outline-head__jikyu {
    margin-top: 12px;
  }
}
.outline-head__jikyu-ttl {
  font-weight: 700;
}
.outline-head__jikyu-desc {
  border-radius: var(--site-radius-small);
  border: solid 4px var(--site-c-main-light);
  padding: 18px 16px 16px;
}
* + .outline-head__jikyu-desc {
  margin-top: 6px;
}
.outline-head__jikyu-desc > dt {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1ex;
}
.outline-head__jikyu-desc:nth-of-type(2) > dt {
  color: #FFA7A7;
}
.outline-head__jikyu-desc > dd {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1ex;
  text-align: right;
}
.outline-head__jikyu-desc .item--num {
  line-height: inherit;
}
.outline-head__jikyu-desc .item--unit {
  font-size: 14px;
  line-height: inherit;
}
.outline-head__jikyu-desc * + .item--unit {
  margin-left: 0.75ex;
}
@media only screen and (max-width: 767px) {
  .outline-head__jikyu-desc > dd {
    font-size: 24px;
  }
  .outline-head__jikyu-desc .item--unit {
    font-size: 12px;
  }
}
.outline-head__record {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  width: calc(66.66% - 20px);
  margin: 24px 0 0;
}
.outline-head__ttl ~ .outline-head__record {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .outline-head__record {
    width: 100%;
    margin: 32px 0 0;
  }
  .outline-head__ttl ~ .outline-head__record {
    margin-top: 12px;
  }
}
.outline-head__record-desc {}
.outline-head__record-desc > dt {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1ex;
  text-align: center;
}
.outline-head__record-desc > dt > i {
  font-size: 3em;
  margin: 0 0 12px;
}
.outline-head__record-desc > dt > span {
  font-size: inherit;
}
.outline-head__record-desc > dt > i > img {
  width: 1em;
  height: 1em;
  object-fit: contain;
}
.outline-head__record-desc > dd {
  font-size: 36px;
  font-weight: 600;
  font-feature-settings: 'palt';
  line-height: 36px;
  text-align: center;
  padding-left: 22px;
}
.outline-head__record-desc > * + dd {
  margin-top: 8px;
}
.outline-head__record-desc .item--num {
  line-height: inherit;
}
.outline-head__record-desc .item--unit {
  font-size: 14px;
  line-height: inherit;
}
.outline-head__record-desc * + .item--unit {
  margin-left: 0.75ex;
}
@media only screen and (max-width: 767px) {
  .outline-head__record-desc > dt {
    font-size: 12px;
  }
  .outline-head__record-desc > dt > i {
    font-size: 2.5em;
  }
  .outline-head__record-desc > dd {
    font-size: 28px;
    line-height: 28px;
    padding-left: 22px;
  }
  .outline-head__record-desc .item--unit {
    font-size: 12px;
    line-height: inherit;
  }
}
.outline-head__job {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  width: 100%;
  margin: 24px 0 0;
  gap: 6px;
}
.outline-head__ttl ~ .outline-head__job {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .outline-head__job {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    width: 100%;
    margin: 32px 0 0;
  }
  .outline-head__ttl ~ .outline-head__job {
    margin-top: 12px;
  }
}
.outline-head__job-desc {
  flex: 1 1;
  border-radius: var(--site-radius-small);
  border: solid 4px var(--site-c-main-light);
  max-width: 33.33%;
  padding: 18px 16px 16px;
}
@media only screen and (max-width: 959px) {
  .outline-head__job-desc {
    max-width: none;
    padding: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .outline-head__job-desc {
    flex: auto;
    padding: 18px 16px 16px;
  }
}
.outline-head__job-desc > dt {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1ex;
  text-align: left;
}
.outline-head__job-desc > dt i {
  color: var(--site-c-main-light);
  margin-right: 0.75ex;
}
.outline-head__job-desc > dt img {
  width: 1em;
  height: 1em;
  object-fit: contain;
}
.outline-head__job-desc > dt > span {}
.outline-head__job-desc > dd {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1ex;
  text-align: right;
}
.outline-head__job-desc > * + dd {
  margin-top: 12px;
}
.outline-head__job-desc .item--txt {
  line-height: inherit;
}
.outline-head__job-desc .item--num {
  line-height: inherit;
}
.outline-head__job-desc .item--unit {
  font-size: 14px;
  line-height: inherit;
}
.outline-head__job-desc * + .item--unit {
  margin-left: 0.25ex;
}
.outline-head__job-desc .item--sep {
  font-size: 14px;
  line-height: inherit;
}
.outline-head__job-desc .item--sep + * {
  margin-left: 0.25ex;
}
@media only screen and (max-width: 959px) {
  .outline-head__job-desc > dt {
    font-size: 16px;
  }
  .outline-head__job-desc > dd {
    font-size: 22px;
    font-feature-settings: 'palt';
  }
  .outline-head__job-desc .item--sep, .outline-head__job-desc .item--unit {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .outline-head__job-desc > dt {
    font-size: 16px;
  }
  .outline-head__job-desc > dd {
    font-size: 22px;
  }
  .outline-head__job-desc > * + dd {
    margin-top: 8px;
  }
  .outline-head__job-desc .item--sep, .outline-head__job-desc .item--unit {
    font-size: 12px;
  }
}
.outline-head__ttl {
  color: var(--site-c-black);
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  line-height: 1.25;
  letter-spacing: 0.1ex;
  margin: 24px 0 0;
  padding: 0 0 0.25em;
}
@media only screen and (max-width: 959px) {
  .outline-head__ttl {
    font-size: 20px;
    margin: 32px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .outline-head__ttl {
    font-size: 18px;
    text-align: center;
    margin: 32px 0 0;
  }
}
.outline-head__txt {
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: 0.1ex;
  margin: 8px 0 0;
}
@media screen and (max-width: 560px) {
  .outline-head__txt {
    margin: 24px 0 0;
  }
}
.outline-head__rate {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--site-radius-btn);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  background: var(--site-c-main);
  color: #fffc20;
  font-size: 10px;
  font-weight: 700;
  width: 96px;
  height: 28px;
  margin: 8px 0 0;
}
.outline-head__point {
  font-size: 14px;
  font-weight: inherit;
  padding-left: 2px;
}
.outline-head__info {
  display: flex;
  justify-content: flex-start;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  margin: 8px 0 0;
  gap: 1ex;
}
.outline-head__info li {
  color: #535d64;
  line-height: inherit;
  margin: 0;
}
@media screen and (max-width: 959px) {}
@media screen and (max-width: 767px) {
  .outline-head__info {}
  .outline-head__info li {}
  .outline-head__info li span {}
}
/* .outline-head ブラックリスト */
.outline-head__blacklist {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  text-align: right;
  width: 100%;
  margin: 0;
  gap: 1.5em;
}
.outline-head__blacklist a {
  display: inline-flex;
  align-items: center;
  color: var(--site-c-silvergray);
  gap: 0.75ex;
}
.outline-head__blacklist a:hover {
  color: var(--site-c-gray);
}
@media screen and (max-width: 959px) {}
@media screen and (max-width: 767px) {
  .outline-head__blacklist {
    font-size: 12px;
    margin: 24px 0 0;
  }
}
@media screen and (max-width: 560px) {}
/* .outline-head 各種ボタン群 */
.outline-head__btnarea {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  margin: 0;
  gap: 8px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 959px) {}
@media screen and (max-width: 767px) {}
@media screen and (max-width: 560px) {
  .outline-head__btnarea {
    top: -20px;
    right: 0;
  }
}
.outline-head__btn:nth-child(n), .outline-head__btn {
  max-width: none;
  margin: 0;
}
.outline-head__btn:nth-child(n) > [type="button"], .outline-head__btn > [type="button"], .outline-head__btn:nth-child(n) > [type="submit"], .outline-head__btn > [type="submit"], .outline-head__btn:nth-child(n) > button, .outline-head__btn > button, .outline-head__btn:nth-child(n) > span, .outline-head__btn > span, .outline-head__btn:nth-child(n) > a, .outline-head__btn > a {}
@media screen and (max-width: 959px) {}
@media screen and (max-width: 767px) {
  .outline-head__btn:nth-child(n), .outline-head__btn {}
  .outline-head__btn a {}
}
.outline-head__btn.btn--fav {
  font-size: 40px;
}
.outline-head__btn.btn--msg {
  font-size: 40px;
}
@media screen and (max-width: 959px) {
  .outline-head__btn.btn--fav {
    font-size: 32px;
  }
  .outline-head__btn.btn--msg {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .outline-head__btn.btn--fav {
    font-size: 32px;
  }
  .outline-head__btn.btn--msg {
    font-size: 32px;
  }
}
@media screen and (max-width: 560px) {
  .outline-head__btn.btn--fav {
    font-size: 32px;
  }
  .outline-head__btn.btn--msg {
    font-size: 32px;
  }
}
/**
 * NOTE: チャットのスタイルは、style.chat.cssへ移動しました。
**/
/**
 * outline
 * NOTE: 詳細ページのタブ
**/
.outline-nav {
  margin: 0 0 48px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .outline-nav {
    margin: 0;
  }
}
.outline-nav__list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: solid 6px var(--site-c-main);
  text-align: center;
  gap: 4px;
}
.outline-nav__list > li {
  font-size: inherit;
  font-weight: 400;
  line-height: 1;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .outline-nav__list > li {
    font-size: 13px;
  }
}
.outline-nav__list > li > * {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  border-radius: var(--site-radius-btn) var(--site-radius-btn) 0 0;
  border-style: solid solid none;
  border-width: 1px;
  border-color: var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
  text-align: center;
  height: 100%;
  padding-block: 0.75em;
  padding-inline: 32px;
}
.outline-nav__list > li > *:hover {
  border-color: var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
  opacity: 0.5;
}
.outline-nav__list > li > .is--active {
  border-color: var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
}
.outline-nav__list > li > .is--active:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 959px) {
  .outline-nav__list > li > * {
    padding-inline: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .outline-nav__list > li > * {
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    padding-block: 1em;
    padding-inline: 0;
  }
}
/**
 * outline
 * NOTE: 詳細ページの本文
**/
/* outline section */
.outline {
  --outline-padding-inline: 32px;
  --outline-th-width: 230px;
  --outline-td-padding-block: 8px;
  padding: var(--site-section-padding-block) 0;
}
@media only screen and (max-width: 959px) {
  .outline {
    --outline-padding-inline: 32px;
    --outline-td-padding-block: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .outline {
    --outline-padding-inline: 20px;
    --outline-th-width: 172px;
    --outline-td-padding-block: 8px;
  }
  .outline + .outline {
    padding: 0 0 var(--site-section-padding-block);
  }
}
/* 詳細ページ 2カラムレイアウト */
.outline__2col {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: var(--site-container-padding-inline);
}
.outline__2col-item {
  width: calc((100% - var(--site-container-padding-inline)) / 2);
}
@media only screen and (max-width: 959px) {
  .outline__2col-item {
    width: 100%;
  }
}
.outline__item {
  padding: 0;
}
/* 詳細ページ 各セクションのタイトル */
.outline__ttl {
  border-bottom: solid 4px var(--site-c-main);
  color: var(--site-c-black);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  line-height: 1.25;
  letter-spacing: 0.1ex;
  margin: 50px 0 20px;
  padding: 0 0 0.25em;
}
@media only screen and (max-width: 959px) {
  .outline__ttl {
    font-size: 20px;
    margin: 64px 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .outline__ttl {
    border-bottom-width: 3px;
    font-size: 18px;
    margin: 40px 0 12px;
  }
}
/* 詳細ページ 各セクションのタイトルやテーブル後に続く文章 */
/* NOTE: p以外にも様々な要素の内包が可能 */
.outline__txt {
  text-align: left;
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
  padding: 0 var(--outline-padding-inline);
}
* + .outline__txt {
  margin-top: 20px;
}
@media only screen and (max-width: 959px) {
  * + .outline__txt {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  * + .outline__txt {
    margin-top: 12px;
  }
}
.outline__ttl + .outline__txt {
  margin-top: 0;
}
.outline__txt > * + * {
  margin-top: 1em;
}
/* 詳細ページ リード文（タイトル下のPR文章などに使用） */
.outline__lead {
  display: block;
  font-size: 20px;
  letter-spacing: 0.1ex;
  margin: 0 20px;
}
* + .outline__lead {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .outline__lead {
    font-size: 16px;
    margin: 0;
  }
  * + .outline__lead {
    margin-top: 1em;
  }
}
/* 詳細ページ テーブル */
.outline .tableset {
  display: block;
  border: none;
  background: transparent;
  width: 100%;
  /* padding: 0 var(--outline-padding-inline); */
}
.outline * + .tableset {
  margin-top: 20px;
}
.outline .tableset thead, .outline .tableset tbody {
  display: block;
}
.outline .tableset__list:nth-child(n), .outline .tableset__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: solid 1px var(--site-c-lightgray);
  text-align: left;
  width: 100%;
  gap: var(--outline-td-padding-block) 0;
  margin: 0;
  padding: 0 0 var(--outline-td-padding-block);
}
.outline * + .tableset__list:nth-child(n), .outline * + .tableset__list {
  margin-top: var(--outline-td-padding-block);
  padding: var(--outline-td-padding-block) 0;
}
.outline .tableset__ttl {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  text-align: left;
  font-weight: 400;
  font-size: inherit;
  font-feature-settings: 'palt';
  line-height: inherit;
  width: var(--outline-th-width);
  padding: 0 1em 0 0;
}
.outline .tableset__ttl:has(.c-icon) {
  padding-left: 1.75em;
  position: relative;
}
.outline .tableset__ttl .c-icon {
  /* NOTE: アイコンに不具合がでますので、以下プロパティ以外の指定は× */
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transform: translate(0, 8.3333%);
}
.outline .tableset__txt {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  text-align: left;
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
  word-break: break-all;
  word-wrap: break-word;
  width: calc(100% - var(--outline-th-width));
  padding: 0;
}
.outline .tableset__txt.has--gap {
  gap: 10px;
}
.outline .tableset__txt.has--gap-h {
  gap: 0 10px;
}
.outline .tableset__txt.has--gap-v {
  gap: 10px 0;
}
.outline .tableset__txt img {
  border-radius: var(--site-radius-btn);
  width: 180px;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .outline .tableset__txt img {
    width: 120px;
    height: auto;
  }
}
.outline .tableset__txt ul {}
.outline .tableset__txt ul li {
  display: inline-flex;
  margin: 0 10px 10px 0;
}
/* NOTE: 以下、.tablesetへ クラス名付与で特殊なスタイル */
/* tableset wage */
.outline .tableset.item--wage, .outline .tableset.item--wage tbody {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  width: 100%;
}
.outline .tableset.item--wage .tableset__list:nth-child(n), .outline .tableset.item--wage .tableset__list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  border: none;
  width: 50%;
  margin: 0;
  padding: 0;
}
.outline .tableset.item--wage * + .tableset__list:nth-child(n), .outline .tableset.item--wage * + .tableset__list {
  margin: 0;
  padding: 0;
}
.outline .tableset.item--wage .tableset__list:nth-child(even) {
  border-left: solid 1px var(--site-c-lightgray);
}
.outline .tableset.item--wage .tableset__ttl, .outline .tableset.item--wage .tableset__txt {
  width: 100%;
}
.outline .tableset.item--wage .tableset__list:nth-child(odd) .tableset__ttl, .outline .tableset.item--wage .tableset__list:nth-child(odd) .tableset__txt {
  padding: 0 var(--outline-padding-inline) 0 0;
}
.outline .tableset.item--wage .tableset__list:nth-child(even) .tableset__ttl, .outline .tableset.item--wage .tableset__list:nth-child(even) .tableset__txt {
  padding: 0 0 0 var(--outline-padding-inline);
}
/* tableset career */
.outline .tableset.item--career, .outline .tableset.item--career tbody {
  display: block;
  width: 100%;
}
.outline .tableset.item--career .tableset__list:nth-child(n), .outline .tableset.item--career .tableset__list {
  display: block;
  border: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.outline .tableset.item--career * + .tableset__list:nth-child(n), .outline .tableset.item--career * + .tableset__list {
  margin-top: 20px;
  padding: 0;
}
.outline .tableset.item--career .tableset__ttl, .outline .tableset.item--career .tableset__txt {
  display: block;
  width: auto;
}
.outline .tableset.item--career .tableset__ttl {
  margin-bottom: 8px;
}
.outline .tableset.item--career ul {
  display: block;
}
.outline .tableset.item--career li {
  display: block;
  line-height: 1.75;
  margin: 0;
  padding: 0 0 0 var(--outline-padding-inline);
  position: relative;
}
.outline .tableset.item--career li::before {
  content: '━';
  color: var(--site-c-main);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.outline .tableset.item--career li + li {
  margin-top: 4px;
}
/* table skill */
.outline .tableset.item--skill .tableset__list:nth-child(n), .outline .tableset.item--skill .tableset__list {
  border-bottom-style: dashed;
}
.outline .tableset.item--skill .tableset__ttl {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  width: calc(100% - 96px);
  padding: 0 0 0 var(--outline-padding-inline);
  position: relative;
}
.outline .tableset.item--skill .tableset__ttl::before {
  content: '';
  display: block;
  border-radius: 50%;
  background: var(--site-c-main);
  width: 4px;
  height: auto;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 50%;
  left: calc(var(--outline-padding-inline) * 0.5);
  z-index: 1;
  transform: translate(-50%, -50%);
}
.outline .tableset.item--skill .tableset__txt {
  justify-content: flex-end;
  align-items: flex-start;
  text-align: right;
  width: 96px;
  padding: 0 var(--outline-padding-inline) 0 0;
}
@media screen and (max-width: 767px) {
  .outline .tableset.item--skill .tableset__ttl {
    width: 100%;
  }
  .outline .tableset.item--skill .tableset__txt {
    width: 100%;
  }
}
/* table history */
.outline .tableset.item--history .tableset__list:nth-child(n), .outline .tableset.item--history .tableset__list {
  border-bottom-style: dashed;
}
.outline .tableset.item--history .tableset__ttl {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  width: 112px;
  padding: 0 0 0 var(--outline-padding-inline);
  position: relative;
}
.outline .tableset.item--history .tableset__txt {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  width: calc(100% - 112px);
  padding: 0 var(--outline-padding-inline) 0 0;
}
@media screen and (max-width: 767px) {
  .outline .tableset.item--history .tableset__ttl {
    width: 100%;
  }
  .outline .tableset.item--history .tableset__txt {
    width: 100%;
  }
}
/**
 * 詳細ページ 持ち物
 * NOTE:
**/
.outline__bring {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  color: var(--site-c-main);
  font-weight: 400;
  font-size: inherit;
  line-height: 1;
  text-align: left;
  padding: 0;
}
.outline__bring.disable {
  color: var(--site-c-disabledgray);
}
.outline .outline__bring img, .outline__bring img {
  width: 1.125em;
  height: auto;
  margin: 0;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  vertical-align: middle;
  filter: invert(55%) sepia(5%) saturate(4726%) hue-rotate(314deg) brightness(113%) contrast(107%);
}
.outline__bring.disable img {
  filter: invert(100%) sepia(21%) saturate(1308%) hue-rotate(196deg) brightness(114%) contrast(83%);
}
.outline .outline__bring [src*="icon-drink"], .outline__bring [src*="icon-drink"] {
  transform: translate(0, -6.666%) scale(1.125);
}
.outline .outline__bring [src*="icon-eat"], .outline__bring [src*="icon-eat"] {
  transform: translate(0, -6.666%) scale(1.125);
}
.outline .outline__bring [class*="fa"], .outline__bring [class*="fa"] {
  font-size: 1.125em;
  margin: 0;
  vertical-align: middle;
  color: var(--site-c-main);
  transform: scale(0.85);
  filter: none;
}
.outline__bring.disable [class*="fa"] {
  color: var(--site-c-disabledgray);
}
.outline__bring * + span {
  margin-left: 0.75ex;
  margin-top: -0.25ex;
}
/**
 * 詳細ページ プロフィール
 * NOTE:
**/
.outline__profile {
  border-radius: var(--site-radius-btn);
  background: #fff7f7;
  margin: 0;
  padding: 20px;
}
* + .outline__profile {
  margin-top: 20px;
}
.outline__profile-ttl {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}
.outline__profile-ttl:has(.c-icon) {
  position: relative;
  padding-left: 1.75em;
}
.outline__profile-ttl .c-icon {
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transform: translate(0, 8.3333%);
}
@media screen and (max-width: 767px) {
  .outline__profile-ttl {
    margin: 0 0 20px;
  }
}
.outline__profile * + .tableset {
  margin-top: 16px;
}
.outline__profile .tableset__list:nth-child(n), .outline__profile .tableset__list {
  border-bottom: none;
}
.outline__profile * + .tableset__list:nth-child(n), .outline__profile * + .tableset__list {
  border-top: solid 1px #ededed;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .outline__profile * + .tableset {
    margin-top: 8px;
  }
}
/**
 * 詳細ページ gallery
 * NOTE:
**/
.outline__gallery ul {
  /* flex ver */
  /*
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 8px;
*/
  columns: 280px;
  column-gap: 8px;
}
.outline__gallery li {
  /* flex ver */
  /*width: calc( (100% - 8px * 5) / 6 );*/
  margin: 0;
}
.outline__gallery img {
  border-radius: var(--site-radius-btn);
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}
@media only screen and (max-width: 959px) {
  .outline__gallery {
    columns: 240px;
  }
}
@media only screen and (max-width: 767px) {
  .outline__gallery {
    columns: 176px;
  }
}
/**
 * 詳細ページ カレンダー
 * NOTE:
**/
.outline-calendar {
  --calender-c-sut: #699DFF;
  --calender-c-sun: #FFA7A7;
  --calender-c-link: #00C8D9;
  --calender-c-bg-cell: #FAFAFA;
  --calender-c-bg-label: #F9EFF2;
  --calender-cell-label-height: 24px;
  --calender-gap-row: 8px;
  --calender-gap-col: 2px;
  border-radius: var(--site-radius);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  max-width: calc(var(--site-container-width) / 2);
  margin: 0 auto;
  padding: 40px 6px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 959px) {
  .outline-calendar {
    padding: 32px 6px;
  }
}
@media only screen and (max-width: 767px) {
  .outline-calendar {
    font-size: 12px;
    padding: 20px 4px;
  }
}
@media only screen and (max-width: 400px) {
  .outline-calendar {
    font-size: 3vw;
    margin-inline: calc(var(--site-container-padding-inline) * -1 + 4px);
  }
}
.outline-calendar::before {
  content: '';
  display: block;
  border: none;
  background-image: url('/common/images/bg-card-item-01.png');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  width: 200px;
  aspect-ratio: 5 / 3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.outline-calendar::after {
  content: '';
  display: block;
  border: none;
  background-image: url('/common/images/bg-card-item-02.png');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  width: 200px;
  aspect-ratio: 5 / 3;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transform: scaleX(-1);
  pointer-events: none;
}
.outline-calendar > * {
  position: relative;
  z-index: 9;
}
.outline-calendar__ttl {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1ex;
  line-height: 1;
  text-align: center;
  margin: 0 0 28px;
}
@media only screen and (max-width: 959px) {
  .outline-calendar__ttl {
    margin: 0 0 24px;
  }
}
@media only screen and (max-width: 767px) {
  .outline-calendar__ttl {
    margin: 0 0 20px;
  }
}
.outline-calendar__nav {
  border-top: solid 4px var(--site-c-main);
  text-align: center;
  max-width: 400px;
  width: 62.5%;
  margin: 0 auto;
  padding: 32px 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .outline-calendar__nav {
    width: 80%;
  }
}
.outline-calendar__nav > p {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1ex;
  line-height: 1;
  text-align: center;
}
.outline-calendar__nav > a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--site-c-main);
  color: #fff;
  width: 2.25em;
  height: auto;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
}
.outline-calendar__nav > a:first-of-type {
  left: 2.25em;
  right: auto;
}
.outline-calendar__nav > a:last-of-type {
  left: auto;
  right: 2.25em;
}
.outline-calendar-label {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  margin: 0 0 var(--calender-gap-row);
  gap: var(--calender-gap-row) var(--calender-gap-col);
}
.outline-calendar-label > li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: var(--calender-c-bg-label);
  width: calc((100% - var(--calender-gap-col) * 6) / 7);
  height: var(--calender-cell-label-height);
}
.outline-calendar-label > li:nth-child(7n+6) {
  color: var(--calender-c-sut);
}
.outline-calendar-label > li:nth-child(7n+7) {
  color: var(--calender-c-sun);
}
.outline-calendar-table {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: var(--calender-gap-row) var(--calender-gap-col);
  counter-reset: calendar-day;
}
.outline-calendar-table > div, .outline-calendar-table > li {
  background: var(--calender-c-bg-cell);
  text-align: center;
  width: calc((100% - var(--calender-gap-col) * 6) / 7);
  min-height: 100px;
}
.outline-calendar-table > li {
  counter-increment: calendar-day;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  position: relative;
}
.outline-calendar-table.mypage-calendar-table > li {
  text-align: left;
}
.outline-calendar-table > li:nth-child(7n+6) {
  color: var(--calender-c-sut);
}
.outline-calendar-table > li:nth-child(7n+7) {
  color: var(--calender-c-sun);
}
@media only screen and (max-width: 767px) {
  .outline-calendar-table > div, .outline-calendar-table > li {
    min-height: 72px;
  }
}
.outline-calendar-table > div::before, .outline-calendar-table > li::before {
  content: '';
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: var(--calender-c-bg-label);
  height: var(--calender-cell-label-height);
}
.outline-calendar-table > li::before {
  content: counter(calendar-day);
}
.outline-calendar-table > li::after {
  content: '\f00d';
  display: var(--fa-display, inline-block);
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  display: block;
  color: rgba(0, 0, 0, 0.06);
  font-size: 40px;
  /* NOTE: アイコンの大きさはここで調整 */
  padding: var(--calender-cell-label-height) 0 0;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.outline-calendar-table > li:has(a)::after, .outline-calendar-table > li:has(ul)::after {
  display: none;
}
.outline-calendar-table > li ul {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: stretch;
  color: var(--calender-c-link);
  line-height: 1;
  padding: var(--calender-gap-row);
  flex: auto;
}
.outline-calendar-table.mypage-calendar-table > li ul {
  color: var(--site-c-main);
}
.outline-calendar-table > li ul > li {
  text-align: center;
}
.outline-calendar-table > li ul > li + li::before {
  content: '';
  display: block;
  width: 1px;
  border-left: solid 1px;
  height: 1em;
  margin: 2px auto;
}
.outline-calendar-table > li ul > li:only-child i {
  color: var(--site-c-silvergray);
}
.outline-calendar-table > li a {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: stretch;
  color: var(--calender-c-link);
  flex: auto;
}
.outline-calendar-table.mypage-calendar-table > li a {
  color: var(--site-c-black);
}
.outline-slider {
  width: 600px;
  margin-inline: auto;
}
.outline-slider.slick-dotted.slick-slider {
  margin-bottom: 70px;
}
.outline-slider__image img {
  aspect-ratio: 8 / 5;
  object-fit: contain;
}
.outline-slider .slick-prev, .outline-slider .slick-next {
  width: 40px;
  height: 40px;
}
.outline-slider .slick-prev {
  left: -45px;
}
.outline-slider .slick-next {
  right: -45px;
}
.outline-slider .slick-dots li button:before {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .outline-slider {
    width: 100%;
  }
  .outline-slider.slick-dotted.slick-slider {
    margin-bottom: 62px;
  }
  .outline-slider .slick-prev {
    left: -15px;
    z-index: 1;
  }
  .outline-slider .slick-next {
    right: -15px;
  }
}
/* 過去の日付の色の調整 */
/* NOTE: .is--pastはJSで付与します。 */
/* 過去日付セル */
.outline-calendar-table > .is--past {
  background: var(--site-c-disabledgray);
  opacity: 0.6;
}
/* 過去日付セルの数字ラベル */
.outline-calendar-table > .is--past::before {
  background: var(--site-c-lightgray);
}
/* 過去日付ではないパディングセル */
.outline-calendar-table.has--past > .is--past ~ div {
  background: var(--calender-c-bg-cell);
  opacity: 1;
}
/* 過去日付ではないパディングセルの数字ラベル */
.outline-calendar-table.has--past > .is--past ~ div::before {
  background: var(--calender-c-bg-label);
}
/* 過去日付のパディングセル */
.outline-calendar-table.has--past > div, .outline-calendar-table.is--past > div, .outline-calendar-table.is--past > .is--past ~ div {
  background: var(--site-c-disabledgray);
  opacity: 0.6;
}
/* 過去日付のパディングセルの数字ラベル */
.outline-calendar-table.has--past > div::before, .outline-calendar-table.is--past > div::before, .outline-calendar-table.is--past > .is--past ~ div::before {
  background: var(--site-c-lightgray);
}

/* 本日の日付の色の調整 */
/* NOTE: .is--pastはJSで付与します。 */
/* 本日日付セル */
.outline-calendar-table > .is--today {
  background: #ffeeee;
  opacity: 1;
  font-weight: 700;
}
/* 本日日付セルの数字ラベル */
.outline-calendar-table > .is--today::before {
  background: #ffcfcf;
  font-weight: 700;
}

/**
 * offer list
 * NOTE: 主にモーダル内部で使用しますが、サイト内のどこでも利用可能です。
**/
.offer-list {}
.offer-list > li {
  border-bottom: solid 1px var(--site-c-lightgray);
  padding: 0 0 12px;
}
.offer-list > li + li {
  margin-top: 12px;
}
.offer-list__item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 0 2em 0 0;
  position: relative;
}
.offer-list__item::after {
  content: '\f105';
  display: var(--fa-display, inline-block);
  color: var(--site-c-main);
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-size: 13px;
  /* NOTE: アイコンの大きさはここで調整 */
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
  transform-origin: right center;
}
.offer-list__time {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
.offer-list__time::before {
  content: '\f017';
  display: var(--fa-display, inline-block);
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  color: var(--site-c-main-light);
  font-size: inherit;
  margin: 0 0.5em 0 0;
  transform: scale(1.125);
  transform-origin: left center;
  /* NOTE: アイコンの大きさはここで調整 */
}
.offer-list__time + .offer-list__time {
  margin-left: 0.25em;
}
.offer-list__time + .offer-list__time::before {
  content: '～';
  color: inherit;
  font-weight: inherit;
  margin: 0 0.25em 0 0;
  transform: scale(1);
  transform-origin: center center;
}
.offer-list__desc {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex: auto;
  font-weight: 700;
}
.offer-list__desc::before {
  content: '\f328';
  display: var(--fa-display, inline-block);
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  color: var(--site-c-main-light);
  font-size: inherit;
  margin: 0 0.75em 0 0;
  transform: scale(1.125);
  transform-origin: left center;
  /* NOTE: アイコンの大きさはここで調整 */
}
* + .offer-list__desc {
  margin-left: 2em;
}
.offer-list__type {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex: auto;
  font-weight: 700;
}
.offer-list__type::before {
  content: '\f0b1';
  display: var(--fa-display, inline-block);
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  color: var(--site-c-main-light);
  font-size: inherit;
  margin: 0 0.75em 0 0;
  transform: scale(1.125);
  transform-origin: left center;
  /* NOTE: アイコンの大きさはここで調整 */
}
* + .offer-list__type {
  margin-left: 2em;
}
/**
 * edit
 * NOTE:
**/
.edit {}
.edit .l-container {
  max-width: 768px;
}
.edit .formset__item {
  --formset-ttl-width: 160px;
  /* NOTE: 現段階では不使用 */
  --formset-gap: 8px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: var(--formset-gap);
}
@media only screen and (max-width: 959px) {
  .edit .formset__item {
    --formset-ttl-width: 160px;
    /* NOTE: 現段階では不使用 */
    --formset-gap: 8px;
    gap: var(--formset-gap);
  }
}
@media screen and (max-width: 767px) {
  .edit .formset__item {
    --formset-ttl-width: 144px;
    /* NOTE: 現段階では不使用 */
    --formset-gap: 8px;
    gap: var(--formset-gap);
  }
}
.edit .formset__ttl {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}
.edit .formset__input {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}
/**
 * login page(login, remider)
 * NOTE:
**/
.login .l-container {
  max-width: 800px;
}
/**
 * knowledge
 * NOTE:
**/
/* knowledge section */
.knowledge {}
/* knowledge list wrapper */
.knowledge__list {
  --knowledge-list-gap: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: var(--knowledge-list-gap);
}
@media screen and (min-width: 768px) {
  .knowledge__list {
    --knowledge-list-gap: 80px;
    gap: var(--knowledge-list-gap);
  }
}
/* knowledge list item */
.knowledge__item {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .knowledge__item {
    width: calc((100% - var(--knowledge-list-gap) * 3) / 4);
  }
}
@media only screen and (max-width: 767px) {
  .knowledge__item {
    width: calc((100% - var(--knowledge-list-gap) * 1) / 2);
  }
  .knowledge__item:nth-child(n+3) {
    margin-top: 20px;
  }
}
.knowledge__img img {
  border-radius: var(--site-radius-btn);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}
.knowledge__desc {
  margin-top: 10px;
}
.knowledge__ttl {
  font-weight: 700;
}
.knowledge__txt {
  margin-top: 5px
}
.knowledge__txt--more {
  color: var(--site-c-main)
}
@media only screen and (max-width: 767px) {
  .knowledge__ttl {
    font-size: 13px;
  }
  .knowledge__txt {
    font-size: 13px;
  }
}

/**
 * company page
 * NOTE:
**/
.company__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 20px;
}
.company__logo img {
  width: 144px;
  height: auto;
  vertical-align: bottom;
}
.company .tableset__ttl {
  background-color: #fafafa;
}
.company .tableset__list {
  border-top-color: #e5e5e5;
  border-right-color: #e5e5e5;
  border-left-color: #e5e5e5;
}
.company .tableset__list:last-child {
  border-bottom-color: #e5e5e5;
}


/**
 * mypage blog page
 * NOTE:
**/
#column__main {
  width: 100%;
  max-width: 700px;
  margin: 0 auto
}
.column__ttl {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700
}
.column__inner {
  padding: 30px;
  border: 1px solid var(--site-c-lightgray);
  border-radius: var(--site-radius-btn);
  line-height: 2;
}
.column__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #535d64;
}
.column__img {
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .column__inner {
    padding: 10px;
  }
  .column__ttl {
    font-size: 18px
  }
  #column__main .btn {
    font-size: 12px
  }
}


/**
 * about page
 * NOTE:
**/
.about .subpage-head {
  background-image: url(/common/images/bg-default.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--site-c-main);
  padding: 80px 0;
}
.about .subpage-head .c-head__ttl {
  font-size: 36px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .about .subpage-head .c-head__ttl {
    font-size: 24px;
  }
}
.about .subpage-head .c-head__txt {
  color: var(--site-c-black);
  font-size: 18px;
  line-height: 2;
  text-align: center;
  margin-top: 0.75em;
}
@media only screen and (max-width: 767px) {
  .about .subpage-head .c-head__txt {
    font-size: 14px;
  }
}
.about__ttl {
  margin-bottom: 60px;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
}
.about__txt {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  line-height: 2
}
.about__txt p {
  margin-bottom: 20px
}
.about-section {
  padding: 80px 0;
}
.about-section__ttl {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.solve .c-head {
  margin: 0 0 72px;
}
.solve .c-head__ttl {
  color: var(--site-c-main);
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .solve .c-head__ttl {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .solve .c-head {
    margin: 0 0 40px;
  }
}
.solve__list {
  --list-gap: 80px;
  --list-item-padding: 24px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  width: 100%;
  gap: var(--list-gap);
}
@media only screen and (max-width: 767px) {
  .solve__list {
    --list-gap: 24px;
    --list-item-padding: 20px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    gap: var(--list-gap);
  }
}
.solve__item {
  border-radius: 32px;
  border: 8px solid #ededed;
  background: #fff;
  width: calc((100% - var(--list-gap)) / 2);
  min-height: 400px;
  padding: 16.66% var(--list-item-padding) var(--list-item-padding);
  position: relative;
}
.solve__item:nth-child(1) {
  order: 1;
}
.solve__item:nth-child(2) {
  order: 2;
}
.solve__item:nth-child(3) {
  order: 4;
}
.solve__item:nth-child(4) {
  order: 6;
}
.solve__item:nth-child(5) {
  order: 7;
}
.solve__item:nth-child(6) {
  order: 8;
}
.solve__list::after, .solve__list::before {
  content: '';
  display: block;
  /*background: #000;*/
  width: calc(((100% - var(--list-gap)) / 2 - var(--list-gap)) / 2);
}
.solve__list:has(.solve__item:nth-child(6))::after, .solve__list:has(.solve__item:nth-child(6))::before {
  display: none;
}
.solve__list::before {
  order: 3;
}
.solve__list::after {
  order: 5;
}
@media only screen and (max-width: 767px) {
  .solve__item {
    max-width: 640px;
    width: 100%;
    min-height: 320px;
    padding: 33.33% var(--list-item-padding) var(--list-item-padding);
  }
  .solve__list::after, .solve__list::before {
    display: none;
  }
}
.solve__img {
  width: 56.25%;
  position: absolute;
  right: var(--list-item-padding);
  top: calc(var(--list-item-padding) * -1);
  z-index: 1;
}
.solve__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3 / 2;
}
.solve__desc {}
.solve__num {
  width: 92px;
  position: absolute;
  left: var(--list-item-padding);
  top: var(--list-item-padding);
  z-index: 1;
}
.solve__num img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 4 / 3;
}
@media only screen and (max-width: 959px) {
  .solve__num {
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .solve__num {
    width: 64px;
  }
}
.solve__ttl {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
}
.solve__txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
* + .solve__txt {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .solve__ttl {
    font-size: 20px;
  }
  .solve__txt {
    font-size: 14px;
  }
}
.solve__closing {
  text-align: center;
}
* + .solve__closing {
  margin-top: 120px;
}
.solve__closing p {
  font-size: 28px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .solve__closing p {
    font-size: 16px;
  }
}
/**
 * ご利用の流れ
**/
.flow {
  --flow-padding-block: 120px;
  --flow-bg-height: 7px;
  padding: var(--flow-padding-block) 0;
}
* + .flow {
  position: relative;
  padding-top: calc(var(--flow-padding-block) + var(--flow-bg-height));
}
* + .flow::before {
  content: '';
  display: block;
  background-image: url('/common/images/bg-default.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  max-width: 1364px;
  width: calc(100% - var(--site-container-padding-inline) * 2);
  height: var(--flow-bg-height);
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  transform: translate(-50%, 0);
  pointer-events: none;
}
.flow .c-head {
  margin: 0 0 56px;
  padding: 0;
}
.flow .c-head__ttl {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .flow .c-head {
    margin: 0 0 20px;
  }
}
.flow__list {
  --flow-list-gap: 80px;
  --flow-item-width: 280px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1080px;
  margin: 0 auto;
  gap: var(--flow-list-gap);
}
@media screen and (max-width: 767px) {
  .flow__list {
    --flow-list-gap: 40px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
    max-width: none;
    margin: 0;
  }
  .swipe .flow__list {
    --flow-list-gap: 80px;
    width: calc(var(--flow-item-width) * 4 + var(--flow-list-gap) * 3);
  }
}
.flow__item {
  box-shadow: none;
  border: none;
  background: transparent;
  max-width: var(--flow-item-width);
  width: 100%;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__item {
    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    border-radius: var(--site-radius);
    border: none;
    background-image: url(/common/images/bg-card-item-01.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 200px auto;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
    padding: 24px 20px;
    position: relative;
    /*overflow: hidden;*/
  }
  .swipe .flow__item {
    display: block;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    width: var(--flow-item-width);
  }
}
@media screen and (max-width: 767px) {
  .flow__item {
    max-width: none;
  }
  .swipe .flow__item {
    max-width: var(--flow-item-width);
  }
}
* + .flow__item::before {
  content: '';
  display: block;
  background-image: url('/common/images/img-flow-arrow.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 20px;
  height: auto;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: calc(var(--flow-list-gap) * -0.5);
  top: calc(50% - 1em);
  z-index: 1;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  * + .flow__item::before {
    left: 50%;
    top: calc(var(--flow-list-gap) * -0.5);
    z-index: 1;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .swipe * + .flow__item::before {
    left: calc(var(--flow-list-gap) * -0.5);
    top: calc(50% - 1em);
    z-index: 1;
    transform: translate(-50%, -50%);
  }
}
.flow__img {}
@media screen and (max-width: 767px) {
  .flow__img {
    width: 25%;
    padding: 0;
  }
  .swipe .flow__img {
    width: auto;
    padding: 0 72px;
  }
}
.flow__img img {
  border-radius: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.flow__desc {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__desc {
    width: 75%;
    text-align: left;
    padding: 0 0 0 1em;
  }
  .swipe .flow__desc {
    width: auto;
    text-align: center;
    padding: 0;
  }
}
.flow__ttl {
  display: block;
  color: var(--site-c-main);
  font-weight: 700;
  font-size: 22px;
  margin: 1em 0 0;
}
@media screen and (max-width: 767px) {
  .flow__ttl {
    /*font-size: 16px;*/
    margin-top: 0;
  }
  .swipe .flow__ttl {
    margin: 1em 0 0;
  }
}
.flow__num {}
.flow__txt {}
/**
 * ご利用ガイド
**/
.guide__list {
  max-width: 768px;
  margin-inline: auto;
}
.guide__item {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
* + .guide__item {
  border-top: 1px solid #e7e6e6;
  margin: 50px 0 0;
  padding: 40px 0 0;
}
@media only screen and (max-width: 767px) {
  * + .guide__item {
    margin: 24px 0 0;
    padding: 24px 0 0;
  }
}
.guide__img {
  padding: 0 0 20px;
}
.guide__img img {
  border-radius: 50%;
  width: 160px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.guide__desc {
  text-align: center;
  width: 100%;
  padding: 0 0 20px;
}
.guide__desc a {
  color: var(--site-c-main);
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
}
.guide__ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin: 20px 0 10px;
}
@media only screen and (max-width: 767px) {
  .guide__ttl {
    font-size: 18px
  }
}
.guide__txt {
  line-height: 2;
}
.guide__box {
  border-radius: var(--site-radius);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
  padding: 20px 40px;
  margin-block: 60px 20px;
  max-width: 768px;
  margin-inline: auto;
}
.guide__box:before {
  content: '';
  display: block;
  background: url('/common/images/bg-card-item-01.png') left top / contain no-repeat;
  width: 200px;
  aspect-ratio: 5 / 3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.guide__box:after {
  content: '';
  display: block;
  background: url('/common/images/bg-card-item-02.png') left top / contain no-repeat;
  width: 200px;
  aspect-ratio: 5 / 3;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transform: scaleX(-1);
}
.guide__box--item {
  position: relative;
  z-index: 2;
}
.guide__box .guide__txt + .guide__txt {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .guide__box {
    padding: 20px;
  }
}
/**
 * guidance
**/
.guidance {
  --guidance-bg-ellipse-height: 480px;
  /* NOTE: 値を大きくすると境界線が直線に近づき、小さくするとラウンドがきつくなります */
  --guidance-bg-ellipse-margin: 220px;
  --guidance-bg-ellipse-aspect: 5;
  /* NOTE: SVGのアスペクト比に合わせます */
  --guidance-bnr-gap: 64px;
  --guidance-bnr-img-width: 256px;
  --guidance-bnr-btn-width: 180px;
  background-image: url('/common/images/bg-pr.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: var(--guidance-bg-ellipse-margin) 0;
  position: relative;
  overflow: hidden;
}
.guidance > * {
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 1360px) {
  .guidance {
    --guidance-bg-ellipse-height: 480px;
    /* NOTE: 値を大きくすると境界線が直線に近づき、小さくするとラウンドがきつくなります */
    --guidance-bg-ellipse-margin: 220px;
    --guidance-bg-ellipse-aspect: 5;
    /* NOTE: SVGのアスペクト比に合わせます */
    --guidance-bnr-gap: 24px;
    --guidance-bnr-img-width: 220px;
    --guidance-bnr-btn-width: 180px;
    padding: var(--guidance-bg-ellipse-margin) 0;
  }
}
@media only screen and (max-width: 1200px) {
  .guidance {
    --guidance-bg-ellipse-height: 480px;
    /* NOTE: 値を大きくすると境界線が直線に近づき、小さくするとラウンドがきつくなります */
    --guidance-bg-ellipse-margin: 220px;
    --guidance-bg-ellipse-aspect: 5;
    /* NOTE: SVGのアスペクト比に合わせます */
    --guidance-bnr-gap: 24px;
    --guidance-bnr-img-width: 200px;
    --guidance-bnr-btn-width: 180px;
    padding: var(--guidance-bg-ellipse-margin) 0;
  }
  .guidance .l-container {
    padding-inline: var(--guidance-bnr-gap);
  }
}
@media only screen and (max-width: 767px) {
  .guidance {
    --guidance-bg-ellipse-height: 160px;
    /* NOTE: 値を大きくすると境界線が直線に近づき、小さくするとラウンドがきつくなります */
    --guidance-bg-ellipse-margin: 80px;
    --guidance-bg-ellipse-aspect: 5;
    /* NOTE: SVGのアスペクト比に合わせます */
    --guidance-bnr-gap: 32px;
    --guidance-bnr-img-width: 200px;
    --guidance-bnr-btn-width: 160px;
    padding: var(--guidance-bg-ellipse-margin) 0;
  }
  .guidance .l-container {
    padding-inline: var(--site-container-padding-inline);
  }
}
@media screen and (max-width: 560px) {
  .guidance {
    --guidance-bg-ellipse-height: 160px;
    /* NOTE: 値を大きくすると境界線が直線に近づき、小さくするとラウンドがきつくなります */
    --guidance-bg-ellipse-margin: 80px;
    --guidance-bg-ellipse-aspect: 5;
    /* NOTE: SVGのアスペクト比に合わせます */
    --guidance-bnr-gap: 24px;
    --guidance-bnr-img-width: 256px;
    --guidance-bnr-btn-width: 160px;
    padding: var(--guidance-bg-ellipse-margin) 0;
  }
  .guidance .l-container {
    padding-inline: var(--site-container-padding-inline);
  }
}
/* 装飾 白い楕円 */
/* NOTE: 余白調整の場合は、以下、設定変更不要（変数のみ変更でOK） */
.guidance::before {
  content: '';
  display: block;
  background-image: url('/common/images/bg-ellipse-w.svg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  width: auto;
  height: var(--guidance-bg-ellipse-height);
  aspect-ratio: var(--guidance-bg-ellipse-aspect) / 1;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -75%);
  pointer-events: none;
}
/* 装飾 白い楕円下の白い矩形 */
/* NOTE: 余白調整の場合は、以下、設定変更不要（変数のみ変更でOK） */
.guidance::after {
  content: '';
  display: block;
  background-image: url('/common/images/bg-ellipse-w.svg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  width: auto;
  height: var(--guidance-bg-ellipse-height);
  aspect-ratio: var(--guidance-bg-ellipse-aspect) / 1;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 75%);
  pointer-events: none;
}
.guidance__bnr {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  border-radius: var(--site-radius);
  border: solid 2px var(--site-c-main);
  background: rgba(255, 255, 255, 1.00);
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--guidance-bnr-gap);
  gap: var(--guidance-bnr-gap);
  opacity: 1;
}
.guidance__bnr:hover {
  background: rgba(255, 255, 255, 1.00);
  opacity: 0.66;
}
@media only screen and (max-width: 1360px) {
  .guidance__bnr {
    padding: 0 calc(var(--guidance-bnr-gap) * 2);
  }
}
@media only screen and (max-width: 959px) {
  .guidance__bnr {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: flex-end;
    align-items: flex-end;
    padding: var(--guidance-bnr-gap);
  }
}
@media only screen and (max-width: 767px) {
  .guidance__bnr {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: flex-end;
    align-items: flex-end;
    padding: var(--guidance-bnr-gap);
  }
}
.guidance__bnr-txt {
  color: var(--site-c-main);
  font-weight: 700;
  font-size: 18px;
  line-height: 2;
  width: calc(100% - var(--guidance-bnr-img-width) - var(--guidance-bnr-btn-width) - var(--guidance-bnr-gap) * 2);
  padding: 1.5em 0;
}
@media only screen and (max-width: 959px) {
  .guidance__bnr-txt {
    font-size: 20px;
    text-align: center;
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .guidance__bnr-txt {
    font-size: 20px;
    text-align: center;
    width: 100%;
    padding: 0;
  }
}
.guidance__bnr-img {
  width: var(--guidance-bnr-img-width);
  height: auto;
  aspect-ratio: 1 / 0.9375;
  position: relative;
}
.guidance__bnr-img > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.147;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media only screen and (max-width: 959px) {
  .guidance__bnr-img {
    max-width: var(--guidance-bnr-img-width);
    width: calc(100% - var(--guidance-bnr-gap) - var(--guidance-bnr-btn-width));
    aspect-ratio: 1 / 1.147;
  }
  .guidance__bnr-img > img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .guidance__bnr-img {
    max-width: var(--guidance-bnr-img-width);
    width: calc(100% - var(--guidance-bnr-gap) - var(--guidance-bnr-btn-width));
    aspect-ratio: 1 / 1.147;
  }
  .guidance__bnr-img > img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 400px) {
  .guidance__bnr-img > img {
    width: calc(100% + var(--guidance-bnr-gap) * 1.5);
    height: auto;
  }
}
.guidance__bnr-btn {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--site-c-main);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
  width: var(--guidance-bnr-btn-width);
  height: auto;
  aspect-ratio: 1 / 1;
}
@media only screen and (max-width: 1360px) {
  .guidance__bnr-btn {}
}
@media only screen and (max-width: 1200px) {
  .guidance__bnr-btn {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .guidance__bnr-btn {
    font-size: 20px;
  }
}
/**
 * faq
**/
.faq__area {
  margin-bottom: 80px
}
.faq__anchor {
  margin-bottom: 50px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.faq__link {
  margin-right: 30px;
}
.faq__link a {
  width: 100%;
  height: 45px;
  padding: 0 5px;
  color: #a5a5a5;
  font-size: 18px;
  border-bottom: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__link a:hover, .faq__link a.is-current {
  color: var(--site-c-main);
}
@media only screen and (max-width: 767px) {
  .faq__link {
    width: 32.333333%;
    margin-right: 1.5%;
  }
  .faq__link:nth-child(3n) {
    margin-right: 0
  }
  .faq__link a {
    font-size: 12px;
  }
}
.listAccordion {
  margin: 0 auto
}
.listAccordion label {
  margin-top: 20px;
  padding: 24px 5px 24px 75px;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--site-c-lightgray);
  border-radius: var(--site-radius-btn);
  display: block;
  cursor: pointer;
  position: relative
}
.listAccordion label:first-child {
  margin-top: 0
}
.listAccordion label:hover {
  background: #fafafa
}
.listAccordion input[type="checkbox"].on-off {
  display: none
}
.listAccordion .listTips {
  margin: 0;
  padding: 0;
  color: #535d64;
  background: #fff;
  position: relative
}
.listAccordion input[type="checkbox"].on-off + .listTips {
  height: 0;
  overflow: hidden
}
.listAccordion input[type="checkbox"].on-off:checked + .listTips {
  height: auto;
  margin-top: 10px;
  padding: 24px 15px 24px 105px;
  border: 1px solid var(--site-c-lightgray);
  border-radius: var(--site-radius-btn);
}
/*開閉アイコン */
.listAccordion label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #999;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -1px;
  transition: 0.3s;
}
.listAccordion label::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #999;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -1px;
  transition: 0.3s;
  transform-origin: center center;
  transform: rotate(90deg);
}
.listAccordion .label_open::after {
  transform: rotate(0deg);
}
.listAccordion .label_open::before {
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .listAccordion label::before {
    right: 15px;
  }
  .listAccordion label::after {
    right: 15px;
  }
}
.listAccordion label .iconq, .listAccordion input[type="checkbox"].on-off:checked + .listTips .icona {
  position: absolute;
  left: 20px;
  top: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center
}
.listAccordion input[type="checkbox"].on-off:checked + .listTips .icona {
  left: 50px;
}
@media only screen and (max-width: 568px) {
  .listAccordion label .iconq, .listAccordion input[type="checkbox"].on-off:checked + .listTips .icona {
    left: 5px
  }
  .listAccordion label, .listAccordion input[type="checkbox"].on-off:checked + .listTips {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (min-width: 768px) {
  .terms__article {
    background: #fff;
    padding: 40px 40px 0;
    border: 1px solid var(--site-c-lightgray);
    border-radius: 6px
  }
}
.terms__article {
  width: 100%
}
.terms__ttl {
  font-size: 24px;
  font-weight: 700
}
.terms__item {
  margin-bottom: 40px
}
.terms__txt {
  margin-top: 10px
}
@media screen and (max-width: 767px) {
  .terms__ttl {
    font-size: 18px
  }
}
@media screen and (min-width: 768px) {
  .policy__article {
    background: #fff;
    padding: 40px 40px 0;
    border: 1px solid var(--site-c-lightgray);
    border-radius: 6px
  }
}
.policy__article {
  width: 100%
}
.policy__ttl {
  font-size: 24px;
  font-weight: 700
}
.policy__item {
  margin-bottom: 40px
}
.policy__txt {
  margin-top: 10px
}
@media screen and (max-width: 767px) {
  .policy__ttl {
    font-size: 18px
  }
}
/**
 * company page
**/
.philosophy__list, .vision__list {
  margin: 1em 0;
}
ul.philosophy__list {
  list-style: none;
}
ul.philosophy__list > li::before {
  content: '・';
}
ol.vision__list {
  list-style: none;
}
ol.vision__list > li {
  text-indent: -1.4em;
  padding-left: 1.5em;
  margin-bottom: 10px;
  line-height: 1.75;
}
ol.vision__list > li:nth-child(1):before {
  content: '1.';
  margin-right: .5em;
}
ol.vision__list > li:nth-child(2):before {
  content: '2.';
  margin-right: .5em;
}
ol.vision__list > li:nth-child(3):before {
  content: '3.';
  margin-right: .5em;
}
.breadcrumb mark, .outline-head mark, .outline-eval mark {
  background-color: inherit !important;
  color: inherit !important;
}
.thumbnail {
  width: auto !important;
  height: auto !important;
  max-width: 150px;
  object-fit: cover;
}
.banner_item {
  height: 150px !important;
  margin: 10px;
}
.banner_item img {
  height: 100%;
}
/**
 * 
 * m_top1, m_top2 dashboard
 * 
**/
/** m_top1、m_top2 **/
.m-dashboard {}
/**
 * 
 * m_top1, m_top2 各種ラベル
 * NOTE: サイト内のどこでも使いまわせる想定です。
 * 
**/
/** m_top1、m_top2のtable系 ステータスの色 **/
.m-dashboard-status-label {
  display: flex;
  justify-content: center;
  align-items: center;
  /*box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);*/
  border-radius: var(--site-radius-btn);
  border: solid 1px var(--site-c-gray);
  background: #fff;
  color: var(--site-c-black);
  font-size: 12px;
  font-weight: 500;
  font-feature-settings: 'palt';
  line-height: 1;
  white-space: nowrap;
  padding: 4px 6px;
}
[data-status="提案中（歯科衛生士）"] .m-dashboard-status-label, .TR_提案中（歯科衛生士） .m-dashboard-status-label {
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
}
[data-status="パートナーから応募申請中"] .m-dashboard-status-label, .TR_パートナーから応募申請中 .m-dashboard-status-label {
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
}
[data-status="完了報告済み"] .m-dashboard-status-label, .TR_完了報告済み .m-dashboard-status-label {
  border: solid 1px var(--site-c-blue);
  background: #fff;
  color: var(--site-c-blue);
}
[data-status="労働条件通知書送付済み"] .m-dashboard-status-label, .TR_労働条件通知書送付済み .m-dashboard-status-label {
  border: solid 1px var(--site-c-blue);
  background: #fff;
  color: var(--site-c-blue);
}
[data-status="勤務決定"] .m-dashboard-status-label, .TR_勤務決定 .m-dashboard-status-label {
  border: solid 1px var(--site-c-green);
  background: var(--site-c-green);
  color: #fff;
}
[data-status="完了報告承認"] .m-dashboard-status-label, .TR_完了報告承認 .m-dashboard-status-label {
  border: solid 1px var(--site-c-green);
  background: #fff;
  color: var(--site-c-green);
}
/** m_top1、m_top2のtable系 名前に掛かるバッジ **/
.item-badge-label {
  display: block;
  position: relative;
  z-index: 1;
}
.item-badge-label b {
  display: inline-block;
  font-weight: inherit;
  position: relative;
  z-index: 1;
}
.item-badge-label i {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
  border-radius: var(--site-radius-btn);
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
  font-size: 10px;
  font-weight: 500;
  font-feature-settings: 'palt';
  line-height: 1;
  white-space: nowrap;
  padding: 2px 4px;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -100%);
}
.item-badge-label.item-badge-label--gray i {
  border: solid 1px var(--site-c-silvergray);
  background: var(--site-c-silvergray);
  color: #fff;
}
.item-badge-label.item-badge-label--gray-outline i {
  border: solid 1px var(--site-c-gray);
  background: #fff;
  color: var(--site-c-gray);
}
.item-badge-label.item-badge-label--blue i {
  border: solid 1px var(--site-c-blue);
  background: var(--site-c-blue);
  color: #fff;
}
.item-badge-label.item-badge-label--blue-outline i {
  border: solid 1px var(--site-c-blue);
  background: #fff;
  color: var(--site-c-blue);
}
.item-badge-label.item-badge-label--green i {
  border: solid 1px var(--site-c-green);
  background: var(--site-c-green);
  color: #fff;
}
.item-badge-label.item-badge-label--green-outline i {
  border: solid 1px var(--site-c-green);
  background: #fff;
  color: var(--site-c-green);
}
.item-badge-label i:only-child {
  position: static;
  transform: translate(0, 0);
}
.result__item .item-badge-label i {
  box-shadow: none;
  font-size: 12px;
  padding: 6px 8px;
}
.item-badge-label [data-flag] {
  display: none;
}
.item-badge-label [data-flag*="済み"] {
  display: flex;
}
@media (max-width: 767px) {
  .m-dashboard-table.table .item-badge-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .m-dashboard-table.table .item-badge-label i {
    position: static;
    transform: translate(0, 0);
  }
}
/**
 * 
 * m_o1, m_o2 list
 * 
**/
.m-o-result__list {
  --m-o-result-img-width: 210px;
  --m-o-result-item-gap: 20px;
}
@media (max-width: 767px) {
  .m-o-result__list {
    --m-o-result-img-width: 96px;
    --m-o-result-item-gap: 12px;
  }
}
.m-o-result__list .result__item {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 40px 20px 24px;
  gap: var(--m-o-result-item-gap);
  position: relative;
}
.m-o-result__list .result__img {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: var(--m-o-result-img-width);
}
.m-o-result__list .result__img a {
  display: block;
  width: 100%;
}
.m-o-result__list .result__img::before {
  max-width: none;
}
.m-o-result__list .result__img img {
  max-width: none;
}

.m-o-result__list .result__desc {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex: auto;
  width: calc(100% - var(--m-o-result-img-width) - var(--m-o-result-item-gap));
  margin: 0;
  padding: 0;
  position: static;
}
.m-o-result__list * + .result__desc {
  margin: 0;
}

.m-o-result__list .result__top {
  width: 100%;
}
@media (max-width: 767px) {
  .m-o-result__list .result__top {
    width: 100%;
  }
}

.m-o-result__list .result__bottom {
  width: 100%;
}
.m-o-result__list *+.result__bottom {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .m-o-result__list .result__bottom {
    width: calc( 100% + var(--m-o-result-img-width) + var(--m-o-result-item-gap) );
    margin-left: calc( ( var(--m-o-result-img-width) + var(--m-o-result-item-gap) ) * -1 );
  }
  .m-o-result__list *+.result__bottom {
    margin-top: 8px;
  }
}

.m-o-result__list .result__public {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 var(--site-radius-btn) var(--site-radius-btn);
  border: 1px solid var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  min-width: 240px;
  width: fit-content;
  height: 32px;
  margin: 0;
  padding: 0 1ex;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  transform: translate(-50%, 0);
}

.m-o-result__list .result__period {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: none;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--site-c-main);
  font-size: 12px;
  font-weight: 600;
  min-width: 0;
  width: fit-content;
  height: auto;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 40px;
  top: 32px;
  z-index: 1;
  transform: translate(0, -100%);
}
.m-o-result__list .result__period i {
  margin-right: 1ex;
}
.m-o-result__list .result__ttl {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}
@media (max-width: 767px) {
  .m-o-result__list .result__ttl,
  .m-o-result__list .result__ttl>a {
    font-size: 18px;
    height: var(--m-o-result-img-width);
  }
}

.m-o-result__list .box-btn {
  --box-btn-gap: 4px;
}
.m-o-result__list *+.box-btn {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .m-o-result__list .box-btn {
    --box-btn-gap: 4px;
  }
  .m-o-result__list *+.box-btn {
    margin-top: 12px;
  }
}

.m-o-result__list .box-btn>*,
.m-o-result__list .box-btn>.formset__toggle,
.m-o-result__list .box-btn>.btn,
.m-o-result__list .box-btn>.btn--small {
  max-width: none;
  width: calc((100% - var(--box-btn-gap) * 2) / 3);
  margin: 0;
}
@media (max-width: 767px) {
  .m-o-result__list .box-btn>*,
  .m-o-result__list .box-btn>.formset__toggle,
  .m-o-result__list .box-btn>.btn,
  .m-o-result__list .box-btn>.btn--small {
    width: calc((100% - var(--box-btn-gap) * 1) / 2);
  }

  .m-o-result__list .box-btn>.m-o-result__delete,
  .m-o-result__delete {
    width: calc((100% - var(--box-btn-gap) * 3) / 4);
    order: 2000;
  }
  .m-o-result__list .box-btn>.m-o-result__toggle,
  .m-o-result__toggle {
    width: calc(100% - var(--box-btn-gap) - (100% - var(--box-btn-gap) * 3) / 4);
    order: 1000;
  }
}

.m-o-result__list .formset__toggle {
  border-radius: 4px;
  border: 1px solid var(--site-c-silvergray);
  background: var(--site-c-underlayer);
  background: #fff;
  color: var(--site-c-black);
  height: var(--site-btn-small-height);
  padding: 0 0.5em 0 0.75em;
}
.m-o-result__list .formset__toggle-label {
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .m-o-result__list .formset__toggle-label {
    font-size: 10px;
    font-weight: 600;
  }
}



/**
 * 
 * m_o1, m_o2 button
 * 
**/
.addbtn10 {
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08); */
  border-radius: var(--site-radius-btn);
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
  height: var(--site-btn-height);
  padding-inline: 1.5em;
  /* position: relative; */
}
/**
 * 
 * m_m1, m_m2 button
 * 
**/
.add_btn {
  color: var(--site-c-main);
  border: solid 1px var(--site-c-main);
  padding: 1rem 2rem;
  font-size: .9em;
  border-radius: var(--site-radius-btn);
}
/* NOTE: 不使用 */
input.status_btn {
  width: 100%;
  height: 45px;
  padding: 0 1rem;
  background: var(--site-c-main);
  color: #fff;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  max-width: 180px;
  margin: 0 auto;
}
/**
 * 
 * m_top1, m_top2 dashboard (table style)
 * NOTE: 以前のスタイル
 * 
**/
/** m_top1、m_top2のtableのレスポンシブ用のラッパー **/
.top-list.box-body:has(.m-dashboard-table) {
  overflow-x: scroll;
}
@media (min-width: 768px) {
  .top-list.box-body:has(.m-dashboard-table) {
    overflow-x: scroll;
  }
}
@media screen and (max-width: 767px) {
  .top-list.box-body:has(.m-dashboard-table) {
    padding: 24px 0;
    overflow-x: visible;
  }
}
/** m_top1、m_top2のtable（テーブルのスタイルは以下） **/
.m-dashboard-table {
  width: 100%;
  border-collapse: collapse;
}
@media (min-width: 768px) {
  .m-dashboard-table.table th {
    white-space: nowrap;
  }
  .m-dashboard-table.table td {
    text-align: center;
    vertical-align: middle;
  }
}
@media screen and (max-width: 767px) {
  .m-dashboard-table.table {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    border-width: 0;
  }
  .m-dashboard-table.table thead {
    display: none;
    border-style: inherit;
    border-color: inherit;
    border-width: 0;
  }
  .m-dashboard-table.table tbody {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    border-style: inherit;
    border-color: inherit;
    border-width: 0;
  }
  .m-dashboard-table.table tr {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
    border-style: inherit;
    border-color: inherit;
    border-width: 0.5px;
  }
  .m-dashboard-table.table tr + tr {
    margin-top: 24px;
  }
  .m-dashboard-table.table th {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
  }
  .m-dashboard-table.table td {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    width: 100%;
    order: 3;
  }
  .m-dashboard-table.table th:nth-child(n), .m-dashboard-table.table td:nth-child(n) {
    border-style: inherit;
    border-color: inherit;
    border-width: 0.5px;
  }
  .m-dashboard-table > thead > tr > th, .m-dashboard-table > tbody > tr > th, .m-dashboard-table > tfoot > tr > th, .m-dashboard-table > thead > tr > td, .m-dashboard-table > tbody > tr > td, .m-dashboard-table > tfoot > tr > td {
    border-width: 0.5px;
  }
  .m-dashboard-table.table [data-cell="医院名"], .m-dashboard-table.table [data-cell="ニックネーム"] {
    order: 0;
  }
  .m-dashboard-table.table [data-cell="ステータス"] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    order: 1;
  }
  .m-dashboard-table.table [data-cell="ステータス"]>* {
    width: 100%;
  }
  .m-dashboard-table.table [data-cell="ステータス"]::before {
    content: attr(data-cell);
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    color: var(--site-c-gray);
    font-size: 10px;
    font-weight: 500;
    min-width: calc((100% - 72px + 2px) / 2);
    /* NOTE: 2pxは両サイドのボーダー分 */
  }
  .m-dashboard-table.table [data-cell="日時"] {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    width: calc((100% - 72px) / 2);
  }
  .m-dashboard-table.table [data-cell="勤務時間"] {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    width: calc((100% - 72px) / 2);
  }
  .m-dashboard-table.table [data-cell="休憩時間"] {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    width: 72px;
  }
  .m-dashboard-table.table [data-cell="日時"]::before, .m-dashboard-table.table [data-cell="勤務時間"]::before, .m-dashboard-table.table [data-cell="休憩時間"]::before {
    content: attr(data-cell);
    display: block;
    color: var(--site-c-gray);
    font-size: 10px;
    font-weight: 500;
    width: 100%;
    margin: 0 0 1ex;
  }
  .m-dashboard-table.table [data-cell="メッセージ"] {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    order: 99;
  }


  /* ご利用明細 */
  .m-dashboard-table.m-statement-table.table [data-cell]::before {
    content: attr(data-cell);
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    color: var(--site-c-gray);
    font-size: 10px;
    font-weight: 500;
    text-align: left;
    width: 72px;
  }
  .m-dashboard-table.m-statement-table.table .cell-body {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    text-align: left;
    width: calc(100% - 72px);
  }
}
.m-dashboard-table *:not(.btn--small):not(.btn) > a {
  color: #00f;
}
/** m_top1、m_top2のtable内部 モーダル **/
.m-dashboard-table.table .modal-drawer {
  width: auto;
}
.m-dashboard-table.table * + .modal-drawer {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .m-dashboard-table.table .modal-drawer {
    width: 100%;
  }
}
/** m_top1、m_top2のtable内部 UIのボタン **/
.m-dashboard-table.table .btn, .m-dashboard-table.table .btn--small, .m-dashboard-table.table .modal__btn {
  border-radius: 0;
  /* NOTE: bootstrap解除目的 */
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  max-width: 256px;
  margin: 0 auto;
  /* NOTE: bootstrap解除目的 */
  padding: 0;
  /* NOTE: bootstrap解除目的 */
  overflow: visible;
  /* NOTE: bootstrap解除目的 */
}
.m-dashboard-table.table .btn--small > span::after, .m-dashboard-table.table .btn--small > a::after, .m-dashboard-table.table .btn > span::after, .m-dashboard-table.table .btn > a::after {
  display: none;
}
@media (max-width: 767px) {
  .m-dashboard-table.table .btn, .m-dashboard-table.table .btn--small, .m-dashboard-table.table .modal__btn {
    font-size: 12px;
    max-width: none;
    width: 100%;
  }
}
/* modal wrapper form */
.m-dashboard-table.table td > form:only-child {
  width: 100%;
}
@media (max-width: 767px) {
  .m-dashboard-table.table td > form:only-child {
    width: 100%;
  }
}
/** m_top1、m_top2のtable系 イレギュラーなテーブル内コンテンツの対応は以下**/
.m-dashboard-table.table form[name="form52"] {
  min-width: 100px;
}
/** m_top1、m_top2のtable系 名前、画像、ニックネーム **/
/* NOTE: .m-dashboard-tableの内部に設置する必要があります。（レスポンシブ時のスタイルの関係で） */
.m-dashboard-table__user {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.m-dashboard-table__user-image {
  width: 52px;
}
.m-dashboard-table__user-image > img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.m-dashboard-table__user-name {
  width: calc(100% - 52px - 12px);
}
@media (max-width: 767px) {
  .m-dashboard-table__user {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
/**
 * 
 * m_top1, m_top2 dashboard (timeline style)
 * NOTE: タイムライン風のスタイル
 * 
**/
/**
 * .m-timeline
 * NOTE: タイムライン
**/
.m-kyuyo-table-wrap {
  overflow-x: scroll;
}
.m-kyuyo-table {
  background: #fff;
  text-align: center;
  border-collapse: collapse;
  white-space: nowrap;
}
.m-kyuyo-table-result {
  width: 100%
}
.m-kyuyo-table th {
  min-width: 120px;
  padding: .5rem 1.5rem;
  background: #e8e8e8;
  border: solid 1px #ccc;
  color: #333;
  font-size: 14px;
  font-weight: 700;
}
.m-kyuyo-table td {
  border: solid 1px #ccc;
  padding: .8rem 1.2rem;
  text-align: right;
}
.m-kyuyo-table .m-kyuyo-table__name {
  min-width: 300px;
  text-align: left
}
.m-kyuyo-table .m-kyuyo-table__time {
  text-align: center
}
.m-kyuyo-table td.m-kyuyo-table__btn {
  text-align: center
}
.m-kyuyo-table__btn a, .search__print a {
  max-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: .5rem 2.5rem;
  border: none;
  border-radius: 5px;
  background-color: var(--site-c-main);
  color: #fff;
  font-size: 14px;
}
.search__print a {
  min-width: 170px;
  height: 48px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
}
.m-kyuyo-table__btn:hover {
  background: var(--main-c-light);
  color: #fff
}
/**
 * 
 * m_top1, m_top2 dashboard (timeline style)
 * NOTE: タイムライン風のスタイル
 * 
**/
/**
 * .m-timeline
 * NOTE: タイムライン
**/
.m-timeline {}
/**
 * 勤怠管理のアイテム
 * NOTE: 
 * 通常 .m-timeline直下に .m-attendを連続で配置して使いますが
 * .m-attendを単体でタイムライン以外でも使用可能な想定です。
**/
/* 勤怠管理のアイテム */
.m-attend {
  --m-attend-gap: 20px;
  --m-attend-time-width: 80px;
  --m-attend-func-width: 240px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--m-attend-gap);
  position: relative;
}
.m-attend + .m-attend {
  border-top: 1px solid var(--site-c-lightgray);
  margin-top: 32px;
  padding-top: 32px;
}
@media (max-width: 767px) {
  .m-attend {
    --m-attend-gap: 16px;
    --m-attend-time-width: 64px;
    --m-attend-func-width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    gap: var(--m-attend-gap);
  }
}
/* 勤怠管理のアイテム カレンダー風の日付ラベル */
.m-attend__date {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  border-radius: var(--site-radius-btn);
  border: 1px solid var(--site-c-lightgray);
  background: #fff;
  color: var(--site-c-black);
  width: var(--m-attend-time-width);
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.m-attend__date .item--m {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background: #fff7f7;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 6px;
}
.m-attend__date .item--d {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--site-c-lightgray);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  padding: 8px;
}
.m-attend__date .item--l {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--site-c-lightgray);
  color: var(--site-c-gray);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  padding: 6px 8px;
}
@media (max-width: 767px) {
  .m-attend__date .item--m {
    font-size: 11px;
    padding: 6px;
  }
  .m-attend__date .item--d {
    flex-flow: row nowrap;
    font-size: 16px;
    padding: 6px;
  }
  .m-attend__date .item--d .sp--disp {
    display: none;
  }
  .m-attend__date .item--l {
    font-size: 11px;
    padding: 6px;
  }
}
/* 勤怠管理のアイテム 各情報のラッパー */
.m-attend__body {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
  width: calc(100% - var(--m-attend-time-width) - var(--m-attend-func-width) - var(--m-attend-gap) * 2);
  gap: 12px 0;
}
@media (max-width: 767px) {
  .m-attend__body {
    width: calc(100% - var(--m-attend-time-width) - var(--m-attend-gap) * 1);
  }
}
/* 勤怠管理のアイテム ステータス */
.m-attend__status {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  width: 100%;
}
.m-attend__status-label {}
/* 勤怠管理のアイテム 内容の説明 */
.m-attend__desc {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  gap: 4px;
}
/* 勤怠管理のアイテム 処理内容 */
.m-attend__action {
  display: block;
  font-weight: 700;
  font-size: 18px;
}
/* 勤怠管理のアイテム 仕事内容 */
.m-attend__workload {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: baseline;
  align-items: baseline;
  color: var(--site-c-gray);
  font-size: 16px;
  gap: 1ex;
}
.m-attend__workload i {
  display: block;
}
.m-attend__workload .c-icon {
  width: 1em;
  height: 1em;
}
.m-attend__workload span {
  display: block;
}
@media (max-width: 767px) {
  .m-attend__workload {
    font-size: 13px;
  }
}
/* 勤怠管理のアイテム 時給 */
.m-attend__jikyu {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: baseline;
  align-items: baseline;
  color: var(--site-c-gray);
  font-size: 16px;
  gap: 1ex;
}
.m-attend__jikyu i {
  display: block;
}
.m-attend__jikyu .c-icon {
  width: 1em;
  height: 1em;
}
.m-attend__jikyu .c-icon--money-b {
  opacity: 0.46;
  transform: translate(-6.666%, 8.333%);
}
.m-attend__jikyu span {
  display: block;
}
@media (max-width: 767px) {
  .m-attend__jikyu {
    font-size: 13px;
  }
}
/* 勤怠管理のアイテム ユーザー情報 */
.m-attend__user {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  border-radius: var(--site-radius-btn);
  border: 1px solid var(--site-c-lightgray);
  background: #fff;
  color: var(--site-c-black);
  width: 100%;
  padding: 12px;
  gap: 12px;
}
@media (max-width: 1200px) {
  .m-attend__user {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .m-attend__user {
    width: 100%;
    width: calc(100% + var(--m-attend-time-width) + var(--m-attend-gap));
    margin-left: calc((var(--m-attend-time-width) + var(--m-attend-gap)) * -1);
  }
}
.m-attend__user-img {
  width: 72px;
}
.m-attend__user-img > img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.m-attend__user-name {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: calc(100% - 72px - 12px);
  gap: 8px;
}
.m-attend__user-name .item--nick {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.m-attend__user-name .item--name {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.m-attend__user-name .item--job {
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
}
.m-attend__user-name .item--area {
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: var(--site-c-gray);
  width: 100%;
}
.m-attend__user-name.item-badge-label i {
  left: 0;
  top: -4px;
  transform: translate(0, -100%);
}
/* 勤怠管理のアイテム リンク、ボタン、モーダルなどを配置するラッパー */
.m-attend__func {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: stretch;
  align-self: stretch;
  width: var(--m-attend-func-width);
  gap: 8px;
}
@media (max-width: 767px) {
  .m-attend__func {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
}
.m-attend__func > .modal-drawer, .m-attend__func > .btn, .m-attend__func .modal__btn, .m-attend__func .btn.modal__btn, .m-attend__func .modal-open, .m-attend__func .btn.modal-open {
  display: block;
  max-width: none;
  width: auto;
  margin: 0;
  padding: 0;
}
.m-attend__func > .btn > *, .m-attend__func .modal__btn > *, .m-attend__func .btn.modal__btn > *, .m-attend__func .modal-open > *, .m-attend__func .btn.modal-open > * {
  box-shadow: none;
  padding-inline: 0.5em;
}
.m-attend__func .btn.modal-open > *::after {
  display: none;
}
@media (max-width: 767px) {
  .m-attend__func > .modal-drawer, .m-attend__func > .btn {
    flex: 1 1;
  }
  .m-attend__func > .btn, .m-attend__func .modal__btn, .m-attend__func .btn.modal__btn, .m-attend__func .modal-open, .m-attend__func .btn.modal-open {
    font-size: 12px;
    font-weight: 500;
  }
}
.m-attend [data-item=""] {
  display: none;
}
/**
 * tag
**/
ul.tag_list > li {
  padding: 10px 0;
  margin: 3px 0;
  display: inline-block;
}
ul.tag_list li input[type=checkbox] {
  display: none;
}
ul.tag_list li input {
  cursor: pointer;
  transition: 0.2s;
}
ul.tag_list li label {
  padding: .4em 1em .5em;
  background: #FAFAFA;
  color: #333;
  border-radius: var(--site-radius-btn);
  border: 1px solid var(--site-c-lightgray);
  margin-right: 5px;
  cursor: pointer;
}
ul.tag_list li label:hover {
  background: var(--site-c-main);
  color: #fff;
}
ul.tag_list li input[type=checkbox]:checked + label {
  background: var(--site-c-main);
  color: #fff;
  cursor: pointer;
}
.btn-query, .more-btn {
  margin-inline: auto;
}
.more-btn {
  margin-top: 0;
}
.shokumu-more {
  margin-block: 20px 80px;
}
@media screen and (max-width: 767px) {
  .shokumu-more {
    margin-block: 20px 60px;
  }
}
.more-btn > span {
  line-height: 1.25;
  padding-inline: 1em;
  cursor: pointer;
}
.btn-query > a:after, .more-btn > span:after {
  display: none;
}
.more__item {
  /* opacity: 1; */
  display: block;
}
.more__item.is-hidden {
  /* opacity: 0;
  height: 0;
  margin: 0;
  pointer-events: none; */
  display: none;
}
.more-btn.is-btn-hidden {
  display: none;
}
.point .l-container {
  max-width: 768px;
}
.point__ttl {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.point__txt {
  margin-bottom: 40px;
  line-height: 1.65;
}
.point__txt img {
  width: auto;
  display: block;
  margin-top: 5px;
}
.point__box {
  margin-bottom: 40px;
  padding: 30px 40px;
  background: #fff;
  border: 1px solid var(--site-c-lightgray);
  border-radius: var(--site-radius-btn);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}
.point__box--item {
  display: flex;
  padding: 10px 5px;
}
.point__box--item + .point__box--item {
  border-top: 1px solid var(--site-c-lightgray);
}
.point__box--item dt {
  font-weight: 700;
  width: 150px;
}
.point__box--item dd {
  width: calc(100% - 150px);
}
.point__attend {
  font-size: 18px;
  font-weight: 700;
  color: var(--site-c-main);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point__ttl {
    font-size: 18px;
  }
  .point__box {
    padding: 10px 20px;
  }
  .point__attend {
    font-size: 15px;
  }
  .point__txt img {
    width: 200px;
  }
}
/**
 * 
 * m_mypage1, m_mypage2
 * NOTE: 
 * 
**/
.m-mypage {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .m-mypage {
    padding-bottom: 60px;
  }
}
.m-mypage-meta {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1024px;
  margin: 0 auto;
  gap: 40px;
}
@media screen and (max-width: 959px) {
  .m-mypage-meta {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .m-mypage-meta {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 12px;
  }
}
.m-mypage-meta__img {
  width: 260px;
}
.m-mypage-meta__img img {
  border-radius: var(--site-radius-btn);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.m-mypage-meta__img .item--circle {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}
.m-mypage-meta__img:has([src*="s.gif"])::before {
  content: '';
  display: block;
  border-radius: var(--site-radius-btn);
  background-image: url('/common/images/no-image.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #f9eff2;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}
.m-mypage-meta__img:has([src*="s.gif"]):has(.item--circle)::before {
  border-radius: 50%;
}
.m-mypage-meta__img:has([src*="s.gif"]) img {
  display: none;
}
@media screen and (max-width: 959px) {
  .m-mypage-meta__img {
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .m-mypage-meta__img {
    align-self: center;
    width: 176px;
  }
}
.m-mypage-meta__info {
  flex: auto;
}
@media screen and (max-width: 959px) {
  .m-mypage-meta__info {
    flex: auto;
  }
}
@media screen and (max-width: 767px) {
  .m-mypage-meta__info {
    text-align: center;
    width: auto;
  }
}
.m-mypage-meta__flex {
  display: flex;
  align-items: center;
}
.m-mypage-meta__flex + .m-mypage-meta__flex {
  margin-top: 18px;
}
.m-mypage-meta__left {
  max-width: 765px;
}
@media screen and (max-width: 767px) {
  .m-mypage-meta__flex {
    display: block;
  }
  .m-mypage-meta__flex + .m-mypage-meta__flex {
    margin-top: 20px;
  }
}
.m-mypage-meta__ttl {
  font-size: 44px;
  font-weight: 600;
}
.m-mypage-meta__txt {
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}
.m-mypage-meta__txt a {
  color: var(--site-c-blue);
}
.m-mypage-meta__txt a:hover {
  color: var(--site-c-main);
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  .m-mypage-meta__ttl {
    font-size: 28px;
  }
  .m-mypage-meta__txt {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .m-mypage-meta__ttl {
    font-size: 22px;
  }
  .m-mypage-meta__txt {
    font-size: 12px;
  }
  * + .m-mypage-meta__txt {
    margin-top: 20px;
  }
}
.m-mypage-meta__point {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: baseline;
  align-items: baseline;
  font-size: 14px;
  font-weight: 600;
}
.m-mypage-meta__point > * {
  display: block;
  line-height: 28px;
}
.m-mypage-meta__point .item--num {
  color: #FF8C19;
  font-size: 28px;
  font-weight: 700;
  margin-left: 0.5ex;
}
.m-mypage-meta__point .item--unit {
  font-size: 14px;
  font-weight: 700;
  margin-left: 1ex;
}
@media screen and (max-width: 767px) {
  .m-mypage-meta__point {
    justify-content: center;
    font-size: 12px;
    text-align: center;
  }
  .m-mypage-meta__point > * {
    display: block;
    line-height: 22px;
  }
  .m-mypage-meta__point .item--num {
    font-size: 22px;
  }
  .m-mypage-meta__point .item--unit {
    font-size: 12px;
  }
}
.m-mypage-meta .btn {
  font-size: 14px;
  max-width: 165px;
  margin-top: 0;
  margin-left: 35px;
}
.m-mypage-meta .btn > a {
  box-shadow: none;
  border-radius: var(--site-input-height);
  border-width: 2px;
  font-size: inherit;
  height: 36px;
  padding-inline: 0;
}
.m-mypage-meta .btn > a:after {
  display: none;
}
.m-mypage-meta .btn img {
  width: 1em;
  margin-right: 1ex;
  transform: scale(1.25);
}
@media screen and (max-width: 767px) {
  .m-mypage-meta .btn {
    font-size: 12px;
    max-width: 144px;
    margin: 0 auto;
  }
  .m-mypage-meta * + .btn {
    margin-top: 12px;
  }
  .m-mypage-meta .btn > a {
    height: 36px;
  }
}
.m-mypage-menu {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 768px;
  margin: 40px auto 120px;
  gap: 24px;
}
@media screen and (max-width: 959px) {
  .m-mypage-menu {
    margin: 24px auto 64px;
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .m-mypage-menu {
    margin-block: 24px 32px;
    gap: 8px;
  }
}
.m-mypage-menu__item {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
  border-radius: var(--site-radius);
  border: 2px solid var(--site-c-main);
  background: #fff;
  width: auto;
  height: 128px;
  margin: 0;
  padding: 0;
  flex: 1 1;
}
.m-mypage-menu__item:hover {
  opacity: 0.7;
}
.m-mypage-menu__item img {
  width: 50px;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  margin-bottom: 8px;
}
.m-mypage-menu__txt {
  color: var(--site-c-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.m-mypage-menu__item .item__badge {
  right: -4px;
  top: -4px;
}
@media screen and (max-width: 959px) {
  .m-mypage-menu__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .m-mypage-menu__item {
    height: 96px;
    padding: 4px;
  }
  .m-mypage-menu__item img {
    width: 32px;
  }
  .m-mypage-menu__txt {
    font-size: 12px;
    font-feature-settings: 'palt';
  }
}

.m-mypage-shortcut {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 768px;
  margin: 40px auto 32px;
  gap: 24px;
}
.m-mypage-menu+.m-mypage-shortcut {
  margin-top: -64px;
}
@media screen and (max-width: 959px) {
  .m-mypage-shortcut {
    margin: 24px auto 32px;
    gap: 12px;
  }
  .m-mypage-menu+.m-mypage-shortcut {
    margin-top: -40px;
  }
}
@media screen and (max-width: 767px) {
  .m-mypage-shortcut {
    margin-block: 24px 32px;
    gap: 8px;
  }
  .m-mypage-menu+.m-mypage-shortcut {
    margin-top: -8px;
  }
}
.m-mypage-shortcut>.btn {
  max-width: 66.66%;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .m-mypage-shortcut>.btn {
    max-width: none;
  }
}



