@charset "UTF-8";
/*! --------------------------------------------------------------------
------------------------------------------------------------------------
index
------------------------------------------------------------------------
--------------------------------------------------------------------- */
/* ========================================================
contact-form
======================================================== */
.contact-form {
  padding: 72px 16px;
  background-color: #e7e7e7;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 40px 16px;
  }
}

.contact-form .contact-form__in {
  margin: 0 auto;
  max-width: 680px;
}

.contact-form__table {
  width: 100%;
}

.contact-form__txt {
  margin-top: 20px;
  color: #d63712;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .contact-form__txt {
    padding: 0 20px;
  }
}
.contact-form tr {
  display: block;
}

.contact-form tr + tr {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contact-form tr + tr {
    margin-top: 28px;
  }
}

.contact-form__th,
.contact-form__td {
  display: block;
  position: relative;
  line-height: 1.4;
  box-sizing: border-box;
}

.contact-form__th {
  width: 100%;
  padding: 0;
  color: #1d1e1f;
  font-size: 1.6rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .contact-form__th {
    font-size: 1.6rem;
  }
}
.contact-form__td {
  width: 100%;
  padding-top: 12px;
}

@media screen and (max-width: 767px) {
  .contact-form tr {
    display: block;
  }

  .contact-form__th,
.contact-form__td {
    width: 100%;
    display: block;
    position: relative;
  }

  .contact-form__td {
    padding: 10px 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contact-form__td {
    padding: 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__th {
    padding: 0 0 8px;
    letter-spacing: 0.05em;
  }
}
/* 必須と任意
=========================================== */
.contact-form__table th:before {
  background: #999;
  content: "任意";
  font-size: 1.2rem;
  line-height: 1;
  vertical-align: 1px;
  margin-right: 8px;
  padding: 2px 8px 3px;
  letter-spacing: 0.1em;
  color: #fff;
}

.contact-form__table .req:before {
  background: #b89f38;
  content: "必須";
  color: #fff;
}

@media screen and (max-width: 767px) {
  .contact-form__table th:before {
    font-size: 1.2rem;
    position: static;
    vertical-align: 10%;
  }
}
/* 入力エラーのメッセージ
=========================================== */
.error {
  background-color: #d63712;
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  padding: 0 10px;
  margin-top: 10px;
}

.contact-form__td .caution_txt {
  display: block;
  margin-top: 8px;
}

/* 入力エリア
=========================================== */
.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=number],
.contact-form input[type=email],
.contact-form input[type=password],
.contact-form textarea,
.contact-form select {
  width: 100%;
  background-color: #fff;
  border: 2px solid rgba(29, 30, 31, 0.2);
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 400;
  vertical-align: baseline;
  padding: 12px 12px;
  transition: all 0.2s ease-out;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=number],
.contact-form input[type=email],
.contact-form input[type=password],
.contact-form textarea,
.contact-form select {
    padding: 12px;
    font-size: 1.6rem;
    min-height: 48px;
  }
}
/* min-heightを設定しないとchromeのautofillのフォントの違いで高さが変わる */
.contact-form input[type=text]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=number]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=password]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  padding: 12px 12px;
  background-color: #f5fbfe;
  box-shadow: 0 0 5px 0 rgba(12, 134, 202, 0.3);
  border-color: #3099d3;
  outline: none;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .contact-form input[type=text]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=number]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=password]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    padding: 12px;
  }
}

/* 送信ボタン
=========================================== */
.contact-form__btn {
  margin: 25px auto 0;
}

input[type=submit],
.submit_area input[type=button] {
  padding: 20px 80px;
}

input[type=submit] {
  display: block;
  margin: 20px auto 0;
  text-align: center;
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.18);
  background: #f4e803;
  color: #4d4d4d;
  text-decoration: none;
  cursor: pointer;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  input[type=submit] {
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  }
}

input[type=submit][disabled=disabled] {
  background-color: #eee;
  border-color: #bbb;
  color: #888;
}

/* チェックボックスデザイン */
input[type=checkbox] {
  vertical-align: middle;
  margin: 0 0.2rem 0 1rem;
}

.contact-form input[type=checkbox] {
  display: none;
}

.contact-form input[type=checkbox] + label {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  padding-right: 10px;
  font-size: 1.6rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .contact-form input[type=checkbox] + label {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 0;
    font-size: 1.4rem;
  }
}
.contact-form input[type=checkbox] + label:before,
.contact-form input[type=checkbox] + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 767px) {
  .contact-form input[type=checkbox] + label:before,
.contact-form input[type=checkbox] + label:after {
    top: calc(50% - 11px);
  }
}

.contact-form input[type=checkbox] + label:before {
  background: #fff;
  border: 2px solid rgba(29, 30, 31, 0.2);
}

.contact-form input[type=checkbox]:checked + label:after {
  top: 4px;
  height: 7px;
  border-left: 3px solid #b89f38;
  border-bottom: 2px solid #b89f38;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .contact-form input[type=checkbox]:checked + label:after {
    top: calc(50% - 11px + 3px);
  }
}

/* ラジオボタンデザイン */
input[type=radio] {
  vertical-align: middle;
  margin: 0 0.2rem 0 1rem;
}

.contact-form input[type=radio] {
  display: none;
}

.contact-form input[type=radio] + label {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  padding-right: 10px;
  font-size: 1.6rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .contact-form input[type=radio] + label {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 0;
    font-size: 1.4rem;
  }
}
.contact-form input[type=radio] + label:before,
.contact-form input[type=radio] + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 767px) {
  .contact-form input[type=radio] + label:before,
.contact-form input[type=radio] + label:after {
    top: 6px;
  }
}

.contact-form input[type=radio] + label:before {
  background: #fff;
  border-radius: 50%;
  border: 2px solid rgba(29, 30, 31, 0.2);
}

.contact-form input[type=radio]:checked + label:after {
  top: 6px;
  left: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #b89f38;
}
@media screen and (max-width: 767px) {
  .contact-form input[type=radio]:checked + label:after {
    top: 11px;
  }
}

.confirm {
  border: 3px solid #d63712;
}

/* ========================================================
s-finish,s-error
======================================================== */
.s-finish,
.s-error {
  margin: 50px 0 140px;
}

@media screen and (max-width: 767px) {
  .s-finish,
.s-error {
    margin: 30px 0 70px;
    padding: 0 20px;
  }
}
.s-finish-box,
.s-error-box {
  text-align: center;
}
.s-finish-box__txt,
.s-error-box__txt {
  line-height: 1.7;
}
.s-finish-box__txt a,
.s-error-box__txt a {
  text-decoration: underline;
}

.s-finish .btns,
.s-error .btns {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
.s-finish .btns .c-btn01,
.s-error .btns .c-btn01 {
  display: inline-block;
  padding: 0 15px;
}
.s-finish .btns .c-btn01 a,
.s-error .btns .c-btn01 a {
  width: 250px;
}

@media screen and (max-width: 767px) {
  .s-finish .btns,
.s-error .btns {
    margin-top: 50px;
    display: block;
    text-align: center;
  }
  .s-finish .btns .c-btn01,
.s-error .btns .c-btn01 {
    display: inline-block;
    padding: 0 15px;
  }
  .s-finish .btns .c-btn01 a,
.s-error .btns .c-btn01 a {
    width: 250px;
  }
  .s-finish .btns .c-btn01 + .c-btn01,
.s-error .btns .c-btn01 + .c-btn01 {
    margin-top: 30px;
  }
}
/* ========================================================
member-login-form
======================================================== */
.contact-form.member-login-form label:before,
.contact-form.member-login-form label:after {
  content: none;
}

.contact-form.member-login-form .member-login-box {
  display: block;
}
.contact-form.member-login-form .member-login-box > label {
  display: block;
  padding-bottom: 12px;
  padding-left: 0;
  width: auto;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .contact-form.member-login-form .member-login-box > label {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-form.member-login-form .member-login-box > label {
    padding-bottom: 4px;
  }
}
.contact-form.member-login-form .member-login-box > input {
  min-height: unset;
  width: 100%;
  font-size: 1.6rem;
}
@media screen and (max-width: 1023px) {
  .contact-form.member-login-form .member-login-box > input {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-form.member-login-form .member-login-box > input {
    width: 100%;
  }
}

.contact-form.member-login-form .member-login-box + .member-login-box {
  margin-top: 24px;
}

.contact-form.member-login-form .member-login-btn {
  text-align: center;
}
.contact-form.member-login-form .member-login-btn button {
  display: block;
  margin: 20px auto 0;
  text-align: center;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.18);
  background: #f4e803;
  color: #4d4d4d;
  text-decoration: none;
  cursor: pointer;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  font-size: 2rem;
  padding: 8px 40px;
}
@media screen and (max-width: 767px) {
  .contact-form.member-login-form .member-login-btn button {
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  }
}

.forgot-box .forgot-txt {
  text-align: center;
  margin-top: 32px;
}
.forgot-box .forgot-txt a {
  color: #a3914a;
  font-weight: 700;
}
.forgot-box .forgot-txt a:hover {
  text-decoration: underline;
}

.member-login-error {
  margin-bottom: 24px;
  text-align: center;
  color: #d63712;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .member-login-error ul li {
    text-align: left;
    display: table;
    margin: auto;
  }
}

/* ========================================================
sec-forgot-password
======================================================== */
.sec-forgot-password .cmn-form__wrap {
  padding: 0 80px;
}
@media screen and (max-width: 1023px) {
  .sec-forgot-password .cmn-form__wrap {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .sec-forgot-password .cmn-form__wrap {
    padding: 0;
  }
}

.sec-forgot-password .form-list__item {
  display: block;
}
@media screen and (max-width: 767px) {
  .sec-forgot-password .form-list__item {
    display: block;
  }
}
.sec-forgot-password .form-list__item .form-list__ttl {
  padding-left: 0;
  padding-bottom: 12px;
  width: 180px;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .sec-forgot-password .form-list__item .form-list__ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-forgot-password .form-list__item .form-list__ttl {
    padding-bottom: 8px;
  }
}
.sec-forgot-password .form-list__item .main-block {
  width: 100%;
  font-size: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .sec-forgot-password .form-list__item .main-block {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-forgot-password .form-list__item .main-block {
    width: 100%;
  }
}
.sec-forgot-password .form-list__item .main-block input {
  width: 100%;
  padding: 8px 12px;
  min-height: 48px;
}
.sec-forgot-password .form-list__item .main-block input:disabled {
  background-color: transparent;
  border: none;
}

.sec-forgot-password .form-list__item + .form-list__item {
  margin-top: 24px;
}

.sec-forgot-password .reset-btn {
  text-align: center;
}
.sec-forgot-password .reset-btn button {
  display: block;
  margin: 20px auto 0;
  text-align: center;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.18);
  background: #f4e803;
  color: #4d4d4d;
  text-decoration: none;
  cursor: pointer;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  font-size: 2rem;
  padding: 8px 40px;
}
@media screen and (max-width: 767px) {
  .sec-forgot-password .reset-btn button {
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  }
}

.sec-forgot-password .result-txt {
  text-align: center;
  line-height: 1.8;
  font-weight: 700;
}
.sec-forgot-password .result-txt.red {
  color: #d63712;
}
.sec-forgot-password .result-txt.blue {
  color: #0095ff;
}

/*! --------------------------------------------------------------------
------------------------------------------------------------------------
detail
------------------------------------------------------------------------
--------------------------------------------------------------------- */
/* ========================================================
共通
======================================================== */
.contact-sec-ttl {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .contact-sec-ttl {
    margin-bottom: 12px;
  }
}
.contact-sec-ttl.ta-center {
  text-align: center;
}
.contact-sec-ttl.ta-right {
  text-align: right;
}

.contact-sec-ttl__en {
  margin-top: -0.14em;
  margin-left: -0.46em;
  margin-right: -0.46em;
  transform: scale(0.95, 1.05);
  font-size: 7.6rem;
  font-weight: 700;
  font-family: "Outfit", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  color: #c1bb8f;
}
@media screen and (max-width: 1023px) {
  .contact-sec-ttl__en {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-sec-ttl__en {
    margin-top: -0.126em;
    margin-left: 0;
    margin-right: 0;
  }
}
.contact-sec-ttl__en .small {
  font-size: 6rem;
}
@media screen and (max-width: 1023px) {
  .contact-sec-ttl__en .small {
    font-size: 4.4rem;
  }
}
.contact-sec-ttl__en.white {
  color: #fff;
}

.contact-sec-ttl__jp {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact-sec-ttl__jp {
    padding-top: 4px;
  }
}
.contact-sec-ttl__jp.white {
  color: #fff;
}

.contact-sec-ttl__en .icon {
  display: inline-block;
  margin-right: 8px;
  width: 55px;
  height: 57px;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 1023px) {
  .contact-sec-ttl__en .icon {
    width: 41px;
    height: 42px;
  }
}
.contact-sec-ttl__en .icon.tel {
  background-image: url("../../img/common/base/icon_tel01.svg");
  background-size: 55px 57px;
}
@media screen and (max-width: 1023px) {
  .contact-sec-ttl__en .icon.tel {
    background-size: 41px 42px;
  }
}
.contact-sec-ttl__en .icon.mail {
  background-image: url("../../img/common/base/icon_mail02.svg");
  background-size: 52px 33px;
}
@media screen and (max-width: 1023px) {
  .contact-sec-ttl__en .icon.mail {
    background-size: 41px 26px;
  }
}

/* ========================================================
.sec-mv
======================================================== */
.sec-mv {
  position: relative;
  background: url("../../img/search/page_search_bg01.jpg") no-repeat center bottom;
  background-size: cover;
  height: 600px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec-mv {
    height: 400px;
  }
}
.sec-mv > .cmn-inner-m {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .sec-mv > .cmn-inner-m {
    display: block;
    height: auto;
  }
}

.sec-mv .sec-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding-top: 100px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .sec-mv .sec-ttl {
    padding-top: 64px;
  }
}

.sec-mv .sec-ttl__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1023px) {
  .sec-mv .sec-ttl__in {
    display: block;
  }
}

.sec-mv .sec-ttl__en {
  margin-left: -0.1em;
  margin-right: -0.1em;
  transform: scale(0.95, 1.05);
  color: #fff;
  font-size: 10rem;
  font-weight: 700;
  font-family: "Outfit", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .sec-mv .sec-ttl__en {
    margin-left: -0.1em;
    margin-right: -0.1em;
    font-size: 6.8rem;
    letter-spacing: 0.06em;
  }
}

.sec-mv .sec-ttl__jp {
  padding: 0 0 14px 8px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sec-mv .sec-ttl__jp {
    padding: 8px 0 0 8px;
    font-size: 1.4rem;
  }
}

/* ========================================================
共通クラス
======================================================== */
.cmn-detail-ttl {
  text-align: center;
}
.cmn-detail-ttl__en {
  display: inline-block;
  padding-bottom: 9px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #b89f38;
}
@media screen and (max-width: 767px) {
  .cmn-detail-ttl__en {
    padding-bottom: 6px;
    font-size: 2rem;
  }
}
.cmn-detail-ttl__jp {
  padding-top: 9px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .cmn-detail-ttl__jp {
    padding-top: 6px;
    font-size: 1.4rem;
  }
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #d63712;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .invalid-feedback {
    font-size: 1.4rem;
  }
}

.submitbtn {
  display: block;
  margin: 20px auto 0;
  text-align: center;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.18);
  background: #b89f38;
  color: #4d4d4d;
  text-decoration: none;
  cursor: pointer;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  font-size: 2rem;
  padding: 20px 80px;
}

.is-invalid {
  display: block;
}

/* ========================================================
sec-detail
======================================================== */
.sec-detail {
  background-color: #f4f4f4;
  padding: 64px 0;
}
@media screen and (max-width: 1023px) {
  .sec-detail {
    padding: 48px 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail {
    padding: 32px 0;
  }
}

.sec-detail__in {
  padding: 60px 48px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .sec-detail__in {
    padding: 16px 16px 24px;
  }
}

/* detail-name
=========================================== */
.sec-detail .detail-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec-detail .detail-name__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -48px;
  margin-right: -48px;
  width: calc(100% + (48px * 2));
  padding-bottom: 12px;
  border-bottom: 2px solid #e1e0cb;
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-name__in {
    display: block;
    width: 100%;
    padding-bottom: 6px;
    text-align: center;
  }
}
.sec-detail .detail-name .new-tag {
  font-size: 2.2rem;
  margin-top: 4px;
  padding: 4px 12px 6px;
  background-color: #b89f38;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-name .new-tag {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-name .new-tag {
    display: inline-block;
    margin-top: 2px;
    padding: 6px 8px 4px;
    font-size: 1.4rem;
  }
}
.sec-detail .detail-name__ttl {
  color: #b89f38;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  padding-left: 10px;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-name__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-name__ttl {
    padding-left: 0;
    text-align: left;
    font-size: 1.8rem;
    display: table;
    margin: 4px auto 0;
  }
}

/* detail-image-box
=========================================== */
.detail-image-box {
  width: 100%;
  margin: 40px auto 0;
  max-width: 768px;
}
@media screen and (max-width: 767px) {
  .detail-image-box {
    margin: 0 auto;
  }
}

/* detail-top-block
=========================================== */
.detail-top-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px auto 0;
}
@media screen and (max-width: 767px) {
  .detail-top-block {
    display: block;
    margin-top: 12px;
    overflow: hidden;
  }
}

.detail-top-block__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
  font-weight: 600;
  font-size: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .detail-top-block__icon {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .detail-top-block__icon {
    display: block;
    margin: -3px;
    margin-top: 0;
  }
}
.detail-top-block__icon li {
  margin: 5px;
  padding: 7px 20px 8px;
  background-color: #999;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .detail-top-block__icon li {
    margin: 3px;
    padding: 5px 12px 5px;
    font-size: 1.3rem;
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .sec-detail .detail-property-num {
    padding: 6px 12px 0;
    text-align: right;
  }
}

/* detail-main
=========================================== */
.sec-detail .detail-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-top: 12px;
  width: 100%;
}
.sec-detail .detail-main__box {
  width: 100%;
  position: relative;
}
.sec-detail .detail-main__list {
  width: 100%;
  background-color: #e6e6e6;
}
.sec-detail .detail-main__list__item__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main__list__item__in {
    height: 360px;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main__list__item__in {
    height: 300px;
  }
}
.sec-detail .detail-main__list__item img {
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main__list__item img {
    max-height: 360px;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main__list__item img {
    max-height: 300px;
  }
}
.sec-detail .detail-main__bottom {
  width: 100%;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  background-color: #b89f38;
  padding: 15px 12px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main__bottom {
    padding: 12px 8pc;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main__bottom {
    padding: 8px 12px 4px;
  }
}
.sec-detail .detail-main__bottom__in {
  display: inline-block;
  text-align: left;
}
.sec-detail .detail-main__bottom__ttl {
  font-weight: 700;
}
.sec-detail .detail-main__bottom__ttl .detail-main__bottom__large__wrap:first-child {
  padding-right: 12px;
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main__bottom__ttl .detail-main__bottom__large__wrap:first-child {
    padding-right: 0;
  }
}
.sec-detail .detail-main__bottom__large__wrap {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main__bottom__large__wrap {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main__bottom__large__wrap.sp-ib {
    display: inline-block;
    margin-top: 8px;
  }
}
.sec-detail .detail-main__bottom__large {
  font-size: 3.2rem;
}
@media screen and (max-width: 1200px) {
  .sec-detail .detail-main__bottom__large {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main__bottom__large {
    font-size: 1.8rem;
  }
}
.sec-detail .detail-main__bottom__large:nth-child(2) {
  padding-left: 20px;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main__bottom__large:nth-child(2) {
    padding-left: 16px;
  }
}
.sec-detail .detail-main__bottom__large:nth-child(4) {
  padding-left: 8px;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main__bottom__large:nth-child(4) {
    padding-left: 6px;
  }
}
.sec-detail .detail-main__bottom .unit {
  font-size: 2.4rem;
}
@media screen and (max-width: 1200px) {
  .sec-detail .detail-main__bottom .unit {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main__bottom .unit {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main__bottom .unit {
    font-size: 1.4rem;
  }
}
.sec-detail .detail-main__bottom__address {
  padding-top: 8px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main__bottom__address {
    padding-top: 6px;
    font-weight: 400;
    font-size: 1.3rem;
  }
}
.sec-detail .detail-main__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  border: 2px solid #e6e6e6;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main__layout {
    width: 28%;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main__layout {
    display: none;
  }
}
.sec-detail .detail-main__layout img {
  width: 40%;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main__layout img {
    width: 60%;
  }
}

/* detail-main__sub-box
=========================================== */
.sec-detail .detail-main__sub-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  width: 38%;
  border: 1px solid #ccc;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main__sub-box {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main__sub-box {
    display: none;
  }
}

/* detail-thumb
=========================================== */
.sec-detail .detail-thumb {
  margin-top: 30px;
  max-width: 640px;
  margin: 30px auto 0;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-thumb {
    max-width: 560px;
  }
}
.sec-detail .detail-thumb__list {
  margin: -2px;
}
.sec-detail .detail-thumb__list__item > div {
  margin: 2px;
  height: 100px;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-thumb__list__item > div {
    height: 20.5vw;
  }
}
.sec-detail .detail-thumb__list__item.slick-current > div {
  border: 1px solid #b89f38;
}
.sec-detail .detail-thumb__list__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* detail-main-info
=========================================== */
.sec-detail .detail-main-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  margin-right: 16px;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main-info {
    display: block;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main-info {
    display: block;
    margin-right: 0;
  }
}

.sec-detail .property-main-info {
  width: 58%;
}
@media screen and (max-width: 1023px) {
  .sec-detail .property-main-info {
    width: 100%;
  }
}

.sec-detail .property-main-info .main-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.sec-detail .property-main-info .main-info-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ccc;
  font-size: 1.3rem;
  line-height: 1.3;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec-detail .property-main-info .main-info-list-item {
    font-size: 1.2rem;
  }
}
.sec-detail .property-main-info .main-info-list-item .item-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 96px;
  padding: 12px;
  background-color: #e1e0cb;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .sec-detail .property-main-info .main-info-list-item .item-ttl {
    width: 80px;
    padding: 6px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .property-main-info .main-info-list-item .item-ttl {
    width: 72px;
    font-size: 1.3rem;
  }
}
.sec-detail .property-main-info .main-info-list-item .item-txt {
  width: calc(100% - 96px);
  padding: 12px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1023px) {
  .sec-detail .property-main-info .main-info-list-item .item-txt {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .property-main-info .main-info-list-item .item-txt {
    width: calc(100% - 72px);
  }
}
.sec-detail .property-main-info .main-info-list-item .item-txt.large-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  color: #d63712;
  font-size: 1.8rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .sec-detail .property-main-info .main-info-list-item .item-txt.large-txt {
    padding-left: 6px;
    font-size: 1.4rem;
  }
}
.sec-detail .property-main-info .main-info-list-item .large-txt__num {
  padding-right: 4px;
  font-size: 3.2rem;
}
@media screen and (max-width: 1200px) {
  .sec-detail .property-main-info .main-info-list-item .large-txt__num {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .sec-detail .property-main-info .main-info-list-item .large-txt__num {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .property-main-info .main-info-list-item .large-txt__num {
    font-size: 2rem;
  }
}

.sec-detail .property-main-info .main-info-list.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  border: none;
  margin-bottom: 16px;
}

.sec-detail .property-main-info .main-info-list.price .main-info-list-item {
  border-bottom: none;
}
.sec-detail .property-main-info .main-info-list.price .main-info-list-item:nth-child(1) {
  width: 62%;
}
@media screen and (max-width: 767px) {
  .sec-detail .property-main-info .main-info-list.price .main-info-list-item:nth-child(1) {
    width: 100%;
  }
}
.sec-detail .property-main-info .main-info-list.price .main-info-list-item:nth-child(2) {
  width: 38%;
}
@media screen and (max-width: 767px) {
  .sec-detail .property-main-info .main-info-list.price .main-info-list-item:nth-child(2) {
    margin-top: 6px;
    width: 100%;
    border-left: none;
  }
}

/* detail-main-info-contact
=========================================== */
.sec-detail .detail-main-info-contact {
  width: 36%;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main-info-contact {
    max-width: 360px;
    width: 100%;
    margin: 16px auto 0;
  }
}
.sec-detail .detail-main-info-contact .contact-txt {
  padding-left: 1em;
  padding-bottom: 4px;
  font-size: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main-info-contact .contact-txt {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main-info-contact .contact-txt {
    font-size: 1.6rem;
  }
}

.sec-detail .detail-main-info-contact .contact-tel {
  text-align: center;
  padding: 6px 0 10px;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}
.sec-detail .detail-main-info-contact .contact-tel a {
  display: inline-block;
  background-image: -webkit-gradient(linear, right top, left top, from(#ac9e03), color-stop(20%, #ac9e03), to(#a29104));
  background-image: linear-gradient(to left, #ac9e03 0%, #ac9e03 20%, #a29104 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5.6rem;
  font-weight: 700;
  font-family: "Outfit", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  transform: scale(0.95, 1.05);
}
@media screen and (max-width: 1200px) {
  .sec-detail .detail-main-info-contact .contact-tel a {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main-info-contact .contact-tel a {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main-info-contact .contact-tel a {
    font-size: 2rem;
  }
}
.sec-detail .detail-main-info-contact .contact-tel a .tel-num {
  font-size: 5rem;
}
@media screen and (max-width: 1200px) {
  .sec-detail .detail-main-info-contact .contact-tel a .tel-num {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main-info-contact .contact-tel a .tel-num {
    font-size: 3.6rem;
  }
}

.sec-detail .detail-main-info-contact .contact-tel .tel-open {
  padding-top: 4px;
  font-size: 2.4rem;
}
@media screen and (max-width: 1200px) {
  .sec-detail .detail-main-info-contact .contact-tel .tel-open {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main-info-contact .contact-tel .tel-open {
    font-size: 1.4rem;
  }
}

.sec-detail .detail-main-info-contact .contact-btn {
  margin-top: 24px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main-info-contact .contact-btn {
    margin-top: 12px;
  }
}
.sec-detail .detail-main-info-contact .contact-btn a {
  position: relative;
  display: inline-block;
  padding: 18px 48px 18px 28px;
  background-color: #1d1e1f;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  font-weight: 600;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .sec-detail .detail-main-info-contact .contact-btn a {
    padding: 18px 36px 18px 14px;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main-info-contact .contact-btn a {
    width: 100%;
    padding: 18px 36px 18px 4px;
  }
}
.sec-detail .detail-main-info-contact .contact-btn a:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 16px;
  margin-right: 8px;
  background-image: url("../../img/common/base/icon_mail02_white.svg");
  background-repeat: no-repeat;
  background-size: 25px 16px;
  background-position: center center;
  vertical-align: -3px;
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main-info-contact .contact-btn a:before {
    width: 16px;
    height: 10px;
    background-size: 16px 10px;
    vertical-align: 0;
  }
}
.sec-detail .detail-main-info-contact .contact-btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: inline-block;
  width: 23px;
  height: 6px;
  background-image: url("../../img/common/base/icon_arrow01_white.svg");
  background-repeat: no-repeat;
  background-size: 23px 6px;
  background-position: center center;
  vertical-align: -1px;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-main-info-contact .contact-btn a:after {
    width: 16px;
    height: 4px;
    right: 4px;
    background-size: 16px 4px;
  }
}

/* detail-introduction
=========================================== */
.sec-detail .detail-introduction {
  margin: 32px 16px;
  padding: 16px;
  background-color: #e6e6e6;
}
@media screen and (max-width: 767px) {
  .sec-detail .detail-introduction {
    margin: 32px 0;
    padding: 12px;
  }
}
.sec-detail .detail-introduction p {
  line-height: 1.8;
}

/* property-full-info
=========================================== */
.sec-detail .property-full-info {
  margin-top: 32px;
}
.sec-detail .property-full-info__ttl {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .sec-detail .property-full-info__ttl {
    font-size: 1.8rem;
  }
}
.sec-detail .property-full-info__ttl:before {
  content: "";
  margin-right: 8px;
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url("../../img/common/base/icon_info01_color.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  vertical-align: -9px;
}
@media screen and (max-width: 767px) {
  .sec-detail .property-full-info__ttl:before {
    width: 24px;
    height: 24px;
    vertical-align: -6px;
  }
}

.sec-detail .property-full-info .full-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  margin-top: 16px;
}

.sec-detail .property-full-info .full-info-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ccc;
  font-size: 1.4rem;
  line-height: 1.3;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .sec-detail .property-full-info .full-info-list-item {
    font-size: 1.2rem;
  }
}
.sec-detail .property-full-info .full-info-list-item.three-column {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .sec-detail .property-full-info .full-info-list-item.three-column {
    width: 100%;
  }
}
.sec-detail .property-full-info .full-info-list-item.three-column.first {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .sec-detail .property-full-info .full-info-list-item.three-column.first {
    width: 100%;
    border-left: none;
  }
}
.sec-detail .property-full-info .full-info-list-item.one-column {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec-detail .property-full-info .full-info-list-item.one-column {
    width: 100%;
    border-left: none;
  }
}
.sec-detail .property-full-info .full-info-list-item .item-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 96px;
  padding: 12px;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #e1e0cb;
}
@media screen and (max-width: 1023px) {
  .sec-detail .property-full-info .full-info-list-item .item-ttl {
    width: 80px;
    padding: 6px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .property-full-info .full-info-list-item .item-ttl {
    width: 72px;
    font-size: 1.3rem;
  }
}
.sec-detail .property-full-info .full-info-list-item .item-txt {
  width: calc(100% - 96px);
  padding: 12px;
}
@media screen and (max-width: 1023px) {
  .sec-detail .property-full-info .full-info-list-item .item-txt {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .property-full-info .full-info-list-item .item-txt {
    width: calc(100% - 72px);
  }
}
.sec-detail .property-full-info .full-info-list-item .item-txt.large-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  color: #ec6941;
  font-size: 1.8rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .sec-detail .property-full-info .full-info-list-item .item-txt.large-txt {
    padding-left: 6px;
    font-size: 1.4rem;
  }
}
.sec-detail .property-full-info .full-info-list-item .large-txt__num {
  padding-right: 4px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .sec-detail .property-full-info .full-info-list-item .large-txt__num {
    font-size: 1.8rem;
  }
}

/* ========================================================
sec-contact
======================================================== */
.sec-contact {
  position: relative;
  background-color: #e7e7e7;
  padding: 64px 0;
  z-index: 2;
}

#otoiawase {
  margin-top: -153px;
  padding-top: 153px;
  padding-bottom: 40px;
}

@media screen and (max-width: 1023px) {
  .sec-contact {
    margin-bottom: 48px;
    padding: 36px 0;
  }

  #otoiawase {
    margin-top: -123px;
    padding-top: 123px;
  }
}
@media screen and (max-width: 767px) {
  .sec-contact {
    margin-bottom: 32px;
    padding: 28px 0;
  }

  #otoiawase {
    margin-top: -108px;
    padding-top: 108px;
    padding-bottom: 20px;
  }
}
.sec-contact .contact-sec-txt {
  margin-top: 28px;
  margin-bottom: 20px;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .sec-contact .contact-sec-txt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-contact .contact-sec-txt {
    margin: auto;
    text-align: left;
    display: table;
    margin-top: 20px;
    margin-bottom: 16px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.sec-contact .contact-form {
  background-color: #f2f2f2;
  padding: 40px 16px;
}

/*# sourceMappingURL=detail.min.css.map*/