.form-field {
  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: 20px 0;
}

@media screen and (max-width: 767px) {
  .form-field__item {
    padding: 16px 0;
  }
}

.form-field__item:not(:last-of-type) {
  border-bottom: dotted 2px rgba(153, 153, 153, 0.4);
}

.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: 12px;
  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;
  border-radius: 2px;
}

.form-required {
  background: #CE7F67;
}

.form-optional {
  background: #6AACA1;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #eeeeee;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Shippori Mincho", "Noto serif JP", "Inter", serif;
  line-height: 56px;
}

@media screen and (max-width: 767px) {
  input,
  select,
  textarea {
    font-size: 1.4rem;
    height: 50px;
    line-height: 50px;
  }
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999999;
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #999999;
}

input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999999;
}

input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #999999;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #999999;
}

input:focus,
select:focus,
textarea:focus {
  outline: solid 2px #464646;
}

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

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

@media screen and (max-width: 767px) {
  textarea {
    height: 180px;
  }
}

.--half-field dd {
  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;
  gap: 10px;
}

.--age-field dd {
  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: 8px;
}

.--age-field dd input {
  width: 120px;
}

.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 #676767 #676767 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

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

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

.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;
  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 #CE7F67;
}

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

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: solid 2px #6AACA1;
  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: 10px;
  height: 10px;
  background: #6AACA1;
  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: #6AACA1;
}

.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-inline: auto;
  margin-bottom: calc(8px * 5);
  background: #6AACA1;
  border: 1px solid #6AACA1;
  color: #ffffff;
  font-size: 1.8rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  border-radius: 10px 2px;
  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 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

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

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

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

.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 #6AACA1;
  color: #6AACA1;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: rgba(206, 127, 103, 0.08);
  color: #CE7F67;
  border: solid 1px #CE7F67;
}

.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(206, 127, 103, 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(206, 127, 103, 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(206, 127, 103, 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(206, 127, 103, 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(206, 127, 103, 0.4);
}

.wpcf7 form.spam .wpcf7-response-output {
  background: rgba(206, 127, 103, 0.08);
  color: #CE7F67;
  border: solid 1px #CE7F67;
}

.wpcf7 form.spam input::-webkit-input-placeholder, .wpcf7 form.spam select::-webkit-input-placeholder, .wpcf7 form.spam textarea::-webkit-input-placeholder {
  color: rgba(206, 127, 103, 0.4);
}

.wpcf7 form.spam input::-moz-placeholder, .wpcf7 form.spam select::-moz-placeholder, .wpcf7 form.spam textarea::-moz-placeholder {
  color: rgba(206, 127, 103, 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(206, 127, 103, 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(206, 127, 103, 0.4);
}

.wpcf7 form.spam input::placeholder,
.wpcf7 form.spam select::placeholder,
.wpcf7 form.spam textarea::placeholder {
  color: rgba(206, 127, 103, 0.4);
}

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

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

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

.wpcf7 .form.invalid .wpcf7-response-output {
  color: #CE7F67;
  font-size: 1.4rem;
  background-color: rgba(206, 127, 103, 0.1);
}

.grecaptcha-badge {
  visibility: hidden;
}

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

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

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

.privacy-frame {
  position: relative;
  padding: 16px;
  background: #ffffff;
  width: 100%;
  height: 280px;
  border: 1px solid #eeeeee;
}

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

.privacy-frame__inner {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  padding: 24px;
}

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

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

.privacy-frame__inner::-webkit-scrollbar {
  width: 4px;
  padding: 6px;
}

@media screen and (max-width: 959px) {
  .privacy-frame__inner::-webkit-scrollbar {
    width: 6px;
  }
}

.privacy-frame__inner::-webkit-scrollbar-track {
  background: #eeeeee;
}

.privacy-frame__inner::-webkit-scrollbar-thumb {
  background: #6AACA1 !important;
  width: 4px;
  height: 48px;
  border-radius: 1px;
  background-clip: content-box;
}

@media screen and (max-width: 959px) {
  .privacy-frame__inner::-webkit-scrollbar-thumb {
    border: 0;
    padding: 0;
  }
}

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

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

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

.privacy-frame .privacy-ttl__main {
  color: #6AACA1;
  font-size: 2.8rem;
}

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

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

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

.privacy-frame .privacy-ttl__sub {
  color: rgba(106, 172, 161, 0.6);
}

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

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

.privacy-frame .policy-list {
  counter-reset: list-num 0;
}

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

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

.privacy-frame .policy-list__item dt {
  position: relative;
  margin-bottom: 14px;
  padding-bottom: 14px;
  padding-left: 48px;
  border-bottom: 2px dotted rgba(153, 153, 153, 0.4);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
}

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

@media screen and (max-width: 959px) {
  .privacy-frame .policy-list__item dt {
    padding-left: 36px;
    font-size: 1.6rem;
  }
}

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

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

.privacy-frame .policy-list .policy-num-list {
  counter-reset: list-num;
}

.privacy-frame .policy-list .policy-num-list__item {
  position: relative;
  padding-left: 30px;
  font-size: 1.8rem;
}

@media screen and (max-width: 959px) {
  .privacy-frame .policy-list .policy-num-list__item {
    padding-left: 25px;
    font-size: 1.6rem;
  }
}

.privacy-frame .policy-list .policy-num-list__item:not(:last-child) {
  margin-bottom: 12px;
}

@media screen and (max-width: 959px) {
  .privacy-frame .policy-list .policy-num-list__item:not(:last-child) {
    margin-bottom: 8px;
  }
}

.privacy-frame .policy-list .policy-num-list__item::before {
  position: absolute;
  counter-increment: list-num;
  content: "(" counter(list-num) ")";
  left: 0;
  top: -1px;
}

.privacy-frame .policy-list .policy-num-list__item .list__item,
.privacy-frame .policy-list .policy-num-list__item .num-list__item {
  font-size: 1.6rem;
}

@media screen and (max-width: 959px) {
  .privacy-frame .policy-list .policy-num-list__item .list__item,
  .privacy-frame .policy-list .policy-num-list__item .num-list__item {
    font-size: 1.4rem;
  }
}

.headline {
  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;
  margin-bottom: calc(8px * 5);
}

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

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

.headline__sub {
  font-size: 1.8rem;
  letter-spacing: 2.5px;
  text-align: left;
}

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

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

.headline__main {
  font-size: 4.2rem;
  color: #6AACA1;
  font-family: "Noto Serif", "Inter", serif;
  text-transform: capitalize;
  letter-spacing: 2px;
  text-align: left;
}

@media screen and (max-width: 1023px) {
  .headline__main {
    font-size: 4rem;
  }
}

@media screen and (max-width: 959px) {
  .headline__main {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .headline__main {
    font-size: 2.8rem;
    letter-spacing: 1px;
  }
}

.headline.--center {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.headline.--center::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 24px;
  height: 10px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/head-deco.svg") center/cover no-repeat;
}

.headline.--side {
  margin-inline: 0;
  margin-bottom: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.cate-list {
  border-top: 1px solid #C7D8D5;
  border-bottom: 1px solid #C7D8D5;
}

@media screen and (max-width: 767px) {
  .cate-list {
    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;
    border-top: none;
    border-bottom: 1px solid #6AACA1;
  }
}

@media screen and (max-width: 519px) {
  .cate-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 6px;
    border-top: none;
    border-bottom: 1px solid #6AACA1;
  }
}

.cate-list__item {
  position: relative;
}

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

@media screen and (max-width: 767px) {
  .cate-list__item {
    width: calc((100% / 4) - (1px * 3 / 4));
    text-align: center;
  }
  .cate-list__item:not(:last-of-type) {
    border-right: 1px dotted #6AACA1;
    margin-right: 0;
    margin-left: 0;
  }
}

.cate-list__item:not(:last-of-type) {
  border-bottom: 1px dotted rgba(70, 70, 70, 0.1);
}

@media screen and (max-width: 767px) {
  .cate-list__item:not(:last-of-type) {
    border-bottom: none;
  }
}

.cate-list__item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4px;
  height: 8px;
  background-color: #6AACA1;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

@media screen and (max-width: 767px) {
  .cate-list__item::after {
    display: none;
  }
}

.cate-list__item a {
  display: block;
  padding: 12px 8px;
}

@media screen and (max-width: 767px) {
  .cate-list__item a {
    padding: 6px;
  }
}

@media screen and (max-width: 519px) {
  .cate-list__item a {
    font-size: 1.2rem;
    padding: 3px 6px;
  }
}

.cate-list__item a:hover {
  color: #6AACA1;
  -webkit-transform: translate(4px, 0);
  transform: translate(4px, 0);
}

@media screen and (max-width: 519px) {
  .cate-list__item a:hover {
    -webkit-transform: translate(0, 2px);
    transform: translate(0, 2px);
  }
}

.cate-list.--col {
  gap: 0;
}

@media screen and (max-width: 767px) {
  .cate-list.--col {
    padding-top: 8px;
    padding-bottom: 12px;
    border-bottom: none;
  }
  .cate-list.--col .cate-list__item {
    width: calc((100% / 3) - (2px * 2 / 3));
  }
  .cate-list.--col .cate-list__item:nth-of-type(3) {
    border: none;
  }
  .cate-list.--col .cate-list__item:nth-of-type(1), .cate-list.--col .cate-list__item:nth-of-type(2), .cate-list.--col .cate-list__item:nth-of-type(3) {
    border-bottom: 1px dotted #6AACA1;
  }
  .cate-list.--col .cate-list__item a {
    padding: 8px 6px;
  }
}

.hero {
  position: relative;
}

.hero .hero-point {
  position: absolute;
  bottom: 26px;
  left: 0;
  content: "";
}

@media screen and (max-width: 767px) {
  .hero .hero-point {
    bottom: 0;
  }
}

@media screen and (max-width: 519px) {
  .hero .hero-point {
    bottom: -70px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    max-width: 1040px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media screen and (max-width: 519px) and (max-width: 1279px) {
  .hero .hero-point {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media screen and (max-width: 519px) and (max-width: 959px) {
  .hero .hero-point {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (max-width: 519px) and (max-width: 519px) {
  .hero .hero-point {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.hero .hero-point__txt {
  position: relative;
  padding: 14px 54px 20px 40px;
  font-size: 2rem;
  background: #ffffff;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .hero .hero-point__txt {
    padding: 12px 40px 14px 22px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .hero .hero-point__txt {
    padding: 10px 30px 10px 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 519px) {
  .hero .hero-point__txt {
    padding: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    text-align: center;
    background: none;
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

.hero .hero-point__txt::before, .hero .hero-point__txt::after {
  content: "";
  background: url("/wp-content/themes/itreat_base/dist/img/common/leaf.svg") center/cover no-repeat;
}

@media screen and (max-width: 519px) {
  .hero .hero-point__txt::before, .hero .hero-point__txt::after {
    background: url("/wp-content/themes/itreat_base/dist/img/common/leaf-set.svg") center/cover no-repeat;
  }
}

.hero .hero-point__txt::before {
  position: absolute;
  top: -6px;
  right: 29px;
  width: 31px;
  height: 26px;
  -webkit-transform: rotate(-22deg);
  transform: rotate(-22deg);
}

@media screen and (max-width: 767px) {
  .hero .hero-point__txt::before {
    width: 27px;
    height: 22px;
    right: 10px;
  }
}

@media screen and (max-width: 519px) {
  .hero .hero-point__txt::before {
    width: 32px;
    height: 32px;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%) scale(-1, 1);
    transform: translateY(-50%) scale(-1, 1);
  }
}

.hero .hero-point__txt::after {
  position: absolute;
  top: 20px;
  right: -10px;
  width: 48px;
  height: 41px;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}

@media screen and (max-width: 767px) {
  .hero .hero-point__txt::after {
    width: 38px;
    height: 31px;
  }
}

@media screen and (max-width: 519px) {
  .hero .hero-point__txt::after {
    width: 32px;
    height: 32px;
    top: 50%;
    right: -30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.hero .hero-point__txt span {
  color: #CE7F67;
  font-size: 2.6rem;
  font-weight: bold;
}

@media screen and (max-width: 1023px) {
  .hero .hero-point__txt span {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 959px) {
  .hero .hero-point__txt span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .hero .hero-point__txt span {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 519px) {
  .hero .hero-point__txt span {
    font-size: 2rem;
  }
}

.information {
  overflow: hidden;
  margin-bottom: calc(8px * 13);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#F5FCF6), color-stop(white), to(white));
  background-image: linear-gradient(180deg, #F5FCF6, white, white);
  padding-top: 120px;
}

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

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

@media screen and (max-width: 959px) {
  .information {
    padding-top: 64px;
  }
}

@media screen and (max-width: 767px) {
  .information {
    padding-top: 56px;
  }
}

@media screen and (max-width: 519px) {
  .information {
    padding-top: 80px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#F5FCF6), color-stop(#ffffff), color-stop(#ffffff), to(#ffffff));
    background-image: linear-gradient(180deg, #F5FCF6, #ffffff, #ffffff, #ffffff);
  }
}

.information .movie {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.information .movie iframe {
  max-width: 100%;
  max-height: 100%;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .information .movie iframe {
    max-width: 400px;
    max-height: 200px;
  }
}

@media screen and (max-width: 519px) {
  .information .movie iframe {
    margin-bottom: 16px;
    width: 100%;
    height: 100%;
  }
}

.information .information-inner {
  position: relative;
  z-index: 0;
  width: 100%;
  padding: 80px 16px 16px;
  background: #ffffff;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .information .information-inner {
    padding: 32px 16px 16px;
    border-radius: 6px;
  }
}

@media screen and (max-width: 519px) {
  .information .information-inner {
    padding: 24px 0 0;
    background: none;
  }
}

.information .information-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 453px;
  height: 278px;
  background: url("/wp-content/themes/itreat_base/dist/img/top/border-deco-l.svg") center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .information .information-inner::before {
    width: 403px;
    height: 243px;
  }
}

@media screen and (max-width: 519px) {
  .information .information-inner::before {
    width: 120%;
    height: 243px;
  }
}

.information .information-inner::after {
  content: "";
  position: absolute;
  top: 170px;
  right: 0;
  z-index: -1;
  width: 220px;
  height: 288px;
  background: url("/wp-content/themes/itreat_base/dist/img/top/border-deco-m.svg") center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .information .information-inner::after {
    width: 181px;
    height: 238px;
  }
}

@media screen and (max-width: 519px) {
  .information .information-inner::after {
    width: 150px;
    height: 200px;
    top: 290px;
  }
}

.information .information-inner .information-content {
  max-width: 640px;
  margin-inline: auto;
}

.information .information-inner .information-content .hours-tbl {
  margin-bottom: 56px;
}

@media screen and (max-width: 767px) {
  .information .information-inner .information-content .hours-tbl {
    margin-bottom: 48px;
  }
}

@media screen and (max-width: 519px) {
  .information .information-inner .information-content .hours-tbl {
    margin-bottom: 32px;
  }
}

.information .information-inner .information-content .first-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: calc(8px * 4);
  background: #ffffff;
}

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

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

@media screen and (max-width: 519px) {
  .information .information-inner .information-content .first-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 12px;
    padding: 12px;
    border: 1px solid #6AACA1;
    border-radius: 4px;
  }
}

.information .information-inner .information-content .first-unit__dtl {
  width: calc(100% - 348px);
}

@media screen and (max-width: 767px) {
  .information .information-inner .information-content .first-unit__dtl {
    width: calc(100% - 248px);
  }
}

@media screen and (max-width: 519px) {
  .information .information-inner .information-content .first-unit__dtl {
    width: 100%;
  }
}

.information .information-inner .information-content .first-unit__dtl .first-ttl {
  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;
  margin-bottom: calc(8px * 4);
}

@media screen and (max-width: 959px) {
  .information .information-inner .information-content .first-unit__dtl .first-ttl {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .information .information-inner .information-content .first-unit__dtl .first-ttl {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 519px) {
  .information .information-inner .information-content .first-unit__dtl .first-ttl {
    margin-bottom: 10px;
    gap: 12px;
  }
}

.information .information-inner .information-content .first-unit__dtl .first-ttl__main {
  color: #6AACA1;
  font-size: 2.2rem;
}

@media screen and (max-width: 519px) {
  .information .information-inner .information-content .first-unit__dtl .first-ttl__main {
    font-size: 1.8rem;
  }
}

.information .information-inner .information-content .first-unit__dtl .first-ttl__sub {
  color: #C7D8D5;
}

@media screen and (max-width: 519px) {
  .information .information-inner .information-content .first-unit__dtl .btn {
    margin-right: 0;
    margin-left: auto;
  }
}

.information .information-inner .information-content .first-unit__vsl {
  width: 300px;
}

@media screen and (max-width: 767px) {
  .information .information-inner .information-content .first-unit__vsl {
    width: 200px;
  }
}

@media screen and (max-width: 519px) {
  .information .information-inner .information-content .first-unit__vsl {
    max-width: 320px;
    width: 100%;
    margin-inline: auto;
  }
}

.news .post-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: calc(8px * 13);
}

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

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

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

.news .post-unit__head {
  max-width: 180px;
  width: 100%;
}

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

.news .post-unit__content {
  width: calc(100% - 220px);
}

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

.news .post-unit__content .news-list__item:not(:last-of-type) {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid #eeeeee;
}

@media screen and (max-width: 767px) {
  .news .post-unit__content .news-list__item:not(:last-of-type) {
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
}

.news .post-unit__content .news-list__item:last-of-type {
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 959px) {
  .news .post-unit__content .news-list__item:last-of-type {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .news .post-unit__content .news-list__item:last-of-type {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

.news .post-unit__content .news-list__item .news-meta {
  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: 767px) {
  .news .post-unit__content .news-list__item .news-meta {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 519px) {
  .news .post-unit__content .news-list__item .news-meta {
    margin-bottom: 5px;
    gap: 10px;
  }
}

.news .post-unit__content .news-list__item .news-meta__cate {
  position: relative;
  border-radius: 4px 2px 4px 2px;
  background: #6AACA1;
  border: 1px solid #6AACA1;
  max-width: 100px;
  width: 100%;
}

@media screen and (max-width: 519px) {
  .news .post-unit__content .news-list__item .news-meta__cate {
    max-width: 92px;
  }
}

.news .post-unit__content .news-list__item .news-meta__cate .cate-txt {
  position: relative;
  padding: 3px 14px;
  z-index: 1;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (max-width: 519px) {
  .news .post-unit__content .news-list__item .news-meta__cate .cate-txt {
    padding: 2px 6px;
  }
}

.news .post-unit__content .news-list__item .news-meta__cate::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/itreat_base/dist/img/common/texture-grn.jpg") center/100px 100px repeat;
}

.news .post-unit__content .news-list__item .news-meta__cate:hover {
  background: #ffffff;
}

.news .post-unit__content .news-list__item .news-meta__cate:hover .cate-txt {
  color: #6AACA1;
}

.news .post-unit__content .news-list__item .news-meta__cate:hover::after {
  background: none;
}

.news .post-unit__content .news-list__item .news-ttl {
  font-size: 1.8rem;
}

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

@media screen and (max-width: 767px) {
  .news .post-unit__content .news-list__item .news-ttl {
    font-size: 1.4rem;
  }
}

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

.news .post-unit__content .news-list__item .news-ttl a:hover {
  -webkit-transform: translate(4px, 0);
  transform: translate(4px, 0);
}

@media screen and (max-width: 519px) {
  .news .post-unit__content .btn a {
    margin-inline: auto;
  }
}

.greeting {
  overflow: hidden;
  margin-bottom: calc(8px * 13);
}

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

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

@media screen and (max-width: 519px) {
  .greeting {
    margin-bottom: 40px;
  }
}

.greeting .greeting-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-inline: auto;
  max-width: 1440px;
}

@media screen and (max-width: 1440px) {
  .greeting .greeting-unit {
    margin-left: 0;
    margin-right: auto;
  }
}

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

.greeting .greeting-unit__vsl {
  position: relative;
  width: 573px;
}

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

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

@media screen and (max-width: 959px) {
  .greeting .greeting-unit__vsl {
    position: relative;
    top: 70px;
    z-index: -1;
    width: calc(100% - 24px);
  }
}

@media screen and (max-width: 767px) {
  .greeting .greeting-unit__vsl {
    width: calc(100% - 16px);
  }
}

.greeting .greeting-unit__vsl::before {
  content: "";
  position: absolute;
  top: 60px;
  right: 10%;
  z-index: -1;
  width: 50vw;
  height: calc(100% - 320px);
  background: rgba(106, 172, 161, 0.2);
  border-radius: 4px;
}

@media screen and (max-width: 1023px) {
  .greeting .greeting-unit__vsl::before {
    height: calc(100% - 480px);
  }
}

@media screen and (max-width: 959px) {
  .greeting .greeting-unit__vsl::before {
    display: none;
  }
}

.greeting .greeting-unit__dtl {
  padding-top: 40px;
  width: calc(100% - 573px);
}

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

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

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

.greeting .greeting-unit__dtl .greeting-lead {
  position: relative;
  padding: 56px 0 56px 88px;
  margin-bottom: 46px;
}

@media screen and (max-width: 1279px) {
  .greeting .greeting-unit__dtl .greeting-lead {
    padding: 56px 0 56px 48px;
  }
}

@media screen and (max-width: 959px) {
  .greeting .greeting-unit__dtl .greeting-lead {
    padding: 22px 32px 22px 24px;
    left: 24px;
    margin-bottom: 22px;
  }
}

@media screen and (max-width: 767px) {
  .greeting .greeting-unit__dtl .greeting-lead {
    left: 16px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 519px) {
  .greeting .greeting-unit__dtl .greeting-lead {
    padding: 16px 32px 16px 24px;
  }
}

.greeting .greeting-unit__dtl .greeting-lead::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/itreat_base/dist/img/top/geet-bg.jpg") center/cover no-repeat;
}

@media screen and (max-width: 959px) {
  .greeting .greeting-unit__dtl .greeting-lead::before {
    border-radius: 4px 0 0 4px;
    background-position: top right;
  }
}

.greeting .greeting-unit__dtl .greeting-lead .greeting-ttl {
  margin-bottom: calc(8px * 8);
  font-size: 4.4rem;
  color: #ffffff;
  letter-spacing: 5px;
}

@media screen and (max-width: 959px) {
  .greeting .greeting-unit__dtl .greeting-lead .greeting-ttl {
    margin-bottom: calc((8px * 8) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .greeting .greeting-unit__dtl .greeting-lead .greeting-ttl {
    margin-bottom: calc((8px * 8) * 0.5);
  }
}

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

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

@media screen and (max-width: 959px) {
  .greeting .greeting-unit__dtl .greeting-lead .greeting-ttl {
    font-size: 2.8rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .greeting .greeting-unit__dtl .greeting-lead .greeting-ttl {
    font-size: 2.4rem;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 519px) {
  .greeting .greeting-unit__dtl .greeting-lead .greeting-ttl {
    font-size: 2rem;
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

.greeting .greeting-unit__dtl .greeting-lead .greeting-post {
  color: #ffffff;
  font-size: 1.4rem;
}

@media screen and (max-width: 959px) {
  .greeting .greeting-unit__dtl .greeting-lead .greeting-post {
    font-size: 1.2rem;
  }
}

.greeting .greeting-unit__dtl .greeting-lead .greeting-post span {
  font-size: 2.2rem;
}

@media screen and (max-width: 959px) {
  .greeting .greeting-unit__dtl .greeting-lead .greeting-post span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .greeting .greeting-unit__dtl .greeting-lead .greeting-post span {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 519px) {
  .greeting .greeting-unit__dtl .greeting-lead .greeting-post span {
    font-size: 1.6rem;
  }
}

.greeting .greeting-unit__dtl .txt,
.greeting .greeting-unit__dtl .btn {
  max-width: 680px;
  width: 100%;
  padding-left: 88px;
  padding-right: 40px;
}

@media screen and (max-width: 1279px) {
  .greeting .greeting-unit__dtl .txt,
  .greeting .greeting-unit__dtl .btn {
    max-width: calc(100% - 16px);
    padding-left: 48px;
  }
}

@media screen and (max-width: 1023px) {
  .greeting .greeting-unit__dtl .txt,
  .greeting .greeting-unit__dtl .btn {
    padding-right: 32px;
  }
}

@media screen and (max-width: 959px) {
  .greeting .greeting-unit__dtl .txt,
  .greeting .greeting-unit__dtl .btn {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media screen and (max-width: 767px) {
  .greeting .greeting-unit__dtl .txt,
  .greeting .greeting-unit__dtl .btn {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.greeting .greeting-unit__dtl .txt {
  margin-bottom: 32px;
  line-height: 2;
}

@media screen and (max-width: 1279px) {
  .greeting .greeting-unit__dtl .txt {
    margin-bottom: 20px;
    line-height: 1.7;
  }
}

@media screen and (max-width: 959px) {
  .greeting .greeting-unit__dtl .txt {
    margin-bottom: 16px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 767px) {
  .greeting .greeting-unit__dtl .txt {
    margin-bottom: 10px;
    line-height: 1.5;
  }
}

.greeting .greeting-unit__dtl .txt:last-of-type {
  margin-bottom: 48px;
}

@media screen and (max-width: 959px) {
  .greeting .greeting-unit__dtl .txt:last-of-type {
    margin-bottom: 24px;
  }
}

.about {
  margin-bottom: calc(8px * 9);
  position: relative;
  padding: 104px 0;
}

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

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

@media screen and (max-width: 959px) {
  .about {
    padding: 48px 0 0;
  }
}

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

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/itreat_base/dist/img/top/about-bg.jpg") center/cover no-repeat;
}

.about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 126px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0), white);
}

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

@media screen and (max-width: 1023px) {
  .about .about-unit {
    gap: 40px;
  }
}

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

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

@media screen and (max-width: 767px) {
  .about .about-unit {
    gap: 22px;
  }
}

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

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

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

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

.about .about-unit__dtl .about-lead {
  position: relative;
  margin-bottom: 42px;
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 1023px) {
  .about .about-unit__dtl .about-lead {
    margin-bottom: 34px;
  }
}

@media screen and (max-width: 959px) {
  .about .about-unit__dtl .about-lead {
    margin-bottom: 32px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .about .about-unit__dtl .about-lead {
    margin-bottom: 24px;
  }
}

.about .about-unit__dtl .about-lead::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 50vw;
  height: 32px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/border-deco.svg") center/contain no-repeat;
  opacity: .3;
}

@media screen and (max-width: 1023px) {
  .about .about-unit__dtl .about-lead::before {
    right: 8%;
  }
}

@media screen and (max-width: 959px) {
  .about .about-unit__dtl .about-lead::before {
    right: auto;
    left: 0;
    width: 100%;
    bottom: -26px;
  }
}

@media screen and (max-width: 519px) {
  .about .about-unit__dtl .about-lead::before {
    opacity: 1;
  }
}

.about .about-unit__dtl .txt {
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .about .about-unit__dtl .txt {
    line-height: 1.5;
  }
}

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

@media screen and (max-width: 1023px) {
  .about .about-unit__vsl {
    max-width: 356px;
    width: 100%;
  }
}

@media screen and (max-width: 959px) {
  .about .about-unit__vsl {
    margin-inline: auto;
  }
}

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

@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: 140px;
  left: 0;
  width: 100%;
  height: 235px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/texture-aqu.jpg") center/cover no-repeat;
}

@media screen and (max-width: 959px) {
  .medical::before {
    top: 110px;
  }
}

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

@media screen and (max-width: 959px) {
  .medical::before {
    top: 90px;
  }
}

.medical .medical-unit {
  margin-bottom: calc(8px * 6);
  padding-top: 64px;
  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: 959px) {
  .medical .medical-unit {
    margin-bottom: calc((8px * 6) * 0.75);
  }
}

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

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

.medical .medical-unit .medical-col {
  width: calc((100% / 2) - (4px * 1 / 2));
}

@media screen and (max-width: 767px) {
  .medical .medical-unit .medical-col {
    width: calc((100% / 1) - (4px * 0 / 1));
  }
  .medical .medical-unit .medical-col:not(:last-of-type) {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 767px) and (max-width: 519px) {
  .medical .medical-unit .medical-col:not(:last-of-type) {
    margin-bottom: 24px;
  }
}

.medical .medical-unit .medical-col .medical-vsl {
  contain: paint;
  position: relative;
  aspect-ratio: 3/2;
  width: 100%;
  max-height: 260px;
  border-radius: 2px;
  margin-bottom: calc(8px * 3);
}

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

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

@media screen and (max-width: 519px) {
  .medical .medical-unit .medical-col .medical-vsl {
    max-height: 180px;
  }
}

.medical .medical-unit .medical-col .medical-vsl img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.medical .medical-unit .medical-col .medical-vsl .medical-ttl {
  position: absolute;
  bottom: -6px;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #ffffff;
  width: calc(100% - 40px);
  padding-top: 10px;
  border-radius: 8px 8px 0 0;
  color: #6AACA1;
  text-align: center;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .medical .medical-unit .medical-col .medical-vsl .medical-ttl {
    width: calc(100% - 28px);
  }
}

@media screen and (max-width: 519px) {
  .medical .medical-unit .medical-col .medical-vsl .medical-ttl {
    font-size: 1.8rem;
  }
}

.medical .medical-unit .medical-col:hover img {
  scale: 1.05;
}

.medical .search-bnr a {
  display: block;
  max-width: 572px;
  margin-inline: auto;
}

.medical .search-bnr a:hover {
  opacity: .6;
}

.media {
  margin-bottom: calc(8px * 15);
}

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

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

.media .media-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 42px;
}

@media screen and (max-width: 767px) {
  .media .media-col {
    gap: 20px;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 519px) {
  .media .media-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }
}

.media .media-col a {
  width: calc((100% / 2) - (32px * 1 / 2));
}

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

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

.media .media-col a:hover {
  -webkit-transform: translate(0, 4px);
  transform: translate(0, 4px);
}

.case {
  margin-bottom: calc(8px * 26);
}

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

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

@media screen and (max-width: 767px) {
  .case {
    margin-bottom: 56px;
  }
}

.case .case-head {
  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;
  margin-bottom: calc(8px * 5);
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

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

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

@media screen and (max-width: 767px) {
  .case .case-head {
    -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;
    gap: 16px;
  }
}

.case .case-head .headline__sub {
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid #C7D8D5;
}

@media screen and (max-width: 767px) {
  .case .case-head .headline__sub {
    border-right: none;
  }
}

.case .case-head .case-txt {
  width: calc(100% - 300px);
}

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

.case .case-cate .case-cate-list {
  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;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(106, 172, 161, 0.06);
}

@media screen and (max-width: 519px) {
  .case .case-cate .case-cate-list {
    padding: 12px;
  }
}

@media screen and (max-width: 519px) {
  .case .case-cate .case-cate-list__item {
    font-size: 1.4rem;
  }
}

.case .case-cate .case-cate-list__item:not(:last-of-type) {
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid #C7D8D5;
}

@media screen and (max-width: 519px) {
  .case .case-cate .case-cate-list__item:not(:last-of-type) {
    padding-right: 8px;
    margin-right: 8px;
  }
}

.case .case-cate .case-cate-list__item a {
  display: block;
}

.case .case-cate .case-cate-list__item a:hover {
  color: #6AACA1;
  -webkit-transform: translate(0, 2px);
  transform: translate(0, 2px);
}

.case .case-list {
  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;
  margin-bottom: calc(8px * 6);
  gap: 30px;
}

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

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

@media screen and (max-width: 767px) {
  .case .case-list {
    gap: 24px 16px;
  }
}

@media screen and (max-width: 519px) {
  .case .case-list {
    gap: 20px 10px;
  }
}

.case .case-list__item {
  width: calc((100% / 3) - (30px * 2 / 3));
}

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

@media screen and (max-width: 519px) {
  .case .case-list__item {
    width: calc((100% / 2) - (10px * 1 / 2));
  }
}

.case .case-list__item .case-vsl {
  margin-bottom: 16px;
  overflow: hidden;
}

.case .case-list__item .case-vsl a {
  display: block;
  position: relative;
  aspect-ratio: 3/2;
}

.case .case-list__item .case-vsl a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.case .case-list__item .case-vsl a:hover img {
  scale: 1.1;
}

.case .case-list__item .case-dtl .case-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .case .case-list__item .case-dtl .case-meta {
    margin-bottom: 8px;
    gap: 6px 14px;
  }
}

@media screen and (max-width: 519px) {
  .case .case-list__item .case-dtl .case-meta {
    margin-bottom: 5px;
    gap: 6px 8px;
  }
}

@media screen and (max-width: 767px) {
  .case .case-list__item .case-dtl .case-meta__date {
    font-size: 1.4rem;
  }
}

.case .case-list__item .case-dtl .case-meta__cate {
  position: relative;
  max-width: 82px;
  width: 100%;
  border-radius: 4px 2px 4px 2px;
  background: #6AACA1;
  border: 1px solid #6AACA1;
}

@media screen and (max-width: 959px) {
  .case .case-list__item .case-dtl .case-meta__cate {
    width: 80px;
  }
}

@media screen and (max-width: 519px) {
  .case .case-list__item .case-dtl .case-meta__cate {
    width: 70px;
  }
}

.case .case-list__item .case-dtl .case-meta__cate .cate-txt {
  position: relative;
  padding: 3px 13px;
  z-index: 1;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (max-width: 519px) {
  .case .case-list__item .case-dtl .case-meta__cate .cate-txt {
    padding: 1px 10px;
  }
}

.case .case-list__item .case-dtl .case-meta__cate::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/itreat_base/dist/img/common/texture-grn.jpg") center/100px 100px repeat;
}

@media screen and (max-width: 767px) {
  .case .case-list__item .case-dtl .case-meta__cate {
    font-size: 1.2rem;
  }
}

.case .case-list__item .case-dtl .case-meta__cate:hover {
  background: #ffffff;
}

.case .case-list__item .case-dtl .case-meta__cate:hover .cate-txt {
  color: #6AACA1;
}

.case .case-list__item .case-dtl .case-meta__cate:hover::after {
  background: none;
}

.case .case-list__item .case-dtl .case-ttl {
  font-size: 1.8rem;
}

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

@media screen and (max-width: 767px) {
  .case .case-list__item .case-dtl .case-ttl {
    font-size: 1.4rem;
  }
}

.case .case-list__item .case-dtl .case-ttl a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.case .case-list__item .case-dtl .case-ttl a:hover {
  text-decoration: underline;
  color: #6AACA1;
}

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

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

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

.blog::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 320px;
  background: #F4FAFA;
}

@media screen and (max-width: 767px) {
  .blog::before {
    display: none;
  }
}

.blog .blog-inner {
  background: #ffffff;
  border-radius: 10px;
}

@media screen and (max-width: 959px) {
  .blog .blog-inner {
    border-radius: 6px;
  }
}

@media screen and (max-width: 767px) {
  .blog .blog-inner {
    border-radius: 4px;
  }
}

.blog .post-unit {
  width: 100%;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: calc(8px * 5);
  padding-top: 64px;
  background: #ffffff;
}

@media screen and (max-width: 1279px) {
  .blog .post-unit {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media screen and (max-width: 959px) {
  .blog .post-unit {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (max-width: 519px) {
  .blog .post-unit {
    padding-right: 16px;
    padding-left: 16px;
  }
}

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

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

@media screen and (max-width: 767px) {
  .blog .post-unit {
    gap: 24px;
  }
}

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

.blog .post-unit__head {
  max-width: 180px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .blog .post-unit__head {
    max-width: 124px;
  }
}

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

.blog .post-unit__content {
  width: calc(100% - 220px);
}

@media screen and (max-width: 767px) {
  .blog .post-unit__content {
    width: calc(100% - 154px);
  }
}

@media screen and (max-width: 767px) {
  .blog .post-unit__content {
    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;
    width: 100%;
  }
}

.blog .post-unit__content .blog-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .blog .post-unit__content .blog-list__item {
    width: calc((100% / 2) - (16px * 1 / 2));
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 519px) {
  .blog .post-unit__content .blog-list__item {
    width: calc((100% / 2) - (10px * 1 / 2));
  }
}

.blog .post-unit__content .blog-list__item:not(:last-of-type) {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid #eeeeee;
}

@media screen and (max-width: 767px) {
  .blog .post-unit__content .blog-list__item:not(:last-of-type) {
    padding-bottom: 0;
    margin-bottom: 24px;
    border-bottom: none;
  }
}

.blog .post-unit__content .blog-list__item .blog-vsl {
  width: 168px;
  overflow: hidden;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 767px) {
  .blog .post-unit__content .blog-list__item .blog-vsl {
    width: 100%;
  }
}

.blog .post-unit__content .blog-list__item .blog-vsl a {
  display: block;
  position: relative;
  aspect-ratio: 3/2;
}

.blog .post-unit__content .blog-list__item .blog-vsl a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.blog .post-unit__content .blog-list__item .blog-vsl a:hover img {
  scale: 1.1;
}

.blog .post-unit__content .blog-list__item .blog-dtl {
  width: calc(100% - 188px);
}

@media screen and (max-width: 767px) {
  .blog .post-unit__content .blog-list__item .blog-dtl {
    width: 100%;
  }
}

.blog .post-unit__content .blog-list__item .blog-dtl .blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .blog .post-unit__content .blog-list__item .blog-dtl .blog-meta {
    margin-bottom: 8px;
    gap: 6px 14px;
  }
}

@media screen and (max-width: 519px) {
  .blog .post-unit__content .blog-list__item .blog-dtl .blog-meta {
    margin-bottom: 5px;
    gap: 6px 8px;
  }
}

@media screen and (max-width: 767px) {
  .blog .post-unit__content .blog-list__item .blog-dtl .blog-meta__date {
    font-size: 1.4rem;
  }
}

.blog .post-unit__content .blog-list__item .blog-dtl .blog-meta__cate {
  position: relative;
  max-width: 107px;
  width: 100%;
  border-radius: 4px 2px 4px 2px;
  background: #6AACA1;
  border: 1px solid #6AACA1;
}

.blog .post-unit__content .blog-list__item .blog-dtl .blog-meta__cate .cate-txt {
  position: relative;
  padding: 3px 14px;
  z-index: 1;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (max-width: 519px) {
  .blog .post-unit__content .blog-list__item .blog-dtl .blog-meta__cate .cate-txt {
    padding: 1px 10px;
  }
}

.blog .post-unit__content .blog-list__item .blog-dtl .blog-meta__cate::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/itreat_base/dist/img/common/texture-grn.jpg") center/100px 100px repeat;
}

@media screen and (max-width: 767px) {
  .blog .post-unit__content .blog-list__item .blog-dtl .blog-meta__cate {
    font-size: 1.2rem;
  }
}

.blog .post-unit__content .blog-list__item .blog-dtl .blog-meta__cate:hover {
  background: #ffffff;
}

.blog .post-unit__content .blog-list__item .blog-dtl .blog-meta__cate:hover .cate-txt {
  color: #6AACA1;
}

.blog .post-unit__content .blog-list__item .blog-dtl .blog-meta__cate:hover::after {
  background: none;
}

.blog .post-unit__content .blog-list__item .blog-dtl .blog-ttl {
  font-size: 1.8rem;
}

@media screen and (max-width: 959px) {
  .blog .post-unit__content .blog-list__item .blog-dtl .blog-ttl {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .blog .post-unit__content .blog-list__item .blog-dtl .blog-ttl {
    font-size: 1.4rem;
  }
}

.blog .post-unit__content .blog-list__item .blog-dtl .blog-ttl a {
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.blog .post-unit__content .blog-list__item .blog-dtl .blog-ttl a:hover {
  text-decoration: underline;
  color: #6AACA1;
}

.blog .post-unit__content .blog-list__item .blog-dtl .blog-txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.4rem;
  color: #999999;
}

@media screen and (max-width: 767px) {
  .blog .post-unit__content .blog-list__item .blog-dtl .blog-txt {
    display: none;
  }
}

.access .access-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 64px;
  margin-bottom: 40px;
}

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

@media screen and (max-width: 1023px) {
  .access .access-unit {
    gap: 40px;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 959px) {
  .access .access-unit {
    gap: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit {
    gap: 24px;
    margin-bottom: 20px;
  }
}

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

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

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

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

@media screen and (max-width: 519px) {
  .access .access-unit__dtl {
    width: 100%;
    margin: 0;
  }
}

.access .access-unit__dtl img {
  max-width: 411px;
  width: 100%;
  margin-bottom: 8px;
}

@media screen and (max-width: 959px) {
  .access .access-unit__dtl img {
    max-width: 360px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit__dtl img {
    max-width: 320px;
  }
}

@media screen and (max-width: 519px) {
  .access .access-unit__dtl img {
    max-width: 260px;
  }
}

.access .access-unit__dtl .txt {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.access .access-unit__dtl .map-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 24px;
}

@media screen and (max-width: 959px) {
  .access .access-unit__dtl .map-unit {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit__dtl .map-unit {
    margin-bottom: 10px;
  }
}

.access .access-unit__dtl .map-unit a {
  position: relative;
  padding: 18px;
  width: calc((100% / 2) - (4px * 1 / 2));
  text-align: center;
  border: 1px solid #6AACA1;
  border-radius: 2px 2px 8px 2px;
  font-size: 1.4rem;
}

@media screen and (max-width: 959px) {
  .access .access-unit__dtl .map-unit a {
    padding: 10px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit__dtl .map-unit a {
    padding: 14px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 519px) {
  .access .access-unit__dtl .map-unit a {
    padding: 10px 22px;
    font-size: 1.3rem;
  }
}

.access .access-unit__dtl .map-unit a span {
  color: #6AACA1;
  font-size: 1.8rem;
}

@media screen and (max-width: 959px) {
  .access .access-unit__dtl .map-unit a span {
    font-size: 1.6rem;
  }
}

.access .access-unit__dtl .map-unit a .map-ico {
  display: block;
  width: 29px;
  height: 35px;
  background-color: #6AACA1;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/map.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/map.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  margin-inline: auto;
  margin-bottom: 6px;
}

@media screen and (max-width: 959px) {
  .access .access-unit__dtl .map-unit a .map-ico {
    width: 19px;
    height: 25px;
    margin-bottom: 3px;
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit__dtl .map-unit a .map-ico {
    width: 19px;
    height: 25px;
  }
}

@media screen and (max-width: 519px) {
  .access .access-unit__dtl .map-unit a .map-ico {
    width: 14px;
    height: 19px;
  }
}

.access .access-unit__dtl .map-unit a::before {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 24px;
  height: 24px;
  border-radius: 8px 1px 8px 1px;
  border: 1px solid #6AACA1;
  background: rgba(106, 172, 161, 0.1);
}

.access .access-unit__dtl .map-unit a::after {
  position: absolute;
  right: 7px;
  bottom: 6px;
  content: "";
  width: 7px;
  height: 8px;
  background-color: #6AACA1;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.access .access-unit__dtl .map-unit a:hover {
  color: #ffffff;
  background: #6AACA1;
}

.access .access-unit__dtl .map-unit a:hover span {
  color: #ffffff;
}

.access .access-unit__dtl .map-unit a:hover .map-ico {
  background-color: #ffffff;
}

.access .access-unit__dtl .map-unit a:hover::before {
  background: #ffffff;
}

.access .access-unit__dtl .map-unit a:hover::after {
  background-color: #6AACA1;
}

.access .access-unit__dtl .access-tel {
  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: 24px;
  color: #6AACA1;
}

@media screen and (max-width: 959px) {
  .access .access-unit__dtl .access-tel {
    padding: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    border: 1px solid #6AACA1;
    border-radius: 2px;
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit__dtl .access-tel__txt {
    margin-bottom: 6px;
  }
}

.access .access-unit__dtl .access-tel__link {
  position: relative;
  font-size: 3.2rem;
  padding-left: 24px;
  color: #6AACA1;
  line-height: 1;
}

@media screen and (max-width: 1023px) {
  .access .access-unit__dtl .access-tel__link {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 959px) {
  .access .access-unit__dtl .access-tel__link {
    font-size: 2.4rem;
    padding-left: 16px;
  }
}

@media screen and (max-width: 767px) {
  .access .access-unit__dtl .access-tel__link {
    font-size: 2rem;
    padding-left: 14px;
  }
}

.access .access-unit__dtl .access-tel__link::before {
  content: "";
  position: absolute;
  top: 57%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 23px;
  background-color: #6AACA1;
  -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-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

@media screen and (max-width: 767px) {
  .access .access-unit__dtl .access-tel__link::before {
    width: 6px;
    height: 16px;
  }
}

.access .access-unit__dtl .access-tel:hover {
  background: #6AACA1;
}

.access .access-unit__dtl .access-tel:hover .access-tel__txt,
.access .access-unit__dtl .access-tel:hover .access-tel__link {
  color: #ffffff;
}

.access .access-unit__dtl .access-tel:hover .access-tel__link::before {
  background-color: #ffffff;
}

.access .access-unit__vsl {
  max-width: 480px;
  width: 100%;
}

.gmap {
  margin-bottom: calc(8px * 21);
}

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

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

.gmap iframe {
  margin-bottom: 16px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .gmap iframe {
    height: 320px;
  }
}

@media screen and (max-width: 519px) {
  .gmap iframe {
    height: 260px;
  }
}

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