@charset "UTF-8";
/**
 * base
 * NOTE:
 * 
 * input要素のスタイルの上書きが難しくになることを避ける目的で
 * input要素をbase.cssにおいて、input[type="submit"]などと書かないでください。
 * [type="submit"] や [type="checkbox"]など属性セレクタのみにしてください。
 * ※この記述ならば優先度が低いためクラス名1つで上書きが可能です。
 * 
**/
/**
 * 
 * 変数
 * 
**/
:root {
  --site-font-family-default: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --site-font-family-maru: "Zen Maru Gothic", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;/* NOTE: weight 700 or bold のみ対応 */
  --site-c-main: #f38968;
  --site-c-main-active: #e57754;
  --site-c-dark: #25476e;
  --site-c-light: #7dd0fc;
  --site-c-lighter: #f0f8fc;
  --site-c-border: #cad2d5;
  --site-c-border-light: rgba(202,210,213,0.5);
  --site-duration: 0.1666s;
  --container-width: 1260px;
  --container-padding: 80px;
}
@media only screen and (max-width: 1280px) {
  :root {
    --container-padding: 40px;
  }
}
@media only screen and (max-width: 959px) {
  :root {
    --container-padding: 24px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --container-padding: 16px;
  }
}


/**
 * 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
}
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;
  font-weight: inherit;
  font-family: inherit;
}
/* iOS */
[type="submit"], [type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-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
}
[type="text"],[type="date"],[type="email"],[type="password"],textarea {
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
  font-weight: inherit;
  padding: 15px;
}

.is--readonly,
[readonly] {
  background-color: #eee !important;
  color: #aaa !important;
}
.is--readonly::placeholder,
[readonly]::placeholder {
  color: #aaa;
}

.select {
  display: inline-block;
  position: relative;
}
.select [type="date"],
.select select {
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  font-weight: inherit;
  width: 200px;
  height: 60px;
  padding: 0 10px;
}
@media screen and (max-width: 1135px) {
  .select [type="date"],
  .select select {
    width: 175px;
    height: 50px;
  }
}
@media screen and (max-width: 959px) {
  .select [type="date"],
  .select select {
    font-size: 12px;
    width: 140px;
    padding-left: 5px;
  }
}
@media screen and (max-width: 767px) {
  .select [type="date"],
  .select select {
    font-size: 12px;
    width: 110px;
    height: 45px;
    padding-left: 5px;
  }
}
.select select::-ms-expand {
  display: none
}
.select:has(select)::after {
  content: '';
  display: block;
  border-top: 1px solid;
  border-right: 1px solid;
  margin-top: -5px;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: rotate(135deg);
  pointer-events: none;
}

.label-check {
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5ex;
}
.label-check [type="radio"],
.label-check [type="checkbox"] {
  margin: 0;
}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
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
}

/**
 * 再定義
**/
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth
}
body {
  color: #000;
  font-family: var(--site-font-family-default);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
body > .wrap {
  overflow: hidden
}
body > .sub {
  background: var(--site-c-lighter);
}
table {
  letter-spacing: 0;
  empty-cells: show
}
tbody {
  position: unset
}
table tr, table th, table td {
  empty-cells: show;
  position: unset;
}
input, select, textarea {
  font-size: 90%;
  background: none;
  transition: all var(--site-duration) ease;
}
[type="checkbox"], [type="radio"] {
  width: 18px;
  height: 18px;
  margin: 1px 5px 0 0;
}
p {
  color: #535d64;
  color: inherit;
  line-height: 1.65
}
a {
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition:
    box-shadow var(--site-duration) ease,
    border var(--site-duration) ease,
    background var(--site-duration) ease,
    color var(--site-duration) ease,
    width var(--site-duration) ease,
    height var(--site-duration) ease,
    top var(--site-duration) ease,
    opacity var(--site-duration) ease;
}
a:hover {
  color: var(--site-c-main);
  opacity: 0.9;
  cursor: pointer;
}
a.active {
  color: var(--site-c-main);
}
img {
  display: inline-block;/* NOTE: blockの設定が必要な個所は調整済みなので、inline-blockのままでお願いします。 */
  border: none;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  transition:
    width var(--site-duration) ease,
    height var(--site-duration) ease;
}
label {
  cursor: pointer;
}

/**
 * font color
**/
.fc__color {
  color: var(--site-c-main);
}
.fc__pink {
  color: var(--site-c-main);
}
.fc__blue {
  color: #aee5d8;
}

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

/**
 * text align
**/
.txt--left {
  text-align: left;
}
.txt--center {
  text-align: center;
}
.txt--right {
  text-align: right;
}

/**
 * text decoration
**/
.txt--underline,
.txt--underline:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
}

/**
 * background color
**/
.bg__color {
  background: var(--site-c-lighter);
}
.bg__gray {
  background: #fefefe;
}


/**
 * 簡易レスポンシブ
**/
@media only screen and (min-width: 768px) {
  .sp_disp,
  .sp--disp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc_disp,
  .pc--disp {
    display: none !important;
  }
}


/**
 * section
**/
section {
  padding: 40px 0;
}
@media only screen and (max-width: 959px) {
  section {
    padding: 30px 0;
  }
}


/**
 * container
**/
.l-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative
}


/**
 * display flex
**/
.c-flex {
  display: flex;
}
.c-flex--wrap {
  flex-wrap: wrap;
}
.c-flex--between {
  justify-content: space-between;
}


/**
 * subpage-head
**/
.subpage-head {
  padding: 40px 0 20px;
}
.subpage-head .c-head {
  margin: 0;
}


/**
 * TITLE
**/
.c-head {
  margin-bottom: 40px;
}
.c-head--second {
  margin-top: 80px
}
.c-head--center {
  align-items: center;
}
.c-head__logo {
  width: 260px;
  margin-bottom: 40px;
  padding: 30px;
  background: #000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}
.c-head__ttl {
  padding-left: 15px;
  border-left: 6px solid #7dcffa;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05ex;
  line-height: 1.2;
}
.c-head__ttl-link {
  display: inline-block;
  letter-spacing: -0.1ex;
  transform: scale(0.6, 1);
}
.c-head__txt {
  margin-top: 15px
}
@media only screen and (max-width: 959px) {
  .c-head {
    margin-bottom: 30px
  }
  .c-head--second {
    margin-top: 50px
  }
}
@media only screen and (max-width: 767px) {
  .c-head {
    margin-bottom: 20px
  }
  .c-head__ttl {
    font-size: 20px
  }
}


/**
 * button
**/
.btn {
  width: 100%;
  max-width: 380px;
  font-weight: 700;
  position: relative;
}
.btn:active {
  box-shadow: none;/* NOTE: box-shadow: none;は、bootstrap上書き対策 */
}
.c-head .btn {
  margin-top: 20px;
}
.btn a, .btn [type="button"], .btn [type="submit"], .btn button, .btn > span, .btn > label {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 0 0 #a6543a;
  border-radius: 60px;
  border: solid 1px var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.125;
  width: 100%;
  height: 60px;
  position: relative;
  top: 0;
}
.btn a:hover, .btn [type="button"]:hover, .btn [type="submit"]:hover, .btn button:hover, .btn > span:hover, .btn > label:hover {
  box-shadow: 0 0 0 0 var(--site-c-main-active);
  border-color: var(--site-c-main-active);
  background: var(--site-c-main-active);
  color: #fff;
  top: 5px;
}
@media only screen and (max-width: 959px) {
  .btn {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .btn {
    margin-top: 15px;
  }
}


.btn--small {
  width: 100%;
  max-width: 430px;
  font-weight: 700;
  position: relative;
}
.btn--small a, .btn--small button, .btn--small [type="button"], .btn--small [type="submit"], .btn--small > span, .btn--small > label {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 58px;
  border: solid 1px #fde8e2;
  background: #fde8e2;
  color: var(--site-c-main);
  font-size: 15px;
  font-weight: 700;
  font-feature-settings: 'palt';
  line-height: 1.125;
  width: 100%;
  height: 40px;
  padding: 0;
}
.btn--small a:hover, .btn--small [type="button"]:hover, .btn--small [type="submit"]:hover, .btn--small button:hover, .btn--small > span:hover, .btn--small > label:hover {
  border-color: #fadbd2;
  background: #fadbd2;
  color: var(--site-c-main);
}
@media only screen and (max-width:767px) {
  .btn--small a, .btn--small button, .btn--small [type="button"], .btn--small [type="submit"], .btn--small > span, .btn--small > label {
    font-size: 11px;
    height: 30px;
  }
}


/* button color plain */
.btn--plain {}
.btn--plain a, .btn--plain input, .btn--plain button, .btn--plain > span, .btn--plain > label {
  box-shadow: none;
  border: solid 2px #c1c1c1;
  background: #fff;
  color: var(--site-c-dark);
  top: auto;
}
.btn--plain a:hover, .btn--plain input:hover, .btn--plain button:hover, .btn--plain > span:hover, .btn--plain > label:hover {
  box-shadow: none;
  border: solid 2px #c1c1c1;
  background: #f1f1f1;
  color: var(--site-c-dark);
  top: auto;
}


/* button color gray */
.btn--gray {}
.btn--gray a, .btn--gray input, .btn--gray button, .btn--gray > span, .btn--gray > label {
  box-shadow: none;
  border: solid 2px #c1c1c1;
  background: #fff;
  color: #7e7e7e;
  top: auto;
}
.btn--gray a:hover, .btn--gray input:hover, .btn--gray button:hover, .btn--gray > span:hover, .btn--gray > label:hover {
  box-shadow: none;
  border: solid 2px #c1c1c1;
  background: #f1f1f1;
  color: #7e7e7e;
  top: auto;
}


/* button no shadow */
.btn--no-shadow {}
.btn--no-shadow a, .btn--no-shadow input, .btn--no-shadow button, .btn--no-shadow > span, .btn--no-shadow > label {
  box-shadow: none;
  top: auto;
}
.btn--no-shadow a:hover, .btn--no-shadow input:hover, .btn--no-shadow button:hover, .btn--no-shadow > span:hover, .btn--no-shadow > label:hover {
  box-shadow: none;
  top: auto;
}



.btn--fav a, .btn--fav a:hover {
  box-shadow: none;
  border: 1px solid #e73656;
  background: #fff;
  color: #e73656;
  top: auto;
}
.btn--fav a::before {
  content: '';
  display: inline-block;
  background: url("../images/icon__btn--favoff.png") center center / 100% no-repeat;
  width: 15px;
  height: 15px;
  position: relative;
  top: 0;
  right: 5px;
  transition: all var(--site-duration) ease;
}
.btn--fav a:hover::before, .btn--favoff a::before {
  background-image: url("../images/icon__btn--fav.png")
}

.btn--msg a {
  box-shadow: none;
  border: 1px solid #049edf;
  background: #fff;
  color: #049edf;
  top: auto;
}
.btn--msg a::before {
  content: '';
  display: inline-block;
  background: url("../images/icon__btn--msg.png") center center / 100% no-repeat;
  width: 15px;
  height: 15px;
  position: relative;
  top: 0;
  right: 5px;
  transition: all var(--site-duration) ease;
}
.btn--msg a:hover {
  box-shadow: none;
  border-color: #049edf;
  background: #d3f2ff;
  color: #049edf;
  top: auto;
}


/**
 * button utility
**/

.btn:has(.btn-over-txt),
.btn:has(.btn-under-txt) {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: stretch;
}

.btn-over-txt {
  font-size: 12px;
  line-height: 1;
  text-align: center;
  margin: 0 0 4px;
}
.btn-over-txt a {
  color: var(--site-c-main)
}
.btn-under-txt {
  font-size: 12px;
  line-height: 1;
  margin: 12px 0 0;
  text-align: center;
}
.btn-under-txt a {
  font-size: 17px;
  margin-top: 15px;
  color: var(--site-c-main);
  display: inline-block;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .btn-under-txt a {
    font-size: 16px;
  }
}


/**
 * button 横並びボタン
**/
.button-group,
.btnBox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px;
}
.button-group .btn,
.btnBox .btn {
  width: calc( ( 100% - 8px * 1 ) / 2 );
  max-width: none;
  margin: 0;
}
.button-group .btn--small,
.btnBox .btn--small {
  width: calc( ( 100% - 8px * 3 ) / 4 );
  max-width: none;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .button-group,
  .btnBox {
    gap: 4px;
  }
  .button-group .btn,
  .btnBox .btn {
    width: calc( ( 100% - 4px * 1 ) / 2 );
  }
  .button-group .btn--small,
  .btnBox .btn--small {
    width: calc( ( 100% - 4px * 3 ) / 4 );
  }
}


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


/**
 * formset form
**/
@media screen and (min-width: 768px) {
  .formset {
    margin-bottom: 30px;
    padding: 40px 40px;
    background: #fff;
    border: 1px solid #e9eced;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
  }
}
@media screen and (max-width: 767px) {
  .formset {
    padding-bottom: 20px;
    border-bottom: 1px solid #e9eced
  }
}

.formset__head {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .formset__head {
    font-size: 20px;
  }
}

.formset__field-group {
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  border-radius: 10px;
  border: 1px solid #e9eced;
  background: #fff;
  margin: 0 0 30px;
  padding: 40px;
}
.formset__field-group:last-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .formset__field-group {
    padding: 20px;
  }
}
.formset__field-group .formset__ttl--indent {
  padding-left: 20px;
}
.formset__ttl.formset__ttl--indent::before {
  content: '‐';
}

.formset__item {
  width: 100%;
  display: table;
  margin-bottom: 20px;
}
.formset__item:last-child {
  margin-bottom: 0;
  border: none;
}
.formset__item:last-child .formset__ttl, .formset__item:last-child .formset__input {
  padding-bottom: 0
}
.formset__ttl {
  width: 280px;
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 20px 10px;
  font-weight: 700
}
.formset__must {
  height: 20px;
  padding: 0 8px;
  color: #fff;
  font-size: 10px;
  background: #ec5937;
  border-radius: 0;
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 959px) {
  .formset__ttl {
    width: 210px
  }
}
@media screen and (max-width: 767px) {
  .formset__ttl {
    width: 100%;
    display: block;
    padding: 0 0 20px
  }
}


.formset__input {
  display: table-cell;
  padding: 0 0 20px 40px;
}
@media screen and (max-width: 767px) {
  .formset__input {
    width: 100%;
    display: block;
    padding: 0 0 20px
  }
}

.formset__input img {
  width: 180px;
  height: 180px;
  margin-bottom: 10px;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  border-radius: 10px;
}
.formset__input img + [type="checkbox"][name*="DEL"] {
  margin-left: 1ex;
}
@media screen and (max-width: 767px) {
  .formset__input img {
    width: 120px;
    height: 120px;
  }
}

.formset__input ul li {
  display: inline-flex;
  margin: 0 10px 10px 0;
}
.input_select, .formset__input [type="text"], .formset__input [type="number"], .formset__input [type="date"], .formset__input [type="email"], .formset__input [type="password"], textarea {
  width: 100%;
  max-width: 500px;
  padding: 15px;
  font-size: 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
}
.input_select {
  width: auto;
}
textarea {
  max-width: none;
}
@media screen and (min-width: 768px) {
  /* NOTE: width関連の調整以外は記述しないでください */
  .formset__input [type="text"], .formset__input [type="number"], .formset__input [type="date"], .formset__input [type="email"], .formset__input [type="password"] {
    width: auto;
    max-width: 500px;
  }
  .formset__input [type="text"], .formset__input [type="email"], .formset__input [type="password"] {
    min-width: 200px;
  }
  .formset__input .input-size--zip {
    width: 200px;
  }
  .login .formset__input [type="text"], 
  .login .formset__input [type="email"], 
  .login .formset__input [type="password"], 
  .formset__input .input-size--full {
    min-width: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  /* NOTE: width関連の調整以外は記述しないでください */
  .formset__input [type="text"], .formset__input [type="email"], .formset__input [type="password"] {
    width: 100%;
    max-width: 500px;
  }
  .formset__input [type="number"], .formset__input [type="date"] {
    width: 200px;
  }
  .formset__input .input-size--zip {
    width: 200px;
  }
  .formset__input .input-size--full {
    min-width: 0;
    width: 100%;
  }
}


/* formset button */
.formset__btn {
  margin-left: auto;
  margin-right: auto;
}
.formset__btn--back {
  margin-top: 10px;
}
.formset__btn--back button {
  color: var(--site-c-main);
  background: #fff;
  border: 1px solid var(--site-c-main);
}
.formset__btn--back button:hover {
  background: #edf9ff;
}
.txt-delete {
  top: -3px;
}

/* その他調整用 */
/* 注釈などのspan */
.formset__notes {}
*+.formset__notes {margin-left: 1ex;}
.formset__notes+* {margin-left: 1ex;}
/* 上限額 */
.formset__amount {
  max-width: 100px !important;
  text-align: right;
}


/* table style form */
.tableset {
  --tableset-th-width: 260px;
  --tableset-td-padding: 20px;
  border-collapse: collapse;
  border: 1px solid var(--site-c-border);
  background: #fff;
  table-layout: fixed;
  width: 100%;
  margin: 0 0 32px;
}
.tableset.tableset--layout-auto {
  --tableset-td-padding: 12px;
  table-layout: auto;
}
@media only screen and (max-width: 959px) {
  .tableset {
    --tableset-th-width: 200px;
    --tableset-td-padding: 20px;
  }
  .tableset.tableset--layout-auto {
    --tableset-td-padding: 12px;
  }
}
@media screen and (max-width: 767px) {
  .tableset {
    --tableset-th-width: 120px;
    --tableset-td-padding: 12px;
  }
  .tableset.tableset--layout-auto {
    --tableset-td-padding: 8px;
  }
}
@media screen and (max-width: 400px) {
  .tableset {
    --tableset-th-width: 120px;
    --tableset-td-padding: 10px;
  }
  .tableset.tableset--layout-auto {
    --tableset-td-padding: 6px;
  }
}

.tableset__list {
  display: table-row;
  border-bottom: 1px solid var(--site-c-border-light);
  text-align: left;
  width: 100%;
}
.tableset__list:last-child {
  border: none;
}
@media screen and (max-width: 767px) {
  *:not(.outline__content) .tableset>.tableset__list {
    display: block;
    border-bottom: none;
  }
}

.tableset__ttl {
  display: table-cell;
  background: #eef9ff;
  border-right: 1px dashed var(--site-c-border);
  font-weight: 700;
  font-feature-settings: 'palt';
  width: var(--tableset-th-width);
  padding: var(--tableset-td-padding);
  vertical-align: middle;
}
.tableset__list:has(.tableset__ttl:nth-child(2)) .tableset__ttl {
  width: calc( var(--tableset-th-width) / 2 );
}

.tableset__txt {
  display: table-cell;
  padding: var(--tableset-td-padding);
}
.tableset__txt + .tableset__txt {
  border-left: 1px dashed var(--site-c-border);
}
@media screen and (max-width: 767px) {
  *:not(.outline__content) .tableset>.tableset__ttl {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 1ex;
    border-right: none;
  }
  *:not(.outline__content) .tableset>.tableset__txt {
    display: block;
    width: 100%;
    border-right: none;
  }
}

.tableset__ttl-small {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.25;
  margin-top: 0.75em;
}
.tableset__ttl-notes {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.25;
  margin-top: 0.75em;
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
  .tableset__ttl-small {
    font-size: 10px;
    margin: 0;
  }
  .tableset__ttl-notes {
    font-size: 10px;
    margin: 0;
  }
}

.tableset__must {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  color: #ec5937;
  font-size: 10px;
  height: auto;
  padding: 0;
  float: right;
}
@media screen and (max-width: 767px) {
  .tableset__must {
    float: none;
    margin: 0 0 0 auto;
  }
}


.tableset__txt img {
  width: 180px;
  height: 180px;
  margin-bottom: 10px;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .tableset__txt img {
    width: 120px;
    height: 120px;
  }
}
.tableset__txt > p {
  margin-bottom: 10px;
}
.tableset__txt > *+p {
  margin-top: 10px;
}
.tableset__txt > *+p:last-child {
  margin-bottom: 0;
}
.tableset__txt ul li {
  display: inline-flex;
  margin: 0 10px 10px 0
}
.tableset__txt ul:has([type="radio"]),
.tableset__txt ul:has([type="checkbox"]) {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 1ex 2ex;
}
.tableset__txt ul:has([type="radio"]) li,
.tableset__txt ul:has([type="checkbox"]) li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  gap: 1ex;
}
.tableset__txt ul [type="radio"],
.tableset__txt ul [type="checkbox"] {
  margin: 0;
}

.input_select, .tableset__txt [type="text"], .tableset__txt [type="number"], .tableset__txt [type="date"], .tableset__txt [type="email"], .tableset__txt [type="password"], textarea {
  width: 100%;
  max-width: 500px;
  padding: 15px;
  font-size: 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
}
.input_select {
  width: auto;
}
textarea {
  max-width: none;
}
@media screen and (min-width: 768px) {
  /* NOTE: width関連の調整以外は記述しないでください */
  .tableset__txt [type="text"], .tableset__txt [type="number"], .tableset__txt [type="date"], .tableset__txt [type="email"], .tableset__txt [type="password"] {
    width: auto;
    max-width: 500px;
  }
  .tableset__txt [type="text"], .tableset__txt [type="email"], .tableset__txt [type="password"] {
    min-width: 200px;
  }
  .tableset__txt .input-size--zip {
    width: 200px;
  }
  .tableset__txt .input-size--full {
    min-width: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  /* NOTE: width関連の調整以外は記述しないでください */
  .tableset__txt [type="text"], .tableset__txt [type="email"], .tableset__txt [type="password"] {
    width: 100%;
    max-width: 500px;
  }
  .tableset__txt [type="number"], .tableset__txt [type="date"] {
    width: 200px;
  }
  .tableset__txt .input-size--zip {
    width: 200px;
  }
  .tableset__txt .input-size--full {
    min-width: 0;
    width: 100%;
  }
}

/* tableset button */
.tableset__btn {
  margin-left: auto;
  margin-right: auto
}

/* tableset header */
/* NOTE: htmlには、.tableset__listが必要です */
.tableset__header.tableset__list .tableset__txt:nth-child(n),
.tableset__header.tableset__list .tableset__txt,
.tableset__header.tableset__list .tableset__ttl:nth-child(n),
.tableset__header.tableset__list .tableset__ttl {
  display: table-cell;
  width: auto;
}
.tableset__header.tableset__list .tableset__ttl:nth-child(n),
.tableset__header.tableset__list .tableset__ttl {
  background: #eef9ff;
}
.tableset__header.tableset__list .tableset__txt:nth-child(n),
.tableset__header.tableset__list .tableset__txt {
  background: #eef9ff;
}

/* tableset .tableset--break-1st-child-on-sp */
/* NOTE: レスポンシブで、th:first-childを行の上部へ固定 */
@media screen and (max-width: 767px) {
  .tableset.tableset--break-1st-child-on-sp .tableset__ttl:first-child {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--site-c-border-light);
    border-right: 1px solid var(--site-c-border-light);
    border-bottom: 1px dashed var(--site-c-border);
    border-left: 1px solid var(--site-c-border-light);
    background: #f3f3f3;
    width: auto;
    height: calc( 1lh + var(--tableset-td-padding) * 2 );
    gap: 1ex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 1;
    inset: 0;
  }
  .tableset.tableset--break-1st-child-on-sp .tableset__ttl br {
    display: none;
  }
  .tableset.tableset--break-1st-child-on-sp .tableset__list {
    position: relative;
    transform: translate(0,0);
  }
  .tableset.tableset--break-1st-child-on-sp .tableset__ttl:first-child~* {
    padding-top: calc( 1lh + var(--tableset-td-padding) * 3 );
  }
  /* headerではth:first-childを表示しない */
  .tableset.tableset--break-1st-child-on-sp .tableset__header .tableset__ttl:first-child {
    opacity: 0;
    pointer-events: none;
  }
  .tableset.tableset--break-1st-child-on-sp .tableset__header .tableset__ttl:first-child~* {
    padding-top: var(--tableset-td-padding);
  }
  /* その他の要素 */
  .tableset__txt [type="text"], .tableset__txt [type="number"], .tableset__txt [type="date"], .tableset__txt [type="email"], .tableset__txt [type="password"] {
    padding-inline: 6px;
  }
  .tableset.tableset--break-1st-child-on-sp .label-check {
    white-space: nowrap;
  }
}


/* error for jquery.validate.js (CDN https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.5/jquery.validate.js) */
/* NOTE: A type. 通常こちら（初回サブミット後のみの実行は利用しない場合） */
/*.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;
}*/
/* NOTE: B type. 初回サブミット後のみ実行する場合 */
.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: #eed1d1 !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;
}
.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;
}

/**
 * フォームその他のオリジナルフィールド
**/
/* date + time */
.booking-item-datepicker {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1ex;/* NOTE: 余白はここで調整 */
  max-width: 560px;
}
.booking-item-datepicker:has(.jquery-validate--error) {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
}
/* input date */
.booking-item-datepicker>[type="text"],/* NOTE: JSを使う場合 */
.booking-item-datepicker>[type="date"] {
  width: calc( 66.66% - 1ex * 4 - 1em * 2 );
}
/* select time */
.booking-item-datepicker>.select {
  padding: 0;
  font-size: 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 16.66%;
  min-width: 80px;
}
.booking-item-datepicker>.select>select {
  width: 100%;
  height: 56px;
}
.booking-item-datepicker>.select>select>option {
}
/* 単位 */
.booking-item-datepicker>.item--unit {
  display: inline-block;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .booking-item-datepicker {
    flex-flow: row wrap;
  }
  .booking-item-datepicker>[type="date"] {
    width: 100%;
  }
  .booking-item-datepicker>.select {
    min-width: 70px;
  }
}

/* date + selectable */
.booking-item-selectable {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  border-radius: 10px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  width: 100%;
  padding: 15px;
  gap: 1ex;/* NOTE: 余白はここで調整 */
}
.booking-item-selectable:has(.jquery-validate--error) {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
}
.booking-item-selectable:has(.select) {
  padding: 1ex 15px;
}
.booking-item-selectable>[type="checked"],
.booking-item-selectable>[type="radio"] {
  margin: 0;
}
/* input date */
.booking-item-selectable>[type="text"],/* NOTE: JSを使う場合 */
.booking-item-selectable>[type="date"] {
  width: calc( 66.66% - 1ex * 4 - 1em * 2 );
  height: 48px;
  padding-block: 4px;
}
.booking-item-selectable>.item--ttl {
}
.booking-item-selectable>.item--label {
  display: inline-block;
  white-space: nowrap;
}
/* select time */
.booking-item-selectable>.select {
  padding: 0;
  font-size: 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 16.66%;
  min-width: 80px;
}
.booking-item-selectable>.select>select {
  width: 100%;
  height: 48px;
}
.booking-item-selectable>.select>select>option {
}
/* 単位 */
.booking-item-selectable>.item--unit {
  display: inline-block;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .booking-item-selectable {
    flex-flow: row wrap;
  }
  .booking-item-selectable>[type="text"],
  .booking-item-selectable>[type="date"] {
    width: 100%;
  }
  .booking-item-selectable>.select {
    min-width: 70px;
  }
}


/**
 * エフェクト
**/
.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)
}


.item__number {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  max-width: 7em;
}
.formset__input span:not([class]) {
  margin-left: 5px;
}
.txt_em {
  font-weight: 700;
}

.txt_conversion {
  font-size: 16px;
  font-weight: bold;
  margin-left: 1em;
}
.formset__inner {
  border-radius: 10px;
  padding: 10px 10px 2px;
  margin: 10px 0 30px;
  background-color: #f2f2f2;
}
.formset__inner .formset__field-group {
  margin: 0 0 10px;
}
.formset__lower_01,
.formset__lower_02 {
  margin-top: -30px;
  border-radius: 10px;
  background-color: #eee;
}
.formset__lower_01 .formset__item {
  padding: 3px 10px 0;
}
.formset__lower_02 {
  margin-top: -30px;
  border-radius: 10px;
  background-color: #eee;
  margin-bottom: 50px;
}
.formset__lower_02 .formset__item {
  padding: 12px 10px 5px;
  margin: 0;
}
.formset__lower_02 .formset__ttl {
  padding: 0 0 0 10px;
}
.formset__lower_02 .formset__input {
  padding: 0 0 0 40px;
}
.formset__lower_02 .input_select {
  margin-bottom: 10px;
}
.formset__lower_03 {
  margin-top: -30px;
  border-radius: 10px;
  background-color: #eee;
  margin-bottom: 20px;
  padding: 10px 10px 0;
}
.c-head__formset__ttl {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05ex;
  line-height: 1.2;
  text-align: center;
  padding: 10px;
  margin-top: -10px;
  margin-bottom: 25px;
  border-radius: 6px;
  background-color: #f3f3f3;
}
.formset__h3box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: -40px 0 20px -40px;
}
.formset__h3 {
  background-color: #535d64;
  border-top-left-radius: 6px;
  font-size: 16px;
  color: #fff;
  padding: 8px 50px;
  margin-right: 1em;
  font-weight: bold;
  letter-spacing: 0.05ex;
}
.formset__txt {
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: .1rem;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .txt_conversion {
    margin-left: 0;
    margin-top: .5em;
  }
  .c-head__formset__ttl {
    background-color: unset;
    padding-top: 25px;
  }
  .formset__h3box {
    margin: 0 0 15px;
  }
  .formset__lower_01,
  .formset__lower_02 {
    margin-top: -40px;
    background-color: #fff;
  }
  .formset__lower_03 {
    margin-top: -60px;
    background-color: #fff;
  }
  .formset__lower_01 .formset__item,
  .formset__lower_02 .formset__item {
    padding: 15px 15px 0;
  }
  .formset__txt {
    text-align: left;
    margin-top: 20px;
  }
}
.img_error > img {
  width: 210px;
  height: auto;
}
.mb10 {margin-bottom: 10px;}
.mb20 {margin-bottom: 20px;}
.mb30 {margin-bottom: 30px;}