@charset "UTF-8";

/**
 *
 * header
 * NOTE:
 *
**/
/**
 * header専用の変数
 * NOTE: header以外の変数の記述はbase.cssへ記述をお願いします。
**/
:root {
  --header-height: 90px;
}

@media screen and (max-width: 959px) {
  :root {
    --header-height: 80px;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --header-height: 50px;
  }
}

@media screen and (max-width: 320px) {
  :root {
    --header-height: 50px;
  }
}

/**
 * header
 * NOTE:
**/
header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: var(--header-height);
  padding: 0 30px;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all var(--site-duration) ease;
}
.sub header {
  border-bottom: 1px solid #e9eced;
}
@media screen and (max-width: 959px) {
  header {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 0 15px;
  }
}
@media screen and (max-width: 560px) {
  header {
    padding: 0 8px;
  }
}
@media screen and (max-width: 320px) {
  header {
    padding: 0 4px 0 8px;
  }
}

.header__logo a {
  display: block;
  width: 245px;
}

@media screen and (max-width: 959px) {
  .header__logo a {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .header__logo a {
    width: 100px;
  }
}

.head-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%
}

.head-nav>ul {
  display: flex;
  justify-content: flex-start;
  align-items: center
}

.head-nav>ul li {
  margin-right: 15px;
  position: relative
}

.head-nav>ul li a {
  font-size: 13px;
  font-weight: 700
}

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

.head-nav .head-btn,
.head-nav .head-btn-list {
  display: block;
  height: 40px;
  text-align: center;
}

.head-nav .head-btn a {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  background: var(--site-c-main);
  border-radius: 5px;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.head-nav .head-btn-list a {
  width: 100%;
  height: 100%;
  padding: 0 25px;
  font-size: 12px;
  font-weight: 700;
  background-color: #1b3e62;
  border-radius: 5px;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .head-nav {
    width: auto;
  }
  .head-nav>ul {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .head-nav {
    width: auto;
  }
  .head-nav .head-btn,
  .head-nav .head-btn-list {
    min-width: 50px;
    height: 35px;
  }
  .head-nav .head-btn a,
  .head-nav .head-btn-list a {
    padding: 0 5px;
    font-size: 8px;
    font-feature-settings: 'palt';
    line-height: 1.4;
  }
}

.item__badge {
  padding: 5px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 20px;
  width: auto;
  height: 20px;
  border-radius: 20px;
  background: rgba(236, 13, 13, .8);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: -7px;
  top: -2px;
  z-index: 1;
  transition: all 0.6s ease 0.2s
}

/**
 * ハンバーガー
 * NOTE:
**/
#nav-drawer {
  width: 30px;
  height: 20px;
  margin-left: 20px;
  display: unset
}

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

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 20px;
  position: relative
}

#nav-open span {
  position: absolute;
  height: 1px;
  width: 30px;
  background: #000;
  display: block;
  content: "";
  cursor: pointer
}

#nav-open span::before,
#nav-open span::after {
  position: absolute;
  height: 1px;
  width: 20px;
  background: #000;
  display: block;
  content: "";
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s
}

#nav-open span::before {
  bottom: -7px
}

#nav-open span::after {
  bottom: -14px
}

#nav-open:hover span,
#nav-open:hover span::before,
#nav-open:hover span::after {
  width: 30px;
  background: #109aa3
}

/*ハンバーガーアイコンをCSSだけで表現*/
/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: 0.3s ease-in-out
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  width: 90%;
  max-width: 350px;
  height: 100%;
  padding: 0 40px 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(105%);
  transform: translateX(105%)
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked~#nav-close {
  display: block;
  opacity: .5
}

#nav-input:checked~#nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .15)
}

#nav-content ul {
  margin-top: 40px
}

#nav-content ul li {
  margin: 0
}

#nav-content ul li a {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  display: block;
  position: relative
}

#nav-content ul li a::after {
  content: '';
  margin-top: -4px;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  #nav-content {
    max-width: 280px;
    padding: 0 20px 20px;
  }
  #nav-content ul {
    margin-top: 20px;
  }
  #nav-drawer {
    margin-left: 8px;
  }
}
@media screen and (max-width: 320px) {
  #nav-drawer {
    margin-left: 4px;
  }
}


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

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

/** 横並びボタン **/
.box_buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
}

.box_buttons .btn {
  width: 49%;
  max-width: none;
  margin: 0;
}

.box_buttons .btn a {
  height: 40px;
  font-size: 13px
}

.box_buttons .btn--small {
  width: auto;
  display: block;
}

.box_buttons .btn a:hover {
  color: #fff;
  background: #004097;
}

/**
 * footer
 * NOTE:
**/
footer {
  width: 100%;
  padding: 50px 0 0;
}

.foot__logo {
  width: 357px;
  max-width: 80%;
  margin: 0 auto
}

.foot__img {
  width: 100%;
  margin-top: 10px;
}

.sub footer {
  border: none
}

.foot-nav {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}

.foot-nav li {
  padding: 10px
}

.foot-nav a,
.foot-nav .link-non {
  color: #535d64;
  text-decoration: none
}

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

.foot-subnav {
  font-size: 12px;
  justify-content: flex-end;
  width: calc(100% - 200px);
}

.foot-box {
  display: flex;
  justify-content: space-between;
}

.foot-item {
  width: 200px;
  margin-top: 28px;
  color: #535d64;
  font-size: 12px;
}

@media screen and (max-width: 957px) {
  .foot__logo {
    width: 280px;
  }
}

@media screen and (max-width: 767px) {
  footer {
    padding: 40px 0 0
  }

  .foot-nav li {
    width: 100%
  }

  .foot-subnav {
    margin-top: 20px;
    width: 100%;
  }

  .foot__txt {
    margin: 10px 0 0
  }

  .foot-box {
    display: block;
    position: relative;
  }

  .foot-item {
    width: 100%;
    margin-top: 0;
    color: #535d64;
    text-align: right;
    padding: 0 0 10px;
    position: absolute;
    bottom: 0;
  }
}

.copyright {
  width: 100%;
  margin-top: 20px;
  padding: 15px 20px;
  background: var(--site-c-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

/**
 * パンくず
 * NOTE:
**/
.breadcrumb {
  /* NOTE: 以下のプロパティはbootstrap上書き対策 */
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #999;
  font-size: 12px;
  width: 100%;
  height: 40px;
}

.breadcrumb__item::before {
  content: '>';
  padding: 0 0.5ex;
}

.breadcrumb__item:first-child::before {
  content: none;
}

.breadcrumb__item a {
  color: inherit;
}

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

  .breadcrumb__item {
    display: inline;
    flex: 0 0 40%
  }
}

/**
 * 検索条件
 * NOTE:
**/
.search {
  padding: 0;
}

.search__area--main {
  padding: 24px 0;
  background: var(--site-c-light);
}

.search__area--result {
  background: var(--site-c-light);
  border-top: 1px dashed rgba(176, 221, 245, 0.6);
  padding: 12px 0;
}

.search.search--simple .search__area--main {
  background: transparent;
  padding: 0;
}

.search.search--simple .search__area--result {
  border-top: none;
  background: transparent;
  padding: 12px 0 0;
}

.search__area--result .l-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px
}

.search__word,
.search__filter {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px
}

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

  .search__word,
  .search__filter {
    gap: 8px
  }
}

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

  .search__word,
  .search__filter {
    gap: 10px 5px
  }
}

.search__sort {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px
}

.search__sort a {
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
}

.search__ttl {
  font-weight: 700
}

.search__item--kara {
  margin: 0 -10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
}

.search__submit {
  width: 110px;
  height: 60px;
  padding: 0;
  background: var(--site-c-main);
  cursor: pointer;
  color: #fff;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  position: relative
}
.search__clear > a {
  padding: 3px 14px;
  border-radius: 12px;
  color: #fff;
  background: var(--site-c-main);
}
@media screen and (max-width: 1135px) {
  .search__item--kara {
    margin: 0 -5px;
    font-size: 22px;
    line-height: 50px;
  }

  .search__submit {
    width: 90px;
    height: 50px;
  }
}

@media screen and (max-width: 959px) {
  .search__submit {
    width: 90px;
    font-size: 14px
  }
}

@media screen and (max-width: 767px) {
  .search__item--kara {
    margin: 0 -4px;
    font-size: 16px;
    line-height: 45px;
  }

  .search__item--submit {
    width: 100%
  }

  .search__submit {
    width: 100%;
    height: 45px;
    font-size: 15px
  }
}

.search__item [type="submit"]::before,
.search__item [type="button"]::before {
  content: '\f002';
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin: 0 1ex 0 0;
}
@media screen and (max-width: 767px) {
  .search__item [type="submit"]::before,
  .search__item [type="button"]::before {
    margin-right: 0;
  }
}


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

  .search__word,
  .search__sort,
  .search__filter {}

  .search__sort {}
}

/* .search__item */
@media screen and (max-width: 767px) {
  .search__item {
    width: 100%;
  }
}

/* label,input on .search__item */
.select__ttl {
  margin-bottom: 10px;
  color: var(--site-c-dark);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  gap: 10px;
}

.select__ttl img {
  width: auto;
  height: 24px;
}

.select__ttl::after {
  display: none !important
}

.select__date-range {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}

.select__date-range input:not([type="submit"]):not([type="button"]):not([type="radio"]):not([type="checkbox"]):not([type="hidden"]) {
  border: none;
  border: solid 2px #c1c1c1;
  height: 44px;
}

.select__date-range .item--kara {
  font-size: 28px;
  font-weight: 700;
  line-height: 44px;
}

@media screen and (max-width: 1135px) {
  .select__date-range .item--kara {
    font-size: 22px;
    /* line-height: 50px; */
  }
}

@media screen and (max-width: 959px) {
  .select__ttl {
    /* font-size: 18px; */
    gap: 5px;
    margin-bottom: 5px;
  }

  /* .select__ttl img {
    height: 24px;
  } */
}

@media screen and (max-width: 767px) {
  .select__ttl {
    font-size: 16px;
    gap: 2px;
    margin-bottom: 5px;
  }

  .select__ttl img {
    height: 21px;
  }

  .select__date-range .item--kara {
    font-size: 16px;
    line-height: 45px;
  }
}

.search__item .select {}

.search__item .select select {}

.search.custom .select select {
  border: solid 2px #c1c1c1;
  height: 44px;
}

@media screen and (max-width: 767px) {
  .search__item .select {
    width: 100%;
  }

  .search__item .select select {
    width: 100%;
  }

  .search__item .select [type="date"] {
    width: 100%;
  }
}

.search.custom {
  padding: 40px 0 0;
}

.search.custom .search__area--main {
  background: transparent;
}

.search.custom .modal__btn>span {
  height: 44px;
  box-shadow: 0 5px 0 0 #172e47;
  position: relative;
  top: 0;
  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;
}

.search.custom .select:has(select)::after {
  margin-top: -7px;
}

.search.custom .modal__btn:hover>span {
  box-shadow: 0 0 0 0 #172e47;
  top: 5px;
}

.search.custom .search__submit {
  font-size: inherit;
  height: 44px;
  box-shadow: 0 5px 0 0 #a6543a;
  position: relative;
  top: 0;
  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;
}

.search.custom .search__submit: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);
  top: 5px;
}

.search.custom .btn > span {
  font-size: inherit;
  height: 44px;
}

.search.custom .m-dashboard-button {
  width: 192px;
  margin-top: 0;
}

@media screen and (max-width: 959px) {
  .search.custom {
    padding: 30px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .search.custom .search__item--modal {
    width: 192px;
  }
  .search.custom .search__item--submit {
    width: 44px;
    margin-left: auto;
  }
  .search.custom .search__submit {
    width: 100%;
  }
}

/*----------------------------------------------------
	table
----------------------------------------------------*/
.search1-table {
  text-align: center;
  word-wrap: break-word;
}

.search1-table thead tr {
  border-bottom: 3px solid #dcdcdc;
  /* adminLTE color */
}

.search1-table tbody tr {
  background: #e8ebed;
  /* site color */
  background: #f9f9f9;
  /* adminLTE color */
  border-bottom: 3px solid var(--site-c-dark);
  border-bottom: none;
}

.search1-table tbody tr:nth-child(2n) {
  background: #fff;
}

.search1-table th {
  width: 70px;
  padding: 5px 5px;
  background: #7cd0fb;
  /* site color */
  background: #f3f3f3;
  /* adminLTE color */
  border: 1px solid var(--site-c-dark);
  /* site color */
  border: 1px solid #dcdcdc;
  /* adminLTE color */
  color: #333;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

.search1-table thead th {
  border: 1px solid #dcdcdc;
  /* adminLTE color */
}

.search1-table td {
  padding: 5px 5px;
  border: 1px solid var(--site-c-dark);
  /* site color */
  border: 1px solid #dcdcdc;
  /* adminLTE color */
  font-size: 15px;
}

.search1-table .w-large {
  width: 85px;
}

.search1-table .w-small {
  width: 40px;
}

.search1-table .fc__color {
  font-weight: 700;
}

.search1-table .search1-table__btn,
.search1-table .search1-table__btn--offer {
  width: 120px;
}

.search1-table__btn a {
  width: 110px;
  height: 33px;
  background: var(--site-c-dark);
  border-radius: 33px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-feature-settings: 'palt';
  display: flex;
  align-items: center;
  justify-content: center;
}

.search1-table__btn--offer a {
  width: 110px;
  height: 33px;
  background: #f25e30;
  border-radius: 33px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  font-feature-settings: 'palt';
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 959px) {
  .search1-table {}

  .search1-table td {
    min-width: 70px;
  }
}

/* .search1-table レスポンシブ用ラッパー */
/* NOTE: /html_a/css/common.css .table-responsiveと全て同様の仕様にいたしました。 */
/* NOTE: ただしPC、SP常にオーバーフローします。 */
.c-table-container {
  min-height: .01%;
  overflow: visible;
}

.c-table-container>[class*="-table"],
.c-table-container>.table {
  width: auto;
  min-width: 100%;
}

.c-table-container>[class*="-table"] th,
.c-table-container>.table th {
  white-space: nowrap;
}

.c-table-container>[class*="-table"] tr>*:first-child,
.c-table-container>.table tr>*:first-child {
  white-space: nowrap;
}

/*js*/
.c-table-container__nowrap {
  white-space: nowrap;
}

/*@media screen and (max-width: 767px) {*/
.c-table-container {
  border: 1px solid #d1d1d1;
  border: 1px solid #dcdcdc;
  width: 100%;
  margin-bottom: 15px;
  overflow-y: hidden;
  -ms-overflow-style: -ms-autohiding-scrollbar;

  border-radius: 3px;
  background: #fff;
  /*border-top: 3px solid #03708e;*/
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.c-table-container>[class*="-table"],
.c-table-container>.table {
  margin-bottom: 0;
}

.c-table-container>[class*="-table"]>thead>tr>th,
.c-table-container>.table>thead>tr>th,
.c-table-container>[class*="-table"]>thead>tr>td,
.c-table-container>.table>thead>tr>td,
.c-table-container>[class*="-table"]>tbody>tr>th,
.c-table-container>.table>tbody>tr>th,
.c-table-container>[class*="-table"]>tbody>tr>td,
.c-table-container>.table>tbody>tr>td {
  white-space: nowrap;
  width: auto;
}

/*}*/

/* cell has button */
.c-table-container>[class*="-table"]>thead>tr>th:has([class*="btn"]),
.c-table-container>.table>thead>tr>th:has([class*="btn"]),
.c-table-container>[class*="-table"]>thead>tr>td:has([class*="btn"]),
.c-table-container>.table>thead>tr>td:has([class*="btn"]),
.c-table-container>[class*="-table"]>tbody>tr>th:has([class*="btn"]),
.c-table-container>.table>tbody>tr>th:has([class*="btn"]),
.c-table-container>[class*="-table"]>tbody>tr>td:has([class*="btn"]),
.c-table-container>.table>tbody>tr>td:has([class*="btn"]) {
  padding-inline: 4px;
}

/* button */
.c-table-container>[class*="-table"] [class*="btn"],
.c-table-container>.table [class*="btn"],
.c-table-container>[class*="-table"] [class*="btn"] a,
.c-table-container>.table [class*="btn"] a {
  width: 100%;
  padding-inline: 1ex;
}

.c-table-container>[class*="-table"] [class*="btn"]:has(a),
.c-table-container>.table [class*="btn"]:has(a) {
  padding-inline: 0;
}

/**
 * modal
 * NOTE:
**/
/****************modal****************/
.modal-drawer,
#modal-drawer {
  color: #000;
}

.modal-unshown {
  display: none
}

.modal__btn>span {
  width: 180px;
  height: 60px;
  padding: 0;
  background: var(--site-c-light);
  cursor: pointer;
  color: var(--site-c-dark);
  border: 2px solid var(--site-c-dark);
  border-radius: 60px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

@media screen and (max-width: 1135px) {
  .modal__btn>span {
    width: 150px;
    height: 50px;
  }
}

@media screen and (max-width: 959px) {
  .modal__btn>span {
    width: 120px;
    font-size: 12px
  }
}

@media screen and (max-width: 767px) {
  .search__item--modal {
    width: 100%
  }

  .modal__btn>span {
    width: 100%;
    min-width: 100px;
    height: 45px;
    font-size: 11px
  }

  .search__item--modal .modal__btn>span {
    font-size: 15px
  }
}

.modal__btn:hover>span {
  background: var(--site-c-dark);
  color: #fff;
}

.modal-open,
#modal-open {
  display: block;
}

.modal-close,
#modal-close {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
  z-index: 1000
}

.modal-content,
#modal-content {
  overflow: auto;
  position: fixed;
  width: 900px;
  height: 80%;
  top: calc(50% - 80%/2);
  left: calc(50% - 800px/2);
  padding: 20px 20px 0;
  background: #fff;
  border: 20px solid #fff;
  transform: translateX(180%);
  opacity: 0;
  border-radius: 6px;
  z-index: 1001
}

.modal-input:checked~.modal-close,
#modal-input:checked~#modal-close {
  display: block;
  opacity: .5
}

.modal-input:checked~.modal-content,
#modal-input:checked~#modal-content {
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
  opacity: 1
}

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

  .modal-content,
  #modal-content {
    width: 80%;
    left: calc(50% - 80%/2);
    padding: 10px
  }
}

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

  .modal-content,
  #modal-content {
    width: 98%;
    left: calc(50% - 98%/2);
    border: none;
    padding: 20px 10px
  }
}

.modal__submit {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: #fff;
  text-align: center;
  width: 100%;
  padding: 15px 0;
  gap: 15px;
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.modal__submit .btn {
  margin: 0;
}

.modal__submit .btn:only-child {
  margin: 0 auto;
}

.modal-content .table th,
.modal-content .table td,
#modal-content .table th,
#modal-content .table td {
  padding: 10px 20px
}

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

  .modal-content .table td,
  #modal-content .table td {
    padding: 10px 10px 15px
  }
}

/**
 * result
 * NOTE:
**/
/* header (.subpage-head level) */
.result-head {
  background: var(--site-c-lighter);
  background: linear-gradient(0deg, var(--site-c-lighter) 0%, #fff 100%);
  background: #fff;
  color: var(--site-c-dark);
  padding: 32px 0;
}

.result-head__ttl {
  color: inherit;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--site-font-family-maru);
}

@media only screen and (max-width: 767px) {
  .result-head {
    padding: 16px 0;
  }

  .result-head__ttl {
    font-size: 18px;
  }
}

/* reccount */
.result-reccount {
  color: var(--site-c-dark);
  padding: 0;
}

.result-reccount__txt {
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .result-reccount__txt {
    font-size: 11px;
  }
}

/* list section */
.result {}

/* list wrapper */
.result__list {}

/* list item */
.result__item {
  width: 100%;
  margin-bottom: 30px;
  padding: 30px;
  background: #fff;
  border: 1px solid #e9eced;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.result__img {}

.result__img img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  border-radius: 10px
}

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

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

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

.result__desc {
  width: 100%;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.result__name {
  font-size: 12px
}

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

.result__bottom {
  margin-top: 10px
}

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

.result__profile li {
  margin-top: 5px;
  color: #535d64;
  line-height: 1
}

.result__note {
  width: 100%;
  padding: 40px;
  background: #fff;
  font-size: 18px;
  text-align: center
}

.result__btn {
  margin: 20px auto 0;
}

.result__btn a {
  font-size: 18px
}

@media screen and (max-width: 959px) {
  .result__item {
    padding: 15px
  }
}

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

  .result__img {
    position: absolute
  }

  .result__img img {
    width: 60px;
    height: 60px
  }

  .result__desc {
    margin-left: 0
  }

  .result__top {
    padding-left: 70px
  }

  .result__ttl {
    margin-bottom: 5px;
    font-size: 18px;
  }

  .result__btn a {
    height: 45px;
    font-size: 15px
  }

  .result__note {
    padding: 20px;
    font-size: 15px;
    text-align: left;
  }
}

/**
 * カード型リスト
 * NOTE:
**/
.card__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.card__item {
  width: calc((100% - 80px) / 3);
  background: #fff;
  border: 1px solid #b2cbd8;
}

@media screen and (max-width:959px) {
  .card__list {
    gap: 20px;
  }

  .card__item {
    width: calc((100% - 40px) / 3);
  }
}

@media screen and (max-width: 767px) {
  .card__list {
    gap: 10px;
  }

  .card__item {
    width: calc((100% - 10px) / 2);
  }
}

.card__img {
  width: 100%
}

.card__img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  font-family: 'object-fit: cover;'
}

.card__desc {
  width: 100%;
  padding: 20px;
}

.card__rate {
  margin-bottom: 5px;
  color: #f00;
  font-weight: 700;
}

.card__ttl {
  font-size: 16px;
  font-weight: 700
}

.card__txt {
  margin-top: 5px;
  color: #313131;
  font-size: 15px;
  line-height: 1.25
}

.card__btn {
  margin-top: 10px;
}

.card__btn .btn--small {
  margin-top: 5px
}

@media screen and (max-width:959px) {
  .card__img img {
    height: 140px
  }
}

@media screen and (max-width:767px) {
  .card__desc {
    padding: 12px;
  }

  .card__ttl {
    font-size: 15px
  }

  .card__txt {
    font-size: 12px
  }
}


/**
 * スレッド型リスト
 * NOTE:
**/
.thread__list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  border: 1px solid #e9eced;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 30px;
  padding: 40px;
  gap: 15px;
}

.thread__item {
  border-radius: 4px;
  border: 1px solid #e9eced;
}

.thread__item a {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 2ex;
  padding: 15px;
  position: relative;
}

.thread__item a::after {
  content: '';
  margin-top: -4px;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}

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

.thread__item-data {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1ex;
}

.thread__item-data>dt {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: #f1f1f1;
  color: #333;
  padding: 2px 1ex;
}

.thread__item-data>dd {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2px 0;
}

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

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

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

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

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

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

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

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

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

.chat-header .c-head {
  width: 100%;
}

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

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

.chat__status .btn {
  border-radius: inherit;
  color: inherit;
  font-size: inherit;
  height: inherit;
  margin: 0;
  max-width: none;
}
.chat__status .btn a,
.chat__status .btn [type="button"],
.chat__status .btn [type="submit"],
.chat__status .btn button,
.chat__status .btn > span,
.chat__status .btn > label {
  box-shadow: none;
  border-radius: inherit;
  border: none;
  font-feature-settings: 'palt';
  font-size: inherit;
  height: inherit;
  padding: 8px;
  top: auto;
}
.chat__status .btn a:hover,
.chat__status .btn [type="button"]:hover,
.chat__status .btn [type="submit"]:hover,
.chat__status .btn button:hover,
.chat__status .btn > span:hover,
.chat__status .btn > label:hover {
  box-shadow: none;
  border: none;
  top: auto;
}

.chat__status input {
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .chat__status {
    font-size: 12px;
    width: auto;
    height: 48px;
    margin-bottom: 4px;
    padding: 6px;
  }
}

.chat__handle-name {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: stretch;
  border-radius: 10px;
  border: 1px solid var(--site-c-main);
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  min-width: 112px;
  width: auto;
  margin-bottom: 10px;
  padding: 0 8px;
  gap: 4px;
  float: left;
}
.chat__handle-name i {
  display: block;
  font-size: 11px;
  font-weight: 400;
  font-feature-settings: 'palt';
  line-height: 1;
}
.chat__handle-name span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .chat__handle-name {
    font-size: 10px;
    min-width: 0;
    width: auto;
    margin-bottom: 5px;
    padding: 6px;
  }
  .chat__handle-name i {
    font-size: 10px;
  }
  .chat__handle-name span {
    font-size: 13px;
  }
}

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

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

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

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

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

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

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

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

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

.faceicon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

@media only screen and (max-width: 767px) {
  .faceicon img {
    width: 25px;
    height: 25px;
  }
}

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

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

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

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

.left_balloon .balloon_div_right {
  background: #eee;
}

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

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

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

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

.enterprise {
  background: #ddd !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.chat-footer textarea {
  padding-bottom: 40px
}

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

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

.btn-file {
  height: 40px;
  margin-bottom: 2px;
}

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

@media only screen and (max-width: 767px) {
  .chat-footer textarea {
    max-height: 40vh;
    padding: 15px 10px 40px;
  }

  .chat-footer textarea::placeholder {
    font-size: 13px;
    line-height: 2
  }

  .submit__area {
    right: 10px;
  }

  .btn-file {
    height: 30px;
  }

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

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

/**
 * pagination
 * NOTE:
**/
.pagination {
  display: block;
}

.pagination__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.pagination span,
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

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

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

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

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

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

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

/**
 * outline-head
 * NOTE: 詳細ページのヘッダー部分
**/
/* outline header */
.outline-head {
  padding-bottom: 100px
}

.outline-head__img {}

.outline-head__img img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  border-radius: 10px
}

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

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

.outline-head__desc {
  width: 100%;
  margin-left: 20px;
  display: flex;
  flex-direction: column
}

.outline-head__name {
  font-size: 12px
}

.outline-head__ttl {
  margin: 10px 0;
  font-size: 24px;
  font-weight: 700
}

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

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

.outline-head__info li {
  margin-top: 5px;
  color: #535d64;
  line-height: 1
}

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

@media screen and (max-width: 767px) {
  .outline-head__item {
    flex-wrap: wrap
  }

  .outline-head__img {
    position: absolute
  }

  .outline-head__img img {
    width: 60px;
    height: 60px
  }

  .outline-head__desc {
    margin-left: 0
  }

  .outline-head__top {
    padding-left: 70px
  }

  .outline-head__ttl {
    margin-bottom: 5px;
    font-size: 18px
  }
}

/**
 * outline
 * NOTE: 詳細ページの一般のセクション
**/
.outline {
  padding: 0;
}

.page-m1 .outline {
  padding: 0;
}

.page-m2 .outline {
  background: #fff;
  padding: 40px 0;
}

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

.page-m2 .outline .l-container {
  max-width: 1200px;
}

/**
 * outline
 * NOTE: m1, m2 共通
**/
@media screen and (max-width: 767px) {
  .outline-head__btnarea {
    margin-top: 10px;
    gap: 5px;
  }

  .outline-head__btn {
    width: calc((100% - 10px) / 3);
  }

  .outline-head__btn:first-child,
  .outline-head__btn:nth-child(2) {
    width: calc((100% - 5px) / 2);
  }
}

.outline-head__btnarea {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.outline-head__btn {
  width: calc((100% - 40px) / 5);
}

.outline-head__btn a {
  height: 35px;
  font-size: 12px
}

.outline-head__btnarea_01 .outline-head__btn_01.oubo a {
  vertical-align: middle;
  height: 50px;
  line-height: 30px;
  border-radius: 4em;
  font-size: 20px;
}

.outline-head__btn_01>a {
  display: block;
  text-align: center;
  -ms-flex-align: center;
  border-radius: 8px;
  border: 1px solid var(--site-c-dark);
  background: #fff;
  color: var(--site-c-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1ex;
  width: 60%;
  margin: 0 0 10px 40%;
  padding: 10px;
}

.outline-head__btn_01>a:hover {
  color: #fff;
  background-color: var(--site-c-dark);
}

.outline-head__blacklist {
  margin-top: 10px;
  font-size: 12px;
  text-align: right
}

.outline__gallery ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: 20px;
}

.outline__gallery li {
  width: calc(33.333333% - 13.333333px);
}

.outline__gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  border: 6px solid #e7e7e7;
  border-radius: 8px;
}

@media only screen and (max-width: 767px) {
  .outline__gallery ul {
    gap: 10px;
  }

  .outline__gallery li {
    width: calc((100% - 10px) / 2);
    height: 120px;
  }

  .outline__gallery img {
    border: 4px solid #e7e7e7;
    border-radius: 8px;
  }
}

.outline__ttl {
  font-size: 22px;
  font-weight: 700;
  font-feature-settings: 'palt';
  color: inherit;
  letter-spacing: 0.05ex;
  line-height: 1.25;
  margin: 0 0 1em;
  padding: 0;
}

*+.outline__ttl {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .outline__ttl {
    font-size: 18px;
  }
}

.outline__subttl {
  border-radius: 3px;
  border: solid 2px var(--site-c-border);
  border: solid 1px var(--site-c-dark);
  background: rgba(238, 249, 255, 0.75);
  font-size: 14px;
  font-weight: 700;
  font-feature-settings: 'palt';
  color: var(--site-c-dark);
  color: rgba(0, 0, 0, 0.75);
  letter-spacing: 0.05ex;
  line-height: 1.25;
  width: fit-content;
  margin: 0 0 1em;
  padding: 0.75ex 0.5em;
}

*+.outline__subttl {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .outline__subttl {
    font-size: 14px;
  }
}

/**
 * outline
 * NOTE: search1, m_search1 style (m1側の詳細ページ)
**/
.outline-parts-head {
  margin: 15px 0 25px;
  display: flex;
  align-items: center;
  gap: 30px
}

.outline-parts-head__item {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px
}

.outline-parts__ttl {
  max-width: 110px;
  height: 35px;
  padding: 0 10px;
  background: var(--site-c-dark);
  border-radius: 35px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outline-parts_btnbox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 50px auto;
}

.btn__back {
  width: 100%;
  max-width: 8em;
}

.btn__back>a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  border: solid 1px var(--site-c-dark);
  background: #fff;
  color: var(--site-c-dark);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.125;
  width: 100%;
  height: 60px;
  position: relative;
  top: 0;
}

@media only screen and (max-width: 959px) {
  .outline-parts_btnbox {
    margin: 20px auto;
  }

  .outline-parts_btnbox .btn {
    margin-top: 0;
    max-width: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .outline-parts-head {
    margin-bottom: 15px
  }

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

  .outline-parts__ttl {
    height: 25px;
    font-size: 12px;
  }
}

/* outline-parts-info */
.outline-parts-info {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px
}

.outline-parts-info__item {
  width: calc((100% - 40px) / 3)
}

.outline-parts-info-table {
  width: 100%;
  border-bottom: 1px solid var(--site-c-dark);
}

.outline-parts-info__list {
  padding: 15px 10px;
  background: #fff;
  border: 1px solid var(--site-c-dark);
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  line-height: 1.2;
}

thead .outline-parts-info__list {
  background: #7cd0fb;
  justify-content: center;
}

tbody .outline-parts-info__list:nth-child(2n) {
  background: #e8ebed
}

tbody .outline-parts-info__ttl {
  width: 120px;
  font-weight: 700;
  font-size: 16px;
}

thead .outline-parts-info__ttl {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.outline-parts-info__txt {
  width: calc(100% - 120px);
  font-size: 15px;
}

@media only screen and (max-width: 959px) {
  tbody .outline-parts-info__ttl {
    width: 90px;
    font-size: 15px
  }

  .outline-parts-info__txt {
    font-size: 14px
  }
}

@media only screen and (max-width: 767px) {
  tbody .outline-parts-info__ttl {
    width: 100px
  }

  .outline-parts-info {
    margin-bottom: 20px;
    gap: 5px;
  }

  .outline-parts-info__item {
    width: 100%
  }
}



/* NOTE: 2025.02.10 パッチ用のスタイルからここ（本編）に移動 */
.outline-parts-info__ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.outline-parts-info__ul>li {
  padding: 0;
}
.outline-parts-info__ul>li+li {
  border-left: solid 1px var(--site-c-dark);
  padding-left: 0.5em;
}



/* outline-parts-comment */
.outline-parts-comment {
  margin-bottom: 20px
}

.outline-parts-comment__txt {
  margin-top: 10px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--site-c-dark);
}

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

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

/* outline-parts-tags */
.outline-parts-tags {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.outline-parts-tags__item {
  width: calc((100% - 36px) / 3);
  border: solid 1px var(--site-c-dark);
  background: #fff;
}

.outline-parts-tags-table {
  width: 100%;
}

.outline-parts-tags__list {
  padding: 15px 10px;
  background: #fff;
  border-bottom: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  text-align: left;
  line-height: 1.2;
}

thead .outline-parts-tags__list {
  background: var(--site-c-main);
  justify-content: center;
  border-bottom: solid 1px var(--site-c-dark);
}

thead .outline-parts-tags__ttl {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.outline-parts-tags__txt {
  width: calc((100% - 10px) / 2);
  height: 40px;
  background: var(--site-c-main);
  border-radius: 40px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outline-parts-tags__txt.non,
.outline-parts-tags__txt-01.non {
  background: #d7d9da
}
.outline-parts-tags__list-01 {
  background: var(--site-c-main);
  border-bottom: solid 1px var(--site-c-dark);
  text-align: center;
  line-height: 1.2;
}
.outline-parts-tags__ttl-01 {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 15px 10px;
}
.outline-parts-tags__cate {
  width: 22%;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  background-color: #dcdcdc;
}
.outline-parts-tags__txt-01 {
  width: 45%;
  height: 35.5px;
  background: var(--site-c-main);
  border-radius: 40px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
}
.outline-parts-tags__line {
  border-bottom: solid 3px #e7e7e7;
}
.outline-parts-tags__line:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 959px) {
  .outline-parts-tags__txt {
    font-size: 13px
  }
}

@media only screen and (max-width: 767px) {
  .outline-parts-tags__list {
    gap: 5px;
  }

  .outline-parts-tags__item:first-child .outline-parts-tags__txt,
  .outline-parts-tags__txt {
    width: calc((100% - 10px) / 3);
  }

  .outline-parts-tags {
    gap: 5px
  }

  .outline-parts-tags__item {
    width: 100%
  }
}

/**
 * search2, m_search2 layout style (m2側の詳細ページ)
 * NOTE:
**/
.outline-row {
  --outline-row-padding: 32px;
  --outline-col-padding: 24px;
  border-radius: 8px;
  border: solid 1px var(--site-c-dark);
  background: #fff;
  width: 100%;
  padding: 0 var(--outline-row-padding);
}

@media only screen and (max-width: 767px) {
  .outline-row {
    --outline-row-padding: 16px;
    --outline-col-padding: 16px;
    border-radius: 0;
    border-top: solid 1px var(--site-c-dark);
    border-right: none;
    border-bottom: solid 1px var(--site-c-dark);
    border-left: none;
    width: auto;
    margin: 0 calc(var(--container-padding) * -1);
    padding: 0 var(--outline-row-padding);
  }
}

.outline-col {
  padding: var(--outline-col-padding) 0 0;
}

*+.outline-col {
  border-top: 1px solid var(--site-c-border);
}

.outline__content {
  /*margin: 0 0 0 var(--outline-col-padding);*/
  padding: 0 0 0 var(--outline-col-padding);
  /*border-left: solid 2px var(--site-c-border);*/
}

@media only screen and (max-width: 767px) {
  .outline__content {
    padding: 0;
  }
}

.outline-tableset-price {}

.outline-tableset-price .item--tax-free {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.25;
}

.outline-tableset-price .item--tax {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.25;
}

@media only screen and (max-width: 767px) {
  .outline-tableset-price .item--tax-free {
    display: block;
  }

  .outline-tableset-price .item--tax {
    display: block;
  }
}

.outline__map {}

.outline__map iframe {
  width: 100%;
  height: 400px;
}

.m-outline-content__desc {
  font-feature-settings: 'palt';
  letter-spacing: 0.1ex;
  line-height: 2;
}

*+.m-outline-content__desc {
  margin-top: 1em;
}

/**
 * search2, m_search2 detail style (m2側の詳細ページ)
 * NOTE:
**/
.m-outline-head {
  padding: var(--outline-col-padding) 0;
}

.m-outline-head__ttl {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  border-left: solid 4px #7dd0fc;
  color: var(--site-c-dark);
  font-size: 32px;
  font-weight: 700;
  font-feature-settings: 'palt';
  letter-spacing: 0.05ex;
  line-height: 1.25;
  min-height: calc(2em * 1.25);
  margin: 0 0 0.5em;
  padding: 0 0 0 var(--outline-col-padding);
}

@media screen and (max-width: 767px) {
  .m-outline-head__ttl {
    font-size: 24px;
  }
}

.m-outline-head__nav {}

.m-outline-head__nav>ul {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
}

@media only screen and (max-width: 767px) {
  .m-outline-head__nav>ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    gap: 2ex;
  }
}

.m-outline-head__nav>ul>li {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 100%;
  height: calc(var(--outline-col-padding) * 2);
}

@media only screen and (max-width: 767px) {
  .m-outline-head__nav>ul>li {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: auto;
    height: auto;
  }
}

.m-outline-head__nav>ul>li>a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border: solid 2px var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
  font-weight: 700;
  font-feature-settings: 'palt';
  font-size: 16px;
  letter-spacing: 0.05ex;
  line-height: 1.25;
  text-align: center;
  width: 100%;
  height: 100%;
}

.m-outline-head__nav>ul>li:first-child>a {
  border-radius: 8px 0 0 8px;
}

.m-outline-head__nav>ul>li:last-child>a {
  border-radius: 0 8px 8px 0;
}

.m-outline-head__nav>ul>li+li a {
  position: relative;
}

.m-outline-head__nav>ul>li+li a::before {
  content: '';
  display: block;
  border-left: solid 1px #fff;
  position: absolute;
  top: 1ex;
  right: auto;
  bottom: 1ex;
  left: 0;
  z-index: 1;
  opacity: 0.33;
}

@media screen and (max-width: 1023px) {
  .m-outline-head__nav>ul>li>a {
    flex-flow: column nowrap;
    align-items: stretch;
    font-size: 14px;
  }

  .m-outline-head__nav>ul>li>a>span {
    display: block;
  }
}

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

  .m-outline-head__nav>ul>li+li a,
  .m-outline-head__nav>ul>li>a {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    border: none;
    background: transparent;
    color: inherit;
    font-weight: 700;
    font-feature-settings: 'palt';
    font-size: 12px;
    letter-spacing: 0.05ex;
    line-height: 1.25;
    text-align: left;
    width: auto;
    height: auto;
    padding: 0 0 0 2em;
    position: relative;
  }

  .m-outline-head__nav>ul>li+li a::before,
  .m-outline-head__nav>ul>li a::before {
    content: '\f063';
    color: var(--site-c-main);
    font-family: "Font Awesome 6 Free";
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: solid 2px;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    width: 1.75em;
    height: 1.75em;
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 1;
    transform: translate(0, -50%) scale(0.8);
    transform-origin: left center;
    opacity: 1;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }

  .m-outline-head__nav>ul>li:first-child>a,
  .m-outline-head__nav>ul>li:last-child>a {
    border-radius: 0;
  }
}

.m-outline-head__tags {
  font-size: 11px;
}

@media only screen and (max-width: 767px) {
  .m-outline-head__tags {
    font-size: 10px;
  }
}

.m-outline-head__tags>ul {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  font-size: inherit;
  gap: 1ex;
}

.m-outline-head__tags>ul>li {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  width: calc((100% - 7ex) / 8);
  height: calc(var(--outline-col-padding) * 1.5);
}

@media only screen and (max-width: 767px) {
  .m-outline-head__tags>ul>li {
    width: auto;
    height: calc(var(--outline-col-padding) * 1.5);
  }
}

.m-outline-head__tags>ul>li>* {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--site-c-border);
  background: #fff;
  color: inherit;
  font-weight: 700;
  font-feature-settings: 'palt';
  font-size: inherit;
  letter-spacing: 0.05ex;
  line-height: 1.25;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .m-outline-head__tags>ul>li>* {
    width: auto;
    height: auto;
    padding: 0 1ex;
  }
}

/**
 * search2, m_search2 slider style (m2側の詳細ページ)
 * NOTE:
**/
.m-outline-head__slider {
  --slider-gap: 24px;
  --slider-nav-width: 320px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: var(--slider-gap);
  padding: var(--slider-gap) 0;
}

@media screen and (max-width: 959px) {
  .m-outline-head__slider {
    --slider-gap: 24px;
    --slider-nav-width: 33.33%;
    padding: var(--slider-gap) 0;
  }
}

@media screen and (max-width: 767px) {
  .m-outline-head__slider {
    --slider-gap: 24px;
    --slider-nav-width: 100%;
    flex-flow: row wrap;
    padding: var(--slider-gap) 0;
  }
}

.m-outline-head__slider-main {
  width: calc(100% - var(--slider-gap) - var(--slider-nav-width));
}

@media screen and (max-width: 767px) {
  .m-outline-head__slider-main {
    width: 100%;
  }
}

.m-outline-head__slider-main-body {
  max-width: 100%;
}

.m-outline-head__slider-main-body img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.m-outline-head__btn-zoom {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: inherit;
  font-weight: 700;
  font-feature-settings: 'palt';
  font-size: 14px;
  letter-spacing: 0.05ex;
  line-height: 1.25;
  text-align: center;
  width: 144px;
  height: calc(var(--outline-col-padding) * 1.5);
  margin: 1em 0 0 auto;
  gap: 1ex;
}

.m-outline-head__btn-zoom>i {
  color: var(--site-c-main);
}

.m-outline-head__btn-zoom>span {}

@media only screen and (max-width: 767px) {
  .m-outline-head__btn-zoom {
    height: calc(var(--outline-col-padding) * 2);
  }
}

/* modaal */
.zoom-image {
  display: none;
}

body:has(.outline) .modaal-content-container {
  padding: 0;
}

.m-outline-head__slider-nav {
  --slider-thumb-gap: 16px;
  width: var(--slider-nav-width);
}

.m-outline-head__slider-thumb {}

.m-outline-head__slider-thumb-item {}

.m-outline-head__slider-thumb-item-body {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: var(--slider-thumb-gap);
}

.m-outline-head__slider-thumb-button {
  display: block;
  border-radius: 8px;
  border: solid 2px var(--site-c-border);
  width: calc((100% - var(--slider-thumb-gap) * 2) / 3);
  overflow: hidden;
}

.m-outline-head__slider-thumb-button.is--active,
.m-outline-head__slider-thumb-button:focus,
.m-outline-head__slider-thumb-button:hover {
  border: solid 2px var(--site-c-main);
}

.m-outline-head__slider-thumb-button img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .m-outline-head__slider-thumb-button {
    width: calc((100% - var(--slider-thumb-gap) * 4) / 5);
  }
}

.m-outline-head__slider-nav>p {
  font-size: 12px;
  font-weight: 400;
  font-feature-settings: 'palt';
  letter-spacing: 0.1ex;
  line-height: 1.25;
  text-align: center;
  margin: 1em 0 0;
  padding: 0;
}


/**
 * .m-outline-head のテキスト
 * NOTE:
**/
.m-outline-head__txt {
  text-align: right;
  font-size: 16px;
  margin-bottom: 10px;
}
.m-outline-head__txt>span {
  font-weight: 700;
}
.m-outline-head__txt>span::after {
  content: "｜";
}


/**
 * knowledge
 * NOTE:
**/
/* knowledge section */
.knowledge {}

/* knowledge list wrapper */
.knowledge__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}

/* knowledge list item */
.knowledge__item {
  width: calc((100% - 120px) / 4);
  background: #fff;
  border: 1px solid #b2cbd8;
}

@media only screen and (max-width: 959px) {
  .knowledge__list {
    gap: 20px
  }

  .knowledge__item {
    width: calc((100% - 60px) / 4);
  }
}

@media only screen and (max-width: 767px) {
  .knowledge__list {
    gap: 10px
  }

  .knowledge__item {
    width: calc((100% - 10px) / 2);
  }
}

.knowledge__img img {
  height: 200px;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.knowledge__desc {
  width: 100%;
  padding: 15px;
}

.knowledge__ttl {
  font-size: 16px;
  font-weight: 700;
}

.knowledge__txt {
  margin-top: 5px;
  color: #313131;
  font-size: 15px;
  line-height: 1.25;
}

.knowledge__txt--more {
  color: var(--site-c-main)
}

@media only screen and (max-width: 959px) {
  .knowledge__img img {
    height: 100px
  }
}

@media screen and (max-width: 767px) {
  .knowledge__desc {
    padding: 12px
  }

  .knowledge__ttl {
    font-size: 15px
  }

  .knowledge__txt {
    font-size: 12px
  }
}

#column__main {
  width: 100%;
  max-width: 700px;
  margin: 0 auto
}

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

.column__inner {
  padding: 30px;
  border: 1px solid #e9eced;
  border-radius: 10px;
  line-height: 2;
}

.column__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #535d64;
}

.column__img {
  margin: 20px 0;
}

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

  .column__ttl {
    font-size: 18px
  }

  #column__main .btn {
    font-size: 12px
  }
}

#about section {
  padding: 80px 0
}

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

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

.about__txt p {
  margin-bottom: 20px
}

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

.solve {
  background: url("../images/bg-color.jpg") no-repeat center top #fff;
  background-size: 100% auto;
  position: relative;
}

.solve__head-ttl {
  margin-bottom: 40px;
  color: var(--site-c-dark);
  font-size: 48px;
  font-weight: 700;
}

.solve__item {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 40px 40px;
}

.solve__item:first-child {
  margin-top: 0;
}

@media screen and (min-width: 960px) {
  .solve__img {
    margin-right: -500px;
  }

  .even .solve__img {
    margin-left: -500px;
    margin-right: auto
  }

  .solve__img img {
    width: 960px;
  }

  .even .solve__desc {
    max-width: 590px;
    order: 1;
  }

  .solve__desc {
    max-width: 580px;
    padding-left: 100px;
  }
}

.solve__num {
  position: absolute;
  top: 10px;
  left: 20px;
}

.solve__num--02 {
  left: 0
}

.solve__num--03 {
  left: 0
}

.solve__num img {
  width: auto;
  height: 60px;
}

.solve__ttl {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.25;
}

.solve__ttl-en {
  display: block;
  color: var(--site-c-dark);
  font-family: 'Urbanist', sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 1.25;
  padding: 8px 0;
}

.solve__ttl-jp {
  display: block;
  padding: 8px 15px;
  background: var(--site-c-dark);
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.25;
  width: fit-content;
}

.solve__txt {
  margin-top: 20px;
  font-size: 18px;
}

@media screen and (max-width: 959px) {
  .solve {
    background-size: 300% 100%;
  }

  .solve__item {
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
  }

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

  .solve__desc {
    order: 1
  }

  .solve__ttl {
    margin-left: 100px;
  }

  .solve__num {
    top: 0;
    left: 0;
  }

  .solve__ttl.second {
    display: none
  }

  .solve__ttl span {
    display: inline-block
  }
}

@media only screen and (max-width: 767px) {
  .solve__head-ttl {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .solve__item {
    margin-bottom: 35px;
    margin-top: 0;
  }

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

  .solve__ttl {
    margin-left: 70px;
    font-size: 20px;
  }

  .solve__ttl-en {
    font-size: 16px;
  }

  .solve__ttl-jp {
    font-size: 20px;
  }

  .solve__txt {
    font-size: 16px;
  }

  .solve__img img {}

  .solve__num img {
    height: 40px
  }
}

.kaiketsu {
  padding: 100px 0;
  background: #fff;
}

.kaiketsu .l-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 80px;
}

.kaiketsu__head {
  width: calc((100% - 80px)/2);
  background: url(../images/img-kaiketsu.png) no-repeat center bottom;
  background-size: 263px 234px;
}

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

.kaiketsu__ttl {
  font-size: 48px;
  font-weight: 700;
}

.kaiketsu__copy {
  margin-top: 20px;
  padding: 15px 20px;
  background: var(--site-c-dark);
  color: #fff;
  font-size: min(2vw, 34px);
  font-weight: 700;
  display: inline-block;
}

.kaiketsu__txt {
  margin-top: 20px;
  font-size: 18px
}

@media only screen and (max-width: 959px) {
  .kaiketsu .l-container {
    gap: 20px
  }

  .kaiketsu__head {
    background-size: 163px 142px;
  }

  .kaiketsu__ttl {
    font-size: 32px
  }
}

@media screen and (max-width: 767px) {
  .kaiketsu {
    padding: 40px 0;
  }

  .kaiketsu__head,
  .kaiketsu__img {
    width: 100%;
    background: none;
  }

  .kaiketsu__ttl {
    font-size: 28px
  }

  .kaiketsu__copy {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 20px
  }

  .kaiketsu__txt {
    margin-top: 10px;
    font-size: 16px;
  }
}

.flow__list {}

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

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

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

.flow__desc {
  text-align: center
}

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

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

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

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

  .flow__img {
    margin-bottom: 20px
  }
}

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

/**
 * ご利用ガイド
**/
.guide__item {
  width: 100%;
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
}

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

.guide__img {
  padding-right: 40px;
}

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

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

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

@media only screen and (max-width: 767px) {
  .guide__item {
    margin: 40px 0;
    flex-wrap: wrap
  }

  .guide__img {
    width: 100%;
    padding: 0;
  }

  .guide__img img {
    margin: 0 auto;
  }

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

  .guide__ttl {
    font-size: 18px
  }
}

.faq__area {
  margin-bottom: 30px;
}

.faq__anchor {
  margin-bottom: 50px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.faq__link {
  margin-right: 30px;
}

.faq__link a {
  width: 100%;
  height: 80px;
  padding: 0 5px;
  color: #a5a5a5;
  font-size: 18px;
  border-bottom: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__link a:hover,
.faq__link a.is-current {
  color: var(--site-c-main);
}

@media only screen and (max-width: 767px) {
  .faq__link {
    width: 32.333333%;
    margin-right: 1.5%;
  }

  .faq__link:nth-child(3n) {
    margin-right: 0
  }

  .faq__link a {
    font-size: 12px;
  }
}

.listAccordion {
  margin: 0 auto;
}

.listAccordion label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 0;
  border: 1px solid var(--site-c-dark);
  background: #fff;
  color: var(--site-c-dark);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  min-height: 72px;
  margin-top: 20px;
  padding: 0 80px;
  position: relative;
  cursor: pointer;
}

.listAccordion label:first-child {
  margin-top: 0;
}

.listAccordion label:hover {
  background: #fafafa;
}

@media screen and (max-width: 767px) {
  .listAccordion label {
    font-weight: 700;
    font-size: 16px;
    padding: 0 56px 0 80px;
  }
}

.listAccordion input[type=checkbox].on-off {
  display: none;
}

.listAccordion .listTips {
  background: var(--site-c-lighter);
  color: #1b1b1b;
  font-size: 18px;
  margin: 0;
  padding: 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .listAccordion .listTips {
    font-weight: 700;
    font-size: 16px;
  }
}

.listAccordion input[type=checkbox].on-off+.listTips {
  height: 0;
  overflow: hidden;
}

.listAccordion input[type=checkbox].on-off:checked+.listTips {
  border-radius: 0;
  border: 1px solid var(--site-c-dark);
  height: auto;
  min-height: 88px;
  margin: -1px 0 0;
  padding: 1em 1em 1em 80px;
}

/*開閉アイコン */
.listAccordion label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: #999;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -1px;
  transition: 0.3s;
}

.listAccordion label::after {
  content: '';
  width: 20px;
  height: 2px;
  background: #999;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -1px;
  transition: 0.3s;
  transform-origin: center center;
  transform: rotate(90deg);
}

@media screen and (max-width: 767px) {
  .listAccordion label::before {
    right: 20px;
  }

  .listAccordion label::after {
    right: 20px;
  }
}

.listAccordion .label_open::after {
  transform: rotate(0deg);
}

.listAccordion .label_open::before {
  opacity: 0;
}

.listAccordion label .iconq,
.listAccordion input[type=checkbox].on-off:checked+.listTips .icona {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: var(--site-c-dark);
  color: #fff;
  font-size: 40px;
  font-family: Arial, Helvetica, "sans-serif";
  font-weight: 400;
  line-height: 1;
  width: 70px;
  height: 70px;
  position: absolute;
  left: 0;
  top: 0;
}

.listAccordion input[type=checkbox].on-off:checked+.listTips .icona {
  background: transparent;
  color: var(--site-c-dark);
}

.faq .btn {
  margin: 0 auto;
}

/**
 * .guidance
 * NOTE:
**/
.guidance {
  text-align: center;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.guidance::before {
  content: '';
  display: block;
  border-radius: 50%;
  background: var(--site-c-lighter);
  width: 400vw;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 50%;
  bottom: 40px;
  z-index: 1;
  transform: translate(-50%, 0);
  pointer-events: none;
}

.guidance::after {
  content: '';
  display: block;
  background-image: url("../images/bgicon-maru.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  width: 176px;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 64px;
  bottom: 0;
  z-index: 1;
  transform: translate(0, 0);
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .guidance::after {
    width: 18vw;
    right: 20px;
    transform: translate(0, 0);
  }
}

.guidance>* {
  position: relative;
  z-index: 10;
}

.guidance__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
}

.guidance__ttl small {
  display: block;
  font-weight: inherit;
  font-size: 24px;
}

.guidance__ttl span {
  display: block;
  font-weight: inherit;
  font-size: inherit;
}

@media only screen and (max-width: 959px) {
  .guidance__ttl {
    font-size: 40px;
  }

  .guidance__ttl small {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .guidance__ttl {
    font-size: 28px;
  }

  .guidance__ttl small {
    font-size: 20px;
  }
}

.guidance__txt {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1ex;
  line-height: 1.75;
  text-align: center;
  margin: 0.5em 0 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .guidance__txt {
    text-align: left
  }
}

.guidance__tel {
  color: var(--site-c-dark);
  font-family: Arial, Helvetica, "sans-serif";
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -0.05ex;
  line-height: 1;
  text-align: center;
  margin-inline: auto;
}

.guidance__tel>a {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

*+.guidance__tel {
  margin-top: 30px;
}

.guidance__tel-under-txt {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1ex;
  line-height: 1.25;
  text-align: center;
  margin: 0.5em 0 0;
  padding: 0;
}

@media screen and (max-width: 560px) {
  .guidance__tel {
    font-size: 44px;
  }
}

.guidance .btn {
  margin-inline: auto;
}

.guidance *+.btn {
  margin-top: 30px;
}

/**
 * .terms
 * NOTE:
**/
@media screen and (min-width: 768px) {
  .terms__article {
    background: #fff;
    padding: 40px 40px 0;
    border: 1px solid #e9eced;
    border-radius: 10px
  }
}

.terms__article {
  width: 100%
}

.terms__ttl {
  font-size: 24px;
  font-weight: 700
}

.terms__item {
  margin-bottom: 40px
}

.terms__txt {
  margin-top: 10px
}

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

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

.policy__article {
  width: 100%
}

.policy__ttl {
  font-size: 24px;
  font-weight: 700
}

.policy__item {
  margin-bottom: 40px
}

.policy__txt {
  margin-top: 10px
}

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

/**
 * .contact
 * NOTE:
**/
.contact-end {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 80px 20px;
  background: #fff;
  border-radius: 10px;
  text-align: center
}

.contact-end__ttl {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05ex;
  line-height: 1.2;
}

.contact-end__txt {
  margin: 30px 0;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .contact-end {
    padding: 60px 20px
  }

  .contact-end__ttl {
    font-size: 26px;
  }

  .contact-end__txt {
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
  }
}

/**
 * Utility, Patch
 * NOTE:
 * パッチを追加する場合は、追加する前に
 * base.css、style.cssの元のセレクタの編集を必ず検討してください。
**/
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

.breadcrumb mark,
.outline-head mark,
.outline-eval mark {
  background-color: inherit !important;
  color: inherit !important;
}

.thumbnail {
  width: auto !important;
  height: auto !important;
  max-width: 150px;
  object-fit: cover;
}

.banner_item {
  height: 150px !important;
  margin: 10px;
}

.banner_item img {
  height: 100%;
}

.top-list.box-body .table form[name="form52"] {
  min-width: 100px;
}

.ifrm_mcontact {
  width: 97vw;
  height: 100vw;
}

@media screen and (max-width: 767px) {
  .ifrm_mcontact {
    width: 90vw;
  }
}

/* Utility, Patch m1, m2 ユニークなフィールドのスタイル */
/* .O2_MSEL02_DIV,
.O2_MSEL03_DIV,
.O2_DSEL01_DIV {
  background-color: #eee;
  margin: 0;
  padding: 5px 15px;
}

.O2_MSEL02_DIV {
  margin-top: -30px;
  border-radius: 10px;
  padding: 25px 15px 5px;
  margin-bottom: 20px;
}

.O2_DSEL01_DIV {
  margin-bottom: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.O2_MSEL05_DIV,
.O2_MSEL06_DIV,
.O2_MSEL10_DIV,
.O2_MSEL07_DIV,
.O2_MSEL08_DIV,
.O2_MSEL09_DIV,
.O2_DCHK09_DIV {
  background-color: #eee;
  margin: -30px 0 20px;
  padding: 15px 15px 0;
  border-radius: 10px;
}

.O2_DCHK09_DIV ul {
  max-width: 384px;
}

@media screen and (max-width: 767px) {
  .O2_DCHK09_DIV ul {
    max-width: 384px;
  }
} */


/* NOTE: 2025.02.10 base.cssへ移動（セレクタの名称調整）.formset_wrap_ttl → .formset__head */
/*
.formset_wrap_ttl {
  font-size: 25px;
  margin-bottom: 1.5em;
  font-weight: 700;
}
.formset_wrap {
  margin-bottom: 30px;
  padding: 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_wrap {
    padding: 20px;
  }
}
.formset_wrap .indent_02 {
  padding-left: 20px;
}
.formset__ttl.indent_02::before {
  content: "‐";
}
.formset__input [type="text"] {
  max-width: 200px;
}
.formset__input.mw50 [type="text"] {
  max-width: 500px;
}

*/

/* NOTE: 2025.02.10 base.cssへ移動 */
/*
.pc_disp {
  display: block;
}
.sp_disp {
  display: none;
}
*/

/* Utility, Patch m1, m2 テーブルセット 合計のスタイル */
/* NOTE: 2025.02.10 名称変更 .table--total → .tableset.tableset--total */
.tableset.tableset--total {
  border: solid 2px var(--site-c-dark);
}

tr.tableset__total th.tableset__ttl {
  background-color: var(--site-c-dark);
  color: #fff;
  font-size: 16px;
}
tr.tableset__total th.tableset__ttl span {
  font-weight: 400;
  display: block;
  font-size: 15px;
}
tr.tableset__total td.tableset__txt {
  color: var(--site-c-dark);
  background-color: #eee;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1ex;
}
@media only screen and (max-width: 767px) {
  .tableset__ttl span {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.25;
    display: block;
  }
/* NOTE: 2025.02.10 base.cssへ移動 */
/*
  .pc_disp {
    display: none;
  }
  .sp_disp {
    display: block;
    position: unset;
    margin-top: -2em;
  }
*/
  tr.tableset__total th.tableset__ttl,
  tr.tableset__total td.tableset__txt {
    font-size: 15px;
  }
  tr.tableset__total th.tableset__ttl span {
    font-size: 14px;
  }
}

/* NOTE: 2025.02.10 base.cssへ移動（セレクタの名称調整）.text_readonly → is--readonly,[readonly] */
/*
.formset__input>.text_readonly {
  background-color: #eee !important;
  color: #aaa !important;
}
.formset__input>.text_readonly::placeholder {
  color: #aaa;
}
*/

/* NOTE: 2025.02.10 使用箇所不明 */
#date1-error,
#time1-error,
#minutu1-error {
  display: none !important;
}


/* backのbtn */
/* NOTE: 2025.02.10 使用箇所不明 */
.back__btn > a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  border-radius: 50px;
  background: var(--site-c-main);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  width: 110px;
  height: var(--mypage-input-height);
  padding: 0 10px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .back__btn {
    max-width: 8em;
    margin-right: 10px;
  }
}
.btn__done > a {
  background-color: #a5a5a5;
}
.txt_red {
  color: #ec5937;
}
.txt_green {
  color: #00b050;
}
.data--poss {
  background-color: #00b050;
  padding: 1em;
  color: #fff;
  width: 100%;
  height:auto;
}
.txt-width {
  white-space: nowrap;
}