@charset "UTF-8";
.form-note-txt {
  margin-bottom: calc(8px * 4);
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .form-note-txt {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-note-txt {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

.form-field {
  border-top: dotted 1px rgba(119, 99, 88, 0.3);
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 959px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

.form-field__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: calc(8px * 4);
  padding-bottom: calc(8px * 4);
  border-bottom: dotted 1px rgba(119, 99, 88, 0.3);
}

@media screen and (max-width: 959px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.5);
  }
}

.form-field dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: 304px;
}

@media screen and (max-width: 959px) {
  .form-field dt {
    width: 100%;
    margin-bottom: 8px;
  }
}

.form-field dd {
  width: calc(100% - 320px);
}

@media screen and (max-width: 959px) {
  .form-field dd {
    width: 100%;
  }
}

.form-required,
.form-optional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 44px;
  height: 24px;
  color: #ffffff;
  font-size: 1.4rem;
}

.form-required {
  background: #B45C3C;
}

.form-optional {
  background: #776358;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #ffffff;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Noto Serif JP", serif;
  line-height: 56px;
  color: #5D5D5D;
  border: 1px solid rgba(119, 99, 88, 0.3);
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: rgba(119, 99, 88, 0.3);
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(119, 99, 88, 0.3);
}

input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: rgba(119, 99, 88, 0.3);
}

input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: rgba(119, 99, 88, 0.3);
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: rgba(119, 99, 88, 0.3);
}

input:focus,
select:focus,
textarea:focus {
  outline: solid 1px #776358;
}

select {
  position: relative;
  background: url("/wp-content/themes/itreat_base/dist/img/common/select.svg") center right 16px/14px 14px no-repeat #ffffff;
}

textarea {
  overflow: auto;
  height: 200px;
  padding: 16px;
  line-height: 1.8;
  resize: vertical;
}

.wpcf7-checkbox .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-checkbox .wpcf7-list-item label {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item label input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #eeeeee;
  border: solid 2px #eeeeee;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 3px;
  left: 8px;
  z-index: 1;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #999999 #999999 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.wpcf7-checkbox .wpcf7-list-item label input:focus + .wpcf7-list-item-label {
  outline: solid 2px #5D5D5D;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #999999;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-radio .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-radio .wpcf7-list-item label {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-radio .wpcf7-list-item label input[type="radio"] {
  opacity: 0;
  position: absolute;
}

.wpcf7-radio .wpcf7-list-item label:has(input[type="radio"]:focus) {
  outline: solid 2px #927C6F;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #eeeeee;
  border: solid 2px #eeeeee;
  border-radius: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: #999999;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #999999;
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.form-send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
  background: #A58472;
  border: 1px solid #A58472;
  color: #ffffff;
  font-size: 1.8rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 1279px) {
  .form-send {
    height: 72px;
  }
}

@media screen and (max-width: 959px) {
  .form-send {
    height: 64px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 519px) {
  .form-send {
    height: 56px;
  }
}

.form-send input[type="submit"] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.form-send:hover {
  background: #ffffff;
  color: #A58472;
}

.form-send:has(input[type="submit"]:focus) {
  outline: solid 2px #927C6F;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  display: block;
  margin-bottom: calc(8px * 5);
  padding: 32px;
  border-radius: 4px;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    padding: 24px;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #ffffff;
  border: solid 1px #927C6F;
  color: #927C6F;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: rgba(180, 92, 60, 0.08);
  color: #B45C3C;
  border: solid 1px #B45C3C;
}

.wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.unaccepted input::-webkit-input-placeholder, .wpcf7 form.unaccepted select::-webkit-input-placeholder, .wpcf7 form.unaccepted textarea::-webkit-input-placeholder {
  color: rgba(180, 92, 60, 0.4);
}

.wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.unaccepted input::-moz-placeholder, .wpcf7 form.unaccepted select::-moz-placeholder, .wpcf7 form.unaccepted textarea::-moz-placeholder {
  color: rgba(180, 92, 60, 0.4);
}

.wpcf7 form.invalid input:-ms-input-placeholder, .wpcf7 form.invalid select:-ms-input-placeholder, .wpcf7 form.invalid textarea:-ms-input-placeholder, .wpcf7 form.invalid input:-ms-input-placeholder, .wpcf7 form.invalid select:-ms-input-placeholder, .wpcf7 form.invalid textarea:-ms-input-placeholder, .wpcf7 form.unaccepted input:-ms-input-placeholder, .wpcf7 form.unaccepted select:-ms-input-placeholder, .wpcf7 form.unaccepted textarea:-ms-input-placeholder {
  color: rgba(180, 92, 60, 0.4);
}

.wpcf7 form.invalid input::-ms-input-placeholder, .wpcf7 form.invalid select::-ms-input-placeholder, .wpcf7 form.invalid textarea::-ms-input-placeholder, .wpcf7 form.invalid input::-ms-input-placeholder, .wpcf7 form.invalid select::-ms-input-placeholder, .wpcf7 form.invalid textarea::-ms-input-placeholder, .wpcf7 form.unaccepted input::-ms-input-placeholder, .wpcf7 form.unaccepted select::-ms-input-placeholder, .wpcf7 form.unaccepted textarea::-ms-input-placeholder {
  color: rgba(180, 92, 60, 0.4);
}

.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.unaccepted input::placeholder,
.wpcf7 form.unaccepted select::placeholder,
.wpcf7 form.unaccepted textarea::placeholder {
  color: rgba(180, 92, 60, 0.4);
}

.wpcf7 form.spam .wpcf7-response-output {
  background: rgba(146, 124, 111, 0.08);
  color: #B45C3C;
  border: solid 1px #927C6F;
}

.wpcf7 form.spam input::-webkit-input-placeholder, .wpcf7 form.spam select::-webkit-input-placeholder, .wpcf7 form.spam textarea::-webkit-input-placeholder {
  color: rgba(146, 124, 111, 0.4);
}

.wpcf7 form.spam input::-moz-placeholder, .wpcf7 form.spam select::-moz-placeholder, .wpcf7 form.spam textarea::-moz-placeholder {
  color: rgba(146, 124, 111, 0.4);
}

.wpcf7 form.spam input:-ms-input-placeholder, .wpcf7 form.spam select:-ms-input-placeholder, .wpcf7 form.spam textarea:-ms-input-placeholder {
  color: rgba(146, 124, 111, 0.4);
}

.wpcf7 form.spam input::-ms-input-placeholder, .wpcf7 form.spam select::-ms-input-placeholder, .wpcf7 form.spam textarea::-ms-input-placeholder {
  color: rgba(146, 124, 111, 0.4);
}

.wpcf7 form.spam input::placeholder,
.wpcf7 form.spam select::placeholder,
.wpcf7 form.spam textarea::placeholder {
  color: rgba(146, 124, 111, 0.4);
}

.screen-reader-response {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  padding: 4px 0 0;
  color: #B45C3C;
  font-size: 1.4rem;
}

.screen-reader-response {
  display: none;
}

.wpcf7 .form.invalid .wpcf7-response-output {
  color: #B45C3C;
  font-size: 1.4rem;
  background-color: rgba(180, 92, 60, 0.1);
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-txt {
  text-align: center;
}

.recaptcha-txt a {
  color: #A58472;
  text-decoration: underline;
}

.recaptcha-txt a:hover {
  text-decoration: none;
}

.privacy-frame {
  margin: 0 auto 40px;
  padding: 32px;
  border: 1px solid rgba(119, 99, 88, 0.3);
  background: #ffffff;
}

@media screen and (max-width: 959px) {
  .privacy-frame {
    padding: 28px;
  }
}

@media screen and (max-width: 767px) {
  .privacy-frame {
    margin: 0 auto 28px;
    padding: 24px;
  }
}

@media screen and (max-width: 519px) {
  .privacy-frame {
    padding: 16px;
  }
}

.privacy-frame .privacy-inner {
  overflow-y: scroll;
  height: 240px;
  padding: 0 16px;
}

@media screen and (max-width: 959px) {
  .privacy-frame .privacy-inner {
    padding: 0 12px;
    height: 160px;
  }
}

@media screen and (max-width: 519px) {
  .privacy-frame .privacy-inner {
    padding: 0 8px;
  }
}

.privacy-frame .privacy-inner::-webkit-scrollbar {
  width: 8px;
}

.privacy-frame .privacy-inner::-webkit-scrollbar-track {
  background: #eeeeee;
  border-radius: 4px;
}

.privacy-frame .privacy-inner::-webkit-scrollbar-thumb {
  background: #776358;
  border-radius: 4px;
}

.privacy-frame .privacy-inner .privacy-ttl {
  margin-bottom: calc(8px * 3);
  text-align: center;
}

@media screen and (max-width: 959px) {
  .privacy-frame .privacy-inner .privacy-ttl {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .privacy-frame .privacy-inner .privacy-ttl {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

.privacy-frame .privacy-inner .privacy-ttl__main {
  margin-bottom: 4px;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  .privacy-frame .privacy-inner .privacy-ttl__main {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 519px) {
  .privacy-frame .privacy-inner .privacy-ttl__main {
    margin-bottom: 2px;
    font-size: 2rem;
  }
}

.privacy-frame .privacy-inner .privacy-ttl__sub {
  margin-bottom: calc(8px * 5);
  display: block;
  color: #A58472;
  font-family: "Lora", serif;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
  text-transform: uppercase;
}

@media screen and (max-width: 959px) {
  .privacy-frame .privacy-inner .privacy-ttl__sub {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .privacy-frame .privacy-inner .privacy-ttl__sub {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 519px) {
  .privacy-frame .privacy-inner .privacy-ttl__sub {
    font-size: 1.2rem;
  }
}

.privacy-frame .privacy-inner .policy-lead {
  margin-bottom: calc(8px * 6);
}

@media screen and (max-width: 959px) {
  .privacy-frame .privacy-inner .policy-lead {
    margin-bottom: calc((8px * 6) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .privacy-frame .privacy-inner .policy-lead {
    margin-bottom: calc((8px * 6) * 0.5);
  }
}

.policy-list {
  counter-reset: list-num 0;
  margin-bottom: calc(8px * 6);
}

@media screen and (max-width: 959px) {
  .policy-list {
    margin-bottom: calc((8px * 6) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .policy-list {
    margin-bottom: calc((8px * 6) * 0.5);
  }
}

.policy-list__item {
  padding: 24px 0;
}

@media screen and (max-width: 959px) {
  .policy-list__item {
    padding: 16px 0;
  }
}

.policy-list__item:not(:last-child) {
  border-bottom: 1px dotted #7B675B;
}

.policy-list__item dt {
  position: relative;
  margin-bottom: 12px;
  padding-left: 48px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (max-width: 959px) {
  .policy-list__item dt {
    margin-bottom: 10px;
    padding-left: 40px;
    font-size: 1.8rem;
  }
}

.policy-list__item dt::before {
  position: absolute;
  counter-increment: list-num;
  content: counter(list-num, decimal-leading-zero) ".";
  left: 0;
  top: 1px;
  color: #A58472;
  font-family: "Lora", serif;
  font-weight: bold;
  line-height: 1;
  font-size: 2.8rem;
}

@media screen and (max-width: 959px) {
  .policy-list__item dt::before {
    font-size: 2.2rem;
  }
}

.front-page {
  padding-bottom: 0;
}

.hero {
  position: relative;
  margin-bottom: calc(8px * 12);
}

@media screen and (max-width: 959px) {
  .hero {
    margin-bottom: calc((8px * 12) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .hero {
    margin-bottom: calc((8px * 12) * 0.5);
  }
}

.hero .mv-tbl {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 16px 20px 10px;
  display: block;
  background: #ffffff;
}

@media screen and (max-width: 959px) {
  .hero .mv-tbl {
    display: none;
  }
}

.hero .mv-tbl table {
  width: 344px;
  margin-bottom: 4px;
  border: none;
}

.hero .mv-tbl table thead {
  display: block;
  color: #776358;
  border-bottom: 1px dotted #776358;
  padding-bottom: 6px;
  margin-bottom: 6px;
}

.hero .mv-tbl table thead tr th {
  padding: 4px 6px;
  border: none;
  background: none;
}

.hero .mv-tbl table thead tr th:not(:first-child) {
  width: 30px;
}

.hero .mv-tbl table tbody {
  display: block;
  font-size: 1.4rem;
}

.hero .mv-tbl table tbody tr {
  display: block;
  border: none;
}

.hero .mv-tbl table tbody tr th {
  padding: 4px 2px;
}

.hero .mv-tbl table tbody tr td {
  padding: 4px 2px;
}

.hero .mv-tbl table tbody td {
  width: 30px;
  border: none;
  padding: 4px 2px;
}

.hero .mv-tbl table th {
  border: none;
  text-align: left;
}

.hero .mv-tbl table th:first-child {
  width: 100px;
}

.hero .mv-tbl .note-txt {
  line-height: 1.3;
}

.message {
  position: relative;
  margin-bottom: calc(8px * 11);
}

@media screen and (max-width: 959px) {
  .message {
    margin-bottom: calc((8px * 11) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .message {
    margin-bottom: calc((8px * 11) * 0.5);
  }
}

.message::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  z-index: -1;
  width: 442px;
  height: 571px;
  background: #FCF7F1;
}

@media screen and (max-width: 959px) {
  .message::before {
    width: 100%;
    height: 95%;
    top: 20px;
  }
}

.message .message-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .message .message-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
}

.message .message-unit__vsl {
  width: 426px;
}

@media screen and (max-width: 1279px) {
  .message .message-unit__vsl {
    width: 320px;
  }
}

@media screen and (max-width: 767px) {
  .message .message-unit__vsl {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }
}

.message .message-unit__dtl {
  width: calc(100% - 490px);
}

@media screen and (max-width: 1279px) {
  .message .message-unit__dtl {
    width: calc(100% - 352px);
  }
}

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

.message .message-unit__dtl .message-ttl {
  position: relative;
  padding: 16px 64px;
  margin-bottom: 32px;
}

@media screen and (max-width: 1279px) {
  .message .message-unit__dtl .message-ttl {
    padding: 8px 46px;
  }
}

@media screen and (max-width: 1023px) {
  .message .message-unit__dtl .message-ttl {
    padding: 8px 37px;
    margin-bottom: 28px;
  }
}

@media screen and (max-width: 767px) {
  .message .message-unit__dtl .message-ttl {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 519px) {
  .message .message-unit__dtl .message-ttl {
    padding: 2px 10px 8px;
    margin-bottom: 16px;
  }
}

.message .message-unit__dtl .message-ttl::before, .message .message-unit__dtl .message-ttl::after {
  content: "";
  width: 80px;
  height: 80px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/brackets.svg") center/contain no-repeat;
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-ttl::before, .message .message-unit__dtl .message-ttl::after {
    width: 56px;
    height: 56px;
  }
}

@media screen and (max-width: 767px) {
  .message .message-unit__dtl .message-ttl::before, .message .message-unit__dtl .message-ttl::after {
    width: 40px;
    height: 40px;
  }
}

.message .message-unit__dtl .message-ttl::before {
  position: absolute;
  bottom: 0;
  left: 0;
}

.message .message-unit__dtl .message-ttl::after {
  position: absolute;
  top: 0;
  right: 0;
  rotate: 180deg;
}

.message .message-unit__dtl .message-ttl .message-ttl-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .message .message-unit__dtl .message-ttl .message-ttl-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    background: -webkit-gradient(linear, left top, right top, from(#776358), to(#B7A280));
    background: linear-gradient(90deg, #776358, #B7A280);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.message .message-unit__dtl .message-ttl span {
  background: -webkit-gradient(linear, left top, right top, from(#776358), to(#B7A280));
  background: linear-gradient(90deg, #776358, #B7A280);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.6rem;
  letter-spacing: 8px;
}

@media screen and (max-width: 1279px) {
  .message .message-unit__dtl .message-ttl span {
    font-size: 3.2rem;
    letter-spacing: 6px;
  }
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-ttl span {
    font-size: 2.6rem;
    letter-spacing: 4px;
  }
}

@media screen and (max-width: 767px) {
  .message .message-unit__dtl .message-ttl span {
    font-size: 2rem;
    -webkit-text-fill-color: none;
  }
}

.message .message-unit__dtl .message-ttl span:nth-of-type(1) {
  padding-left: 24px;
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-ttl span:nth-of-type(1) {
    padding-left: 16px;
  }
}

@media screen and (max-width: 767px) {
  .message .message-unit__dtl .message-ttl span:nth-of-type(1) {
    padding-left: 0;
  }
}

.message .message-unit__dtl .message-ttl span:nth-of-type(2) {
  padding-left: 104px;
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-ttl span:nth-of-type(2) {
    padding-left: 56px;
  }
}

@media screen and (max-width: 767px) {
  .message .message-unit__dtl .message-ttl span:nth-of-type(2) {
    padding-left: 0;
  }
}

.message .message-unit__dtl .message-ttl span:nth-of-type(3) {
  padding-left: 200px;
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-ttl span:nth-of-type(3) {
    padding-left: 86px;
  }
}

@media screen and (max-width: 767px) {
  .message .message-unit__dtl .message-ttl span:nth-of-type(3) {
    padding-left: 0;
  }
}

.message .message-unit__dtl .message-ttl span:not(:last-of-type) {
  margin-bottom: 12px;
}

@media screen and (max-width: 1279px) {
  .message .message-unit__dtl .message-ttl span:not(:last-of-type) {
    margin-bottom: 4px;
  }
}

@media screen and (max-width: 519px) {
  .message .message-unit__dtl .message-ttl span:not(:last-of-type) {
    margin-bottom: 0;
  }
}

.message .message-unit__dtl .message-ttl span em {
  font-size: 4.8rem;
}

@media screen and (max-width: 1279px) {
  .message .message-unit__dtl .message-ttl span em {
    font-size: 4rem;
  }
}

@media screen and (max-width: 1023px) {
  .message .message-unit__dtl .message-ttl span em {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-ttl span em {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .message .message-unit__dtl .message-ttl span em {
    font-size: 2.4rem;
  }
}

.message .message-unit__dtl .message-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .message .message-unit__dtl .message-info {
    gap: 8px 20px;
  }
}

@media screen and (max-width: 519px) {
  .message .message-unit__dtl .message-info {
    gap: 32px 20px;
  }
}

.message .message-unit__dtl .message-info__post {
  font-size: 1.4rem;
}

.message .message-unit__dtl .message-info__post .post-name {
  margin-left: 12px;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .message .message-unit__dtl .message-info__post .post-name {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 519px) {
  .message .message-unit__dtl .message-info .btn {
    margin-inline: auto;
  }
}

.access {
  position: relative;
  margin-bottom: calc(8px * 22);
}

@media screen and (max-width: 959px) {
  .access {
    margin-bottom: calc((8px * 22) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .access {
    margin-bottom: calc((8px * 22) * 0.5);
  }
}

.access::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: calc(100% - 120px);
  height: calc(100% + 104px);
  background: #FCF7F1;
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
}

@media screen and (max-width: 959px) {
  .access::before {
    width: calc(100% - 60px);
    height: calc(100% + 84px);
  }
}

@media screen and (max-width: 767px) {
  .access::before {
    width: 100%;
    height: calc(100% + 80px);
    clip-path: polygon(0 0, 100% 3%, 100% 98%, 0% 100%);
  }
}

@media screen and (max-width: 519px) {
  .access::before {
    height: calc(100% + 48px);
    clip-path: polygon(0 0, 100% 3%, 100% 99%, 0% 100%);
  }
}

.access .access-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: calc(8px * 4);
}

@media screen and (max-width: 959px) {
  .access .access-unit {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .access .access-unit {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .access .access-unit {
    gap: 24px;
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.access .access-unit__dtl {
  width: calc(100% - 487px);
}

@media screen and (max-width: 959px) {
  .access .access-unit__dtl {
    width: calc(100% - 384px);
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit__dtl {
    max-width: 480px;
    width: 100%;
    margin-inline: auto;
  }
}

.access .access-unit__dtl .access-add {
  margin-bottom: 24px;
  font-size: 2rem;
}

@media screen and (max-width: 959px) {
  .access .access-unit__dtl .access-add {
    margin-bottom: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit__dtl .access-add {
    margin-bottom: 12px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit__dtl .acc-tel {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.access .access-unit__dtl .acc-tel a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 3.2rem;
  font-family: "Lora", serif;
  padding-left: 68px;
  color: #776358;
  line-height: 1.2;
}

.access .access-unit__dtl .acc-tel a span {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .access .access-unit__dtl .acc-tel a span {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 959px) {
  .access .access-unit__dtl .acc-tel a {
    padding: 14px 14px 14px 44px;
    border: 1px solid rgba(119, 99, 88, 0.3);
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 959px) and (max-width: 767px) {
  .access .access-unit__dtl .acc-tel a {
    font-size: 2.4rem;
  }
}

.access .access-unit__dtl .acc-tel a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 52px;
  height: 52px;
  border-radius: 100%;
  background: #776358;
}

@media screen and (max-width: 959px) {
  .access .access-unit__dtl .acc-tel a::before {
    display: none;
  }
}

.access .access-unit__dtl .acc-tel a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 19px;
  translate: 0 -50%;
  width: 12px;
  height: 36px;
  aspect-ratio: 1/1;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/tel.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/tel.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #ffffff;
}

@media screen and (max-width: 959px) {
  .access .access-unit__dtl .acc-tel a::after {
    background-color: #776358;
  }
}

.access .access-unit__dtl .acc-tel a:hover {
  background: #776358;
  color: #ffffff;
}

.access .access-unit__dtl .acc-tel a:hover::after {
  background-color: #ffffff;
}

.access .access-unit__map {
  width: 455px;
}

@media screen and (max-width: 959px) {
  .access .access-unit__map {
    width: 360px;
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit__map {
    margin-inline: auto;
    max-width: 400px;
    width: 100%;
  }
}

.access .gamp {
  margin-bottom: calc(8px * 3);
}

@media screen and (max-width: 959px) {
  .access .gamp {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .access .gamp {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

.access .gamp iframe {
  width: 100%;
}

@media screen and (max-width: 519px) {
  .access .gamp iframe {
    height: 250px;
  }
}

.news {
  margin-bottom: calc(8px * 11);
}

@media screen and (max-width: 959px) {
  .news {
    margin-bottom: calc((8px * 11) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .news {
    margin-bottom: calc((8px * 11) * 0.5);
  }
}

.news .news-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}

@media screen and (max-width: 959px) {
  .news .news-unit {
    gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  .news .news-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.news .news-unit__ttl {
  width: 240px;
}

@media screen and (max-width: 767px) {
  .news .news-unit__ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
}

.news .news-unit__ttl .btn a {
  width: 230px;
}

@media screen and (max-width: 519px) {
  .news .news-unit__ttl .btn a {
    width: 150px;
  }
}

.news .news-unit__dtl {
  width: calc(100% - 288px);
}

@media screen and (max-width: 959px) {
  .news .news-unit__dtl {
    width: calc(100% - 280px);
  }
}

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

.news .news-unit__dtl .news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 959px) {
  .news .news-unit__dtl .news-list__item {
    gap: 16px;
  }
}

@media screen and (max-width: 767px) {
  .news .news-unit__dtl .news-list__item {
    gap: 14px;
  }
}

@media screen and (max-width: 519px) {
  .news .news-unit__dtl .news-list__item {
    gap: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.news .news-unit__dtl .news-list__item:not(:last-of-type) {
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px dotted #cccccc;
}

.news .news-unit__dtl .news-list__item .news-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 959px) {
  .news .news-unit__dtl .news-list__item .news-meta {
    gap: 16px;
  }
}

@media screen and (max-width: 519px) {
  .news .news-unit__dtl .news-list__item .news-meta {
    gap: 12px;
  }
}

@media screen and (max-width: 959px) {
  .news .news-unit__dtl .news-list__item .news-meta__date {
    font-size: 1.4rem;
  }
}

.news .news-unit__dtl .news-list__item .news-meta__cate {
  position: relative;
  width: 96px;
  padding: 2px 0;
  font-size: 1.4rem;
  background: #776358;
  border: #776358;
  color: #ffffff;
  text-align: center;
  clip-path: polygon(8% 0%, 100% 0, 100% 80%, 94% 100%, 0 100%, 0 24%);
}

@media screen and (max-width: 519px) {
  .news .news-unit__dtl .news-list__item .news-meta__cate {
    width: 76px;
    font-size: 1.2rem;
  }
}

.news .news-unit__dtl .news-list__item .news-meta__cate:hover {
  background: rgba(119, 99, 88, 0.25);
  color: #776358;
}

.news .news-unit__dtl .news-list__item .news-ttl {
  width: calc(100% - 234px);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 959px) {
  .news .news-unit__dtl .news-list__item .news-ttl {
    width: calc(100% - 201px);
  }
}

@media screen and (max-width: 519px) {
  .news .news-unit__dtl .news-list__item .news-ttl {
    width: 100%;
  }
}

.news .news-unit__dtl .news-list__item .news-ttl a {
  display: block;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 959px) {
  .news .news-unit__dtl .news-list__item .news-ttl a {
    font-size: 1.4rem;
  }
}

.news .news-unit__dtl .news-list__item .news-ttl a:hover {
  -webkit-transform: translate(3px, 0);
  transform: translate(3px, 0);
  color: #776358;
}

.reason {
  position: relative;
  margin-bottom: calc(8px * 31);
}

@media screen and (max-width: 959px) {
  .reason {
    margin-bottom: calc((8px * 31) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .reason {
    margin-bottom: calc((8px * 31) * 0.5);
  }
}

.reason::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: calc(100% - 160px);
  height: calc(100% + 72px);
  background: #FAF0E4;
  clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0% 100%);
}

@media screen and (max-width: 1279px) {
  .reason::before {
    width: calc(100% - 60px);
    height: calc(100% + 84px);
  }
}

@media screen and (max-width: 959px) {
  .reason::before {
    width: 100%;
    height: calc(100% + 80px);
  }
}

@media screen and (max-width: 767px) {
  .reason::before {
    height: calc(100% + 64px);
    clip-path: polygon(0 3%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@media screen and (max-width: 519px) {
  .reason::before {
    top: 22px;
    height: calc(100% + 20px);
    clip-path: polygon(0 1%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.reason .reason-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

@media screen and (max-width: 1279px) {
  .reason .reason-unit {
    gap: 24px;
  }
}

@media screen and (max-width: 767px) {
  .reason .reason-unit {
    gap: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.reason .reason-unit:not(:last-of-type) {
  margin-bottom: 56px;
}

.reason .reason-unit__vsl {
  width: 560px;
}

@media screen and (max-width: 1279px) {
  .reason .reason-unit__vsl {
    width: 480px;
  }
}

@media screen and (max-width: 1023px) {
  .reason .reason-unit__vsl {
    width: 400px;
  }
}

@media screen and (max-width: 959px) {
  .reason .reason-unit__vsl {
    width: 360px;
  }
}

@media screen and (max-width: 767px) {
  .reason .reason-unit__vsl {
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }
}

.reason .reason-unit__dtl {
  position: relative;
  width: calc(100% - 592px);
  color: #604D35;
}

@media screen and (max-width: 1279px) {
  .reason .reason-unit__dtl {
    width: calc(100% - 504px);
  }
}

@media screen and (max-width: 1023px) {
  .reason .reason-unit__dtl {
    width: calc(100% - 424px);
  }
}

@media screen and (max-width: 959px) {
  .reason .reason-unit__dtl {
    width: calc(100% - 384px);
  }
}

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

.reason .reason-unit__dtl .reason-num {
  position: absolute;
  top: -63px;
  z-index: -1;
  font-size: 4rem;
  color: rgba(119, 99, 88, 0.2);
  font-family: "Lora", serif;
  text-shadow: 2px 2px 0 #FAF0E4, -2px -2px 0 #FAF0E4, -2px 2px 0 #FAF0E4, 2px -2px 0 #FAF0E4, 0px 2px 0 #FAF0E4, 0 -2px 0 #FAF0E4, -2px 0 0 #FAF0E4, 2px 0 0 #FAF0E4;
}

@media screen and (max-width: 1279px) {
  .reason .reason-unit__dtl .reason-num {
    top: -40px;
  }
}

@media screen and (max-width: 1023px) {
  .reason .reason-unit__dtl .reason-num {
    top: -28px;
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 959px) {
  .reason .reason-unit__dtl .reason-num {
    font-size: 2.8rem;
  }
}

.reason .reason-unit__dtl .reason-num em {
  position: relative;
  z-index: -1;
  left: -12px;
  font-size: 6.4rem;
}

@media screen and (max-width: 1279px) {
  .reason .reason-unit__dtl .reason-num em {
    font-size: 4rem;
    left: -7px;
  }
}

@media screen and (max-width: 1023px) {
  .reason .reason-unit__dtl .reason-num em {
    left: -4px;
    font-size: 3.2rem;
  }
}

.reason .reason-unit__dtl .reason-ttl {
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #776358;
  font-size: 3.4rem;
  font-weight: bold;
  color: #776358;
  text-shadow: 1px 1px 0 #FAF0E4, -1px -1px 0 #FAF0E4, -1px 1px 0 #FAF0E4, 1px -1px 0 #FAF0E4, 0px 1px 0 #FAF0E4, 0 -1px 0 #FAF0E4, -1px 0 0 #FAF0E4, 1px 0 0 #FAF0E4;
}

@media screen and (max-width: 1279px) {
  .reason .reason-unit__dtl .reason-ttl {
    font-size: 2.8rem;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 1023px) {
  .reason .reason-unit__dtl .reason-ttl {
    font-size: 2.4rem;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 959px) {
  .reason .reason-unit__dtl .reason-ttl {
    font-size: 2rem;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 767px) {
  .reason .reason-unit__dtl .reason-ttl {
    font-size: 1.8rem;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
}

.reason .reason-unit__dtl .reason-ttl::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: -11px;
  width: 1px;
  height: 20px;
  rotate: -40deg;
  background: #776358;
}

.reason .reason-unit:nth-of-type(2), .reason .reason-unit:nth-of-type(4) {
  padding-right: 120px;
}

@media screen and (max-width: 1279px) {
  .reason .reason-unit:nth-of-type(2), .reason .reason-unit:nth-of-type(4) {
    padding-right: 80px;
  }
}

@media screen and (max-width: 1023px) {
  .reason .reason-unit:nth-of-type(2), .reason .reason-unit:nth-of-type(4) {
    padding-right: 64px;
  }
}

@media screen and (max-width: 959px) {
  .reason .reason-unit:nth-of-type(2), .reason .reason-unit:nth-of-type(4) {
    padding-right: 0;
  }
}

.reason .reason-unit:nth-of-type(3) {
  padding-left: 120px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 1279px) {
  .reason .reason-unit:nth-of-type(3) {
    padding-left: 80px;
  }
}

@media screen and (max-width: 1023px) {
  .reason .reason-unit:nth-of-type(3) {
    padding-left: 64px;
  }
}

@media screen and (max-width: 959px) {
  .reason .reason-unit:nth-of-type(3) {
    padding-left: 0;
  }
}

#anchor-medical {
  margin-top: -150px;
  padding-top: 150px;
}

.medical {
  margin-bottom: calc(8px * 13);
  position: relative;
}

@media screen and (max-width: 959px) {
  .medical {
    margin-bottom: calc((8px * 13) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .medical {
    margin-bottom: calc((8px * 13) * 0.5);
  }
}

.medical::before {
  content: "";
  position: absolute;
  top: -92px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + 56px);
  background-image: -webkit-gradient(linear, left top, right top, from(#776358), to(#B7A280));
  background-image: linear-gradient(90deg, #776358, #B7A280);
  clip-path: polygon(95% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
}

@media screen and (max-width: 767px) {
  .medical::before {
    top: -32px;
    height: calc(100% - 5px);
  }
}

@media screen and (max-width: 767px) {
  .medical::before {
    clip-path: polygon(95% 0, 100% 10%, 100% 100%, 0 100%, 0 0);
  }
}

@media screen and (max-width: 519px) {
  .medical::before {
    clip-path: polygon(95% 0, 100% 5%, 100% 100%, 0 100%, 0 0);
  }
}

.medical .medical-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 56px;
}

@media screen and (max-width: 1279px) {
  .medical .medical-unit {
    gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  .medical .medical-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}

.medical .medical-unit__menu {
  width: 100%;
}

.medical .medical-unit__menu .medical-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

@media screen and (max-width: 1279px) {
  .medical .medical-unit__menu .medical-menu {
    gap: 14px;
  }
}

@media screen and (max-width: 959px) {
  .medical .medical-unit__menu .medical-menu {
    gap: 12px;
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 767px) {
  .medical .medical-unit__menu .medical-menu {
    gap: 8px;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 519px) {
  .medical .medical-unit__menu .medical-menu {
    gap: 6px;
    margin-bottom: 8px;
  }
}

.medical .medical-unit__menu .medical-menu a {
  display: block;
  padding: 16px 16px 32px;
  background: #ffffff;
  outline: 1px solid rgba(119, 99, 88, 0.3);
  /*outlineで線を追加*/
  outline-offset: -4px;
  /*outline-offsetの値を-4pxにして内側に調整*/
  width: calc((100% / 3) - (16px * 2 / 3));
  -webkit-box-shadow: 0px 0px 6px 0px rgba(119, 99, 88, 0.5);
  box-shadow: 0px 0px 6px 0px rgba(119, 99, 88, 0.5);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 1279px) {
  .medical .medical-unit__menu .medical-menu a {
    width: calc((100% / 3) - (14px * 2 / 3));
  }
}

@media screen and (max-width: 1023px) {
  .medical .medical-unit__menu .medical-menu a {
    padding: 16px 16px 24px;
  }
}

@media screen and (max-width: 959px) {
  .medical .medical-unit__menu .medical-menu a {
    width: calc((100% / 3) - (12px * 2 / 3));
  }
}

@media screen and (max-width: 767px) {
  .medical .medical-unit__menu .medical-menu a {
    width: calc((100% / 3) - (8px * 2 / 3));
    padding: 10px 10px 20px;
  }
}

@media screen and (max-width: 519px) {
  .medical .medical-unit__menu .medical-menu a {
    width: calc((100% / 1) - (6px * 0 / 1));
    padding: 10px 10px 16px;
  }
}

.medical .medical-unit__menu .medical-menu a .medical-subttl {
  margin-bottom: 30px;
  color: rgba(119, 99, 88, 0.4);
  font-family: "Lora", serif;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .medical .medical-unit__menu .medical-menu a .medical-subttl {
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 519px) {
  .medical .medical-unit__menu .medical-menu a .medical-subttl {
    margin-bottom: 6px;
    font-size: 1.2rem;
  }
}

.medical .medical-unit__menu .medical-menu a img {
  width: 84px;
  height: 74px;
  margin-inline: auto;
  margin-bottom: 30px;
}

@media screen and (max-width: 1023px) {
  .medical .medical-unit__menu .medical-menu a img {
    width: 74px;
    height: 64px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .medical .medical-unit__menu .medical-menu a img {
    width: 54px;
    height: 44px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 519px) {
  .medical .medical-unit__menu .medical-menu a img {
    margin-bottom: 6px;
  }
}

.medical .medical-unit__menu .medical-menu a .medical-ttl {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 48px;
  margin-inline: auto;
  font-size: 2.4rem;
  color: #776358;
}

@media screen and (max-width: 1279px) {
  .medical .medical-unit__menu .medical-menu a .medical-ttl {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1023px) {
  .medical .medical-unit__menu .medical-menu a .medical-ttl {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .medical .medical-unit__menu .medical-menu a .medical-ttl {
    padding-right: 30px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 519px) {
  .medical .medical-unit__menu .medical-menu a .medical-ttl {
    font-size: 1.4rem;
  }
}

.medical .medical-unit__menu .medical-menu a .medical-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  translate: 0 -50%;
  width: 22px;
  height: 22px;
  background: rgba(146, 124, 111, 0.1);
  border-radius: 100%;
}

@media screen and (max-width: 767px) {
  .medical .medical-unit__menu .medical-menu a .medical-ttl::before {
    right: 7px;
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 519px) {
  .medical .medical-unit__menu .medical-menu a .medical-ttl::before {
    width: 16px;
    height: 16px;
    right: 10px;
  }
}

.medical .medical-unit__menu .medical-menu a .medical-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 1;
  translate: 0 -50%;
  width: 38px;
  height: 8px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/arrow.svg") center/contain no-repeat;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .medical .medical-unit__menu .medical-menu a .medical-ttl::after {
    width: 34px;
    height: 4px;
    right: -9px;
  }
}

@media screen and (max-width: 519px) {
  .medical .medical-unit__menu .medical-menu a .medical-ttl::after {
    background: url("/wp-content/themes/itreat_base/dist/img/common/arrow.svg") top right/cover no-repeat;
    width: 22px;
    height: 8px;
    right: -3px;
  }
}

.medical .medical-unit__menu .medical-menu a:hover {
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}

.medical .medical-unit__menu .medical-submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

@media screen and (max-width: 1279px) {
  .medical .medical-unit__menu .medical-submenu {
    gap: 14px;
  }
}

@media screen and (max-width: 959px) {
  .medical .medical-unit__menu .medical-submenu {
    gap: 12px;
  }
}

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

.medical .medical-unit__menu .medical-submenu a {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 16px;
  height: 96px;
  background: #ffffff;
  outline: 1px solid rgba(119, 99, 88, 0.3);
  /*outlineでドットの線を追加*/
  outline-offset: -2px;
  /*outline-offsetの値を-15pxにして内側に調整*/
  line-height: 1.3;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(119, 99, 88, 0.5);
  box-shadow: 0px 0px 6px 0px rgba(119, 99, 88, 0.5);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: calc((100% / 3) - (16px * 2 / 3));
}

@media screen and (max-width: 1279px) {
  .medical .medical-unit__menu .medical-submenu a {
    padding: 0 14px;
    width: calc((100% / 3) - (14px * 2 / 3));
  }
}

@media screen and (max-width: 959px) {
  .medical .medical-unit__menu .medical-submenu a {
    width: calc((100% / 3) - (12px * 2 / 3));
    height: 88px;
  }
}

@media screen and (max-width: 767px) {
  .medical .medical-unit__menu .medical-submenu a {
    width: calc((100% / 2) - (10px * 1 / 2));
    height: 72px;
  }
}

@media screen and (max-width: 519px) {
  .medical .medical-unit__menu .medical-submenu a {
    padding: 0 10px;
    height: 64px;
  }
}

.medical .medical-unit__menu .medical-submenu a .medical-ttl {
  position: relative;
  width: 100%;
  font-size: 1.8rem;
  color: #776358;
}

@media screen and (max-width: 1279px) {
  .medical .medical-unit__menu .medical-submenu a .medical-ttl {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1023px) {
  .medical .medical-unit__menu .medical-submenu a .medical-ttl {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 519px) {
  .medical .medical-unit__menu .medical-submenu a .medical-ttl {
    font-size: 1.4rem;
  }
}

.medical .medical-unit__menu .medical-submenu a .medical-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  translate: 0 -50%;
  width: 22px;
  height: 22px;
  background: rgba(146, 124, 111, 0.1);
  border-radius: 100%;
}

@media screen and (max-width: 1279px) {
  .medical .medical-unit__menu .medical-submenu a .medical-ttl::before {
    right: 15px;
  }
}

@media screen and (max-width: 519px) {
  .medical .medical-unit__menu .medical-submenu a .medical-ttl::before {
    width: 16px;
    height: 16px;
    right: 10px;
  }
}

.medical .medical-unit__menu .medical-submenu a .medical-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  z-index: 1;
  translate: 0 -50%;
  width: 38px;
  height: 8px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/arrow.svg") center/contain no-repeat;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 1279px) {
  .medical .medical-unit__menu .medical-submenu a .medical-ttl::after {
    right: -6px;
  }
}

@media screen and (max-width: 519px) {
  .medical .medical-unit__menu .medical-submenu a .medical-ttl::after {
    background: url("/wp-content/themes/itreat_base/dist/img/common/arrow.svg") top right/cover no-repeat;
    width: 22px;
    right: -3px;
  }
}

.medical .medical-unit__menu .medical-submenu a:hover {
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}

.movie {
  margin-bottom: calc(8px * 13);
}

@media screen and (max-width: 959px) {
  .movie {
    margin-bottom: calc((8px * 13) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .movie {
    margin-bottom: calc((8px * 13) * 0.5);
  }
}

.movie .movie-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: calc(8px * 3);
}

@media screen and (max-width: 959px) {
  .movie .movie-list {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .movie .movie-list {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .movie .movie-list {
    gap: 16px;
  }
}

@media screen and (max-width: 767px) {
  .movie .movie-list {
    gap: 12px;
  }
}

.movie .movie-list__item {
  width: calc((100% / 3) - (24px * 2 / 3));
  aspect-ratio: 16 / 9;
}

@media screen and (max-width: 959px) {
  .movie .movie-list__item {
    width: calc((100% / 2) - (16px * 1 / 2));
  }
}

@media screen and (max-width: 767px) {
  .movie .movie-list__item {
    width: calc((100% / 1) - (12px * 0 / 1));
  }
}

.movie .movie-list__item iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.approach {
  position: relative;
  margin-bottom: calc(8px * 20);
}

@media screen and (max-width: 959px) {
  .approach {
    margin-bottom: calc((8px * 20) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .approach {
    margin-bottom: calc((8px * 20) * 0.5);
  }
}

.approach::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + 104px);
  background: #ffffff;
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
}

@media screen and (max-width: 959px) {
  .approach::before {
    height: calc(100% + 84px);
  }
}

@media screen and (max-width: 767px) {
  .approach::before {
    height: calc(100% + 64px);
    clip-path: polygon(0 0, 100% 2%, 100% 98%, 0% 100%);
  }
}

@media screen and (max-width: 519px) {
  .approach::before {
    height: calc(100% + 52px);
    clip-path: polygon(0 0, 100% 1%, 100% 99%, 0% 100%);
  }
}

.approach .approach-txt {
  text-align: center;
}

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

.approach .approach-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}

@media screen and (max-width: 959px) {
  .approach .approach-unit {
    gap: 16px;
  }
}

@media screen and (max-width: 519px) {
  .approach .approach-unit {
    gap: 30px;
  }
}

.approach .approach-unit .approach-col {
  width: calc((100% / 3) - (24px * 2 / 3));
  border: 1px solid #cccccc;
}

@media screen and (max-width: 959px) {
  .approach .approach-unit .approach-col {
    width: calc((100% / 3) - (16px * 2 / 3));
  }
}

@media screen and (max-width: 767px) {
  .approach .approach-unit .approach-col {
    width: calc((100% / 2) - (30px * 1 / 2));
  }
}

@media screen and (max-width: 519px) {
  .approach .approach-unit .approach-col {
    width: calc((100% / 1) - (0px * 0 / 1));
  }
}

.approach .approach-unit .approach-col .approach-vsl {
  margin-bottom: 8px;
}

.approach .approach-unit .approach-col .approach-dtl {
  padding: 0 18px 18px 18px;
}

@media screen and (max-width: 1023px) {
  .approach .approach-unit .approach-col .approach-dtl {
    padding: 0 14px 14px 14px;
  }
}

@media screen and (max-width: 959px) {
  .approach .approach-unit .approach-col .approach-dtl {
    padding: 0 12px 12px 12px;
  }
}

@media screen and (max-width: 519px) {
  .approach .approach-unit .approach-col .approach-dtl {
    padding: 0 10px 10px 10px;
  }
}

.approach .approach-unit .approach-col .approach-dtl .approach-ttl {
  position: relative;
  font-size: 2rem;
  color: #776358;
  text-align: center;
  border-bottom: 1px solid #776358;
  padding-bottom: 16px;
  margin-bottom: 14px;
  line-height: 1.3;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .approach .approach-unit .approach-col .approach-dtl .approach-ttl {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 519px) {
  .approach .approach-unit .approach-col .approach-dtl .approach-ttl {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
  }
}

.approach .approach-unit .approach-col .approach-dtl .approach-ttl::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  translate: 0 -50%;
  width: 10px;
  height: 2px;
  background: #ffffff;
}

.approach .approach-unit .approach-col .approach-dtl .approach-ttl::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  translate: 0 -50%;
  width: 12px;
  height: 1px;
  background: #776358;
  rotate: -40deg;
}

.environment {
  margin-bottom: calc(8px * 13);
}

@media screen and (max-width: 959px) {
  .environment {
    margin-bottom: calc((8px * 13) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .environment {
    margin-bottom: calc((8px * 13) * 0.5);
  }
}

.environment .environment-txt {
  text-align: center;
}

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

.environment .environment-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 18px;
  margin-bottom: calc(8px * 5);
  text-align: center;
}

@media screen and (max-width: 959px) {
  .environment .environment-list {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .environment .environment-list {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 767px) {
  .environment .environment-list {
    gap: 64px 8px;
  }
}

.environment .environment-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  border-left: 1px dotted rgba(146, 124, 111, 0.3);
  width: 1px;
  height: 100%;
}

.environment .environment-list::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  border-top: 1px dotted rgba(146, 124, 111, 0.3);
  width: 100%;
  height: 1px;
}

.environment .environment-list__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 2rem;
  color: #776358;
  line-height: 1.3;
}

@media screen and (max-width: 959px) {
  .environment .environment-list__item {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .environment .environment-list__item {
    font-size: 1.4rem;
    letter-spacing: -0.45px;
  }
}

.environment .environment-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 112px;
  height: 112px;
  border-radius: 100%;
  border: 1px solid rgba(146, 124, 111, 0.3);
}

@media screen and (max-width: 767px) {
  .environment .environment-list__item::before {
    width: 92px;
    height: 92px;
  }
}

.environment .environment-list__item span {
  font-family: "Lora", serif;
  font-size: 3.2rem;
  color: rgba(119, 99, 88, 0.3);
  line-height: 1;
}

@media screen and (max-width: 1023px) {
  .environment .environment-list__item span {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 959px) {
  .environment .environment-list__item span {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .environment .environment-list__item span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 519px) {
  .environment .environment-list__item span {
    font-size: 1.6rem;
  }
}

.environment .environment-img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/*# sourceMappingURL=../../maps/pages/top.css.map */
