@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "Shippori Mincho B1", serif;
  color: #555;
  line-height: 1.8;
  font-weight: 500;
}

@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.1428571429vw;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

button {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
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-cards */
.l-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.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: 20px;
    padding-left: 20px;
  }
}

/* l-page */
.l-page {
  margin-top: 108px;
  margin-top: 6.75rem;
}
@media screen and (max-width: 767px) {
  .l-page {
    margin-top: 4rem;
  }
}

/* l-post */
.l-post {
  width: 62%;
}
@media screen and (max-width: 767px) {
  .l-post {
    width: 100%;
    margin-top: 4rem;
  }
}

/* l-section */
.l-section {
  padding: 160px 0;
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 6.25rem 0;
  }
}

/* l-sidebar */
.l-sidebar {
  width: 31%;
}
@media screen and (max-width: 767px) {
  .l-sidebar {
    width: 100%;
  }
}

/* l-wrapper */
.l-wrapper {
  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) {
  .l-wrapper {
    display: block;
  }
}

/* anchor */
.anchor {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .anchor {
    padding: 6.25rem 0;
  }
}

.anchor__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 64px;
  gap: 3rem 4rem;
}
@media screen and (max-width: 767px) {
  .anchor__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.1875rem;
  }
}

.anchor__items--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .anchor__items--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.anchor__items--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .anchor__items--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.anchor__item a {
  display: block;
  font-weight: 700;
  color: #A38D78;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #A38D78;
  border-bottom: 0.0625rem solid #A38D78;
  padding: 7px 0 20px;
  padding: 0.4375rem 0 1.25rem;
  -webkit-transition: background 0.5s, color 0.5s;
  transition: background 0.5s, color 0.5s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .anchor__item a {
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    background-size: 1.5rem;
    padding: 0 0 0.8125rem;
  }
}
.anchor__item a::after {
  position: absolute;
  bottom: -1px;
  bottom: -0.0625rem;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: #FE9297;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.anchor__item a span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  display: inline-block;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #A38D78;
  border: 0.0625rem solid #A38D78;
  overflow: hidden;
  -webkit-transition: border 0.5s;
  transition: border 0.5s;
}
@media screen and (max-width: 767px) {
  .anchor__item a span {
    width: 1.5rem;
    height: 1.5rem;
    top: 0;
    -webkit-transform: unset;
            transform: unset;
  }
}
.anchor__item a span::before, .anchor__item a span::after {
  position: absolute;
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 16px;
  height: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 12px;
  top: 0.75rem;
  background: url(../img/common/anchor-icon01.png) no-repeat center/contain;
  -webkit-transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, transform 0.5s;
  transition: background 0.5s, transform 0.5s, -webkit-transform 0.5s;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .anchor__item a span::before, .anchor__item a span::after {
    width: 0.375rem;
    height: 0.625rem;
    top: 0.4375rem;
  }
}
.anchor__item a span::after {
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-12);
          transform: translateX(-50%) translateY(-12);
}
.anchor__item a:hover {
  color: #FE9297;
  opacity: 1;
}
.anchor__item a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.anchor__item a:hover span {
  border-color: #FE9297;
}
.anchor__item a:hover span::before, .anchor__item a:hover span::after {
  background: url(../img/common/anchor-icon02.png) no-repeat center/contain;
}
.anchor__item a:hover span::before {
  -webkit-animation: beforeDown 0.5s;
          animation: beforeDown 0.5s;
}
.anchor__item a:hover span::after {
  -webkit-animation: afterDown 0.5s;
          animation: afterDown 0.5s;
}

@-webkit-keyframes beforeDown {
  0% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0.75rem);
            transform: translateX(-50%) translateY(0.75rem);
    opacity: 0;
  }
}

@keyframes beforeDown {
  0% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0.75rem);
            transform: translateX(-50%) translateY(0.75rem);
    opacity: 0;
  }
}
@-webkit-keyframes afterDown {
  0% {
    -webkit-transform: translateX(-50%) translateY(-0.75rem);
            transform: translateX(-50%) translateY(-0.75rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
@keyframes afterDown {
  0% {
    -webkit-transform: translateX(-50%) translateY(-0.75rem);
            transform: translateX(-50%) translateY(-0.75rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
/* book */
.book {
  background: #fff;
}

.book__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .book__header {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .book__btn {
    margin: 4rem auto 0;
  }
}

.book__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
  gap: 1.5rem 1.875rem;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .book__items {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 4rem;
  }
}

.book__item-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #FFF5F3;
  border-radius: 0.5rem;
  padding: 32px;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .book__item-inner {
    padding: 1.25rem;
  }
}
.book__item-inner:hover {
  opacity: 1;
}
.book__item-inner:hover .link {
  color: #FE9297;
}
.book__item-inner:hover .link::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.book__item-inner:hover .link span::before, .book__item-inner:hover .link span::after {
  background: url(../img/common/arrow-icon08.png) no-repeat center/contain;
}
.book__item-inner:hover .link span::before {
  -webkit-animation: transformBefore 0.5s;
          animation: transformBefore 0.5s;
}
.book__item-inner:hover .link span::after {
  -webkit-animation: transformAfter 0.5s;
          animation: transformAfter 0.5s;
}

.book__item-img {
  width: 27%;
}
@media screen and (max-width: 767px) {
  .book__item-img {
    width: 32%;
  }
}

.book__item-body {
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .book__item-body {
    width: 62%;
  }
}

.book__item-subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #FE9297;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .book__item-subtitle {
    font-size: 0.625rem;
  }
}
.book__item-subtitle span {
  display: inline-block;
  margin-right: 5px;
  margin-right: 0.3125rem;
}

.book__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .book__item-title {
    font-size: 0.875rem;
    letter-spacing: 0;
    margin-top: 0.375rem;
  }
}

.book__item-author {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .book__item-author {
    font-size: 0.625rem;
    margin-top: 0.5rem;
  }
}

.book__item-link-wrapper {
  text-align: right;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .book__item-link-wrapper .link {
    font-size: 0.75rem;
  }
}

.book__box {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .book__box {
    margin-top: 4rem;
  }
}

/* breadcrumb */
.breadcrumb {
  padding: 132px 0 24px;
  padding: 8.25rem 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 8.125rem 0.625rem 0;
  }
}

.breadcrumb__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 90px;
  gap: 0.625rem 5.625rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb__items {
    gap: 0.625rem 2.8125rem;
  }
}

.breadcrumb__item:not(:last-child) {
  position: relative;
}
.breadcrumb__item:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 48px;
  width: 3rem;
  height: 1px;
  height: 0.0625rem;
  top: 15px;
  top: 0.9375rem;
  background: #CBB7B0;
  right: -70px;
  right: -4.375rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item:not(:last-child)::before {
    width: 1.5rem;
    right: -2.1875rem;
  }
}
.breadcrumb__item a, .breadcrumb__item span {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.breadcrumb__item a {
  color: #505050;
}
.breadcrumb__item span {
  color: #A7A7A7;
}

/* btn */
.btn {
  text-align: left;
  display: block;
  width: 227px;
  width: 14.1875rem;
  max-width: 100%;
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #A38D78;
  background: #fff;
  border: 1px solid #A38D78;
  border: 0.0625rem solid #A38D78;
  border-radius: 62.5rem;
  padding: 11px 48px;
  padding: 0.6875rem 3rem;
  overflow: hidden;
  -webkit-transition: color 0.5s, background 0.5s;
  transition: color 0.5s, background 0.5s;
  position: relative;
  z-index: 1;
}
.btn::before {
  position: absolute;
  content: "";
  width: 120%;
  height: 200%;
  top: -50%;
  right: 0;
  z-index: -1;
  background: #A38D78;
  border-radius: 0 100% 100% 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform ease 0.5s;
  transition: -webkit-transform ease 0.5s;
  transition: transform ease 0.5s;
  transition: transform ease 0.5s, -webkit-transform ease 0.5s;
}
.btn span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 6px;
  right: 0.375rem;
  display: inline-block;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #A38D78;
  border: 0.0625rem solid #A38D78;
  overflow: hidden;
  -webkit-transition: border 0.5s;
  transition: border 0.5s;
}
.btn span::before, .btn span::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  width: 1.5rem;
  height: 14px;
  height: 0.875rem;
  right: 12px;
  right: 0.75rem;
  background: url(../img/common/arrow-icon06.png) no-repeat center/contain;
  -webkit-transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, transform 0.5s;
  transition: background 0.5s, transform 0.5s, -webkit-transform 0.5s;
  z-index: 1;
}
.btn span::after {
  opacity: 0;
  -webkit-transform: translateX(-2.375rem) translateY(-50%);
          transform: translateX(-2.375rem) translateY(-50%);
}
.btn:hover {
  color: #fff;
  opacity: 1;
}
.btn:hover::before {
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
}
.btn:hover span {
  border-color: #fff;
}
.btn:hover span::before, .btn:hover span::after {
  background: url(../img/common/arrow-icon07.png) no-repeat center/contain;
}
.btn:hover span::before {
  -webkit-animation: transformBefore 0.5s;
          animation: transformBefore 0.5s;
}
.btn:hover span::after {
  -webkit-animation: transformAfter 0.5s;
          animation: transformAfter 0.5s;
}

@-webkit-keyframes transformBefore {
  0% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(2.375rem) translateY(-50%);
            transform: translateX(2.375rem) translateY(-50%);
    opacity: 0;
  }
}

@keyframes transformBefore {
  0% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(2.375rem) translateY(-50%);
            transform: translateX(2.375rem) translateY(-50%);
    opacity: 0;
  }
}
@-webkit-keyframes transformAfter {
  0% {
    -webkit-transform: translateX(-2.375rem) translateY(-50%);
            transform: translateX(-2.375rem) translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}
@keyframes transformAfter {
  0% {
    -webkit-transform: translateX(-2.375rem) translateY(-50%);
            transform: translateX(-2.375rem) translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}
.btn--pink {
  letter-spacing: 0.08em;
  color: #fff;
  border-color: #FE9297;
  background: #FE9297;
  padding: 16px 48px;
  padding: 1rem 3rem;
}
.btn--pink::before {
  background: #fff;
}
.btn--pink span {
  border-color: #fff;
}
.btn--pink span::before, .btn--pink span::after {
  background: url(../img/common/arrow-icon07.png) no-repeat center/contain;
}
.btn--pink:hover {
  color: #FE9297;
}
.btn--pink:hover span {
  border-color: #FE9297;
}
.btn--pink:hover span::before, .btn--pink:hover span::after {
  background: url(../img/common/arrow-icon08.png) no-repeat center/contain;
}

/* change-card */
.change-card__inner {
  display: block;
  border-radius: 0.5rem;
  background: #FFF5F3;
  padding: 32px;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .change-card__inner {
    padding: 1.25rem;
  }
}
.change-card__inner:hover {
  opacity: 1;
}
.change-card__inner:hover .change-card__title {
  color: #FE9297;
}
.change-card__inner:hover .change-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.change-card__img {
  width: 100%;
  padding-top: 66.369047619%;
  overflow: hidden;
  border-radius: 0.5rem;
  position: relative;
}
.change-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.change-card__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 16px;
  margin-top: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

.change-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 12px;
  font-size: 0.75rem;
  color: #A7A7A7;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .change-card__footer {
    margin-top: 1.25rem;
  }
}

.change-card__name {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.04em;
  border-right: 1px solid #A7A7A7;
  border-right: 0.0625rem solid #A7A7A7;
  padding-right: 16px;
  padding-right: 1rem;
  margin-right: 16px;
  margin-right: 1rem;
}

.change-card__date {
  display: inline-block;
  font-family: "Marcellus", serif;
  letter-spacing: 0.04em;
}

/* change */
.change {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .change .subtitle, .change .title {
    text-align: center;
  }
}

.change__slider-wrapper {
  margin-right: calc(50% - 50vw);
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .change__slider-wrapper {
    margin-right: 0;
    margin-top: 3.75rem;
    margin: 3.75rem calc(50% - 50vw) 0;
  }
}

.change__slider {
  display: none;
}
.change__slider.slick-initialized {
  display: block;
}

.change__slider-item {
  width: 400px;
  width: 25rem;
  margin: 0 16px;
  margin: 0 1rem;
}
@media screen and (max-width: 767px) {
  .change__slider-item {
    width: auto;
    margin: 0 0.5rem;
  }
}

.change__slider-item-number {
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #FE9297;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .change__slider-item-number {
    font-size: 0.875rem;
  }
}

.change__footer {
  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: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .change__footer {
    display: block;
    margin-top: 1.5rem;
  }
}

.change__nav {
  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) {
  .change__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.change__nav-number {
  font-family: "Marcellus", serif;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #FE9297;
}

.change__nav-divider {
  color: #FE9297;
  margin: 0 16px;
  margin: 0 1rem;
}

.change__nav-arrow {
  display: block;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #FE9297;
  border: 0.0625rem solid #FE9297;
  overflow: hidden;
  -webkit-transition: border 0.5s;
  transition: border 0.5s;
  position: relative;
}
.change__nav-arrow::before, .change__nav-arrow::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  width: 1.5rem;
  height: 14px;
  height: 0.875rem;
  right: 12px;
  right: 0.75rem;
  -webkit-transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, transform 0.5s;
  transition: background 0.5s, transform 0.5s, -webkit-transform 0.5s;
  z-index: 1;
}
.change__nav-arrow::after {
  opacity: 0;
  -webkit-transform: translateX(-2.375rem) translateY(-50%);
          transform: translateX(-2.375rem) translateY(-50%);
}
.change__nav-arrow:hover {
  opacity: 1;
  border-color: #FE9297;
}

.change__nav-prev {
  margin-right: 40px;
  margin-right: 2.5rem;
}
.change__nav-prev::before, .change__nav-prev::after {
  background: url(../img/common/arrow-icon09.png) no-repeat center/contain;
}
.change__nav-prev:hover::before {
  -webkit-animation: transformBefore02 0.5s;
          animation: transformBefore02 0.5s;
}
.change__nav-prev:hover::after {
  -webkit-animation: transformAfter02 0.5s;
          animation: transformAfter02 0.5s;
}

.change__nav-next {
  margin-left: 40px;
  margin-left: 2.5rem;
}
.change__nav-next::before, .change__nav-next::after {
  background: url(../img/common/arrow-icon08.png) no-repeat center/contain;
}
.change__nav-next:hover::before {
  -webkit-animation: transformBefore 0.5s;
          animation: transformBefore 0.5s;
}
.change__nav-next:hover::after {
  -webkit-animation: transformAfter 0.5s;
          animation: transformAfter 0.5s;
}

@-webkit-keyframes transformBefore02 {
  0% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-2.375rem) translateY(-50%);
            transform: translateX(-2.375rem) translateY(-50%);
    opacity: 0;
  }
}

@keyframes transformBefore02 {
  0% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-2.375rem) translateY(-50%);
            transform: translateX(-2.375rem) translateY(-50%);
    opacity: 0;
  }
}
@-webkit-keyframes transformAfter02 {
  0% {
    -webkit-transform: translateX(2.375rem) translateY(-50%);
            transform: translateX(2.375rem) translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}
@keyframes transformAfter02 {
  0% {
    -webkit-transform: translateX(2.375rem) translateY(-50%);
            transform: translateX(2.375rem) translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .change__btn {
    margin: 4rem auto 0;
  }
}

/* cv */
.cv {
  text-align: center;
  background: url(../img/common/cv-bg_pc.png) no-repeat center/cover;
  padding: 120px 0;
  padding: 7.5rem 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .cv {
    background: url(../img/common/cv-bg_sp.png) no-repeat center/cover;
    padding: 6.25rem 0;
  }
}
.cv::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .32);
  z-index: -1;
}

.cv__subtitle {
  position: absolute;
  bottom: 70px;
  bottom: 4.375rem;
  left: 50%;
  top: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Marcellus", serif;
  font-size: 280px;
  font-size: 17.5rem;
  color: rgba(254, 146, 151, .1);
  line-height: 1;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .cv__subtitle {
    top: 40%;
    font-size: 5.3125rem;
  }
}

.cv__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.cv__btn {
  text-align: left;
  font-family: "Marcellus", serif;
  letter-spacing: 0;
  padding: 11px 48px;
  padding: 0.6875rem 3rem;
  margin: 64px auto 0;
  margin: 4rem auto 0;
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  background: url(../img/common/drawer-bg.jpg) no-repeat center/cover;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  padding: 17px 20px;
  padding: 1.0625rem 1.25rem;
}
.drawer.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer__close {
  display: block;
  width: 70px;
  width: 4.375rem;
  max-width: 100%;
  margin-left: auto;
}

.drawer__items {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.drawer__item a {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.04em;
  background: url(../img/common/arrow-icon04.png) no-repeat center left 16px/6px;
  background: url(../img/common/arrow-icon04.png) no-repeat center left 1rem/0.375rem;
  padding: 10px 30px;
  padding: 0.625rem 1.875rem;
}

.drawer__item--contact {
  margin-top: 48px;
  margin-top: 3rem;
}
.drawer__item--contact .btn {
  width: 242px;
  width: 15.125rem;
  font-family: "Shippori Mincho B1", serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #A38D78;
  background: #fff;
  padding: 13px 48px;
  padding: 0.8125rem 3rem;
}
.drawer__item--contact .btn:hover {
  color: #fff;
}

/* entitle */
/* fade */
.fadeUp {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out 0.5s, -webkit-transform 0.8s ease-out 0.5s, -webkit-filter 0.8s ease-out 0.5s;
  transition: opacity 0.8s ease-out 0.5s, -webkit-transform 0.8s ease-out 0.5s, -webkit-filter 0.8s ease-out 0.5s;
  transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s, filter 0.8s ease-out 0.5s;
  transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s, filter 0.8s ease-out 0.5s, -webkit-transform 0.8s ease-out 0.5s, -webkit-filter 0.8s ease-out 0.5s;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
@media screen and (max-width: 767px) {
  .fadeUp {
    -webkit-transition: opacity 0.8s ease-out 0.3s, -webkit-transform 0.8s ease-out 0.3s, -webkit-filter 0.8s ease-out 0.3s;
    transition: opacity 0.8s ease-out 0.3s, -webkit-transform 0.8s ease-out 0.3s, -webkit-filter 0.8s ease-out 0.3s;
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s, filter 0.8s ease-out 0.3s;
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s, filter 0.8s ease-out 0.3s, -webkit-transform 0.8s ease-out 0.3s, -webkit-filter 0.8s ease-out 0.3s;
  }
}
.fadeUp.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
}

.fadeLeft {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: opacity 0.8s ease-out 0.5s, -webkit-transform 0.8s ease-out 0.5s, -webkit-filter 0.8s ease-out 0.5s;
  transition: opacity 0.8s ease-out 0.5s, -webkit-transform 0.8s ease-out 0.5s, -webkit-filter 0.8s ease-out 0.5s;
  transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s, filter 0.8s ease-out 0.5s;
  transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s, filter 0.8s ease-out 0.5s, -webkit-transform 0.8s ease-out 0.5s, -webkit-filter 0.8s ease-out 0.5s;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
@media screen and (max-width: 767px) {
  .fadeLeft {
    -webkit-transition: opacity 0.8s ease-out 0.2s, -webkit-transform 0.8s ease-out 0.2s, -webkit-filter 0.8s ease-out 0.2s;
    transition: opacity 0.8s ease-out 0.2s, -webkit-transform 0.8s ease-out 0.2s, -webkit-filter 0.8s ease-out 0.2s;
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s, filter 0.8s ease-out 0.2s;
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s, filter 0.8s ease-out 0.2s, -webkit-transform 0.8s ease-out 0.2s, -webkit-filter 0.8s ease-out 0.2s;
  }
}
.fadeLeft.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
}

.fade-blur.active .fade-char {
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition-delay: var(--delay);
          transition-delay: var(--delay);
}
.fade-blur .gradient-text {
  will-change: opacity, transform, filter;
  background: linear-gradient(100.69deg, #FFB0B4 0%, #FED4CB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fade-blur .fade-char {
  opacity: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out, -webkit-filter 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out, -webkit-filter 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out, -webkit-transform 0.8s ease-out, -webkit-filter 0.8s ease-out;
}

/* fnav */
.fnav__item + .fnav__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .fnav__item + .fnav__item {
    margin-top: 1rem;
  }
}
.fnav__item a {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #505050;
  letter-spacing: 0.04em;
  background: url(../img/common/arrow-icon05.png) no-repeat center left/6px;
  background: url(../img/common/arrow-icon05.png) no-repeat center left/0.375rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
.fnav__item a:hover {
  opacity: 1;
  color: #FE9297;
}

/* footer */
.footer {
  background: #fff;
  padding: 80px 50px 90px;
  padding: 5rem 3.125rem 5.625rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 5rem 1.25rem;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    display: block;
  }
}

.footer__logo {
  display: block;
  width: 320px;
  width: 20rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 15rem;
  }
}

.footer__nav {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    margin-left: 0;
    margin-top: 3.4375rem;
    padding: 0 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .footer__units {
    margin-top: 3.125rem;
  }
}

.footer__unit + .footer__unit {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .footer__unit + .footer__unit {
    margin-top: 2.5rem;
  }
}

.footer__subtitle {
  font-family: "Marcellus", serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #FE9297;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

.footer__btn {
  width: 242px;
  width: 15.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 13px 48px;
  padding: 0.8125rem 3rem;
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.875rem;
  }
}

.footer__sns-item a {
  display: block;
  width: 40px;
  width: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__sns-item a {
    width: auto;
  }
}

.footer__pagetop {
  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: 120px;
  width: 7.5rem;
  max-width: 100%;
  height: 120px;
  height: 7.5rem;
  border-radius: 50%;
  border: 1px solid #FE9297;
  border: 0.0625rem solid #FE9297;
  font-size: 14px;
  font-size: 0.875rem;
  color: #FE9297;
  line-height: 1;
  padding-top: 40px;
  padding-top: 2.5rem;
  -webkit-transition: border 0.5s, color 0.5s;
  transition: border 0.5s, color 0.5s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__pagetop {
    width: 6.25rem;
    min-width: 6.25rem;
    height: 6.25rem;
    font-size: 0.75rem;
    padding-top: 1.875rem;
  }
}
.footer__pagetop::before, .footer__pagetop::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 30px;
  top: 1.875rem;
  width: 19px;
  width: 1.1875rem;
  height: 32px;
  height: 2rem;
  background: url(../img/common/pagetop-icon01.png) no-repeat center/contain;
  -webkit-transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, transform 0.5s;
  transition: background 0.5s, transform 0.5s, -webkit-transform 0.5s;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .footer__pagetop::before, .footer__pagetop::after {
    top: 1.5625rem;
    width: 1rem;
    height: 1.6875rem;
  }
}
.footer__pagetop::after {
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(2.375rem);
          transform: translateX(-50%) translateY(2.375rem);
}
.footer__pagetop:hover {
  opacity: 1;
  border-color: #A38D78;
  color: #A38D78;
}
.footer__pagetop:hover::before, .footer__pagetop:hover::after {
  background: url(../img/common/pagetop-icon02.png) no-repeat center/contain;
}
.footer__pagetop:hover::before {
  -webkit-animation: beforeUp 0.5s;
          animation: beforeUp 0.5s;
}
.footer__pagetop:hover::after {
  -webkit-animation: afterUp 0.5s;
          animation: afterUp 0.5s;
}

@-webkit-keyframes beforeUp {
  0% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-2.375rem);
            transform: translateX(-50%) translateY(-2.375rem);
    opacity: 0;
  }
}

@keyframes beforeUp {
  0% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-2.375rem);
            transform: translateX(-50%) translateY(-2.375rem);
    opacity: 0;
  }
}
@-webkit-keyframes afterUp {
  0% {
    -webkit-transform: translateX(-50%) translateY(2.375rem);
            transform: translateX(-50%) translateY(2.375rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
@keyframes afterUp {
  0% {
    -webkit-transform: translateX(-50%) translateY(2.375rem);
            transform: translateX(-50%) translateY(2.375rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #D9D9D9;
  border-top: 0.0625rem solid #D9D9D9;
  padding-top: 35px;
  padding-top: 2.1875rem;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    display: block;
    margin-top: 4rem;
    padding-top: 4.375rem;
  }
}

@media screen and (max-width: 767px) {
  .footer__link-wrapper {
    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;
  }
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__links {
    display: block;
    padding-left: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .footer__link + .footer__link {
    margin-top: 0.625rem;
  }
}
.footer__link a {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #A7A7A7;
}

.footer__copyright {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #A7A7A7;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 0.6875rem;
    margin-top: 3.125rem;
  }
}

/* form */
.form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .form__item {
    display: block;
  }
}
.form__item + .form__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__item + .form__item {
    margin-top: 2rem;
  }
}

.form__item-label {
  width: 39%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__item-label {
    width: 100%;
    padding-top: 0;
  }
}
.form__item-label label {
  display: inline-block;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.form__item-label span {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 6.25rem;
  margin-left: 16px;
  margin-left: 1rem;
  padding: 0 12px;
  padding: 0 0.75rem;
}
.form__item-label span.required {
  color: #fff;
  background: #FE9297;
  border: 1px solid #FE9297;
  border: 0.0625rem solid #FE9297;
}
.form__item-label span.optional {
  color: #A7A7A7;
  border: 1px solid #A7A7A7;
  border: 0.0625rem solid #A7A7A7;
}

.form__item-input {
  width: 61%;
}
@media screen and (max-width: 767px) {
  .form__item-input {
    width: 100%;
    margin-top: 0.625rem;
  }
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input textarea {
  width: 100%;
  letter-spacing: 0.04em;
  background: #fff;
  border-radius: 0.25rem;
  border: 1px solid #A7A7A7;
  border: 0.0625rem solid #A7A7A7;
  padding: 12px 16px;
  padding: 0.75rem 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 {
  color: #A7A7A7;
}
.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 {
  color: #A7A7A7;
}
.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 {
  color: #A7A7A7;
}
.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 {
  color: #A7A7A7;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email] {
  height: 53px;
  height: 3.3125rem;
}
.form__item-input textarea {
  height: 240px;
  height: 15rem;
  resize: none;
}

.form__privacy {
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__privacy {
    font-size: 0.875rem;
  }
}
.form__privacy a {
  color: #FE9297;
  text-decoration: underline;
}

.form__check {
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
}
.form__check input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.04em;
  padding-left: 24px;
  padding-left: 1.5rem;
  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 #A7A7A7;
  border: 0.0625rem solid #A7A7A7;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  left: 0;
  top: 50%;
}
.form__check input[type=checkbox] + span::after {
  border-bottom: 2px solid #555;
  border-bottom: 0.125rem solid #555;
  border-left: 2px solid #555;
  border-left: 0.125rem solid #555;
  height: 6px;
  height: 0.375rem;
  width: 12px;
  width: 0.75rem;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  left: 2px;
  left: 0.125rem;
  top: 9px;
  top: 0.5625rem;
}
.form__check input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.form__btn-wrapper {
  width: 197px;
  width: 12.3125rem;
  max-width: 100%;
  border-radius: 62.5rem;
  background: #FE9297;
  margin: 48px auto 0;
  margin: 3rem auto 0;
}

.form__btn {
  text-align: left;
  width: 100%;
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-size: 1.25rem;
  background: url(../img/common/arrow-icon03.png) no-repeat center right 6px/48px;
  background: url(../img/common/arrow-icon03.png) no-repeat center right 0.375rem/3rem;
  padding: 12px 48px;
  padding: 0.75rem 3rem;
  color: #fff;
}

.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;
  height: inherit;
}

.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  gap: 32px;
  gap: 2rem;
}

.gnav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
.gnav__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #505050;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
  position: relative;
}
.gnav__item a::after {
  position: absolute;
  content: "";
  bottom: 35px;
  bottom: 2.1875rem;
  left: 0;
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: #FE9297;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.gnav__item a:hover {
  opacity: 1;
  color: #FE9297;
}
.gnav__item a:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.gnav__item--contact {
  height: auto;
}
.gnav__item--contact a.btn {
  width: 148px;
  width: 9.25rem;
  height: auto;
  font-family: "Shippori Mincho B1", serif;
  color: #fff;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
}
.gnav__item--contact a.btn::after {
  display: none;
}
.gnav__item--contact a.btn span {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
}
.gnav__item--contact a.btn span::before, .gnav__item--contact a.btn span::after {
  width: 16px;
  width: 1rem;
  height: 10px;
  height: 0.625rem;
  right: 8px;
  right: 0.5rem;
}
.gnav__item--contact a.btn:hover {
  color: #FE9297;
}

/* header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 108px;
  height: 6.75rem;
  z-index: 100;
  -webkit-transition: background 0.5s, opacity 0.5s;
  transition: background 0.5s, opacity 0.5s;
}
@media screen and (max-width: 767px) {
  .header {
    height: 4rem;
  }
}
.header.active {
  background: rgba(255, 255, 255, .5);
}

.header--top.hide {
  opacity: 0;
  pointer-events: none;
}

.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;
  height: inherit;
  padding: 0 50px;
  padding: 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 1.25rem;
  }
}

.header__logo {
  width: 220px;
  width: 13.75rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 10.3125rem;
  }
}
.header__logo a {
  display: block;
}

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

.header__menu {
  width: 74px;
  width: 4.625rem;
  max-width: 100%;
  font-family: "Marcellus", serif;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 6.25rem;
  color: #fff;
  background: #FE9297;
  padding: 3px 0 2px;
  padding: 0.1875rem 0 0.125rem;
}

/* link */
.link {
  display: inline-block;
  font-family: "Marcellus", serif;
  color: #A38D78;
  border-bottom: 1px solid #A38D78;
  border-bottom: 0.0625rem solid #A38D78;
  padding: 5px 48px 5px 8px;
  padding: 0.3125rem 3rem 0.3125rem 0.5rem;
  margin-top: auto;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
  position: relative;
}
.link::before {
  position: absolute;
  bottom: -1px;
  bottom: -0.0625rem;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: #FE9297;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.link span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  right: 8px;
  right: 0.5rem;
  width: 16px;
  width: 1rem;
  height: 10px;
  height: 0.625rem;
  z-index: 1;
}
.link span::before, .link span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: url(../img/common/arrow-icon06.png) no-repeat center/contain;
  -webkit-transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, transform 0.5s;
  transition: background 0.5s, transform 0.5s, -webkit-transform 0.5s;
  z-index: 1;
}
.link span::after {
  opacity: 0;
  -webkit-transform: translateX(-2.375rem) translateY(-50%);
          transform: translateX(-2.375rem) translateY(-50%);
}
.link:hover {
  opacity: 1;
  color: #FE9297;
}
.link:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.link:hover span::before, .link:hover span::after {
  background: url(../img/common/arrow-icon08.png) no-repeat center/contain;
}
.link:hover span::before {
  -webkit-animation: transformBefore 0.5s;
          animation: transformBefore 0.5s;
}
.link:hover span::after {
  -webkit-animation: transformAfter 0.5s;
          animation: transformAfter 0.5s;
}

.link--pink {
  color: #FE9297;
  border-color: #FE9297;
}
.link--pink::before {
  background: #A38D78;
}
.link--pink span::before, .link--pink span::after {
  background: url(../img/common/arrow-icon08.png) no-repeat center/contain;
}
.link--pink:hover {
  color: #A38D78;
}
.link--pink:hover span::before, .link--pink:hover span::after {
  background: url(../img/common/arrow-icon06.png) no-repeat center/contain;
}

/* list */
.list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #D9D9D9;
  border-bottom: 0.0625rem solid #D9D9D9;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .list__item {
    display: block;
  }
}
.list__item + .list__item {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.list__item-title {
  width: 26%;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #A38D78;
}
@media screen and (max-width: 767px) {
  .list__item-title {
    width: 100%;
  }
}

.list__item-body {
  width: 74%;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .list__item-body {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .list__item-body ul {
    margin-left: 0.3125rem;
  }
}
.list__item-body li {
  padding-left: 1em;
  position: relative;
}
.list__item-body li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 5px;
  top: 0.3125rem;
  top: 0;
  border-radius: 50%;
}

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

.main--auto {
  overflow: unset;
}

/* master-card */
.master-card__inner {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .0784313725);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .0784313725);
  border-radius: 0.5rem;
  padding: 20px;
  padding: 1.25rem;
}
.master-card__inner:hover {
  opacity: 1;
}
.master-card__inner:hover .master-card__name {
  color: #FE9297;
}
.master-card__inner:hover .master-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.master-card__img {
  width: 100%;
  padding-top: 123.0769230769%;
  overflow: hidden;
  border-radius: 0.5rem;
  position: relative;
}
.master-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.master-card__qualification {
  margin-top: 16px;
  margin-top: 1rem;
}
.master-card__qualification span {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #A38D78;
  border-bottom: 1px solid #A38D78;
  border-bottom: 0.0625rem solid #A38D78;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}

.master-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
  gap: 1rem;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.master-card__name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

.master-card__area {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #A7A7A7;
  margin-bottom: 3px;
  margin-bottom: 0.1875rem;
}

/* master */
.master {
  background: #CBB7B0;
  position: relative;
}
.master .subtitle {
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.master .subtitle .gradient-text {
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: rgba(255, 255, 255, .32);
}
.master .title .gradient-text {
  color: #fff;
}

.master__img01 {
  position: absolute;
  top: 80px;
  top: 5rem;
  right: 0;
  width: 400px;
  width: 25rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .master__img01 {
    width: 7.5rem;
  }
}

.master__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 95px;
  margin-top: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .master__inner {
    display: block;
    margin-top: 4.375rem;
  }
}

.master__body {
  width: 62%;
  margin-top: -20px;
  margin-top: -1.25rem;
}
@media screen and (max-width: 767px) {
  .master__body {
    width: 100%;
    margin-top: 0;
  }
}

.master__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  gap: 2rem;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #fff;
  border-bottom: 0.0625rem solid #fff;
  padding: 24px;
  padding: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .master__link a {
    gap: 1rem;
    font-size: 0.9375rem;
    padding: 1.25rem 1rem;
  }
}
.master__link a::before, .master__link a::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  width: 2rem;
  height: 19px;
  height: 1.1875rem;
  right: 24px;
  right: 1.5rem;
  background: url(../img/common/arrow-icon07.png) no-repeat center/contain;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .master__link a::before, .master__link a::after {
    width: 1.5rem;
    height: 0.875rem;
    height: 1rem;
  }
}
.master__link a::before {
  right: 8px;
  right: 0.5rem;
}
.master__link a::after {
  opacity: 0;
  right: 8px;
  right: 0.5rem;
  -webkit-transform: translateX(-2.375rem) translateY(-50%);
          transform: translateX(-2.375rem) translateY(-50%);
}
.master__link a:hover {
  opacity: 1;
}
.master__link a:hover::before {
  -webkit-animation: transformBefore 0.5s;
          animation: transformBefore 0.5s;
}
.master__link a:hover::after {
  -webkit-animation: transformAfter 0.5s;
          animation: transformAfter 0.5s;
}
.master__link a span {
  display: inline-block;
  font-family: "Marcellus", serif;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .master__link a span {
    font-size: 0.875rem;
  }
}
.master__link a br {
  display: none;
}
@media screen and (max-width: 767px) {
  .master__link a br {
    display: block;
  }
}

@keyframes transformBefore {
  0% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(2.375rem) translateY(-50%);
            transform: translateX(2.375rem) translateY(-50%);
    opacity: 0;
  }
}
@keyframes transformAfter {
  0% {
    -webkit-transform: translateX(-2.375rem) translateY(-50%);
            transform: translateX(-2.375rem) translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}
.master__btn {
  margin-left: auto;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .master__btn {
    margin: 4rem auto 0;
  }
}

.master__img02 {
  width: 36vw;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .master__img02 {
    width: 85vw;
    margin-top: 4rem;
  }
}
.master__img02 img {
  height: 552px;
  height: 34.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .master__img02 img {
    height: auto;
  }
}

/* media-box */
.media-box {
  border-radius: 0.5rem;
  background: linear-gradient(100.69deg, #FFB0B4 0%, #FED4CB 100%);
  padding: 8px;
  padding: 0.5rem;
}

.media-box__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.5rem;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  padding: 16px 56px;
  padding: 1rem 3.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .media-box__inner {
    display: block;
    padding: 2rem 1.25rem;
  }
}

.media-box__subtitle01, .media-box__subtitle02 {
  position: absolute;
  font-family: "Marcellus", serif;
  font-size: 120px;
  font-size: 7.5rem;
  color: rgba(255, 255, 255, .16);
  line-height: 1;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .media-box__subtitle01, .media-box__subtitle02 {
    font-size: 3.5rem;
  }
}

.media-box__subtitle01 {
  left: 0;
  top: -15px;
  top: -0.9375rem;
}
@media screen and (max-width: 767px) {
  .media-box__subtitle01 {
    top: -0.3125rem;
  }
}

.media-box__subtitle02 {
  right: -5px;
  right: -0.3125rem;
  bottom: -18px;
  bottom: -1.125rem;
}
@media screen and (max-width: 767px) {
  .media-box__subtitle02 {
    right: 0;
    bottom: -0.5rem;
  }
}

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

.media-box__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .media-box__title {
    text-align: center;
    font-size: 1.5rem;
  }
}

.media-box__text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .media-box__text {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}

.media-box__btn {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .media-box__btn {
    margin: 1.25rem auto 0;
  }
}

.media-box__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .media-box__img {
    width: 100%;
    margin-top: 1.25rem;
  }
}

/* menu */
.menu {
  background: #fff;
}

.menu__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 95px;
  gap: 5.9375rem;
  border-top: 1px solid #D9D9D9;
  border-top: 0.0625rem solid #D9D9D9;
  padding: 64px 0;
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .menu__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    padding: 0;
  }
}
.menu__items + .menu__items {
  border-bottom: 1px solid #D9D9D9;
  border-bottom: 0.0625rem solid #D9D9D9;
}
.menu__items:first-child .menu__item:first-child .menu__item-text {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .menu__items:first-child .menu__item:first-child .menu__item-text {
    margin-top: 1rem;
  }
}

.menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 285px;
  width: 17.8125rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .menu__item {
    display: block;
    width: 100%;
    padding: 2.5rem 0 3rem;
  }
  .menu__item + .menu__item {
    border-top: 0.0625rem solid #D9D9D9;
  }
}
.menu__item:not(:nth-child(3n+1)) {
  position: relative;
}
.menu__item:not(:nth-child(3n+1))::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: #D9D9D9;
  left: -48px;
  left: -3rem;
}

.menu__item-number {
  font-family: "Marcellus", serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #A38D78;
}

.menu__item-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .menu__item-title {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.menu__item-subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #A7A7A7;
}
@media screen and (max-width: 767px) {
  .menu__item-subtitle {
    font-size: 1rem;
  }
}

.menu__item-text {
  letter-spacing: 0.04em;
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .menu__item-text {
    margin-top: 1rem;
    margin-bottom: 0;
  }
}

.menu__item-link-wrapper {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .menu__item-link-wrapper {
    text-align: right;
    margin-top: 1.5rem;
  }
}

/* more */
/* mv */
.mv {
  background: url(../img/common/mv-bg_pc.png) no-repeat center/cover;
  padding: 275px 0 55px;
  padding: 17.1875rem 0 3.4375rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv {
    background: url(../img/common/mv-bg_sp.png) no-repeat center/cover;
    padding: 9.375rem 0 2.1875rem;
  }
}
.mv::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .32);
  z-index: -1;
}
.mv .breadcrumb {
  padding: 32px 10px;
  padding: 2rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv .breadcrumb {
    padding: 2.25rem 0.625rem;
  }
}
.mv .breadcrumb__items {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.mv__inner {
  position: relative;
  z-index: 1;
}

.mv__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.25rem;
  }
}

.mv__subtitle {
  position: absolute;
  bottom: 70px;
  bottom: 4.375rem;
  left: 0;
  width: 100%;
  font-family: "Marcellus", serif;
  font-size: 160px;
  font-size: 10rem;
  color: rgba(254, 146, 151, .1);
  line-height: 1;
  white-space: nowrap;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .mv__subtitle {
    font-size: 5rem;
    line-height: 0.9;
    bottom: 6.25rem;
  }
}

/* news-card */
.news-card__inner {
  display: block;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .0784313725);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .0784313725);
  background: #fff;
  border-radius: 0.5rem;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}
.news-card__inner:hover {
  opacity: 1;
}
.news-card__inner:hover .news-card__title {
  color: #FE9297;
}
.news-card__inner:hover .news-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.news-card__img {
  width: 100%;
  padding-top: 66.5384615385%;
  overflow: hidden;
  border-radius: 0.5rem;
  position: relative;
}
.news-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.news-card__title {
  font-weight: 700;
  margin-top: 16px;
  margin-top: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

.news-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 33px;
  gap: 2.0625rem;
  font-size: 12px;
  font-size: 0.75rem;
  color: #A7A7A7;
  margin-top: 16px;
  margin-top: 1rem;
}

.news-card__category span {
  display: inline-block;
  letter-spacing: 0.04em;
  position: relative;
}
.news-card__category span::after {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -17px;
  right: -1.0625rem;
  background: #A7A7A7;
}

.news-card__date {
  display: inline-block;
  font-family: "Marcellus", serif;
  letter-spacing: 0.04em;
}

/* news */
/* pagination */
.pagination {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 4rem;
  }
}
.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: 8px;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .pagination ul {
    gap: 0.375rem;
  }
}
.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: 40px;
  width: 2.5rem;
  min-width: 40px;
  min-width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .pagination a, .pagination span {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
}
.pagination .current {
  background: #FE9297;
  color: #fff;
}
.pagination .prev {
  background: url(../img/common/prev-icon.png) no-repeat center/contain;
  margin-right: 8px;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .pagination .prev {
    margin-right: 1rem;
  }
}
.pagination .next {
  background: url(../img/common/next-icon.png) no-repeat center/contain;
  margin-left: 8px;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .pagination .next {
    margin-left: 1rem;
  }
}

/* post-content */
.post-content {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  font-weight: 700;
  margin: 0;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  margin-top: 64px;
  margin-top: 4rem;
}
.post-content h2 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #FE9297;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid #FE9297;
  border-bottom: 0.0625rem solid #FE9297;
}
@media screen and (max-width: 767px) {
  .post-content h2 {
    font-size: 1.25rem;
  }
}
.post-content h3 {
  font-size: 20px;
  font-size: 1.25rem;
  color: #A38D78;
  letter-spacing: 0.08em;
  padding-left: 74px;
  padding-left: 4.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post-content h3 {
    font-size: 1.125rem;
    padding-left: 2.625rem;
  }
}
.post-content h3::before {
  position: absolute;
  content: "";
  width: 64px;
  width: 4rem;
  height: 1px;
  height: 0.0625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: #A38D78;
}
@media screen and (max-width: 767px) {
  .post-content h3::before {
    width: 2rem;
  }
}
.post-content h4, .post-content h5, .post-content h6 {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .post-content h4, .post-content h5, .post-content h6 {
    font-size: 1rem;
  }
}
.post-content p {
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.post-content p a {
  color: #FE9297;
  text-decoration: underline;
}
.post-content figure {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.post-content table {
  border: 1px solid #A38D78;
  border: 0.0625rem solid #A38D78;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.post-content table tr > :first-child {
  text-align: center;
  width: 140px;
  width: 8.75rem;
  background: #CBB7B0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .post-content table tr > :first-child {
    width: 6.25rem;
  }
}
.post-content table th, .post-content table td {
  border: 1px solid #A38D78;
  border: 0.0625rem solid #A38D78;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 26px;
  padding: 0.75rem 1.625rem;
}
@media screen and (max-width: 767px) {
  .post-content table th, .post-content table td {
    padding: 0.75rem 0.75rem;
  }
}
.post-content ul, .post-content ol {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.post-content ul li {
  background: url(../img/common/check-icon.png) no-repeat left center/20px;
  background: url(../img/common/check-icon.png) no-repeat left center/1.25rem;
  padding-left: 26px;
  padding-left: 1.625rem;
}
.post-content ol {
  counter-reset: num;
}
.post-content ol li {
  counter-increment: num;
  padding-left: 25px;
  padding-left: 1.5625rem;
  position: relative;
}
.post-content ol li::before {
  content: counter(num, decimal-leading-zero) " ";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  width: 20px;
  width: 1.25rem;
  min-width: 20px;
  min-width: 1.25rem;
  font-family: "Marcellus", serif;
  color: #A38D78;
  font-size: 14px;
  font-size: 0.875rem;
}
.post-content li {
  letter-spacing: 0.04em;
}
.post-content li:not(:first-child) {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.post-content .wp-block-button__link {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: 0.08em;
  border-radius: 62.5rem;
  padding: 14px 78px 14px 48px;
  padding: 0.875rem 4.875rem 0.875rem 3rem;
  position: relative;
}
.post-content .wp-block-button__link::after {
  position: absolute;
  content: "";
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 6px;
  right: 0.375rem;
  background: url(../img/common/arrow-icon03.png) no-repeat center/contain;
}

/* post */
.post__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .post__title {
    font-size: 1.25rem;
  }
}

.post__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 33px;
  gap: 2.0625rem;
  font-size: 12px;
  font-size: 0.75rem;
  color: #A7A7A7;
}

.post__category span {
  display: inline-block;
  letter-spacing: 0.04em;
}

.post__date {
  display: inline-block;
  font-family: "Marcellus", serif;
  letter-spacing: 0.04em;
  position: relative;
}
.post__date::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -17px;
  left: -1.0625rem;
  background: #A7A7A7;
}

.post__img {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.post__btn {
  text-align: center;
  display: block;
  padding-right: 25px;
  padding-right: 1.5625rem;
  width: 268px;
  width: 16.75rem;
  max-width: 100%;
  margin: 100px auto 0;
  margin: 6.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .post__btn {
    margin-top: 4rem;
  }
}
.post__btn::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.post__btn span {
  right: unset;
  left: 6px;
  left: 0.375rem;
}
.post__btn span::before, .post__btn span::after {
  background: url(../img/common/arrow-icon10.png) no-repeat center/contain;
}
.post__btn:hover span::before, .post__btn:hover span::after {
  background: url(../img/common/arrow-icon11.png) no-repeat center/contain;
}
.post__btn:hover span::before {
  -webkit-animation: transformBefore02 0.5s;
          animation: transformBefore02 0.5s;
}
.post__btn:hover span::after {
  -webkit-animation: transformAfter02 0.5s;
          animation: transformAfter02 0.5s;
}

/* school */
.school {
  text-align: center;
  background: url(../img/common/school-bg_pc.png) no-repeat center/cover;
  padding: 120px 0;
  padding: 7.5rem 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .school {
    background: url(../img/common/school-bg_sp.png) no-repeat center/cover;
    padding: 6.25rem 0;
  }
}

.school__subtitle {
  position: absolute;
  bottom: 70px;
  bottom: 4.375rem;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Marcellus", serif;
  font-size: 360px;
  font-size: 22.5rem;
  color: rgba(224, 197, 172, .3);
  line-height: 1;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .school__subtitle {
    font-size: 6.5rem;
  }
}

.school__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.school__btn {
  text-align: left;
  font-family: "Marcellus", serif;
  letter-spacing: 0;
  color: #fff;
  background: #A38D78;
  padding: 11px 48px;
  padding: 0.6875rem 3rem;
  margin: 64px auto 0;
  margin: 4rem auto 0;
}
.school__btn::before {
  background: #fff;
}
.school__btn span {
  border-color: #fff;
}
.school__btn span::before, .school__btn span::after {
  background: url(../img/common/arrow-icon07.png) no-repeat center/contain;
}
.school__btn:hover {
  color: #A38D78;
}
.school__btn:hover span {
  border-color: #A38D78;
}
.school__btn:hover span::before, .school__btn:hover span::after {
  background: url(../img/common/arrow-icon06.png) no-repeat center/contain;
}

/* service */
.service {
  background: url(../img/common/service-bg_pc.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .service {
    background: url(../img/common/service-bg_sp.png) no-repeat center/cover;
  }
}
.service .subtitle {
  text-align: center;
  color: linear-gradient(100.69deg, #FFB0B4 0%, #FED4CB 100%);
}
.service .title {
  text-align: center;
}

.service__items {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .service__items {
    margin-top: 3.4375rem;
  }
}

.service__item {
  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;
}
@media screen and (max-width: 767px) {
  .service__item {
    display: block;
  }
}
.service__item + .service__item {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .service__item + .service__item {
    margin-top: 3.75rem;
  }
}
.service__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.service__item-img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .service__item-img {
    width: 100%;
    margin-top: 0.9375rem;
  }
}
.service__item-img img {
  border: 8px solid #fff;
  border: 0.5rem solid #fff;
  -webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, .08);
          box-shadow: 0px 0px 16px rgba(0, 0, 0, .08);
  border-radius: 0.5rem;
}

.service__item-body {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .service__item-body {
    width: 100%;
  }
}

.service__item-number {
  font-family: "Marcellus", serif;
  color: #FE9297;
}

.service__item-title {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .service__item-title {
    font-size: 1.125rem;
    margin-top: 0.9375rem;
  }
}

.service__item-text {
  margin-top: 16px;
  margin-top: 1rem;
}

.service__item-link-wrapper {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .service__item-link-wrapper {
    text-align: right;
    margin-top: 1.25rem;
  }
}

.service__btn {
  margin: 100px auto 0;
  margin: 6.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .service__btn {
    margin-top: 4rem;
  }
}

/* sidebar */
.sidebar {
  position: sticky;
  top: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 767px) {
  .sidebar {
    position: static;
  }
}

.sidebar__unit + .sidebar__unit {
  margin-top: 64px;
  margin-top: 4rem;
}

.sidebar__subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  color: #FE9297;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.sidebar__subtitle--en {
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .sidebar__subtitle--index {
    background: #FFF5F3;
    padding: 0.375rem 0.75rem;
    position: relative;
  }
  .sidebar__subtitle--index::after {
    position: absolute;
    content: "";
    width: 0.875rem;
    height: 0.4375rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0.75rem;
    background: url(../img/common/dropdown-icon.png) no-repeat center/contain;
  }
  .sidebar__subtitle--index.active::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
}

.sidebar__filter {
  background: #fff;
}
.sidebar__filter + .sidebar__filter {
  margin-top: 12px;
  margin-top: 0.75rem;
}
.sidebar__filter select {
  width: 100%;
  border-radius: 0.25rem;
  border: 1px solid #A7A7A7;
  border: 0.0625rem solid #A7A7A7;
  color: #555;
  height: 50px;
  height: 3.125rem;
  padding: 10px 24px;
  padding: 0.625rem 1.5rem;
  background: url(../img/common/select-icon.png) no-repeat center right 22px/12px;
  background: url(../img/common/select-icon.png) no-repeat center right 1.375rem/0.75rem;
}

.sidebar__box {
  background: #FFF5F3;
  border-radius: 0.5rem;
  padding: 32px;
  padding: 2rem;
}

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

.sidebar__list-title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FE9297;
  border-bottom: 1px solid #FE9297;
  border-bottom: 0.0625rem solid #FE9297;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.sidebar__list-body {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.sidebar__list-name {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}
.sidebar__list-name span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: 8px;
  margin-left: 0.5rem;
}

.sidebar__list-kana {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #A7A7A7;
}

.sidebar__list-text {
  letter-spacing: 0.08em;
}
.sidebar__list-text + .sidebar__list-text {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.sidebar__category-item span, .sidebar__category-item a {
  display: inline-block;
  padding: 8px 0 8px 56px;
  padding: 0.5rem 0 0.5rem 3.5rem;
  position: relative;
}
.sidebar__category-item span::before, .sidebar__category-item a::before {
  position: absolute;
  content: "";
  width: 48px;
  width: 3rem;
  height: 1px;
  height: 0.0625rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sidebar__category-item a {
  color: #A7A7A7;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
.sidebar__category-item a::before {
  background: #A7A7A7;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}
.sidebar__category-item a:hover {
  opacity: 1;
  color: #FE9297;
}
.sidebar__category-item a:hover::before {
  background: #FE9297;
}
.sidebar__category-item span {
  color: #FE9297;
}
.sidebar__category-item span::before {
  background: #FE9297;
}

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

.sidebar__toc-item span, .sidebar__toc-item a {
  display: block;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #A7A7A7;
  border-left: 1px solid #A7A7A7;
  border-left: 0.0625rem solid #A7A7A7;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  -webkit-transition: color 0.3s, border 0.3s;
  transition: color 0.3s, border 0.3s;
}
@media screen and (max-width: 767px) {
  .sidebar__toc-item span, .sidebar__toc-item a {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}
.sidebar__toc-item span.current, .sidebar__toc-item a.current {
  color: #FE9297;
  border-color: #FE9297;
}
.sidebar__toc-item a:hover {
  opacity: 1;
  color: #FE9297;
  border-color: #FE9297;
}
.sidebar__toc-item span {
  color: #FE9297;
  border-color: #FE9297;
}

/* subtitle */
.subtitle {
  font-family: "Marcellus", serif;
  font-size: 120px;
  font-size: 7.5rem;
  line-height: 1;
  background: linear-gradient(100.69deg, #FFB0B4 0%, #FED4CB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 3rem;
  }
}

/* text */
.text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* title */
.title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FE9297;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 1rem;
  }
}
.title .gradient-text {
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background: unset;
  color: #FE9297;
}

/* about */
/* concept */
.concept {
  text-align: center;
  background: #FAF9F8;
  position: relative;
}

.concept__img01, .concept__img02 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 320px;
  width: 20rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .concept__img01, .concept__img02 {
    position: static;
    -webkit-transform: unset;
            transform: unset;
    width: 18.4375rem;
  }
}

.concept__img01 {
  left: 0;
}
@media screen and (max-width: 767px) {
  .concept__img01 {
    margin-right: auto;
    margin-bottom: 4rem;
  }
}

.concept__img02 {
  right: 0;
}
@media screen and (max-width: 767px) {
  .concept__img02 {
    margin-left: auto;
    margin-top: 4rem;
  }
}

.concept__text {
  margin-top: 64px;
  margin-top: 4rem;
}

/* mark */
.mark {
  background: #FAF9F8;
  position: relative;
  z-index: 1;
}
.mark::before {
  position: absolute;
  content: "";
  width: 720px;
  width: 45rem;
  height: 810px;
  height: 50.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: url(../img/about/mark-bg_pc.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .mark::before {
    width: 17.5rem;
    height: 42.25rem;
    background: url(../img/about/mark-bg_sp.png) no-repeat center/contain;
  }
}
.mark .subtitle, .mark .title {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mark .subtitle {
    font-size: 2.5rem;
  }
}

.mark__content {
  background: #fff;
  padding: 60px 80px;
  padding: 3.75rem 5rem;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .mark__content {
    padding: 0.9375rem 0.9375rem;
  }
}

.mark__table-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .mark__table-wrapper {
    display: block;
    gap: 0;
  }
}

.mark__table {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1.5625rem);
          flex: 0 1 calc(50% - 1.5625rem);
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.mark__table tr:first-child th {
  color: #FE9297;
}
@media screen and (max-width: 767px) {
  .mark__table tr:first-child th {
    font-size: 0.875rem;
  }
}
.mark__table tr > :first-child {
  width: 15%;
}
@media screen and (max-width: 767px) {
  .mark__table tr > :first-child {
    width: 10%;
  }
}
.mark__table tr > :nth-child(2) {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .mark__table tr > :nth-child(2) {
    width: 56%;
  }
}
.mark__table tr > :nth-child(3) {
  width: 39%;
}
@media screen and (max-width: 767px) {
  .mark__table tr > :nth-child(3) {
    width: 34%;
  }
}
.mark__table th, .mark__table td {
  text-align: center;
  padding: 8px 0;
  padding: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .mark__table th, .mark__table td {
    padding: 0.375rem 0;
  }
}
.mark__table th {
  font-family: "Marcellus", serif;
  font-size: 16px;
  font-size: 1rem;
  color: #CBB7B0;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .mark__table th {
    font-size: 0.75rem;
  }
}
.mark__table td {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .mark__table td {
    font-size: 0.75rem;
  }
}

/* overview */
.overview .l-section {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .overview .l-section {
    padding-bottom: 6.25rem;
  }
}

.overview__inner {
  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: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .overview__inner {
    display: block;
    margin-top: 4rem;
  }
}

.overview__list {
  width: 56%;
}
@media screen and (max-width: 767px) {
  .overview__list {
    width: 100%;
  }
}
.overview__list .list__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.overview__img {
  width: 36vw;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .overview__img {
    width: 86vw;
    margin-top: 4rem;
    margin-left: auto;
  }
}

/* change-archive */
.change-archive {
  background: #FAF9F8;
}
.change-archive .l-cards {
  gap: 80px 70px;
  gap: 5rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .change-archive .l-cards {
    gap: 2.5rem;
  }
}
.change-archive .change-card__inner {
  padding: 20px;
  padding: 1.25rem;
}

/* change-single */
/* company */
/* consulting */
.consulting .info__post {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .consulting .info__post {
    text-align: left;
  }
}
.consulting .info__units {
  border-bottom: 1px solid #D9D9D9;
  border-bottom: 0.0625rem solid #D9D9D9;
}

/* contact */
.contact {
  background: #FAF9F8;
}
.contact .l-inner {
  max-width: 890px;
  max-width: 55.625rem;
}

.contact__text {
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .contact__text {
    text-align: left;
  }
}

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

/* master-archive */
.master-archive {
  background: #FAF9F8;
}
.master-archive .sidebar__toc {
  display: block;
}

/* master-single */
.master-single__subtitle {
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #FE9297;
  margin-top: 24px;
  margin-top: 1.5rem;
}

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

.master-single__img {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .master-single__img {
    width: 100%;
  }
}
.master-single__img img {
  border-radius: 0.625rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .master-single__img img {
    height: auto;
  }
}

.master-single__box {
  width: 47%;
  background: #FFF5F3;
  border-radius: 0.5rem;
  padding: 32px;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .master-single__box {
    width: 100%;
    margin-top: 1rem;
  }
}

.master-single__list-item + .master-single__list-item {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.master-single__list-title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FE9297;
  border-bottom: 1px solid #FE9297;
  border-bottom: 0.0625rem solid #FE9297;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.master-single__list-body {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.master-single__list-name {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}
.master-single__list-name span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: 8px;
  margin-left: 0.5rem;
}

.master-single__list-kana {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #A7A7A7;
}

.master-single__list-text {
  letter-spacing: 0.08em;
}
.master-single__list-text + .master-single__list-text {
  margin-top: 8px;
  margin-top: 0.5rem;
}

/* news-archive */
.news-archive {
  background: #FAF9F8;
}

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

/* privacy */
.privacy {
  background: #FAF9F8;
}

.privacy__text {
  letter-spacing: 0.04em;
}

.privacy__list {
  margin-top: 64px;
  margin-top: 4rem;
}

.privacy__list-item + .privacy__list-item {
  margin-top: 64px;
  margin-top: 4rem;
}

.privacy__list-title {
  font-size: 18px;
  font-size: 1.125rem;
  color: #FE9297;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.privacy__list-text {
  letter-spacing: 0.04em;
  margin-top: 24px;
  margin-top: 1.5rem;
}
.privacy__list-text ul {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.privacy__list-text ul:not(:last-child) {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.privacy__list-text li {
  padding-left: 25px;
  padding-left: 1.5625rem;
  position: relative;
}
.privacy__list-text li::before {
  position: absolute;
  content: "";
  width: 5px;
  width: 0.3125rem;
  height: 5px;
  height: 0.3125rem;
  border-radius: 50%;
  background: #555;
  top: 12px;
  top: 0.75rem;
  left: 8px;
  left: 0.5rem;
}

/* greeting */
.greeting {
  background: #FAF9F8;
}
.greeting .subtitle, .greeting .title {
  text-align: center;
}
.greeting .subtitle {
  line-height: 1.3;
}
.greeting .title {
  margin-top: -10px;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .greeting .title {
    margin-top: 0;
  }
}

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

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

.greeting__texts {
  width: 54%;
}
@media screen and (max-width: 767px) {
  .greeting__texts {
    width: 100%;
    margin-top: 4rem;
  }
}

.greeting__text {
  letter-spacing: 0.04em;
}

.greeting__name {
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .greeting__name {
    text-align: left;
    font-size: 1rem;
    margin-top: 4rem;
  }
}

/* media */
.media .l-section {
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .media .l-section {
    padding: 6.25rem 0;
  }
}
@media screen and (max-width: 767px) {
  .media .subtitle, .media .title {
    text-align: center;
  }
}

.media__list {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .media__list {
    margin-top: 4rem;
  }
}

.media__box {
  margin-top: 80px;
  margin-top: 5rem;
  padding: 16px;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .media__box {
    margin-top: 4rem;
    padding: 0.375rem;
  }
}
.media__box .media-box__text {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .media__box .media-box__text {
    white-space: unset;
  }
}

/* profile */
/* flow */
.flow {
  background: #FFF5F3;
}
.flow .subtitle, .flow .title {
  text-align: center;
}

.flow__header {
  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: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .flow__header {
    display: block;
    margin-top: 4rem;
  }
}

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

.flow__text {
  letter-spacing: 0.04em;
}

.flow__subtext {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  margin-top: 16px;
  margin-top: 1rem;
}

.flow__box {
  width: 47%;
  color: #fff;
  background: #CBB7B0;
  border-radius: 0.5rem;
  padding: 4px;
  padding: 0.25rem;
}
@media screen and (max-width: 767px) {
  .flow__box {
    width: 100%;
    margin-top: 4rem;
  }
}

.flow__box-inner {
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  border-radius: 0.5rem;
  padding: 20px 32px;
  padding: 1.25rem 2rem;
}
@media screen and (max-width: 767px) {
  .flow__box-inner {
    padding: 1.25rem;
  }
}

.flow__box-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .flow__box-title {
    font-size: 1rem;
  }
}

.flow__box-text {
  letter-spacing: 0.04em;
  margin-top: 16px;
  margin-top: 1rem;
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.flow__content {
  background: #fff;
  border-radius: 0.5rem;
  padding: 64px 80px;
  padding: 4rem 5rem;
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .flow__content {
    padding: 1.25rem;
    margin-top: 4rem;
  }
}

.flow__item {
  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;
}
@media screen and (max-width: 767px) {
  .flow__item {
    display: block;
  }
}
.flow__item + .flow__item {
  border-top: 1px solid #CBB7B0;
  border-top: 0.0625rem solid #CBB7B0;
  padding-top: 32px;
  padding-top: 2rem;
  margin-top: 32px;
  margin-top: 2rem;
}

.flow__item-img {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .flow__item-img {
    width: 100%;
    margin-top: 1rem;
  }
}
.flow__item-img img {
  border-radius: 0.5rem;
}

.flow__item-body {
  width: 64%;
}
@media screen and (max-width: 767px) {
  .flow__item-body {
    width: 100%;
  }
}

.flow__item-number {
  font-family: "Marcellus", serif;
  color: #FE9297;
  line-height: 1;
}

.flow__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
  }
}

.flow__item-text {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .flow__item-text {
    margin-top: 1rem;
  }
}

.flow__item-subtext {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .flow__item-subtext {
    margin-top: 1rem;
  }
}

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

.flow__caution {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding-left: 18px;
  padding-left: 1.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__caution {
    font-size: 0.8125rem;
  }
}
.flow__caution::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}
.flow__caution + .flow__caution {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.flow__caution span {
  color: #FE9297;
  background: rgba(254, 146, 151, .1490196078);
}

.flow__btn {
  display: block;
  width: 400px;
  width: 25rem;
  max-width: 100%;
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  font-size: 16px;
  font-size: 1rem;
  background: #A38D78;
  color: #fff;
  letter-spacing: 0.08em;
  padding: 15px 30px 15px 0;
  padding: 0.9375rem 1.875rem 0.9375rem 0;
  margin: 100px auto 0;
  margin: 6.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .flow__btn {
    text-align: left;
    width: 19.5rem;
    line-height: 1.4;
    margin-top: 4rem;
    padding: 0.625rem 2.8125rem;
  }
}
.flow__btn::before {
  background: #fff;
}
.flow__btn span {
  border-color: #fff;
}
.flow__btn span::before, .flow__btn span::after {
  background: url(../img/common/arrow-icon07.png) no-repeat center/contain;
}
.flow__btn:hover {
  color: #A38D78;
}
.flow__btn:hover span {
  border-color: #A38D78;
}
.flow__btn:hover span::before, .flow__btn:hover span::after {
  background: url(../img/common/arrow-icon06.png) no-repeat center/contain;
}

/* info */
.info__unit-wrapper {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .info__unit-wrapper {
    margin-top: 3.75rem;
  }
}

.info__units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 70px;
  gap: 0 4.375rem;
  border-top: 1px solid #D9D9D9;
  border-top: 0.0625rem solid #D9D9D9;
  padding: 64px 0;
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .info__units {
    display: block;
    padding: 3rem 0;
  }
}
.info__units + .info__units {
  border-bottom: 1px solid #D9D9D9;
  border-bottom: 0.0625rem solid #D9D9D9;
}
.info__units + .info__units .info__unit {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

.info__unit {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 2.1875rem);
          flex: 0 1 calc(50% - 2.1875rem);
}
.info__unit:nth-child(2) {
  position: relative;
}
@media screen and (max-width: 767px) {
  .info__unit:nth-child(2) {
    border-top: 0.0625rem solid #D9D9D9;
    padding-top: 2rem;
    margin-top: 2rem;
  }
}
.info__unit:nth-child(2)::before {
  position: absolute;
  content: "";
  left: -35px;
  left: -2.1875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  width: 0.0625rem;
  height: 100%;
  background: #D9D9D9;
}

.info__unit-subtitle {
  font-family: "Marcellus", serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #A38D78;
}

.info__unit-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .info__unit-title {
    font-size: 1.25rem;
    margin-top: 0.9375rem;
  }
}

.info__unit-list {
  margin-top: 16px;
  margin-top: 1rem;
}

.info__unit-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 96px;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .info__unit-list-item {
    gap: 4rem;
  }
}
.info__unit-list-item + .info__unit-list-item {
  margin-top: 2px;
  margin-top: 0.125rem;
}

.info__unit-list-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  min-width: 120px;
  min-width: 7.5rem;
  letter-spacing: 0.04em;
}
.info__unit-list-title span {
  display: inline-block;
  color: #A38D78;
  border: 1px solid #A38D78;
  border: 0.0625rem solid #A38D78;
  border-radius: 3rem;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0 12px;
  padding: 0 0.75rem;
}

.info__unit-list-text {
  letter-spacing: 0.04em;
  position: relative;
}
.info__unit-list-text::before {
  position: absolute;
  content: "";
  width: 64px;
  width: 4rem;
  height: 1px;
  height: 0.0625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -80px;
  left: -5rem;
  background: #D9D9D9;
}
@media screen and (max-width: 767px) {
  .info__unit-list-text::before {
    width: 3rem;
    left: -3.4375rem;
  }
}

.info__unit-check {
  margin-top: 16px;
  margin-top: 1rem;
}

.info__unit-check-item {
  letter-spacing: 0.04em;
  background: url(../img/common/check-icon.png) no-repeat left top 4px/20px;
  background: url(../img/common/check-icon.png) no-repeat left top 0.25rem/1.25rem;
  padding-left: 28px;
  padding-left: 1.75rem;
}
.info__unit-check-item + .info__unit-check-item {
  margin-top: 2px;
  margin-top: 0.125rem;
}

.info__unit-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 70px;
  gap: 1.875rem 4.375rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .info__unit-items {
    display: block;
  }
}

.info__unit-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 2.1875rem);
          flex: 0 1 calc(50% - 2.1875rem);
}
@media screen and (max-width: 767px) {
  .info__unit-item + .info__unit-item {
    margin-top: 1.5rem;
  }
}
.info__unit-item:nth-child(2n) {
  position: relative;
}
.info__unit-item:nth-child(2n)::before {
  position: absolute;
  content: "";
  left: -35px;
  left: -2.1875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  width: 0.0625rem;
  height: 100%;
  background: #D9D9D9;
}

.info__unit-item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .info__unit-item-title {
    font-size: 1rem;
  }
}

.info__unit-item-dates {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.info__unit-item-date {
  letter-spacing: 0.04em;
  background: url(../img/common/calender-icon.png) no-repeat center left/20px;
  background: url(../img/common/calender-icon.png) no-repeat center left/1.25rem;
  padding-left: 28px;
  padding-left: 1.75rem;
}
.info__unit-item-date + .info__unit-item-date {
  margin-top: 2px;
  margin-top: 0.125rem;
}

.info__btn {
  width: 246px;
  width: 15.375rem;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  background: #A38D78;
  letter-spacing: 0.08em;
  padding: 15px 48px;
  padding: 0.9375rem 3rem;
  margin: 100px auto 0;
  margin: 6.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .info__btn {
    margin-top: 3.75rem;
  }
}
.info__btn::before {
  background: #fff;
}
.info__btn span {
  border-color: #fff;
}
.info__btn span::before, .info__btn span::after {
  background: url(../img/common/arrow-icon07.png) no-repeat center/contain;
}
.info__btn:hover {
  color: #A38D78;
}
.info__btn:hover span {
  border-color: #A38D78;
}
.info__btn:hover span::before, .info__btn:hover span::after {
  background: url(../img/common/arrow-icon06.png) no-repeat center/contain;
}

/* service-archive */
.service-archive .service {
  background: none;
}

/* service-single */
.service-single .subtitle, .service-single .title {
  text-align: center;
}

.service-single__video-wrapper {
  width: 800px;
  width: 50rem;
  max-width: 100%;
  margin: 100px auto 0;
  margin: 6.25rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-single__video-wrapper {
    margin-top: 3.75rem;
  }
}
.service-single__video-wrapper::before {
  position: absolute;
  content: "";
}

.service-single__video {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-single__video {
    margin: 0.9375rem 0;
  }
}
.service-single__video iframe, .service-single__video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-single__video-text01, .service-single__video-text02 {
  font-family: "Marcellus", serif;
  font-size: 40px;
  font-size: 2.5rem;
  color: #CBB7B0;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .service-single__video-text01, .service-single__video-text02 {
    font-size: 1.125rem;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    -webkit-transform: unset;
            transform: unset;
    position: relative;
  }
}
.service-single__video-text01::before, .service-single__video-text02::before {
  position: absolute;
  content: "";
  width: 2px;
  width: 0.125rem;
  background: #CBB7B0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .service-single__video-text01::before, .service-single__video-text02::before {
    width: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.service-single__video-text01 {
  left: -85px;
  left: -5.3125rem;
  top: 0;
}
@media screen and (max-width: 767px) {
  .service-single__video-text01 {
    left: unset;
    top: unset;
  }
}
.service-single__video-text01::before {
  height: 268px;
  height: 16.75rem;
  bottom: 180px;
  bottom: 11.25rem;
}
@media screen and (max-width: 767px) {
  .service-single__video-text01::before {
    height: 0.0625rem;
    right: 0;
    top: 50%;
    left: 5.625rem;
  }
}

.service-single__video-text02 {
  right: -85px;
  right: -5.3125rem;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .service-single__video-text02 {
    right: unset;
    bottom: unset;
    text-align: right;
  }
}
.service-single__video-text02::before {
  height: 327px;
  height: 20.4375rem;
  top: 120px;
  top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .service-single__video-text02::before {
    height: 0.0625rem;
    top: 50%;
    left: 0;
    right: 3.75rem;
  }
}

.service-single__units {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .service-single__units {
    margin-top: 3.75rem;
  }
}

.service-single__unit + .service-single__unit {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .service-single__unit + .service-single__unit {
    margin-top: 3.75rem;
  }
}

/* terms */
/* top-about */
.top-about {
  text-align: center;
  position: relative;
  z-index: 2;
}
.top-about .subtitle {
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.top-about .subtitle .gradient-text {
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: rgba(255, 255, 255, .32);
}
.top-about .title .gradient-text {
  color: #fff;
}

.top-about__text {
  color: #fff;
  margin-top: 64px;
  margin-top: 4rem;
}

.top-about__btn {
  margin: 64px auto 0;
  margin: 4rem auto 0;
}

/* top-community */
.top-community {
  background: #FAF9F8;
  position: relative;
  z-index: 1;
}
.top-community::before {
  position: absolute;
  content: "";
  width: 720px;
  width: 45rem;
  height: 800px;
  height: 50rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: url(../img/top/top-community-bg_pc.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-community::before {
    width: 17.5rem;
    height: 55rem;
    background: url(../img/top/top-community-bg_sp.png) no-repeat center/contain;
  }
}
.top-community .subtitle, .top-community .title {
  text-align: center;
}

.top-community__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px;
  gap: 3.375rem;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .top-community__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 3.125rem;
  }
}

.top-community__item-inner {
  display: block;
}
.top-community__item-inner:hover {
  opacity: 1;
}
.top-community__item-inner:hover .top-community__item-title {
  color: #CBB7B0;
}
.top-community__item-inner:hover .top-community__item-title::before {
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
}
.top-community__item-inner:hover .top-community__item-title span {
  background: #CBB7B0;
}
.top-community__item-inner:hover .top-community__item-title span::before, .top-community__item-inner:hover .top-community__item-title span::after {
  background: url(../img/common/arrow-icon07.png) no-repeat center/contain;
}
.top-community__item-inner:hover .top-community__item-title span::before {
  -webkit-animation: transformBefore 0.5s;
          animation: transformBefore 0.5s;
}
.top-community__item-inner:hover .top-community__item-title span::after {
  -webkit-animation: transformAfter 0.5s;
          animation: transformAfter 0.5s;
}

.top-community__item-img {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.top-community__item-img img {
  border-radius: 0.5rem;
}

.top-community__item-number {
  font-family: "Marcellus", serif;
  color: #FE9297;
}
@media screen and (max-width: 767px) {
  .top-community__item-number {
    font-size: 0.875rem;
  }
}

.top-community__item-title {
  text-align: right;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-right: 55px;
  padding-right: 3.4375rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-community__item-title {
    font-size: 1.25rem;
    background-size: 2rem;
    padding-right: 3rem;
  }
}
.top-community__item-title span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  display: inline-block;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  border-radius: 50%;
  background: #FE9297;
  overflow: hidden;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}
.top-community__item-title span::before, .top-community__item-title span::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  width: 1.25rem;
  height: 12px;
  height: 0.75rem;
  right: 10px;
  right: 0.625rem;
  background: url(../img/common/arrow-icon07.png) no-repeat center/contain;
  -webkit-transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, transform 0.5s;
  transition: background 0.5s, transform 0.5s, -webkit-transform 0.5s;
  z-index: 1;
}
.top-community__item-title span::after {
  opacity: 0;
  -webkit-transform: translateX(-2.375rem) translateY(-50%);
          transform: translateX(-2.375rem) translateY(-50%);
}

/* top-mv */
.top-mv {
  padding: 150px 0 85px;
  padding: 9.375rem 0 5.3125rem;
  height: 100vh;
  margin-bottom: 50vh;
  position: relative;
  z-index: 2;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
@media screen and (max-width: 767px) {
  .top-mv {
    padding: 6.875rem 0 1.25rem;
    margin-bottom: 20vh;
  }
}
.top-mv.active {
  opacity: 0;
}

.top-mv__scroll {
  position: absolute;
  left: 45px;
  left: 2.8125rem;
  bottom: 0;
  font-family: "Marcellus", serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  padding-bottom: 116px;
  padding-bottom: 7.25rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.top-mv__scroll::after {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 100px;
  height: 6.25rem;
  background: #fff;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.top-mv__subtitle {
  text-align: right;
  font-family: "Marcellus", serif;
  font-size: 64px;
  font-size: 4rem;
  line-height: 1.4;
  background: linear-gradient(100.69deg, #FFB0B4 0%, #FED4CB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .top-mv__subtitle {
    font-size: 1.5rem;
  }
}

.top-mv__title {
  font-size: 80px;
  font-size: 5rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-shadow: 0px 0px 16px #FFFFFF;
  margin-top: 105px;
  margin-top: 6.5625rem;
}
@media screen and (max-width: 767px) {
  .top-mv__title {
    font-size: 2.5rem;
    margin-top: 11.25rem;
  }
}

.top-mv__text {
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-size: 1.25rem;
  text-shadow: 0px 0px 16px #FFFFFF;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-mv__text {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.top-mv__news {
  position: absolute;
  right: 50px;
  right: 3.125rem;
  bottom: 40px;
  bottom: 2.5rem;
  z-index: 2;
  width: 467px;
  width: 29.1875rem;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid #A7A7A7;
  border: 0.0625rem solid #A7A7A7;
  padding: 18px 32px;
  padding: 1.125rem 2rem;
}
@media screen and (max-width: 767px) {
  .top-mv__news {
    position: static;
    margin-top: 2.1875rem;
    padding: 0.8125rem 1rem;
  }
}
.top-mv__news:hover {
  opacity: 1;
}

.top-mv__news-title {
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-size: 1.5rem;
  color: #6F6F6F;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-mv__news-title {
    font-size: 1rem;
  }
}

.top-mv__news-body {
  width: 80%;
  padding-left: 32px;
  padding-left: 2rem;
  margin-left: 32px;
  margin-left: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-mv__news-body {
    padding-left: 1rem;
    margin-left: 1rem;
  }
}
.top-mv__news-body::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 80px;
  height: 5rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #A7A7A7;
}
@media screen and (max-width: 767px) {
  .top-mv__news-body::before {
    height: 2.8125rem;
  }
}

@media screen and (max-width: 767px) {
  .top-mv__news-item:nth-child(n+2) {
    display: none;
  }
}

.top-mv__news-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0;
  padding: 0.375rem 0;
}
@media screen and (max-width: 767px) {
  .top-mv__news-item-inner {
    display: block;
    padding: 0 0 0.3125rem;
    line-height: 1.4;
  }
}
.top-mv__news-item-inner:hover {
  opacity: 1;
}
.top-mv__news-item-inner:hover .top-mv__news-item-title {
  color: #FE9297;
}

.top-mv__news-item-date {
  display: inline-block;
  font-family: "Marcellus", serif;
  font-size: 10px;
  font-size: 0.625rem;
  color: #A7A7A7;
  min-width: 70px;
  min-width: 4.375rem;
}

.top-mv__news-item-title {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
@media screen and (max-width: 767px) {
  .top-mv__news-item-title {
    font-size: 0.75rem;
  }
}

/* top-news */
.top-news {
  background: #fff;
}
.top-news .l-section {
  padding-bottom: 0;
}

.top-news__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .top-news__header {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .top-news__btn {
    margin: 4rem auto 0;
  }
}

.top-news__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 23px;
  gap: 1.4375rem;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .top-news__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .top-news__item {
    padding-bottom: 1.5rem;
    border-bottom: 0.0625rem solid #D9D9D9;
  }
  .top-news__item + .top-news__item {
    margin-top: 1.5rem;
  }
}

.top-news__item-inner {
  display: block;
}
@media screen and (max-width: 767px) {
  .top-news__item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.top-news__item-inner:hover {
  opacity: 1;
}
.top-news__item-inner:hover .top-news__item-title {
  color: #FE9297;
}
.top-news__item-inner:hover .top-news__item-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.top-news__item-img {
  width: 100%;
  padding-top: 66.6666666667%;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .top-news__item-img {
    width: 36%;
    padding-top: 0;
  }
}
.top-news__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .top-news__item-img img {
    position: static;
    height: auto;
    border-radius: 0.25rem;
  }
}

@media screen and (max-width: 767px) {
  .top-news__item-body {
    width: 59%;
  }
}

.top-news__item-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 16px;
  margin-top: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
@media screen and (max-width: 767px) {
  .top-news__item-title {
    font-size: 0.875rem;
    margin-top: 0;
  }
}

.top-news__item-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 33px;
  gap: 2.0625rem;
  font-size: 12px;
  font-size: 0.75rem;
  color: #A7A7A7;
  line-height: 1;
  margin-top: 16px;
  margin-top: 1rem;
}

.top-news__item-category span {
  display: inline-block;
  letter-spacing: 0.04em;
  position: relative;
}
.top-news__item-category span::after {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -17px;
  right: -1.0625rem;
  background: #A7A7A7;
}

.top-news__item-date {
  display: inline-block;
  letter-spacing: 0.04em;
}

/* top-profile */
.top-profile {
  background: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-profile .subtitle, .top-profile .title {
    text-align: center;
  }
}
.top-profile .l-section {
  padding-bottom: 560px;
  padding-bottom: 35rem;
}
@media screen and (max-width: 767px) {
  .top-profile .l-section {
    padding-bottom: 20rem;
  }
}

.top-profile__content {
  width: 560px;
  width: 35rem;
  max-width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .top-profile__content {
    width: 100%;
    margin-left: 0;
  }
}

.top-profile__img01 {
  position: absolute;
  top: 213px;
  top: 13.3125rem;
  left: 0;
  margin-left: calc(50% - 50vw);
  width: 720px;
  width: 45rem;
  max-width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-profile__img01 {
    position: static;
    width: 95vw;
    max-width: unset;
    margin-top: 4rem;
  }
}

.top-profile__subtitle {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .top-profile__subtitle {
    text-align: center;
    font-size: 1.25rem;
  }
}

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

.top-profile__btn {
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .top-profile__btn {
    margin: 3rem auto 0;
  }
}

.top-profile__img02, .top-profile__img03 {
  position: absolute;
  max-width: 100%;
}

.top-profile__img02 {
  width: 320px;
  width: 20rem;
  right: 320px;
  right: 20rem;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .top-profile__img02 {
    width: 10rem;
    right: unset;
    left: 1.25rem;
    bottom: 3.75rem;
  }
}

.top-profile__img03 {
  width: 240px;
  width: 15rem;
  right: 0;
  bottom: 428px;
  bottom: 26.75rem;
}
@media screen and (max-width: 767px) {
  .top-profile__img03 {
    width: 7.5rem;
    bottom: 0;
  }
}

/* top-video */
.top-video {
  background: url(../img/top/top-mv-bg_pc.png) no-repeat center/cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-transform: scale(1);
          transform: scale(1);
  overflow: hidden;
  z-index: -1;
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top-video {
    background: url(../img/top/top-mv-bg_sp.png) no-repeat center/cover;
  }
}
.top-video::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(203, 183, 176, .8);
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}
.top-video.active::before {
  opacity: 1;
}
.top-video video {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100dvw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1) translate(-50%);
          transform: scale(1) translate(-50%);
}

.top-video__inner {
  position: fixed;
  bottom: 0;
  left: 50%;
  border-top-right-radius: 100%;
  border-top-left-radius: 100%;
  width: 640px;
  width: 40rem;
  height: 680px;
  height: 42.5rem;
  overflow: hidden;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  opacity: 1;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: width, height;
}
@media screen and (max-width: 767px) {
  .top-video__inner {
    width: 18.75rem;
    height: 35rem;
    height: 87%;
    border-radius: 9.375rem 9.375rem 0 0;
  }
}
/*# sourceMappingURL=style.css.map */
