@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "Noto Sans JP", sans-serif;
  color: #242424;
  font-weight: 500;
  line-height: 1.6;
}

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

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

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@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: 1023px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

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

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

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

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

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

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

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

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

button {
  padding: 0;
}

.l-inner {
  width: 100%;
  max-width: 1066px;
  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;
  }
}

/* footer */
.footer {
  text-align: center;
  padding: 40px 0 30px;
  padding: 2.5rem 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 1.875rem;
  }
}

.footer__link {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.footer__copyright {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 1.25rem;
  }
}

/* header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  height: 5rem;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.75rem;
  }
}
.header .l-inner {
  max-width: 1270px;
  max-width: 79.375rem;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header .l-inner {
    padding: 0 0.625rem;
  }
}

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

.header__logo {
  width: 185px;
  width: 11.5625rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 7.5rem;
  }
}
.header__logo a {
  display: block;
}

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

.header__btn:first-child a {
  background: #fff;
  border: 1px solid #242424;
  border: 0.0625rem solid #242424;
}
@media screen and (max-width: 767px) {
  .header__btn:first-child a {
    width: 7.5rem;
  }
}
.header__btn:nth-child(2) {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .header__btn:nth-child(2) {
    margin-left: 0.625rem;
  }
}
.header__btn:nth-child(2) a {
  color: #fff;
  background: #B6392A;
  border: 1px solid #B6392A;
  border: 0.0625rem solid #B6392A;
}
@media screen and (max-width: 767px) {
  .header__btn:nth-child(2) a {
    width: 5.625rem;
  }
}
.header__btn a {
  text-align: center;
  display: block;
  width: 182px;
  width: 11.375rem;
  max-width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 6.25rem;
  padding: 10px 0;
  padding: 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .header__btn a {
    font-size: 0.75rem;
  }
}

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

/* title */
.title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 56px;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 2rem;
  }
}

/* contact */
.contact {
  background: url(../img/contact-bg01.png) no-repeat center/cover;
  padding: 55px 0 80px;
  padding: 3.4375rem 0 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 2.5rem 0 3.75rem;
  }
}

.contact__subtitle {
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -45px;
  top: -2.8125rem;
  width: 326px;
  width: 20.375rem;
  max-width: 100%;
  height: 101px;
  height: 6.3125rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #B6392A;
  background: url(../img/contact-bg02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .contact__subtitle {
    top: -1.5625rem;
    width: 12.5rem;
    height: 3.75rem;
    font-size: 1.5rem;
  }
}
.contact__subtitle span {
  font-size: 48px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .contact__subtitle span {
    font-size: 1.75rem;
  }
}

.contact__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 1.75rem;
  }
}

.contact__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 876px;
  width: 54.75rem;
  max-width: 100%;
  gap: 0 64px;
  gap: 0 4rem;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .contact__items {
    display: block;
    margin-top: 1.25rem;
  }
}

.contact__item {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 2rem);
          flex: 0 1 calc(50% - 2rem);
  background: #fff;
  padding: 32px 20px 40px;
  padding: 2rem 1.25rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .contact__item {
    padding: 1.875rem 1.25rem;
  }
  .contact__item + .contact__item {
    margin-top: 1.25rem;
  }
}
.contact__item:first-child .contact__item-title {
  color: #B6392A;
}
.contact__item:first-child .contact__item-btn {
  background: #B6392A;
  color: #fff;
  border: 2px solid #B6392A;
  border: 0.125rem solid #B6392A;
}
.contact__item:first-child .contact__item-btn::after {
  background: url(../img/white-arrow.png) no-repeat center/contain;
}
.contact__item:nth-child(2) .contact__item-btn {
  border: 2px solid #242424;
  border: 0.125rem solid #242424;
}
.contact__item:nth-child(2) .contact__item-btn::after {
  background: url(../img/black-arrow.png) no-repeat center/contain;
}

.contact__item-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact__item-title {
    font-size: 1.25rem;
  }
}

.contact__item-text {
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .contact__item-text {
    font-size: 0.9375rem;
  }
}

.contact__item-btn {
  display: block;
  width: 316px;
  width: 19.75rem;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 6.25rem;
  margin: 14px auto 0;
  margin: 0.875rem auto 0;
  padding: 17px 20px;
  padding: 1.0625rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__item-btn {
    font-size: 1.25rem;
  }
}
.contact__item-btn::after {
  position: absolute;
  content: "";
  width: 12px;
  width: 0.75rem;
  height: 18px;
  height: 1.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 35px;
  right: 2.1875rem;
}

/* example */
.example__header {
  background: #F0F0F0;
  padding: 72px 0;
  padding: 4.5rem 0;
}
@media screen and (max-width: 767px) {
  .example__header {
    padding: 3.75rem 0;
  }
}

.example__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .example__title {
    font-size: 1.25rem;
  }
}
.example__title span {
  font-size: 56px;
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .example__title span {
    font-size: 2rem;
    line-height: 1.3;
  }
}
.example__title span span {
  color: #AE8859;
}

.example__body {
  background: #fff;
  margin-top: 16px;
  margin-top: 1rem;
  padding-left: 228px;
  padding-left: 14.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .example__body {
    padding-left: 0;
    padding-top: 6.25rem;
  }
}
.example__body::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 433px;
  width: 27.0625rem;
  background: url(../img/example-bg01.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .example__body::before {
    height: 6.25rem;
    width: 100%;
    background: url(../img/example-bg01.png) no-repeat left top/cover;
  }
}

.example__heading {
  font-size: 42px;
  font-size: 2.625rem;
  background: -webkit-gradient(linear, right top, left top, from(#B6392A), to(rgba(182, 57, 42, 0)));
  background: linear-gradient(to left, #B6392A 0%, rgba(182, 57, 42, 0) 100%);
}
@media screen and (max-width: 767px) {
  .example__heading {
    font-size: 1.5rem;
    padding-left: 0.9375rem;
  }
}
.example__heading span {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 5px;
  margin: 0 0.3125rem;
}
@media screen and (max-width: 767px) {
  .example__heading span {
    font-size: 1.125rem;
  }
}

.example__list {
  padding: 26px 0 48px;
  padding: 1.625rem 0 3rem;
}
@media screen and (max-width: 767px) {
  .example__list {
    padding: 0.9375rem 0.9375rem 1.875rem;
  }
}

.example__list-item {
  font-size: 20px;
  font-size: 1.25rem;
  background: url(../img/check-icon02.png) no-repeat left top 2px/31px;
  background: url(../img/check-icon02.png) no-repeat left top 0.125rem/1.9375rem;
  padding-left: 39px;
  padding-left: 2.4375rem;
}
@media screen and (max-width: 767px) {
  .example__list-item {
    font-size: 1rem;
    padding-left: 1.5625rem;
    background-size: 1.25rem;
  }
}
.example__list-item + .example__list-item {
  margin-top: 6px;
  margin-top: 0.375rem;
}
.example__list-item span {
  color: #B6392A;
  font-weight: 700;
}

.example__footer {
  padding: 100px 0 80px;
  padding: 6.25rem 0 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .example__footer {
    padding: 3.75rem 0;
  }
}
.example__footer::before {
  position: absolute;
  content: "";
  width: 300px;
  width: 18.75rem;
  height: 45px;
  height: 2.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -15px;
  top: -0.9375rem;
  background: url(../img/example-arrow01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .example__footer::before {
    width: 12.5rem;
    height: 1.875rem;
    top: -0.625rem;
  }
}

.example__subtitle {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 37px;
  font-size: 2.3125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .example__subtitle {
    font-size: 1.5rem;
  }
}
.example__subtitle span {
  font-size: 56px;
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .example__subtitle span {
    font-size: 2rem;
    line-height: 1.3;
  }
}
.example__subtitle span span {
  color: #B6392A;
}

.example__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 250px;
  gap: 0 15.625rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .example__items {
    display: block;
    margin-top: 1.25rem;
  }
}

.example__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 7.8125rem);
          flex: 0 1 calc(50% - 7.8125rem);
}
.example__item:first-child .example__item-title {
  background: #696969;
}
.example__item:first-child .example__item-body {
  background: #F3F3F3;
  border: 1px solid #696969;
  border: 0.0625rem solid #696969;
}
.example__item:nth-child(2) {
  position: relative;
}
@media screen and (max-width: 767px) {
  .example__item:nth-child(2) {
    margin-top: 6.25rem;
  }
}
.example__item:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 250px;
  width: 15.625rem;
  height: 55px;
  height: 3.4375rem;
  top: 110px;
  top: 6.875rem;
  left: -250px;
  left: -15.625rem;
  background: url(../img/example-arrow02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .example__item:nth-child(2)::before {
    width: 6.25rem;
    height: 1.5625rem;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    top: -3.875rem;
  }
}
.example__item:nth-child(2) .example__item-title {
  background: #AE8859;
}
.example__item:nth-child(2) .example__item-body {
  border: 1px solid #AE8859;
  border: 0.0625rem solid #AE8859;
}

.example__item-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  padding: 16px;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .example__item-title {
    font-size: 1.25rem;
    padding: 0.625rem;
  }
}

.example__item-body {
  padding: 32px 22px;
  padding: 2rem 1.375rem;
}
@media screen and (max-width: 767px) {
  .example__item-body {
    padding: 1.5625rem 0.9375rem;
  }
}

.example__item-list-item {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  padding-left: 1.2em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .example__item-list-item {
    font-size: 1rem;
  }
}
.example__item-list-item::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.example__item-list-item + .example__item-list-item {
  margin-top: 13px;
  margin-top: 0.8125rem;
}
.example__item-list-item span {
  color: #B6392A;
  font-weight: 700;
}
.example__item-list-item.red::before {
  color: #B6392A;
}

.example__item-img {
  width: 227px;
  width: 14.1875rem;
  max-width: 100%;
  margin: 28px auto 0;
  margin: 1.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .example__item-img {
    margin-top: 1.25rem;
  }
}

.example__subtext {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 170px;
  top: 10.625rem;
  text-align: center;
  width: 232px;
  width: 14.5rem;
  height: 162px;
  height: 10.125rem;
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.08em;
  line-height: 1.2;
  background: url(../img/example-bg02.png) no-repeat center top/contain;
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .example__subtext {
    position: static;
    -webkit-transform: unset;
            transform: unset;
    width: 13.125rem;
    height: 8.75rem;
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0.625rem auto 0;
  }
}
.example__subtext span {
  font-size: 48px;
  font-size: 3rem;
  line-height: 0.8;
}
@media screen and (max-width: 767px) {
  .example__subtext span {
    font-size: 2rem;
  }
}

.example__box {
  background: #F7E9E7;
  margin-top: 48px;
  margin-top: 3rem;
  padding: 48px 20px;
  padding: 3rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .example__box {
    margin-top: 2.1875rem;
    padding: 1.5625rem 1.25rem;
  }
}

.example__box-text {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 767px) {
  .example__box-text {
    text-align: left;
    font-size: 1.125rem;
  }
}
.example__box-text span {
  color: #B6392A;
  font-weight: 700;
}
.example__box-text .large {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .example__box-text .large {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

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

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

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

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

.faq__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  background: #F4F4F4;
  padding: 20px 50px 20px 34px;
  padding: 1.25rem 3.125rem 1.25rem 2.125rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__item-title {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem 1.25rem 1.25rem;
  }
}
.faq__item-title::after, .faq__item-title::before {
  position: absolute;
  content: "";
  width: 28px;
  width: 1.75rem;
  height: 1px;
  height: 0.0625rem;
  background: #000;
  top: 40px;
  top: 2.5rem;
  right: 26px;
  right: 1.625rem;
}
@media screen and (max-width: 767px) {
  .faq__item-title::after, .faq__item-title::before {
    width: 1.25rem;
    right: 0.9375rem;
    top: 2.1875rem;
  }
}
.faq__item-title::before {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__item-title.active::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq__item-title span {
  display: inline-block;
  margin-top: -3px;
  margin-top: -0.1875rem;
  margin-right: 26px;
  margin-right: 1.625rem;
}
@media screen and (max-width: 767px) {
  .faq__item-title span {
    margin-right: 0.625rem;
  }
}

.faq__item-text {
  display: none;
  padding: 26px 94px 0 32px;
  padding: 1.625rem 5.875rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .faq__item-text {
    font-size: 0.9375rem;
    padding: 1.25rem 1.25rem 0;
  }
}

/* message */
.message {
  background: url(../img/message-bg.png) no-repeat center/cover;
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .message {
    padding: 3.75rem 0;
  }
}

.message__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .message__subtitle {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
}

.message__inner {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .message__inner {
    display: block;
    margin-top: 2.5rem;
  }
}

.message__img {
  width: 248px;
  width: 15.5rem;
  margin-left: 96px;
  margin-left: 6rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .message__img {
    margin: 0 auto;
  }
}
.message__img::after {
  position: absolute;
  content: "";
  width: 240px;
  width: 15rem;
  height: 331px;
  height: 20.6875rem;
  background: linear-gradient(115.7deg, rgba(228, 211, 182, .5) 11.07%, rgba(179, 131, 59, .5) 78.84%);
  right: -18px;
  right: -1.125rem;
  bottom: -18px;
  bottom: -1.125rem;
  z-index: -1;
}

.message__body {
  width: 580px;
  width: 36.25rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .message__body {
    width: 100%;
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .message__text {
    font-size: 0.9375rem;
  }
}

.message__subtext {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .message__subtext {
    font-size: 1.125rem;
  }
}

.message__sign {
  width: 283px;
  width: 17.6875rem;
  margin-top: -15px;
  margin-top: -0.9375rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .message__sign {
    width: 12.5rem;
    margin-top: 0;
  }
}

/* mv */
.mv {
  background: #F4F4F4;
  padding: 170px 0 95px;
  padding: 10.625rem 0 5.9375rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 5rem 0 3.75rem;
  }
}
.mv::before {
  position: absolute;
  content: "";
  width: 870px;
  width: 54.375rem;
  height: 870px;
  height: 54.375rem;
  top: 0;
  right: -15px;
  right: -0.9375rem;
  background: url(../img/mv-bg01.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .mv::before {
    width: 25rem;
    height: 25rem;
    right: -6.875rem;
  }
}
.mv .l-inner {
  max-width: 1270px;
  max-width: 79.375rem;
}
@media screen and (max-width: 767px) {
  .mv .l-inner {
    padding: 0 0.9375rem;
  }
}

.mv__heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .mv__heading {
    line-height: 1.3;
  }
}

.mv__subtitle {
  display: block;
  font-size: 37px;
  font-size: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .mv__subtitle {
    font-size: 1.375rem;
  }
}
.mv__subtitle span {
  font-size: 48px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .mv__subtitle span {
    font-size: 1.75rem;
  }
}

.mv__title {
  display: block;
  font-size: 56px;
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 2rem;
  }
}
.mv__title span {
  color: #B6392A;
}
.mv__title .large {
  font-size: 92px;
  font-size: 5.75rem;
}
@media screen and (max-width: 767px) {
  .mv__title .large {
    font-size: 3rem;
  }
}
.mv__title .small {
  font-size: 52px;
  font-size: 3.25rem;
}
@media screen and (max-width: 767px) {
  .mv__title .small {
    font-size: 1.75rem;
  }
}

.mv__list {
  display: inline-block;
  padding: 25px 55px 25px 0;
  padding: 1.5625rem 3.4375rem 1.5625rem 0;
  margin-top: 30px;
  margin-top: 1.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv__list {
    padding: 1.25rem 0;
    margin-top: 1.25rem;
  }
}
.mv__list::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background: url(../img/mv-bg02.png) no-repeat center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .mv__list::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: linear-gradient(94.04deg, #AE8859 13.31%, #CEBD91 102.16%);
  }
}

.mv__list-item {
  font-size: 22px;
  font-size: 1.375rem;
  color: #fff;
  letter-spacing: -0.05em;
  background: url(../img/check-icon.png) no-repeat left top 5px/24px;
  background: url(../img/check-icon.png) no-repeat left top 0.3125rem/1.5rem;
  padding-left: 36px;
  padding-left: 2.25rem;
}
@media screen and (max-width: 767px) {
  .mv__list-item {
    font-size: 1.125rem;
    background: url(../img/check-icon.png) no-repeat left top 0.5rem/1.125rem;
    padding-left: 1.5625rem;
  }
}
.mv__list-item + .mv__list-item {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.mv__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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .mv__footer {
    display: block;
    margin-top: 1.5625rem;
  }
}

.mv__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .mv__items {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.mv__item {
  width: 270px;
  width: 16.875rem;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .mv__btn-wrapper {
    margin-top: 1.25rem;
  }
}

.mv__text {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 1.25rem;
  }
}

.mv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .mv__btns {
    display: block;
  }
}

.mv__btn:first-child a {
  color: #fff;
  background: #B6392A;
  border: 2px solid #B6392A;
  border: 0.125rem solid #B6392A;
}
.mv__btn:first-child a::after {
  background: url(../img/white-arrow.png) no-repeat center/contain;
}
.mv__btn:nth-child(2) {
  margin-left: 24px;
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .mv__btn:nth-child(2) {
    margin-left: 0;
    margin-top: 0.625rem;
  }
}
.mv__btn:nth-child(2) a {
  border: 2px solid #242424;
  border: 0.125rem solid #242424;
  background: #fff;
}
.mv__btn:nth-child(2) a::after {
  background: url(../img/black-arrow.png) no-repeat center/contain;
}
.mv__btn a {
  text-align: center;
  display: block;
  border-radius: 6.25rem;
  width: 290px;
  width: 18.125rem;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 17px 10px;
  padding: 1.0625rem 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__btn a {
    font-size: 1.125rem;
    margin: 0 auto;
  }
}
.mv__btn a::after {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 19px;
  height: 1.1875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
  right: 1.125rem;
}
@media screen and (max-width: 767px) {
  .mv__btn a::after {
    width: 1rem;
    height: 0.9375rem;
  }
}

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

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

.program__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .program__item {
    display: block;
  }
}
.program__item + .program__item {
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .program__item:first-child .program__item-subtitle {
    background: #CCB598;
  }
}
.program__item:first-child .program__item-subtitle::before {
  top: 0;
  background: url(../img/program-bg01.png) no-repeat center top/contain;
}
.program__item:first-child .program__item-icon {
  width: 80px;
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .program__item:nth-child(2) .program__item-subtitle {
    background: #B2834A;
  }
}
.program__item:nth-child(2) .program__item-subtitle::before {
  top: -20px;
  top: -1.25rem;
  background: url(../img/program-bg02.png) no-repeat center/contain;
}
.program__item:nth-child(2) .program__item-icon {
  width: 87px;
  width: 5.4375rem;
}
@media screen and (max-width: 767px) {
  .program__item:nth-child(3) .program__item-subtitle {
    background: #826036;
  }
}
.program__item:nth-child(3) .program__item-subtitle::before {
  top: -30px;
  top: -1.875rem;
  background: url(../img/program-bg03.png) no-repeat center/contain;
}
.program__item:nth-child(3) .program__item-body {
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
}
.program__item:nth-child(3) .program__item-icon {
  width: 63px;
  width: 3.9375rem;
}

.program__item-subtitle {
  text-align: center;
  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: 83px;
  width: 5.1875rem;
  min-width: 83px;
  min-width: 5.1875rem;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .program__item-subtitle {
    width: 100%;
    font-size: 1.5rem;
    letter-spacing: unset;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    padding: 0.3125rem;
  }
}
.program__item-subtitle::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 384px;
  height: 24rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .program__item-subtitle::before {
    display: none;
  }
}
.program__item-subtitle span {
  display: inline-block;
  margin-right: 5px;
  margin-right: 0.3125rem;
  margin-top: -5px;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .program__item-subtitle span {
    margin: 0;
  }
}

.program__item-body {
  width: 100%;
  background: #fff;
  padding: 40px 58px 48px 36px;
  padding: 2.5rem 3.625rem 3rem 2.25rem;
}
@media screen and (max-width: 767px) {
  .program__item-body {
    padding: 1.5625rem 1.25rem;
  }
}

.program__item-title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .program__item-title {
    font-size: 1.25rem;
  }
}

.program__item-box {
  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;
  background: #F7F3EE;
  min-height: 168px;
  min-height: 10.5rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 32px 134px 20px 40px;
  padding: 2rem 8.375rem 1.25rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .program__item-box {
    display: block;
    min-height: unset;
    margin-top: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .program__item-list {
    margin-top: 1.25rem;
  }
}

.program__item-list-item {
  padding-left: 15px;
  padding-left: 0.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .program__item-list-item {
    font-size: 0.9375rem;
  }
}
.program__item-list-item::before {
  position: absolute;
  content: "";
  width: 7px;
  width: 0.4375rem;
  height: 7px;
  height: 0.4375rem;
  background: #242424;
  border-radius: 50%;
  left: 0;
  top: 10px;
  top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .program__item-list-item::before {
    width: 0.375rem;
    height: 0.375rem;
    top: 0.5625rem;
  }
}

.program__item-icon {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .program__item-icon {
    margin: 0 auto;
  }
}

.program__item-caution {
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.program__box {
  background: url(../img/program-bg04.png) no-repeat center/cover;
  margin-top: 56px;
  margin-top: 3.5rem;
  padding: 56px 47px;
  padding: 3.5rem 2.9375rem;
}
@media screen and (max-width: 767px) {
  .program__box {
    margin-top: 2.5rem;
    padding: 1.875rem 1.25rem;
  }
}

.program__list-item {
  font-size: 24px;
  font-size: 1.5rem;
  background: url(../img/program-arrow.png) no-repeat left top 20px/29px;
  background: url(../img/program-arrow.png) no-repeat left top 1.25rem/1.8125rem;
  padding-left: 43px;
  padding-left: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .program__list-item {
    font-size: 1.125rem;
    background: url(../img/program-arrow.png) no-repeat left top 0.625rem/1.25rem;
    padding-left: 1.875rem;
  }
}
.program__list-item + .program__list-item {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.program__list-item span {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #B6392A;
}
@media screen and (max-width: 767px) {
  .program__list-item span {
    font-size: 1.5rem;
  }
}

/* strength */
.strength {
  background: url(../img/strength-bg.png) no-repeat center/cover;
  padding: 80px 0 120px;
  padding: 5rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .strength {
    padding: 3.75rem 0 5.625rem;
  }
}

.strength__items {
  margin-top: 95px;
  margin-top: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .strength__items {
    margin-top: 3.75rem;
  }
}

.strength__item {
  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;
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px #DCDCDC;
          box-shadow: 0px 0px 15px #DCDCDC;
  padding: 44px 46px 48px 40px;
  padding: 2.75rem 2.875rem 3rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .strength__item {
    display: block;
    padding: 2.5rem 1.25rem 1.875rem;
    position: relative;
  }
}
.strength__item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.strength__item:nth-child(odd) .strength__item-img {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .strength__item:nth-child(odd) .strength__item-img {
    margin-top: 0;
  }
}
.strength__item:nth-child(odd) .strength__item-img::after {
  right: -19px;
  right: -1.1875rem;
}
@media screen and (max-width: 767px) {
  .strength__item:nth-child(odd) .strength__item-img::after {
    right: -0.625rem;
  }
}
.strength__item:nth-child(even) .strength__item-img::after {
  left: -19px;
  left: -1.1875rem;
}
@media screen and (max-width: 767px) {
  .strength__item:nth-child(even) .strength__item-img::after {
    left: unset;
    right: -0.625rem;
  }
}
.strength__item + .strength__item {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .strength__item + .strength__item {
    margin-top: 3.75rem;
  }
}

.strength__item-body {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .strength__item-body {
    width: 100%;
    position: static;
    margin-top: 2.5rem;
  }
}

.strength__item-number {
  position: absolute;
  font-family: "Noto Serif JP", serif;
  font-size: 64px;
  font-size: 4rem;
  font-style: italic;
  font-weight: 600;
  top: -110px;
  top: -6.875rem;
  left: 20px;
  left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .strength__item-number {
    font-size: 3rem;
    top: -2.8125rem;
    left: 2.5rem;
  }
}
.strength__item-number::before {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 52px;
  height: 3.25rem;
  top: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
  left: -1.25rem;
  background: url(../img/strength-border.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .strength__item-number::before {
    width: 0.9375rem;
    height: 2.1875rem;
    top: 50%;
    left: -0.9375rem;
  }
}

.strength__item-title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .strength__item-title {
    font-size: 1.5rem;
  }
}

.strength__item-text {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .strength__item-text {
    font-size: 0.9375rem;
    margin-top: 0.9375rem;
  }
}

.strength__item-img {
  width: 46%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .strength__item-img {
    width: 100%;
  }
}
.strength__item-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(115.7deg, rgba(228, 211, 182, .5) 11.07%, rgba(179, 131, 59, .5) 78.84%);
  bottom: -23px;
  bottom: -1.4375rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .strength__item-img::after {
    bottom: -0.9375rem;
  }
}

/* support */
.support {
  text-align: center;
  background: url(../img/support-bg01.png) no-repeat center/cover;
  padding: 80px 0 90px;
  padding: 5rem 0 5.625rem;
}
@media screen and (max-width: 767px) {
  .support {
    padding: 8.125rem 0 3.75rem;
  }
}

.support--top {
  padding: 90px 0 105px;
  padding: 5.625rem 0 6.5625rem;
}
@media screen and (max-width: 767px) {
  .support--top {
    padding: 8.125rem 0 3.75rem;
  }
}
.support--top .support__subtext {
  top: -50px;
  top: -3.125rem;
}
@media screen and (max-width: 767px) {
  .support--top .support__subtext {
    top: -8.125rem;
  }
}

.support__inner {
  position: relative;
}

.support__subtext {
  position: absolute;
  left: 0;
  top: -80px;
  top: -5rem;
  width: 174px;
  width: 10.875rem;
  height: 198px;
  height: 12.375rem;
  font-size: 32px;
  font-size: 2rem;
  color: #B6392A;
  font-weight: 700;
  line-height: 1.15;
  background: url(../img/support-bg02.png) no-repeat center/contain;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .support__subtext {
    top: -8.125rem;
    width: 6.25rem;
    height: 7.5rem;
    font-size: 1.125rem;
  }
}
.support__subtext span {
  font-size: 48px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .support__subtext span {
    font-size: 1.5rem;
  }
}

.support__title {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .support__title {
    font-size: 1.5rem;
  }
}
.support__title span {
  font-size: 61px;
  font-size: 3.8125rem;
  color: #B6392A;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .support__title span {
    font-size: 2rem;
  }
}
.support__title span::after {
  position: absolute;
  content: "";
  width: 105%;
  height: 24px;
  height: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: #FCF3A8;
  z-index: -1;
}

.support__text {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .support__text {
    text-align: left;
    font-size: 0.9375rem;
  }
}

/* voice */
.voice {
  background: url(../img/voice-bg.png) no-repeat center/cover;
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .voice {
    padding: 3.75rem 0;
  }
}

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

.voice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px #D1CDC9;
          box-shadow: 0px 0px 15px #D1CDC9;
  padding: 38px 32px 40px 24px;
  padding: 2.375rem 2rem 2.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .voice__item {
    display: block;
    padding: 2.5rem 1.25rem;
  }
}
.voice__item + .voice__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .voice__item + .voice__item {
    margin-top: 1.25rem;
  }
}

.voice__item-img {
  width: 121px;
  width: 7.5625rem;
  min-width: 121px;
  min-width: 7.5625rem;
}
@media screen and (max-width: 767px) {
  .voice__item-img {
    margin: 0 auto;
  }
}
.voice__item-img img {
  border-radius: 50%;
}

.voice__item-body {
  width: 100%;
  margin-left: 19px;
  margin-left: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .voice__item-body {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.voice__item-title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #AE8859;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .voice__item-title {
    font-size: 1.25rem;
  }
}

.voice__item-info {
  color: #696969;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .voice__item-info {
    font-size: 0.9375rem;
  }
}

.voice__item-text {
  border-top: 1px solid #AE8859;
  border-top: 0.0625rem solid #AE8859;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding-top: 16px;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .voice__item-text {
    font-size: 0.9375rem;
  }
}
/*# sourceMappingURL=style.css.map */
