@charset "utf-8";

/** ***************************************************************************
 * タイトル
 * ************************************************************************* */

/** ***************************************************************************
 * 1
 */

.title-1 {
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  padding: 15px 60px;
  line-height: 1.3;
  font-family: 'NotoSerifCJKjp', serif;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  background-image:
    url("../_image/_common/title-1-bg-1.png") ,
    url("../_image/_common/title-1-bg-2.png");
  background-position:
    left bottom,
    right 12px;
  background-repeat:
    no-repeat,
    no-repeat;
  background-size:
    auto 48px,
    auto 32px;
  display: table;
  position: relative;
  z-index: 1;
}

.title-1::before {
  content: '';
  width: 100%;
  border-radius: 100px;
  border-top: 2px solid #6a3a0e;
  border-bottom: 2px solid #6a3a0e;
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
}

.title-1::after {
  content: '';
  width: 100%;
  border-radius: 100px;
  border-top: 2px solid #e9dbce;
  border-bottom: 2px solid #e9dbce;
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -4px;
}

.title-1 + * {
  margin-top: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  .title-1 {
    min-width: 610px;
    margin-bottom: 50px;
    padding: 15px 100px;
    font-size: 36px;
    background-position:
      10px bottom,
      right 12px;
    background-size:
      auto auto,
      auto auto;
  }

}

/** ***************************************************************************
 * 2
 */

.title-2 {
  margin-bottom: 20px;
  padding: 5px 1em;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  background-color: #6a3a0e;
}

.title-2 + * {
  margin-top: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  .title-2 {
    margin-bottom: 30px;
    padding: 10px 1em;
    font-size: 22px;
  }

}

/** ***************************************************************************
 * 3
 */

.title-3 {
  margin-bottom: 15px;
  color: #d28000;
  font-family: 'NotoSerifCJKjp', serif;
  font-size: 18px;
  font-weight: 700;
}

.title-3 + * {
  margin-top: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  .title-3 {
    font-size: 22px;
  }

}

/** ***************************************************************************
 * ボタン
 * ************************************************************************* */

.button-style {
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  border-radius: 0;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  background-color: transparent;
  appearance: none;
  box-sizing: border-box;
  transition:
    color 0.3s ease-in-out 0.0s,
    border-color 0.3s ease-in-out 0.0s,
    background-color 0.3s ease-in-out 0.0s !important;
  position: relative;
  z-index: 1;
}

.button-style::-webkit-search-decoration {
  display: none;
}

.button-style::focus {
  outline-offset: -2px;
}

/** ***************************************************************************
 * 1
 */

.button-style.button-1 {
  min-width: 280px;
  padding: 0 50px 0 70px;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 58px;
  font-size: 18px;
  font-weight: 900;
  border-radius: 10px;
  border: 4px solid #6a3a0e;
  background-color: rgba(106, 58, 14, 1.0);
  box-shadow: 6px 5px 0 1px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.button-style.button-1::after {
  content: '\e902';
  line-height: 1;
  font-family: icomoon;
  font-size: 22px;
  position: absolute;
  z-index: -1;
  top: calc(50% - 0.5em);
  transition:
    right 0.0s ease-in-out 0.3s,
    opacity 0.3s ease-in-out 0.0s;
  right: 30px;
  opacity: 0;
}

.button-style.button-1:hover::after {
  transition:
    right 0.3s ease-in-out 0.0s,
    opacity 0.3s ease-in-out 0.0s;
  right: 12px;
  opacity: 1;
}

.button-style.button-1 .icon {
  position: absolute;
  z-index: -1;
  top: -7px;
  left: 0;
  transition: transform 0.0s ease-in-out 0.0s;
}

.button-style.button-1:hover .icon {
  transition: transform 0.5s ease-in-out 0.0s;
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

.button-style.button-1 .icon img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 1;
}

.button-style.button-1.tel-link::after {
  content: none;
}

.button-style.button-1.web-link {
  border-color: #f2a700;
  background-color: rgba(242, 167, 0, 1.0);
}

.button-style.button-1.line-link {
  border-color: #00b900;
  background-color: rgba(0, 185, 0, 1.0);
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  .button-style.button-1 {
    min-width: 410px;
    padding: 0 70px 0 90px;
    line-height: 70px;
    font-size: 24px;
  }

  .button-style.button-1::after {
    font-size: 28px;
  }

  .button-style.button-1 .icon {
    top: 0;
    left: 10px;
  }

  .button-style.button-1 .icon img {
    -webkit-transform: scale(1.0);
            transform: scale(1.0);
  }

}

/** ***************************************************************************
 * 2
 */

.button-style.button-2 {
  min-width: 280px;
  padding: 10px 40px;
  color: #fff !important;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 900;
  border-radius: 10px;
  background-color: rgba(106, 58, 14, 1.0);
  box-shadow: 6px 5px 0 1px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.button-style.button-2 strong {
  font-size: 22px;
}

.button-style.button-2::after {
  content: '\e902';
  line-height: 1;
  font-family: icomoon;
  font-size: 22px;
  position: absolute;
  z-index: -1;
  top: calc(50% - 0.5em);
  transition:
    right 0.0s ease-in-out 0.3s,
    opacity 0.3s ease-in-out 0.0s;
  right: 30px;
  opacity: 0;
}

.button-style.button-2:hover::after {
  transition:
    right 0.3s ease-in-out 0.0s,
    opacity 0.3s ease-in-out 0.0s;
  right: 12px;
  opacity: 1;
}

.button-style.button-2 .icon {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.button-style.button-2:hover .icon {
  transition: transform 0.5s ease-in-out 0.0s;
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

.button-style.button-2 .icon img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  .button-style.button-2 {
    min-width: 340px;
    padding: 20px 40px;
    font-size: 20px;
  }

  .button-style.button-2 strong {
    font-size: 30px;
  }

  .button-style.button-2::after {
    font-size: 28px;
  }

  .button-style.button-2 .icon {
    top: 0;
    left: 10px;
  }

  .button-style.button-2 .icon img {
    -webkit-transform: scale(1.0);
            transform: scale(1.0);
  }

}

/** ***************************************************************************
 * エフェクト
 * ************************************************************************* */

.loading {
  position: relative;
  z-index: 1;
  transition:
    opacity 0.3s ease-in-out 0.0s,
    top 0.0s ease-in-out 0.3s;
  opacity: 0;
  top: 100px;
}

.loading.window-in {
  transition:
    opacity 1.0s ease-out 0.4s,
    top 0.8s ease-out 0.0s;
  opacity: 1;
  top: 0;
}

/** ***************************************************************************
 * 表示／非表示
 * ************************************************************************* */

/** ***************************************************************************
 * ブレイクポイント以下の場合に表示
 */

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  .active-sp {
    position: fixed;
    top: -100%;
    left: -100%;
    z-index: -99999;
  }

  br.active-sp {
    display: none;
  }

}

/** ***************************************************************************
 * ブレイクポイントを超える場合に表示
 */

.active-pc {
  position: fixed;
  top: -100%;
  left: -100%;
  z-index: -99999;
}

br.active-pc {
  display: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  .active-pc {
    position: static;
    z-index: inherit;
  }

  br.active-pc {
    display: inline;
  }

}

/** ***************************************************************************
 * テキスト
 * ************************************************************************* */

html:not(.mobile)
.tel-link {
  cursor: default;
  color: inherit;
  pointer-events: none;
  text-decoration: none;
}

.note {
  line-height: 1.5;
  font-size: 10px;
}

.note　+ *,
* + .note {
  margin-top: 5px !important;
}

.caption {
  line-height: 1.5;
  font-size: 10px;
}

.caption　+ *,
* + .caption {
  margin-top: 5px !important;
}

/** ***************************************************************************
 * リスト
 * ************************************************************************* */

/** ***************************************************************************
 * ul
 */

ul.default,
ul.default li {
  margin: 0;
  padding: 0;
}

ul.default {
  margin-left: 1.75em;
}

ul.default li ~ li {
  margin-top: 0.25em;
}

ul.default + * { margin-top:1.5em; }

* + ul.default { margin-top:1.5em; }

/** ***************************************************************************
 * ol
 */

ol.default,
ol.default li {
  margin: 0;
  padding: 0;
}

ol.default {
  margin-left: 1.75em;
}

ol.default li ~ li {
  margin-top: 0.25em;
}

ol.default + * { margin-top:1.5em; }

* + ol.default { margin-top:1.5em; }

/** ***************************************************************************
 * dl
 */

dl.default,
dl.default dt,
dl.default dd {
  margin: 0;
  padding: 0;
}

dl.default dt {
  font-weight: inherit;
}

dl.default dd {
  margin-top: 0.25em;
  margin-left: 2.25em;
  display: list-item;
  list-style: disc;
}

dl.default + * { margin-top:1.5em; }

* + dl.default { margin-top:1.5em; }

/** ***************************************************************************
 * テーブル
 * ************************************************************************* */

/** ***************************************************************************
 * デフォルト
 */

table.default { border-collapse:collapse; }

table.default + * { margin-top:1.5em; }

* + table.default { margin-top:1.5em; }

table.default caption {
  margin-bottom: 0.5em;
  color: #6a3a0e;
  font-size: 18px;
  font-weight: bold;
}

table.default caption {
  margin-bottom: 0.5em;
  text-align: left;
}

table.default > tbody > tr > th {
  font-weight: normal;
  border: solid 3px #fff;
}

table.default > tbody > tr > th[scope="col"] {
  color: #fff;
  background-color: #6a3a0e;
}

table.default > tbody > tr > th[scope="row"] {
  background-color: #f8efe6;
}

table.default > tbody > tr > td {
  border: solid 3px #fff;
  background-color: #fff6dc;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (max-width:736px) {

  table.default > tbody > tr > th {
    padding-left: 10px;
    padding-right: 10px;
  }

  table.default > tbody > tr > td {
    padding-left: 10px;
    padding-right: 10px;
  }

}

@media print, screen and (min-width:737px) {

  table.default caption {
    margin-bottom: 0.5em;
    font-size: 30px;
  }

}

/** ***************************************************************************
 * 1
 */

table.table-1 { border-collapse:collapse; }

table.table-1 + * { margin-top:1.5em; }

* + table.table-1 { margin-top:1.5em; }

table.table-1 caption {
  margin-bottom: 0.5em;
  color: #ff8400;
  font-size: 18px;
  font-weight: bold;
}

table.table-1 caption {
  margin-bottom: 0.5em;
  text-align: left;
}

table.table-1 > tbody > tr > th {
  font-weight: normal;
  border: solid 1px #b8b8b8;
}

table.table-1 > tbody > tr > th[scope="col"] {
  background-color: #f1f4f7;
}

table.table-1 > tbody > tr > th[scope="row"] {
  background-color: #f1f4f7;
}

table.table-1 > tbody > tr > td {
  border: solid 1px #b8b8b8;
  background-color: #fff;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (max-width:736px) {

  table.table-1 > tbody > tr > th {
    padding-left: 10px;
    padding-right: 10px;
  }

  table.table-1 > tbody > tr > td {
    padding-left: 10px;
    padding-right: 10px;
  }

}

@media print, screen and (min-width:737px) {

  table.table-1 caption {
    margin-bottom: 0.5em;
    font-size: 30px;
  }

}

/** ***************************************************************************
 * 2
 */

table.table-2 { border-collapse:collapse; }

table.table-2 + * { margin-top:1.5em; }

* + table.table-2 { margin-top:1.5em; }

table.table-2 caption {
  margin-bottom: 0.5em;
  color: #ff8400;
  font-size: 18px;
  font-weight: bold;
}

table.table-2 caption {
  margin-bottom: 0.5em;
  text-align: left;
}

table.table-2 > tbody > tr > th {
  font-weight: normal;
  border: solid 1px #c5a98f;
}

table.table-2 > tbody > tr > th[scope="col"] {
  background-color: #fff;
}

table.table-2 > tbody > tr > th[scope="row"] {
  color: #d28000;
  font-family: 'NotoSerifCJKjp', serif;
  font-size: 1.125em;
  font-weight: 700;
  background-color: #fff;
}

table.table-2 > tbody > tr > td {
  border: solid 1px #c5a98f;
  background-color: #fff;
}

table.table-2 > tbody > tr:nth-child(even) > * {
  background-color: #fcf7ee !important;
}

table.table-2 > tbody > tr > * small {
  font-size: 0.8em;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (max-width:736px) {

  table.table-2 > tbody > tr > th {
    padding-left: 10px;
    padding-right: 10px;
  }

  table.table-2 > tbody > tr > td {
    padding-left: 10px;
    padding-right: 10px;
  }

}

@media print, screen and (min-width:737px) {

  table.table-2 caption {
    margin-bottom: 0.5em;
    font-size: 30px;
  }

}
