@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #231815;
  line-height: 1.5;
}

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

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  button:hover {
    opacity: 1;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default type */
ul,
ol {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

/* Remove default margin padding */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button {
  padding: 0;
}

/* l-bg */
.l-bg {
  background: #F7F6F2;
}

/* l-cards */
.l-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
  margin-right: calc(50% - 50vw);
  overflow-x: auto;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-cards {
    gap: 1rem;
  }
  .l-cards .card {
    margin: 0 auto;
  }
}

/* l-circle */
.l-circle {
  position: relative;
  z-index: 1;
}
.l-circle::before, .l-circle::after {
  position: absolute;
  content: "";
  background: url(../img/common/circle-icon.png) no-repeat center/contain;
  z-index: -1;
}

.l-inner {
  width: 100%;
  max-width: 1080px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}

/* l-page */
.l-page {
  padding: 150px 0 80px;
  padding: 9.375rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .l-page {
    padding: 5rem 0;
  }
}

/* l-section */
.l-section {
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 3.75rem 0;
  }
}

/* l-wave */
.l-wave {
  position: relative;
  z-index: 2;
}
.l-wave::before, .l-wave::after {
  position: absolute;
  content: "";
  width: 1440px;
  width: 90rem;
  width: 100%;
  height: 80px;
  height: 5rem;
  left: 0;
  z-index: -1;
}
.l-wave::before {
  top: -80px;
  top: -5rem;
  top: 0;
  background: url(../img/common/bg01_pc.png) no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .l-wave::before {
    background: url(../img/common/bg01_sp.png) no-repeat center top/cover;
  }
}
.l-wave::after {
  bottom: -80px;
  bottom: -5rem;
  bottom: 0;
  background: url(../img/common/bg02_pc.png) no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .l-wave::after {
    background: url(../img/common/bg02_sp.png) no-repeat center bottom/cover;
  }
}

/* btn */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 217px;
  width: 13.5625rem;
  max-width: 100%;
  height: 60px;
  height: 3.75rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  background: #F39800;
  border-radius: 62.5rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.125rem;
  }
}
.btn::after {
  position: absolute;
  content: "";
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 8px;
  right: 0.5rem;
  background: url(../img/common/btn-icon.png) no-repeat center/contain;
}

/* card */
.card {
  width: 340px;
  width: 21.25rem;
  min-width: 340px;
  min-width: 21.25rem;
}
@media screen and (max-width: 767px) {
  .card {
    width: 18.75rem;
    min-width: 18.75rem;
  }
}

.card__inner {
  display: block;
}

.card__img img {
  border-radius: 3.125rem;
}

.card__address {
  font-size: 18px;
  font-size: 1.125rem;
  background: url(../img/common/map-icon.png) no-repeat center left/17px;
  background: url(../img/common/map-icon.png) no-repeat center left/1.0625rem;
  padding-left: 28px;
  padding-left: 1.75rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .card__address {
    font-size: 1.125rem;
  }
}

.card__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .card__title {
    font-size: 1.375rem;
    margin-top: 0.625rem;
  }
}

.card__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .card__category {
    margin-top: 0.5rem;
  }
}
.card__category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 3px 8px;
  padding: 0.1875rem 0.5rem;
  border-radius: 1.5rem;
  background: #FCFDED;
}

.card__more {
  display: inline-block;
  color: #CF6C09;
  letter-spacing: -0.1em;
  border-bottom: 1px solid #CF6C09;
  border-bottom: 0.0625rem solid #CF6C09;
  background: url(../img/common/link-icon.png) no-repeat center right 8px/16px;
  background: url(../img/common/link-icon.png) no-repeat center right 0.5rem/1rem;
  padding: 8px 48px 8px 8px;
  padding: 0.5rem 3rem 0.5rem 0.5rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .card__more {
    margin-top: 0.375rem;
  }
}

/* cv */
.cv {
  text-align: center;
  background: url(../img/common/cv-bg_pc.png) no-repeat center/cover;
  padding: 80px 0;
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .cv {
    background: url(../img/common/cv-bg_sp.png) no-repeat center/cover;
    padding: 2.5rem 0;
  }
}
.cv .title, .cv .subtitle {
  color: #fff;
}

.cv__content {
  background: #fff;
  border-radius: 62.5rem;
  margin-top: 32px;
  margin-top: 2rem;
  padding: 32px 0;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .cv__content {
    border-radius: 3.125rem;
    padding: 4rem 1rem;
  }
}

.cv__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .cv__subtitle {
    font-size: 1rem;
  }
}

.cv__tel {
  display: inline-block;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.25em;
  background: url(../img/common/tel-icon.png) no-repeat center left/40px;
  background: url(../img/common/tel-icon.png) no-repeat center left/2.5rem;
  padding-left: 56px;
  padding-left: 3.5rem;
  margin-top: 12px;
  margin-top: 0.75rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .cv__tel {
    font-size: 2rem;
    background-size: 2rem;
    padding-left: 2rem;
    margin-top: 0.9375rem;
  }
}

.cv__time {
  font-weight: 500;
  line-height: 1;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .cv__time {
    font-size: 0.875rem;
    margin-top: 0.3125rem;
  }
}

.cv__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .cv__items {
    display: block;
    margin-top: 1.875rem;
    padding-left: 0;
  }
}

.cv__item:first-child .cv__item-btn {
  width: 352px;
  width: 22rem;
}
@media screen and (max-width: 767px) {
  .cv__item:first-child .cv__item-btn {
    width: 18.4375rem;
  }
}
.cv__item:first-child .cv__item-btn::after {
  background: url(../img/common/contact-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__item:first-child .cv__item-btn::after {
    right: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .cv__item:nth-child(2) {
    margin-top: 1.25rem;
  }
}
.cv__item:nth-child(2) .cv__item-btn {
  width: 393px;
  width: 24.5625rem;
}
@media screen and (max-width: 767px) {
  .cv__item:nth-child(2) .cv__item-btn {
    width: 18.4375rem;
    padding-left: 1.25rem;
  }
}
.cv__item:nth-child(2) .cv__item-btn::after {
  background: url(../img/common/download-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__item:nth-child(2) .cv__item-btn::after {
    right: 1.25rem;
  }
}

.cv__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cv__item-title {
    font-size: 1.125rem;
  }
}
.cv__item-title span {
  display: inline-block;
}
.cv__item-title span:first-child {
  margin-right: 0.5em;
}
.cv__item-title span:last-child {
  margin-left: 0.5em;
}

.cv__item-btn {
  text-align: left;
  display: block;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  background: #F7F6F2;
  border-radius: 2rem;
  border: 1px solid #333;
  border: 0.0625rem solid #333;
  margin: 10px auto 0;
  margin: 0.625rem auto 0;
  padding: 14px 60px;
  padding: 0.875rem 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cv__item-btn {
    width: 17.5rem;
    font-size: 1.125rem;
    padding: 0.9375rem 2.5rem;
    margin-top: 0.625rem;
  }
}
.cv__item-btn::after {
  position: absolute;
  content: "";
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 60px;
  right: 3.75rem;
}
@media screen and (max-width: 767px) {
  .cv__item-btn::after {
    right: 1.875rem;
  }
}

/* drawer */
.drawer {
  position: absolute;
  z-index: 20;
  top: -8px;
  top: -0.5rem;
  left: 0;
  background: #fff;
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  padding: 64px 16px 32px;
  padding: 4rem 1rem 2rem;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
}
.drawer.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.drawer__item {
  border-bottom: 1px solid #999;
  border-bottom: 0.0625rem solid #999;
  position: relative;
}
.drawer__item a {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 16px 0 6px;
  padding: 1rem 0 0.375rem;
}
.drawer__item span {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  color: #B19C78;
  letter-spacing: 0.06em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.drawer__item button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  width: 2.75rem;
  height: 44px;
  height: 2.75rem;
  position: absolute;
  top: 20px;
  top: 1.25rem;
  right: 0;
}
.drawer__item button:hover {
  opacity: 1;
}
.drawer__item button.active span::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.drawer__item button span {
  display: block;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  background: #F39800;
  border-radius: 50%;
  position: relative;
  margin-top: 0;
}
.drawer__item button span::after, .drawer__item button span::before {
  position: absolute;
  content: "";
  width: 12px;
  width: 0.75rem;
  height: 1px;
  height: 0.0625rem;
  background: #fff;
  top: 50%;
  right: 6px;
  right: 0.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.drawer__item button span::before {
  top: 48%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.drawer__subitems {
  display: none;
}

.drawer__subitem + .drawer__subitem a {
  border-top: 1px solid #999;
  border-top: 0.0625rem solid #999;
}
.drawer__subitem a {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #B19C78;
  padding: 16px 0 6px;
  padding: 1rem 0 0.375rem;
}

.drawer__btn {
  display: block;
  text-align: right;
  width: 170px;
  width: 10.625rem;
  max-width: 100%;
  border-radius: 0.25rem;
  color: #fff;
  font-weight: 500;
  background: #F39800;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
  position: relative;
}
.drawer__btn::before {
  position: absolute;
  content: "";
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  left: 1.25rem;
  background: url(../img/common/contact-icon01.png) no-repeat center/contain;
}

.drawer__body {
  text-align: center;
  border-radius: 2rem;
  background: #F7F6F2;
  margin-top: 32px;
  margin-top: 2rem;
  padding: 24px;
  padding: 1.5rem;
}

.drawer__subtitle {
  font-weight: 500;
  line-height: 1.4;
}

.drawer__tel {
  display: inline-block;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.27em;
  line-height: 1;
  background: url(../img/common/tel-icon.png) no-repeat center left/32px;
  background: url(../img/common/tel-icon.png) no-repeat center left/2rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  white-space: nowrap;
}

.drawer__time {
  line-height: 1;
  margin-top: 16px;
  margin-top: 1rem;
}

/* entitle */
/* floating */
.floating {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  z-index: 50;
  padding: 13px 0;
  padding: 0.8125rem 0;
}
.floating .l-inner {
  padding: 0 20px;
  padding: 0 1.25rem;
}

.floating__btn {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 500;
  border-radius: 0.5rem;
  background: #F39800;
  padding: 10px;
  padding: 0.625rem;
  position: relative;
}
.floating__btn span {
  display: inline-block;
  padding-right: 34px;
  padding-right: 2.125rem;
  background: url(../img/common/mail-icon.png) no-repeat center right/24px;
  background: url(../img/common/mail-icon.png) no-repeat center right/1.5rem;
}

/* footer */
.footer {
  font-family: "Noto Sans JP", sans-serif;
  background: #F7F6F2;
  padding: 28px 0;
  padding: 1.75rem 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 2rem 0;
  }
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  gap: 1.5rem;
}

.footer__link a {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .footer__link a {
    font-size: 1rem;
  }
}

.footer__copyright {
  text-align: center;
  font-size: 19px;
  font-size: 1.1875rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 1.0625rem;
    margin-top: 1rem;
  }
}

/* form */
.form {
  font-family: "Noto Sans JP", sans-serif;
}

.form__item + .form__item {
  margin-top: 32px;
  margin-top: 2rem;
}

.form__item-label label {
  display: inline-block;
  letter-spacing: 0.04em;
}
.form__item-label span {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 6.25rem;
  padding: 2px 12px;
  padding: 0.125rem 0.75rem;
  margin-left: 16px;
  margin-left: 1rem;
}
.form__item-label span.required {
  color: #fff;
  border: 1px solid #F39800;
  border: 0.0625rem solid #F39800;
  background: #F39800;
}
.form__item-label span.optional {
  border: 1px solid #333;
  border: 0.0625rem solid #333;
  background: #fff;
}

.form__item-input {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input textarea, .form__item-input select {
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  background: #fff;
  letter-spacing: 0.04em;
  border-radius: 1rem;
  border: 1px solid #999;
  border: 0.0625rem solid #999;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
}
@media screen and (max-width: 767px) {
  .form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input textarea, .form__item-input select {
    font-size: 1rem;
  }
}
.form__item-input input[type=text]::-webkit-input-placeholder, .form__item-input input[type=tel]::-webkit-input-placeholder, .form__item-input input[type=email]::-webkit-input-placeholder, .form__item-input textarea::-webkit-input-placeholder, .form__item-input select::-webkit-input-placeholder {
  color: #999;
}
.form__item-input input[type=text]::-moz-placeholder, .form__item-input input[type=tel]::-moz-placeholder, .form__item-input input[type=email]::-moz-placeholder, .form__item-input textarea::-moz-placeholder, .form__item-input select::-moz-placeholder {
  color: #999;
}
.form__item-input input[type=text]::-ms-input-placeholder, .form__item-input input[type=tel]::-ms-input-placeholder, .form__item-input input[type=email]::-ms-input-placeholder, .form__item-input textarea::-ms-input-placeholder, .form__item-input select::-ms-input-placeholder {
  color: #999;
}
.form__item-input input[type=text]::placeholder, .form__item-input input[type=tel]::placeholder, .form__item-input input[type=email]::placeholder, .form__item-input textarea::placeholder, .form__item-input select::placeholder {
  color: #999;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input select {
  height: 56px;
  height: 3.5rem;
}
@media screen and (max-width: 767px) {
  .form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input select {
    height: 3.3125rem;
  }
}
.form__item-input textarea {
  height: 240px;
  height: 15rem;
  resize: none;
}
.form__item-input select {
  background: url(../img/common/select-icon.png) no-repeat center right 18px/18px;
  background: url(../img/common/select-icon.png) no-repeat center right 1.125rem/1.125rem;
  border: none;
  color: #999;
}
.form__item-input select.is-selected {
  color: #333;
}

.form__select {
  width: 100%;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #999;
  border: 0.0625rem solid #999;
}

.form__birthday {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
}
.form__radio {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .form__radio {
    margin-top: 1.5625rem;
  }
}
.form__radio .wpcf7-not-valid-tip {
  display: none;
}
.form__radio .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.form__radio label {
  display: block;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .form__radio label {
    margin-top: 1.5625rem;
  }
}
.form__radio input[type=radio] + span,
.form__radio input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #999;
  padding-left: 42px;
  padding-left: 2.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__radio input[type=radio] + span,
  .form__radio input[type=checkbox] + span {
    font-size: 1rem;
  }
}
.form__radio input[type=radio] + span::before, .form__radio input[type=radio] + span::after,
.form__radio input[type=checkbox] + span::before,
.form__radio input[type=checkbox] + span::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  border: 3px solid #999;
  border: 0.1875rem solid #999;
}
.form__radio input[type=radio] + span::before,
.form__radio input[type=checkbox] + span::before {
  display: block;
  left: 0;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
}
.form__radio input[type=radio] + span::after,
.form__radio input[type=checkbox] + span::after {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 7px;
  left: 0.4375rem;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
}
.form__radio input[type=radio]:checked + span::before,
.form__radio input[type=checkbox]:checked + span::before {
  border-color: #F39800;
}
.form__radio input[type=radio]:checked + span::after,
.form__radio input[type=checkbox]:checked + span::after {
  background: #F39800;
  border-color: #F39800;
}

.form__checkbox {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .form__checkbox {
    margin-top: 1.25rem;
  }
}
.form__checkbox .wpcf7-list-item {
  display: block;
}
@media screen and (max-width: 767px) {
  .form__checkbox .wpcf7-list-item {
    margin-left: 0;
  }
}
.form__checkbox label {
  display: block;
  margin-top: 30px;
  margin-top: 1.875rem;
}
.form__checkbox input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #999;
  padding-left: 42px;
  padding-left: 2.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__checkbox input[type=checkbox] + span {
    font-size: 1rem;
  }
}
.form__checkbox input[type=checkbox] + span::before, .form__checkbox input[type=checkbox] + span::after {
  position: absolute;
  content: "";
}
.form__checkbox input[type=checkbox] + span::before {
  display: block;
  background: #fff;
  border: 1px solid #999;
  border: 0.0625rem solid #999;
  border-radius: 0.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
}
.form__checkbox input[type=checkbox] + span::after {
  border-bottom: 3px solid #231815;
  border-bottom: 0.1875rem solid #231815;
  border-left: 3px solid #231815;
  border-left: 0.1875rem solid #231815;
  height: 10px;
  height: 0.625rem;
  width: 16px;
  width: 1rem;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 7px;
  left: 0.4375rem;
  top: 7px;
  top: 0.4375rem;
}
.form__checkbox input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.form__privacy {
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .form__privacy {
    text-align: left;
  }
}
.form__privacy a {
  color: #206BC8;
  text-decoration: underline;
}

.form__check {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__check {
    text-align: left;
  }
}
.form__check .wpcf7-list-item {
  margin-left: 0;
}
.form__check input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.04em;
  padding-left: 32px;
  padding-left: 2rem;
  position: relative;
}
.form__check input[type=checkbox] + span::before, .form__check input[type=checkbox] + span::after {
  position: absolute;
  content: "";
  display: block;
}
.form__check input[type=checkbox] + span::before {
  background: #fff;
  border: 1px solid #999;
  border: 0.0625rem solid #999;
  border-radius: 0.125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  left: 0;
  top: 50%;
}
.form__check input[type=checkbox] + span::after {
  border-bottom: 3px solid #231815;
  border-bottom: 0.1875rem solid #231815;
  border-left: 3px solid #231815;
  border-left: 0.1875rem solid #231815;
  height: 8px;
  height: 0.5rem;
  width: 15px;
  width: 0.9375rem;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 5px;
  left: 0.3125rem;
  top: 7px;
  top: 0.4375rem;
}
.form__check input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.form__btn-wrapper {
  width: 210px;
  width: 13.125rem;
  max-width: 100%;
  background: #999;
  border-radius: 625rem;
  margin: 48px auto 0;
  margin: 3rem auto 0;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .form__btn-wrapper {
    width: 12.5rem;
  }
}
.form__btn-wrapper.active {
  background: #F39800;
}

.form__btn {
  width: 100%;
  height: 60px;
  height: 3.75rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  padding-right: 40px;
  padding-right: 2.5rem;
  background: url(../img/common/btn-icon.png) no-repeat center right 6px/48px;
  background: url(../img/common/btn-icon.png) no-repeat center right 0.375rem/3rem;
  cursor: not-allowed;
}
@media screen and (max-width: 767px) {
  .form__btn {
    font-size: 1.125rem;
  }
}
.form__btn.active {
  cursor: pointer;
}

.wpcf7-spinner {
  display: none;
}

/* gnav */
.gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  gap: 2rem;
  font-family: "Noto Sans JP", sans-serif;
}

.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}

.gnav__item > a, .gnav__item > span {
  display: inline-block;
  font-weight: 500;
  padding: 10px 0;
  padding: 0.625rem 0;
}

.gnav__parent-text {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  font-weight: 500;
  padding-right: 16px;
  padding-right: 1rem;
  position: relative;
}
.gnav__parent-text::after {
  position: absolute;
  content: "";
  width: 7px;
  width: 0.4375rem;
  height: 7px;
  height: 0.4375rem;
  border-bottom: 1px solid #000;
  border-bottom: 0.0625rem solid #000;
  border-right: 1px solid #000;
  border-right: 0.0625rem solid #000;
  right: 0;
  top: 7px;
  top: 0.4375rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.gnav__child {
  display: none;
  position: absolute;
  top: 80px;
  top: 5rem;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #E7DDCE;
  padding: 60px 0 60px;
  padding: 3.75rem 0 3.75rem;
}

.gnav__child-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gnav__child-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 10px;
  margin-right: 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.gnav__child-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
}

.gnav__child-item {
  width: 230px;
  width: 14.375rem;
  max-width: 25%;
}
.gnav__child-item + .gnav__child-item {
  margin-left: 24px;
  margin-left: 1.5rem;
}

a.gnav__child-item-inner {
  display: block;
}

.gnav__child-item-img img {
  border-radius: 1rem;
}

.gnav__child-item-text {
  font-weight: 500;
  margin-top: 12px;
  margin-top: 0.75rem;
}

/* hamburger */
.hamburger {
  display: block;
  position: absolute;
  z-index: 30;
  right: 30px;
  right: 1.875rem;
  top: 14px;
  top: 0.875rem;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  background: #F39800;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
}
.hamburger.active .hamburger__border {
  top: 15px;
  top: 0.9375rem;
}
.hamburger.active .hamburger__border:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger.active .hamburger__border:nth-child(2), .hamburger.active .hamburger__border:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger__border {
  display: block;
  position: absolute;
  width: 16px;
  width: 1rem;
  height: 2px;
  height: 0.125rem;
  left: 8px;
  left: 0.5rem;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger__border:nth-child(1) {
  top: 9px;
  top: 0.5625rem;
}
.hamburger__border:nth-child(2) {
  top: 15px;
  top: 0.9375rem;
}
.hamburger__border:nth-child(3) {
  top: 21px;
  top: 1.3125rem;
}

/* header */
.header {
  position: absolute;
  top: 25px;
  top: 1.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 80px;
  height: 5rem;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    top: 0.5rem;
    height: 3.75rem;
  }
}

.header--single {
  position: static;
  -webkit-transform: unset;
          transform: unset;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1320px;
  width: 82.5rem;
  max-width: 95%;
  border-radius: 6.25rem;
  background: #fff;
  margin: 0 auto;
  padding: 0 70px;
  padding: 0 4.375rem;
  height: inherit;
}
@media screen and (max-width: 1300px) {
  .header__inner {
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 1.25rem;
  }
}

.header__logo {
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 9.9375rem;
  }
}
.header__logo a {
  display: block;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__texts {
  margin-left: 16px;
  margin-left: 1rem;
}

.header__tel {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.25em;
  background: url(../img/common/tel-icon.png) no-repeat center left/26px;
  background: url(../img/common/tel-icon.png) no-repeat center left/1.625rem;
  padding-left: 34px;
  padding-left: 2.125rem;
}

.header__time {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.header__btn {
  display: block;
  text-align: right;
  width: 266px;
  width: 16.625rem;
  max-width: 100%;
  border-radius: 62.5rem;
  color: #fff;
  font-weight: 500;
  background: #F39800;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  margin-left: 8px;
  margin-left: 0.5rem;
  position: relative;
}
.header__btn::before {
  position: absolute;
  content: "";
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  left: 1.25rem;
  background: url(../img/common/contact-icon01.png) no-repeat center/contain;
}

/* lead */
.lead {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: 32px;
  margin-top: 2rem;
}

/* main */
.main {
  overflow: hidden;
}

/* mv */
.mv {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .mv__img img {
    height: 15.625rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.mv__content {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -65px;
  bottom: -4.0625rem;
  width: 1030px;
  width: 64.375rem;
  max-width: calc(100% - 2.5rem);
  text-align: center;
  background: #fff;
  border-radius: 6.25rem;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .mv__content {
    border-radius: 6.25rem;
    padding: 1.875rem 1.25rem;
    bottom: -3rem;
  }
}

.mv__title {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.5rem;
  }
}

.mv__text {
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 1rem;
    margin-top: 0.3125rem;
  }
}

/* news */
.news__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 28px;
  gap: 1.25rem 1.75rem;
}
@media screen and (max-width: 767px) {
  .news__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.news__item-inner {
  display: block;
}

.news__item-img img {
  border-radius: 3.125rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 330/240;
}

.news__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
  margin-top: 1rem;
}

.news__item-category {
  position: relative;
}
.news__item-category span {
  text-align: center;
  display: inline-block;
  width: 120px;
  width: 7.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  background: #ccc;
  letter-spacing: -0.02em;
  border-radius: 0.25rem;
  padding: 5px;
  padding: 0.3125rem;
}
.news__item-category span.news {
  background: #FDEDF4;
}
.news__item-category span.press {
  background: #FFF8DB;
}
.news__item-category span.report {
  background: #FCFDED;
}

.news__item-date {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #999;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.news__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 16px;
  margin-top: 1rem;
}

/* pagination */
.pagination {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 3.125rem;
  }
}
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .pagination ul {
    gap: 0.875rem;
  }
}
.pagination a, .pagination span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 64px;
  width: 4rem;
  min-width: 64px;
  min-width: 4rem;
  height: 64px;
  height: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 50%;
  color: #999;
  border: 1px solid #999;
  border: 0.0625rem solid #999;
}
@media screen and (max-width: 767px) {
  .pagination a, .pagination span {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
}
.pagination .current {
  color: #fff;
  background: #F39800;
  border-color: #F39800;
}
.pagination .dots {
  border: none;
  width: unset;
  min-width: unset;
}
.pagination .prev, .pagination .next {
  border-color: #333;
}
.pagination .prev {
  background: url(../img/common/prev-icon.png) no-repeat center/20px;
  background: url(../img/common/prev-icon.png) no-repeat center/1.25rem;
}
@media screen and (max-width: 767px) {
  .pagination .prev {
    background-size: 1rem;
  }
}
.pagination .next {
  background: url(../img/common/next-icon.png) no-repeat center/20px;
  background: url(../img/common/next-icon.png) no-repeat center/1.25rem;
}
@media screen and (max-width: 767px) {
  .pagination .next {
    background-size: 1rem;
  }
}

/* slider */
.slider {
  display: none;
  margin: 0 calc(50% - 50vw);
}
.slider.slick-initialized {
  display: block;
}
.slider .slick-list {
  padding-left: calc(50vw - 515px - 1.25rem);
  padding-right: 25px;
}
@media screen and (max-width: 1080px) {
  .slider .slick-list {
    padding-left: 0.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .slider .slick-list {
    padding-left: 1rem;
    padding-right: 24px;
  }
}
.slider .card {
  width: 340px;
  width: 21.25rem;
  margin: 0 20px;
  margin: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .slider .card {
    width: 18.75rem;
    margin: 0 0.5rem;
  }
}

.slider__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  gap: 2.5rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .slider__controls {
    display: block;
  }
}

.slider__progress {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 700px;
  max-width: 43.75rem;
  height: 8px;
  height: 0.5rem;
  background: #D9D9D9;
  border-radius: 6.25rem;
  overflow: hidden;
}
.slider__progress span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #F39800;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.slider__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  gap: 3.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .slider__arrows {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1rem;
  }
}

.slider__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
  border: 1px solid #231815;
  border: 0.0625rem solid #231815;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .slider__arrow {
    width: 2rem;
    height: 2rem;
  }
}
.slider__arrow.slick-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.slider__arrow--prev {
  background: url(../img/common/prev-icon.png) no-repeat center/20px;
  background: url(../img/common/prev-icon.png) no-repeat center/1.25rem;
}
@media screen and (max-width: 767px) {
  .slider__arrow--prev {
    background-size: 1rem;
  }
}

.slider__arrow--next {
  background: url(../img/common/next-icon.png) no-repeat center/20px;
  background: url(../img/common/next-icon.png) no-repeat center/1.25rem;
}
@media screen and (max-width: 767px) {
  .slider__arrow--next {
    background-size: 1rem;
  }
}

/* subtitle */
.subtitle {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  color: #B19C78;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 2rem;
  }
}

/* title */
.title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 1.125rem;
  }
}

/* access */
.access::before {
  width: 116px;
  width: 7.25rem;
  height: 116px;
  height: 7.25rem;
  top: 104px;
  top: 6.5rem;
  right: -31px;
  right: -1.9375rem;
}
@media screen and (max-width: 767px) {
  .access::before {
    width: 5.1875rem;
    height: 5.1875rem;
    top: 5.75rem;
    right: -1.625rem;
  }
}
.access::after {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
  left: -100px;
  left: -6.25rem;
  bottom: 311px;
  bottom: 19.4375rem;
}
@media screen and (max-width: 767px) {
  .access::after {
    width: 4.3125rem;
    height: 4.3125rem;
    left: 0.9375rem;
    bottom: 6.25rem;
  }
}

.access__map {
  margin-top: 32px;
  margin-top: 2rem;
}
.access__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 1030/396;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3.125rem;
}
@media screen and (max-width: 767px) {
  .access__map iframe {
    aspect-ratio: 327/198;
    border-radius: 1.25rem;
  }
}

.access__link-wrapper {
  text-align: right;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.access__link {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  color: #CF6C09;
  font-weight: 500;
  border-bottom: 1px solid #CF6C09;
  border-bottom: 0.0625rem solid #CF6C09;
  background: url(../img/common/link-icon.png) no-repeat center right 8px/16px;
  background: url(../img/common/link-icon.png) no-repeat center right 0.5rem/1rem;
  padding: 8px 46px 8px 8px;
  padding: 0.5rem 2.875rem 0.5rem 0.5rem;
}

.access__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 32px;
  margin-top: 2rem;
}
.access__text + .access__text {
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .access__text + .access__text {
    margin-top: 0.75rem;
  }
}

.access__list {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .access__list {
    margin-top: 0.9375rem;
  }
}

.access__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid #B19C78;
  border-bottom: 0.0625rem solid #B19C78;
  padding: 15px 16px;
  padding: 0.9375rem 1rem;
}
@media screen and (max-width: 767px) {
  .access__list-item {
    display: block;
    line-height: 1.4;
    padding: 0.9375rem 0;
  }
}

.access__list-title {
  min-width: 54px;
  min-width: 3.375rem;
}
@media screen and (max-width: 767px) {
  .access__list-title {
    min-width: unset;
  }
}

@media screen and (max-width: 767px) {
  .access__list-text {
    margin-top: 0.3125rem;
  }
}

/* tel */
.tel {
  padding: 80px 0;
  padding: 5rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tel {
    padding: 3.75rem 0;
  }
}
.tel::before, .tel::after {
  position: absolute;
  content: "";
}
.tel::before {
  width: 100%;
  height: 80px;
  height: 5rem;
  left: 0;
  top: 0;
  background: url(../img/access/tel-bg01.png) no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .tel::before {
    height: 2.5rem;
  }
}
.tel::after {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
  top: 12px;
  top: 0.75rem;
  left: -50px;
  left: -3.125rem;
  background: url(../img/access/tel-bg02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .tel::after {
    width: 9.375rem;
    height: 9.375rem;
  }
}

.tel__text {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .tel__text {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}

/* contact */
.contact::before, .contact::after {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
}
.contact::before {
  top: 162px;
  top: 10.125rem;
  left: -70px;
  left: -4.375rem;
}
@media screen and (max-width: 767px) {
  .contact::before {
    width: 5.875rem;
    height: 5.875rem;
    top: 1.3125rem;
    left: -1.8125rem;
  }
}
.contact::after {
  top: 700px;
  top: 43.75rem;
  right: -70px;
  right: -4.375rem;
}
@media screen and (max-width: 767px) {
  .contact::after {
    width: 3.375rem;
    height: 3.375rem;
    top: 36.4375rem;
    right: -1.8125rem;
  }
}

.contact__inner::after {
  width: 118px;
  width: 7.375rem;
  height: 118px;
  height: 7.375rem;
  left: -9px;
  left: -0.5625rem;
  bottom: 378px;
  bottom: 23.625rem;
}
@media screen and (max-width: 767px) {
  .contact__inner::after {
    width: 3.375rem;
    height: 3.375rem;
    left: unset;
    bottom: 41.4375rem;
    right: -0.875rem;
  }
}

.contact__form {
  width: 800px;
  width: 50rem;
  max-width: 100%;
  margin: 0 auto;
}

/* news-archive */
.news-archive::before, .news-archive::after {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
}
.news-archive::before {
  top: 252px;
  top: 15.75rem;
  left: -56px;
  left: -3.5rem;
}
@media screen and (max-width: 767px) {
  .news-archive::before {
    width: 5.875rem;
    height: 5.875rem;
    top: 1.625rem;
    left: -2.375rem;
  }
}
.news-archive::after {
  right: -25px;
  right: -1.5625rem;
  bottom: 643px;
  bottom: 40.1875rem;
}
@media screen and (max-width: 767px) {
  .news-archive::after {
    width: 3.375rem;
    height: 3.375rem;
    top: 34.375rem;
    bottom: unset;
    right: -1.25rem;
  }
}

.news-archive__inner::after {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
  left: -91px;
  left: -5.6875rem;
  bottom: -40px;
  bottom: -2.5rem;
}
@media screen and (max-width: 767px) {
  .news-archive__inner::after {
    width: 3.375rem;
    height: 3.375rem;
    left: -0.75rem;
    bottom: 31.5625rem;
  }
}

.news-archive__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .news-archive__category {
    gap: 0.5rem 0.25rem;
  }
}
.news-archive__category a, .news-archive__category span {
  display: inline-block;
  font-weight: 500;
  letter-spacing: -0.02em;
  border-radius: 1.5rem;
  border: 1px solid #F39800;
  border: 0.0625rem solid #F39800;
  padding: 5px 16px;
  padding: 0.3125rem 1rem;
}
.news-archive__category a {
  background: #fff;
  color: #F39800;
}
.news-archive__category span {
  color: #fff;
  background: #F39800;
}

.news-archive__content {
  margin-top: 40px;
  margin-top: 2.5rem;
}

/* news-single */
.news-single::before, .news-single::after {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
}
@media screen and (max-width: 767px) {
  .news-single::before, .news-single::after {
    width: 5.875rem;
    height: 5.875rem;
  }
}
.news-single::before {
  top: 220px;
  top: 13.75rem;
  left: -42px;
  left: -2.625rem;
}
@media screen and (max-width: 767px) {
  .news-single::before {
    top: 0.75rem;
    left: -2.5rem;
  }
}
.news-single::after {
  top: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -31px;
  right: -1.9375rem;
}
@media screen and (max-width: 767px) {
  .news-single::after {
    right: -1.8125rem;
  }
}
.news-single .l-page {
  padding-top: 80px;
  padding-top: 5rem;
}
.news-single .l-inner {
  max-width: 850px;
  max-width: 53.125rem;
}

.news-single__inner::before {
  width: 116px;
  width: 7.25rem;
  height: 116px;
  height: 7.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767px) {
  .news-single__inner::before {
    width: 3.375rem;
    height: 3.375rem;
    left: -1.8125rem;
  }
}
.news-single__inner::after {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
  left: -70px;
  left: -4.375rem;
  bottom: 288px;
  bottom: 18rem;
}
@media screen and (max-width: 767px) {
  .news-single__inner::after {
    width: 3.375rem;
    height: 3.375rem;
    left: 0;
    bottom: 13.0625rem;
  }
}

.news-single__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}

.news-single__date {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.news-single__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}
.news-single__category span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.news-single__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid #333;
  border-bottom: 0.0625rem solid #333;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .news-single__title {
    margin-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

.news-single__img {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-single__img {
    margin-top: 1rem;
  }
}

.news-single__post {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-single__post {
    margin-top: 1rem;
  }
}
.news-single__post h2, .news-single__post h3, .news-single__post h4, .news-single__post h5, .news-single__post h6 {
  font-weight: 700;
  margin: 0;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h2, .news-single__post h3, .news-single__post h4, .news-single__post h5, .news-single__post h6 {
    margin-bottom: 0.5rem;
  }
}
.news-single__post h2 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
  border-bottom: 2px solid #333;
  border-bottom: 0.125rem solid #333;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
.news-single__post h3 {
  font-size: 20px;
  font-size: 1.25rem;
  border-left: 4px solid #B19C78;
  border-left: 0.25rem solid #B19C78;
  padding-left: 12px;
  padding-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h3 {
    font-size: 1rem;
    line-height: 1.4;
  }
}
.news-single__post h4 {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h4 {
    font-size: 1rem;
  }
}
.news-single__post h5, .news-single__post h6 {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
.news-single__post p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .news-single__post p {
    font-size: 1rem;
  }
}
.news-single__post p:not(:last-child) {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .news-single__post p:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.news-single__post p span {
  text-decoration-thickness: 5px !important;
  text-decoration-thickness: 0.3125rem !important;
  -webkit-text-decoration-color: #FCFDED !important;
          text-decoration-color: #FCFDED !important;
  text-underline-offset: -3px !important;
  text-underline-offset: -0.1875rem !important;
}
.news-single__post p a {
  color: #034495;
  text-decoration: underline;
}
.news-single__post figure:not(:last-child) {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .news-single__post figure:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.news-single__post img {
  margin: 0 auto;
}
.news-single__post table {
  -webkit-text-size-adjust: 100%;
}
.news-single__post table th, .news-single__post table td {
  vertical-align: top;
  padding: 15px 16px;
  padding: 0.9375rem 1rem;
}
@media screen and (max-width: 767px) {
  .news-single__post table th, .news-single__post table td {
    padding: 0.9375rem 0.4375rem;
  }
}
.news-single__post table th:first-child, .news-single__post table td:first-child {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .news-single__post table th:first-child, .news-single__post table td:first-child {
    width: 25%;
  }
}
.news-single__post .wp-block-table .has-fixed-layout {
  width: 712px;
  width: 44.5rem;
  max-width: 100%;
}
.news-single__post .wp-block-table thead {
  border-bottom: none;
}
.news-single__post ul:not(:last-child), .news-single__post ol:not(:last-child) {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .news-single__post ul:not(:last-child), .news-single__post ol:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.news-single__post ol {
  padding-left: 1em;
  list-style: unset;
}
.news-single__post ol.has-background {
  background: #F7F7F7;
  padding: 24px 24px 24px 40px;
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-single__post ol.has-background {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  }
}
.news-single__post ol li {
  list-style-type: decimal;
  padding-left: 0.5em;
}
.news-single__post ul.has-background {
  background: #F7F7F7;
  padding: 24px 24px;
  padding: 1.5rem 1.5rem;
}
.news-single__post ul li {
  padding-left: 1.5em;
  position: relative;
}
.news-single__post ul li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.news-single__post li {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .news-single__post li {
    font-size: 1rem;
  }
}
.news-single__post li:not(:first-child) {
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .news-single__post li:not(:first-child) {
    margin-top: 0.5rem;
  }
}
.news-single__post .wp-block-quote {
  width: 712px;
  width: 44.5rem;
  max-width: 100%;
  padding: 20px 50px 30px;
  padding: 1.25rem 3.125rem 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-single__post .wp-block-quote {
    padding: 1.25rem;
  }
}
.news-single__post .wp-block-quote::before, .news-single__post .wp-block-quote::after {
  position: absolute;
  content: "";
  width: 32px;
  width: 2rem;
  height: 60px;
  height: 3.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__post .wp-block-quote::before, .news-single__post .wp-block-quote::after {
    width: 1.25rem;
    height: 2.1875rem;
  }
}
.news-single__post .wp-block-quote::before {
  left: 0;
  top: 0;
  background: url(../img/common/quote-icon01.png) no-repeat center/contain;
}
.news-single__post .wp-block-quote::after {
  right: 0;
  bottom: 0;
  background: url(../img/common/quote-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .news-single__post .wp-block-quote::after {
    bottom: -0.625rem;
  }
}
.news-single__post .wp-block-quote:not(:last-child) {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .news-single__post .wp-block-quote:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.news-single__post .wp-block-quote p {
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .news-single__post .wp-block-quote p {
    line-height: 1.4;
  }
}

.news-single__btn {
  width: 225px;
  width: 14.0625rem;
  max-width: 100%;
  height: 60px;
  height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  background: #F39800;
  border-radius: 62.5rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-single__btn {
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}
.news-single__btn::before {
  position: absolute;
  content: "";
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  left: 8px;
  left: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/back-icon.png) no-repeat center/contain;
}

/* notfound */
.notfound {
  padding: 200px 0;
  padding: 12.5rem 0;
}

/* privacy */
.privacy::before, .privacy::after {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
}
.privacy::before {
  top: 105px;
  top: 6.5625rem;
  right: -70px;
  right: -4.375rem;
}
@media screen and (max-width: 767px) {
  .privacy::before {
    width: 5.875rem;
    height: 5.875rem;
    top: 1.5rem;
    right: unset;
    left: -1.5rem;
  }
}
.privacy::after {
  left: -70px;
  left: -4.375rem;
  bottom: -88px;
  bottom: -5.5rem;
}
@media screen and (max-width: 767px) {
  .privacy::after {
    width: 3.375rem;
    height: 3.375rem;
    left: -1.8125rem;
    bottom: -1rem;
  }
}
.privacy .l-inner {
  max-width: 850px;
  max-width: 53.125rem;
}

.privacy__text {
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.privacy__list {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .privacy__list {
    margin-top: 1.5rem;
  }
}

.privacy__list-item + .privacy__list-item {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .privacy__list-item + .privacy__list-item {
    margin-top: 1.5rem;
  }
}

.privacy__list-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  border-radius: 1rem;
  color: #fff;
  background: #F39800;
  padding: 16px;
  padding: 1rem;
}

.privacy__list-text {
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .privacy__list-text {
    margin-top: 1rem;
  }
}

/* caremanagement */
.caremanagement .l-page {
  padding-top: 85px;
  padding-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .caremanagement .l-page {
    padding-top: 3.625rem;
  }
}
@media screen and (max-width: 767px) {
  .caremanagement .service::before {
    width: 5.0625rem;
    height: 5.0625rem;
    top: 3.3125rem;
    right: -1.125rem;
  }
  .caremanagement .service::after {
    width: 3.625rem;
    height: 3.625rem;
    right: unset;
    left: -1.5rem;
    bottom: 22.875rem;
  }
}

/* dayservice */
.dayservice .service::before {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
  top: 633px;
  top: 39.5625rem;
  right: -38px;
  right: -2.375rem;
}
@media screen and (max-width: 767px) {
  .dayservice .service::before {
    width: 5.0625rem;
    height: 5.0625rem;
    top: 3.3125rem;
    right: -1.125rem;
  }
}
.dayservice .service::after {
  width: 116px;
  width: 7.25rem;
  height: 116px;
  height: 7.25rem;
  right: -17px;
  right: -1.0625rem;
  bottom: 405px;
  bottom: 25.3125rem;
}
@media screen and (max-width: 767px) {
  .dayservice .service::after {
    width: 3.625rem;
    height: 3.625rem;
    right: unset;
    left: -1.5rem;
    bottom: 22.875rem;
  }
}

/* flow */
.flow .l-circle::before, .flow .l-circle::after {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .flow .l-circle::before, .flow .l-circle::after {
    -webkit-transform: unset;
            transform: unset;
  }
}
.flow .l-circle::before {
  top: 56%;
  left: -69px;
  left: -4.3125rem;
}
@media screen and (max-width: 767px) {
  .flow .l-circle::before {
    left: unset;
    top: 8.125rem;
    right: -5.6875rem;
  }
}
.flow .l-circle::after {
  top: 58%;
  right: -11px;
  right: -0.6875rem;
}
@media screen and (max-width: 767px) {
  .flow .l-circle::after {
    width: 8.5rem;
    height: 8.5rem;
    right: unset;
    left: -3.125rem;
    top: 87.5rem;
  }
}
.flow .l-section {
  padding: 200px 0 120px;
  padding: 12.5rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .flow .l-section {
    padding: 7.5rem 0;
  }
}

.flow__units {
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .flow__units {
    margin-top: 2rem;
  }
}

.flow__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 3.125rem;
  padding: 32px;
  padding: 2rem;
  background: #F7F6F2;
}
@media screen and (max-width: 767px) {
  .flow__unit {
    display: block;
    padding: 2rem 1rem;
  }
}
.flow__unit + .flow__unit {
  margin-top: 82px;
  margin-top: 5.125rem;
  position: relative;
}
.flow__unit + .flow__unit::before {
  position: absolute;
  content: "▼";
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #B19C78;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -75px;
  top: -4.6875rem;
}

.flow__unit-body {
  width: 56%;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .flow__unit-body {
    width: 100%;
    padding-top: 0;
  }
}

.flow__unit-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .flow__unit-title {
    padding: 0 0.5rem;
  }
}
.flow__unit-title span {
  font-size: 48px;
  font-size: 3rem;
  color: #B19C78;
  line-height: 1;
}

.flow__unit-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .flow__unit-text {
    margin-top: 1.5625rem;
    padding: 0 0.5rem;
  }
}
.flow__unit-text a {
  color: #F39800;
  text-decoration: underline;
}

.flow__unit-btn {
  text-align: center;
  display: block;
  width: 522px;
  width: 32.625rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  border-radius: 2rem;
  background: #F39800;
  padding: 15px 25px 15px 0;
  padding: 0.9375rem 1.5625rem 0.9375rem 0;
  margin-top: 26px;
  margin-top: 1.625rem;
  margin-left: 10px;
  margin-left: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__unit-btn {
    width: 19.1875rem;
    margin: 2rem auto 0;
  }
}
.flow__unit-btn::after {
  position: absolute;
  content: "";
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 145px;
  right: 9.0625rem;
  background: url(../img/common/contact-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .flow__unit-btn::after {
    right: 1.875rem;
  }
}

.flow__unit-img {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .flow__unit-img {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.flow__unit-img img {
  border-radius: 1.125rem;
}
@media screen and (max-width: 767px) {
  .flow__unit-img img {
    height: 10.375rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* housing */
.housing .service::before {
  width: 116px;
  width: 7.25rem;
  height: 116px;
  height: 7.25rem;
  top: 199px;
  top: 12.4375rem;
  left: 168px;
  left: 10.5rem;
}
@media screen and (max-width: 767px) {
  .housing .service::before {
    width: 5.0625rem;
    height: 5.0625rem;
    top: 3.3125rem;
    left: unset;
    right: -1.125rem;
  }
}
.housing .service::after {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
  left: -36px;
  left: -2.25rem;
  bottom: 192px;
  bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .housing .service::after {
    width: 3.625rem;
    height: 3.625rem;
    left: -1.5rem;
    bottom: 22.875rem;
  }
}
.housing .service .l-page {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .housing .service .l-page {
    padding-bottom: 4.375rem;
    padding-top: 7.5rem;
  }
}

/* plan */
.plan::before {
  width: 116px;
  width: 7.25rem;
  height: 116px;
  height: 7.25rem;
  top: 100px;
  top: 6.25rem;
  left: 107px;
  left: 6.6875rem;
}
@media screen and (max-width: 767px) {
  .plan::before {
    width: 4.3125rem;
    height: 4.3125rem;
    left: unset;
    right: -0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .plan::after {
    width: 14.375rem;
    height: 14.375rem;
    left: -7.875rem;
    bottom: 48rem;
  }
}
.plan .l-section {
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .plan .l-section {
    padding-bottom: 5rem;
  }
}

.plan__units {
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .plan__units {
    margin-top: 2rem;
  }
}

.plan__unit {
  background: #fff;
  border-radius: 3.125rem;
}
.plan__unit + .plan__unit {
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .plan__unit + .plan__unit {
    margin-top: 2rem;
  }
}
.plan__unit:first-child .plan__subtitle {
  background: #B19C78;
  color: #fff;
}
.plan__unit:nth-child(2) .plan__subtitle {
  color: #B19C78;
  background: #FCFDED;
}

.plan__subtitle {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  border-radius: 3.125rem 3.125rem 0 0;
  padding: 22px;
  padding: 1.375rem;
}
@media screen and (max-width: 767px) {
  .plan__subtitle {
    line-height: 1.2;
    padding: 1.875rem;
  }
}
.plan__subtitle span {
  font-size: 24px;
  font-size: 1.5rem;
}

.plan__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  gap: 1rem;
  padding: 32px 24px 30px;
  padding: 2rem 1.5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .plan__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

.plan__item {
  text-align: center;
}

.plan__item-icon {
  width: 80px;
  width: 5rem;
  max-width: 100%;
  margin: 0 auto;
}

.plan__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 3px solid #F7F6F2;
  border-bottom: 0.1875rem solid #F7F6F2;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.plan__item-price {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #B19C78;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.plan__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .plan__list-item {
    display: block;
    padding: 2.1875rem 0 1.125rem;
  }
}
.plan__list-item + .plan__list-item {
  border-top: 3px solid #F7F6F2;
  border-top: 0.1875rem solid #F7F6F2;
}

.plan__list-title, .plan__list-text {
  text-align: center;
  padding: 14px;
  padding: 0.875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .plan__list-title, .plan__list-text {
    padding: 0;
  }
}

.plan__list-title {
  width: 47%;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .plan__list-title {
    width: 100%;
  }
}

.plan__list-text {
  width: 53%;
  font-size: 40px;
  font-size: 2.5rem;
  color: #B19C78;
  border-left: 3px solid #F7F6F2;
  border-left: 0.1875rem solid #F7F6F2;
}
@media screen and (max-width: 767px) {
  .plan__list-text {
    width: 100%;
    margin-top: 0.625rem;
    border-left: none;
  }
}

.plan__caution {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .plan__caution {
    margin-top: 2rem;
  }
}

.plan__btn {
  width: 375px;
  width: 23.4375rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .plan__btn {
    text-align: center;
    font-size: 1.25rem;
    height: 4.5rem;
    margin: 2rem auto 0;
  }
}

/* service */
.service .l-page {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service .l-page {
    padding-bottom: 4.375rem;
  }
}

.service__lead {
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 767px) {
  .service__lead {
    text-align: left;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
}

.service__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: 32px;
  margin-top: 2rem;
}

.service__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 16px;
  gap: 4rem 1rem;
  margin-top: 64px;
  margin-top: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__cards {
    margin-top: 2rem;
    margin-right: calc(50% - 50vw);
    margin-left: -0.5rem;
    display: none;
  }
}
.service__cards.slick-initialized {
  display: block;
}
.service__cards .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service__cards .slick-slide {
  height: auto !important;
}
.service__cards .slider-dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  gap: 1.125rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -32px;
  bottom: -2rem;
}
.service__cards .slider-dot li {
  display: inline-block;
  background: #D9D9D9;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  border-radius: 50%;
  cursor: pointer;
}
.service__cards .slider-dot li button {
  text-indent: -9999px;
}
.service__cards .slider-dot li.slick-active {
  background: #B19C78;
}

.service__card {
  min-height: 332px;
  min-height: 20.75rem;
  background: #fff;
  border-radius: 2rem;
  padding: 16px;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .service__card {
    margin: 0 0.5rem;
  }
}

.service__card-img img {
  border-radius: 1rem;
}

.service__card-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 16px;
  margin-top: 1rem;
}

.service__card-text {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 16px;
  margin-top: 1rem;
}

/* visitingcare */
.visitingcare .service::before {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
  right: -38px;
  right: -2.375rem;
  bottom: 103px;
  bottom: 6.4375rem;
}
@media screen and (max-width: 767px) {
  .visitingcare .service::before {
    width: 5.0625rem;
    height: 5.0625rem;
    bottom: unset;
    top: 3.3125rem;
    right: -1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .visitingcare .service::after {
    width: 3.625rem;
    height: 3.625rem;
    right: unset;
    left: -1.5rem;
    bottom: 22.875rem;
  }
}

/* top-access */
.top-access {
  padding: 40px 0 80px;
  padding: 2.5rem 0 5rem;
}
.top-access::before {
  width: 208px;
  width: 13rem;
  height: 208px;
  height: 13rem;
  left: -69px;
  left: -4.3125rem;
  top: 80px;
  top: 5rem;
}
@media screen and (max-width: 767px) {
  .top-access::before {
    width: 4.3125rem;
    height: 3.75rem;
    left: -1.5rem;
    top: 3.75rem;
  }
}

.top-access__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .top-access__inner {
    display: block;
  }
}

.top-access__img {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .top-access__img {
    width: 100%;
  }
}
.top-access__img img {
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .top-access__img img {
    height: 12.25rem;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 3.125rem;
  }
}

.top-access__map {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .top-access__map {
    width: 100%;
    margin-top: 1rem;
  }
}
.top-access__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 500/396;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .top-access__map iframe {
    aspect-ratio: 325/196;
    border-radius: 3.125rem;
  }
}

.top-access__link-wrapper {
  text-align: right;
  margin-top: 16px;
  margin-top: 1rem;
}

.top-access__link {
  display: inline-block;
  font-weight: 500;
  color: #F39800;
  border-bottom: 1px solid #F39800;
  border-bottom: 0.0625rem solid #F39800;
  background: url(../img/common/link-icon02.png) no-repeat center right 8px/16px;
  background: url(../img/common/link-icon02.png) no-repeat center right 0.5rem/1rem;
  padding: 8px 48px 8px 8px;
  padding: 0.5rem 3rem 0.5rem 0.5rem;
}

/* top-concept */
.top-concept {
  padding: 80px 0 160px;
  padding: 5rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .top-concept {
    padding-bottom: 5rem;
  }
  .top-concept::before {
    background: url(../img/common/bg03.png) no-repeat center top/cover;
  }
  .top-concept::after {
    background: url(../img/common/bg04.png) no-repeat center top/cover;
  }
}
.top-concept .l-circle::before {
  width: 116px;
  width: 7.25rem;
  height: 116px;
  height: 7.25rem;
  left: -40px;
  left: -2.5rem;
  top: 250px;
  top: 15.625rem;
}
@media screen and (max-width: 767px) {
  .top-concept .l-circle::before {
    width: 4.875rem;
    height: 4.875rem;
    left: -1.6875rem;
    top: unset;
    bottom: 0.625rem;
  }
}

.top-concept__img {
  margin-top: 32px;
  margin-top: 2rem;
}
.top-concept__img img {
  border-radius: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-concept__img img {
    height: 12.375rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* top-facility */
.top-facility {
  padding: 40px 0 120px;
  padding: 2.5rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .top-facility {
    padding-bottom: 2.5rem;
  }
}
.top-facility::after {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
  right: -70px;
  right: -4.375rem;
  top: 300px;
  top: 18.75rem;
}
@media screen and (max-width: 767px) {
  .top-facility::after {
    display: none;
  }
}

.top-facility__units {
  margin-top: 32px;
  margin-top: 2rem;
}

.top-facility__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-facility__unit {
    display: block;
  }
}
.top-facility__unit + .top-facility__unit {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.top-facility__unit-img {
  width: 48.5%;
}
@media screen and (max-width: 767px) {
  .top-facility__unit-img {
    width: 100%;
  }
}
.top-facility__unit-img img {
  border-radius: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-facility__unit-img img {
    height: 11.25rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.top-facility__unit-body {
  width: 48.5%;
}
@media screen and (max-width: 767px) {
  .top-facility__unit-body {
    width: 100%;
    margin-top: 1rem;
  }
}

.top-facility__unit-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-facility__unit-title {
    font-size: 1.625rem;
  }
}

.top-facility__unit-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-facility__unit-text {
    line-height: 1.5;
    margin-top: 1rem;
  }
}

.top-facility__unit-link {
  display: inline-block;
  color: #CF6C09;
  font-weight: 500;
  background: url(../img/common/arrow-icon.png) no-repeat center right 8px/24px;
  background: url(../img/common/arrow-icon.png) no-repeat center right 0.5rem/1.5rem;
  border-bottom: 1px solid #CF6C09;
  border-bottom: 0.0625rem solid #CF6C09;
  padding: 8px 56px 8px 8px;
  padding: 0.5rem 3.5rem 0.5rem 0.5rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .top-facility__unit-link {
    margin-top: 0.75rem;
  }
}

.top-facility__unit-subtext {
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-facility__unit-subtext {
    margin-top: 1rem;
  }
}

/* top-location */
.top-location {
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .top-location {
    padding: 3.75rem 0;
  }
  .top-location::before {
    background: url(../img/common/bg03.png) no-repeat center top/cover;
  }
  .top-location::after {
    background: url(../img/common/bg04.png) no-repeat center top/cover;
  }
}
.top-location .l-circle::before {
  width: 70px;
  width: 4.375rem;
  height: 70px;
  height: 4.375rem;
  left: 163px;
  left: 10.1875rem;
  top: 40px;
  top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-location .l-circle::before {
    left: -1.125rem;
  }
}

.top-location__text {
  line-height: 1.8;
  margin-top: 32px;
  margin-top: 2rem;
}

.top-location__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .top-location__inner {
    display: block;
    margin-top: 3.125rem;
  }
}

.top-location__body {
  width: 47%;
  padding-left: 40px;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-location__body {
    width: 100%;
    padding-left: 0;
  }
}

.top-location__subtitle {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-location__subtitle {
    font-size: 1.25rem;
  }
}

.top-location__subheading {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .top-location__subheading {
    margin-top: 0.9375rem;
    line-height: 1.4;
  }
}
.top-location__subheading span {
  display: inline-block;
  font-size: 36px;
  font-size: 2.25rem;
  color: #F39800;
  margin: 0 3px;
  margin: 0 0.1875rem;
}
@media screen and (max-width: 767px) {
  .top-location__subheading span {
    margin: 0;
  }
}

.top-location__subtext {
  line-height: 1.8;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-location__subtext {
    margin-top: 0;
  }
}

.top-location__btn {
  width: 309px;
  width: 19.3125rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .top-location__btn {
    width: 20.4375rem;
    margin: 2rem auto 0;
  }
}

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

.top-location__slider {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .top-location__slider {
    margin-top: 2rem;
  }
}

/* top-mv */
.top-mv {
  padding-top: 300px;
  padding-top: 18.75rem;
}
@media screen and (max-width: 767px) {
  .top-mv {
    padding-top: 7.5rem;
  }
}
.top-mv::before, .top-mv::after {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
}
.top-mv::before {
  left: 12px;
  left: 0.75rem;
  top: 91px;
  top: 5.6875rem;
}
@media screen and (max-width: 767px) {
  .top-mv::before {
    width: 3.6875rem;
    height: 3.6875rem;
    top: 5.0625rem;
    left: -0.75rem;
  }
}
.top-mv::after {
  top: 206px;
  top: 12.875rem;
  right: -66px;
  right: -4.125rem;
}
@media screen and (max-width: 767px) {
  .top-mv::after {
    width: 5.0625rem;
    height: 5.0625rem;
    top: 10rem;
    right: -1.75rem;
  }
}

.top-mv__inner::before {
  width: 116px;
  width: 7.25rem;
  height: 116px;
  height: 7.25rem;
  left: 0;
  bottom: -210px;
  bottom: -13.125rem;
}
@media screen and (max-width: 767px) {
  .top-mv__inner::before {
    left: unset;
    right: -1.625rem;
    bottom: -1.25rem;
  }
}

.top-mv__title, .top-mv__text {
  line-height: 1;
  text-shadow: 0px 0px 10px #fff;
  position: relative;
  z-index: 1;
  padding-left: 15px;
  padding-left: 0.9375rem;
  text-shadow: 1px 1px 0px #fff, -1px -1px 0px #fff, -1px 1px 0px #fff, 1px -1px 0px #fff, 1px 0px 0px #fff, -1px 0px 0px #fff, 0px 1px 0px #fff, 0px -1px 0px #fff;
}
@media screen and (max-width: 767px) {
  .top-mv__title, .top-mv__text {
    padding-left: 0;
  }
}

.top-mv__title {
  font-size: 64px;
  font-size: 4rem;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 767px) {
  .top-mv__title {
    font-size: 2rem;
  }
}

.top-mv__text {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #444;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-mv__text {
    font-size: 1rem;
    margin-top: 1.875rem;
  }
}

.top-mv__slider-wrapper {
  position: absolute;
  top: 75%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -100px;
  right: -6.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-mv__slider-wrapper {
    position: static;
    -webkit-transform: unset;
            transform: unset;
    margin-top: 2.5rem;
  }
}

.top-mv__slider {
  display: none;
  width: 94%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .top-mv__slider {
    width: 100%;
  }
}
.top-mv__slider.slick-initialized {
  display: block;
}

.top-mv__slider-item img {
  height: 603px;
  height: 37.6875rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv__slider-item img {
    height: 13.75rem;
    border-radius: 3.125rem;
  }
}

.top-mv__btn {
  position: absolute;
  bottom: -185px;
  bottom: -11.5625rem;
  right: -145px;
  right: -9.0625rem;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 144px;
  width: 9rem;
  height: 144px;
  height: 9rem;
  color: #fff;
  font-weight: 500;
  background: #F39800;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  border-radius: 50%;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 1300px) {
  .top-mv__btn {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__btn {
    display: none;
  }
}
.top-mv__btn::before, .top-mv__btn::after {
  position: absolute;
  content: "";
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.top-mv__btn::before {
  top: 28px;
  top: 1.75rem;
  background: url(../img/common/mail-icon.png) no-repeat center/contain;
}
.top-mv__btn::after {
  bottom: 16px;
  bottom: 1rem;
  background: url(../img/common/arrow-icon02.png) no-repeat center/contain;
}

.top-mv__box {
  position: relative;
  z-index: 1;
  text-align: center;
  background: #fff;
  border-radius: 6.25rem;
  margin-top: 210px;
  margin-top: 13.125rem;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv__box {
    border-radius: 2.5rem;
    margin: -0.625rem auto 0;
    padding: 0.5rem;
  }
}

.top-mv__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .top-mv__subtitle {
    font-size: 0.875rem;
    line-height: 1.3;
  }
}

.top-mv__tel {
  display: inline-block;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.25em;
  background: url(../img/common/tel-icon.png) no-repeat center left/40px;
  background: url(../img/common/tel-icon.png) no-repeat center left/2.5rem;
  padding-left: 56px;
  padding-left: 3.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-mv__tel {
    font-size: 1.5rem;
    background-size: 1.5rem;
    padding-left: 1.5rem;
    margin-top: 0.3125rem;
  }
}

.top-mv__address {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .top-mv__address {
    font-size: 0.75rem;
    margin-top: 0.3125rem;
  }
}

/* top-news */
.top-news {
  padding: 12px 0 40px;
  padding: 0.75rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 1.0625rem 0 5rem;
  }
}
.top-news::before {
  width: 230px;
  width: 14.375rem;
  height: 230px;
  height: 14.375rem;
  top: -50px;
  top: -3.125rem;
  right: -70px;
  right: -4.375rem;
}
@media screen and (max-width: 767px) {
  .top-news::before {
    width: 5.3125rem;
    height: 5.3125rem;
    left: -1.875rem;
    right: unset;
    top: -2.1875rem;
  }
}

.top-news__content {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .top-news__content {
    margin-top: 0;
  }
  .top-news__content .news__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    padding-right: 1rem;
    margin-right: calc(50% - 50vw);
    overflow-y: hidden;
    overflow-x: auto;
  }
  .top-news__content .news__item {
    width: 18.75rem;
    min-width: 18.75rem;
  }
}

.top-news__btn {
  margin-top: 32px;
  margin-top: 2rem;
  margin-left: auto;
}
/*# sourceMappingURL=style.css.map */
