@charset "UTF-8";
/**
 * base
 * NOTE:
 *
 * input要素のスタイルの上書きが難しくなることを避ける目的で
 * input要素をbase.cssにおいて、input[type="submit"]のように書かないでください。
 * [type="submit"] や [type="checkbox"]など属性セレクタのみにしてください。
 * ※この記述ならば優先度が低いためクラス名1つで上書きが可能です。
 *
 * ラッパー、ボタン、フォームのレスポンシブの調整はvariable.cssで可能です。
 *
**/

/**
 * CSSリセット
 * 参照元：http: //meyerweb.com/eric/tools/css/reset/
**/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit
}



::-webkit-input-placeholder {
  color: var(--font-c-placeholder);
}
::-moz-placeholder {
  color: var(--font-c-placeholder);
}
:-ms-input-placeholder {
  color: var(--font-c-placeholder);
}
::-ms-input-placeholder {
  color: var(--font-c-placeholder);
}
::placeholder {
  color: var(--font-c-placeholder);
}

input.btn, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 16px
}
/* iOS */
[type="submit"], [type="button"] {
  border-radius: 0;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
[type="submit"]::-webkit-search-decoration, [type="button"]::-webkit-search-decoration {
  display: none
}
[type="submit"]::focus, [type="button"]::focus {
  outline-offset: -2px
}
label {
  cursor: pointer;
}

.select {
  display: inline-block;
  position: relative;
}
.select select {
  /*box-shadow: 0 2px 4px rgba(0, 0, 0, .1);*/
  box-shadow: none;
  border-radius: var(--btn-radius);
  border: 1px solid #e9eced;
  background: #fff;
  line-height: var(--btn-height);
  height: var(--btn-height);
  padding: 0 2.25em 0 1em;
  cursor: pointer;
}
.select select::-ms-expand {
  display: none;
}
.select:has(span) span::after,
.select::after {
  content: '\f0d7';
  display: block;
  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: 13px;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(0,-50%);
  pointer-events: none;
}
.select:has(span)::after {
  display: none;
}
@media screen and (max-width: 1040.98px) {
  .select select {
    font-size: 12px;
  }
}

option:disabled {
  background: var(--bg-c-disabled);
  color: rgba(0,0,0,0.13);
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  transition: none;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}


/**
 * 再定義
**/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  color: var(--font-c);
  font-family: var(--font-family-en);
  font-size: 15px;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
}
body > .wrap {
  overflow: hidden;
}
table {
  letter-spacing: 0;
  empty-cells: show;
}
tbody {
  position: unset;
}
table tr, table th, table td {
  empty-cells: show;
  transition: none;
  position: unset;
}
input, select, textarea {
  font-size: 90%;
  background: none;
  transition: none;
}
[type="checkbox"], [type="radio"] {
  accent-color: var(--font-c);
  width: 18px;
  height: 18px;
  margin: 1px 5px 0 0;
}
p {
  line-height: 1.65;
}
a {
  color: var(--text-link-c);
  text-decoration: underline;
  cursor: pointer;
  transition:
    box-shadow 0.2s ease,
    outline-color 0.2s ease,
    border-radius 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}
a:hover {
  color: var(--text-link-c-hover);
  cursor: pointer;
  opacity: 0.9;
}
a.active {
  color: var(--text-link-c-hover);
}
img {
  border: none;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  transition: none;
}
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* NOTE: ここにpositionは設定しないでください。 */
}

.cf::after,
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}


/**
 * font weight
**/
.fw--700 {
  font-weight: 700;
}


/**
 * font color
**/
.fc__color {
  color: var(--main-c)
}
.fc__black {
  color: var(--font-c)
}
.fc__red,
.fc__pink {
  color: var(--font-c-red);
}
.fc__red-alert {
  color: var(--red-alert);
}
.fc__blue {
  color: var(--font-c-blue);
}
/**
 * background color
**/
.bg__color {
  background: var(--bg-c-light);
}
.bg__gray {
  background: var(--bg-c-dark);
}


/**
 * c-link
**/
.c-link {}
.c-link.c-link--underline {
  color: var(--text-link-c-blue);
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}

/**
 * text align
**/
.u-ta-l {
  text-align: left;
}
.u-ta-c {
  text-align: center;
}
.u-ta-r {
  text-align: right;
}


/**
 * icon
 * NOTE: 色を網羅しているわけではなく、不足しているアイコンがあります。
**/
.c-icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1em;
  height: 1em;
  vertical-align: baseline;
  transform: translate(0,12.5%) scale(0.83);
}
.c-icon--close-circle-b {
  background-image: url("../images/btn-close-circle.svg");
}
.c-icon--arrows-rotate-g {
  background-image: url("../images/icon-rotate.svg");
}

.c-icon--bell-b {
  background-image: url("/common/images/icon-bell.svg");
}
.c-icon--chart-b {
  background-image: url("/common/images/icon-m-menu-chart.svg");
}
.c-icon--gear-b,
.c-icon--cog-b {
  background-image: url("/common/images/icon-m-menu-cog.svg");
}
.c-icon--card-b,
.c-icon--credit-b {
  background-image: url("/common/images/icon-m-menu-credit.svg");
}
.c-icon--history-b {
  background-image: url("/common/images/icon-m-menu-history.svg");
}
.c-icon--signout-b,
.c-icon--logoff-b {
  background-image: url("/common/images/icon-m-menu-signout.svg");
}

.c-icon--matching-blue {
  background-image: url("/common/images/icon-matching-c.svg");
}
.c-icon--matching-g {
  background-image: url("/common/images/icon-matching-g.svg");
}
.c-icon--matching-w {
  background-image: url("/common/images/icon-matching-w.svg");
}

.c-icon--message-blue {
  background-image: url("/common/images/icon-message-c.svg");
}
.c-icon--message-g {
  background-image: url("/common/images/icon-message-g.svg");
}
.c-icon--message-w {
  background-image: url("/common/images/icon-message-w.svg");
}

.c-icon--exclamation-o-b {
  background-image: url("/common/images/icon-exclamation-o-b.svg");
}



/**
 * display
**/
@media (min-width: 1041px) {
  .sp-disp,
  .sp_disp,
  .sp--disp {
    display: none !important;
  }
}
@media only screen and (max-width: 1040.98px) {
  .pc-disp,
  .pc_disp,
  .pc--disp {
    display: none !important;
  }
}


/**
 * section
**/
section {
  padding: var(--site-section-padding-block) 0;
}


/**
 * container
**/
.base_wrap,/* pbase移植用 */
.l-container {
  width: 100%;
  max-width: var(--basewrap-width);
  margin: 0 auto;
  padding: 0 var(--basewrap-padding-inline);
  position: relative;
}

.l-container--narrow-sp {}
@media screen and (max-width: 1436.98px) {
  .l-container {
    max-width: none;
  }
}
@media screen and (max-width: 1040.98px) {
  .l-container--narrow-sp {
    background: #fff;
    width: 100%;
    padding: 24px 16px;
  }
}

/**
 * display flex
**/
.flex,/* pbase移植用 */
.c-flex {
  display: flex;
}
.flex_wrap,/* pbase移植用 */
.c-flex--wrap {
  flex-wrap: wrap;
}
.c-flex--between {
  justify-content: space-between;
}

.flex_wrap {/* pbase移植用 */
  display: flex;
  justify-content: space-between;
}



/**
 * subpage-head
**/
.subpage-head {
  margin: 0 0 64px;
  padding: 0;
}
.subpage-head .c-head {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  min-height: 112px;
  position: relative;
}
.subpage-head .c-head__ttl {
  font-weight: 700;
  font-size: 38px;
  line-height: 1.5;
}
.subpage-head .c-head__txt {}
@media only screen and (max-width: 1040.98px) {
  .subpage-head .c-head {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 1040.98px) {
  .subpage-head .c-head__ttl {
    font-size: 20px;
  }
}



/**
 * TITLE
**/
.c-head {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.c-head.c-head--ff-serif {
  font-family: var(--font-family-serif);
}
.c-head--second {
  margin-top: 80px;
}
.c-head--center {
  align-items: center;
}
*+.c-head {
  margin-top: 40px;
}
@media only screen and (max-width: 1040.98px) {
  .c-head {
    margin-bottom: 20px;
  }
  .c-head--second {
    margin-top: 40px;
  }
  *+.c-head {
    margin-top: 20px;
  }
}

.c-head__logo {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: var(--font-c);
  width: 260px;
  margin-bottom: 40px;
  padding: 30px;
}

.c-head__ttl {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
.c-head__ttl .item--jp {
  display: block;
  font-size: 32px;
  font-weight: 700;
}
.c-head__ttl .item--en {
  display: block;
  color: #a5955f;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-family-en);
}
.c-head.c-head--ff-serif .item--jp {
  font-family: var(--font-family-serif);
}
.c-head.c-head--ff-serif .item--en {
  font-family: var(--font-family-serif);
}
@media only screen and (max-width: 1040.98px) {
  .c-head__ttl {
    font-size: 28px;
  }
  .c-head__ttl .item--jp {
    font-size: 28px;
  }
  .c-head__ttl .item--en {
    font-size: 16px;
  }
  .c-head.c-head--fs-swap-on-sp .c-head__ttl {
    font-size: 28px;
  }
  .c-head.c-head--fs-swap-on-sp .c-head__ttl .item--jp {
    font-size: 16px;
  }
  .c-head.c-head--fs-swap-on-sp .c-head__ttl .item--en {
    font-size: 28px;
  }
}

.c-head__ttl-link {
  display: inline-block;
  letter-spacing: -0.1ex;
  transform: scale(0.6, 1);
}
/* リードなどの説明文 */
.c-head__txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 15px;
}
@media only screen and (max-width: 1040.98px) {
  .c-head__txt {
    font-size: 12px;
  }
}

/* 注意書きなど */
.c-head__notes {
  color: var(--gray-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 15px;
}
@media only screen and (max-width: 1040.98px) {
  .c-head__notes {
    font-size: 12px;
  }
}



/**
 * alert
**/
.c-notice {
  background: var(--font-c);
  color: #fff;
  font-family: var(--font-family-gothic);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.7px;
  position: relative;
  z-index: 3;
  transition: background-color .2s ease-out;
}

/**
 * TOPページのみ固定
*/
.page-top .c-notice {
  background: rgba(34, 34, 34, 0.25);
  color: #fff;
  width: 100%;
  position: fixed;
  left: 0;
  top: var(--header-height);
  z-index: 10000;
}
.page-top [data-header].is--active~.c-notice {
  background: var(--font-c);
  color: #fff;
}
@media screen and (max-width: 1040px) {
    .c-notice {
    font-size: 12px;
    text-align: left;
  }
}

.c-notice__msg {
  padding: 10px 0;
}
@media screen and (max-width: 1040px) {
    .c-notice__msg {
    padding: 10px 12px;
  }
}
.c-notice__msg:not(:first-child) {
  padding-top: 0;
}

.c-notice a {
  color: #fff;
  text-decoration: underline;
}

.c-notice-body {
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 32px 24px;
}

.info-msg {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 0 8px;
  padding-top: 8px;
}
.info-msg:empty {
  display: none;
}


/**
 * tab group
 * NOTE: タブ機能や本文中のタブの見た目（グローバルの機能は別のクラスで、このクラスではありません）
**/
.c-tab-group {
  position: relative;
}

/* [type="checkbox"] */
.c-tab-group__switch {
  position: absolute;
  opacity: 0;
}

.c-tab-nav {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  border-radius: 4px;
  background: var(--bg-c-dark);
  margin: 0 0 32px;
  padding: 2px;
  gap: 2px;
}
/* tab off gray (label or link) */
.c-tab-nav__tab {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  background: transparent;
  color: var(--font-c);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  max-width: calc((100% - 2px) / 2);
  width: 100%;
  height: 32px;
  margin: 0;
  padding: 2px;
  gap: 2px;
}
/* tab on white (label or link) */
a.c-tab-nav__tab.is--active,
.c-tab-group__switch:nth-child(1):checked~.c-tab-nav>label.c-tab-nav__tab:nth-child(1),
.c-tab-group__switch:nth-child(2):checked~.c-tab-nav>label.c-tab-nav__tab:nth-child(2),
.c-tab-group__switch:nth-child(3):checked~.c-tab-nav>label.c-tab-nav__tab:nth-child(3),
.c-tab-group__switch:nth-child(4):checked~.c-tab-nav>label.c-tab-nav__tab:nth-child(4) {
  box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
}

.c-tab-group__content {}
.c-tab-group__item {
  display: none;
}
.c-tab-group__switch:nth-child(1):checked~.c-tab-group__content>.c-tab-group__item:nth-child(1),
.c-tab-group__switch:nth-child(2):checked~.c-tab-group__content>.c-tab-group__item:nth-child(2),
.c-tab-group__switch:nth-child(3):checked~.c-tab-group__content>.c-tab-group__item:nth-child(3),
.c-tab-group__switch:nth-child(4):checked~.c-tab-group__content>.c-tab-group__item:nth-child(4) {
  display: block;
}





/**
 * banner
**/
.c-banner {
  --c-bnr-gap: 40px;
}
@media screen and (max-width: 560.98px) {
  .c-banner {
    --c-bnr-gap: 0px;
  }
}

.c-banner__container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  padding: 20px var(--c-bnr-gap);
  gap: var(--c-bnr-gap);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 560.98px) {
  .c-banner__container {
    padding: 20px;
  }
}
.c-banner__container.l-container {
  display: block;
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: var(--basewrap-padding-inline);
  padding-bottom: 0;
}

.c-banner__item {
  display: block;
  max-width: 510px;
  max-height: 182px;
  margin-inline: auto;
}
@media screen and (max-width: 560.98px) {
  .c-banner__item {
    width: auto;
    height: auto;
  }
}

.c-banner__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-banner-slider {
  margin-inline: calc( var(--c-bnr-gap) * -0.5 );
}
.c-banner-slider .c-banner__item {
  margin-inline: auto;
  padding-inline: calc( var(--c-bnr-gap) * 0.5 );
}


/**
 * sns button
**/

.c-sns {}
*+.c-sns {
  margin-top: 40px;
}
.c-sns__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 546px) {
  .c-sns__ttl {
    font-size: 14px;
  }
}
.c-sns__ttl::before,
.c-sns__ttl::after {
  content: '';
  background: var(--gray-light);
  flex-grow: 1;
  /* 余白を分け与える */
  max-width: 230px;
  height: 1px;
}
.c-sns__ttl::before {
  margin-right: 20px;
  margin-left: 35px;
}
.c-sns__ttl::after {
  margin-left: 20px;
  margin-right: 35px;
}
.c-sns__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 160px;
  margin: 0 auto;
  padding: 32px 0 16px;
}
.c-sns__list a {
  display: block;
  width: 40px;
}
.c-sns__list img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
}



/**
 * button
**/
.btn {
  display: block;
  max-width: var(--btn-width);
  width: 100%;
  margin: var(--btn-margin-top) 0 0;
  position: relative;
}
.btn a, .btn [type="button"], .btn [type="submit"], .btn button, .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: 400;
  text-decoration: none;
  width: 100%;
  height: var(--btn-height);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}
.btn a::after {
  content: '';
  display: inline-block;
  display: none;
  border-top: 1px solid;
  border-right: 1px solid;
  width: 8px;
  height: 8px;
  margin-left: 1ex;
  transform: rotate(45deg);
}
.btn a:hover, .btn [type="button"]:hover, .btn [type="submit"]:hover, .btn button:hover, .btn > span:hover {
  box-shadow: var(--btn-shadow-hover);
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
}
.btn>*>i {
  margin-right: 1ex;
}
@media only screen and (max-width: 1040.98px) {
  .btn a, .btn [type="button"], .btn [type="submit"], .btn button, .btn > span {
    font-size: 14px;
  }
}


.btn--small {
  display: block;
  width: 100%;
  max-width: var(--btn-small-width);
  position: relative;
}
.btn--small a, .btn--small [type="button"], .btn--small [type="submit"], .btn--small button, .btn--small input, .btn--small > span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--btn-small-radius);
  border: 1px solid var(--main-c);
  background: #fff;
  color: var(--main-c);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  height: var(--btn-small-height);
  padding: 0 0.5em;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

/* btn middle always */
/* NOTE: 局所的なスタイル変更用（色などは記述禁止） */
.box-btn .btn.btn--middle-always,
.btn.btn--middle-always {
  max-width: 278px;
  width: 100%;
}
.btn--middle-always a, .btn--middle-always [type="button"], .btn--middle-always [type="submit"], .btn--middle-always button, .btn--middle-always > span {
  font-size: 14px;
  font-weight: 400;
  max-width: 278px;
  width: 100%;
  height: 56px;
}

/* btn half width always */
/* NOTE: 局所的なスタイル変更用（色などは記述禁止） */
.box-btn .btn.btn--half-always,
.btn.btn--half-always {
  max-width: none;
  width: 49%;
}
.btn--half-always a, .btn--half-always [type="button"], .btn--half-always [type="submit"], .btn--half-always button, .btn--half-always > span {
  max-width: none;
  width: 100%;
}

/* btn fw bold */
/* NOTE: 局所的なスタイル変更用（色などは記述禁止） */
.btn--fw-bold-always a, .btn--fw-bold-always [type="button"], .btn--fw-bold-always [type="submit"], .btn--fw-bold-always button, .btn--fw-bold-always > span {
  font-weight: 700;
}
/* btn low height */
/* NOTE: 局所的なスタイル変更用（色などは記述禁止） */
.btn--low-always.formset__btn a, .btn--low-always.formset__btn [type="button"], .btn--low-always.formset__btn [type="submit"], .btn--low-always.formset__btn button, .btn--low-always.formset__btn > span,
.btn--low-always a, .btn--low-always [type="button"], .btn--low-always [type="submit"], .btn--low-always button, .btn--low-always > span {
  font-size: 14px;
  height: 42px;
  min-height: 0;
}
@media only screen and (max-width: 1040.98px) {
  .btn--low-always.formset__btn a, .btn--low-always.formset__btn [type="button"], .btn--low-always.formset__btn [type="submit"], .btn--low-always.formset__btn button, .btn--low-always.formset__btn > span,
  .btn--low-always a, .btn--low-always [type="button"], .btn--low-always [type="submit"], .btn--low-always button, .btn--low-always > span {
    font-size: 12px;
  }
}


/* fav */
.btn--like a, .btn--like a:hover {
  border: 1px solid var(--font-c-red);
  background: #fff;
  color: var(--font-c-red);
}
.btn--like a::before {
  content: '';
  display: inline-block;
  background: url("../images/icon__btn--likeoff.png") center center / 100% no-repeat;
  width: 15px;
  height: 15px;
  position: relative;
  top: 0;
  right: 5px;
  transition: 0.2s;
}
.btn--like a:hover::before, .btn--likeoff a::before {
  background-image: url("../images/icon__btn--like.png");
}

/* chat */
.btn--message a {
  color: var(--main-c);
  background: #fff;
  border: 1px solid var(--main-c)
}
.btn--message a::before {
  content: '';
  display: inline-block;
  background: url("../images/icon__btn--message.png") center center / 100% no-repeat;
  width: 15px;
  height: 15px;
  position: relative;
  top: 0;
  right: 5px;
  transition: 0.2s;
}
.btn--message a:hover {
  background: #edf9ff;
}


/* button checkbox and radio */
.btn--checkbox {
  max-width: none;
  width: auto;
  margin: 0;
  position: relative;
  cursor: pointer;
}
.btn--checkbox [type="checkbox"],
.btn--checkbox [type="radio"] {
  position: absolute;
  opacity: 0;
}
.btn--checkbox>a,
.btn--checkbox>[type="submit"],
.btn--checkbox>[type="button"],
.btn--checkbox>button,
.btn--checkbox>span {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
  border-radius: var(--btn-height);
  border: solid 1px var(--main-c);
  background: #fff;
  color: var(--main-c);
}
.btn--checkbox>a:hover,
.btn--checkbox>[type="submit"]:hover,
.btn--checkbox>[type="button"]:hover,
.btn--checkbox>button:hover,
.btn--checkbox>span:hover {
  border: solid 1px var(--main-c);
  background: #fff;
  color: var(--main-c);
  opacity: 0.7;
}
.btn--checkbox>a::after,
.btn--checkbox>[type="submit"]::after,
.btn--checkbox>[type="button"]::after,
.btn--checkbox>button::after,
.btn--checkbox>span::after {
  content: '\f00c';
  display: block;
  font-size: 13px;
  /* NOTE: アイコンの大きさはfont-sizeで調整 */
  width: 1.5em;
  height: auto;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 1em;
  right: auto;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
  transform-origin: center center;
  opacity: 0;
  transition:
    opacity 0.8s ease;
}
/* checked */
.btn--checkbox:has(:checked)>a,
.btn--checkbox:has(:checked)>[type="submit"],
.btn--checkbox:has(:checked)>[type="button"],
.btn--checkbox:has(:checked)>button,
.btn--checkbox:has(:checked)>span {
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
}
.btn--checkbox:has(:checked)>a::after,
.btn--checkbox:has(:checked)>[type="submit"]::after,
.btn--checkbox:has(:checked)>[type="button"]::after,
.btn--checkbox:has(:checked)>button::after,
.btn--checkbox:has(:checked)>span::after {
  background: #fff;
  color: var(--main-c);
  opacity: 1;
}


/* button toggle */
.btn--toggle {
  --btn-padding: 2px;
  --btn-icon-size: 32px;
  max-width: none;
  width: auto;
  margin: 0;
  position: relative;
  cursor: pointer;
}
.btn--toggle [type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.btn--toggle>a,
.btn--toggle>[type="submit"],
.btn--toggle>[type="button"],
.btn--toggle>button,
.btn--toggle>span {
  /*box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);*/
  box-shadow: none;
  border-radius: 2em;
  border: solid 1px var(--gray);
  background: var(--gray);
  color: var(--main-c);
  height: var(--btn-icon-size);
  transition:
    border-color 0.6s ease,
    background-color 0.6s ease,
    color 0.6s ease,
    opacity 0.6s ease;
}
.btn--toggle>a:hover,
.btn--toggle>[type="submit"]:hover,
.btn--toggle>[type="button"]:hover,
.btn--toggle>button:hover,
.btn--toggle>span:hover {
  border: solid 1px var(--gray);
  background: var(--gray);
  color: var(--main-c);
  opacity: 0.7;
}
.btn--toggle>a::after,
.btn--toggle>[type="submit"]::after,
.btn--toggle>[type="button"]::after,
.btn--toggle>button::after,
.btn--toggle>span::after {
  content: '';
  display: block;
  box-shadow: 0 6px 4px -2px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--main-c);
  width: calc( var(--btn-icon-size) - var(--btn-padding) * 2 );
  height: auto;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: var(--btn-padding);
  right: auto;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
  transform-origin: center center;
  transition: left 0.6s ease;
}
/* on */
.btn--toggle:has(:checked)>a,
.btn--toggle:has(:checked)>[type="submit"],
.btn--toggle:has(:checked)>[type="button"],
.btn--toggle:has(:checked)>button,
.btn--toggle:has(:checked)>span,
.btn--toggle.on>a,
.btn--toggle.on>[type="submit"],
.btn--toggle.on>[type="button"],
.btn--toggle.on>button,
.btn--toggle.on>span {
  border: solid 1px var(--blue-ui);
  background: var(--blue-ui);
  color: #fff;
}
.btn--toggle:has(:checked)>a::after,
.btn--toggle:has(:checked)>[type="submit"]::after,
.btn--toggle:has(:checked)>[type="button"]::after,
.btn--toggle:has(:checked)>button::after,
.btn--toggle:has(:checked)>span::after,
.btn--toggle.on>a::after,
.btn--toggle.on>[type="submit"]::after,
.btn--toggle.on>[type="button"]::after,
.btn--toggle.on>button::after,
.btn--toggle.on>span::after {
  background: #fff;
  color: var(--main-c);
  position: absolute;
  left: calc( 100% - var(--btn-icon-size) + var(--btn-padding) );
  right: auto;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
  transform-origin: center center;
}
/* off */
.btn--toggle.off>a,
.btn--toggle.off>[type="submit"],
.btn--toggle.off>[type="button"],
.btn--toggle.off>button,
.btn--toggle.off>span {
  border: 1px solid var(--gray);
  background: var(--gray-light);
  color: #fff;
}
.btn--toggle.off>a::after,
.btn--toggle.off>[type="submit"]::after,
.btn--toggle.off>[type="button"]::after,
.btn--toggle.off>button::after,
.btn--toggle.off>span::after {
  background: #fff;
  color: var(--gray);
  position: absolute;
  left: var(--btn-padding);
  right: auto;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
  transform-origin: center center;
}


/**
 * button ghost style
**/
.btn--ghost {}
.btn--ghost a, .btn--ghost [type="button"], .btn--ghost [type="submit"], .btn--ghost button, .btn--ghost > span {
  box-shadow: none;
  border-radius: 0;
  border-width: 2px !important;
  font-weight: 700;
}
.btn--ghost a::after {
  display: none;
}


/**
 * button color
**/
/* default */
.btn--default {}
.btn--default a, .btn--default [type="button"], .btn--default [type="submit"], .btn--default button, .btn--default > span {
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
}
.btn--default a:hover, .btn--default [type="button"]:hover, .btn--default [type="submit"]:hover, .btn--default button:hover, .btn--default > span:hover {
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
}

/* plain */
.btn--plain {}
.btn--plain a, .btn--plain [type="button"], .btn--plain [type="submit"], .btn--plain button, .btn--plain > span {
  border: solid 1px var(--main-c);
  background: #fff;
  color: var(--main-c);
}
.btn--plain a:hover, .btn--plain [type="button"]:hover, .btn--plain [type="submit"]:hover, .btn--plain button:hover, .btn--plain > span:hover {
  border: solid 1px var(--main-c);
  background: #fff;
  color: var(--main-c);
}

/* white */
.btn--white {}
.btn--white a, .btn--white [type="button"], .btn--white [type="submit"], .btn--white button, .btn--white > span {
  box-shadow: var(--btn-shadow);
  border: solid 1px rgba(0,0,0,0.06);
  background: #fff;
  color: var(--main-c);
}
.btn--white a:hover, .btn--white [type="button"]:hover, .btn--white [type="submit"]:hover, .btn--white button:hover, .btn--white > span:hover {
  box-shadow: var(--btn-shadow-hover);
  border: solid 1px rgba(0,0,0,0.06);
  background: #fff;
  color: var(--main-c);
}

/* disabled */
.btn--disabled {}
.btn--disabled a, .btn--disabled [type="button"], .btn--disabled [type="submit"], .btn--disabled button, .btn--disabled > span {
  box-shadow: none;
  border: solid 1px var(--bg-c-disabled);
  background: var(--bg-c-disabled);
  color: var(--font-c-gray-light);
}
.btn--disabled a:hover, .btn--disabled [type="button"]:hover, .btn--disabled [type="submit"]:hover, .btn--disabled button:hover, .btn--disabled > span:hover {
  box-shadow: none;
  border: solid 1px var(--bg-c-disabled);
  background: var(--bg-c-disabled);
  color: var(--font-c-gray-light);
}

/* disabled (formがvalidではない場合) */
.jquery-validate--form-is-not-valid .btn {}
.jquery-validate--form-is-not-valid .btn [type="submit"] {
  box-shadow: none;
  border: solid 1px var(--bg-c-disabled);
  background: var(--bg-c-disabled);
  color: var(--font-c-gray-light);
}
.jquery-validate--form-is-not-valid .btn [type="submit"]:hover {
  box-shadow: none;
  border: solid 1px var(--bg-c-disabled);
  background: var(--bg-c-disabled);
  color: var(--font-c-gray-light);
}

/* disabled (要素がdisabled) */
.btn>[disabled] {
  box-shadow: none;
  border: solid 1px var(--bg-c-disabled);
  background: var(--bg-c-disabled);
  color: var(--font-c-gray-light);
  cursor: default;
}
.btn>[disabled]:hover {
  box-shadow: none;
  border: solid 1px var(--bg-c-disabled);
  background: var(--bg-c-disabled);
  color: var(--font-c-gray-light);
}



/** ボタン上部・下部テキスト **/
.btn-over-txt {
  margin-bottom: 20px;
  text-align: center;
}
.btn-under-txt {
  margin-top: 20px;
  text-align: center;
}
.btn-over-txt a,
.btn-under-txt a {
  color: var(--main-c);
}
@media only screen and (max-width: 1040.98px) {}

/** 横並びボタン **/
/* NOTE: .btnBoxは下位互換で、 .box-btnの使用を推奨 */
.box-btn,
.btnBox {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  align-content: center;
  align-items: center;
  max-width: var(--btn-wrapper-width);
  width: 100%;
  margin-inline: auto;
  gap: var(--btn-wrapper-gap);
}
.box-btn>.btn-over-txt,
.box-btn>.btn-under-txt {
  width: 100%;
  margin: 0;
  /* NOTE: margin-topはgapに任せる */
}

.box-btn .btn,
.btnBox .btn {
  width: calc( (100% - var(--btn-wrapper-gap)) / 2 );/* 2col */
  max-width: none;
}
.box-btn .btn:only-child,
.btnBox .btn:only-child {
  margin-inline: auto;
}
.box-btn .btn--small,
.btnBox .btn--small {
  width: calc( (100% - var(--btn-wrapper-gap)*3) / 4 );/* 4col */
}
.box-btn .btn--small:only-child,
.btnBox .btn--small:only-child {
  margin-inline: auto;
}
@media only screen and (max-width: 1040.98px) {}


/**
 * swipe
**/
@media only screen and (max-width: 1040.98px) {
  .swipe {
    width: auto;
    padding: 10px;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto
  }
}



/**
 * formset
 * NOTE: 本サイトでは .formset ラッパーは必須です。
**/


/* formset css value */
.formset {
  --formset-ttl-width: 112px;
  --formset-gap: 32px;
  --formset-item-mt: 24px;
  --formset-input-mt: 4px;
}
@media only screen and (max-width: 959.98px) {
  .formset {
    --formset-ttl-width: 112px;
    --formset-gap: 20px;
  }
}
@media screen and (max-width: 1040.98px) {
  .formset {
    --formset-ttl-width: 112px;
    --formset-gap: 12px;
    --formset-item-mt: 20px;
    --formset-input-mt: 4px;
  }
}
@media screen and (max-width: 560.98px) {
  .formset {
    --formset-ttl-width: 112px;
    --formset-gap: 12px;
    --formset-item-mt: 20px;
  }
  .modal-content .formset {
    --formset-ttl-width: 80px;
    --formset-gap: 12px;
    --formset-item-mt: 20px;
  }
}


/* formset ラッパー */
@media screen and (min-width: 1041px) {
  .formset {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    border-radius: var(--btn-radius);
    border-radius: 0;
    border: 1px solid var(--gray-light);
    background: #fff;
    max-width: 640px;
    margin: 0 auto 32px;
    padding: 40px;
  }
  *+.formset {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1040.98px) {
  .formset {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
  }
  *+.formset {
    margin-top: var(--formset-item-mt);
  }
}


/* formset after .btn */
.formset+.btn {
  max-width: 640px;
  margin: 40px auto 0;
  padding: 0;
}
@media screen and (max-width: 1040.98px) {
  .formset+.btn {
    max-width: 640px;
    margin: var(--formset-item-mt) auto 0;
    padding: 0;
  }
}


/* formset box */
/* NOTE: フォームのグループ分け（使用しない場合あり） */
.formset__box {
  margin-bottom: 32px;
  padding: 12px 20px 20px;
}
@media only screen and (max-width: 959.98px) {
  .formset__box {
    margin-bottom: 16px;
    padding: 12px 0 20px;
  }
}
@media screen and (max-width: 1040.98px) {
  .formset__box {
    margin-bottom: 16px;
    padding: 12px 0 20px;
  }
}


/* formset h2 */
/* NOTE: h2に相当する見出しで横100％の領域（使用しない場合あり・タグにh2要素を使わなくてもOK） */
.formset__h2 {
  flex: 1 100%;
  border-bottom: 1px solid var(--main-c);
  border-radius: 0;
  font-size: 18px;
  letter-spacing: 0.05ex;
  text-decoration: none;
  height: 32px;
  margin: 20px 20px 0;
  position: relative;
}
.formset__h2.item--no-border {
  border: none;
}
/* NOTE: ボーダーに重ねるボーダーの色違いアクセント */
/*.formset__h2::before {
  content: '';
  display: block;
  border-bottom: 1px solid #ccc;
  width: 80px;
  margin-bottom: -1px;
  position: absolute;
  bottom: 0;
}*/

@media screen and (max-width: 1040.98px) {
  .formset__h2 {
    margin: 12px 0 0;
  }
}

/* formset h2 has button */
.formset__h2:has(.formset__ttl-warning),
.formset__h2:has(.formset__must),
.formset__h2:has(.formset__any),
.formset__h2:has(.btn) {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.formset__h2 .btn {
  display: block;
  max-width: none;
  min-width: 104px;
  width: auto;
  margin: 0 0 0 auto;
}
.formset__h2 .btn>* {
  font-size: 14px;
  width: auto;
  height: 40px;
}


/* formset h2 is accordion title */
.formset__h2[data-acc-ttl] {
  position: relative;
  transition: background 0.2s ease;
  cursor: pointer;
}
.formset__h2[data-acc-ttl]:hover {
  background: #f1f1f1;
}
.formset__h2[data-acc-ttl]::after {
  content: '\f0d7';
  display: var(--fa-display, inline-block);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #ccc;
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
  transform-origin: right center;
  transition: all 0.2s ease;
  pointer-events: none;
}
.formset__h2.is--active[data-acc-ttl]::after {
  border: 1px solid var(--main-c);
  background: var(--main-c);
  color: #fff;
  transform: translate(0, -50%) scaleY(-1);
}


/* formset lead */
.formset__lead {
  text-align: center;
}
.formset__lead.u-ta-l {
  text-align: left;
}
.formset__lead.u-ta-c {
  text-align: center;
}
.formset__lead.u-ta-r {
  text-align: right;
}
.formset--ff-serif .formset__lead {
  font-family: var(--font-family-serif);
}
*+.formset__lead {
  margin-top: var(--formset-item-mt);
}
.formset__lead>*+p {
  margin-top: 1em;
}


/* formset item */
/* NOTE: タイトルと入力部品をラップするもの */
.formset__item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
  gap: var(--formset-gap);
}
*+.formset__item {
  margin-top: var(--formset-item-mt);
}
@media screen and (max-width: 1040.98px) {
  .formset__item {
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }
}
@media screen and (max-width: 560.98px) {
  .formset__item {
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }
}


/* formset ttl, formset input  */
/* タイトル */
.formset__ttl {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  color: var(--main-c);
  font-feature-settings: 'palt';
  letter-spacing: 0.05ex;
  min-width: var(--formset-ttl-width);
  padding: 0 0 20px;
}
.formset--ff-serif .formset__ttl {
  font-family: var(--font-family-serif);
}
/* タイトル挿入用ラベル要素 */
/* NOTE: 必ずlabelでタイトルをラップしてください。（ここでのlabelはfor属性は基本的に不要） */
.formset__ttl > label {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-feature-settings: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  cursor: inherit;
}
/* 必須マーク */
.formset__must {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-radius);
  border-radius: 0;
  background: var(--red-alert);
  color: #fff;
  font-size: 11px;
  line-height: 1.25;
  width: fit-content;
  height: 20px;
  margin: 0 0 0 auto;
  padding: 0 1ex;
}

/* 任意マーク */
.formset__any {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-radius);
  border-radius: 0;
  background: var(--gray-light);
  color: var(--gray-dark);
  font-size: 11px;
  line-height: 1.25;
  width: fit-content;
  height: 20px;
  margin: 0 0 0 2ex;
  padding: 0 1ex;
}


/* 警告 */
.formset__ttl-warning {
  color: var(--red-alert);
  font-size: 11px;
  font-weight: 400;
  margin: 0 0 0 auto;
}
.formset__any+.formset__ttl-warning,
.formset__must+.formset__ttl-warning {
  margin-left: 8px;
}
.formset__ttl-warning+.formset__any,
.formset__ttl-warning+.formset__must {
  margin-left: 8px;
}

/* 入力部品をラップするもの */
.formset__input {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  /* NOTE: 上下中央 */
  width: 100%;
  /* NOTE: タイトルなければ横100%、複数あれば均等配置になります */
  padding: 0 0 20px;
}
@media screen and (max-width: 1040.98px) {
  .formset__ttl,
  .formset__input {
    width: 100%;
    padding: 0;
  }
  .formset__ttl {
    flex-flow: row nowrap;
  }
  .formset__ttl > label+* {
    margin-left: auto;
  }
}
@media screen and (max-width: 560.98px) {
  .modal-content .formset__ttl {
    min-width: var(--formset-ttl-width);
    width: auto;
  }
  .modal-content .formset__input {
    width: 100%;
  }
}


/* 入力部品をラップするもの（flex-wrapをwrapさせる場合） */
.formset__input:has(p.formset__notes) {
  flex-flow: row wrap;
}
@media screen and (min-width: 1041px) {
  /* NOTE: スマホ限定なし、もしくはただの.item--flex-breakの場合 */
  .formset__input:has(.item--flex-break:not(.sp--disp)) {
    flex-flow: row wrap;
  }
  /**
   * NOTE:
   * ただし、.item--flex-break.pc--dispと.item--flex-break.sp--dispが
   * .formset__inputに混在の場合には常にwrapします
  **/
}
@media screen and (max-width: 1040.98px) {
  /* NOTE: PC限定なし、もしくはただの.item--flex-breakの場合 */
  .formset__input:has(.item--flex-break:not(.pc--disp)) {
    flex-flow: row wrap;
  }
  /**
   * NOTE:
   * ただし、.item--flex-break.pc--dispと.item--flex-break.sp--dispが
   * .formset__inputに混在の場合には常にwrapします
  **/
}


.formset__input img {
  border-radius: var(--btn-radius);
  width: 180px;
  height: auto;
  margin-bottom: 12px;
  margin-right: 12px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.formset__input [src*="s.gif"] {
  border: solid 1px var(--gray-light);
}
@media screen and (max-width: 1040.98px) {
  .formset__input img {
    width: 120px;
    height: auto;
  }
}

.formset__input>ul {
  margin: var(--formset-input-mt) 0;
}
.formset__input li {
  display: inline-flex;
  margin: 0 var(--formset-input-mt) var(--formset-input-mt) 0;
  padding: 4px;
}

/* formset__ul */
.formset__input .formset__ul,
.formset__ul,
.formset__input .formset__ul>ul,
.formset__ul>ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.formset__input .formset__ul,
.formset__ul {
  margin: var(--formset-input-mt) 0;
}
.formset__input .formset__ul:has(ul),
.formset__ul:has(ul) {
  display: block;
}
.formset__input .formset__ul>ul,
.formset__ul>ul {
  margin: 0;
}
.formset__input .formset__ul li,
.formset__ul li {
  display: flex;
  margin: 0;
  padding: 4px;
}



.input-select,
.formset__input [type="text"],
.formset__input [type="email"],
.formset__input [type="tel"],
.formset__input [type="password"],
.formset__input [type="datetime-local"],
.formset__input [type="date"],
.formset__input [type="time"],
.formset__input [type="month"],
.formset__input [type="week"],
.formset__input [type="search"],
.formset__input [type="number"],
textarea {
  border-radius: var(--site-input-radius);
  border: 1px solid var(--gray-light);
  background: #fff;
  font-size: var(--site-input-fs);
  /* フォーム入力時のの自動拡大を防ぐため必ず --site-input-fs変数を使用してfont-sizeを指定し、16px以下にしないように注意してください。 */
  /*max-width: 768px;*/
  width: 100%;
  height: var(--site-input-height);
  padding: 0 1em;
  margin: var(--formset-input-mt) 0;
}

@media screen and (max-width: 1040.98px) {
  .formset__input .item--sp-full-width {
    max-width: none;
    width: 100%;
  }
}


.input-select {
  display: inline-block;
  width: auto;
  height: var(--site-input-height);
}
.input-select.select {
  display: inline-block;
  width: auto;
  height: var(--site-input-height);
  padding: 0;
}
@media screen and (max-width: 1040.98px) {
  .input-select.select:has([name="expire_month"]) {
    width: calc( (100vw - 16px * 2 - 2em - 2ex) / 2 );
  }
  .input-select.select:has([name="expire_year"]) {
    width: calc( (100vw - 16px * 2 - 2em - 2ex) / 2 );
  }
}

.input-select.select select {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: inherit;
  line-height: var(--site-input-height);
  width: 100%;
  height: var(--site-input-height);
  margin: 0;
  padding: 0 2em 0 1em;
}
.input-select.input-select--full {
  display: block;
  width: 100%;
}
.input-select.input-select--full select {
  width: 100%;
}
.input-select.item--sp-full-width {
  display: block;
  width: 100%;
}
.input-select.item--sp-full-width select {
  width: 100%;
}

.formset__input [type="datetime-local"],
.formset__input [type="date"],
.formset__input [type="month"],
.formset__input [type="week"],
.formset__input [type="number"] {
  max-width: 160px;
  width: auto;
}

.formset__input .input-time,
.formset__input [type="time"] {
  max-width: 6em;
  max-width: 160px;
  width: auto;
}


/* ラッパー付きパスワード */
.formset__input .input-password:has([type="text"]),
.formset__input .input-password:has([type="password"]) {
  overflow: hidden;
  padding: 0;
  position: relative;
}
.formset__input .input-password>[type="text"],
.formset__input .input-password>[type="password"] {
  border-radius: inherit;
  border: none;
  background: transparent;
  font-size: inherit;
  max-width: none;
  width: 100%;
  height: 100%;
  padding: 0 1.5em 0 1em;
  margin: 0;
  position: relative;
  z-index: 1;
}
.formset__input .input-password>[type="button"] {
  color: var(--gray);
  position: absolute;
  z-index: 2;
  right: 4px;
  top: 50%;
  transform: translate(0,-50%);
}
.formset__input .input-password>[type="button"]::before {
  content: '\f06e';
  display: var(--fa-display, inline-block);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  color: inherit;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
}
.formset__input .input-password.is--show>[type="button"]::before {
  content: '\f070';
}

.formset__input textarea {
  line-height: 1.55;
  max-width: none;
  height: 120px;
  padding: 15px;
}

.formset__input .formset__calendar,
.formset__calendar {
  max-width: 160px;
}

.formset__input .formset__gap,
.formset__gap,
.formset__input .formset__wage,
.formset__wage {
  max-width: 160px;
}

.formset__input .formset__country,
.formset__country {
  max-width: 13ex;
  overflow: hidden;
}
@media screen and (max-width: 479.98px) {
  .formset__input:has(.formset__country) {
    flex-flow: row wrap;
    justify-content: center;
  }
  .formset__input .formset__country,
  .formset__country {
    width: 13ex;
  }
  .formset__input .formset__country~[name="phone_number"],
  .formset__country~[name="phone_number"] {
    width: calc( 100% - 14ex - var(--site-input-gap) );
  }
}


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

  .input-select,
  .formset__input [type="text"],
  .formset__input [type="email"],
  .formset__input [type="tel"],
  .formset__input [type="password"],
  .formset__input [type="datetime-local"],
  .formset__input [type="date"],
  .formset__input [type="time"],
  .formset__input [type="month"],
  .formset__input [type="week"],
  .formset__input [type="search"],
  .formset__input [type="number"],
  .formset__input textarea {
    font-size: var(--site-input-fs);
    /* フォーム入力時のの自動拡大を防ぐため必ず --site-input-fs変数を使用してfont-sizeを指定し、16px以下にしないように注意してください。 */
    padding-inline: 1em;
  }

  .formset__input ul li {
    padding: 2px 0;
  }

  .input-select.select select {
    font-size: var(--site-input-fs);
    /* フォーム入力時のの自動拡大を防ぐため必ず --site-input-fs変数を使用してfont-sizeを指定し、16px以下にしないように注意してください。 */
  }

  .formset__input .input-time,
  .formset__input [type="time"] {
    max-width: calc( ( 100vw - var(--basewrap-padding-inline) * 4 - 6em ) / 2 );
  }

  .formset__input .formset__calendar,
  .formset__calendar {
    max-width: 160px;
  }
  .formset__input .formset__gap,
  .formset__gap {
    max-width: calc( ( 100vw - var(--basewrap-padding-inline) * 4 - 6em ) / 2 );
  }
  .formset__input .formset__wage,
  .formset__wage {
    max-width: calc( ( 100vw - var(--basewrap-padding-inline) * 4 - 6em ) / 2 );
  }
}


/* 決定ボタンやキャンセルボタン、戻るボタンなど */
/* NOTE: ただし、複数ボタンを配置する場合は、以下のように.box-btnを使ってください。 */
/*
<div class="formset">
  <div class="formset__item">
    <div class="formset__ttl"><label></label></div>
    <div class="formset__input"></div>
  </div>
  <div class="box-btn">
    <div class="btn btn--main-fill">
      <button type="button">登録する</button>
    </div>
    <div class="btn btn--main">
      <button type="button">削除する</button>
    </div>
  </div>
</div>
*/
.formset__btn {
  max-width: 100%;
  min-width: 256px;
  width: fit-content;
  margin-inline: auto;
}
.formset__btn.formset__btn--center {
  display: flex;
  justify-content: center;
  margin-inline: auto;
}
.formset__btn+.formset__btn {
  margin-top: 1em;
}
.formset__btn>[type="button"],
.formset__btn>[type="submit"]{
  /* NOTE: line-height, white-space, height, min-height以外の記述は禁止（不具合がでます） */
  line-height: 1.25;
  white-space: normal;
  height: auto;
  min-height: var(--btn-height);
}

.formset__btn--back {
  margin-top: 10px;
}
.formset__btn--back button {
  border: 1px solid var(--main-c);
  background: #fff;
  color: var(--main-c);
}
.formset__btn--back button:hover {
  background: #edf9ff;
}


/* type file */
.formset__input [type="file"] {
  border-radius: var(--btn-radius);
  background: rgba(0, 0, 0, 0.04);
  color: var(--gray);
  min-width: 280px;
  margin: var(--formset-input-mt) 0;
  padding: 6px 10px 6px 6px;
}
.formset__input [type="file"]::file-selector-button {
  border-radius: var(--btn-radius);
  border: 1px solid var(--gray-light);
  background: #fff;
  color: var(--font-c);
  font-size: 16px;
  width: auto;
  height: var(--site-input-height);
  margin: 0 8px 0 0;
  padding: 0 0.5em;
}
.formset__file-delete {
  display: block;
  margin: var(--formset-input-mt) 0;
}
.txt-delete {}
[type="radio"]+.txt-delete,
[type="checkbox"]+.txt-delete {
  display: inline-block;
  transform: translate(0, -3px);
}


/* 郵便番号 */
.formset__input .input-zip {
  max-width: 14ex;
}

/* break */
.item--flex-break {
  width: 100%;
}
@media screen and (min-width: 1041px) {
  .item--flex-break.sp--disp+* {
    margin-left: var(--site-input-gap);
  }
}
@media screen and (max-width: 1040.98px) {
  .item--flex-break.pc--disp+* {
    margin-left: var(--site-input-gap);
  }
}


/* 単位 */
.item--unit {
  white-space: nowrap;
}
.formset__calc-total+.item--unit,
.input-select+.item--unit,
.formset__input [type="text"]+.item--unit,
.formset__input [type="email"]+.item--unit,
.formset__input [type="tel"]+.item--unit,
.formset__input [type="password"]+.item--unit,
.formset__input [type="date"]+.item--unit,
.formset__input [type="datetime-local"]+.item--unit,
.formset__input [type="time"]+.item--unit,
.formset__input [type="month"]+.item--unit,
.formset__input [type="week"]+.item--unit,
.formset__input [type="search"]+.item--unit,
.formset__input [type="number"]+.item--unit {
  /* NOTE: margin-left以外を記述すると不具合が出ます */
  margin-left: var(--site-input-gap);
}

/* セパレータ（～、＋などの記号） */
.item--sep {
  white-space: nowrap;
}
.formset__calc-total+.item--sep,
.input-select+.item--sep,
.formset__input [type="text"]+.item--sep,
.formset__input [type="email"]+.item--sep,
.formset__input [type="tel"]+.item--sep,
.formset__input [type="password"]+.item--sep,
.formset__input [type="date"]+.item--sep,
.formset__input [type="datetime-local"]+.item--sep,
.formset__input [type="time"]+.item--sep,
.formset__input [type="month"]+.item--sep,
.formset__input [type="week"]+.item--sep,
.formset__input [type="search"]+.item--sep,
.formset__input [type="number"]+.item--sep {
  /* NOTE: margin-left以外を記述すると不具合が出ます */
  margin-left: var(--site-input-gap);
}

.item--sep+.formset__calc-total,
.item--sep+.input-select,
.formset__input .item--sep+[type="text"],
.formset__input .item--sep+[type="email"],
.formset__input .item--sep+[type="tel"],
.formset__input .item--sep+[type="password"],
.formset__input .item--sep+[type="date"],
.formset__input .item--sep+[type="datetime-local"],
.formset__input .item--sep+[type="time"],
.formset__input .item--sep+[type="month"],
.formset__input .item--sep+[type="week"],
.formset__input .item--sep+[type="search"],
.formset__input .item--sep+[type="number"] {
  /* NOTE: margin-left以外を記述すると不具合が出ます */
  margin-left: var(--site-input-gap);
}


/* ちょっとしたラベル */
.formset__input .item--label {
  display: inline-block;
  font-size: inherit;
  min-width: 64px;
}
.item--label+.formset__calc-total,
.item--label+.input-select,
.formset__input .item--label+[type="text"],
.formset__input .item--label+[type="email"],
.formset__input .item--label+[type="tel"],
.formset__input .item--label+[type="password"],
.formset__input .item--label+[type="date"],
.formset__input .item--label+[type="datetime-local"],
.formset__input .item--label+[type="time"],
.formset__input .item--label+[type="month"],
.formset__input .item--label+[type="week"],
.formset__input .item--label+[type="search"],
.formset__input .item--label+[type="number"] {
  /* NOTE: margin-left以外を記述すると不具合が出ます */
  margin-left: var(--site-input-gap);
}
*+.item--label {
  margin-left: var(--site-input-gap);
}
@media (min-width: 1041px) {
  /* 改行後 */
  .item--flex-break:not(.sp--disp)+.item--label {
    margin-left: 0;
  }
}
@media (max-width: 1040.98px) {
  .formset__input .item--label {
    min-width: 64px;
  }

  .formset__input .item--label+[type="date"] {
    width: calc(100% - 80px);
  }

  /* 改行後 */
  .item--flex-break:not(.pc--disp)+.item--label {
    margin-left: 0;
  }
}


/* 合計金額の表示領域 */
.formset__calc-total {
  display: inline-block;
  border-bottom: solid 1px;
  font-size: 20px;
  font-weight: 700;
  font-feature-settings: 'palt';
  letter-spacing: 0.05ex;
  line-height: 1;
  text-align: right;
  min-width: var(--formset-ttl-width);
  width: fit-content;
  padding: 0 0 4px;
}
.formset__calc-total.item--tight {
  display: inline-block;
  min-width: 0;
  margin: var(--formset-input-mt) 0 0;
  padding: 0 0 4px 1ex;
}
@media (max-width: 1040.98px) {
  .formset__calc-total.item--tight {
    /*margin-left: auto;*/
  }
}


/* 注釈 */
.formset__notes {
  color: var(--gray-dark);
  font-size: 13px;
  font-weight: 400;
  font-feature-settings: 'palt';
  letter-spacing: 0.05ex;
  line-height: 1.4;
  width: auto;
}
p.formset__notes {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  width: 100%;
  gap: 0.75ex;
}
.formset__ttl .formset__notes {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-feature-settings: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  width: 100%;
  cursor: inherit;
}
.formset__input p.formset__notes {
  margin-top: var(--formset-input-mt);
}

.formset__calc-total+.formset__notes,
.input-select+.formset__notes,
.formset__input [type="text"]+.formset__notes,
.formset__input [type="email"]+.formset__notes,
.formset__input [type="tel"]+.formset__notes,
.formset__input [type="password"]+.formset__notes,
.formset__input [type="date"]+.formset__notes,
.formset__input [type="datetime-local"]+.formset__notes,
.formset__input [type="time"]+.formset__notes,
.formset__input [type="month"]+.formset__notes,
.formset__input [type="week"]+.formset__notes,
.formset__input [type="search"]+.formset__notes,
.formset__input [type="number"]+.formset__notes {
  /* NOTE: margin-left以外を記述すると不具合が出ます */
  margin-left: var(--site-input-gap);
}
.formset__calc-total+p.formset__notes,
.input-select+p.formset__notes,
.formset__input [type]+p.formset__notes {
  /* NOTE: margin-left以外を記述すると不具合が出ます */
  margin-left: 0;
}
@media (max-width: 1040.98px) {
  .formset__notes {
    font-size: 12px;
  }
  .formset__ttl .formset__notes {
    width: auto;
  }
}


/* 入力隣の検索するボタンなど .btnが必要 */
.formset__btn-inline.btn {
  min-width: 144px;
  max-width: none;
  width: auto;
  margin: 0;
}
.formset__btn-inline.btn>* {
  white-space: nowrap;
}
.formset__calc-total+.formset__btn-inline.btn,
.input-select+.formset__btn-inline.btn,
.formset__input [type="text"]+.formset__btn-inline.btn,
.formset__input [type="email"]+.formset__btn-inline.btn,
.formset__input [type="tel"]+.formset__btn-inline.btn,
.formset__input [type="password"]+.formset__btn-inline.btn,
.formset__input [type="date"]+.formset__btn-inline.btn,
.formset__input [type="datetime-local"]+.formset__btn-inline.btn,
.formset__input [type="time"]+.formset__btn-inline.btn,
.formset__input [type="month"]+.formset__btn-inline.btn,
.formset__input [type="week"]+.formset__btn-inline.btn,
.formset__input [type="search"]+.formset__btn-inline.btn,
.formset__input [type="number"]+.formset__btn-inline.btn {
  /* NOTE: margin-left以外を記述すると不具合が出ます */
  margin-left: var(--site-input-gap);
}
@media screen and (max-width: 560.98px) {
  .formset__btn-inline.btn {
    min-width: 96px;
  }
}


/* formset 後方itemとの間に余白を設ける */
/* NOTE: 改行時にも対応するため、スタイルはセレクタを指定した後方の要素に必ず当てる */
.formset__input .item--has-gap-after+* {
  /* NOTE: margin-left以外を記述すると不具合が出ます */
  margin-left: var(--site-input-gap);
}



/* formset その他のタグ */

/* dl */
/* NOTE: 2colレイアウト */
.formset__dl {
  display: grid;
  grid-template-columns: minmax(20px, auto) 2fr;
  width: 100%;
  gap: 0.5em 1em;
}
*+.formset__dl {
  margin-top: 12px;
}
@media screen and (max-width: 1040.98px) {
  .formset__dl {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.5em;
  }
}

.formset__dl>dt {
  color: var(--font_c);
  font-weight: 700;
  font-feature-settings: 'palt';
  align-self: center;
}
@media screen and (max-width: 1040.98px) {
  .formset__dl>dt {
    align-self: stretch;
  }
  .formset__dl>dd+dt {
    margin-top: 0.5em;
  }
}
.formset__dl>dd {
  align-self: center;
}
@media screen and (max-width: 1040.98px) {
  .formset__dl>dd {
    align-self: stretch;
  }
}
.formset__dl>dd ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 1ex 2ex;
}

.formset__dl>dt small {
  display: block;
  color: var(--font_c);
  font-weight: 400;
  font-size: 12px;
  line-height: 2;
  opacity: 0.5;
}



/* 規約 */
.formset__terms {
  border-radius: var(--site-input-radius);
  border: 1px solid var(--bg-c-underlayer);
  background: var(--bg-c-underlayer);
  font-size: 13px;
  font-feature-settings: 'palt';
  line-height: 2;
  max-width: 768px;
  width: 100%;
  height: 200px;
  margin: var(--formset-input-mt) 0 0;
  padding: 1em;
  overflow-x: hidden;
  overflow-y: auto;
}
.formset__terms.formset__terms--no-scroll {
  height: auto;
  overflow: visible;
}
@media (max-width: 1040.98px) {
  .formset__terms {
    font-size: 10px;
  }
}
.formset__terms>p {
  line-height: inherit;
}
.formset__terms>*+p {
  margin-top: 0.5em;
}


/* トグルボタン */
.formset__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: var(--formset-input-mt) 0 0;
  gap: 8px;
}
.formset__toggle-label {
  font-size: 16px;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}
.formset__toggle-button.btn,
.formset__toggle-button {
  max-width: none;
  width: 52px;
  margin: 0;
}
.formset__ttl .formset__toggle {
  align-self: center;
  margin: 0 0 0 auto;
}
.formset__ttl .formset__toggle-label {
  font-weight: 400;
}

@media (max-width: 1040.98px) {
  .formset__toggle-label {
    font-size: 14px;
  }
}


/* シンプルなチェックボックス、ラジオボタン */
.formset__agreement {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.formset__agreement.u-ta-l {
  justify-content: flex-start;
  text-align: left;
  margin-inline: 0 auto;
}
.formset__agreement.u-ta-c {
  justify-content: center;
  text-align: center;
  margin-inline: auto;
}
.formset__agreement.u-ta-r {
  justify-content: flex-end;
  text-align: right;
  margin-inline: auto 0;
}

.formset__agreement>[type="checkbox"],
.formset__agreement>[type="radio"] {
  margin: 0;
}
.formset__agreement>.formset__notes,
.formset__agreement>span {
  color: var(--gray-dark);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}


/* 同意（.formset__agreement）と同じスタイルのチェックボックス、ラジオボタン（ただし１行リストスタイル） */
/* NOTE: バリデーションのhtmlの関係でulタグのみ許容 */
ul.formset__checkbox-1-line-style {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: var(--formset-input-mt) 0 0;
  gap: 8px;
}
ul.formset__checkbox-1-line-style:has([type="checkbox"]) label,
ul.formset__checkbox-1-line-style:has([type="radio"]) label {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
ul.formset__checkbox-1-line-style [type="checkbox"],
ul.formset__checkbox-1-line-style [type="radio"] {
  margin: 0;
}
ul.formset__checkbox-1-line-style [type="checkbox"]+span,
ul.formset__checkbox-1-line-style [type="radio"]+span {
  color: var(--font-c);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}


/* ボタン風チェックボックス、ラジオボタン */
/* NOTE: バリデーションのhtmlの関係でulタグのみ許容 */
ul.formset__checkbox-btn-style {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: var(--formset-input-mt) 0 0;
  gap: 8px;
}
ul.formset__checkbox-btn-style>li {
  display: block;
  margin: 0;
  padding: 0;
}
ul.formset__checkbox-btn-style label {
  display: block;
  cursor: pointer;
}
ul.formset__checkbox-btn-style [type="checkbox"],
ul.formset__checkbox-btn-style [type="radio"] {
  position: absolute;
  opacity: 0;
}
ul.formset__checkbox-btn-style [type="checkbox"]+span,
ul.formset__checkbox-btn-style [type="radio"]+span {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--gray-light);
  background: #fff;
  color: var(--font-c);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.125;
  text-align: center;
  min-width: 96px;
  height: 32px;
  padding: 8px;
  transition: all 0.2s ease;
}
ul.formset__checkbox-btn-style :checked+span {
  border-color: var(--font-c);
}

ul.formset__checkbox-btn-style [type="checkbox"]+span [type="button"],
ul.formset__checkbox-btn-style [type="radio"]+span [type="button"] {
  color: var(--gray);
  font-size: 14px;
  margin-left: var(--site-input-gap);
}
ul.formset__checkbox-btn-style [type="checkbox"]+span [type="button"] i,
ul.formset__checkbox-btn-style [type="radio"]+span [type="button"] i {
  vertical-align: middle;
}

@media (max-width: 1040.98px) {
  ul.formset__checkbox-btn-style [type="checkbox"]+span,
  ul.formset__checkbox-btn-style [type="radio"]+span {
    font-size: 12px;
  }
}


/* インデックスの静的表示 */
/* NOTE: .formset__itemと同じレベルに配置します */
.formset__static {
  --static-gap: 20px;
  --static-ttl-size: 112px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  font-size: 14px;
  width: 100%;
}
*+.formset__static {
  margin-top: var(--formset-item-mt);
}
@media (max-width: 1040.98px) {
  .formset__static {
    --profile-ttl-size: 180px;
  }
}
.formset__static-ttl {
  font-size: inherit;
  font-weight: 700;
  line-height: 1.4;
  width: var(--static-ttl-size);
}
.formset__static-txt {
  font-size: inherit;
  font-weight: 400;
  line-height: 1.4;
  width: calc( 100% - var(--static-ttl-size) );
  padding: 0 0 0 var(--static-gap);
}



/* プロフィール（インデックスの静的表示） */
/* NOTE: .formset__itemと同じレベルに配置します */
.formset__profile {
  --profile-gap: 20px;
  --profile-img-size: 80px;
  --profile-ttl-size: 180px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  font-size: 14px;
  width: 100%;
}
*+.formset__profile {
  margin-top: var(--formset-item-mt);
}
@media (max-width: 1040.98px) {
  .formset__profile {
    --profile-img-size: 80px;
    --profile-ttl-size: 120px;
    flex-flow: column nowrap;
  }
}

.formset__profile-img {
  width: var(--profile-img-size);
}
@media (max-width: 1040.98px) {
  .formset__profile-img {
    margin: 0 auto var(--profile-gap);
  }
}

.formset__profile-img img {
  border-radius: 50%;
  border: solid 2px var(--gray-light);
  width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: 1 / 1;
}
.formset__profile-desc {
  width: calc( 100% - var(--profile-img-size) );
  padding: 0 0 0 calc( var(--profile-gap) * 2 );
}
@media (max-width: 1040.98px) {
  .formset__profile-desc {
    padding: 0;
  }
}

.formset__profile-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
  gap: var(--profile-gap);
}
.formset__profile-list>dt {
  font-size: inherit;
  font-weight: 700;
  line-height: 1.4;
  width: var(--profile-ttl-size);
}
.formset__profile-list>dd {
  font-size: inherit;
  font-weight: 400;
  line-height: 1.4;
  width: calc( 100% - var(--profile-ttl-size) - var(--profile-gap) );
}
.formset__profile-list>dd.owner_name {
  display: flex;
  align-items: center;
}
.p-profile__displayLabel {
  padding: 1px 4px;
  margin-left: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  font-family: Lato, sans-serif;
  background: #E8E9EE;
  color: #6b7280;
}


/* 登録されたカード（インデックスの静的表示部品） */
.formset__cards {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  font-size: inherit;
  gap: 12px;
}
*+.formset__cards {
  margin-top: var(--formset-item-mt);
}
.formset__cards>li {
  font-size: inherit;
  font-weight: 400;
  text-align: left;
  margin: 0;
  padding: 0;
}


/* プロフィール画像入力（静的表示部品ではなく、入力部品です。.formset__inputの中に必ず配置します。） */
.input-profile-img {
  --profile-gap: 20px;
  --profile-img-size: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  width: 100%;
  margin: var(--formset-input-mt) 0 0;
}
@media (max-width: 1040.98px) {
  .input-profile-img {
    --profile-gap: 20px;
    --profile-img-size: 80px;
    flex-flow: column nowrap;
  }
}
.input-profile-img__icon {
  width: var(--profile-img-size);
  position: relative;
}
@media (max-width: 1040.98px) {
  .input-profile-img__icon {
    margin: 0 auto var(--profile-gap);
  }
}

.input-profile-img__icon img {
  border-radius: 50%;
  border: solid 2px var(--gray-light);
  width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: 1 / 1;
  position: relative;
  z-index: 1;
}
.input-profile-img__icon i {
  font-size: 20px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.input-profile-img__txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  width: calc( 100% - var(--profile-img-size) );
  padding: 0 0 0 var(--profile-gap);
}
@media (max-width: 1040.98px) {
  .input-profile-img__txt {
    text-align: center;
    padding: 0;
  }
}

.input-profile-img [type="file"] {
  position: absolute;
  opacity: 0;
}


/* タグ入力（.formset__inputの中に必ず配置します。） */
.input-add-tag {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: var(--formset-input-mt) 0 0;
  gap: 8px;
}
.input-add-tag::before {
  content: '#';
  order: 0;
}
.formset__checkbox-btn-style ~ .input-add-tag {
  margin-top: 12px;
}
.input-add-tag>[type="text"],
.input-add-tag>[type="password"],
.input-add-tag>[type="number"],
.input-add-tag>[type="date"],
.input-add-tag>[type="email"] {
  /* NOTE: max-width, margin, order以外の記述は禁止（不具合がでます） */
  max-width: 200px;
  margin: 0;
  order: 1;
}
.input-add-tag>[data-add] {
  font-size: 20px;
  order: 2;
}


/* 値のクリックによる追加（サイト内のどこでも利用可能、common.jsが必要です） */
.input-adjustive-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  margin: 4px 0 0;
}
.input-adjustive-list>li {
  background: var(--font-c-placeholder);
  color: #fff;
  font-size: 14px;
  padding: 2px 6px;
  margin-left: 4px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-family-en);
  transition: all .2s ease-in-out;
}
.input-adjustive-list>li:hover {
  transform: scale(1.05);
  opacity: .8;
}
.input-adjustive-list>li:active {
  transform: scale(1.33);
  opacity: .3;
  transition: all 0s ease-in;
}


/* 値への装飾用html付きの数値入力（サイト内のどこでも利用可能） */
.input-number-and-view {
  display: block;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
  background: #fff;
  margin: 4px 0 0;
  position: relative;
}
.input-number-and-view>.item--input {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  border-radius: inherit;
  position: absolute;
  inset: 0 0 0 0;
  z-index: 10;
}
.input-number-and-view [type="text"],
.input-number-and-view [type="number"] {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border-radius: inherit;
  border: none;
  background: #fff;
  color: inherit;
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font-family-en);
  text-align: center;
  width: 100%;
  height: var(--site-input-height);
  padding: 0 1ex;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.input-number-and-view [type="text"]:focus,
.input-number-and-view [type="number"]:focus {
  opacity: 1;
}
.p-after-first-validate .input-number-and-view .jquery-validate--error:not(span) {
  border: none !important;
  background: #fff !important;
  color: inherit !important;
}

.input-number-and-view>.item--view {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font-family-en);
  text-align: center;
  width: 100%;
  height: var(--site-input-height);
  padding: 0 1ex;
  position: relative;
  z-index: 1;
}
.input-number-and-view:has([type="text"]:focus) .item--view,
.input-number-and-view:has([type="number"]:focus) .item--view {
  opacity: 0;
}
.input-number-and-view .item--view-text {
  display: block;
}
.input-number-and-view .item--price {}
.input-number-and-view .item--unit {
  color: var(--gray-dark);
  font-size: 12px;
}
.input-number-and-view .item--error-wrapper {
  display: none;
}


/**
 * tableset
 * NOTE: テーブルスタイル（フォームとしての用途はformsetを推奨）スマホではテーブルを解除し自由なレイアウト
**/
.tableset {
  --tableset-padding: 20px;
  --tableset-ttl-width: 320px;
  border-collapse: collapse;
  background: #fff;
  width: 100%;
}
@media screen and (min-width: 1041px) {
  .tableset {
    margin: 0 0 30px;
  }
}
@media only screen and (max-width: 1040.98px) {
  .tableset {
    --tableset-padding: 20px;
    --tableset-ttl-width: 210px;
  }
}
@media (max-width: 1040.98px) {
  .tableset {
    --tableset-padding: 20px;
    --tableset-ttl-width: 210px;
  }
  .tableset,
  .tableset thead,
  .tableset tfoot,
  .tableset tbody {
    display: block;
    background: transparent;
  }
}

.tableset__list {
  display: table-row;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 1041px) {
  .tableset__list {
    border-top: solid 1px var(--gray-light);
    border-bottom: solid 1px var(--gray-light);
  }
}
@media (max-width: 1040.98px) {
  .tableset__list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }
}

/* 項目タイトル */
.tableset__ttl {
  display: table-cell;
  font-weight: 700;
  vertical-align: middle;
  width: var(--tableset-ttl-width);
  padding: var(--tableset-padding);
}
/* .tableset__ttlの間接、隣接、入力部品 */
.tableset__txt {
  display: table-cell;
  padding: var(--tableset-padding);
  /* NOTE: ここではwidthの指定は禁止 */
}
/* 自由項目 */
.tableset__cell {
  display: table-cell;
  padding: var(--tableset-padding);
  /* NOTE: ここではwidthの指定は禁止 */
}
@media screen and (max-width: 1040.98px) {
  .tableset__ttl {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }
  .tableset__txt {
    display: block;
    /* NOTE: ここではwidthの指定は禁止 */
  }
  .tableset__cell {
    display: block;
    /* NOTE: ここではwidthの指定は禁止 */
  }
}

.tableset__must {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-radius);
  border-radius: 0;
  background: var(--red-alert);
  color: #fff;
  font-size: 11px;
  line-height: 1.25;
  width: fit-content;
  height: 20px;
  margin: 0 0 0 auto;
  padding: 0 1ex;
}

.tableset__notes {
  display: block;
}
.tableset__ttl .tableset__notes {
  display: block;
}
.tableset__txt .tableset__notes {
  display: block;
}

@media screen and (max-width: 1040.98px) {
  .tableset__ttl>label+* {
    margin-left: auto;
  }
}

.tableset__txt img {
  border-radius: var(--site-input-radius);
  width: 180px;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
  object-fit: cover;
}

@media screen and (max-width: 1040.98px) {
  .tableset__txt img {
    width: 120px;
    height: auto;
  }
}

.tableset__txt ul li {
  display: inline-flex;
  margin: 0 10px 10px 0
}

.tableset__txt [type="text"],
.tableset__txt [type="email"],
.tableset__txt [type="tel"],
.tableset__txt [type="password"],
.tableset__txt [type="datetime-local"],
.tableset__txt [type="date"],
.tableset__txt [type="time"],
.tableset__txt [type="month"],
.tableset__txt [type="week"],
.tableset__txt [type="search"],
.tableset__txt [type="number"],
.tableset__txt textarea {
  border-radius: var(--site-input-radius);
  border: 1px solid var(--gray-light);
  background: #fff;
  font-size: var(--site-input-fs);
  /* フォーム入力時のの自動拡大を防ぐため必ず --site-input-fs変数を使用してfont-sizeを指定し、16px以下にしないように注意してください。 */
  max-width: 768px;
  width: 100%;
  height: var(--site-input-height);
  padding: 0 1em;
}

.tableset__txt [type="datetime-local"],
.tableset__txt [type="date"],
.tableset__txt [type="time"],
.tableset__txt [type="month"],
.tableset__txt [type="week"],
.tableset__txt [type="number"] {
  max-width: 210px;
  width: auto;
}

.tableset__txt textarea {
  line-height: 1.55;
  max-width: none;
  height: auto;
  padding: 15px;
}

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

  .tableset__txt [type="text"],
  .tableset__txt [type="email"],
  .tableset__txt [type="tel"],
  .tableset__txt [type="password"],
  .tableset__txt [type="datetime-local"],
  .tableset__txt [type="date"],
  .tableset__txt [type="time"],
  .tableset__txt [type="month"],
  .tableset__txt [type="week"],
  .tableset__txt [type="search"],
  .tableset__txt [type="number"] {
    font-size: var(--site-input-fs);
    /* フォーム入力時のの自動拡大を防ぐため必ず --site-input-fs変数を使用してfont-sizeを指定し、16px以下にしないように注意してください。 */
    padding-inline: 1em;
  }
}

.tableset__btn {
  margin-left: auto;
  margin-right: auto;
}


/* error for jquery.validate.js */
/* NOTE: CDN https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.5/jquery.validate.js */

/* NOTE: 通常（初回サブミット後のみの実行は利用しない場合） */
/*.form_support_wrap > div > div > .jquery-validate--error,
.formset__input .jquery-validate--error,
.formset__input-select .jquery-validate--error,
.formset__input .jquery-validate--error,
.tableset__txt .jquery-validate--error,
.jquery-validate--error {
  border: 1px solid #c00 !important;
  background: #eed1d1 !important;
}
.form_support_wrap > div > div > .jquery-validate--error:focus,
.formset__input .jquery-validate--error:focus,
.formset__input-select .jquery-validate--error:focus,
.formset__input .jquery-validate--error:focus,
.tableset__txt .jquery-validate--error:focus,
.jquery-validate--error:focus {
  outline-color: #c00 !important;
}
.form_support_wrap > div > div .select:has(.jquery-validate--error),
.formset__input .select:has(.jquery-validate--error),
.formset__input-select .select:has(.jquery-validate--error),
.formset__input .select:has(.jquery-validate--error),
.tableset__txt .select:has(.jquery-validate--error),
.select:has(.jquery-validate--error) {
  border: 1px solid #c00 !important;
  background: #eed1d1 !important;
}
.form_support_wrap > div > div .select .jquery-validate--error:not(span),
.formset__input .select .jquery-validate--error:not(span),
.formset__input-select .select .jquery-validate--error:not(span),
.formset__input .select .jquery-validate--error:not(span),
.tableset__txt .select .jquery-validate--error:not(span),
.select .jquery-validate--error:not(span) {
  border: none !important;
  background: transparent !important;
}
.form_support_wrap > div > div .select .jquery-validate--error:not(span):focus,
.formset__input .select .jquery-validate--error:not(span):focus,
.formset__input-select .select .jquery-validate--error:not(span):focus,
.formset__input .select .jquery-validate--error:not(span):focus,
.tableset__txt .select .jquery-validate--error:not(span):focus,
.jquery-validate--error:not(span):focus {
  outline-color: transparent !important;
}
*/


/* NOTE: 初回サブミット後のみ実行する場合 */
/* .select 以外 */
.p-after-first-validate .form_support_wrap > div > div .jquery-validate--error:not(span),/* PBASEのフォーム向け */
.p-after-first-validate .formset__input .jquery-validate--error:not(span),
.p-after-first-validate .formset__input-select .jquery-validate--error:not(span),
.p-after-first-validate .formset__input .jquery-validate--error:not(span),
.p-after-first-validate .tableset__txt .jquery-validate--error:not(span),
.p-after-first-validate .jquery-validate--error:not(span) {
  border: 1px solid #c00 !important;
  background: rgba(148,0,0,0.16) !important;
}
.p-after-first-validate .form_support_wrap > div > div .jquery-validate--error:not(span):focus,/* PBASEのフォーム向け */
.p-after-first-validate .formset__input .jquery-validate--error:not(span):focus,
.p-after-first-validate .formset__input-select .jquery-validate--error:not(span):focus,
.p-after-first-validate .formset__input .jquery-validate--error:not(span):focus,
.p-after-first-validate .tableset__txt .jquery-validate--error:not(span):focus,
.p-after-first-validate .jquery-validate--error:not(span):focus {
  outline-color: #c00 !important;
}
/* .select の場合 */
.p-after-first-validate .form_support_wrap > div > div .select:has(.jquery-validate--error),/* PBASEのフォーム向け */
.p-after-first-validate .formset__input .select:has(.jquery-validate--error),
.p-after-first-validate .formset__input-select .select:has(.jquery-validate--error),
.p-after-first-validate .formset__input .select:has(.jquery-validate--error),
.p-after-first-validate .tableset__txt .select:has(.jquery-validate--error),
.p-after-first-validate .select:has(.jquery-validate--error) {
  border: 1px solid #c00 !important;
  background: rgba(148,0,0,0.16) !important;
}
.p-after-first-validate .form_support_wrap > div > div .select .jquery-validate--error:not(span),/* PBASEのフォーム向け */
.p-after-first-validate .formset__input .select .jquery-validate--error:not(span),
.p-after-first-validate .formset__input-select .select .jquery-validate--error:not(span),
.p-after-first-validate .formset__input .select .jquery-validate--error:not(span),
.p-after-first-validate .tableset__txt .select .jquery-validate--error:not(span),
.p-after-first-validate .select .jquery-validate--error:not(span) {
  border: none !important;
  background: transparent !important;
}
.p-after-first-validate .form_support_wrap > div > div .select .jquery-validate--error:not(span):focus,/* PBASEのフォーム向け */
.p-after-first-validate .formset__input .select .jquery-validate--error:not(span):focus,
.p-after-first-validate .formset__input-select .select .jquery-validate--error:not(span):focus,
.p-after-first-validate .formset__input .select .jquery-validate--error:not(span):focus,
.p-after-first-validate .tableset__txt .select .jquery-validate--error:not(span):focus,
.p-after-first-validate .jquery-validate--error:not(span):focus {
  outline-color: transparent !important;
}

.form_support_wrap > div > div > span.jquery-validate--error, /* PBASEのフォーム向け */
.tableset__txt span.jquery-validate--error,
.formset__input span.jquery-validate--error,
span.jquery-validate--error {
  display: block;
  border: none !important;
  background: transparent !important;
  color: #c00 !important;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-align: left;
  padding: 6px 0;
}

/* errorのラッパー */
.item--error-wrapper {
  display: inline-block;
  align-self: stretch;
  font-size: 13px;
  text-align: left;
  position: relative;
}
.item--error-wrapper~*:not(.item--error-wrapper) {
  margin-top: var(--site-input-error-height);
}
/* errorのラッパー 計算機の場合 1 */
.order-simulator__input .item--input .item--error-wrapper {
  width: 100%;
  position: absolute;
  left: 0;
  top: calc(var(--site-input-error-height) * -1);
  z-index: 1;
}
.order-simulator__input>.item--input>.item--error-wrapper~input {
  margin-top: 0;
}
.order-simulator__input>.item--input>.item--error-wrapper~.item--unit {
  margin-top: 0;
}
.order-simulator__input>.item--input>.item--error-wrapper~.item--default-msg {
  margin-top: 0;
}
/* errorのラッパー 計算機の場合 2 */
.input-number-and-view .item--error-wrapper~*:not(.item--error-wrapper) {
  margin-top: 0;
}

.item--error-wrapper .jquery-validate--error {
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transform: translate(0,0);/* NOTE: 横方向、縦方向の微調整はtranslateで */
}
.form_support_wrap > div > div > .item--error-wrapper span.jquery-validate--error, /* PBASEのフォーム向け */
.tableset__txt .item--error-wrapper span.jquery-validate--error,
.formset__input .item--error-wrapper span.jquery-validate--error,
.item--error-wrapper span.jquery-validate--error {
  line-height: 1.25;
  text-align: inherit;
  padding: 0;
}

ul>.item--error-wrapper {
  display: block;
  width: 100%;
}
ul>.item--error-wrapper .jquery-validate--error {
  width: 100% !important;
}
ul>.item--error-wrapper~* {
  color: #c00 !important;
}
@media screen and (max-width: 1040.98px) {
  .item--error-wrapper {
    font-size: 10px;
    text-align: right;
  }
}


.error-list {
  /*display: none;*/
  background: #FEF6F7;
  padding: 16px;
  color: #c00;
  max-width: 568px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 16px;
}
*+.error-list {
  margin-top: 16px;
}
/*form:has(.jquery-validate--error) .error-list {
  display: block;
}*/
.error-list__ttl {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.error-list__list {}
.error-list__list>li {
  font-size: 12px;
  list-style-type: disc;
  margin-left: 24px;
}


/**
 * システム書き出しのエラー
**/
.error_01 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--font-c-red);
  text-align: center;
  margin: 0 0 8px;
  padding-top: 8px;
}
.error_01.error_01--notes {
  color: var(--font-c);
}
.error_01:empty {
  display: none;
}


/**
 * ヘルプマーク
**/
[data-help] {
  --help-bg: rgba(0,0,0,0.9);
  --help-balloon-width: 280px;
  --help-balloon-offset-right: 20px;
  display: inline-block;
  position: relative;
}
[data-help]::before {
  content: '\f129';
  display: var(--fa-display, inline-block);
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--font-c);
  color: #fff;
  font-size: 0.5em;
  width: 2em;
  height: 2em;
  position: relative;
  top: -0.25em;
}
[data-help].item--que::before {
  content: '';
  display: block;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  border-radius: 0;
  background-image: url(/common/images/icon-help.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: transparent;
  color: transparent;
  top: 0.25em;
}
@media screen and (max-width: 1040.98px) {
  [data-help]::after {
    content: '';
    display: block;
    background: rgba(0, 0, 0, 0);
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    transition: background 0.2s ease;
  }
  [data-help].is--active::after {
    background: rgba(0, 0, 0, 0.05);
    pointer-events: auto;
  }
}

[data-help]>span {
  display: block;
  box-shadow: var(--btn-shadow-hover);
  border-radius: 4px;
  background: var(--help-bg);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
  text-align: left;
  min-width: var(--help-balloon-width);
  min-height: 80px;
  padding: 1.25em;
  position: absolute;
  top: 0;
  right: calc( var(--help-balloon-offset-right) * -1 );
  z-index: 20;
  transform: translate(0,-100%);
  opacity: 0;
  transition: opacity 0.6s ease 0.6s;
  pointer-events: none;
}
[data-help]:hover>span {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.6s ease;
}
[data-help]>span::after {
  content: '';
  display: block;
  border-radius: 2px;
  border-style: solid;
  border-color: transparent var(--help-bg) var(--help-bg) transparent;
  border-width: 4px;
  transform: translate(0,50%) rotate(45deg);
  position: absolute;
  bottom: 0;
  right: calc( var(--help-balloon-offset-right) + 2px );
  z-index: 20;
}
[data-help]>.fit--bottom {
  transform: translate(0,22px);
}
[data-help]>.fit--bottom::after {
  border-color: var(--help-bg) transparent transparent var(--help-bg);
  transform: translate(0,-50%) rotate(45deg);
  position: absolute;
  top: 0;
  bottom: auto;
}
@media screen and (min-width: 1041px) {
  [data-help].is--low-length>span {
    min-width: var(--help-balloon-width);
    min-height: calc( 80px - 1.5lh );
  }
}
@media screen and (max-width: 1040.98px) {
  [data-help]>span {
    box-shadow: 0 -4px 8px rgba(0,0,0,0.16);
    border-radius: 0;
    background: #fff;
    color: var(--font-c);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.75;
    width: 100%;
    min-width: 0;
    min-height: 80px;
    padding: 16px;
    position: fixed;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 3000;
    transform: translate(0,0);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
  }
  [data-help]:hover>span {
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
  }
  [data-help].is--active>span {
    opacity: 1;
    transition: opacity 0.6s ease;
    pointer-events: auto;
  }
  [data-help]>span::before {
    content: '\f00d';
    display: var(--fa-display, inline-block);
    font-family: "Font Awesome 6 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    font-weight: 700;
    line-height: 1;
    text-rendering: auto;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 1;
  }
  [data-help]>span::after {
    display: none;
  }
}
[data-help] .c-link {
  color: var(--text-link-c-blue);
}
[data-help] .c-link:hover {
  color: var(--text-link-c-blue-hover);
}


/**
 * エフェクト
**/
.effect-fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1000ms
}
.effect-fade-2 {
  transform: translate(0, 90px)
}
.effect-fade-3 {
  transform: translate(0, 135px)
}
.effect-fade-4 {
  transform: translate(0, 180px)
}
.effect-fade-5 {
  transform: translate(0, 225px)
}
.effect-fade-6 {
  transform: translate(0, 270px)
}
.fade-t {
  transform: translate(0, -45px)
}
.fade-r {
  transform: translate(45px, 0)
}
.fade-l {
  transform: translate(-45px, 0)
}
.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0, 0)
}


/**
 * js style
 * NOTE: 独自開発のjsを用いるスタイル
**/

/**
 * readmore
 * NOTE: SP時の機能解除用（その他、readmore限定のスタイル調整は全て common.js記載）
**/
@media screen and (max-width: 1040.98px) {
  [data-readmore-break-on-sp="true"] {
    height: auto !important;
    overflow: visible !important;
  }
  [data-readmore-break-on-sp="true"] ~ [data-readmore-target]{
    display: none !important;
  }
}

/**
 * zoom
 * NOTE: 拡大機能にはcommon.jsが必要です。モーダルはcssのみです。
**/
.zoom-modal {
  position: relative;
}
.zoom-modal__switch {
  position: absolute;
  opacity: 0;
}
.zoom-modal__close {
  display: block;
  background-image: url("../images/btn-close-circle.svg");
  background-repeat: no-repeat;
  background-position: right 20px top 20px;
  background-size: 44px auto;
  background-color: rgba(255,255,255,0.97);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40000;/* NOTE: z-indexはヘッダーより上に */
  transition: .3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.zoom-modal__switch:checked~.zoom-modal__close {
  opacity: 1;
  pointer-events: auto;
}

.zoom-modal__content {
  border-radius: 0;
  border: none;
  background: transparent;
  width: 100%;
  height: 100%;
  padding: 64px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40010;/* NOTE: z-indexはヘッダーより上に */
  transform: translate(0, 0);
  opacity: 0;
  overflow: visible;
  pointer-events: none;
}
.zoom-modal__switch:checked~.zoom-modal__content {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 1040.98px) {
  .zoom-modal__content {
    padding: 64px 8px;
  }
}

.zoom-area {
  position: relative;
  cursor: pointer;
}
.zoom-area:has(.zoom-lens.is--active) {
  cursor: zoom-out;
}
.zoom-modal__content .zoom-area {
  width: fit-content;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1040.98px) {
  .zoom-modal__content .zoom-area {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: stretch;
  }
}

.zoom-body {
  position: relative;
  z-index: 0;
}
.zoom-modal__content .zoom-body {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: stretch;
  height: 100%;
}
/*
@media screen and (max-width: 1040.98px) {
  .zoom-modal__content .zoom-body {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: stretch;
  }
}
*/

.zoom-body img {
  box-shadow: 0 4px 10px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
.zoom-modal__content .zoom-body img {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}
.zoom-modal__content .zoom-body>.is--landscape {
  width: auto;
  height: auto;
}
.zoom-modal__content .zoom-body>.is--portrait {
  width: auto;
  height: auto;
}
.zoom-modal__content .zoom-body>.is--square {
  width: auto;
  height: auto;
}


.zoom-lens {
  display: block;
  box-shadow: 0 0 0 4px #222;
  border-radius: 50%;
  border: none;
  width: 200px;
  height: 200px;
  position: absolute;
  z-index: 10;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.zoom-lens.is--active {
  opacity: 1;
}
.zoom-lens img {
  position: absolute;
  transform-origin: top left;
}


/**
 * Vender style
 * NOTE:
**/

/* 忍者ツールズ
--------------------------------- */
@media (max-width: 768.98px) {
  .ninja_onebutton_output_overlay, .ninja_onebutton_output_overlay.show {
    display: table !important;
    /* NOTE: .showがbootstrapとコンフリクトしているため、!importantが必要です。 */
    width: 100%;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
  }
}
/* NOTE: twitterをXに変更 */
.ninja_onebutton_output_overlay .twitter, .ninja_onebutton_output_responsive .twitter,
.wrap .ninja_onebutton_output_overlay .twitter,
.wrap .ninja_onebutton_output_responsive .twitter,
.ninja_onebutton_output_overlay .twitter,
.ninja_onebutton_output_responsive .twitter {

  /* ninja default style */
  /*background-color: #55acee;*/
  /*color: #ffffff;*/

  background-color: #444 !important;
  color: rgba(0, 0, 0, 0) !important;
}
.wrap .ninja_onebutton_output_overlay [class*='onebtn_overlay'].twitter::before,
.wrap .ninja_onebutton_output_responsive [class*='onebtn_responsive_'].twitter::before,
.ninja_onebutton_output_overlay [class*='onebtn_overlay'].twitter::before,
.ninja_onebutton_output_responsive [class*='onebtn_responsive_'].twitter::before {

  /* NOTE: 元のアイコンを非表示 */

  /* ninja default style */
  /*content: "\e606";*/
  /*font-family: 'omatome_icomoon', sans-serif;*/
  /*vertical-align: middle;*/

  display: inline-block;
  /* X logo mark svg */
  /*
   * NOTE:
   * URLデコードなので直接文言変更でSVGを編集出来ます。
   * 「fill%3D%22white」というキーワードを探して色を変更してください。
   * 「white」の部分に色をCSSの記法で指定できます。
   * 例えば#333などは、%23333です。「%23」が「#」
  */
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%201200%201227%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M714.163%20519.284L1160.89%200H1055.03L667.137%20450.887L357.328%200H0L468.492%20681.821L0%201226.37H105.866L515.491%20750.218L842.672%201226.37H1200L714.137%20519.284H714.163ZM569.165%20687.828L521.697%20619.934L144.011%2079.6944H306.615L611.412%20515.685L658.88%20583.579L1055.08%201150.3H892.476L569.165%20687.854V687.828Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E');
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: contain;
  color: rgba(0, 0, 0, 0);
  transform: scale(0.9);
}

/* slick
--------------------------------- */
.slick-list {
  height: 100%;
}
.slick-track {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
}
.slick-slide>div {
  height: 100%;
}
.slick-slide>div>li {
  height: 100%;
}

.slick-prev,
.slick-next {
  --arrow-btn-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  border: none;
  outline: none;
  background: #fff;
  color: var(--font-c);
  font-size: 16px;
  line-height: 16px;
  position: absolute;
  top: 50%;
  z-index: 2000;
  width: var(--arrow-btn-size);
  height: var(--arrow-btn-size);
  padding: 0;
  transform: translate(0,-50%);
  opacity: 1;
  cursor: pointer;
}
.slick-prev {
  left: calc(var(--arrow-btn-size)*-0.75);
}
[dir='rtl'] .slick-prev {
  right: calc(var(--arrow-btn-size)*-0.75);
  left: auto;
}
.slick-next {
  right: calc(var(--arrow-btn-size)*-0.75);
}
[dir='rtl'] .slick-next {
  right: auto;
  left: calc(var(--arrow-btn-size)*-0.75);
}
.slick-prev:hover,
.slick-next:hover {
  border: none;
  outline: none;
  background: #fff;
  color: var(--font-c);
  opacity: 0.9;
}

.slick-prev::before,
.slick-next::before {
  color: var(--font-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;
  transform: scale(0.33);
}
.slick-next::before {
  content: '\f061';
}
.slick-prev::before {
  content: '\f060';
}
