@charset "UTF-8";
/* 非表示設定 */
.u-desktop {
  display: block;
}

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

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

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

@media screen and (max-width: 1023px) {
  .u-lg {
    display: block;
  }
}
.u-mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
  .mobile {
    display: none;
  }
}
/* リキッドレイアウト対応 */
/* PCは2000px,SPは765pxを基準。1050px~768pxまで,767px~は全体的に縮小。 */
html {
  font-size: 16px;
}

@media (max-width: 1000px) {
  html {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.1333333333vw;
  }
}
/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}
/* リセットCSS
---------------------------------------------------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.66;
  color: #55535e;
  background-color: #fff;
  font-family: "メイリオ", "Meiryo", "MS ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
}

h2,
h3,
h4 {
  font-weight: 400;
}

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

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  vertical-align: bottom;
}

picture {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  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);
}

/* フォームリセット */
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;
}

/* CSS
---------------------------------------------------------------------------- */
.about {
  padding-top: 92px;
  padding-top: 5.75rem;
  overflow: hidden;
}

.about__block {
  margin-top: 380px;
  margin-top: 23.75rem;
}

.about__box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.about__person {
  width: 100%;
  max-width: 570px;
  max-width: 35.625rem;
}

.about__img {
  width: 100%;
  max-width: 417px;
  max-width: 26.0625rem;
}

.about__logo {
  position: relative;
  width: 100%;
  max-width: 367px;
  max-width: 22.9375rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: 205px;
  margin-left: 12.8125rem;
}

.about__logo::before,
.about__logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  left: -6.25rem;
  width: 3px;
  width: 0.1875rem;
  height: 80px;
  height: 5rem;
  background-color: #55535e;
}

.about__logo::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.about__logo::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.about__person {
  position: relative;
  padding-bottom: 63px;
  padding-bottom: 3.9375rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.about__person::before {
  background: #eae9e7;
  top: -100px;
  top: -6.25rem;
  bottom: 0;
  content: "";
  position: absolute;
  right: 0%;
  z-index: -1;
  width: 9999px;
}

@media screen and (max-width: 767px) {
  .about__person::before {
    top: -4.375rem;
    right: 20%;
  }
}
.about__role {
  font-size: 35px;
  font-size: 2.1875rem;
  line-height: normal;
}

@media screen and (max-width: 767px) {
  .about__role {
    font-size: 2.125rem;
  }
}
.about__name {
  font-size: 45px;
  font-size: 2.8125rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

@media screen and (max-width: 767px) {
  .about__name {
    font-size: 2.75rem;
  }
}
.about__sign {
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  position: absolute;
  bottom: -70px;
  bottom: -4.375rem;
  left: 150px;
  left: 9.375rem;
}

@media screen and (max-width: 767px) {
  .about__sign {
    bottom: -3.125rem;
    max-width: 25rem;
  }
}
.about__title {
  width: 1060px;
  width: 66.25rem;
  margin-top: 33px;
  margin-top: 2.0625rem;
  margin-left: calc(50% - 43.9375rem);
}
@media screen and (max-width: 767px) {
  .about__title {
    width: 58.75rem;
    margin-left: calc(50% - 39.375rem);
  }
}

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

.about__text {
  font-size: 30px;
  font-size: 1.875rem;
}

@media screen and (max-width: 767px) {
  .about__text {
    font-size: 2rem;
  }
}
.about__text + .about__text {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.accept {
  background-color: #f9f9f7;
  padding-top: 144px;
  padding-top: 9rem;
  padding-bottom: 175px;
  padding-bottom: 10.9375rem;
}

@media screen and (max-width: 767px) {
  .accept {
    padding-top: 8.625rem;
    padding-bottom: 8.625rem;
  }
}
.accept__lead {
  font-family: "Shippori Mincho", serif;
  text-align: center;
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .accept__lead {
    font-size: 3rem;
  }
}

.accept__lead_2 {
  font-family: "Shippori Mincho", serif;
  text-align: center;
  font-size: 48px;
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .accept__lead_2 {
    font-size: 3rem;
  }
}

.accept__btn {
  text-align: center;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .accept__btn {
    margin-top: 0;
  }
}

.accept.accept--top {
  background-color: #fff;
  padding-top: 180px;
  padding-top: 11.25rem;
  padding-bottom: 160px;
  padding-bottom: 10rem;
}

@media screen and (max-width: 767px) {
  .accept.accept--top {
    padding-top: 7rem;
  }
}

.border {
  position: relative;
}

.border::before {
  content: "";
  position: absolute;
  top: -280px;
  top: -17.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #918390;
  width: 2px;
  height: 140px;
  height: 8.75rem;
}

.contact__lead.border::before {
  top: -195px;
  top: -12.1875rem;
  height: 160px;
  height: 10rem;
}

.contact.contact--bottom .contact__lead.border::before {
  top: -245px;
  top: -15.3125rem;
  height: 140px;
  height: 8.75rem;
}

.message__lead.border::before {
  top: -195px;
  top: -12.1875rem;
}

.solve__chart.border::before {
  top: -230px;
  top: -14.375rem;
}

.box01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.box01__img {
  width: 100%;
  max-width: 541px;
  max-width: 33.8125rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .box01__img {
    max-width: 28.125rem;
  }
}
.box01__img::before {
  content: "";
  display: block;
  padding-top: 98.3336414%;
}

.box01__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.box01__content {
  position: relative;
  z-index: 2;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  max-width: 618px;
  max-width: 38.625rem;
  background-color: rgba(249, 249, 246, .92);
  padding: 83px 52px 72px;
  padding: 5.1875rem 3.25rem 4.5rem;
  margin-top: 100px;
  margin-top: 6.25rem;
  margin-left: -167px;
  margin-left: -10.4375rem;
}

@media screen and (max-width: 767px) {
  .box01__content {
    padding: 4.75rem 1.4375rem 4.1875rem 3.125rem;
    max-width: 100%;
    margin-top: 24.375rem;
    margin-left: -22.9375rem;
  }
}
.box01__title {
  color: #918390;
  font-weight: 700;
  font-size: 50px;
  font-size: 3.125rem;
}

@media screen and (max-width: 767px) {
  .box01__title {
    font-size: 2.875rem;
  }
}
.box01__text {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.6;
  margin-top: 45px;
  margin-top: 2.8125rem;
}

@media screen and (max-width: 767px) {
  .box01__text {
    font-size: 2rem;
    margin-top: 3.75rem;
  }
}
.box01__number {
  color: #918390;
  position: absolute;
  top: -50px;
  top: -3.125rem;
  right: 20px;
  right: 1.25rem;
  display: block;
  font-family: "century-gothic", sans-serif;
  font-size: 100px;
  font-size: 6.25rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .box01__number {
    font-size: 5.75rem;
  }
}
.box01:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.box01:nth-child(even) .box01__img {
  margin-left: -167px;
  margin-left: -10.4375rem;
}

@media screen and (max-width: 767px) {
  .box01:nth-child(even) .box01__img {
    margin-left: -22.9375rem;
  }
}
.box01:nth-child(even) .box01__content {
  margin-left: 0;
  margin-top: 250px;
  margin-top: 15.625rem;
}

@media screen and (max-width: 767px) {
  .box01:nth-child(even) .box01__content {
    margin-top: 24.375rem;
  }
}
.box01:nth-child(even) .box01__number {
  left: 20px;
  left: 1.25rem;
}

.box02__person {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .box02__person {
    max-width: 100%;
  }
}
.box02__block {
  display: block;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-top: 200px;
  margin-top: 12.5rem;
  width: 100%;
  max-width: calc(100% - 45rem);
}

@media screen and (max-width: 767px) {
  .box02__block {
    margin-top: 6.25rem;
    max-width: calc(100% - 28.125rem);
  }
}
.box02__block.box02__block--large {
  max-width: calc(100% - 41.25rem);
}

@media screen and (max-width: 767px) {
  .box02__block.box02__block--large {
    max-width: calc(100% - 21.875rem);
    margin-top: 2.5rem;
  }
}
.box02__block.box02__block--large .box02__name {
  font-size: 30px;
  font-size: 1.875rem;
}

.box02__name {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .box02__name {
    font-size: 2rem;
  }
}
.box02__info {
  font-size: 30px;
  font-size: 1.875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.box02__img {
  width: 100%;
  max-width: 504px;
  max-width: 31.5rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .box02__img {
    max-width: 25.25rem;
  }
}
.box02__img::before {
  content: "";
  display: block;
  padding-top: 133.134921%;
}

.box02__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.box02__number {
  position: absolute;
  top: 80px;
  top: 5rem;
  left: 0;
  width: 100%;
  max-width: 147px;
  max-width: 9.1875rem;
}

.box02__content {
  margin-top: 63px;
  margin-top: 3.9375rem;
}

.box02__title {
  font-family: "Shippori Mincho", serif;
  color: #918390;
  font-size: 40px;
  font-size: 2.5rem;
  font-size: 39px;
  font-size: 2.4375rem;
  text-align: center;
  margin-left: calc(50% - 49vw);
  margin-right: calc(50% - 49vw);
  width: 98vw;
  padding-left: 25px;
  padding-right: 25px;
}

.box02__text {
  font-size: 30px;
  font-size: 1.875rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .box02__text {
    font-size: 2rem;
  }
}
.box02__text:nth-of-type(2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.box02__text.box02__text--info {
  font-weight: 700;
}

.box02__add {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  text-align: right;
  margin-top: 50px;
  margin-top: 3.125rem;
}

@media screen and (max-width: 767px) {
  .box02__add {
    font-size: 1.75rem;
  }
}
.box02__body {
  position: relative;
  padding-left: 25px;
  padding-right: 25px;
}

.box02__body::after {
  top: 100px;
  top: 6.25rem;
  bottom: 100px;
  bottom: 6.25rem;
  background-color: #918390;
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  width: calc(50% + 28.5rem);
}

@media screen and (max-width: 767px) {
  .box02__body::after {
    width: calc(50% + 16rem);
  }
}
.box02:nth-of-type(2n) .box02__person {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.box02:nth-of-type(2n) .box02__body::after {
  left: auto;
  left: initial;
  right: 0;
}

.box02:nth-of-type(2n) .box02__block {
  text-align: right;
}

.box02:nth-of-type(2n) .box02__number {
  left: auto;
  left: initial;
  right: 0%;
}

.font-size-s {
  font-size: 55px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .font-size-s {
    font-size: 3rem;
  }
}

.text-shadow {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #feefee));
  background: linear-gradient(transparent 60%, #feefee 60%);
}

.btn {
  width: 100%;
  max-width: 100%;
}

.concern {
  background-color: #f9f9f7;
  text-align: center;
  padding-top: 280px;
  padding-top: 17.5rem;
  padding-bottom: 280px;
  padding-bottom: 17.5rem;
}

.contact {
  position: relative;
  background-color: #f9f9f7;
  padding-top: 385px;
  padding-top: 24.0625rem;
  padding-bottom: 124px;
  padding-bottom: 7.75rem;
}

@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 7.5rem;
  }
}
.contact::before {
  top: 172px;
  top: 10.75rem;
  bottom: 940px;
  bottom: 58.75rem;
  background-color: #edecea;
  content: "";
  position: absolute;
  left: 0;
  width: calc(50% + 25.5rem);
}

@media screen and (max-width: 767px) {
  .contact::before {
    width: calc(50% + 16rem);
    top: 15.125rem;
    bottom: 60rem;
  }
}
.contact__img {
  width: 100%;
  position: relative;
}

.contact__img::before {
  content: "";
  display: block;
  padding-top: 44.521224%;
}

.contact__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.contact__content {
  position: relative;
  width: 100%;
  max-width: 938px;
  max-width: 58.625rem;
  padding: 66px 5px 66px 31px;
  padding: 4.125rem 0.3125rem 4.125rem 1.9375rem;
  background-color: rgba(255, 255, 255, .9);
  margin-top: -120px;
  margin-top: -7.5rem;
  margin-left: 1.25vw;
}

.contact__text {
  font-size: 37px;
  font-size: 2.3125rem;
}

@media screen and (max-width: 767px) {
  .contact__text + .contact__text {
    margin-top: 0.625rem;
  }
}
.contact__ac {
  color: #918390;
  font-weight: 700;
}

.contact__title {
  position: relative;
  font-size: 45px;
  font-size: 2.8125rem;
  text-align: center;
  margin-top: 154px;
  margin-top: 9.625rem;
}

.contact__lead {
  font-family: "Shippori Mincho", serif;
  text-align: center;
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: bold;
  margin-top: 83px;
  margin-top: 18.125rem;
}
@media screen and (max-width: 767px) {
  .contact__lead {
    font-size: 3rem;
  }
}

.contact__btn {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .contact__btn {
    margin-top: 0;
  }
}

.contact.contact--bottom {
  padding-bottom: 230px;
  padding-bottom: 14.375rem;
}
.contact.contact--bottom .contact__lead {
  margin-top: 19.375rem;
}

.contact.contact--bottom::before {
  bottom: 840px;
  bottom: 52.5rem;
}

.cta {
  overflow: hidden;
  text-align: center;
}

.cta__content {
  position: relative;
  text-align: left;
  padding-top: 156px;
  padding-top: 9.75rem;
  padding-bottom: 156px;
  padding-bottom: 9.75rem;
}

.cta__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #f9f9f6;
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.cta__text {
  font-size: 30px;
  font-size: 1.875rem;
}

@media screen and (max-width: 767px) {
  .cta__text {
    font-size: 2rem;
  }
}
.cta__text + .cta__text {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.cat__head {
  margin-top: 216px;
  margin-top: 13.5rem;
}

@media screen and (max-width: 767px) {
  .cat__head {
    margin-top: 9.6875rem;
  }
}
.cat__title {
  width: 100%;
}

.cat__lead {
  font-family: "Shippori Mincho", serif;
  font-size: 58px;
  font-size: 3.625rem;
  margin-top: 77px;
  margin-top: 4.8125rem;
}

@media screen and (max-width: 767px) {
  .cat__lead {
    font-size: 2.4375rem;
  }
}
.cat__block {
  margin-top: 390px;
  margin-top: 24.375rem;
}

.cta__booth {
  position: relative;
  margin-top: 494px;
  margin-top: 30.875rem;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .cta__booth {
    margin-top: 18.75rem;
  }
}
.cta__booth::before {
  top: -89px;
  top: -5.5625rem;
  right: 9%;
  background-color: #918390;
  content: "";
  position: absolute;
  width: 9999px;
  z-index: -1;
  height: 84%;
}

@media screen and (max-width: 767px) {
  .cta__booth::before {
    top: -2.5rem;
    right: 22%;
    height: 73%;
  }
}
.cta__booth-title {
  color: #fff;
  font-size: 41px;
  font-size: 2.5625rem;
  text-align: center;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .cta__booth-title {
    font-size: 1.625rem;
    text-align: left;
  }
}
.cta__booth-large {
  font-size: 50px;
  font-size: 3.125rem;
}

@media screen and (max-width: 767px) {
  .cta__booth-large {
    font-size: 2rem;
  }
}
.cta__booth-img {
  width: 100%;
  margin-top: 81px;
  margin-top: 5.0625rem;
}

@media screen and (max-width: 767px) {
  .cta__booth-img {
    margin-top: 2.875rem;
  }
}
.cta__booth-add {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: right;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

@media screen and (max-width: 767px) {
  .cta__booth-add {
    font-size: 1.625rem;
    margin-top: 0.375rem;
  }
}
.cta__booth-add::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -42px;
  left: -2.625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #55545f;
  width: 30px;
  width: 1.875rem;
  height: 2px;
  height: 0.125rem;
}

.cta__booth-small {
  font-size: 24px;
  font-size: 1.5rem;
}

.cta__guest {
  position: relative;
  text-align: center;
  padding-bottom: 125px;
  padding-bottom: 7.8125rem;
  margin-top: 240px;
  margin-top: 15rem;
}

@media screen and (max-width: 767px) {
  .cta__guest {
    padding-bottom: 0;
    margin-top: 8rem;
  }
}
.cta__guest::before {
  background-color: #f9f9f6;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  height: 74%;
}

@media screen and (max-width: 767px) {
  .cta__guest::before {
    height: 64%;
  }
}
.cta__guest-title {
  display: inline-block;
  position: relative;
  font-family: "Shippori Mincho", serif;
  color: #918390;
  font-size: 64px;
  font-size: 4rem;
  letter-spacing: -0.13em;
}

@media screen and (max-width: 767px) {
  .cta__guest-title {
    font-size: 2.75rem;
  }
}
.cta__guest-title::before,
.cta__guest-title::after {
  position: absolute;
  bottom: 0;
}

.cta__guest-title::before {
  content: "/";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  left: -30px;
  left: -1.875rem;
}

.cta__guest-title::after {
  content: "/";
  right: -40px;
  right: -2.5rem;
}

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

@media screen and (max-width: 767px) {
  .cta__guest-imgs {
    margin-top: 4.25rem;
  }
}
.cta__guest-img {
  width: 100%;
  max-width: 353px;
  max-width: 22.0625rem;
}

@media screen and (max-width: 767px) {
  .cta__guest-img {
    max-width: 19.6875rem;
  }
}
.cta__guest-imgs > .cta__guest-img {
  margin-left: auto;
  margin-right: auto;
}

.cta__guest-img + .cta__guest-img {
  margin-left: 20px;
  margin-left: 1.25rem;
}

.cta__guest-img-box {
  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;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.realvoice {
  background-color: #f9f9f6;
  padding-top: 42px;
  padding-top: 2.625rem;
  padding-bottom: 200px;
  padding-bottom: 12.5rem;
}

@media screen and (max-width: 767px) {
  .realvoice {
    padding-bottom: 9.375rem;
    margin-top: 11.875rem;
  }
}
.realvoice-title {
  color: #fff;
  position: relative;
  z-index: 1;
  font-family: "Shippori Mincho", serif;
  font-size: 55px;
  font-size: 3.4375rem;
  letter-spacing: -0.07em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .realvoice-title {
    font-size: 2.4rem;
  }
}
.realvoice-title::before {
  background-color: #918390;
  content: "";
  position: absolute;
  top: -42px;
  top: -2.625rem;
  left: 0;
  right: 0;
  z-index: -1;
  height: 216%;
}

@media screen and (max-width: 767px) {
  .realvoice-title::before {
    top: -3.375rem;
    height: 283%;
  }
}
.realvoice-large {
  font-size: 64px;
  font-size: 4rem;
}

@media screen and (max-width: 767px) {
  .realvoice-large {
    font-size: 3.125rem;
  }
}
.realvoice-imgs {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 44px;
  margin-top: 2.75rem;
}

@media screen and (max-width: 767px) {
  .realvoice-imgs {
    margin-top: 3.125rem;
  }
}
.realvoice-img01 {
  width: 100%;
  max-width: 630px;
  max-width: 39.375rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .realvoice-img01 {
    max-width: 31.25rem;
  }
}
.realvoice-img02 {
  width: 100%;
  max-width: 835px;
  max-width: 52.1875rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-top: 3.125rem;
}

@media screen and (max-width: 767px) {
  .realvoice-img02 {
    max-width: 41.25rem;
    margin-top: 5.375rem;
  }
}
.realvoice-img03 {
  width: 100%;
  max-width: 628px;
  max-width: 39.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 190px;
  margin-top: 11.875rem;
}

@media screen and (max-width: 767px) {
  .realvoice-img03 {
    max-width: 31.25rem;
    margin-top: 11.25rem;
  }
}
.realvoice-img04 {
  width: 100%;
  max-width: 940px;
  max-width: 58.75rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 67px;
  margin-top: 4.1875rem;
}

@media screen and (max-width: 767px) {
  .realvoice-img04 {
    max-width: 41.25rem;
    margin-top: 7.25rem;
  }
}
.realvoice-img05 {
  width: 100%;
  max-width: 810px;
  max-width: 50.625rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 205px;
  margin-top: 12.8125rem;
}

@media screen and (max-width: 767px) {
  .realvoice-img05 {
    max-width: 41.25rem;
    margin-top: 10.875rem;
  }
}
.doctor__title {
  width: 100%;
}

.doctor__block {
  position: relative;
  padding-bottom: 65px;
  padding-bottom: 4.0625rem;
  margin-top: 132px;
  margin-top: 8.25rem;
}

.doctor__block::before {
  background: #f9f9f7;
  bottom: 0;
  content: "";
  position: absolute;
  right: -20px;
  right: -1.25rem;
  top: 170px;
  top: 10.625rem;
  z-index: -1;
  width: 9999px;
}

.doctor__img {
  width: 100%;
  max-width: 426px;
  max-width: 26.625rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.doctor__text {
  font-size: 30px;
  font-size: 1.875rem;
  margin-top: 67px;
  margin-top: 4.1875rem;
}

@media screen and (max-width: 767px) {
  .doctor__text {
    font-size: 2rem;
  }
}
.doctor__contents {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.doctor__term {
  color: #918390;
  font-size: 35px;
  font-size: 2.1875rem;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  border-bottom: 1px solid #918390;
}

.doctor__description {
  font-size: 30px;
  font-size: 1.875rem;
  margin-top: 43px;
  margin-top: 2.6875rem;
}

@media screen and (max-width: 767px) {
  .doctor__description {
    font-size: 1.8125rem;
  }
}
.doctor__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 125px;
  margin-top: 7.8125rem;
}

.doctor__item {
  width: 100%;
  max-width: 325px;
  max-width: 20.3125rem;
}

.doctor__item + .doctor__item {
  max-width: 500px;
  max-width: 31.25rem;
  margin-left: 9vw;
}

.doctor__item .doctor__term {
  max-width: 325px;
  max-width: 20.3125rem;
}

.doctor__item .doctor__description {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.footer {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
}

.footer__title {
  font-size: 25px;
  font-size: 1.5625rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer__title {
    font-size: 2.25rem;
  }
}
.footer__content {
  width: 100%;
  max-width: 570px;
  max-width: 35.625rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .footer__content {
    max-width: 100%;
  }
}
.footer__text {
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 1.4;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 2rem;
  }
}
.footer__items {
  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;
  padding-left: 25px;
  padding-right: 25px;
  margin-top: 108px;
  margin-top: 6.75rem;
}

@media screen and (max-width: 767px) {
  .footer__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 25px;
    padding-right: 25px;
  }
}
.footer__item {
  position: relative;
  line-height: 1;
  border-bottom: 1px solid #55535e;
  margin-left: 10px;
  margin-left: 0.625rem;
  margin-right: 10px;
  margin-right: 0.625rem;
}

@media screen and (max-width: 767px) {
  .footer__item {
    width: 100%;
    max-width: calc(50% - 2.5rem);
    line-height: 1.66;
    margin-top: 0.625rem;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}
.footer__item::after {
  content: "";
  position: absolute;
  top: 10px;
  top: 0.625rem;
  bottom: 0;
  right: -10px;
  right: -0.625rem;
  width: 1px;
  height: calc(100% - 1.25rem);
  background-color: #55535e;
}

@media screen and (max-width: 767px) {
  .footer__item::after {
    top: 50%;
    right: -1.25rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 60%;
  }
}
.footer__item:last-child::after {
  content: none;
}

@media screen and (max-width: 767px) {
  .footer__item:nth-child(even)::after {
    content: none;
  }
}
.footer__item a {
  display: block;
  font-size: 23px;
  font-size: 1.4375rem;
  padding: 10px 0;
  padding: 0.625rem 0;
}

@media screen and (max-width: 1440px) {
  .footer__item a {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__item a {
    font-size: 1.6875rem;
    padding: 0.625rem 0;
  }
}
.footer__copy {
  font-size: 23px;
  font-size: 1.4375rem;
  text-align: center;
  margin-top: 110px;
  margin-top: 6.875rem;
}

@media screen and (max-width: 767px) {
  .footer__copy {
    font-size: 1.75rem;
  }
}
.inner {
  width: 100%;
  max-width: 1050px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .inner {
    max-width: 100%;
    padding-right: 25px;
    padding-left: 25px;
  }
}
.l-footer {
  margin-top: 90px;
  margin-top: 5.625rem;
}

.logo-box01 {
  font-family: "Shippori Mincho", serif;
  color: #918390;
  position: relative;
  text-align: center;
  width: 100%;
  padding: 50px;
  padding: 3.125rem;
  background-color: #fff;
  -webkit-box-shadow: 2.6875rem 0px 0px -2.5rem #fff, 0px 2.6875rem 0px -2.5rem #fff, 0px -2.6875rem 0px -2.5rem #fff, -2.6875rem 0px 0px -2.5rem #fff, 0 0 0 0.125rem #918390;
  box-shadow: 2.6875rem 0px 0px -2.5rem #fff, 0px 2.6875rem 0px -2.5rem #fff, 0px -2.6875rem 0px -2.5rem #fff, -2.6875rem 0px 0px -2.5rem #fff, 0 0 0 0.125rem #918390;
}

.logo-box01::after {
  background-color: #f9f9f7;
  bottom: -175px;
  bottom: -10.9375rem;
  content: "";
  position: absolute;
  left: 20%;
  top: -160px;
  top: -10rem;
  z-index: -2;
  width: 9999px;
}

.logo-box01__head {
  font-family: "Shippori Mincho", serif;
  font-size: 59px;
  font-size: 3.6875rem;
}

.logo-box01__bg {
  position: absolute;
  bottom: -130px;
  bottom: -8.125rem;
  right: 0;
  z-index: -1;
  width: 100%;
  max-width: 18.4vw;
  margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 1530px) {
  .logo-box01__bg {
    max-width: 13.4vw;
    bottom: -10.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .logo-box01__bg {
    max-width: 22.9vw;
    bottom: -10.4375rem;
  }
}
.logo-box02 {
  font-family: "Shippori Mincho", serif;
  color: #918390;
  position: relative;
  text-align: center;
  width: 100%;
  padding: 50px;
  padding: 3.125rem;
  background-color: rgba(255, 255, 255, .8);
  -webkit-box-shadow: 2.6875rem 0px 0px -2.5rem #fff, 0px 2.6875rem 0px -2.5rem #fff, 0px -2.6875rem 0px -2.5rem #fff, -2.6875rem 0px 0px -2.5rem #fff, 0 0 0 0.125rem #918390;
  box-shadow: 2.6875rem 0px 0px -2.5rem #fff, 0px 2.6875rem 0px -2.5rem #fff, 0px -2.6875rem 0px -2.5rem #fff, -2.6875rem 0px 0px -2.5rem #fff, 0 0 0 0.125rem #918390;
}

.logo-box02__head {
  font-size: 50px;
  font-size: 3.125rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (max-width: 1023px) {
  .logo-box02__head {
    font-size: 2.8125rem;
  }
}
.logo-box02::before {
  background: #eae8e7;
  bottom: -138px;
  bottom: -8.625rem;
  content: "";
  position: absolute;
  left: 370px;
  left: 23.125rem;
  top: 0;
  top: -5.75rem;
  z-index: -1;
  width: 9999px;
}

.logo-box02__title {
  font-size: 70px;
  font-size: 4.375rem;
}

@media screen and (max-width: 767px) {
  .logo-box02__title {
    font-size: 4.25rem;
  }
}
.logo {
  width: 100%;
  max-width: 324px;
  max-width: 20.25rem;
  margin-top: 68px;
  margin-top: 4.25rem;
  margin-left: auto;
  margin-right: auto;
}

.message {
  position: relative;
  padding-bottom: 215px;
  padding-bottom: 13.4375rem;
  text-align: center;
}

.message::before {
  top: 115px;
  top: 7.1875rem;
  bottom: 0;
  background-color: #f9f9f7;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
}

.message__text {
  font-size: 47px;
  font-size: 2.9375rem;
}

.message__lead {
  font-family: "Shippori Mincho", serif;
  text-align: center;
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: bold;
  margin-top: 210px;
  margin-top: 13.125rem;
}
@media screen and (max-width: 767px) {
  .message__lead {
    font-size: 3.5rem;
  }
}

.message__btn {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .message__btn {
    margin-top: 0;
  }
}

.mv {
  width: 100%;
  max-width: 100%;
}

.mv__img {
  width: 100%;
}

.question__title {
  width: 100%;
}

.question__items {
  margin-top: 176px;
  margin-top: 11rem;
}

.question__item + .question__item {
  margin-top: 107px;
  margin-top: 6.6875rem;
}

.question__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 40px;
  font-size: 2.5rem;
  background-color: #f9f9f7;
  padding: 40px 53px;
  padding: 2.5rem 3.3125rem;
}

.question__sub-title {
  font-size: 40px;
  font-size: 2.5rem;
}

@media screen and (max-width: 767px) {
  .question__sub-title {
    font-size: 2.375rem;
  }
}
.question__text {
  font-size: 29px;
  font-size: 1.8125rem;
  margin-top: 38px;
  margin-top: 2.375rem;
}

@media screen and (max-width: 767px) {
  .question__text {
    font-size: 2rem;
  }
}
.section-about {
  margin-top: 160px;
  margin-top: 10rem;
}

.section-accept {
  margin-top: 225px;
  margin-top: 14.0625rem;
}

.section-concern {
  margin-top: 155px;
  margin-top: 9.6875rem;
}

.section-doctor {
  margin-top: 186px;
  margin-top: 11.625rem;
}

.section-message {
  margin-top: 175px;
  margin-top: 10.9375rem;
}

.section-question {
  margin-top: 115px;
  margin-top: 7.1875rem;
}

.section-solve {
  margin-top: 170px;
  margin-top: 10.625rem;
}

.section-support {
  margin-top: 250px;
  margin-top: 15.625rem;
}

.section-thanks {
  margin-top: 180px;
  margin-top: 11.25rem;
}

.section-trouble {
  margin-top: 200px;
  margin-top: 12.5rem;
}

.section-vision {
  margin-top: 155px;
  margin-top: 9.6875rem;
}

.section-voice {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.sign__role {
  font-size: 28px;
  font-size: 1.75rem;
}

.sign__img {
  width: 100%;
  max-width: 250px;
  max-width: 15.625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-left: auto;
}

.solve {
  overflow: hidden;
}

.solve__title {
  width: 100%;
}

.solve__box {
  position: relative;
  margin-top: 135px;
  margin-top: 8.4375rem;
}

.solve__bg {
  width: 100%;
}

.solve__items {
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 613px;
  max-width: 38.3125rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .solve__items {
    max-width: 25.8125rem;
  }
}
.solve__item {
  font-size: 33px;
  font-size: 2.0625rem;
  background-color: #f9f9f7;
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
  -webkit-box-shadow: 0.9375rem 0px 0px -0.75rem #fff, 0px 0.9375rem 0px -0.75rem #fff, 0px -0.9375rem 0px -0.75rem #fff, -0.9375rem 0px 0px -0.75rem #fff, 0 0 0 0.125rem #55535e;
  box-shadow: 0.9375rem 0px 0px -0.75rem #fff, 0px 0.9375rem 0px -0.75rem #fff, 0px -0.9375rem 0px -0.75rem #fff, -0.9375rem 0px 0px -0.75rem #fff, 0 0 0 0.125rem #55535e;
}

@media screen and (max-width: 767px) {
  .solve__item {
    font-size: 1.4375rem;
    padding: 0.625rem 0.625rem;
  }
}
.solve__ac {
  font-weight: 700;
}

.solve__item + .solve__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.solve__block {
  text-align: center;
  margin-top: 250px;
  margin-top: 15.625rem;
}

.solve__contents {
  position: relative;
}

.solve__contents::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 200px;
  top: 12.5rem;
  bottom: 40px;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  background-color: #f9f9f7;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

@media screen and (max-width: 767px) {
  .solve__contents::before {
    bottom: 6.25rem;
  }
}
.solve__img__img {
  width: 100%;
  position: relative;
}

.solve__img__img::before {
  content: "";
  display: block;
  padding-top: 54%;
}

.solve__img__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.solve__text {
  font-size: 50px;
  font-size: 3.125rem;
  margin-top: 110px;
  margin-top: 6.875rem;
}

@media screen and (max-width: 767px) {
  .solve__text {
    font-size: 2.4375rem;
  }
}
.solve__text + .solve__text {
  margin-top: 140px;
  margin-top: 8.75rem;
}

.solve__ac {
  font-weight: 700;
}

.solve__chart {
  margin-top: 280px;
  margin-top: 17.5rem;
}

.solve__chart-title {
  font-weight: 700;
  color: #918390;
  font-size: 35px;
  font-size: 2.1875rem;
  border: 2px solid #918390;
  padding: 10px;
  padding: 0.625rem;
}

@media screen and (max-width: 767px) {
  .solve__chart-title {
    font-size: 2.0625rem;
  }
}
.solve__graph {
  width: 100%;
  max-width: 785px;
  max-width: 49.0625rem;
  margin-top: 115px;
  margin-top: 7.1875rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}

@media screen and (max-width: 767px) {
  .solve__graph {
    margin-left: 0;
  }
}
.solve__add {
  width: 100%;
  max-width: 700px;
  max-width: 43.75rem;
  font-size: 25px;
  font-size: 1.5625rem;
  text-align: left;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .solve__add {
    font-size: 1.5rem;
  }
}
.support {
  font-family: "Shippori Mincho", serif;
  position: relative;
  text-align: center;
  padding-top: 125px;
  padding-top: 7.8125rem;
  background-color: #f9f9f7;
  padding-bottom: 217px;
  padding-bottom: 13.5625rem;
}
@media screen and (max-width: 767px) {
  .support {
    padding-bottom: 7rem;
  }
}

.support::before {
  top: 0;
  bottom: 450px;
  bottom: 28.125rem;
  background-color: #918390;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
}

.support__inner {
  position: relative;
  z-index: 2;
}

.support__title {
  color: #fff;
  font-size: 53px;
  font-size: 3.3125rem;
}

@media screen and (max-width: 767px) {
  .support__title {
    font-size: 2.75rem;
  }
}
.support__img {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-width: 50rem;
  margin-top: 114px;
  margin-top: 7.125rem;
  margin-left: auto;
  margin-right: auto;
}

.support__img::before {
  content: "";
  display: block;
  padding-top: 84.057971%;
}

.support__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.thanks {
  font-family: "Shippori Mincho", serif;
  position: relative;
  color: #fff;
  background-color: #918390;
  padding-top: 200px;
  padding-top: 12.5rem;
  padding-bottom: 200px;
  padding-bottom: 12.5rem;
  text-align: center;
  overflow: hidden;
}

.thanks__inner.inner {
  max-width: 1220px;
}

.thanks__text {
  font-size: 38px;
  font-size: 2.375rem;
}

.thanks__text + .thanks__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.thanks__bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 17.55vw;
  margin-right: calc(50% - 50vw);
}

.trouble__contents {
  margin-top: 200px;
  margin-top: 12.5rem;
}

.trouble__content + .trouble__content {
  margin-top: 104px;
  margin-top: 6.5rem;
}

@media screen and (max-width: 767px) {
  .trouble__content + .trouble__content {
    margin-top: 10rem;
  }
}
.vision {
  position: relative;
  overflow: hidden;
}

.vision__bg {
  position: absolute;
  bottom: 1550px;
  bottom: 96.875rem;
  right: -40px;
  right: -2.5rem;
  width: 15vw;
  max-width: 300px;
  max-width: 18.75rem;
}

@media screen and (max-width: 767px) {
  .vision__bg {
    width: 100px;
    width: 6.25rem;
    bottom: auto;
    bottom: initial;
    top: 550px;
    top: 34.375rem;
    right: -20px;
    right: -1.25rem;
  }
}
.vision__img {
  width: 100%;
  max-width: 782px;
  max-width: 48.875rem;
  position: relative;
  margin-top: 108px;
  margin-top: 6.75rem;
  margin-left: auto;
  margin-right: auto;
}

.vision__img::after {
  background-color: #eae8e7;
  bottom: -108px;
  bottom: -6.75rem;
  content: "";
  position: absolute;
  left: 50%;
  top: -108px;
  top: -6.75rem;
  z-index: -1;
  width: 9999px;
}

.vision__img::before {
  content: "";
  display: block;
  padding-top: 66.624041%;
}

.vision__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.vision__content {
  margin-top: 200px;
  margin-top: 12.5rem;
}

.vision__sub-title {
  color: #918390;
  font-size: 40px;
  font-size: 2.5rem;
  text-align: center;
}

.vision__text {
  font-size: 30px;
  font-size: 1.875rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .vision__text {
    font-size: 2rem;
  }
}
.vision__text-block {
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  margin-top: 130px;
  margin-top: 8.125rem;
  margin-left: auto;
}

.voice__title {
  width: 100%;
}

.voice__contents {
  margin-top: 210px;
  margin-top: 13.125rem;
}

.voice__content + .voice__content {
  margin-top: 260px;
  margin-top: 16.25rem;
}