@charset "UTF-8";

/**
 * header
 * NOTE:
**/
header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  width: 100%;
  height: var(--header-height);
  padding: var(--header-padding-block) 0 var(--header-padding-block) var(--header-padding-inline);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transition: all 0.3s ease;
}

.header__logo {
  color: #B9BCAE;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  width: var(--header-logo-width);
}

.header__logo:has(span) {
  padding-top: calc(1lh + 4px);
}

.header__logo a {
  display: block;
  color: inherit;
}

.header__logo img {
  width: 176px;
  height: auto;
}

.header__logo span {
  display: block;
  padding-top: 4px;
}

@media screen and (max-width: 767.98px) {
  .header__logo:has(span) {
    padding-top: 0;
  }

  .header__logo img {
    width: 100%;
    height: auto;
  }

  .header__logo span {
    display: none;
    font-size: 8px;
  }
}


.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);
  gap: var(--header-nav-gap);
}

.head-nav>ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 1441px) {
  .head-nav>ul {
    gap: 1ex;
  }
}
@media (min-width: 1601px) {
  .head-nav>ul {
    gap: 1ex;
  }
}
@media screen and (max-width: 959.98px) {
  .head-nav>ul {
    display: none;
  }
}

.head-nav>ul li {
  margin-right: 1ex;
  position: relative
}

.head-nav>ul li a {
  font-size: inherit;
  font-weight: inherit;
}

.head-nav>ul li .item__badge {
  position: absolute;
  right: -9px;
  top: -6px;
}

.head-search {
  --head-search-height: 44px;
  --head-search-padding: 3px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 3em;
  border: solid 1px #BABDB0;
  width: 400px;
  height: var(--head-search-height);
  margin: 0;
  padding: var(--head-search-padding);
  gap: 0;
  overflow: hidden;
}
@media screen and (max-width: 959.98px) {
  .head-search {
    --head-search-height: 44px;
    --head-search-padding: 3px;
    width: calc( ( 100% - var(--header-height) - var(--header-nav-gap) * 2 ) * 1.333 );
    height: var(--head-search-height);
    margin: 0;
    padding: var(--head-search-padding);
  }
}
@media screen and (max-width: 767.98px) {
  .head-search {
    --head-search-height: 36px;
    --head-search-padding: 3px;
    max-width: 200px;
    width: 100%;
    height: var(--head-search-height);
    margin: 0 20px 0 0;
    padding: var(--head-search-padding);
  }
}
@media screen and (max-width: 560.98px) {
  .head-search {
    display: block;
    border-radius: 0;
    border: none;
    width: auto;
    height: auto;
    margin: 0 20px 0 0;
    padding: 0;
    gap: 0;
    overflow: visible;
  }
}

.head-search [type="text"] {
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  height: 100%;
  padding: 0 1ex;
}

.head-search [type="submit"] {
  border: none;
  background-image: url("/common/images/icon-search.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 100%;
  aspect-ratio: 1 / 1;
}

@media screen and (min-width: 561px) {

  /* NOTE: 一覧ページのリンクはのPCでは表示しない */
  .head-search .head-icon {
    display: none;
  }
}

@media screen and (max-width: 560.98px) {

  /* NOTE: フォーム部品はのSPでは表示しない */
  .head-search [type="text"],
  .head-search [type="submit"] {
    display: none;
  }
}

.head-nav .head-btn-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 12px 0 0;
  gap: 12px;
}

.head-nav .head-btn-wrap:has(.head-icon) {
  padding: 0 var(--header-icon-size) 0 0;
  gap: var(--header-icon-size);
}

@media screen and (max-width: 560.98px) {

  .head-nav .head-btn-wrap:has(.head-icon),
  .head-nav .head-btn-wrap {
    padding-right: var(--header-padding-inline);
  }
}

/* header button */
.head-nav .head-btn {
  display: block;
  text-align: center;
  height: 40px;
  margin: 0;
}

.head-nav .head-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--site-radius-btn);
  border: 1px solid #e9eced;
  background: #fff;
  color: var(--site-c-main);
  font-size: 14px;
  font-weight: 700;
  font-feature-settings: 'palt';
  line-height: 1;
  width: 100%;
  height: 100%;
  padding: 0 1ex;
}

.head-nav .head-btn a:hover {
  background: var(--site-c-main);
  color: #fff;
}

@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: 767.98px) {
  .head-nav .head-btn {
    height: 36px;
  }

  .head-nav .head-btn a {
    font-size: 12px;
  }
}

/* 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(--main-c);
  font-size: 13px;
  font-weight: 700;
  font-feature-settings: 'palt';
  line-height: 1;
  white-space: nowrap;
}

.head-nav .head-icon a::before {
  content: '';
  display: block;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #fff;
  width: var(--header-icon-size);
  height: auto;
  margin: 0 0 1ex;
  aspect-ratio: 1 / 1;
}

.head-nav .head-icon [href*="register1"]::before {
  background-image: url('/common/images/icon-register.svg');
}

.head-nav .head-icon [href*="register2"]::before {
  background-image: url('/common/images/icon-register.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');
}

.head-nav .head-icon [href*="search2"]::before,
.head-nav .head-icon [href*="search1"]::before {
  background-image: url('/common/images/icon-search.svg');
}

.head-nav .head-icon [href*="m_top1"]::before,
.head-nav .head-icon [href*="m_top2"]::before {
  background-image: url('/common/images/icon-user.svg');
}

@media screen and (max-width: 959.98px) {
  .head-nav .head-icon a {
    font-size: 11px;
  }
}

@media screen and (max-width: 767.98px) {
  .head-nav .head-icon a {
    font-size: 9px;
  }
}


/**
 * ログイン後、アカウント表示エリア
 * NOTE:
**/
.head-login-wrap {}
@media screen and (max-width: 959.98px) {
  .head-login-wrap {
    width: calc( ( 100% - var(--header-height) - var(--header-nav-gap) * 2 ) * 0.666 );
  }
}

.head-login-account {}
.head-login-account a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--main-c);
  font-size: 15px;
  font-weight: 700;
  font-feature-settings: 'palt';
  line-height: 1.25;
  gap: 6px;
}
.head-login-account span {
  display: block;
}
.head-login-account__img {
  width: 28px;
  height: 28px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
@media screen and (max-width: 959.98px) {
  .head-login-account a {
    font-size: 12px;
  }
  .head-login-account__img {
    width: calc(var(--header-height) * 0.5625);
    height: calc(var(--header-height) * 0.5625);
  }
}


/**
 * ハンバーガー
 * NOTE:
**/
#nav-drawer {
  width: var(--header-height);
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}

/*アイコンのスペース*/
#nav-open {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-c);
  width: var(--header-height);
  height: var(--header-height);
  position: relative;
  /*aspect-ratio: 1 / 1;*/
  cursor: pointer;
}

#nav-open span {
  display: block;
  border-radius: 3px;
  background: #fff;
  width: calc(var(--header-height) * 0.4);
  height: 3px;
  position: absolute;
}

#nav-open span::before,
#nav-open span::after {
  content: '';
  display: block;
  border-radius: 3px;
  background: #fff;
  width: calc(var(--header-height) * 0.4);
  height: 3px;
  position: absolute;
  transition: 0.2s;
}

#nav-open span::before {
  top: calc(var(--header-height) * 0.4 * 0.33 * -1);
  left: 50%;
  transform: translate(-50%, 0);
}

#nav-open span::after {
  bottom: calc(var(--header-height) * 0.4 * 0.33 * -1);
  left: 50%;
  transform: translate(-50%, 0);
}

#nav-open:hover span,
#nav-open:hover span::before,
#nav-open:hover span::after {}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: block;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  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"] {
  box-shadow: 6px 0 24px 0 rgba(0, 0, 0, 0);
  border-radius: var(--site-radius) 0 0 var(--site-radius);
  background-color: #fff;
  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;
}

/*チェックが入ったら表示*/
#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: 767.98px) {
  [id="nav-content"] {
    max-width: 280px;
  }
}

.nav-drawer-close {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  color: #ddd;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06ex;
  width: auto;
  height: var(--header-height);
  margin: 0 calc(var(--header-padding-inline) * -1) 0 auto;
  padding: 8px;
  cursor: pointer;
}

.nav-drawer-close>[class*="fa-"] {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--site-radius);
  border: solid 1px #ddd;
  background: #fff;
  color: #ddd;
  width: auto;
  height: 100%;
  margin: 0;
  aspect-ratio: 1 / 1;
}

.nav-drawer-close:hover>[class*="fa-"] {
  border: solid 1px var(--main-c);
  background: #fff;
  color: var(--main-c);
}

.nav-drawer-close>[class*="fa-"]::before {
  font-size: 28px;
}

@media screen and (max-width: 767.98px) {
  .nav-drawer-close {
    font-size: 12px;
  }

  .nav-drawer-close>[class*="fa-"]::before {
    font-size: 20px;
  }
}

@media screen and (max-width: 767.98px) {
  .nav-drawer-close {
    font-size: 12px;
  }

  .nav-drawer-close>[class*="fa-"]::before {
    font-size: 20px;
  }
}

.nav-drawer__item {
  font-size: inherit;
  margin: 0;
}

.nav-drawer__item>a {
  display: block;
  color: inherit;
  font-size: inherit;
  font-feature-settings: 'palt';
  padding: 0;
  position: relative;
}
.nav-drawer__item .item__badge {
  right: 1.5em;
  top: 50%;
  transform: translate(0,-50%);
}
.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: 40px 0 0;
  gap: 1ex;
}
.nav-drawer__list .nav-drawer__item {
  padding: 0 1ex;
}
.nav-drawer__list+.nav-drawer__list {
  border-top: solid 1px #ddd;
  margin: 20px 0 0;
  padding: 20px 0 0;
}
@media screen and (max-width: 767.98px) {
  .nav-drawer__list {
    font-size: inherit;
    padding: 12px 0 0;
  }
  .nav-drawer__list+.nav-drawer__list {
    border-top: solid 1px #ddd;
    margin: 12px 0 0;
    padding: 12px 0 0;
  }
}

.nav-drawer__list .nav-drawer__item>a::before {
  content: '\f105';
  color: var(--main-c);
  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;
  border-top: solid 2px #ddd;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.nav-drawer__list-small .nav-drawer__item {
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  *+.nav-drawer__list-small {
    margin-top: 12px;
  }
}




/**
 * バッジ
 * 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;
}

@media screen and (max-width: 1024.98px) {
  .item__badge {
    right: -35px;
  }
}

/**
 * 下部固定ボタン
 * NOTE:
**/
@media only screen and (min-width: 569px) {
  .bottom-btn {
    display: none
  }
}

.bottom-btn {
  width: 100%;
  position: fixed;
  bottom: 0;
  text-align: center;
  padding: 5px;
  background: rgba(255, 255, 255, .85);
  box-sizing: border-box;
  box-shadow: 0 -2px 10px 0 rgba(0, 0, 0, .08);
  z-index: 2
}

.bottom-btn>div {
  margin: 0 auto
}

.bottom-btn .btn-box__2 {
  max-width: 100%
}

.bottom-btn .btn-box__2 .btn {
  flex-basis: 49%;
  max-width: none;
  margin: 0
}


/**
 * ヘッダー
 * NOTE: マイページ用ナビゲーション
 * NOTE: ローカル変数はvariable.cssに移動しグローバル変数にしました。
**/
.mypage-nav {
  background: #818181;
  color: #fff;
  font-size: 16px;
  width: 100%;
  position: fixed;
  top: var(--header-height);
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 959.98px) {
  .mypage-nav {
    font-size: 1.6927svw;/* 約16px～13pxの間 */
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-nav {
    font-size: 14px;
  }
}
@media screen and (max-width: 560.98px) {
  .mypage-nav {
    font-size: 14px;
  }
}
.mypage-nav .l-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--m-nav-gap);
}
@media screen and (max-width: 959.98px) {
  .mypage-nav .l-container {
    padding-inline: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-nav .l-container {
    padding-inline: var(--header-padding-inline);
    position: relative;
  }
}

.mypage-nav-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: calc( 100% - var(--m-nav-gap) - var(--m-nav-guide-width) );
  height: var(--m-nav-height);
  gap: var(--m-nav-list-gap);
}
@media screen and (max-width: 959.98px) {
  .mypage-nav-list {
    gap: var(--m-nav-list-gap);
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-nav-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    width: 100%;
    height: auto;
    gap: 0 var(--m-nav-list-gap);
  }
}

.mypage-nav-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.mypage-nav-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: #fff;
  font-weight: 700;
  height: 100%;
  padding: 0 12px;
}
.mypage-nav-list li a:hover {
  background: var(--main-c);
  color: #fff;
}
.mypage-nav-list li a>span {
  position: relative;
}
.mypage-nav-list li .item__badge {
  right: -2px;
  top: -2px;
  transform: translate(100%,0);
}
@media screen and (max-width: 959.98px) {
  .mypage-nav-list li a {
    padding: 0 var(--header-padding-inline);
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-nav-list li {
    white-space: nowrap;
    min-width: calc( (100% - var(--m-nav-list-gap) * 2) / 3 );/* 3col */
    min-height: calc( var(--m-nav-height) * 0.5 );
  }
  .mypage-nav-list:has(:nth-child(4):last-child) li {
    min-width: calc( (100% - var(--m-nav-list-gap) * 1) / 2 );/* 2col */
  }
  .mypage-nav-list:has(:nth-child(4))::after {
    content: '';
    display: block;
    border-top: solid 1px rgba(255,255,255,0.2);
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 10;
    transform: translate(0,-50%);
  }
  .mypage-nav-list li a {
    width: 100%;
    padding: 0 6px;
  }
}


.mypage-nav__link-guide {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--main-c);
  font-weight: 700;
  text-align: right;
  width: var(--m-nav-guide-width);
}
.mypage-nav__link-guide a {
  color: var(--font-c-yellow);
}
.mypage-nav__link-guide a:hover {
  text-decoration: underline;
}
.mypage-nav__link-guide i {
  margin-right: 4px;
}
@media screen and (max-width: 959.98px) {
  .mypage-nav__link-guide {
    padding-right: var(--header-padding-inline);
  }
}
@media screen and (max-width: 767.98px) {
  .mypage-nav__link-guide {
    padding: 0;
    position: absolute;
    right: var(--header-padding-inline);
    bottom: 0;
    z-index: 1;
    transform: translate(0,100%);
  }
  .mypage-nav__link-guide a {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    border-radius: 0 0 8px 8px;
    background: var(--main-c);
    color: #fff;
    text-align: center;
    text-decoration: none;
    height: 32px;
    padding: 0 1em;
  }
  .mypage-nav__link-guide a:hover {
    text-decoration: none;
  }
}


/**
 * footer
 * NOTE:
**/
footer {
  background: #818181;
  color: #fff;
  width: 100%;
  padding: 88px 0 0;
}

footer .l-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: flex-end;
  align-items: flex-end;
  max-width: var(--footer-width);
  gap: 40px 120px;
}

@media screen and (max-width: 1200.98px) {
  footer .l-container {
    gap: 20px 32px;
  }
}

@media screen and (max-width: 959.98px) {
  footer .l-container {
    gap: 20px 32px;
  }
}

@media screen and (max-width: 767.98px) {
  footer {
    padding: 32px 0 20px;
  }

  footer .l-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
  }
}

.footer-logo {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 368px;
  margin: 0 auto 0 0;
  gap: 32px;
}

@media screen and (max-width: 767.98px) {
  .footer-logo {
    align-items: center;
    text-align: center;
    width: auto;
    margin: 0;
    gap: 12px;
  }
}

.footer-logo__img {
  max-width: var(--footer-logo-width);
}

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

.footer-logo__txt {
  font-size: 18px;
  font-weight: 700;
  font-feature-settings: 'palt';
  letter-spacing: 0.1ex;
  line-height: 2;
}

@media screen and (max-width: 767.98px) {
  .footer-logo__txt {
    font-size: 12px;
    letter-spacing: normal;
  }
}

.foot-nav {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1em;
}

.foot-nav li {}

.foot-nav a {
  color: var(--font-c-gray-dark);
  color: inherit;
  text-decoration: none;
}

.foot-nav a:hover {
  color: var(--main-c);
  color: inherit;
}

@media screen and (max-width: 767.98px) {
  .foot-nav {
    font-size: 12px;
    padding: 0 1em;
  }
}

.foot-bottom {
  border-top: 1px solid #fff;
  font-size: 18px;
  font-weight: 700;
  font-feature-settings: 'palt';
  letter-spacing: 0.1ex;
  line-height: 1;
  text-align: center;
  width: 100%;
  padding: 1em;
}

.copyright {
  font-size: 13px
}

@media screen and (max-width: 767.98px) {
  .foot-bottom {
    font-size: 12px;
    letter-spacing: normal;
    padding: 1em 1em 0;
  }
}

/**
 * パンくず
 * NOTE:
**/
.breadcrumb {
  /* bootstrap解除目的 */
  padding: 0;
  margin: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
  /* bootstrap解除目的 */

}
@media screen and (max-width:767px) {
  .breadcrumb {
    color: #a1a1a1;
  }
}
.breadcrumb a {
  color: inherit;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  font-size: 12px;
  width: 100%;
  height: 40px;
}
*+.breadcrumb__item::before {
  content: '\f105';
  color: inherit;
  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;
  padding: 0 5px;
  opacity: 0.56;
}
@media screen and (max-width:767px) {
  .breadcrumb .l-container {
    padding-inline: var(--header-padding-inline);
  }
  .breadcrumb__list {
    display: block;
    height: 36px;
    line-height: 36px;
    font-size: 10px;
    letter-spacing: 0.1ex;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
  .breadcrumb__item {
    display: inline;
  }
}

/**
 * 検索条件
 * NOTE:
**/
.search {
  padding: 48px 0 0;
}
@media only screen and (max-width: 767.98px) {
  .search {
    padding-top: 12px;
  }
}


.search__area {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  max-width: var(--basewrap-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--basewrap-padding-inline);
  gap: 0 2ex;
}

.search__area.search__area--second {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
*+.search__area {
  margin-top: 24px;
}
@media screen and (max-width: 767.98px) {
  .search__area {
    justify-content: space-between;
  }
  *+.search__area {
    margin-top: 12px;
  }
}

.search__area>form {
  width: 100%;
}

.search__ttl {
  font-weight: 700;
  margin-right: 20px;
}

.search__item {
  margin-right: 15px;
}

.search__item:has([id="modal-drawer"]) {
  margin-left: auto;
  margin-right: 0;
}

@media screen and (max-width: 959.98px) {
  .search__ttl {}

  .search__item {}
}

@media screen and (max-width: 767.98px) {
  .search__ttl {}

  .search__item {}
}

.search__word,
.search__sort {}

.search__word {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}


.search__sort {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  gap: 2ex;
}
@media screen and (max-width: 767.98px) {
  .search__sort {
    font-size: 13px;
  }
}
@media screen and (max-width: 560.98px) {
  .search__sort {
    font-size: 2.9333vw;
    gap: 1.25ex;
  }
}
.search__sort .search__item {
  margin: 0;
}
.search__sort .search__item a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  color: var(--font-c);
  gap: 0.5ex;
}
.search__sort .search__item.current a {
  font-weight: 700;
}
.search__sort .search__item a i {
  color: var(--main-c);
}
.search__sort .search__item a::after {
  content: '\f062\f063';
  color: var(--main-c);
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  display: none;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  letter-spacing: -0.1ex;
  transform: scale(0.8);
}


.search__filter {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
@media screen and (max-width: 959.98px) {
  .search__filter .search__ttl {}
  .search__filter .search__item {}
}



/**
 * modal
 * NOTE:
**/
/****************modal****************/
[id="modal-drawer"] {
  width: 180px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  border-radius: var(--btn-radius)
}

.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: var(--btn-shadow);
  border-radius: var(--btn-radius);
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
  font-weight: 700;
  width: 100%;
  height: var(--btn-height);
}
.modal__btn>span:hover {
  border: solid 1px #44bdf2;
  background: #44bdf2;
  color: #fff;
}

[id="modal-open"] {
  display: block;
}

[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;
}

[id="modal-content"] {
  border-radius: 6px;
  border: 20px solid #fff;
  background: #fff;
  width: 900px;
  height: 80%;
  padding: 20px;
  position: fixed;
  top: calc(50% - 80%/2);
  left: calc(50% - 800px/2);
  z-index: 1001;
  transform: translateX(180%);
  opacity: 0;
  overflow: auto;
}
[id="modal-content"] .btn {
  margin: 40px auto;
}
[id="modal-content"] .formset+.box-btn .btn,
[id="modal-content"] .formset+.btnBox .btn {
  margin: 0 auto;
}
[id="modal-content"]:has(.btn__sticky) {
  padding: 20px 20px 0;
}
[id="modal-content"] .btn.btn__sticky {
  margin: 0 auto;
}
@media only screen and (max-width: 959.98px) {
  [id="modal-drawer"] {
    font-size: 12px;
    width: 110px;
  }
  [id="modal-content"] {
    width: 80%;
    padding: 10px;
    left: calc(50% - 80%/2);
  }
  [id="modal-content"]:has(.btn__sticky) {
    padding: 10px 10px 0;
  }
}
@media only screen and (max-width: 767.98px) {
  [id="modal-content"] {
    border: 10px solid #fff;
    width: 98%;
    padding: 10px 0;
    left: calc(50% - 98%/2);
  }
  [id="modal-content"]:has(.btn__sticky) {
    padding: 10px 0 0;
  }
}

[id="modal-input"]:checked~[id="modal-close"] {
  display: block;
  opacity: .5
}
[id="modal-input"]:checked~[id="modal-content"] {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
  opacity: 1
}

[id="modal-content"] .table th,
[id="modal-content"] .table td {
  padding: 10px 20px
}
@media only screen and (max-width: 767.98px) {
  [id="modal-content"] .table td {
    padding: 10px 10px 15px
  }
}


@media screen and (min-width: 768px) {
  [id="modal-content"] .tableset {
    border: none;
    margin-bottom: 0;
    padding: 0;
  }
}



/**
 * result
 * NOTE:
**/
/* list section */
.result {
  padding: 32px 0;
}
@media only screen and (max-width: 959.98px) {
  .result {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .result {
    padding: 12px 0;
  }
}


/* list wrapper */
.result__list {}

/* list item */
/* NOTE: 変数が設定されている箇所は、変数の値を調整してください。※.result__item内部の様々な部品で共有 */
.result__item {
  --result-item-img-width: 160px;
  --result-item-gap: 16px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  border-radius: var(--site-radius);
  border: 1px solid #BFBFBF;
  background: #fff;
  color: #5D5D5B;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  width: 100%;
  margin: 0 0 32px;
  padding: var(--result-item-gap);
  gap: var(--result-item-gap);
  position: relative;
}
.result__item.item--m1 {
  --result-item-img-width: 240px;
  margin: 0;
}
*+.result__item.item--m2,
*+.result__item.item--m1 {
  margin-top: 32px;
}
.result__item.item--liked {
  background: #fafaf1;
}
.result__item.item--m2 {
  display: block;
}
.result__item.mylist--added {
  background: #F5F6E8;
}
@media only screen and (max-width: 767.98px) {
  .result__item {
    --result-item-img-width: 64px;
    --result-item-gap: 12px;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    font-size: 14px;
    margin: 0 0 20px;
    padding: var(--result-item-gap);
    gap: var(--result-item-gap);
  }
  .result__item.item--m1 {
    --result-item-img-width: 240px;
  }
  *+.result__item.item--m2,
  *+.result__item.item--m1 {
    margin-top: 32px;
  }
}


/* NOTE: No468(Sheet No470-472) */
.result__primary-info {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  margin: 0 0 12px;
  gap: 16px;
}
@media screen and (max-width: 767.98px) {
  .result__primary-info {
    margin: 0 0 8px;
    gap: 8px;
  }
}


/* NOTE: No468(Sheet No470-472) */
.result__item-inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  flex: auto;
  gap: 16px;
}
@media only screen and (max-width: 767.98px) {
  .result__item-inner {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    font-size: 14px;
    gap: 8px;
  }
}


.result__img {
  width: var(--result-item-img-width);
  flex: initial;
}
@media only screen and (max-width: 767.98px) {
  .result__img {
    margin: 0 auto;
    flex: auto;
  }
  .result__item.item--m1 .result__img {
    width: 100%;
    margin: 0;
    text-align: center;
    order: 0;
  }
  .result__item.item--m2 .result__img {
    margin: 0;
    align-self: flex-start;
    /*position: absolute;*/
    /*left: var(--result-item-gap);*/
    /*bottom: var(--result-item-gap);*/
    /*z-index: 1;*/
  }
}
.result__img img {
  border-radius: 50%;
  width: var(--result-item-img-width);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.result__item.item--m1 .result__img img {
  border-radius: 8px;
  width: var(--result-item-img-width);
  height: auto;
  aspect-ratio: 10 / 7;
  object-fit: cover;
}
.result__img [src*="s.gif"] {
  background: var(--bg-c);
}

.result__img .btn {
  margin: 0;
}
.result__img *+.btn {
  margin-top: var(--result-item-gap);
}
.result__img .btn>* {
  height: 32px;
}
@media only screen and (max-width: 767.98px) {
  .result__img .btn>* {
    height: 40px;
  }
}





.result__case {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
@media only screen and (max-width: 767.98px) {
  .result__case {
    width: 66.66%;
  }
}
@media only screen and (max-width: 560.98px) {
  .result__case {
    width: 100%;
  }
}

.result__id {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  border-radius: 4px 0 0 4px;
  background: #363636;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.125;
  height: 28px;
  /* margin: 0 0 12px; */
  padding: 0 0.75ex;
  min-width: 140px;
}
@media only screen and (max-width: 767.98px) {
  .result__id {
    font-size: 13px;
    min-width: 50%;
    height: 26px;
  }
}
.result__situation {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 4px 4px 0;
  background: #AA70FF;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.125;
  text-align: center;
  height: 28px;
  min-width: 140px;
}
.result__situation.consult {
  background: #F26BE8;
}
.result__situation.quote {
  background: #FFCE00;
}
@media only screen and (max-width: 767.98px) {
  .result__situation {
    font-size: 17px;
    min-width: 50%;
    height: 26px;
  }
}


.result__type {
  border-radius: 8px;
  border: solid 1px #B1D12D;
  overflow: hidden;
}

*+.result__type {
  margin-top: 12px;
}

.result__type>dt {
  background: #B1D12D;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 8px 12px;
}

.result__type>dd {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 12px;
  gap: 12px;
  background: #fff;
}

.result__type>dd>span {
  display: block;
  text-align: left;
}

@media only screen and (max-width: 767.98px) {
  .result__type>dd {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.result__desc {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  flex: auto;
  width: 100%;
  gap: 8px;
}

.result__item.item--m2 .result__desc {
  justify-content: space-between;
}

.result__name {
  font-size: 22px;
  font-weight: 700;
  font-feature-settings: 'palt';
}
.result__name a {
  color: inherit;
}
@media only screen and (max-width: 767.98px) {
  .item--m1 .result__name {
    order: 0;
  }
}


.result__book {
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 767.98px) {
  .item--m1 .result__book {
    order: 99;
  }
  .item--m2 .result__book {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
  }
}
.result__book>.btn {
  max-width: none;
  width: auto;
  margin: 0;
}
.result__book>.btn>a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-shadow: none;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--main-c);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  width: auto;
  height: auto;
  padding-inline: 0;
  position: relative;
}
.result__book>.btn.btn--likeoff>a {
  color: #F5A925;
}
.result__book>.btn.btn--like a::after {
  width: 2.6em;
  height: auto;
  aspect-ratio: 1 / 1;
}
@media only screen and (max-width: 767.98px) {
  .result__book>.btn.btn--like a::after {
    width: 40px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}



.result__area {
  font-size: 13px;
  flex: 1 100%;
}
.result__area a {
  color: inherit;
}
@media only screen and (max-width: 767.98px) {
  .item--m1 .result__area {
    order: 0;
  }
}

.result__touch {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex: 1 100%;
  gap: 32px;
}
@media only screen and (max-width: 767.98px) {
  .result__touch {
    gap: 8px;
  }
  .item--m1 .result__touch {
    order: 0;
  }
}
.result__touch a {
  color: var(--main-c);
  font-size: 16px;
  font-weight: 500;
}
.result__touch [class*="fa-"] {}
.result__touch span {}
.result__touch [class*="fa-"]+span {
  margin-left: 0.75ex;
}

/* m2 item (m_search1 page item) touch */
.result__item.item--m2 .result__top>.result__touch {}
.result__item.item--m2 .result__top>.result__touch>a {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--btn-shadow);
  border-radius: var(--btn-radius);
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
  font-weight: 500;
  height: var(--btn-small-height);
  padding: 0 1em;
}
.result__item.item--m2 .result__top>.result__touch>a>.fa-solid.fa-envelope {}
.result__item.item--m2 .result__top>.result__touch>a>span {}
@media only screen and (max-width: 767.98px) {
  .result__item.item--m2 .result__top>.result__touch>a {
    width: 100%;
  }
}



.result__txt {
  flex: 1 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 48px;
}
.result__txt a {
  color: inherit;
}
@media only screen and (max-width: 767.98px) {
  .item--m1 .result__txt {
    order: 0;
  }
}

.page-outline .result__txt {
  max-height: none;
  -webkit-line-clamp: none;
}

/* top (or left) content */
.result__top {
  flex: auto;
  width: calc(100% - var(--result-item-img-width) - var(--result-item-gap));
}

.result__item.item--m2 .result__top {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  border-radius: 8px;
  background: #F6F7CD;
  padding: 12px;
  gap: 12px;
}
@media only screen and (max-width: 767.98px) {
  .result__top {
    width: 100%;
  }
  .item--m1 .result__top {
    order: 0;
  }
  .item--m2 .result__top {
    flex: initial;
    border-radius: 4px;
    width: calc(100% - var(--result-item-img-width) - var(--result-item-gap));
    padding: 12px 12px;
    gap: 4px;
  }
}




.result__info {}

.result__info>dt {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  border-radius: 2em;
  background: #F5A925;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  width: fit-content;
  height: 28px;
  padding: 0 15px;
  gap: 3px;
}

.result__info>*+dt {
  margin-top: 12px;
}

.result__info>dt>.fa-solid.fa-bell {}

.result__info>dt>span {}

.result__info>dd {}

.result__info>*+dd {
  margin-top: 8px;
}

.result__info-news {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  max-height: 24px;
}

.page-outline .result__info-news {
  -webkit-line-clamp: none;
  max-height: none;
}

.result__info a {
  color: inherit;
}

.result__charges {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  gap: 4px 20px;
}

.result__charges>tbody {}

.result__charges>tbody>tr {}

.result__charges>tbody>tr>th,
.result__charges>tbody>tr>td {
  font-weight: 500;
  text-align: left;
  padding: 4px 0;
}

.result__charges>tbody>tr>th {
  width: 120px;
}

.result__charges a {
  color: inherit;
}

.result__charges>dl {
  display: flex;
  flex-flow: row wrap;
}

.result__charges>dl>dt {
  font-weight: 700;
}

.result__charges>dl>dd {
  font-weight: 500;
  text-align: left;
}

.result__cate {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 8px;
}
*+.result__cate {
  margin-top: 12px;
}
@media only screen and (max-width: 767.98px) {
  .result__cate {
    gap: 8px 4px;
  }
  .item--m2 *+.result__cate {
    margin-top: 0;
  }
}

.result__cate>li a,
.result__cate>li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 3em;
  border: solid 3px #EAEAEA;
  background: #EAEAEA;
  color: #839586;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  height: 36px;
  padding: 0 8px;
  position: relative;
}
.result__cate>li.on a,
.result__cate>li.on {
  border: solid 3px var(--main-c);
  background: var(--main-c-pale);
  color: var(--font-c);
}
.result__cate>li:has(a) {
  display: block;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--font-c);
  height: auto;
  padding: 0;
}
@media only screen and (max-width: 767.98px) {
  .result__cate>li a,
  .result__cate>li {
    font-size: 11px;
    font-feature-settings: 'palt';
    height: 26px;
  }
}

/* bottom (or right) content */
.result__bottom {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  width: var(--result-item-img-width);
  flex: initial;
  align-self: stretch;
  gap: 10px;
}

.result__item.item--m2 .result__bottom {}

@media only screen and (max-width: 767.98px) {
  .result__bottom {
    width: 100%;
  }
  .item--m1 .result__bottom {
    order: 0;
  }
  .item--m2 .result__bottom {
    order: -1;
  }
  .result__bottom-btnbox {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3px;
  }
  .result__bottom-btnbox .btn--small a {
    font-size: 10px;
    padding: 0;
  }
}

.result__range {
  border-radius: 8px;
  background: #F6F7CD;
  padding: 12px 12px 20px;
}

.result__range>dt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.5em;
  color: #4F7C58;
}

.result__range>dd {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.result__range a {
  color: inherit;
}

.result__btn-wrap {
  margin-top: auto;
}

.result__btn {
  max-width: none;
  margin: auto 0 0;
}

*+.result__btn {
  margin-top: 5px;
}

.resut__btn-blue>a {
  border: 1px solid #247ED9;
  background: #247ED9;
}

.result__btn>a {}

@media only screen and (min-width: 768px) {
  .result__item.item--m2 .result__bottom>.btn.result__btn:only-child {
    height: 100%;
  }

  .result__item.item--m2 .result__bottom>.btn.result__btn:only-child>a {
    border-radius: 8px;
    height: 100%;
  }
}

@media only screen and (max-width: 767.98px) {
  .result__btn {
    margin: 0;
  }

  *+.result__btn {
    margin-top: 12px;
  }

  .result__btn-wrap {
    margin-top: 12px;
  }
}

.result__rate {
  width: 100px;
  height: 25px;
  margin: 5px 0;
  color: #fffc20;
  font-size: 10px;
  font-weight: 700;
  background: var(--main-c);
  border-radius: var(--site-radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center
}

.result__point {
  padding-left: 2px;
  font-size: 15px
}

.result__public {
  height: 25px;
  margin: 5px 0;
  color: #ff3a31;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #ff3a31;
  border-radius: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center
}

.result__profile {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  font-size: 11px
}

.result__profile li {
  margin-top: 5px;
  color: var(--font-c-gray-dark);
  line-height: 1
}

/* m2 予定日時 */
.result__reserved-time {
  --time-gap: 12px;
  --time-height: 26px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: var(--time-gap);
}
@media only screen and (max-width: 767.98px) {
  .result__reserved-time {
    --time-gap: 6px;
    --time-height: 26px;
    height: var(--time-height);
    gap: 0 var(--time-gap);
  }
}
.result__reserved-time>dt {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 2em;
  background: #F5A925;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  min-width: 72px;
  width: fit-content;
  height: var(--time-height);
  padding: 0;
  gap: 1ex;
}
.result__reserved-time>dd {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 20px;
  line-height: 20px;
  white-space: nowrap;
  gap: 4px;
}
@media only screen and (max-width: 767.98px) {
  .result__reserved-time>dt {
    border-radius: 4px;
    font-size: 13px;
    line-height: 1;
    min-width: 0;
    height: 100%;
    padding-inline: 0.5ex;
  }
  .item--m1 .result__reserved-time>dt {
    line-height: 1.333;
  }
  .result__reserved-time>dd {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    min-width: 0;
  }
}
@media screen and (max-width: 560.98px) {
  .result__reserved-time>dt {
    font-size: 2.9333vw;
  }
  .result__reserved-time>dd {
    font-size: 4vw;
  }
}

.result__reserved-time>dd [class*="fa-"] {
  display: block;
  color: #F5A925;
  font-size: inherit;
}
.result__reserved-time>dd span {
  display: block;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}
.result__reserved-time a {
  color: inherit;
}


.result__reserved-type {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
/* NOTE: 不使用 .result__reserved-type>dt */
.result__reserved-type>dt {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  border-radius: 4px;
  background: #F5A925;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  width: fit-content;
  height: 26px;
  padding: 0 12px;
  gap: 1ex;
}
.result__reserved-type>dd {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 4px;
  border: solid 2px #F5A925;
  background: #fff;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  min-width: 72px;
  width: fit-content;
  height: 26px;
  padding: 0 8px;
  gap: 1ex;
}
.result__reserved-type a {
  color: inherit;
}
@media only screen and (max-width: 767.98px) {
  .result__reserved-type>dt {
    font-size: 14px;
  }
  .result__reserved-type>dd {
    font-size: 16px;
  }
}
@media only screen and (max-width: 560.98px) {
  .result__reserved-type>dd {
    font-size: 4vw;
    min-width: 2.5em;
  }
}


.result__postdate {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  gap: 1ex;
}
.result__postdate>dt {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}
.result__postdate>dd {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}
@media only screen and (max-width: 767.98px) {
  .result__postdate {
    color: var(--font-c-gray);
    font-size: 11px;
    width: 100%;
  }
}


.result__guide {
  --guide-gap: 124px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  border-radius: 16px;
  background: #D9E895;
  padding: 12px 32px;
  flex: 1 100%;
  gap: 32px;
  position: relative;
}

@media only screen and (max-width: 767.98px) {
  .result__guide {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    padding: 12px 12px;
    flex: auto;
    gap: 8px;
  }
}

.result__guide>dl {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .result__guide>dl {
    align-items: flex-start;
  }
}
.result__guide>dl:nth-of-type(1) {
  order: 1;
}
.result__guide>dl:nth-of-type(2) {
  order: 3;
}
.result__guide>dl:nth-of-type(3) {
  order: 5;
}
.result__guide::after,
.result__guide::before {
  content: '';
  display: block;
  background-image: url("/common/images/img-reader-w.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: var(--guide-gap);
  pointer-events: none;
  order: 2;
}
.result__guide::after {
  display: none;
  order: 4;
}
.result__guide:has(dl:nth-child(3))::after {
  display: block;
}
@media only screen and (max-width: 767.98px) {
  .result__guide::after,
  .result__guide::before {
    background-size: auto 2px;
    width: 32px;
    height: 16px;
    margin: 0 auto -8px;
    transform: rotate(90deg);
  }
}

.result__guide>dl>dt {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--main-c);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  width: 56px;
  height: auto;
  aspect-ratio: 1 / 1;
}

.result__guide>dl>dd {}

.result__guide time {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 767.98px) {
  .result__guide time {
    font-size: 18px;
  }
}

.result__guide address {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 767.98px) {
  .result__guide address {
    font-size: 18px;
  }
}

.result__guide p {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
@media only screen and (max-width: 767.98px) {
  .result__guide p {
    font-size: 14px;
  }
}

.result__passenger {
  flex: 1 100%;
}

.result__passenger>em {
  color: #EC6A56;
  font-size: 1.25em;
  font-weight: 700;
  margin-left: 0.5ex;
  margin-right: 0.5ex;
}

.result__reserved-note {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  flex: 1 100%;
  width: 100%;
}
@media only screen and (max-width: 767.98px) {
  .result__reserved-note {
    align-items: flex-start;
  }
}

.result__reserved-note>dt {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 2em;
  background: #ED6A56;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  width: 120px;
  height: 28px;
  padding: 0 12px;
  gap: 1ex;
}
@media only screen and (max-width: 767.98px) {
  .result__reserved-note>dt {
    font-size: 12px;
    width: 72px;
    height: 26px;
    padding: 0 4px;
  }
}

.result__reserved-note>dd {
  font-size: 17px;
  width: calc( 100% - 120px );
  padding: 0 0 0 1em;
}
.result__reserved-note>dd:empty::before {
  content: 'なし';
  color: var(--font-c-gray);
}
.result__reserved-note a {
  color: inherit;
}
@media only screen and (max-width: 767.98px) {
  .result__reserved-note>dd {
    font-size: 12px;
    width: calc( 100% - 72px );
    padding-top: 4px;
  }
}

.result__reserver {
  font-size: 16px;
  line-height: inherit;
}
@media only screen and (max-width: 767.98px) {
  .result__reserver {
    font-size: 14px;
    line-height: 1.25;
  }
}
@media screen and (max-width: 560.98px) {
  .result__reserver {
    font-size: 2.9333vw;
  }
}

/**
 * カード型リスト
 * NOTE:
**/
.card__list {
  --card-gap: 20px;
  --card-item-gap: 12px;
  --card-item-btn-height: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--card-gap);
}
@media only screen and (max-width: 959.98px) {
  .card__list {
    --card-gap: 20px;
    --card-item-gap: 12px;
    --card-item-btn-height: 32px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--card-gap);
  }
}
@media only screen and (max-width: 767.98px) {
  .card__list {
    --card-gap: 20px;
    --card-item-gap: 12px;
    --card-item-btn-height: 32px;
    grid-template-columns: 1fr;
    gap: var(--card-gap);
  }
}

.card__item {
  box-shadow:
    0 6px 12px rgb(0,0,0,0.05),
    0 2px 4px rgb(0,0,0,0.05);
  border: 1px solid #e9eced;
  background: #fff;
  width: auto;
  padding: var(--card-item-gap) var(--card-item-gap) calc( var(--card-item-btn-height) + var(--card-item-gap) * 2 );
  align-self: stretch;
  position: relative;
}

.card__img {
  width: 100%;
}
.card__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
@media screen and (max-width: 959.98px) {
  .card__img img {
    height: 140px;
  }
}

.card__desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-top: calc( var(--card-item-gap) * 0.5 );
}

.card__ttl {
  font-size: 16px;
  font-weight: 700;
}
*+.card__ttl {
  margin-top: calc( var(--card-item-gap) * 0.5 );
}
.card__ttl a {
  color: inherit;
}

.card__txt {
  font-size: 14px;
  font-feature-settings: 'palt';
}
*+.card__txt {
  margin-top: calc( var(--card-item-gap) * 0.5 );
}
.card__txt a {
  color: inherit;
}

.card__item .box-btn,
.card__item .btnBox {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  max-width: none;
  width: auto;
  gap: calc( var(--card-item-gap) * 0.5 );
  position: absolute;
  top: auto;
  right: var(--card-item-gap);
  bottom: var(--card-item-gap);
  left: var(--card-item-gap);
  z-index: 1;
}
.card__item .box-btn .btn,
.card__item .btnBox .btn,
.card__item .box-btn .btn--small,
.card__item .btnBox .btn--small {
  max-width: none;
  width: auto;
  flex: 1 1;
}
.card__item .box-btn .btn>*,
.card__item .btnBox .btn>*,
.card__item .box-btn .btn--small>*,
.card__item .btnBox .btn--small>* {
  height: var(--card-item-btn-height);
}



/**
 * スレッド型リスト
 * NOTE:
**/
.thread__list {
  margin-bottom: 30px;
  padding: 40px;
  border: 1px solid #e9eced;
  border-radius: var(--btn-radius);
}

.thread__item {
  border-top: 1px solid #e9eced
}

.thread__item:last-child {
  border-bottom: 1px solid #e9eced
}

.thread__item a {
  padding: 15px;
  display: block;
}

@media screen and (max-width: 767.98px) {
  .thread__list {
    padding: 10px 0;
    margin-bottom: 20px;
  }
}

/**
 * チャット
 * NOTE:
**/
.chat {
  padding-bottom: 200px;
}

@media only screen and (max-width: 959.98px) {
  .chat {
    padding-bottom: 140px;
  }
}

/* chat outline */
/* NOTE: ヘッダー、フレーム、フッターの親ラッパー */
.chat-outline {
  padding: 10px 0;
}

@media only screen and (max-width: 767.98px) {
  .chat-outline {
    padding: 5px 0;
  }
}

.chat-outline .c-head {
  margin-bottom: 5px
}

.chat-outline .c-head .c-head__ttl {
  font-size: 18px;
}

@media only screen and (max-width: 767.98px) {
  .chat-outline .c-head .c-head__ttl {
    font-size: 16px;
  }
}

/* chat header */
.chat-header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: 8px;
}

@media only screen and (max-width: 767.98px) {
  .chat-header {
    gap: 4px;
  }
}

.chat-header .c-head {
  width: 100%;
  min-height: 1lh;
  padding: 0 64px 0 0;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .chat-header .c-head {
    padding-right: 0;
  }
}

.chat-header .c-head__ttl {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 8px 1.5em;
}
.chat-header .c-head__ttl>span {
  display: block;
}
.chat-header .c-head__ttl>a {
  color: var(--main-c);
}
.chat-header .c-head__ttl>a i {
  color: var(--main-c);
}
.chat-header .c-head__ttl>a span {
  color: var(--main-c);
  font-weight: 700;
  margin-left: 1ex;
}

/* empty text */
.chat-header .c-head__ttl>span:empty {
  display: none;
}
/* empty data */
.chat-header .c-head__ttl>[data-dest=""],
.chat-header .c-head__ttl>[data-item=""] {
  display: none;
}

@media only screen and (max-width: 767.98px) {
  .chat-header .c-head__ttl>[data-dest] {
    width: 100%;
  }
}

.chat-header .c-head__ttl-link {
  display: block;
  font-size: 16px;
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}



.chat-header .chat__status {
  float: none;
  /* .chat-header内部ではfloat解除 */
}

.chat__status {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: var(--btn-radius);
  border: 1px solid #e9eced;
  background: var(--main-c);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  width: auto;
  margin-bottom: 10px;
  padding: 8px;
  float: left;
}

.chat__status .btn {
  color: #fff;
  margin: 0;
  max-width: none;
}

.chat__status .btn>* {
  height: auto;
}

.chat__status input {
  color: #fff;
}

@media only screen and (max-width: 767.98px) {
  .chat__status {
    font-size: 10px;
    width: auto;
    margin-bottom: 5px;
    padding: 6px;
  }

  .chat__status .btn,
  .chat__status input {
    font-size: 12px;
  }

  .chat__status .btn>* {
    font-size: inherit;
  }
}

.chat-inner body {
  /* 不使用 */
  margin: 0 !important;
}

/* chat iframe */
.chat-inner .inner {
  /* 不使用 */
  overflow: hidden;
}

/* chat iframe */
.chat-inner .ifrm {
  border-radius: var(--site-radius);
  border: 1px solid #e9eced;
  background: #fff;
  width: 100%;
  min-height: 55vh;
  padding: 10px 0;
}

@media only screen and (max-width: 767.98px) {
  .chat-inner .ifrm {
    min-height: 50vh;
    padding: 5px 0;
  }
}

@media only screen and (max-width: 320.98px) {
  .chat-inner .ifrm {
    min-height: 42vh;
    padding: 0;
  }
}

/* chat 吹き出し */
.left_balloon,
.right_balloon {
  margin: 10px 30px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

@media only screen and (max-width: 767.98px) {

  .left_balloon,
  .right_balloon {
    margin: 18px 12px;
  }
}

.right_balloon {
  justify-content: flex-end;
}

.faceicon {
  --faceicon-size: 60px;
}
@media only screen and (max-width: 767.98px) {
  .faceicon {
    --faceicon-size: 25px;
  }
}

.faceicon img {
  border-radius: 50%;
  width: var(--faceicon-size);
  height: var(--faceicon-size);
  object-fit: cover;
}
.faceicon:has([src=""])::before {
  content: '';
  display: block;
  border-radius: 50%;
  background: #eee;
  width: var(--faceicon-size);
  height: var(--faceicon-size);
}
.faceicon [src=""] {
  display: none;
}


.right_balloon .faceicon {
  margin-left: 25px;
  order: 2 !important;
  display: none
}

.left_balloon .faceicon {
  margin-right: 25px;
}

@media only screen and (max-width: 767.98px) {
  .left_balloon .faceicon {
    margin-right: 12px;
  }
}

.balloon_div_right {
  max-width: 500px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 10px 13px 10px 18px;
  border-radius: 12px;
  background: #c5f281;
  box-sizing: border-box;
  margin: 0 !important;
  line-height: 1.5;
}

.left_balloon .balloon_div_right {
  background: #eee;
}

.system_balloon {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 10px 13px 10px 18px;
  border-radius: 12px;
  background: #c9efff;
  box-sizing: border-box;
  line-height: 1.5;
}

.but_send {
  background-color: #99DEED;
  color: #fff;
  border-radius: 4px !important;
  margin: 5px 10px 5px 0;
  border-left: none !important;
}

.but_send:hover {
  background-color: var(--main-c);
}

.but_agree {
  border-left: none !important;
}

.enterprise {
  background: #ddd !important;
}

@media only screen and (max-width: 767.98px) {

  .balloon_div_right,
  .system_balloon {
    padding: 8px 13px 10px 15px;
  }
}

.balloon_div_right p,
.system_balloon p {
  width: 100%;
  margin: 0;
  display: block;
  font-size: 14px;
}

@media only screen and (max-width: 767.98px) {

  .balloon_div_right p,
  .system_balloon p {
    font-size: 12px;
  }
}

.balloon_div_right p:first-child,
.system_balloon p:first-child {
  margin-top: 0 !important;
}

.balloon_div_right::after {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  /*   margin-top:-3px;  */
}

.left_balloon .enterprise::after {
  left: -26px;
  border-right: 22px solid #ddd !important;
}

.left_balloon .balloon_div_right::after {
  left: -26px;
  border-right: 22px solid #eee;
}

.right_balloon .balloon_div_right::after {
  right: -26px;
  border-left: 22px solid #c5f281;
}

@media only screen and (max-width: 767.98px) {
  .left_balloon .balloon_div_right::after {
    top: 4px;
    left: -20px;
    border-right: 22px solid #eee;
  }

  .right_balloon .balloon_div_right::after {
    top: 4px;
    right: -20px;
    border-left: 22px solid #c5f281;
  }
}

.balloon_sub {
  margin: 0 0 2px;
  display: flex;
  align-items: center;
  flex-wrap: wrap
}

.balloon_name {
  margin-right: 5px;
  font-size: 13px;
  font-weight: 700;
  display: block;
}

.balloon_date {
  margin-right: 5px;
  color: #7d7d7d;
  font-size: 11px
}

.balloon_kidoku {
  padding: 0 5px;
  font-size: 10px;
  border: 1px solid #B4BFC2;
  border-radius: 3px;
}

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

  .balloon_name,
  .balloon_date {
    font-size: 10px;
  }

  .balloon_kidoku {
    font-size: 8px;
  }
}

/* chat footer */
.chat-footer {
  position: relative;
}

.chat-footer textarea {
  border-radius: var(--site-radius);
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 1em 1em 40px;
}
.chat-footer textarea::placeholder {
  font-size: inherit;
  line-height: 2;
}
@media only screen and (max-width: 767.98px) {
  .chat-footer textarea {
    max-height: 40vh;
  }
}


.submit__area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 6px;
  right: 20px;
}

.chat__submit [type="submit"],
.chat__submit [type="button"],
.chat__submit [type="file"] {
  border-left: 1px solid #e9eced;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  width: auto;
  height: 40px;
  padding: 0 1ex;
}

.btn-file {
  height: 40px;
}

.btn-file::before {
  content: "";
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: url("../images/icon-clip.png") center center / 100% no-repeat;
  display: inline-block;
  position: relative;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 767.98px) {

  .submit__area {
    right: 10px;
  }

  .btn-file {
    height: 30px;
  }

  .btn-file::before {
    width: 30px;
    height: 30px;
    margin-right: 0;
  }

  .chat__submit [type="submit"],
  .chat__submit [type="button"],
  .chat__submit [type="file"] {
    font-size: 16px;
    height: 30px;
    padding: 0 10px;
  }
}

/**
 * pagination
 * NOTE:
**/
.pagination {
  display: block;
}
*+.pagination {
  margin-top: 32px;
}

.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination span,
.pagination a {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: #fafafa;
  border-radius: var(--btn-radius);
  display: flex;
  align-items: center;
  justify-content: center
}

.pagination span:last-child,
.pagination a:last-child {
  margin-right: 0
}

.pagination .current,
.pagination a:hover {
  color: #fff;
  background: var(--main-c)
}

@media only screen and (max-width: 767.98px) {
  .pagination {
    padding: 20px 0
  }
}

@media only screen and (max-width: 320.98px) {
  .pagination {
    font-size: 11px
  }

  .pagination span,
  .pagination a {
    padding: 8px 10px 8px 10px
  }

  .pagination .current {
    padding: 8px 10px 8px 10px
  }
}

/**
 * outline page
 * NOTE:
**/
body:has(.page-outline) {
  /**background: #B1D12D; デザイン変更**/
  background: #f7fbea;
}


/**
 * outline-head
 * NOTE: 詳細ページのヘッダー部分
**/
/* outline header */
.outline-head {
  padding: 32px 0;
}
@media only screen and (max-width: 959.98px) {
  .outline-head {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .outline-head {
    padding: 12px 0;
  }
}


/* list item */
.outline-head__item {
  --outline-item-img-width: 160px;
  --outline-item-gap: 16px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  border-radius: var(--site-radius);
  border: 1px solid #BFBFBF;
  background: #fff;
  color: #5D5D5B;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  width: 100%;
  margin: 0 0 32px;
  padding: var(--outline-item-gap);
  gap: var(--outline-item-gap);
  position: relative;
}
.page-outline--1 .outline-head__item {
  display: block;
}
.page-outline--2 .outline-head__item {
  --outline-item-img-width: 240px;
  --outline-item-gap: 16px;
  gap: var(--outline-item-gap);
}
.page-outline--2 .outline-head__item.mylist--added {
  background: #F5F6E8;
}
@media only screen and (max-width: 767.98px) {
  .outline-head__item {
    --outline-item-img-width: 144px;
    --outline-item-gap: 12px;
    gap: var(--outline-item-gap);
  }
  .page-outline--2 .outline-head__item {
    --outline-item-img-width: 240px;
    --outline-item-gap: 16px;
    gap: var(--outline-item-gap);
  }
}



.outline-head__item-top {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: stretch;
  flex: auto;
  gap: 8px;
  margin: 0 0 16px;
}

.outline-head__item-top-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
  flex: auto;
  gap: 8px;
  margin: 0 0 16px;
}
@media only screen and (max-width: 767.98px) {
  .outline-head__item-top-inner {
    align-items: center;
  }
}



.outline-head__situation-wrap {
  display: flex;
}
@media only screen and (max-width: 767.98px) {
  .outline-head__situation-wrap {
    width: 66.66%;
  }
}
@media only screen and (max-width: 560.98px) {
  .outline-head__situation-wrap {
    width: 100%;
  }
}

.outline-head__id {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  border-radius: 4px 0 0 4px;
  background: #363636;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 32px;
  height: 32px;
  /* margin: 0 0 12px; */
  padding: 0 4px;
  min-width: 140px;
}
@media only screen and (max-width: 767.98px) {
  .outline-head__id {
    min-width: 50%;
  }
}

.outline-head__situation {
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  background: #AA70FF;
  border-radius: 0 4px 4px 0;
  height: 32px;
  min-width: 140px;
  text-align: center;
}
.outline-head__situation.quote {
  background: #FFCE00;
}
.outline-head__situation.consult {
  background: #F26BE8;
}
@media only screen and (max-width: 767.98px) {
  .outline-head__situation {
    min-width: 50%;
  }
}



.outline-head__item-inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: var(--outline-item-gap);
}
@media screen and (max-width: 1200.98px) {
  .outline-head__item-top {
    flex-flow: column nowrap;
  }
}
@media only screen and (max-width: 767.98px) {
  .outline-head__item,
  .outline-head__item-inner {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    font-size: 14px;
  }
  .outline-head__item:has(.outline-head__book) {
    padding-top: 64px;
  }
}

.outline-head__img {
  width: var(--outline-item-img-width);
  flex: initial;
}

@media only screen and (max-width: 767.98px) {
  .outline-head__img {
    margin: 0 auto;
    flex: auto;
  }

  .page-outline--2 .outline-head__item .outline-head__img {
    width: 100%;
    margin: 0;
    text-align: center;
  }
}

.outline-head__img img {
  border-radius: 50%;
  width: var(--outline-item-img-width);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.page-outline--2 .outline-head__item .outline-head__img img {
  border-radius: 8px;
  width: var(--outline-item-img-width);
  height: auto;
  aspect-ratio: 10 / 7;
  object-fit: cover;
}

.outline-head__img .btn {}
.outline-head__img *+.btn {
  margin-top: var(--outline-item-gap);
}
.outline-head__img .btn>* {
  height: 32px;
}
@media only screen and (max-width: 767.98px) {
  .outline-head__img .btn>* {
    height: 40px;
  }
}


.outline-head__type {
  border-radius: 8px;
  border: solid 1px #B1D12D;
  overflow: hidden;
}
*+.outline-head__type {
  margin-top: 12px;
}
.outline-head__type>dt {
  background: #B1D12D;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 8px 12px;
}
.outline-head__type>dd {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 12px;
  gap: 12px;
  background: #fff;
}

.outline-head__type>dd>span {
  display: block;
  text-align: left;
}

@media only screen and (max-width: 767.98px) {
  .outline-head__type>dd {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.outline-head__desc {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex: auto;
  width: 100%;
  gap: 12px;
}

.page-outline--1 .outline-head__item .outline-head__desc {
  justify-content: space-between;
}

.outline-head__name {
  font-size: 22px;
  font-weight: 700;
  font-feature-settings: 'palt';
}

.outline-head__name a {
  color: inherit;
}

.outline-head__book {
  margin: 0 0 0 auto;
}

.outline-head__book>.btn {
  max-width: none;
  width: auto;
  margin: 0;
}

.outline-head__book>.btn>a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-shadow: none;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--main-c);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  width: auto;
  height: auto;
  position: relative;
}

@media only screen and (max-width: 767.98px) {
  .outline-head__book {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
  }
}

.outline-head__area {
  flex: 1 100%;
}

.outline-head__area a {
  color: inherit;
}


/* touch */
.outline-head__touch {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex: 1 100%;
  gap: 10px;
}
.outline-head__touch a {
  color: var(--main-c);
  font-size: 20px;
  font-weight: 500;
}
.outline-head__touch [class*="fa-"] {}
.outline-head__touch span {}
.outline-head__touch [class*="fa-"]+span {
  margin-left: 0.5ex;
}

/* touch in m1 outline */
.page-outline--1 .outline-head__touch {}
.page-outline--1 .outline-head__touch>a {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--btn-shadow);
  border-radius: var(--btn-radius);
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
  font-weight: 500;
  height: var(--btn-height);
  padding: 0 1em;
}
.page-outline--1 .outline-head__touch>a:has(.fa-phone) {
  border: solid 1px #247ED9;
  background: #247ED9;
}
@media only screen and (max-width: 767.98px) {
  .page-outline--1 .outline-head__touch {
    justify-content: center;
    flex: initial;
    width: 100%;
    gap: 8px;
  }
  .page-outline--1 *+.outline-head__touch {
    margin-top: 8px;
  }
  .page-outline--1 .outline-head__touch>a {
    font-size: 13px;
    flex: 1 1;
  }
}

/* touch in boder box */
.outline-head__border-box .outline-head__touch {
  flex: initial;
  margin-left: auto;
  margin-right: 0;
}
.page-outline--1 .outline-head__border-box .outline-head__touch>a {
  height: 32px;
}



/* top text */
.outline-head__txt {
  flex: 1 100%;
}
.outline-head__txt a {
  color: inherit;
}

/* top (or left) content */
.outline-head__top {
  flex: auto;
  align-self: stretch;
  width: calc(100% - var(--outline-item-img-width) - var(--outline-item-gap));
}
@media only screen and (max-width: 767.98px) {
  .outline-head__top {
    width: 100%;
  }
}

.outline-head__info {}

.outline-head__info>dt {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  border-radius: 2em;
  background: #F5A925;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  min-width: 128px;
  width: fit-content;
  height: 28px;
  padding: 0 12px;
  gap: 1ex;
}

.outline-head__info>*+dt {
  margin-top: 12px;
}

.outline-head__info>dt>.fa-solid.fa-bell {}

.outline-head__info>dt>span {}

.outline-head__info>dd {}

.outline-head__info>*+dd {
  margin-top: 8px;
}

.outline-head__info a {
  color: inherit;
}

.outline-head__charges {
  width: 100%;
}

.outline-head__charges>tbody {}

.outline-head__charges>tbody>tr {}

.outline-head__charges>tbody>tr>th,
.outline-head__charges>tbody>tr>td {
  font-weight: 500;
  text-align: left;
  padding: 4px 0;
}

.outline-head__charges>tbody>tr>th {
  width: 120px;
}

.outline-head__charges a {
  color: inherit;
}

.outline-head__cate {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 12px;
  flex: 1 100%;
}

@media only screen and (max-width: 767.98px) {
  .outline-head__cate {
    gap: 8px 4px;
  }
}

.outline-head__cate>li a,
.outline-head__cate>li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 3em;
  border: solid 3px #EAEAEA;
  background: #EAEAEA;
  color: #839586;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  height: 2.875em;
  padding: 0 1.25em;
  position: relative;
}
.outline-head__cate>li.on {
  border: solid 3px #EC6A56;
  background: #EC6A56;
  color: #fff;
}
.outline-head__cate>li:has(a) {
  display: block;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--font-c);
  height: auto;
  padding: 0;
}
@media only screen and (max-width: 767.98px) {
  .outline-head__cate>li a,
  .outline-head__cate>li {
    font-size: 11px;
    font-feature-settings: 'palt';
    height: 26px;
  }
}

/* bottom (or right) content */
.outline-head__bottom {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-content: stretch;
  align-items: stretch;
  width: var(--outline-item-img-width);
  flex: initial;
  align-self: stretch;
}

.page-outline--1 .outline-head__item .outline-head__bottom {}

@media only screen and (max-width: 767.98px) {
  .outline-head__bottom {
    width: 100%;
  }
}

.outline-head__range {
  border-radius: 8px;
  background: #F6F7CD;
  padding: 12px 12px 20px;
}

.outline-head__range>dt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.5em;
  color: #4F7C58;
}

.outline-head__range>dd {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.outline-head__range a {
  color: inherit;
}

.outline-head__btnarea {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: stretch;
  gap: 12px;
}
.outline-head__btn {
  max-width: none;
  margin: 0;
}
@media (min-width: 768px) {
  .outline-head__btnarea {
    height: 100%;
  }
  .outline-head__btn {
    max-height: 50%;
    flex: 1 1;
  }
  .outline-head__btn>input,
  .outline-head__btn>button,
  .outline-head__btn>a,
  .outline-head__btn>span {
    border-radius: 16px;
    height: 100%;
  }
}
@media (max-width: 767.98px) {
  .outline-head__btnarea {
    gap: 8px;
  }
}


.outline-head__btn>input::after,
.outline-head__btn>button::after,
.outline-head__btn>a::after,
.outline-head__btn>span::after {
  display: none;
}

.outline-head__btn--map-open>input,
.outline-head__btn--map-open>button,
.outline-head__btn--map-open>a,
.outline-head__btn--map-open>span {
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
}

.outline-head__btn--map-open>input:hover,
.outline-head__btn--map-open>button:hover,
.outline-head__btn--map-open>a:hover,
.outline-head__btn--map-open>span:hover {
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
  opacity: 0.6;
}

.outline-head__btn--map-open>input::after,
.outline-head__btn--map-open>button::after,
.outline-head__btn--map-open>a::after,
.outline-head__btn--map-open>span::after {
  display: none;
}

.outline-head__btn--odaku>input,
.outline-head__btn--odaku>button,
.outline-head__btn--odaku>a,
.outline-head__btn--odaku>span {
  border: solid 1px #237ED9;
  background: #237ED9;
  color: #fff;
}

.outline-head__btn--odaku>input:hover,
.outline-head__btn--odaku>button:hover,
.outline-head__btn--odaku>a:hover,
.outline-head__btn--odaku>span:hover {
  border: solid 1px #237ED9;
  background: #237ED9;
  color: #fff;
  opacity: 0.6;
}

/* 提案ボタン */
.outline-head__btn--teian>input,
.outline-head__btn--teian>button,
.outline-head__btn--teian>a,
.outline-head__btn--teian>span {
  border: solid 1px #F26BE8;
  background: #F26BE8;
  color: #fff;
}
.outline-head__btn--teian>input:hover,
.outline-head__btn--teian>button:hover,
.outline-head__btn--teian>a:hover,
.outline-head__btn--teian>span:hover {
  border: solid 1px #F26BE8;
  background: #F26BE8;
  color: #fff;
  opacity: 0.6;
}

.outline-head__btn--odaku>input::after,
.outline-head__btn--odaku>button::after,
.outline-head__btn--odaku>a::after,
.outline-head__btn--odaku>span::after {
  display: none;
}

@media (min-width: 768px) {

  .outline-head__btn--odaku>input,
  .outline-head__btn--odaku>button,
  .outline-head__btn--odaku>a {
    font-size: 20px;
  }
}

.outline-head__btn--kakutei>input,
.outline-head__btn--kakutei>button,
.outline-head__btn--kakutei>a {
  border: solid 1px #B9BCAE;
  background: #B9BCAE;
  color: #fff;
}

.outline-head__btn--kakutei>input:hover,
.outline-head__btn--kakutei>button:hover,
.outline-head__btn--kakutei>a:hover {
  border: solid 1px #B9BCAE;
  background: #B9BCAE;
  color: #fff;
  opacity: 0.6;
}

.outline-head__btn--kakutei>input::after,
.outline-head__btn--kakutei>button::after,
.outline-head__btn--kakutei>a::after {
  display: none;
}

@media (min-width: 768px) {

  .outline-head__btn--kakutei>input,
  .outline-head__btn--kakutei>button,
  .outline-head__btn--kakutei>a {
    font-size: 20px;
  }
}

.outline-head__rate {
  width: 100px;
  height: 25px;
  margin: 5px 0;
  color: #fffc20;
  font-size: 10px;
  font-weight: 700;
  background: var(--main-c);
  border-radius: var(--site-radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center
}

.outline-head__point {
  padding-left: 2px;
  font-size: 15px
}

.outline-head__public {
  width: 100px;
  height: 25px;
  margin: 5px 0;
  color: #ff3a31;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #ff3a31;
  border-radius: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center
}

.outline-head__profile {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  font-size: 11px
}

.outline-head__profile li {
  margin-top: 5px;
  color: var(--font-c-gray-dark);
  line-height: 1
}


.outline-head__reserved-time {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.outline-head__reserved-time>dt {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 2em;
  background: #F5A925;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  min-width: 120px;
  width: fit-content;
  height: 28px;
  padding: 0 12px;
  gap: 1ex;
}
.outline-head__reserved-time>dd {
  font-size: 20px;
  line-height: 20px;
}
.outline-head__reserved-time>dd [class*="fa-"] {
  color: #F5A925;
  font-size: inherit;
  margin-right: 4px;
  vertical-align: middle;
}
.outline-head__reserved-time>dd:has([class*="calendar"]) span {
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  vertical-align: middle;
}
.outline-head__reserved-time>dd:has([class*="clock"]) span {
  font-size: 16px;
  font-weight: 500;
  line-height: inherit;
  vertical-align: middle;
}
.outline-head__reserved-time a {
  color: inherit;
}
@media only screen and (max-width: 767.98px) {
  .outline-head__reserved-time>dt {
    font-size: 14px;
    min-width: 96px;
  }
  .outline-head__reserved-time>dd {
    font-size: 18px;
  }
  .outline-head__reserved-time>dd:has([class*="calendar"]) span {
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
  }
  .outline-head__reserved-time>dd:has([class*="clock"]) span {
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
  }
}
@media only screen and (max-width: 560.98px) {
  .outline-head__reserved-time {
    flex-flow: row wrap;
    justify-content: center;
    width: 100%;
    gap: 8px;
  }
  .outline-head__reserved-time>dt {
    width: 100%;
  }
}

.outline-head__reserved-type {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.outline-head__reserved-type>dt {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  border-radius: 4px;
  background: #F5A925;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  width: fit-content;
  height: 28px;
  padding: 0 12px;
  gap: 1ex;
}
.outline-head__reserved-type>dd {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  border-radius: 4px;
  border: solid 2px #F5A925;
  background: #fff;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  width: fit-content;
  height: 28px;
  padding: 0 12px;
  gap: 1ex;
}
.outline-head__reserved-type a {
  color: inherit;
}
@media only screen and (max-width: 767.98px) {
  .outline-head__reserved-type>dt {
    font-size: 14px;
    height: 26px;
    padding: 0 8px;
  }
  .outline-head__reserved-type>dd {
    font-size: 16px;
    height: 26px;
    padding: 0 8px;
  }
}

.outline-head__postdate {
  font-size: inherit;
  font-weight: inherit;
}

.outline-head__guide {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  border-radius: 16px;
  background: #D9E895;
  padding: 32px 32px;
  flex: 1 100%;
  gap: 0;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .outline-head__guide {
    padding: 16px 12px;
    gap: 0;
  }
}

.outline-head__guide>dl {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 12px;
  position: relative;
}

.outline-head__guide>dl:nth-of-type(1) {
  order: 1;
}

.outline-head__guide>dl:nth-of-type(2) {
  order: 3;
}

.outline-head__guide>dl:nth-of-type(3) {
  order: 5;
}

@media only screen and (max-width: 767.98px) {
  .outline-head__guide>dl {
    align-items: flex-start;
  }
}

.outline-head__guide::after,
.outline-head__guide::before {
  content: '';
  display: block;
  background-image: url("/common/images/img-reader-w.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 64px;
  height: 64px;
  margin: 0 0 0 56px;
  transform: rotate(90deg);
  pointer-events: none;
  order: 2;
}
.outline-head__guide::after {
  display: none;
  order: 4;
}
.outline-head__guide:has(dl:nth-child(3))::after {
  display: block;
}
@media only screen and (max-width: 767.98px) {
  .outline-head__guide::after,
  .outline-head__guide::before {
    background-size: auto 2px;
    width: 24px;
    height: 24px;
    margin: 0 auto -8px;
    transform: rotate(90deg);
  }
}

.outline-head__guide>dl>dt {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--main-c);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  width: 56px;
  height: auto;
  aspect-ratio: 1 / 1;
}

.outline-head__guide>dl>dd {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: -0.5em;
}

.outline-head__guide time {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  width: 96px;
}

.outline-head__guide address {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  width: calc(100% - 96px);
}

.outline-head__guide p {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  width: calc(100% - 96px);
  margin: 0 0 0 auto;
}

@media only screen and (max-width: 767.98px) {
  .outline-head__guide>dl>dd {
    display: block;
    margin-bottom: 0;
  }

  .outline-head__guide time {
    width: auto;
  }

  .outline-head__guide address {
    width: auto;
  }

  .outline-head__guide p {
    width: auto;
  }
}

.outline-head__passenger {
  font-size: 22px;
  font-weight: 700;
  flex: 1 100%;
}

.outline-head__passenger>em {
  color: #EC6A56;
}

.outline-head__border-box .outline-head__passenger {
  flex: auto;
}

@media only screen and (max-width: 767.98px) {
  .outline-head__passenger {
    font-size: 18px;
  }
}

.outline-head__reserved-note {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1 100%;
  width: 100%;
}

@media only screen and (max-width: 767.98px) {
  .outline-head__reserved-note {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }
}

.outline-head__reserved-note>dt {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 2em;
  background: #ED6A56;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  width: 120px;
  height: 28px;
  padding: 0 12px;
  gap: 1ex;
}

@media only screen and (max-width: 767.98px) {
  .outline-head__reserved-note>dt {
    font-size: 14px;
    width: 96px;
  }
}

.outline-head__reserved-note>dd {
  font-size: 18px;
  width: 100%;
  padding: 0 0 0 1em;
}

.outline-head__reserved-note a {
  color: inherit;
}

@media only screen and (max-width: 767.98px) {
  .outline-head__reserved-note>dd {
    padding: 0.5em 0 0;
  }
}

.outline-head__reserver {
  font-size: 20px;
}
.outline-head__reserver>.item--pref {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 0 0.5ex;
}
@media only screen and (max-width: 767.98px) {
  .outline-head__reserver {
    font-size: 14px;
  }
  .outline-head__reserver>.item--pref {
    font-size: 11px;
  }
}

.outline-head__subttl {
  color: #679A0D;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  flex: 1 100%;
  margin: 0.5em 0 0;
}

@media only screen and (max-width: 767.98px) {
  .outline-head__subttl {
    font-size: 14px;
  }
}

.outline-head__border-box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  flex: 1 100%;
  border-top: dotted 2px #B1D12D;
  border-bottom: dotted 2px #B1D12D;
  padding: 12px 12px 12px 0;
}
.outline-head__border-box.no-border {
  border-top: none;
  border-bottom: none;
}
.outline-head__border-box+.outline-head__border-box {
  border-top: none;
  border-bottom: dotted 2px #B1D12D;
  margin-top: calc(var(--outline-item-gap) * -1);
}
@media only screen and (max-width: 767.98px) {
  .outline-head__border-box {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 12px 0;
  }
}


.outline-head__border-box>dt {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  color: #679A0D;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  width: 144px;
}
.outline-head__border-box>dd {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 767.98px) {
  .outline-head__border-box>dt {
    font-size: 14px;
  }
  .outline-head__border-box>*+dd {
    margin-top: 8px;
  }
}

.outline-head__table {
  display: table;
  border-radius: 16px;
  border-collapse: separate;
  border-spacing: 0 1px;
  background: #B6D43D;
  table-layout: auto;
  width: 100%;
  padding: 0 1px;
  overflow: hidden;
}

.outline-head__table thead th,
.outline-head__table thead td {
  background: #B6D43D;
  color: #fff;
}

.outline-head__table tr {}

.outline-head__table th,
.outline-head__table td {
  background: #fff;
  color: var(--font-c);
  text-align: left;
  padding: 12px 32px;
}

.outline-head__table tr:last-child>*:first-child {
  border-radius: 0 0 0 15px;
}

.outline-head__table tr:last-child>*:last-child {
  border-radius: 0 0 15px 0;
}

.outline-head__table th {
  color: #679A0D;
  width: 216px;
  border-right: dotted 2px #B6D43D;
  font-weight: 700;
}

.outline-head__table td {}

.outline-head__table.table--no-border {
  border-collapse: separate;
  border-spacing: 0;
  border: solid 1px #B6D43D;
  padding: 0;
}

.outline-head__table.table--no-border th,
.outline-head__table.table--no-border td {}

.outline-head__supported {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 5px;
}

.outline-head__supported>li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  border-radius: 2em;
  background: transparent;
  color: var(--font-c);
  height: 28px;
  padding: 0 1em;
}

.outline-head__supported>.on {
  background: #EC6A56;
  color: #fff;
}

.outline-head__supported-level {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 20px 0;
}

.outline-head__supported-level>li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  width: 33.33%;
  gap: 8px;
}

.outline-head__supported-level [data-mark] {
  display: inline-block;
}

.outline-head__supported-level [data-mark]::before {
  content: attr(data-mark);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--main-c);
  font-size: 1.5em;
  width: 1em;
  height: 1em;
}

.outline-head__supported-level [data-mark="○"]::before,
.outline-head__supported-level [data-mark="×"]::before,
.outline-head__supported-level [data-mark="△"]::before {
  content: '';
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.outline-head__supported-level [data-mark="○"]::before {
  background-image: url("/common/images/icon-supported-maru.svg");
}

.outline-head__supported-level [data-mark="×"]::before {
  background-image: url("/common/images/icon-supported-batu.svg");
}

.outline-head__supported-level [data-mark="△"]::before {
  background-image: url("/common/images/icon-supported-sankaku.svg");
}

.outline-head__form {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1 100%;
}

.outline-head__form .outline-head__btn {
  max-width: 256px;
  margin: 0;
}

.outline-head__form .outline-head__btn>input,
.outline-head__form .outline-head__btn>button,
.outline-head__form .outline-head__btn>a {
  height: var(--btn-height);
}

@media screen and (max-width: 767.98px) {
  .outline-head__supported-level>li {
    width: 50%;
  }

  .outline-head__table tbody th,
  .outline-head__table tbody td {
    display: block;
    width: 100%;
  }

  .outline-head__table tbody th {
    border-right: none;
    border-bottom: dotted 2px #B6D43D;
  }

  .outline-head__table tr:last-child>*:first-child {
    border-radius: 0;
  }

  .outline-head__table tr:last-child>*:last-child {
    border-radius: 0 0 15px 15px;
  }
}

@media screen and (max-width: 560.98px) {
  .outline-head__supported-level>li {
    width: 100%;
  }
}



/**
 * outline
 * NOTE: パーツ
**/
.outline__ttl {
  margin-bottom: 2.5rem;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  padding: 15px;
  color: var(--text-link-c);
  background: #f4f4f4;
  border-left: solid 5px#2589d0;
  border-bottom: solid 3px #d7d7d7;
}

.outline-top {}

.outline-top__ttl {
  margin-bottom: 1.5rem;
  color: var(--text-link-c);
  font-size: 18px;
  font-weight: 700;
}

.outline-top-head {}

.outline-top-head ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.outline-top-head img {
  border-radius: 8px;
  aspect-ratio: 10 / 7;
  object-fit: cover;
}

.outline-top-cts {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.outline-top-cts__inner {}

.outline-top-tag {
  margin: 20px 0 40px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 5px;
}

.outline-top-tag li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 3em;
  border: solid 3px #EAEAEA;
  background: #EAEAEA;
  color: #839586;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  height: 28px;
  padding: 0 8px;
  position: relative;
}

.outline-top-table-head {
  margin-bottom: 20px;
  padding: 10px 20px;
  background: #f7fceb;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
*+.outline-top-table-head {
  margin-top: 8px;
}

.outline-top-table-head__item {
  font-size: 18px;
  font-weight: 700;
}


/* matching table */
.matching-table {
  border-collapse: collapse;
  max-width: 100%;
  width: 100%;
  margin: 0;
  table-layout: fixed;
}
*+.matching-table {
  margin-top: 20px;
}
@media only screen and (max-width: 767.98px) {
  .formset .matching-table {
    max-width: calc( 100% + var(--formset-gap) * 2 );
    width: calc( 100% + var(--formset-gap) * 2 );
    margin-inline: calc(var(--formset-gap) * -1);
  }
}
.matching-table th,
.matching-table td {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 20px;
  vertical-align: top;
}
.formset .matching-table tr:nth-child(even) th,
.formset .matching-table tr:nth-child(even) td {
  background: #fcfcfa;
}
@media only screen and (max-width: 767.98px) {
  .matching-table th,
  .matching-table td {
    padding: 8px 8px;
  }
}

.matching-table td>span {
  display: inline-block;
  vertical-align: middle;
}
.matching-table td>span:first-child {
  font-weight: 700;
  margin-right: 8px;
}

.matching-table th:has(.matching-table__possible),
.matching-table td:has(.matching-table__possible) {
  vertical-align: top;
}
.matching-table__possible {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
}
@media only screen and (max-width: 767.98px) {
  .matching-table__possible {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 4px;
  }
}
.matching-table__possible>select {
  border-radius: var(--btn-radius);
  border: 1px solid #e9eced;
  background: #f8f8f8;
  text-align: center;
  max-width: 4em;
  margin: 0;
  padding: 8px 12px;
}
.matching-table__possible>span {
  display: block;
  font-size: 14px;
  font-feature-settings: 'palt';
  line-height: 1.25;
  padding: 6px 0 0;
}
@media only screen and (max-width: 767.98px) {
  .matching-table__possible>select {
    max-width: none;
    width: 100%;
  }
  .matching-table__possible>span {
    padding: 0;
  }
}


.outline-top-txtArea {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.outline-top-txtArea__inner {}

.outline-top-txtArea__ttl {
  padding-bottom: 1rem;
  font-size: 18px;
  font-weight: 700;
  border-bottom: solid 3px #ddd;
  position: relative;
}
*+.outline-top-txtArea__ttl {
  margin-top: 20px;
}

.outline-top-txtArea__ttl:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px var(--main-c);
  bottom: -3px;
  width: 20%;
}

.outline-top-txtArea__txt {
  margin-top: 1.5rem;
}

.outline-top-areaList {
  padding: 0 20px;
}

.outline-top-greeting {
  padding: 20px;
  background: #f7fceb;
  border-radius: 20px;
  border: 1px solid #B1D12D;
  display: flex;
  gap: 20px
}

.outline-top-greeting__img {
  width: 150px
}

.outline-top-greeting-desc {
  width: calc(100% - 170px);
  padding-top: 5px;
}

.outline-top-greeting-desc__ttl {
  font-size: 18px;
  font-weight: 700;
}

.outline-top-greeting-desc__txt {
  margin-top: 1rem;
}

/**
 * outline
 * NOTE: 切り替えタブ
**/
.outline-menu__inner {
  display: flex;
  flex-wrap: wrap;
}

.outline-menu__inner>label {
  flex: 1 1;
  order: -1;
  min-width: 50px;
  padding: 1.5rem 1rem 1.2rem;
  background-color: #f2f2f2;
  color: #5D5D5B;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}

.outline-menu__inner>label:hover {
  opacity: .8;
}

.outline-menu__inner input {
  display: none;
}

.outline-menu__inner>div {
  display: none;
  width: 100%;
  padding: 60px 80px;
  background-color: #fff;
  border: 1px solid #BFBFBF;
}

.outline-menu__inner label:has(:checked) {
  border-bottom: 4px solid #2589d0;
  color: #2589d0;
}

.outline-menu__inner label:has(:checked)+div {
  display: block;
}

@media only screen and (max-width: 959.98px) {
  .outline-menu__inner>div {
    padding: 40px;
  }

  .outline__ttl {
    font-size: 18px;
  }
}

@media screen and (max-width: 767.98px) {

  .outline-menu,
  .outline-menu .l-container {
    padding: 0;
  }

  .outline-menu__inner>div {
    padding: 15px;
  }

  .outline-menu__inner>label {
    padding: 1.5rem 0 1.2rem;
    font-size: 12px
  }

  .outline-top-head ul {
    gap: 10px
  }

  .outline-top-cts {
    margin-top: 20px
  }

  .outline-top-tag {
    margin: 20px 0
  }

  .outline-top-tag>li {
    font-size: 13px
  }

  .outline-top-table-head {
    margin-bottom: 15px;
    padding: 10px 10px;
    gap: 10px;
  }

  .outline-top-table-head__item {
    font-size: 12px;
  }

  .outline-top__ttl {
    margin-bottom: 1.2rem
  }

  .outline-top .matching-table td {
    font-size: 12px
  }

  .outline-top .matching-table td span:first-child {
    margin: 0;
    display: block
  }

  .outline-top-areaList {
    padding: 0;
  }

  .outline-top-greeting__img {
    width: 60px
  }

  .outline-top-greeting-desc {
    width: calc(100% - 80px);
    padding-top: 0;
  }

  .outline-top-greeting-desc__ttl {
    font-size: 16px
  }

  .outline-top-greeting-desc__txt {
    font-size: 13px;
  }
}

/**
 * outline
 * NOTE: スタッフタブ
**/
.outline-staff__inner {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.outline-staff-wrap {}

.outline-staff__ttl {
  margin-bottom: 1.5rem;
  color: var(--text-link-c);
  font-size: 18px;
  font-weight: 700;
}

.outline-staff-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.outline-staff-item {
  display: flex;
  gap: 10px
}

.outline-staff-item__img {
  width: 30%
}

.outline-staff-item__img img {}

.outline-staff-item-desc {
  width: calc(70% - 10px);
  padding-top: 5px;
}

.outline-staff-item-desc__ttl {
  font-weight: 700;
}

.outline-staff-item-desc__txt {
  margin-top: .5rem;
  font-size: 14px
}

@media screen and (max-width: 767.98px) {
  .outline-staff-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/**
 * outline
 * NOTE: 料金表タブ
**/
.outline-price {}

.outline-price__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.outline-price-item {
  border: solid 1px #ccc;
  border-radius: 8px;
}

.outline-price-item-head {
  padding: 10px 20px;
  background: #e8e8e8;
  border-bottom: solid 1px #ccc;
  border-radius: 8px 8px 0 0;
  color: var(--text-link-c);
  display: flex;
  align-items: center;
  gap: 10px
}

.outline-price-item-head__ttl {
  font-size: 18px;
  font-weight: 700;
}

.outline-price-item-head__type {
  font-weight: 700;
}

.outline-price-item-head__type span {
  margin-left: 10px;
  padding: 1px 5px 2px;
  background: #ffffff;
  border: 1px solid #839586;
  font-size: 12px;
}

.outline-price-item-cts {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.outline-price-item-cts dl {
  display: flex;
  align-items: center;
  gap: 10px
}

.outline-price-item-cts dt {
  width: 200px
}

.outline-price-item-cts dd {
  width: calc(100% - 210px);
  font-weight: 700;
}

@media screen and (max-width: 767.98px) {
  .outline-price-item-cts {
    padding: 20px 15px;
    font-size: 12px;
  }

  .outline-price-item-head {
    padding: 10px
  }

  .outline-price-item-head__ttl {
    font-size: 16px
  }

  .outline-price-item-cts dt {
    width: 100px;
  }

  .outline-price-item-cts dd {
    width: calc(100% - 110px);
  }
}

/**
 * outline
 * NOTE: 車両タブ
**/
.outline-cartype {}

.outline-cartype__inner:nth-child(n+2) {
  margin-top: 4rem;
}

.outline-cartype__ttl {}

.outline-cartype-item {
  padding: 2rem;
  border: solid 1px #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 40px
}

.outline-cartype-item:nth-child(n+2) {
  margin-top: 2rem
}

.outline-cartype-item__mainimg {
  width: 25%
}

.outline-cartype-item__mainimg img {}

.outline-cartype-item-cts {
  width: calc(75% - 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.outline-cartype-item-cts__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.outline-cartype-item-cts__ttl {
  font-size: 22px;
  font-weight: 700;
}

.outline-cartype-item-cts__parts {
  padding: 1rem;
  background: #EAEAEA;
  border: 1px solid #839586;
}

.outline-equipment-tag {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 5px;
}

.outline-equipment-tag li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 3em;
  border: solid 3px #EAEAEA;
  background: #EAEAEA;
  color: #839586;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  height: 28px;
  padding: 0 8px;
  position: relative;
}

.outline-equipment-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.outline-equipment-item {}

.outline-equipment-item__img {}

.outline-equipment-item__txt {
  margin-top: 1.5rem;
  font-size: 15px
}

@media screen and (max-width: 767.98px) {
  .outline-cartype-item {
    flex-direction: column;
    gap: 10px
  }

  .outline-cartype-item__mainimg {
    width: 100%;
  }

  .outline-cartype-item-cts {
    width: 100%;
    gap: 10px;
  }

  .outline-cartype-item-cts__ttl {
    font-size: 18px
  }

  .outline-cartype-item-cts__parts {
    font-size: 12px
  }
}

/**
 * outline
 * NOTE: feedのタブ
**/
.outline-nav {
  margin: 0 0 48px;
  padding: 20px 0 0;
  background: linear-gradient(0deg,rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0) 33.33%);
  color: rgb(137, 137, 137);
  overflow: hidden;
}

@media screen and (max-width: 767.98px) {
  .outline-nav {
    margin: 0;
    padding: 12px 0 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: 767.98px) {
  .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: 2px;
  border-color: var(--main-c);
  background: #fff;
  color: var(--main-c);
  text-align: center;
  height: 100%;
  padding-block: 0.75em;
  padding-inline: 32px;
  position: relative;
  bottom: -2px;
  z-index: 1;
}
.outline-nav__list>li>*:hover {
  border-color: var(--main-c);
  background: var(--main-c);
  color: #fff;
  opacity: 0.5;
}
.outline-nav__list>li>.is--active {
  border-color: var(--main-c);
  background: var(--main-c);
  color: #fff;
  position: relative;
  bottom: 0;
  z-index: 5;
}
.outline-nav__list>li>.is--active::before {
  content: '';
  display: block;
  border-bottom: solid 1px var(--main-c);
  width: 200vw;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%,0);
}
.outline-nav__list>li>.is--active:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 959.98px) {
  .outline-nav__list>li>* {
    padding-inline: 32px;
  }
}

@media only screen and (max-width: 767.98px) {
  .outline-nav__list>li>* {
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    padding-block: 1em;
    padding-inline: 0;
  }
}

.outline-nav+.search {
  padding-top: 0;
}
@media only screen and (max-width: 767.98px) {
  .outline-nav+.search {
    padding-top: 12px;
  }
}



/**
 * outline
 * NOTE: 詳細ページの本文
**/
/* outline section */
.outline {}

.outline+.outline {
  padding-top: 0;
}

/* .outline__ttl {
  margin: 40px 0 30px;
  color: var(--font-c)
} */
.outline__gallery ul {
  columns: 280px;
  column-gap: 5px
}

.outline__gallery li {
  /**width: 16.11111112%;
  margin-right: .6666667%;**/
}

.outline__gallery li:nth-child(6n) {
  margin-right: 0
}

.outline__gallery img {
  width: 100%;
  height: auto;
  margin-bottom: 5px
}

@media only screen and (max-width: 959.98px) {
  .outline__gallery {
    columns: 230px
  }
}

@media only screen and (max-width: 767.98px) {
  .outline__gallery {
    columns: 170px
  }
}

/**
 * knowledge
 * NOTE:
**/
/* knowledge section */
.knowledge {
  background: var(--bg-c-light);
}

/* knowledge list wrapper */
.knowledge__list {
  --knowledge-list-gap: 20px;
  --knowledge-item-padding: 16px;
  --knowledge-img-height: 160px;
  --knowledge-icon-size: 104px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: var(--knowledge-list-gap);
}

@media only screen and (max-width: 767.98px) {
  .knowledge__list {
    --knowledge-list-gap: 8px;
    --knowledge-item-padding: 12px;
    --knowledge-img-height: 112px;
    --knowledge-icon-size: 104px;
    gap: var(--knowledge-list-gap);
  }
}

/* knowledge list item */
.knowledge__item>a,
.knowledge__item {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.knowledge__item>a {
  height: 100%;
}

@media screen and (min-width: 768px) {
  .knowledge__item {
    /* NOTE: 4カラム */
    width: calc((100% - var(--knowledge-list-gap) * 3) / 4);
  }
}

@media only screen and (max-width: 767.98px) {
  .knowledge__item {
    /* NOTE: 2カラム */
    width: calc((100% - var(--knowledge-list-gap) * 1) / 2);
  }
}

.knowledge__img {
  height: var(--knowledge-img-height);
}

.knowledge__img img {
  border-radius: var(--site-radius) var(--site-radius) 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.knowledge__desc {
  background: #fff;
  color: #5D5D5B;
  height: calc(100% - var(--knowledge-img-height));
  margin: 0;
  padding: var(--knowledge-item-padding) var(--knowledge-item-padding) calc(var(--btn-height) + 12px + var(--knowledge-item-padding));
  position: relative;
}

.knowledge__ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
*+.knowledge__ttl {
  margin-top: 8px;
}
@media only screen and (max-width: 767.98px) {
  .knowledge__ttl {
    font-size: 16px;
  }
}

.knowledge__name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.125;
}
*+.knowledge__name {
  margin-top: 8px;
}
@media only screen and (max-width: 767.98px) {
  .knowledge__name {
    font-size: 12px;
  }
}

.knowledge__lead {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
*+.knowledge__lead {
  margin-top: 12px;
}

.knowledge__txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
*+.knowledge__txt {
  margin-top: 12px;
}
@media only screen and (max-width: 767.98px) {
  .knowledge__txt {
    font-size: 12px;
  }
}

.knowledge__date {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
*+.knowledge__date {
  margin-top: 12px;
}
@media only screen and (max-width: 767.98px) {
  .knowledge__date {
    font-size: 10px;
  }
}

.knowledge__area {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.knowledge__area:empty {
  display: none;
}
*+.knowledge__area {
  margin-top: 12px;
}
@media only screen and (max-width: 767.98px) {
  .knowledge__area {
    font-size: 10px;
  }
}

.knowledge__author {
  width: var(--knowledge-icon-size);
  position: relative;
}
.knowledge__author::before {
  content: '';
  display: block;
  background-image: url("/common/images/icon-camera.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  width: 36%;
  height: auto;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.knowledge__author img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
*+.knowledge__author {
  margin-top: 12px;
}
@media only screen and (max-width: 767.98px) {
  .knowledge__author {}
}


.knowledge__txt--more {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--btn-shadow);
  border-radius: var(--btn-radius);
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
  font-weight: 700;
  height: var(--btn-height);
  position: absolute;
  top: auto;
  right: var(--knowledge-item-padding);
  bottom: var(--knowledge-item-padding);
  left: var(--knowledge-item-padding);
  z-index: 1;
}

.knowledge__txt--more::after {
  content: '\f105';
  color: inherit;
  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: 1.5ex;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%) scale(0.75);
  transform-origin: right center;
}

/* knowledge list barrier-free */
.knowledge__list.type--barrier-free {
  --knowledge-list-gap: 24px;
  --knowledge-item-padding: 8px;
  --knowledge-img-height: 272px;
  gap: var(--knowledge-list-gap);
}

@media only screen and (max-width: 767.98px) {
  .knowledge__list.type--barrier-free {
    --knowledge-list-gap: 32px;
    --knowledge-item-padding: 8px;
    --knowledge-img-height: 272px;
    gap: var(--knowledge-list-gap);
  }
}

/* knowledge list item */
@media screen and (min-width: 768px) {
  .type--barrier-free .knowledge__item {
    /* NOTE: 3カラム */
    width: calc((100% - var(--knowledge-list-gap) * 2) / 3);
  }
}

@media only screen and (max-width: 767.98px) {
  .type--barrier-free .knowledge__item {
    /* NOTE: 1カラム */
    width: 100%;
  }
}

.type--barrier-free .knowledge__img {
  height: var(--knowledge-img-height);
  padding: 0 0 32px;
}

.type--barrier-free .knowledge__img img {
  border-radius: 60px;
}

.type--barrier-free .knowledge__desc {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  border-radius: 0 60px 0 60px;
  border: solid 8px #B1D12D;
  background: #fff;
  color: #5D5D5B;
  height: calc(100% - var(--knowledge-img-height));
  margin: 0;
  padding: var(--knowledge-item-padding) var(--knowledge-item-padding) calc(var(--btn-height) + 12px + var(--knowledge-item-padding));
  position: relative;
}

.type--barrier-free .knowledge__desc:only-child {
  height: auto;
}

@media only screen and (max-width: 767.98px) {
  .type--barrier-free .knowledge__desc {
    border-width: 5px;
  }
}

.type--barrier-free .knowledge__ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 最大2行 */
  overflow: hidden;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.333;
  width: calc(100% - var(--knowledge-icon-size));
  order: -1;
}
.type--barrier-free *+.knowledge__ttl {
  margin-top: 0;
}

.type--barrier-free .knowledge__lead {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 最大2行 */
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.type--barrier-free *+.knowledge__lead {
  margin-top: 12px;
}

.type--barrier-free .knowledge__txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 最大2行 */
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.type--barrier-free *+.knowledge__txt {
  margin-top: 12px;
}

.type--barrier-free .knowledge__date {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
  position: absolute;
  top: -28px;
  right: 0;
  z-index: 10;
}

.type--barrier-free .knowledge__area {
  border-radius: 3em;
  border: solid 3px #B1D12D;
  background: var(--bg-c-light);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  min-width: 160px;
  margin: 0;
  padding: 4px 1ex;
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 10;
  transform: translate(0, -50%);
}

.type--barrier-free .knowledge__author {
  width: var(--knowledge-icon-size);
}

.type--barrier-free .knowledge__author img {
  border-radius: 50%;
}

.type--barrier-free *+.knowledge__author {
  margin-top: 12px;
}

@media only screen and (max-width: 767.98px) {
  .type--barrier-free .knowledge__ttl {
    font-size: 20px;
  }

  .type--barrier-free .knowledge__lead {
    font-size: 16px;
  }

  .type--barrier-free .knowledge__txt {
    font-size: 14px;
  }

  .type--barrier-free .knowledge__date {
    font-size: 13px;
  }

  .type--barrier-free .knowledge__area {
    font-size: 13px;
  }
}

.type--barrier-free .knowledge__txt--more {
  position: absolute;
  top: auto;
  right: var(--knowledge-item-padding);
  bottom: var(--knowledge-item-padding);
  left: calc(100% - 160px - var(--knowledge-item-padding));
  z-index: 1;
}

/* knowledge list community */
.knowledge__list.type--community {
  --knowledge-list-gap: 72px;
  --knowledge-item-padding: 16px;
  gap: var(--knowledge-list-gap);
  max-width: 1112px;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .knowledge__list.type--community {
    background-image: url("/common/images/bg-community-tree.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    gap: calc(var(--knowledge-list-gap) * 0.5) var(--knowledge-list-gap);
    aspect-ratio: 1112 / 1253;
    padding-top: var(--knowledge-list-gap);
  }
}

@media only screen and (max-width: 1024.98px) {
  .knowledge__list.type--community {
    --knowledge-list-gap: 24px;
    --knowledge-item-padding: 8px;
    gap: var(--knowledge-list-gap);
  }
}

@media only screen and (max-width: 767.98px) {
  .knowledge__list.type--community {
    --knowledge-list-gap: 32px;
    --knowledge-item-padding: 8px;
    gap: var(--knowledge-list-gap);
  }
}

.type--community .knowledge__ttl-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: calc(100% - var(--knowledge-icon-size));
  gap: 4px;
  order: -1;
}

.type--community .knowledge__prefectures {
  display: block;
  border-radius: 12px;
  background: #D9E895;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0 8px;
}
.type--community .knowledge__prefectures:empty {
  display: none;
}

.type--community .knowledge__date {
  display: block;
  border-radius: 12px;
  background: #eee;
  font-size: 14px;
  font-weight: 500;
  line-height: inherit;
  margin: 0;
  padding: 0 8px;
  position: static;
}

.type--community .knowledge__tags {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: fit-content;
  gap: 4px;
  order: -2;
  align-self: center;
}
.type--community .knowledge__tags li {
  border-radius: 12px;
  background: #EAEAEA;
  color: #839586;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 0 8px;
}

.type--community .knowledge__ttl {
  width: 100%;
  order: -1;
}
.type--community .knowledge__name {
  width: fit-content;
  order: -3;
  align-self: center;
}
.type--community *+.knowledge__name {
  margin-top: 0;
}

/* .type--community .knowledge__item */
@media screen and (min-width: 1025px) {

  /* NOTE: calcは、半角スペースの有無で計算が変わる所があるので注意 */
  .type--community .knowledge__item {
    width: 33.33%;
  }

  .type--community .knowledge__item>a {
    display: block;
  }

  .type--community .knowledge__item:nth-child(1) {
    margin-left: calc((33.33% - var(--knowledge-list-gap)) * 0.5);
  }

  .type--community .knowledge__item:nth-child(2) {
    transform: translate(0, 33.33%);
  }

  .type--community .knowledge__item:nth-child(3) {
    margin-top: calc(var(--knowledge-list-gap) * -3);
  }

  .type--community .knowledge__item:nth-child(4) {
    margin-top: calc(var(--knowledge-list-gap) * -3);
    margin-right: 0;
    margin-left: auto;
    transform: translate(0, 33.33%);
  }

  .type--community .knowledge__item:nth-child(5) {
    margin-top: calc(var(--knowledge-list-gap) * -3);
    margin-left: calc((33.33% - var(--knowledge-list-gap)) * 0.5);
  }

  .type--community .knowledge__item:nth-child(6) {
    margin-top: calc(var(--knowledge-list-gap) * -3);
    transform: translate(0, 33.33%);
  }
}

@media only screen and (max-width: 1024.98px) {
  .type--community .knowledge__item {
    /* NOTE: 2カラム */
    width: calc((100% - var(--knowledge-list-gap) * 1) / 2);
  }
}

@media only screen and (max-width: 767.98px) {
  .type--community .knowledge__item {
    /* NOTE: 1カラム */
    width: 100%;
  }
}

.type--community .knowledge__item:nth-child(1) .knowledge__desc {
  border-radius: 0 60px 0 60px;
  border-color: #64BBB8;
}

.type--community .knowledge__item:nth-child(2) .knowledge__desc {
  border-radius: 60px 0 60px 0;
  border-color: #8AC323;
}

.type--community .knowledge__item:nth-child(3) .knowledge__desc {
  border-radius: 0 60px 0 60px;
  border-color: #EC8F8A;
}

.type--community .knowledge__item:nth-child(4) .knowledge__desc {
  border-radius: 60px 0 60px 0;
  border-color: #F3BB76;
}

.type--community .knowledge__item:nth-child(5) .knowledge__desc {
  border-radius: 0 60px 0 60px;
  border-color: #8AC323;
}

.type--community .knowledge__item:nth-child(6) .knowledge__desc {
  border-radius: 60px 0 60px 0;
  border-color: #64BBB8;
}

@media only screen and (max-width: 1024.98px) {
  .type--community .knowledge__item:nth-child(odd) .knowledge__desc {
    border-radius: 0 60px 0 60px;
  }

  .type--community .knowledge__item:nth-child(even) .knowledge__desc {
    border-radius: 60px 0 60px 0;
  }
}

@media only screen and (max-width: 767.98px) {

  .type--community .knowledge__item:nth-child(n) .knowledge__desc,
  .type--community .knowledge__item .knowledge__desc {
    border-radius: 0 60px 0 60px;
  }
}

.type--community .knowledge__txt--more {
  width: 224px;
  position: absolute;
  top: auto;
  right: auto;
  bottom: var(--knowledge-item-padding);
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 0);
}

/**
 * column
 * NOTE: m1, m2 ブログ
**/
[id="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;
  background: #fff;
  border: 1px solid #e9eced;
  border-radius: 20px;
  line-height: 2;
}

.column__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--font-c-gray-dark);
}

.column__img {
  margin: 20px 0;
}

@media screen and (max-width: 767.98px) {
  .column__inner {
    padding: 10px;
  }

  .column__ttl {
    font-size: 18px
  }

  [id="column__main"] .btn {
    font-size: 12px
  }
}

/**
 * columnB
 * NOTE: 書き込みトーク、バリアフリーガイド
**/
[id="columnB__main"] {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  [id="columnB__main"] .btn {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .columnB__inner {
    padding: 60px;
    background: #fff;
    border: 1px solid #e9eced;
    border-radius: 20px;
    line-height: 2;
  }
}

.columnB__ttl {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700
}
@media screen and (max-width: 767.98px) {
  .columnB__ttl {
    font-size: 18px
  }
}

.columnB-cts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 767.98px) {
  .columnB-cts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* list item */
.columnB-cts-item {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.columnB__img {
  margin: 0 0 12px;
}
.columnB__img img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 7;
  object-fit: cover;
}
.columnB__img:has([src=""])::before {
  content: '';
  display: block;
  border-radius: 8px;
  background: #eee;
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 7;
}
.columnB__img [src=""] {
  display: none;
}

.columnB__txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.columnB__info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
  margin: 0 0 8px;
}
.columnB__info>*:last-child {
  margin-left: auto;
  margin-right: 0;
}
.columnB__tag {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
}
.columnB__date {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
}
.column__table  {
  margin: 1rem 0 0;
}
.column__table > tbody > tr > th {
  width: 3.5em;
}
.column__table a {
  font-weight: 500;
  color: var(--main-c);
  text-decoration: underline;
}
.column__table a:hover {
  text-decoration: none;
  color: var(--main-c-light);
}

/* list item (profile) */
.columnB-cts__prof {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
}
@media screen and (max-width: 767.98px) {
  .columnB-cts__prof {
    order: -1;
  }
  .column__table  {
    margin: .5rem 0 0;
  }
  .column__table > tbody > tr > th,
  .column__table > tbody > tr > td {
    font-size: 13px;
    padding: .2em;
  }
}

.columnB-cts__prof-top {
  display: flex;
  flex-flow: row wrap;
  gap: 15px 20px;
}
@media screen and (max-width: 767.98px) {
  .columnB-cts__prof-top {
    gap: 15px 20px;
  }
}

.columnB-cts__prof-ttl {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.columnB-cts__prof-img {
  width: 96px;
}
.columnB-cts__prof-img img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.columnB-cts__prof-img:has([src=""])::before {
  content: '';
  display: block;
  border-radius: 8px;
  background: #eee;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}
.columnB-cts__prof-img [src=""] {
  display: none;
}

.columnB-cts__prof-desc {
  width: calc(100% - 96px - 20px);
}
@media screen and (max-width: 767.98px) {
  .columnB-cts__prof-img {
    width: 80px;
  }
  .columnB-cts__prof-desc {
    width: calc(100% - 80px - 20px);
  }
}

.columnB-cts__prof-name {
  font-weight: 700;
  font-size: 15px;
}

.columnB-cts__prof-txt {
  font-size: 14px;
}
@media screen and (max-width: 767.98px) {
  .columnB-cts__prof-name {
    font-size: 12px;
  }
  .columnB-cts__prof-txt {
    font-size: 12px;
  }
}

.columnB-cts__prof-btn {
  margin: 15px auto 0;
}




/**
 * about
 * NOTE:
**/
[id="about"] section {
  padding: 80px 0
}

.about__ttl {
  margin-bottom: 60px;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
}

.about__calc-box+.about__calc-box {
  margin-top: 60px;
}

.about__subttl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.about__subttl:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--main-c);
  background: var(--bg-c-light);
  display: inline-block;
  margin-right: 10px;
}

.about__subttl small {
  font-size: .8em;
}

.about__calc {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}

.about__calc-item {
  background: var(--main-c);
  color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 8px 20px;
  position: relative;
}

.about__calc-item+.about__calc-item:before {
  content: "＋";
  position: absolute;
  top: calc(50% - 15px);
  left: -22px;
  width: 30px;
  height: 30px;
  background: var(--font-c);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__calc-item .price {
  display: block;
  font-weight: 700;
  font-size: 20px;
}

.about__total {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  margin-top: 40px;
}

.about__total:before {
  content: "\f063";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -28px;
  left: calc(50% - 8px);
}

.about__txt {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  line-height: 2
}

.about__txt p {
  margin-bottom: 20px
}

.about-section__ttl {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.about__price-ttl {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.about__price-item {
  border-radius: var(--site-radius);
  border: 1px solid #BFBFBF;
  border-radius: 0 60px 0 60px;
  border: solid 8px #B1D12D;
  background: #fff;
  padding: 40px;
}

.about__price-item-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about__price-item:nth-of-type(even) .about__price-item-inner {
  flex-direction: row-reverse;
}

.about__price-item+.about__price-item {
  margin-top: 60px;
}

.about__price-item-img {
  width: 300px;
}

.about__price-list {
  width: 100%;
  list-style-type: disc;
  padding-left: 1.5em;
  font-size: 18px;
}

.about__price-list li+li {
  margin-top: .5em;
}

@media only screen and (max-width: 959.98px) {
  .about__calc {
    flex-flow: column;
  }

  .about__calc-item+.about__calc-item:before {
    top: -22px;
    left: calc(50% - 15px);
  }

  .about__price-item {
    padding: 16px;
    border-width: 5px;
  }

  .about__price-item-inner {
    display: block;
  }

  .about__price-item-img {
    margin-inline: auto;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}

@media only screen and (max-width: 767.98px) {
  [id="about"] section {
    padding: 40px 0;
  }

  .about__ttl {
    margin-bottom: 30px;
    font-size: 26px;
  }

  .about__subttl {
    font-size: 18px;
    text-align: left;
  }

  .about__subttl:before {
    width: 16px;
    height: 16px;
  }

  .about__price-list {
    font-size: 15px;
  }
}

.solve__item {
  width: 100%;
  margin-bottom: 40px;
}

.solve__item:last-child {
  margin-bottom: 0
}

.solve__img {
  width: calc((100% - 80px)/2);
}

.solve__img img {
  width: 100%;
  height: 300px;
  border-radius: var(--btn-radius);
  object-fit: cover;
}

.even .solve__desc {
  order: 1;
}

.solve__desc {
  width: calc((100% - 80px)/2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solve__num {
  color: #818393;
}

.solve__ttl {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.solve__txt {
  text-align: left;
}

@media screen and (max-width: 959.98px) {

  .solve__desc,
  .solve__img {
    width: calc((100% - 20px)/2);
  }
}

@media only screen and (max-width: 767.98px) {
  .solve__item {
    margin-bottom: 35px;
  }

  .solve__desc,
  .solve__img {
    width: 100%;
  }

  .solve__desc {
    margin-top: 10px;
    order: 1;
  }

  .solve__ttl {
    font-size: 20px;
  }

  .solve__img img {
    height: 220px;
  }
}

.flow {
  background: var(--bg-c);
}

.flow__list {}

.flow__item {
  width: calc((100%/4) - 20px);
  padding: 50px;
  background: #fafafa;
  border: 1px solid #E9ECED;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1)
}

.flow__img {
  width: 80%;
  margin: 0 auto 40px
}

.flow__img img {
  object-fit: cover;
  border-radius: 50%
}

.flow__desc {
  text-align: center
}

.flow__ttl {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 2px solid
}

.flow__num {
  padding-right: 5px;
  font-size: 28px
}

.flow__txt {
  margin-top: 20px;
  text-align: left
}

@media only screen and (max-width: 959.98px) {
  .flow__item {
    width: calc((100%/4) - 10px);
    padding: 20px
  }

  .flow__img {
    margin-bottom: 20px
  }
}

@media only screen and (max-width: 767.98px) {
  .swipe .flow__list {
    width: 400%
  }
}

/**
 * Welkulの使い方ガイド（NEW）2025.6.13
**/
.guide-howto {
  font-size: 16px;
}

.guide-howto__tab {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 10px;
}

.guide-howto__tab>label {
  flex: 1 1;
  order: -1;
  position: relative;
  padding: 15px 5px;
  background-color: #f2f2f2;
  color: #999;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.guide-howto__tab>label:hover,
.guide-howto__tab label:has(:checked) {
  background-color: var(--main-c);
  color: #fff;
}

.guide-howto__tab label:has(:checked)::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 9px;
  background-color: var(--main-c);
  content: '';
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.guide-howto__tab input {
  display: none;
}

.guide-howto__tab>div {
  display: none;
  width: 100%;
  padding: 20px;
}

.guide-howto__tab label:has(:checked)+div {
  display: block;
}

@media only screen and (max-width: 767.98px) {
  .guide-howto__tab>label {
    font-size: 16px;
  }

  .guide-howto__tab>div {
    padding: 20px 0
  }
}

.guide-howto-user-head {
  padding: 35px;
  background: #fff;
  border-radius: 8px;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-howto-user-head li {
  padding-left: 28px;
  position: relative
}

.guide-howto-user-head li::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 5px;
  background-image: url(/common/images/icon-maru.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  left: 0
}

.guide-howto-user__anchor {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.5vw;
}

.guide-howto-section {
  margin-top: 40px;
  padding: 80px;
  background: #fff;
  border-radius: 16px
}

.guide-howto-section ol {
  margin-top: 20px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-howto-section ol>li {
  list-style: auto;
}

.guide-howto-section ul {
  margin-top: 20px;
  padding-left: 15px;
  line-height: 1.8
}

.guide-howto-section ol ul {
  margin-top: 5px;
}

.guide-howto-section ul li {
  list-style: disc;
}

@media only screen and (max-width: 959.98px) {
  .guide-howto-section {
    padding: 20px;
  }
}

@media only screen and (max-width: 767.98px) {
  .guide-howto-user-head {
    padding: 20px 15px;
    font-size: 16px;
  }

  .guide-howto-user__anchor {
    margin-top: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .guide-howto-section {
    margin-top: 20px;
    padding: 15px;
    border-radius: 0;
  }
}

.guide-howto-section-head {
  margin-bottom: 40px;
}

.guide-howto-section-head--flex {
  display: flex;
  gap: 20px 40px
}

@media only screen and (min-width: 768px) {

  .guide-howto-section-head-txtArea,
  .guide-howto-section-head-imgArea {
    width: 50%
  }
}

.guide-howto-section-head__ttl {
  font-size: 38px;
  font-weight: 700;
}

.guide-howto-section-head__ttl span {
  color: var(--main-c);
  display: block;
  font-size: 28px;
}

.guide-howto-section-head__subttl {
  font-size: 20px;
  font-weight: 700;
}

.guide-howto-section-head__lead {
  margin-top: 10px;
  font-size: 18px;
}

.guide-howto-section-head__list {
  margin-top: 20px;
  padding-left: 0 !important;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-howto-section-head__list>li {
  padding-left: 28px;
  list-style: none !important;
  position: relative
}

.guide-howto-section-head__list>li::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 5px;
  background-image: url(/common/images/icon-maru.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  left: 0;
}

.guide-howto-section-head__note {
  margin-top: 20px
}

.guide-howto-section-head-regiArea {
  margin-top: 40px;
  padding: 40px;
  background: #F6F7CD;
  border-radius: 16px;
}

.guide-howto-section-head-regiArea__ttl {
  font-size: 24px;
  font-weight: 700;
  color: var(--main-c);
  text-align: center;
  padding: 15px;
  border-top: solid 2px var(--main-c);
  border-bottom: solid 2px var(--main-c);
  background: -webkit-repeating-linear-gradient(-45deg, #fbfcdd, #fbfcdd 3px, #f6f8b8 3px, #f6f8b8 7px);
  background: repeating-linear-gradient(-45deg, #fbfcdd, #fbfcdd 3px, #f6f8b8 3px, #f6f8b8 7px);
}

.guide-howto-section-head-regiArea__subttl {
  margin: 20px 0 10px;
  padding-left: 28px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
}

.guide-howto-section-head-regiArea__subttl::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 5px;
  background-image: url(/common/images/icon-maru.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  left: 0;
}

@media only screen and (max-width: 767.98px) {
  .guide-howto-section-head {
    margin-bottom: 30px;
  }

  .guide-howto-section-head__ttl {
    font-size: 24px;
  }

  .guide-howto-section-head--flex {
    flex-direction: column;
  }

  .guide-howto-section-head-regiArea {
    margin-top: 20px;
    padding: 15px;
    border-radius: 0;
  }

  .guide-howto-section-head-regiArea__ttl {
    font-size: 20px
  }

  .guide-howto-section-head-regiArea__subttl {
    font-size: 16px
  }
}

.guide-howto-explainList {
  --exp-icon-size: 30px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px
}

.guide-howto-explainList-item {
  padding: 0 0 0 var(--exp-icon-size);
}

.guide-howto-explainList-item__ttl {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.guide-howto-explainList-item>.guide-howto-explainList-item__ttl {
  margin-left: calc( var(--exp-icon-size) * -0.5);
}
.guide-howto-explainList-item__ttl img {
  width: var(--exp-icon-size);
  height: var(--exp-icon-size);
}

.guide-howto-explainList-item__ttl+* {
  margin-top: 20px;
}


.guide-howto-explainList-item__subttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
}
*+.guide-howto-explainList-item__subttl {
  margin-top: 20px;
}
.guide-howto-explainList-item__subttl::before {
  content: '';
  display: block;
  border-radius: 4px;
  background: var(--main-c);
  width: 4px;
  height: 1lh;
}


.guide-howto-explainList-item-caseArea {
  margin-top: 30px;
  padding: 20px 30px 30px;
  border: 2px solid var(--main-c);
  border-radius: 16px;
  font-size: 18px;
}

.guide-howto-explainList-item-caseArea__ttl {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  color: var(--main-c);
  text-align: center;
  padding: 10px;
  border-top: solid 2px var(--main-c);
  border-bottom: solid 2px var(--main-c);
  background: -webkit-repeating-linear-gradient(-45deg, #fbfcdd, #fbfcdd 3px, #f6f8b8 3px, #f6f8b8 7px);
  background: repeating-linear-gradient(-45deg, #fbfcdd, #fbfcdd 3px, #f6f8b8 3px, #f6f8b8 7px);
}

.guide-howto-explainList-item-caseArea img {
  margin-top: 40px
}

.guide-howto-planList {
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5vw;
}
.guide-howto-planList img {
  border-radius: 8px;
}

.guide-howto-planJirei {
  font-size: 30px;
  font-weight: 700;
  text-align: center
}

@media only screen and (max-width: 767.98px) {
  .guide-howto-explainList-item__ttl {
    font-size: 20px;
    align-items: flex-start;
  }

  .guide-howto-explainList-item__ttl img {
    width: 25px;
    height: 25px;
    margin-top: 3px
  }

  .guide-howto-explainList-item-caseArea {
    margin-top: 20px;
    padding: 20px 15px 20px;
    font-size: 16px;
  }

  .guide-howto-explainList-item-caseArea img {
    margin-top: 20px
  }

  .guide-howto-planList {
    margin: 20px 0;
    grid-template-columns: 1fr;
    gap: 2.5vw;
  }

  .guide-howto-planJirei {
    font-size: 24px;
  }
}

/**
 * Welkulの使い方ガイド
**/
.guide {
  background: var(--bg-c);
}

.guide__item {
  width: 100%;
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--site-radius);
  border: 1px solid #BFBFBF;
  border-radius: 0 60px 0 60px;
  border: solid 8px #B1D12D;
  padding: 40px;
}

.guide__item:first-child {
  margin-top: 0
}

.guide__img {
  padding-right: 40px;
}

.guide__img img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
}

.guide__desc {
  width: 100%;
  padding: 0 0 20px 40px;
  border-left: 1px solid #e7e6e6;
}

.guide__ttl {
  margin: 20px 0 10px;
  font-size: 24px;
  font-weight: 700;
}

@media only screen and (max-width: 767.98px) {
  .guide__item {
    margin: 40px 0;
    padding: 16px 16px 26px;
    flex-wrap: wrap;
    border-width: 5px;
  }

  .guide__img {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
  }

  .guide__img img {
    margin: 0 auto;
  }

  .guide__desc {
    width: 100%;
    padding: 0;
    border: none;
  }

  .guide__ttl {
    font-size: 18px
  }
}

.guide__howto {
  margin-bottom: 60px;
}

.guide__howto .c-head {
  align-items: center;
}

.guide__howto-btns {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 40px;
}

.guide__howto-btn {
  width: 100%;
}

.guide__howto-btn a {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border: solid 1px #F5A925;
  background: #F5A925;
  color: #fff;
  font-weight: 700;
  width: 100%;
  padding: 20px 0;
  position: relative;
  text-align: center;
  font-size: 18px;
}

.guide__howto-btn a:hover {
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
  opacity: 0.6;
}

.guide__howto-btn.ippan a {
  border: solid 1px var(--main-c);
  background: var(--main-c);
}

.guide__howto-btn.single a {
  width: 50%;
  height: 72px;
  margin-inline: auto;
}

.guide__howto-txt {
  color: var(--main-c);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 32px;
}

@media only screen and (max-width: 767.98px) {
  .guide__howto {
    margin-bottom: 50px;
  }

  .guide__howto-btn a {
    height: 120px;
    font-size: 18px;
  }

  .guide__howto-btn.single a {
    width: 100%;
  }

  .guide__howto-txt {
    color: var(--main-c);
    font-size: 20px;
  }

  .guide__howto-txt {
    margin-bottom: 22px;
  }
}

.faq {
  background: var(--bg-c);
}

.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(--main-c);
}

@media only screen and (max-width: 767.98px) {
  .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 #e9eced;
  border-radius: var(--btn-radius);
  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;
  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 #e9eced;
  border-radius: var(--btn-radius);
}

/*開閉アイコン */
.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: 767.98px) {
  .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: 568.98px) {

  .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;
  }
}




.terms__article {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .terms__article {
    border-radius: var(--btn-radius);
    border: 1px solid #e9eced;
    background: #fff;
    padding: 40px 40px 0;
  }
}

.terms__item {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.98px) {
  .terms__item {
    margin-bottom: 40px;
  }
}

.terms__ttl {
  font-size: 24px;
  font-weight: 700
}
@media screen and (max-width: 767.98px) {
  .terms__ttl {
    font-size: 18px;
  }
}

.terms__txt {
  margin-top: 10px;
}
.terms__txt:has(.item--count) {
  padding-left: 2em;
  position: relative;
}
.terms__txt .item--count {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767.98px) {
  .terms__txt {
    margin-top: 10px;
  }
}


@media screen and (min-width: 768px) {
  .policy__article {
    background: #fff;
    padding: 40px 40px 0;
    border: 1px solid #e9eced;
    border-radius: var(--btn-radius)
  }
}

.policy__article {
  width: 100%
}

.policy__item {
  margin-bottom: 40px
}

.policy__ttl {
  font-size: 24px;
  font-weight: 700
}
@media screen and (max-width: 767.98px) {
  .policy__ttl {
    font-size: 18px
  }
}

.policy__txt {
  margin-top: 10px;
}
.policy__txt:has(.item--count) {
  padding-left: 2em;
  position: relative;
}
.policy__txt .item--count {
  position: absolute;
  left: 0;
}

.policy__disc {
  list-style: disc;
  margin-left: 1.5em;
  padding-left: 1.5em;
}
.policy__disc>li {
  list-style: disc;
}




.clearfix::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.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のtable系の**/
.dashboard-filter {
  padding: 10px 0 30px;
}
@media (max-width: 767.98px) {
  .dashboard-filter {
    padding: 0 0 20px;
  }
}

@media (min-width: 768px) {
  .dashboard-filter__inner {
    padding: 3rem 2rem;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px -3px;
    border-radius: 8px;
    border: solid 1px var(--main-c)
  }
}

.dashboard-filter-status {
  width: 100%;
  max-width: 250px;
  margin: 2rem auto 0;
  padding: .8rem 1.2rem;
  background: #f1f1f1;
  border-radius: 4px;
  border: 1px solid var(--font-c-gray-light);
  color: #494949;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}


.dashboard-filter-date {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 4px 8px;
}
@media (max-width: 767.98px) {
  .dashboard-filter-date {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4px;
  }
}
@media (max-width: 400.98px) {
  .dashboard-filter-date {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
  }
}

.dashboard-filter-date li {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #76bccd;
  background: #e9f2f4;
  color: #53a3b7;
  font-weight: 700;
  font-feature-settings: 'palt';
  min-width: 104px;
  min-height: 40px;
  padding: 8px 8px;
  gap: 5px;
}
@media (max-width: 767.98px) {
  .dashboard-filter-date li {
    justify-content: flex-start;
    font-size: 13px;
    letter-spacing: -0.1ex;
    min-width: 0;
  }
}

.dashboard-filter-date li:has(.hasDatepicker),
.dashboard-filter-date li:has([type="date"]) {
  padding: 0;
}
.dashboard-filter-date li [type="radio"],
.dashboard-filter-date li [type="checkbox"] {
  margin: 0;
}
.dashboard-filter-date li>[type="text"],
.dashboard-filter-date li>[type="date"] {
  border: none;
  background: transparent;
  font-feature-settings: 'palt';
  text-align: center;
  max-width: 120px;
  width: 100%;
  height: auto;
  min-height: inherit;
  padding: 8px 0;
}


.dashboard-filter-btnArea {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.dashboard-filter-btnArea__check {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.dashboard-filter-btnArea__btn {
  width: 100%;
  max-width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--btn-shadow);
  border-radius: var(--btn-radius);
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
  font-weight: 700;
  height: var(--btn-height);
}

.dashboard-filter-btnArea__btn:hover {
  background: var(--main-c-light);
}


.dashboard-container {}
@media (max-width: 767.98px) {
  .dashboard-container {
    margin-inline: calc( var(--basewrap-padding-inline) * -0.5 );
  }
}

.dashboard-sort {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  gap: 20px;
}
*+.dashboard-sort {
  margin-top: 12px;
}
.dashboard-sort>li {
  font-weight: 400;
  margin: 0;
}
.dashboard-sort>li.current {
  font-weight: 700;
}
.dashboard-sort a {
  color: inherit;
}


div.dashboard-list:has(#table_summary) {
  overflow-x: scroll;
}
div.dashboard-list table#table_summary {
  width: 100%;
  border-collapse: collapse;
}
div.dashboard-list table#table_summary th {
  white-space: nowrap;
}
div.dashboard-list table#table_summary form[name=form52] {
  min-width: 100px;
}

.dashboard-sort .search__item a i {
  color: var(--main-c);
}

.dashboard-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
*+.dashboard-list {
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .dashboard-list {
    gap: 20px;
  }
  *+.dashboard-list {
    margin-top: 12px;
  }
}

.dashboard-item {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  border-radius: var(--site-radius);
  border: 1px solid #BFBFBF;
  background: #fff;
  color: #5D5D5B;
  padding: 20px;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .dashboard-item {
    padding: 16px 8px 8px;
    gap: 16px;
  }
}


.dashboard-item__inner {}

.dashboard-item__id {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 10px;
  padding: 0;
}
.dashboard-item__id>i {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #363636;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  width: 72px;
  padding: 6px;
}
.dashboard-item__id>b {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-c);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  min-width: 104px;
  padding: 6px;
}

@media (max-width: 767.98px) {
  .dashboard-item__ttl {
    margin: 0 0 8px;
    padding: 0;
  }
}

.dashboard-item__ttl {
  /*border-left: 3px solid;*/
  color: inherit;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 10px;
  padding: 0;
}
@media (max-width: 767.98px) {
  .dashboard-item__ttl {
    margin: 0 0 8px;
    padding: 0;
  }
}

.dashboard-table-wrap {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  gap: 15px;
  overflow-x: scroll;
  overflow-x: auto;
}
.dashboard-table-wrap.item--no-scroll {
  overflow-x: visible;
}
@media (max-width: 767.98px) {
  .dashboard-table-wrap.item--no-scroll {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
}

.dashboard-table {
  background: #fff;
  font-size: 1.4rem;
  text-align: center;
  border-collapse: collapse;
  white-space: nowrap;
}
.dashboard-table-wrap.item--no-scroll .dashboard-table {
  white-space: normal;
  max-width: 100%;
  width: 100%;
}

/* キャンセルする ボタンなど */
.dashboard-table-wrap>.btn {
  max-width: 160px;
  margin-top: 0;
}
.dashboard-table-wrap>.btn>* {
  padding-inline: 1em;
}
@media (max-width: 767.98px) {
  .dashboard-table-wrap>.btn {
    max-width: calc( ( 100% - 8px ) / 2 );
  }
}

.dashboard-table-result {
  width: 100%
}

/* ステータスごとの行の色分け */
.dashboard-table tr[data-d-status="確定"] {
  background: var(--main-c-pale);
  color: rgba(0, 0, 0, 0.66);
}

.dashboard-table th {
  background: rgba(0, 0, 0, 0.08);
  /* #e8e8e8 相当 */
  border: solid 1px #ccc;
  color: inherit;
  font-weight: 700;
  padding: .5rem 1.5rem;
}
.dashboard-table td {
  border: solid 1px #ccc;
  color: inherit;
  padding: 1.2rem;
}
@media (max-width: 767.98px) {
  .dashboard-table td {
    padding: 12px 6px;
  }
}

/* button on td */
.dashboard-table td .btn {
  margin-inline: auto;
}
.dashboard-table td>form:first-child .btn,
.dashboard-table td>.btn:first-child {
  margin-top: 0;
}
.dashboard-table td .btn+.btn {
  margin-top: 6px;
}
.dashboard-table td .btn>* {
  padding-inline: 1em;
}
.dashboard-table td .btn.btn--collect {
  max-width: none;
  width: fit-content;
}

/* badge on td */
@media screen and (max-width: 1024.98px) {
  .dashboard-table a .item__badge {
    top: -1ex;
    right: -0.75ex;
  }
}


.dashboard-table__name {
  display: block;
  font-weight: 600;
}
.dashboard-table__name i {
  margin-right: 0.5ex;
  transform: scale(0.833);
  transform-origin: left center;
}

.dashboard-table__date {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

a.dashboard-table__btn,
.dashboard-table__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 3em;
  background: #247ED9;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  line-height: 1.25;
  max-width: 224px;
  margin: 0 auto;
  padding: 10px 12px;
}
a.dashboard-table__btn:hover,
.dashboard-table__btn:hover {
  background: var(--main-c-light);
  color: #fff;
}
a.dashboard-table__btn.dashboard-table__btn--small,
.dashboard-table__btn.dashboard-table__btn--small {
  border: solid 1px #247ED9;
  background: #fff;
  color: #247ED9;
  font-weight: 400;
  font-size: 11px;
  width: fit-content;
  margin: 0 auto;
  padding: 2px 12px;
}
.dashboard-table__date+.dashboard-table__btn.dashboard-table__btn--small {
  margin-top: 4px;
}
a.dashboard-table__btn.dashboard-table__btn--small:hover,
.dashboard-table__btn.dashboard-table__btn--small:hover {
  border-color: #247ED9;
  background: #247ED9;
  color: #fff;
}

.dashboard-table__txtbtn {
  color: #247ED9;
  font-size: 90%;
  text-decoration: underline;
}

.dashboard-soldout,
.dashboard-memo {
  border-radius: 5px;
  border: solid 1px rgba(0,0,0,0);
  background: rgba(0,0,0,0);
  color: #333;
  font-weight: 400;
  font-size: 13px;
  font-feature-settings: 'palt';
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  max-width: 224px;
  margin: 0 auto;
  padding: 0;
}
.dashboard-soldout {
  border: solid 1px rgba(236, 13, 13, .8);
  background: #fff;
  color: rgba(236, 13, 13, .8);
  font-weight: 700;
  padding: 12px;
}
.dashboard-memo::before {
  content: '\f05a';
  color: inherit;
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  transform: scale(1.125);
  transform-origin: left center;
  margin-right: 1ex;
  /* gray */
  color: inherit;
  opacity: 0.33;
  /* blue */
  color: #247ED9;
  opacity: 1;
}
@media (max-width: 767.98px) {
  .dashboard-memo {
    white-space: nowrap;
  }
  .dashboard-table-wrap.item--no-scroll .dashboard-memo {
    white-space: normal;
  }
}

.dashboard-label-status {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: solid 1px #aaa;
  background: #fff;
  color: #444;
  font-weight: 600;
  font-size: 13px;
  font-feature-settings: 'palt';
  line-height: 1.25;
  white-space: normal;
  width: 7em;
  margin: 0 auto;
  padding: 4px 8px;
}
.dashboard-label-status[data-status*="依頼中"] {
  border: solid 1px var(--main-c);
  background: #fff;
  color: var(--main-c);
}
.dashboard-label-status[data-status*="確定"] {
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
}
.dashboard-label-status[data-status*="応諾"] {
  border: solid 1px var(--blue);
  background: var(--blue);
  color: #fff;
}
.dashboard-label-status[data-status*="応諾中"] {
  border: solid 1px var(--blue);
  background: #fff;
  color: var(--blue);
}
.dashboard-label-status[data-status*="相談"] {
  border: solid 1px var(--blue);
  background: #fff;
  color: var(--blue);
}
.dashboard-label-status[data-status*="キャンセル"] {
  border: solid 1px #aaa;
  background: #fff;
  color: #777;
}
.dashboard-label-status[data-status*="完了"] {
  border: solid 1px #aaa;
  background: #fff;
  color: #777;
}

.modal-2__wrap input {
  display: none;
}

.modal-2__open-label,
.modal-2__close-label {
  cursor: pointer;
}

.modal-2__open-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .8em 2em;
  border: none;
  border-radius: 5px;
  background-color: #2589d0;
  color: #ffffff;
  font-weight: 600;
  font-size: 1em;
}

.modal-2__open-label:hover {
  background-color: #fff;
  color: #2589d0;
  outline: 1px solid #2589d0;
}

.modal-2 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-2__open-input:checked+label+input+.modal-2 {
  display: block;
  animation: modal-2-animation .6s;
}

.modal-2__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 650px;
  background-color: #fefefe;
  z-index: 2;
  border-radius: 5px;
}

.modal-2__close-label {
  background-color: #777;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: -15px;
  right: -2%;
  z-index: 99999;
  font-size: 1.3em;
}

.modal-2__content {
  max-height: 50vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}

.modal-2__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@keyframes modal-2-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 520.98px) {
  .modal-2__open-label {
    max-width: 90%;
    padding: .94em 2.1em .94em 2.6em;
  }

  .modal-2__close-label {
    top: -17px;
    right: -4%;
  }

  .modal-2__content-wrap {
    width: 90vw;
  }

  .modal-2__content {
    padding: 33px 21px 35px;
    max-width: 100%;
  }
}

.dashboard-modal__ttl {
  background: rgb(244, 244, 244);
  border-left: 5px solid rgb(37, 137, 208);
  border-bottom: 3px solid rgb(215, 215, 215);
  color: var(--font-c);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  padding: 15px;
}
*+.dashboard-modal__ttl {
  margin-top: 20px;
}
.dashboard-modal__ttl+* {
  margin-top: 20px;
}

.dashboard-modal__txt {
  border-radius: 0;
  border: none;
  background: transparent;
  color: inherit;
  max-width: none;

  font-feature-settings: 'palt';
  font-size: inherit;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  white-space: normal;
  margin: 0 0 20px;
  padding: 0 20px;
}
*+.dashboard-modal__txt {
  margin-top: 20px;
}
.dashboard-modal__txt+* {
  margin-top: 20px;
}


.dashboard-modal-table {
  display: block;
  width: auto;
}
.dashboard-modal-table thead,
.dashboard-modal-table tbody,
.dashboard-modal-table tfoot {
  display: block;
}
.dashboard-modal-table tr {
  display: table;
  width: 100%;
}
.dashboard-modal-table tr+tr {
  margin-top: 10px;
}
.dashboard-modal-table th {
  width: 80px;
  font-weight: 700;
}
.dashboard-modal-table td {
  width: calc(100% - 80px);
}
.dashboard-modal-table td:only-child {
  width: auto;
}

.dashboard-modal-table [type="text"],
.dashboard-modal-table [type="password"],
.dashboard-modal-table [type="number"],
.dashboard-modal-table [type="date"],
.dashboard-modal-table [type="time"] {
  border-radius: var(--site-radius);
  border: 1px solid var(--font-c-gray-light);
  background: #fff;
  font-size: 15px;
  max-width: 100%;
  height: 40px;
  padding: 8px 12px;
}
.dashboard-modal-table__2time [type="text"],
.dashboard-modal-table__2time [type="password"],
.dashboard-modal-table__2time [type="number"],
.dashboard-modal-table__2time [type="date"],
.dashboard-modal-table__2time [type="time"] {
  max-width: 80px;
}

.dashboard-modal-table [type="checkbox"],
.dashboard-modal-table [type="radio"] {
  margin: 0;
}

.dashboard-modal-table__input {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
}

.dashboard-modal-table .item--agreement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.dashboard-modal-table .item--agreement>span {
  display: block;
  font-weight: 700;
}

.dashboard-modal-table__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--btn-shadow);
  border-radius: var(--btn-radius);
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  height: var(--btn-height);
  position: relative;
  max-width: 320px;
  margin: 15px auto 0;
}

@media (max-width: 767.98px) {
  .modaal-content-container {
    padding: 20px
  }
}


/**　more button　**/
.infotxt-hide {
  display: none;
}


.info_more {
  display: block;
  border-radius: var(--site-radius);
  background: var(--main-c);
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: center;
  max-width: 24em;
  width: 98%;
  margin: 20px auto;
  padding: 12px 15px;
  transition: opacity 0.5s ease;
  cursor: pointer;
}
.info_more:hover {
  opacity: 0.7;
}
.info_more::after {
  content: "を追加する";
  transition: .2s;
}
.info_more.on-click::after {
  content: "【閉じる】";
}
@media screen and (max-width: 767.98px) {
  .info_more {
    font-size: 16px;
    margin: 0 auto 20px;
  }
}


.tag_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 32px;
  gap: 10px;
}

.tag_list>li>a {
  color: #fff;
  font-weight: 500;
  letter-spacing: .1rem;
  background-color: var(--main-c);
  padding: .5em 1em;
  display: flex;
  align-items: center;
}

.tag_list>li>a::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background-image: url('/common/images/icon_tag.png');
  background-position: center;
  background-size: contain;
  margin-right: .5em;
}

.request {
  background-color: #fff;
}

.request-box {
  --r-box-gap: 12px;
  --r-box-img-width: 144px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  gap: var(--r-box-gap);
}
*+.request-box {
  margin-top: 24px;
}
@media screen and (max-width: 767.98px) {
  .request-box {
    --r-box-gap: 12px;
    --r-box-img-width: 96px;
    gap: var(--r-box-gap);
  }
  *+.request-box {
    margin-top: 24px;
  }
}

.request-box__image {
  width: var(--r-box-img-width);
}
.request-box__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.request-box__item {
  width: 100%;
}
.request-box__image+.request-box__item {
  width: calc( 100% - var(--r-box-img-width) - var(--r-box-gap) );
}

.request-box__address {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767.98px) {
  .request-box__address {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
  }
}

.request-box .item--tag {
  display: block;
  background: #237ED9;
  color: #fff;
  letter-spacing: 0.1ex;
  text-align: center;
  min-width: 112px;
  margin: 0;
  padding: 6px 8px;
}
.request-box .item--txt {
  display: block;
  color: #F5A925;
  font-size: 18px;
  margin: 0;
}
.request-box .item--ttl {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.request-box__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  margin: 0 0 40px;
  gap: var(--r-box-gap);
}
*+.request-box__list {
  margin-top: 20px;
}

.request-box__list>dt {
  width: auto;
  margin: 0 auto 0 0;
  padding: 0;
}
.request-box__list>dd {
  width: 160px;
}
.request-box__list>dd>a {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--btn-shadow);
  border-radius: var(--btn-radius);
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
  font-weight: 500;
  text-align: center;
  width: auto;
  height: var(--btn-height);
  padding: 0 1em;
}
.request-box__list>dd>a:hover {
  border-color: var(--main-c-light);
  background: var(--main-c-light);
  color: #fff;
}

@media screen and (max-width: 767.98px) {
  .request-box__list {
    justify-content: flex-start;
    margin: 0;
  }
  .request-box__list>dt {
    width: 100%;
  }
  .request-box__list>dd {
    width: calc( (100% - var(--r-box-gap)) / 2 );
  }

  .request-box .item--tag {
    font-size: inherit;
  }
  .request-box .item--txt {
    font-size: inherit;
  }
  .request-box .item--ttl {
    font-size: 18px;
  }
}

.request__time,
.request__date,
.request__roundtrip,
.request__category,
.request__destination,
.add__info,
.Co-passenger_info {
  --request-ttl-width: 172px;
  --request-gap: 12px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: var(--request-gap);
}
*+.request__time,
*+.request__date,
*+.request__roundtrip,
*+.request__category,
*+.request__destination,
*+.add__info,
*+.Co-passenger_info {
  margin-top: 8px;
}

.request__ttl {
  display: block;
  border-left: solid 5px #B1D12D;
  font-size: inherit;
  font-weight: 700;
  width: var(--request-ttl-width);
  margin: 0;
  padding: 0 0 0 12px;
}
.request__txt {
  display: block;
  font-size: inherit;
  font-weight: 400;
  width: calc( 100% - var(--request-gap) - var(--request-ttl-width) );
  margin: 0;
  padding: 0;
}


/**
 * edit
 * NOTE:
**/
.edit {
  max-width: 1024px;
  margin-inline: auto;
}
#shortcuts {

}
.guide-shortcuts-wrap {
  width: 100%;
  max-width: var(--basewrap-width);
  margin: 0 auto;
  padding: 0 100px;
  position: relative;
  padding-top: 30px;
  margin-top: -30px;
}
.guide-shortcuts {
  margin-top: 40px;
  padding: 80px;
  background: #fff;
  border-radius: 16px;
}
.guide-shortcuts-head__ttl {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
.guide-shortcuts-sub__ttl {
  font-size: 20px;
  font-weight: 700;
  margin: 3rem 0 1.5rem;
  padding-bottom: .5em;
  border-bottom: solid 1px #BFBFBF;
}
.guide-shortcuts > p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.guide-shortcuts-list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.guide-shortcuts-list > li {
  list-style: auto;
  font-size: 16px;
}
.guide-shortcuts-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.guide-shortcuts-item:first-child {
  width: 180px;
  padding: 20px;
}
.guide-shortcuts-item:last-child {
  width: calc(100% - 180px);
  padding: 20px;
}
@media screen and (max-width: 767.98px) {
  .guide-shortcuts-wrap {
    padding: 0 20px;
  }
  .guide-shortcuts {
    margin-top: 0;
    padding: 20px;
    border-radius: unset;
  }
  .guide-shortcuts-head__ttl {
    text-align: left;
    font-size: 20px;
  }
  .guide-shortcuts-item:first-child,
  .guide-shortcuts-item:last-child {
    width: 100%;
  }
  .guide-shortcuts-item:first-child > img {
    width: 80%;
    max-width: 120px;
    display: block;
    margin: 0 auto;
  }
  .guide-shortcuts-item:last-child {
    padding: 0;
  }
  .guide-shortcuts > p,
  .guide-shortcuts-list > li {
    font-size: 15px;
  }
  .guide-shortcuts-sub__ttl {
    margin: 2rem 0 0;
    font-size: 18px;
  }
}