@charset "UTF-8";
/**
 * header var
 * NOTE: ヘッダーの変数のみここに記載してください。その他のグローバル変数はbase.cssへ記載してください。
**/
:root {
  --header-c: #000;
  --header-shadow: 0 4px 4px rgba(0, 0, 0, 0.13);
  --header-bg-c: #fff;
  --header-padding-block: 0px;
  --header-padding-inline: 20px;
  --header-height: 80px;
  --header-logo-width: 36px;
  --header-icon-size: 32px;
  --header-icon-small-size: 24px;
}
@media screen and (max-width: 1040.98px) {
  :root {
    --header-padding-block: 0px;
    --header-padding-inline: 16px;
    --header-height: 60px;
    --header-logo-width: 36px;
    --header-icon-size: 32px;
    --header-icon-small-size: 24px;
  }
}
@media screen and (max-width: 560.98px) {
  :root {
    --header-padding-block: 0px;
    --header-padding-inline: 16px;
    --header-height: 60px;
    --header-logo-width: 36px;
    --header-icon-size: 32px;
    --header-icon-small-size: 24px;
  }
}


/**
 * 画像のダウンロード防止
 * NOTE: ここにはダウンロード防止のスタイル以外の記述は厳禁
**/
.page-top img,
.outline img,
.result img,
.result__list img {
  /* 選択を無効化 */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  /* ドラッグを無効化 */
  -webkit-user-drag: none;
  user-drag: none;
}

/**
 * 上部固定ヘッダー用の余白
 * NOTE: サイトのトップページでは padding-top: 0;になっているため注意
**/
body > .wrap.sub {
  padding-top: var(--header-height);
}
body > .wrap.sub.page-confirm-email {
  background: #F2F2F2;
}
body > .wrap.sub.page-confirm-email footer {
  background: transparent;
}
@media screen and (max-width: 1040.98px) {
  body > .wrap.sub.page-offer-end {
    background: #f2f3f6;
  }
}


/**
 * header
 * NOTE:
**/
header {
  display: block;
  box-shadow: var(--header-shadow);
  background: var(--header-bg-c);
  color: var(--header-c);
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
  transition: all 0.3s ease;
}

header>.l-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--header-padding-block);
  padding-inline: 40px;
  height: var(--header-height);
}
@media screen and (max-width: 1436.98px) {
  header>.l-container {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 1040.98px) {
  header>.l-container {
    padding-inline: 16px;
  }
}

/* logo wrap */
.header__logo {
  width: var(--header-logo-width);
  transition: filter 0.2s ease;
}
.header__logo a {
  display: block;
}
.header__logo img {
  width: 100%;
  height: auto;
}


/* nav wrap */
.head-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: calc( 100% - var(--header-logo-width) );
  gap: 40px;
}


/* nav ul tag */
.head-nav>ul {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  height: var(--header-height);
}
@media screen and (max-width: 1040.98px) {
  .head-nav>ul {
    display: none;
  }
}

.head-nav>ul>li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

/* Rails移植: header current category */
.l-header__nav__item.selected {
  background-color: #F8F8F8;
}
.head-nav-pulldown,
.head-nav>ul>li>a {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  color: inherit;
  text-align: center;
  text-decoration: none;
  gap: 4px;
  position: relative;
}
.head-nav-pulldown>i,
.head-nav>ul>li>a>i {
  display: block;
  color: inherit;
  font-family: var(--font-family-en);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.56;
}
.head-nav-pulldown>span,
.head-nav>ul>li>a>span {
  display: flex;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  gap: 0.5ex;
  position: relative;
  z-index: 5;
}
.head-nav-pulldown>span::before {
  content: '\f107';
  display: var(--fa-display, inline-block);
  display: flex;
  justify-content: center;
  align-items: center;
  color: inherit;
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  order: 1000;
}
.head-nav-pulldown>span::after,
.head-nav>ul>li>a>span::after {
  content: '';
  display: block;
  border-top: solid 1px;
  width: 0px;
  position: absolute;
  left: 0;
  bottom: -4px;
  z-index: 1;
  transition: all 0.2s ease;
}
.head-nav-pulldown:hover>span::after,
.head-nav>ul>li>a:hover>span::after {
  width: 100%;
}

.head-nav-pulldown__body {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.13);
  background: #fff;
  position: absolute;
  inset: auto auto 0 0;
  z-index: 1;
  font-size: 16px;
  width: 216px;
  transform: translate(0,100%);
  transition: opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.head-nav-pulldown:hover .head-nav-pulldown__body {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 1040.98px) {
  .head-nav-pulldown__body {
    width: 100%;
    top: 60px;
  }
}


/* nav buttons wrapper */
.head-nav .head-btn-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1040.98px) {
  .head-nav .head-btn-wrap {
    display: none;
  }
}

/* nav button item */
.head-btn {}
.head-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 7px rgba(0,0,0,0.16);
  border-radius: 4px;
  border: solid 1px #fff;
  background: #fff;
  color: var(--font-c);
  font-weight: 700;
  text-decoration: none;
  min-width: 120px;
  height: 38px;
  padding: 0 8px;
  transition: all 0.4s ease;
}
.head-btn a:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.33);
  opacity: 0.75;
}

.head-btn.head-btn--w a {
  border: solid 1px #fff;
  background: #fff;
  color: var(--font-c);
}
.head-btn.head-btn--b a {
  border: solid 1px #000;
  background: #000;
  color: #fff;
}


/* nav button icon item */
.head-icon {}
.head-icon a {
  display: block;
}
.head-icon img {
  width: var(--header-icon-small-size);
  height: var(--header-icon-small-size);
  object-fit: contain;
}




.item__badge {
  display: flex;
  flex-flow: row 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: -7px;
  top: -6px;
  z-index: 1;
  transition: all 0.6s ease 0.2s;
}


/**
 * ハンバーガー
 * NOTE:
**/
[id="nav-drawer"] {
  width: var(--header-icon-size);
  height: var(--header-icon-size);
}

@media screen and (min-width: 1041px) {
  [id="nav-drawer"] {
    display: none;
  }
}


/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}
/*アイコンのスペース*/
[id="nav-open"] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: inherit;
  width: var(--header-icon-size);
  height: var(--header-icon-size);
  position: relative;
  z-index: 20000;
  transition: all 0.4s ease;
  cursor: pointer;
}
[id="nav-open"]:hover {
  filter: invert(0.75);
}
[id="nav-open"] span {
  display: block;
  color: inherit;
  font-size: 24px;
  position: relative;
}

[id="nav-open"] span,
[id="nav-open"] span::after,
[id="nav-open"] span::before {
  background: #222;
  width: 100%;
  height: 2px;
  transition: all .6s cubic-bezier(.19,1,.22,1);
}
[id="nav-open"] span::after,
[id="nav-open"] span::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
}
[id="nav-open"] span::after {
  top: 10px;
}
[id="nav-input"]:checked ~ [id="nav-open"] span {
  background: transparent;
}
[id="nav-input"]:checked ~ [id="nav-open"] span::after,
[id="nav-input"]:checked ~ [id="nav-open"] span::before {
  top: 0;
}
[id="nav-input"]:checked ~ [id="nav-open"] span::before {
  transform: rotate(135deg);
}
[id="nav-input"]:checked ~ [id="nav-open"] span::after {
  transform: rotate(-135deg);
}


/* オーバーレイ(close button) */
[id="nav-close"] {
  display: block;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--font-c);
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
[id="nav-input"]:checked ~ [id="nav-close"] {
  opacity: .5;
  pointer-events: auto;
}

/* 中身 */
[id="nav-content"] {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  box-shadow: 6px 0 24px 0 rgba(0, 0, 0, 0);
  /*border-radius: var(--site-radius) 0 0 var(--site-radius);*/
  border-radius: 0;
  background-image: linear-gradient(180deg,rgba(0, 0, 0, 0.13) 0%, rgba(0, 0, 0, 0) 100%);
  background-color: #fff;
  background-position: left 0 top var(--header-height);
  background-repeat: repeat-x;
  background-size: 100% 8px;
  color: var(--font-c);
  max-width: 420px;
  width: 100%;
  height: 100%;
  padding: var(--header-padding-inline) var(--header-padding-inline);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  transform: translate(104%,0);
  overflow: auto;
  transition: 0.3s ease-in-out;
  pointer-events: none;
}
[id="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: 560px;
    padding: 10px var(--header-padding-inline) var(--header-padding-inline);
  }
}
[id="nav-content"]::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
[id="nav-content"]::-webkit-scrollbar-thumb {
  background: #e1e1e1;
  border-radius: 6px;
  box-shadow: none;
}
[id="nav-content"]::-webkit-scrollbar-track {
  background: #f6f6f6;
  border-radius: 6px;
  box-shadow: none;
}
[id="nav-content"]::-webkit-scrollbar-corner {
  display: none;
}

.nav-drawer-logo {
  margin: 0 auto 0 0;
  align-self: center;
}
.nav-drawer-logo a {
  display: block;
}
.nav-drawer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .nav-drawer-logo {
    display: none;
  }
}

.nav-drawer-info {
  align-self: center;
  margin: 0 20px 0 0;
}
.nav-drawer-info a {
  display: block;
}
.nav-drawer-info img {
  width: var(--header-icon-small-size);
  height: var(--header-icon-small-size);
  object-fit: contain;
}


.nav-drawer-close {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  align-self: center;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06ex;
  width: var(--header-icon-size);
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.nav-drawer-close:hover {
  color: var(--font-c);
}
.nav-drawer-close>[class*="fa-"] {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: solid 1px #000;
  background: #fff;
  font-size:  var(--header-icon-size);
  width: var(--header-icon-size);
  height: var(--header-icon-size);
  margin: 0;
  aspect-ratio: 1 / 1;
}
.nav-drawer-close:hover>[class*="fa-"] {
  border-color: #000;
}
.nav-drawer-close>[class*="fa-"]::before {
  font-size: 0.5em;
}

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

.nav-drawer__item>a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: inherit;
  font-size: inherit;
  text-decoration: none;
  padding: 0;
  gap: 0.75ex;
  /* NOTE: gapはアイコン設定時に必要になります。 */
  position: relative;
}
.nav-drawer__item>a>i {
  font-weight: 700;
}
.nav-drawer__item>a>i::after {
  content: '/';
  font-weight: 400;
  margin-left: 0.5ex;
}

.nav-drawer__list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06ex;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 24px 0;
}
.nav-drawer__list .nav-drawer__item {
  padding: 0 1ex;
}
*+.nav-drawer__list {
  margin-top: 24px;
}
.nav-drawer-m-menu+.nav-drawer__list,
.nav-drawer__list+.nav-drawer__list {
  border-top: solid 1px var(--gray-light);
  margin-top: 20px;
  padding-top: 20px;
  gap: 40px;
}
@media screen and (max-width: 767.98px) {
  .nav-drawer__list {
    font-size: inherit;
  }
}

.nav-drawer__list .nav-drawer__item>a::after {
  content: '\f105';
  color: var(--gray);
  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;
  width: 100%;
  margin: 0;
  padding: 32px 0 0;
  gap: 1.5ex 3ex;
  position: relative;
}
*+.nav-drawer__list-small {
  margin-top: 32px;
}
.nav-drawer__list-small::before {
  content: '';
  display: block;
  background: var(--gray-light);
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.nav-drawer__list-small .nav-drawer__item {
  white-space: nowrap;
}

/* サイトオリジナル マイページメニュー */
.nav-drawer-m-menu {
  font-size: 18px;
  width: 100%;
}
.head-nav-pulldown__body .nav-drawer-m-menu {
  padding-top: 4px;
}
*+.nav-drawer-m-menu {
  margin-top: 24px;
}
.nav-drawer-m-menu__ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: inherit;
  font-size: inherit;
  text-decoration: none;
  padding: 0 10px;
  gap: 0.75ex;
  /* NOTE: gapはアイコン設定時に必要になります。 */
  position: relative;
}
.nav-drawer-m-menu__ttl>i {
  font-weight: 700;
}
.nav-drawer-m-menu__ttl>i::after {
  content: '/';
  font-weight: 400;
  margin-left: 0.5ex;
}

.nav-drawer-m-menu__item {
  margin: 0;
}
.nav-drawer-m-menu__ttl+.nav-drawer-m-menu__item {
  margin-top: 8px;
}
.nav-drawer-m-menu__item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  color: var(--font-c);
  text-decoration: none;
  margin: 0;
  padding: 7px 12px 9px;
  gap: 8px;
  opacity: 1;
}
.nav-drawer-m-menu__item a:hover {
  background: var(--bg-c-light);
  color: var(--font-c);
  opacity: 1;
}
.nav-drawer-m-menu__item a>i {
  display: block;
}
.nav-drawer-m-menu__item a>i>img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}
.nav-drawer-m-menu__item a>span {
  display: block;
}


.nav-drawer__func {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
*+.nav-drawer__func {
    margin-top: 24px;
}

/**
 * バッジ
 * NOTE:
**/
.item--badge,
.item__badge {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 20px;
  background: #173E85;/* site color */
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  min-width: 20px;
  width: auto;
  height: 20px;
  padding: 5px;
  position: absolute;
  right: -8px;
  top: -2px;
  z-index: 1;
  transition: all 0.4s ease 0.2s;
}

a:has(.item--badge),
a:has(.item__badge) {
  position: relative;
}

.head-icon .item--badge,
.head-icon .item__badge {
  background: var(--red-alert);/* alert red color */
  color: #fff;
}


.btn>a .item--badge,
.btn>button .item--badge,
.btn>span .item--badge,
.btn>a .item__badge,
.btn>button .item__badge,
.btn>span .item__badge {
  right: -4px;
  top: -4px;
}

@media screen and (max-width: 1024.98px) {
  .item--badge,
  .item__badge {
    right: -8px;
  }
}

.nav-drawer-m-menu__item .item--badge {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translate(0,-50%);
}

/**
 * 下部固定ボタン
 * 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
}


/**
 * footer
 * NOTE:
**/
footer {
  --footer-logo-width: 280px;
  background: #fff;
  width: 100%;
  padding: 80px 0 64px;
}
.page-top footer {
  padding-bottom: 64px;
}
.page-detail-disp footer {
  padding-bottom: 64px;
}
@media (max-width: 1040.98px) {
  footer {
    /* NOTE: 余白をさらに加える */
    padding: 112px var(--basewrap-padding-inline) 48px;
  }
  .page-top footer {
    padding-bottom: 48px;
  }
  .page-detail-disp footer {
    padding-bottom: 144px;
  }
}

footer .l-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  max-width: calc( 1080px + var(--basewrap-padding-inline) * 2 );
}
@media (max-width: 1040.98px) {
  footer .l-container {
    max-width: 420px;
  }
}
.foot-page-top {
  display: none;
  /* NOTE: displayはページごとに調整します。 */
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 0 80px;
}
.page-top .foot-page-top {
  display: flex;
}


.foot-page-top a {
  display: block;
  width: 96px;
  height: 96px;
  position: relative;
}
.foot-page-top a i {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%,-50%);
  transition: 0.4s ease;
}
.foot-page-top a:hover i {
  top: calc( 50% - 8px );
}

.foot-page-top img {
  width: 96px;
  height: 96px;
  animation: 16s linear 0s infinite rotate-image;
}
@keyframes rotate-image {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359.98deg);
  }
}


.foot-logo {
  width: var(--footer-logo-width);
  padding: 0 80px 0 0;
}
.foot-logo img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1040.98px) {
  .foot-logo {
    text-align: center;
    width: 100%;
    margin: 0 auto 80px;
    padding: 0;
  }
  .foot-logo img {
    max-width: 375px;
  }
}


.foot-nav {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  max-width: 440px;
  width: 100%;
  gap: 32px 0;
  aspect-ratio: 11 / 4;
}
.foot-nav li {
  width: 50%;
  max-width: 192px;
}
.foot-nav li:nth-child(n+4) {
  max-width: none;
}
@media only screen and (max-width: 1040.98px) {
  .foot-nav {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    width: 50%;
    gap: 32px 0;
    aspect-ratio: auto;
  }
  .foot-nav li {
    width: auto;
    max-width: none;
  }
}

.foot-nav a {
  color: var(--font-c-gray-dark);
  font-weight: 700;
  font-family: var(--font-family-en);
  text-decoration: none;
}
.foot-nav a:hover {
  color: var(--main-c);
}


.foot-subnav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 12px;
  width: 100%;
  gap: 16px 0;
}
*+.foot-subnav {
  margin-top: 16px;
}
@media only screen and (max-width: 1040.98px) {
  .foot-subnav {
    grid-template-columns: 1fr;
  }
  *+.foot-subnav {
    margin-top: 32px;
  }
}


.foot-subnav a {
  text-decoration: none;
}

.foot-top {
  width: 50%;
}
.foot-bottom {
  font-size: 12px;
  width: 100%;
  padding: 32px 0 0 var(--footer-logo-width);
}
@media only screen and (max-width: 1040.98px) {
  .foot-bottom {
    text-align: center;
    width: 100%;
    padding: 48px 0 0;
  }
  .page-detail-disp .foot-bottom {
    padding: 48px 0 80px;
  }
}

.foot-sns {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 32px 0;
}
.foot-sns a {
  display: block;
  color: var(--font-c-gray-dark);
  font-weight: 400;
  font-family: var(--font-family-en);
  font-size: 16px;
  text-decoration: none;
}
@media only screen and (max-width: 1040.98px) {
  .foot-sns {
    width: 50%;
  }
}
@media screen and (max-width: 767.98px) {}



/**
 * パンくず
 * NOTE:
 * このサイトでは基本、不使用
 * 使う場合は.wrapにページ属性のクラス .page-xxxxを追加し、.page-xxxx .breadcrumbを都度表示
**/
.breadcrumb {
  display: none;
}
/*
.page-xxxx .breadcrumb,
.page-xxxx .breadcrumb,
.page-xxxx .breadcrumb {
  display: block;
}
*/

.breadcrumb__list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  width: 100%;
  height: 40px;
}
*+.breadcrumb__item {
  margin-left: 8px;
}
*+.breadcrumb__item::before {
  content: '\f105';
  display: var(--fa-display, inline-block);
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-size: inherit;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  margin: 0 6px 0 0;
  transform: scale(0.8);
  opacity: 0.5;
}
.breadcrumb__item a {
  text-decoration: underline;
  text-decoration-thickness: 0.75px;
}

@media screen and (max-width:767px) {
  .breadcrumb__list {
    height: 35px;
    line-height: 35px;
    font-size: 11px;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto;
    white-space: nowrap;
  }
  .breadcrumb__item {
    display: inline;
    flex: 0 0 40%
  }
}



/**
 * 検索ページタブ
 * NOTE:
**/
.search-tab {
  --search-tab-height: 56px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: stretch;
  border-bottom: solid 1px var(--font-c-gray);
  background: #fff;
  color: var(--gray-dark);
  font-size: 16px;
  font-family: var(--font-family-gothic);
  line-height: 1;
  max-width: 1296px;
  margin-inline: auto;
  position: sticky;
  top: var(--header-height);
  z-index: 20;
}
.search-tab.type--left {
  justify-content: flex-start;
}
.search-tab.type--right {
  justify-content: flex-end;
}
@media screen and (max-width: 1040.98px) {
  .search-tab {
    --search-tab-height: 52px;
    justify-content: flex-start;
    font-size: 14px;
  }
}

body>.wrap:has(.search-tab) {
  overflow: visible;
}

.search-tab>li,
.search-tab-item {
  position: relative;
}

.search-tab>li [type="radio"],
.search-tab-item [type="radio"] {
  position: absolute;
  opacity: 0;
}

.search-tab>li>label,
.search-tab-item>a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: inherit;
  text-decoration: none;
  text-align: center;
  width: 200px;
  height: var(--search-tab-height);
  position: relative;
}
.search-tab>li>label:hover,
.search-tab-item>a:hover {
  background: var(--gray-light);
}
.search-tab>li:has(:checked)>label,
.search-tab-item>.is--active {
  color: var(--font-c);
}
.search-tab>li:has(:checked)>label::after,
.search-tab-item>.is--active::after {
  content: '';
  display: block;
  border-bottom: solid 4px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 1040.98px) {
  .search-tab>li>label,
  .search-tab-item>a {
    max-width: 120px;
    width: 100%;
    padding: 0 20px;
  }
  .search-tab>li:has(:checked)>label::after,
  .search-tab-item>.is--active::after {
    border-bottom-width: 3px;
  }
  .page-artlist .search-tab>li>label,
  .page-artlist .search-tab-item>a {
    min-width: 0;
  }
}


/**
 * 検索ページ最終更新日
 * NOTE:
**/
.search-last-mod {
  color: var(--font-c);
  font-family: var(--font-family-gothic);
  text-align: right;
  position: relative;
  z-index: 40;
}
.is--sticky ~ .search-last-mod {
  /* .search-tabなどがstickyしている場合は、stickyしているコンテンツよりも下へ配置 */
  position: relative;
  z-index: 1;
}
*+.search-last-mod {
  margin-top: 24px;
}
.search-last-mod__date {}
.search-last-mod__date time {}
.search-last-mod__date span {}
.search-last-mod__notes {
  color: var(--gray-dark);
  font-size: 12px;
}
@media screen and (max-width: 1040.98px) {
  *+.search-last-mod {
    margin-top: 8px;
  }
}


/**
 * 検索条件
 * NOTE:
**/


/* section search */
.search {
  --search-tab-height: 56px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0);
  background: transparent;
  font-size: 14px;
  padding: 24px 0;
  position: sticky;
  top: calc( var(--header-height) + var(--search-tab-height) );
  z-index: 10;
  transition:
    top 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
@media screen and (max-width: 1040.98px) {
  .search {
    --search-tab-height: 48px;
    top: calc( var(--header-height) + var(--search-tab-height) );
    padding: 6px 0;
  }
}

.search.is--sticky {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.13);
  background: #fff;
}
.is--window-scroll-down .search {
  top: calc( var(--search-tab-height) - 16px );
}
.is--window-scroll-up .search {
  top: calc( var(--header-height) + var(--search-tab-height) );
}

/* section search inner body */
/* NOTE: エリアは都道府県などを指しますが、別の意味合いの要素が入る場合があります */
.search__area {
  padding: 0;
}
.search__area--second {
  background: var(--font-c-gray-light);
  padding: 0;
}

/* search item wrapper */
.search__word, .search__sort, .search__filter {
  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: 16px;

}
.search__word {
  margin-top: 0;
}
*+.search__sort {
  margin-top: 20px;
}
.search__filter {
  margin-top: 0;
}

/* search item */
/* NOTE: 余白調整は基本的に親の gapプロパティで行います。 */
.search__ttl {
  font-weight: 700;
  margin: 0;
}
.search__item {
  margin: 0;
}
@media screen and (max-width: 1040.98px) {
  .search__word, .search__sort, .search__filter {
    padding: 0 20px;
    gap: 8px;
  }
  .search__sort {
    justify-content: center;
  }
  .search__filter .search__ttl {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .search__word, .search__sort, .search__filter {
    padding: 0 15px;
    gap: 8px;
  }
  .search__sort {
    justify-content: center;
    margin-top: 8px;
  }
}

/* search select tag */
.search__sort .select {
  width: 270px;
}
.search__sort .select select {
  border-color: var(--font-c-gray);
  background: var(--font-c-gray-light);
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .search__sort .select {
    width: 270px;
  }
}
@media screen and (max-width: 360.98px) {
  .search__sort .select {
    width: 50vw;
  }
}



/**
 * result
 * NOTE:
**/

/* list section */
.result {}

/* list wrapper */
.result__list {
  --result-gap: 56px;
  --result-item-gap: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--result-gap);
  counter-reset: resulut-rank;
}
@media screen and (max-width: 1300.98px) {
  .result__list {
    --result-gap: 48px;
    --result-item-gap: 12px;
/*
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
*/
    gap: var(--result-gap);
  }
}
@media screen and (max-width: 1040.98px) {
  .result__list {
    --result-gap: 20px;
    --result-item-gap: 12px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    gap: var(--result-gap);
  }
}


/* list item */
.result__item {
  container-type: inline-size;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  box-shadow: none;
  border-radius: 0;
  border: none;
  background: transparent;
  max-width: 264px;
  width: auto;
  margin: 0;
  padding: 0 16px;
  gap: var(--result-item-gap);
  position: relative;
  counter-increment: resulut-rank;
}
.result__item.item--no-data {
  text-align: center;
  max-width: none;
  width: 100%;
  grid-column: 1 / -1;
}
a.result__item {
  text-decoration: none;
}
a.result__item:hover {
  opacity: 1;
}
/*
@media screen and (max-width: 1300.98px) {
  .result__item {
    max-width: none;
    width: calc((100% - var(--result-gap)*3) / 4);
    padding: 0;
  }
}
*/
@media screen and (max-width: 1040.98px) {
  .result__item {
    max-width: none;
    width: calc((100% - var(--result-gap)) / 2);
    padding: 0;
  }
}


.result__rank {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 0 calc(var(--result-item-gap) * -1);
  padding: 0 0 4px;
  gap: 2px;
}
.result__rank::before {
  content: counter(resulut-rank);
  display: block;
  font-size: 47px;
  font-weight: 400;
  font-family: var(--font-family-en);
  line-height: 1;
  order: -2;
}
.result__rank::after {
  content: '位';
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  background-position: left 50% bottom 2.5ex;
  background-repeat: no-repeat;
  background-size: 2ex auto;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-family-gothic);
  order: -1;
}
.result__item:nth-child(1) .result__rank {
  color: #D3AC66;
}
.result__item:nth-child(1) .result__rank::after {
  background-image: url("../images/icon-rank-01.svg");
}
.result__item:nth-child(2) .result__rank {
  color: #ABB2B2;
}
.result__item:nth-child(2) .result__rank::after {
  background-image: url("../images/icon-rank-02.svg");
}
.result__item:nth-child(3) .result__rank {
  color: #B0845E;
}
.result__item:nth-child(3) .result__rank::after {
  background-image: url("../images/icon-rank-03.svg");
}
.result__rank-desc {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  color: var(--font-c);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  padding: 0 0 0.25ex 1ex;
  order: 0;
}



.result__flag {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  min-height: 20px;
  margin: 0;
  padding: 0;
  gap: 3px;
}

.result__flag .item--release,
.result__flag .item--comming,
.result__flag .item--soldout {
  background: var(--font-c);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-family-en);
  line-height: 1;
  width: fit-content;
  padding: 4px;
}
@media screen and (max-width: 767.98px) {
  .result__flag .item--soldout {
    font-size: 10px;
  }
}

.result__flag .status-tag {
  background: var(--font-c);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-family-en);
  line-height: 1;
  width: fit-content;
  padding: 4px;
}

.result__flag .status-tag.new-tag {
  background: var(--font-c-red-new-icon, var(--font-c));
  color: #fff;
}

.result__flag .item--soldout {
  background: var(--font-c);
  color: #fff;
}
.result__flag .item--release {
  background: var(--font-c);
  color: #fff;
}
.result__flag .item--comming {
  background: var(--gray-dark);
  color: #fff;
}


.result__img {
  width: 100%;
  height: 100cqw;
  padding: 13px;
  position: relative;
}
.result__img img {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  border-radius: 0;
  background-color: transparent;
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  transition: all 0.3s ease;
}
.result__img:hover img {
  transform: scale(1.04);
}
@media screen and (max-width: 1040.98px) {
  .result__img {
    max-height: 174px;
    margin: 0 auto;
    padding: 0;
  }
}

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

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

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

.result__desc {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 767.98px) {
  .result__desc {
    margin: 0;
  }
}

.result__ttl {
  color: var(--font-c);
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-family-gothic);
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
  overflow: hidden;
}
.result__item.item--no-data .result__ttl {
  color: var(--font-c);
  font-size: inherit;
  font-weight: inherit;
  text-align: center;
}
@media screen and (max-width: 1040.98px) {
  .result__ttl {
    font-size: 16px;
  }
}

.result__name {
  color: #A3A2A2;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-family-gothic);
  line-height: 1.5;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 1040.98px) {
  .result__name {
    font-size: 12px;
  }
}

.result__txt {
  color: var(--font-c);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-family-gothic);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 1040.98px) {
  .result__txt {
    font-size: 14px;
  }
}

.result__price {
  color: #6B6B6B;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-family-gothic);
  line-height: 1.5;
  letter-spacing: 0;
  text-align: right;
  margin: 12px 0 8px;
  padding: 0 12px;
}
.result__price em {
  display: inline-block;
  color: var(--font-c);
  font-size: 22px;
  font-family: var(--font-family-en);
  line-height: inherit;
  margin-right: 2px;
}
@media screen and (max-width: 767.98px) {
  .result__price {
    font-size: 14px;
  }
}



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


.result__profile {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: end;
  align-items: end;
  font-size: 11px;
}
.result__profile li {
  color: var(--font-c-gray-dark);
  line-height: 1;
}


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


/**
 * カード型リスト
 * NOTE:
**/
.card__list {
  display: flex;
  flex-wrap: wrap
}
.card__item {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
  padding: 15px;
  background: #fff;
  border: 1px solid #e9eced;
  border-radius: var(--btn-radius);
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
  position: relative
}
@media screen and (min-width:768px) {
  .card__item:nth-child(4n) {
    margin-right: 0
  }
}
.card__img {
  width: 100%
}
.card__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  font-family: 'object-fit: cover;'
}
.card__desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}
.card__ttl {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 700
}
.card__btn .btn--small:first-child {
  margin-bottom: 5px
}
.card__item .btnBox .btn--small {
  width: 49%;
  margin-top: 2%;
}
@media screen and (max-width:959px) {
  .card__img img {
    height: 140px
  }
}
@media screen and (max-width:767px) {
  .card__item {
    width: 49%;
    padding: 10px
  }
  .card__item:nth-child(2n) {
    margin-right: 0
  }
  .card__ttl {
    font-size: 15px
  }
}


/**
 * スレッド型リスト
 * 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: 1040.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%;
}
.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 {
  width: 100%;
  min-height: 55vh;
  padding: 10px 0;
  background: #fff;
  border: 1px solid #e9eced;
  border-radius: var(--btn-radius);
}
@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 img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
@media only screen and (max-width: 767.98px) {
  .faceicon img {
    width: 25px;
    height: 25px;
  }
}
.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 {
  padding-bottom: 40px
}

.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) {
  .chat-footer textarea {
    max-height: 40vh;
    padding: 15px 10px 40px;
  }
  .chat-footer textarea::placeholder {
    font-size: 13px;
    line-height: 2
  }
  .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: 10px;
    height: 30px;
    padding: 0 10px;
  }
}


/**
 * pagination
 * NOTE:
**/
.pagination {}
.pagination__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.pagination span, .pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--btn-radius);
  background: #fafafa;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.pagination span:last-child, .pagination a:last-child {
  margin-right: 0
}
.pagination .current, .pagination a:hover {
  background: var(--main-c);
  color: #fff;
}
@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
 * NOTE: アウトライン関係は、style.outline.cssへ記載します
**/




/**
 * knowledge
 * NOTE:
**/

/* knowledge section */
.knowledge {}

/* knowledge list wrapper */
.knowledge__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.knowledge__list.knowledge__list--news {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.knowledge__list.slick-slider {
  display: block;
}
.knowledge__list.knowledge__list--article.slick-slider .slick-list,
.knowledge__list.knowledge__list--news.slick-slider .slick-list {
  overflow: visible;
}

@media only screen and (max-width: 959.98px) {
  .knowledge__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .knowledge__list.knowledge__list--news {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 767.98px) {
  .knowledge__list {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .knowledge__list.knowledge__list--news {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 48px;
  }
}

.knowledge__item {
  text-decoration: none;
}
.knowledge__item a {
  text-decoration: none;
}
.knowledge__item.slick-slide {
  margin-inline: 10px;
}
.knowledge__list.knowledge__list--article.slick-slider .knowledge__item.slick-slide,
.knowledge__list.knowledge__list--news.slick-slider .knowledge__item.slick-slide {
  width: 280px;
}

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

.knowledge__img {
  box-shadow: 0px 27px 80px rgba(0, 0, 0, 0.06), 0px 3px 10px rgba(0, 0, 0, 0.13);
  border-radius: 10px;
  overflow: hidden;
}
.knowledge__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: all 0.2s ease;
}
.knowledge__list.knowledge__list--news .knowledge__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.knowledge__list.knowledge__list--article .knowledge__item:hover img {
  transform: scale(1.2);
}
.knowledge__list.knowledge__list--news .knowledge__item:hover img {
  transform: scale(1.2);
}


.knowledge__desc {
  margin-top: 10px;
}
.knowledge__ttl {
  font-size: 20px;
  font-weight: 700;
  font-feature-settings: 'palt';
  line-height: 1.4;
}
.knowledge__list.knowledge__list--simple .knowledge__ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1040.98px) {
  .knowledge__ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 767.98px) {
  .knowledge__ttl {
    font-size: 14px;
  }
}

.knowledge__txt {
  font-size: 14px;
  line-height: 1.4;
  font-feature-settings: 'palt';
  margin-top: 6px;
}
.knowledge__list.knowledge__list--simple .knowledge__txt {
  display: none;
}
.knowledge__txt--more {
  color: var(--main-c);
}

/**
 * knowledge ARTIST NEWS
 * NOTE:
**/

/* knowledge list wrapper */
.knowledge-media {}
.knowledge-media__item {
  width: calc(((100vw - 160px - 444px) / 4) - 20px);
  padding: 0;
}

@media screen and (max-width: 1040.98px) {
  .knowledge-media__item {
    width: auto;
  }
}
.knowledge-media__item>a {
  display: block;
  text-decoration: none;
}


.knowledge-media__img {}
.knowledge-media__img .item--img {
  width: 100%;
  height: 175px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-filter: drop-shadow(5px 5px 5px #A2A7AA);
          filter: drop-shadow(5px 5px 5px #A2A7AA);
}
@media screen and (max-width: 1040.98px) {
  .knowledge-media__img .item--img {
    height: 160px;
  }
}
.knowledge-media__desc {}
.knowledge-media__date {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #3F3F3F;
}
.knowledge-media__title {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}


#column__main {
  width: 100%;
  max-width: 700px;
  margin: 0 auto
}
.column__ttl {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700
}
.column__inner {
  padding: 30px;
  border: 1px solid #e9eced;
  border-radius: var(--btn-radius);
  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
  }
  #column__main .btn {
    font-size: 12px
  }
}
#about section {
  padding: 80px 0
}
.about__ttl {
  margin-bottom: 60px;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
}
.about__txt {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  line-height: 2
}
.about__txt p {
  margin-bottom: 20px
}
.about-section__ttl {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}


.solve {
  --solve-item-img-width: 448px;
  --solve-item-gap: 48px;
}
@media screen and (max-width: 1040.98px) {
  .solve {
    --solve-item-img-width: 448px;
    --solve-item-gap: 48px;
  }
}
@media only screen and (max-width: 767.98px) {
  .solve {
    --solve-item-img-width: 448px;
    --solve-item-gap: 48px;
    padding-bottom: 56px;
  }
}

.solve .l-container {
  max-width: 1280px;
}

.solve__item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}
*+.solve__item {
  margin-top: 40px;
}
@media only screen and (max-width: 767.98px) {
  .solve__item {
    flex-flow: column nowrap;
    align-items: center;
    padding: 0 8px;
  }
}

.solve__img {
  width: var(--solve-item-img-width);
  order: 0;
}
.solve__img img {
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.16);
  border-radius: 0;
  background-color: #F9F9F9;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.solve__img img.item--cover {
  object-fit: cover;
}
.solve__img img.item--contain {
  object-fit: contain;
}
@media only screen and (max-width: 767.98px) {
  .solve__img {
    width: 100%;
  }
  .solve__img img {
    height: auto;
  }
}

.solve__desc {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: stretch;
  width: calc( 100% - var(--solve-item-img-width) - var(--solve-item-gap) );
  order: 1;
}
.even .solve__desc {
  /* NOTE: 本サイトでは互い違いレイアウトにはしない */
}
.solve__num {
  color: #818393;
}
.solve__ttl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.solve__txt {
  font-weight: 500;
  text-align: left;
}
@media only screen and (max-width: 767.98px) {
  .solve__desc {
    width: auto;
    margin-top: 16px;
    order: 1;
  }
  .solve__ttl {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .solve__txt {
    font-size: 14px;
  }
}


.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: 1040.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%
  }
}
/**
 * ご利用ガイド
**/
.guide__item {
  width: 100%;
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
}
.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;
    flex-wrap: wrap
  }
  .guide__img {
    width: 100%;
    padding: 0;
  }
  .guide__img img {
    margin: 0 auto;
  }
  .guide__desc {
    width: 100%;
    padding: 0;
    border: none;
  }
  .guide__ttl {
    font-size: 18px
  }
}
.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;
  color: var(--font-c-gray-dark);
  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: 768.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;
  }
}




/**
 * edit
 * NOTE:
 * .fomrset関連は色や余白、また影やfont-sizeなどの調整のみにしてください。
 * .fomrset__itemなど、inputの親や祖先のgapプロパティなどを
 * ここで調整するとレスポンシブやリキッドレイアウトの整合性が取れなくなりますので
 * バリデーションプラグインなどを用いた際に幅と余白などの諸々の計算が破綻してしまいます。
**/
.m-edit {
  padding-top: 64px;
}
@media screen and (max-width: 1040.98px) {
  .m-edit {
    padding-top: 32px;
    padding-bottom: 0;
  }
}

.m-edit .formset {
  border-radius: 16px;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1040.98px) {
  .m-edit .formset {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    margin-inline: 0;
    padding: 24px var(--basewrap-padding-inline) 32px;
  }
}

@media screen and (max-width: 1040.98px) {
  .m-edit .formset.formset--cards {
    box-shadow: none;
    background: transparent;
    margin-inline: 0;
    padding: 0;
  }
  .m-edit .formset.formset--cards .payment-methods {
    border-bottom: none;
    padding-bottom: 0;
  }
  .m-edit .formset.formset--cards {
    border-bottom: none;
    padding-bottom: 0;
  }
  .m-edit .formset.formset--cards .payment-methods~.btn a,
  .m-edit .formset.formset--cards .payment-methods~.btn [type="button"],
  .m-edit .formset.formset--cards .payment-methods~.btn [type="submit"],
  .m-edit .formset.formset--cards .payment-methods~.btn button,
  .m-edit .formset.formset--cards .payment-methods~.btn > span {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-shadow: none;
    border-radius: 0;
    border: none;
    background: transparent;
    color: inherit;
    font-weight: 500;
    text-decoration: none;
    width: 100%;
    height: auto;
  }
}

.m-edit .formset__h2 {
  /* NOTE: border-bottom, font, height, margin, padding以外の指定は禁止 */
  border-bottom: 1px solid var(--gray);
  font-size: 20px;
  font-weight: 700;
  height: auto;
  margin: 0;
  padding: 0 0 8px;
}
.m-edit *+.formset__h2 {
  margin-top: 20px;
}
.m-edit .formset__h2 .item--badge {
  position: static;
  margin-left: 12px;
  margin-right: auto;
}

@media screen and (max-width: 1040.98px) {
  .m-edit .formset__h2 {
    font-size: 16px;
  }
}

.m-edit .formset__lead {
  text-align: left;
}
.m-edit .formset.formset--cards .formset__lead {
  font-weight: 700;
}

.m-edit .formset__item {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
  gap: 0;
}
.m-edit *+.formset__item {
  margin-top: var(--formset-item-mt);
}
.m-edit *+.formset__item.item--mt-tight {
  margin-top: calc( var(--formset-item-mt) * 0.5 );
}
.m-edit *+.formset__item.item--mt-0 {
  margin-top: 0;
}
@media only screen and (max-width: 959.98px) {
  .m-edit .formset__item {
    gap: 0;
  }
  .m-edit *+.formset__item {
    margin-top: var(--formset-item-mt);
  }
}
@media screen and (max-width: 1040.98px) {
  .m-edit .formset__item {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
  }
  .m-edit *+.formset__item {
    margin-top: var(--formset-item-mt);
  }
}
@media screen and (max-width: 560.98px) {
  .m-edit .formset__item {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
  }
  .m-edit *+.formset__item {
    margin-top: var(--formset-item-mt);
  }
}

/* formset ttl, formset input  */
/* タイトル */
.m-edit .formset__ttl {
  /* NOTE: displayプロパティとflex関連のプロパティは変更不可 */
  font-size: 14px;
  font-weight: 700;
  width: auto;
  min-width: 0;
  padding: 4px 0;
}
.m-edit .formset__input {
  /* NOTE: displayプロパティとflex関連のプロパティは変更不可 */
  width: auto;
  padding: 0;
}

.m-edit .formset__btn {
  max-width: none;
  min-width: 0;
  width: 100%;
  margin: 0;
}
.m-edit *+.formset__btn {
  margin-top: 20px;
}
.m-edit *+.formset__btn.formset__action {
  margin-top: 48px;
}
.m-edit .formset+.btn {
  max-width: 640px;
  margin: 40px auto 0;
  padding: 0;
}
@media screen and (max-width: 1040.98px) {
  .m-edit .formset+.btn {
    max-width: none;
  }
}


/**
 * brand logo
 * NOTE:
**/
.brand-logo-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
*+.brand-logo-list {
  margin-top: 12px;
}
.brand-logo-list>li {}
.brand-logo-list img {
  width: auto;
  height: 40px;
}
.brand-logo-list [src*="visa"] {
  width: auto;
  height: 19px;
}
.brand-logo-list [src*="master"] {}
.brand-logo-list [src*="jcb"] {}
.brand-logo-list [src*="amex"] {}
.brand-logo-list [src*="diners"] {}

/**
 * login
 * NOTE:
 * .fomrset関連は色や余白、また影やfont-sizeなどの調整のみにしてください。
 * .fomrset__itemなど、inputの親や祖先のgapプロパティなどを
 * ここで調整するとレスポンシブやリキッドレイアウトの整合性が取れなくなりますので
 * バリデーションプラグインなどを用いた際に幅と余白などの諸々の計算が破綻してしまいます。
**/
.page-login,
.page-login footer {
  background: #f2f2f2;
}
.login {
  padding-top: 64px;
}
@media screen and (max-width: 1040.98px) {
  .login {
    font-size: 12px;
    padding-top: 32px;
  }
}


.login .formset {
  max-width: 768px;
}
.login .formset.formset--tight {
  max-width: 628px;
  padding: 40px 80px;
}
@media screen and (max-width: 1040.98px) {
  .login .formset {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    background: #fff;
    max-width: none;
    margin-inline: calc(var(--basewrap-padding-inline)*-1);
    padding: 40px var(--basewrap-padding-inline);
  }
  .login .formset.formset--tight {
    padding: 40px var(--basewrap-padding-inline);
  }
}

.login .formset__h2 {
  /* NOTE: font, margin以外の指定は禁止 */
  font-size: 16px;
  font-weight: 500;
  margin-inline: 0;
}

.login .formset__item {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
  gap: 0;
}
.login *+.formset__item {
  margin-top: 16px;
}
@media screen and (max-width: 1040.98px) {
  .login .formset__item {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
  }
  .login *+.formset__item {
    margin-top: 16px;
  }
}
@media screen and (max-width: 560.98px) {
  .login .formset__item {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
  }
  .login *+.formset__item {
    margin-top: 16px;
  }
}

/* formset ttl, formset input  */
/* タイトル */
.login .formset__ttl {
  /* NOTE: displayプロパティとflex関連のプロパティは変更不可 */
  font-size: 14px;
  width: auto;
  min-width: 0;
  padding: 0;
}
.login .formset__input {
  /* NOTE: displayプロパティとflex関連のプロパティは変更不可 */
  width: auto;
  padding: 0;
}

.login .formset__input [type="text"],
.login .formset__input [type="email"],
.login .formset__input [type="tel"],
.login .formset__input [type="password"],
.login .formset__input [type="datetime-local"],
.login .formset__input [type="date"],
.login .formset__input [type="time"],
.login .formset__input [type="month"],
.login .formset__input [type="week"],
.login .formset__input [type="search"],
.login .formset__input [type="number"],
.login textarea {
  /* NOTE: border-color, background以外の指定は禁止 */
  border-color: #ECECEC;
  background: #ECECEC;
}

.login .btn.formset__btn {
  max-width: none;
  margin: 16px 0 0;
}
.login .formset__btn.formset__btn--center {
  margin-inline: auto;
}
.login .btn.formset__btn button,
.login .btn.formset__btn input,
.login .btn.formset__btn a,
.login .btn.formset__btn span {
  font-weight: 500;
  font-size: 14px;
  width: 152px;
  min-height: 40px;
}
.login .btn.formset__btn.formset__btn--middle button,
.login .btn.formset__btn.formset__btn--middle input,
.login .btn.formset__btn.formset__btn--middle a,
.login .btn.formset__btn.formset__btn--middle span {
  width: 222px;
  min-height: 40px;
}

.login__2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.login__2col-form {}
.login__2col-sns {}
@media screen and (max-width: 1040.98px) {
  .login__2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  *+.login__2col {
    margin-top: 20px;
  }
}


.formset .login__sns-list,
.login__sns-list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin: 0;
  gap: 8px;
}
.formset *+.login__sns-list,
*+.login__sns-list {
  margin-top: 20px;
}
.formset__input .login__sns-list>li,
.login__sns-list>li {
  margin: 0;
  padding: 0;
}


.login__sns-list .item--fb,
.login__sns-list .item--x,
.login__sns-list .item--line {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: none;
  border-radius: var(--btn-radius);
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  width: 100%;
  height: 42px;
  padding: 0 2em 0 3em;
  gap: 2em;
}
.login .login__sns-list .item--fb,
.login .login__sns-list .item--x,
.login .login__sns-list .item--line {
  padding-inline: 1em;
}

.login__sns-list .item--fb {
  border-color: #4774BA;
  background: #fff;
  color: #4774BA;
}
.login__sns-list .item--x {
  border-color: #414141;
  background: #fff;
  color: #414141;
}
.login__sns-list .item--line {
  border-color: #01C301;
  background: #fff;
  color: #01C301;
}
.login__sns-list .item--fb [class*="fa-"],
.login__sns-list .item--x [class*="fa-"],
.login__sns-list .item--line [class*="fa-"] {
  transform: scale(1.5);
  transform-origin: left center;
}


/**
 * terms, policy
 * NOTE:
**/
@media screen and (min-width: 768px) {
  .terms__article {
    background: #fff;
    padding: 40px 40px 0;
    border: 1px solid #e9eced;
    border-radius: var(--btn-radius)
  }
}
.terms__article {
  width: 100%
}
.terms__ttl {
  font-size: 24px;
  font-weight: 700
}
.terms__item {
  margin-bottom: 40px
}
.terms__txt {
  margin-top: 10px
}
@media screen and (max-width: 767.98px) {
  .terms__ttl {
    font-size: 18px
  }
}
@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__ttl {
  font-size: 24px;
  font-weight: 700
}
.policy__item {
  margin-bottom: 40px
}
.policy__txt {
  margin-top: 10px
}

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


/**
 *
 * .trade
 * NOTE:
 *
**/
.trade {
  padding: 40px 0 0;
}
.trade .u-mt30 {
  margin-top: 30px;
}
.trade .u-mt50 {
  margin-top: 50px;
}
.trade .u-mb4 {
  margin-bottom: 4px;
}
.trade p {
  margin-bottom: 1em;
}
.trade .c-list--definition li {
  border-top: 1px solid #E0E0E0;
  padding-block: 36px;
}
.trade .c-list--definition li:last-child {
  border-bottom: 1px solid #E0E0E0;
}
.trade .c-list--definition dl {
  display: flex;
  width: 100%;
  justify-content: left;
  align-items: center;
}
.trade .c-list--definition dt {
  font-weight: 700;
  font-size: 16px;
  color: #222;
  flex: 0 0 276px;
}
.trade .c-txt-supplement {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #6B6B6B;
  margin-bottom: 0;
}
.trade .c-pagettl--large {
  font-weight: 700;
  font-size: 38px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: var(--font-c);
  margin-bottom: 64px;
}
.trade .c-txt {
  font-size: 14px;
  color: var(--font-c);
  line-height: 1.8;
}
.trade .c-subheader-v2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--font-c);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.trade .c-link {
  color: var(--text-link-c-blue);
  font-weight: 500;
  line-height: calc(22 / 14);
  font-size: 14px;
  margin-bottom: 0;
  cursor: pointer;
  text-decoration: underline;
  word-break: break-all;
}
@media screen and (max-width: 1040px) {
  .trade .c-pagettl--large {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .trade .c-subheader-v2 {
    font-size: 16px;
  }
  .trade .c-list--definition li {
    padding-block: 24px;
  }
  .trade .c-list--definition dl {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .trade .c-list--definition dt {
    flex: 0 0 auto;
  }
}


/**
 *
 * .law
 * NOTE:
 *
**/
.law {
  padding: 40px 0 0;
}
.law .u-mt50 {
  margin-top: 50px;
}
.law .u-mb4 {
  margin-bottom: 4px;
}
.law p {
  margin-bottom: 1em;
}
.law .c-list--definition li {
  border-top: 1px solid #E0E0E0;
  padding-block: 36px;
}
.law .c-list--definition li:last-child {
  border-bottom: 1px solid #E0E0E0;
}
.law .c-list--definition dl {
  display: flex;
  width: 100%;
  justify-content: left;
  align-items: center;
}
.law .c-list--definition dt {
  font-weight: 700;
  font-size: 16px;
  color: #222;
  flex: 0 0 276px;
}
.law .c-txt-supplement {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #6B6B6B;
  margin-bottom: 0;
}
.law .c-pagettl--large {
  font-weight: 700;
  font-size: 38px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: var(--font-c);
  margin-bottom: 64px;
}
.law .c-txt {
  font-size: 14px;
  color: var(--font-c);
  line-height: 1.8;
}
.law .c-subheader-v2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--font-c);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.law .c-link {
  color: var(--text-link-c-blue);
  font-weight: 500;
  line-height: calc(22 / 14);
  font-size: 14px;
  margin-bottom: 0;
  cursor: pointer;
  text-decoration: underline;
  word-break: break-all;
}
@media screen and (max-width: 1040px) {
  .law .c-pagettl--large {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .law .c-subheader-v2 {
    font-size: 16px;
  }
  .law .c-list--definition li {
    padding-block: 24px;
  }
  .law .c-list--definition dl {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .law .c-list--definition dt {
    flex: 0 0 auto;
  }
}


/**
 *
 * .policy
 * NOTE:
 *
**/
.policy {
  padding: 40px 0 0;
}
.policy .u-mt50 {
  margin-top: 50px;
}
.policy .u-mb4 {
  margin-bottom: 4px;
}
.policy p {
  margin-bottom: 1em;
}
.policy .c-pagettl--large {
  font-weight: 700;
  font-size: 38px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: var(--font-c);
  margin-bottom: 64px;
}
.policy .c-txt {
  font-size: 14px;
  color: var(--font-c);
  line-height: 1.8;
}
.policy .c-subheader-v2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--font-c);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.policy .c-link {
  color: var(--text-link-c-blue);
  font-weight: 500;
  line-height: calc(22 / 14);
  font-size: 14px;
  margin-bottom: 0;
  cursor: pointer;
  text-decoration: underline;
  word-break: break-all;
}
@media screen and (max-width: 1040px) {

  .policy .c-pagettl--large {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .policy .c-subheader-v2 {
    font-size: 16px;
  }
}


/**
 *
 * .terms
 * NOTE:
 *
**/
.terms {
  padding: 40px 0 0;
}
.terms .u-mt50 {
  margin-top: 50px;
}
.terms .u-mb4 {
  margin-bottom: 4px;
}
.terms .u-ti--16 {
  text-indent: -16px;
}
.terms .u-pl30 {
  padding-left: 30px;
}
.terms p {
  margin-bottom: 1em;
}
.terms .c-pagettl--middle {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  margin-inline: auto;
  margin-block: 40px;
  text-align: center;
}
.terms .c-pagettl--large {
  font-weight: 700;
  font-size: 38px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: var(--font-c);
  margin-bottom: 64px;
}
.terms .c-txt {
  font-size: 14px;
  color: var(--font-c);
  line-height: 1.8;
}
.terms .c-subheader-v2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--font-c);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.terms .c-link {
  color: var(--text-link-c-blue);
  font-weight: 500;
  line-height: calc(22 / 14);
  font-size: 14px;
  margin-bottom: 0;
  cursor: pointer;
  text-decoration: underline;
  word-break: break-all;
}
@media screen and (max-width: 1040px) {
  .terms .c-pagettl--large {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .terms .c-subheader-v2 {
    font-size: 16px;
  }
  .terms .c-pagettl--middle {
    font-size: 20px;
    margin-block: 20px;
  }
}


/**
 * sms-success
 * NOTE: sms認証完了画面
**/
.sms-success {}
.sms-success__img {
  text-align: center;
  margin: 0 0 20px;
}
.sms-success__img img {
  max-width: 82px;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

/**
 * modal
 * NOTE: ブレークポイントを画面の高さで調整している所があるので注意してください。
**/

.modal-drawer,
[id="modal-drawer"] {
  width: 180px;
  margin: 0 auto;
}
/* NOTE: body直下に .modal-drawerを配置した場合は、z-indexを body>.wrapよりも上に */
body>.modal-drawer,
body>[id="modal-drawer"] {
  position: relative;
  z-index: 20;
}
@media only screen and (max-width: 959.98px) {
  .modal-drawer,
  [id="modal-drawer"] {
    font-size: 12px;
    width: 110px;
  }
}

.modal-unshown {
  display: none;
}
.modal-switch {
  position: absolute;
  opacity: 0;
}

.modal__btn.btn,
.modal__btn {
  max-width: 180px;
  margin: 0;
}

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

.modal-close,
[id="modal-close"] {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: .3s ease-in-out;
  z-index: 30000;
}

.modal-close-button {
  color: #333;
  font-style: normal;
  font-size: 18px;
  font-family: Arial, Baskerville, monospace;
  line-height: 18px;
  text-decoration: none;
  text-align: center;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 12px;
  top: 12px;
  opacity: .65;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
button.modal-close-button {
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  display: block;
  outline: 0;
  border: 0;
  background: transparent;
  z-index: 1046;
  overflow: visible;
  cursor: pointer;
  touch-action: manipulation;
}
.outline .modal-close-button {
  position: absolute;
  right: 12px;
  left: auto;
  top: 12px;
}
.modal-close-icon {
  display: block;
  background-image: url(/common/images/modal-cross.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
  width: 18px;
  height: 18px;
}

.modal-content,
[id="modal-content"] {
  /* NOTE: モーダルのサイズ変更は変数で可能。サイズ変更に各プロパティの調整は不要。 */
  --modal-content-width: 900px;
  --modal-content-height: 768px;
  --modal-content-overlay-margin: 0px;
  border-radius: 16px;
  border: 20px solid #fff;
  background: #fff;
  width: var(--modal-content-width);
  height: var(--modal-content-height);
  padding: 20px;
  position: fixed;
  top: calc((100svh - var(--modal-content-height)) / 2);
  left: calc((100svw - var(--modal-content-width)) / 2);
  z-index: 30001;
  transform: translate(0, 0);
  opacity: 0;
  overflow: auto;
  overscroll-behavior: contain; /* スクロール連鎖を防ぐ */
  pointer-events: none;
}

/* 【不使用】スマホ特化用クラス（htmlへクラス名付与済み） */
/*.modal-formpopup .modal-content.modal-content-forsp, .modal-formpopup .modal-content-forsp[id="modal-content"] {}*/

/* 【不使用】カレンダー用クラス（htmlへクラス名付与済み） */
/*.modal-formpopup .modal-content, .modal-formpopup [id="modal-content"] {}*/

/* 縦方向制御 */
@media only screen and (max-height: 1023.98px) {
  .modal-content,
  [id="modal-content"] {
    height: calc(100svh - var(--header-height) * 0.75 - var(--modal-content-overlay-margin) * 2);
    top: calc( var(--header-height) * 0.75 + var(--modal-content-overlay-margin) );
  }
}
/* 横方向制御 */
@media only screen and (max-width: 1040.98px) {

  .modal-content,
  [id="modal-content"] {
    width: 100svw;
    border: 12px solid #fff;
    padding: 48px 16px 12px;
    left: 0;
  }
}

.modal-switch:checked~.modal-content,
[id="modal-input"]:checked~[id="modal-content"] {
  box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
  opacity: 1;
  pointer-events: auto;
}

.modal-content::-webkit-scrollbar,
[id="modal-content"]::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.modal-content::-webkit-scrollbar-thumb,
[id="modal-content"]::-webkit-scrollbar-thumb {
  background: var(--main-c);
  border-radius: 6px;
  box-shadow: none;
}

.modal-content::-webkit-scrollbar-track,
[id="modal-content"]::-webkit-scrollbar-track {
  background: var(--gray-light);
  border-radius: 6px;
  box-shadow: none;
}

.modal-content::-webkit-scrollbar-corner,
[id="modal-content"]::-webkit-scrollbar-corner {
  display: none;
}

.modal-switch:checked~.modal-close,
[id="modal-input"]:checked~[id="modal-close"] {
  display: block;
  opacity: 0.3;
}

.modal-content .table th,
.modal-content .table td,
[id="modal-content"] .table th,
[id="modal-content"] .table td {
  padding: 10px 20px;
}

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

  .modal-content .table td,
  [id="modal-content"] .table td {
    padding: 10px 10px 15px;
  }
}


.modal-content .c-head {
  margin: 0 0 12px;
}

.modal-content .c-head__ttl {
  font-size: 28px;
  line-height: 1.4;
}

.modal-content .c-head__txt {
  font-size: 14px;
  line-height: 1.4;
}

@media only screen and (max-width: 1040.98px) {
  .modal-content .c-head__ttl {
    font-size: 20px;
  }

  .modal-content .c-head__txt {
    font-size: 14px;
  }
}

/* モーダル内部 ボタンラッパー */
.modal-content .formset {
  box-shadow: none;
  border-radius: 0;
  border: none;
  padding: 0;
}
.modal-content .formset__lead {
  text-align: left;
}
.modal-content .formset__item {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  gap: 2px;
}
.modal-content *+.formset__item {
  margin-top: 8px;
}
.modal-content .formset__ttl {
  font-weight: 700;
  min-width: 0;
  width: 100%;
  padding: 0;
}
.modal-content .formset__input {
  width: 100%;
  padding: 0;
}
/*@media only screen and (max-width: 1040.98px) {*/
  .modal-content .formset__input input,
  .modal-content .formset__input textarea,
  .modal-content .formset__input select {
    font-size: 14px;
  }
/*}*/

/* モーダル内部 ボタンラッパー */
.modal-content .box-btn {
  justify-content: center;
  max-width: none;
  margin: 20px auto 0;
}
.modal-content .box-btn .btn {
  min-width: 144px;
  width: auto;
  margin: 0;
}

/* 戻るボタンの矢印の位置と向きを調整 */
/* NOTE: 暫定処置のため、ボタン数の仕様変更があった場合、以下のスタイルで対応不可になります。 */
.modal-drawer .box-btn:has(.btn:nth-child(2):last-child) .btn:first-child>a::after,
.modal-drawer .box-btn:has(.btn:nth-child(2):last-child) .btn:first-child>[type="submit"]::after,
.modal-drawer .box-btn:has(.btn:nth-child(2):last-child) .btn:first-child>[type="button"]::after,
.modal-drawer .box-btn:has(.btn:nth-child(2):last-child) .btn:first-child>button::after,
.modal-drawer .box-btn:has(.btn:nth-child(2):last-child) .btn:first-child>span::after {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 1.5em;
  transform: translate(100%, -50%) scaleX(-1);
  transform-origin: left center;
}

/* card */
[id="modal-add-card"] {}
[id="modal-add-card"] .modal-content .box-btn {
  width: auto;
  gap: 2%;
  position: absolute;
  inset: auto 16px 32px;
}
.m-edit [id="modal-add-card"] .modal-content .formset__lead {
  font-weight: 500;
  font-size: 14px;
}
/* card 縦方向制御 */
@media (max-height: 832.98px) and (min-width: 1041px) {
  /* with pc width */
  [id="modal-add-card"] {}
  [id="modal-add-card"] .modal-content .box-btn {
    width: 100%;
    position: static;
  }
}
@media (max-height: 720.98px) and (max-width: 1040.98px) {
  /* with sp width */
  [id="modal-add-card"] {}
  [id="modal-add-card"] .modal-content .box-btn {
    width: 100%;
    position: static;
  }
}

/* card 横方向制御 */
@media (max-width: 1040.98px) {
  [id="modal-add-card"] .modal-content .box-btn .btn {
    flex: 1 1;
  }
}

/* card title */
@media (max-width: 1040.98px) {
    [id="modal-add-card"] .c-head__ttl .item--jp {
      font-size: 20px;
      font-weight: 500;
    }
}
