@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
figure,
figcaption,
blockquote,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
}

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

/* Set core body defaults */
body {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

a {
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  width: 100%;
  display: block;
  border: 0;
  height: auto;
}

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

/* ============================
 base(共通)
===============================*/
@-ms-viewport {
  width: device-width;
  initial-scale: 1;
}
html {
  font-size: 62.5%;
  -ms-overflow-style: auto;
}

body {
  font-size: 1.6rem;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  word-break: normal;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hanging-punctuation: none;
  background: #f9f9f9;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 992px) {
  body {
    letter-spacing: 0.06em;
  }
}

.container {
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 1140px;
    margin: 0 auto;
  }
}

a {
  color: #000000;
}

a:hover,
a:focus,
a:active {
  opacity: 0.85;
}

.pc-none {
  display: block;
}
@media screen and (min-width: 992px) {
  .pc-none {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media screen and (min-width: 992px) {
  .sp-none {
    display: block;
  }
}

.inline-block {
  display: inline-block;
}

.btn__wrapper {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 40px 13px 20px;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #393939;
  width: 178px;
  max-width: 100%;
  background: #ffffff;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-weight: bold;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .btn {
    width: 210px;
    padding: 15px 44px 15px 20px;
    font-size: 1.7rem;
    line-height: 1.4705882353;
  }
}

.btn--large {
  padding: 23px 43px 20px 64px;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  width: 370px;
}
@media screen and (min-width: 992px) {
  .btn--large {
    width: 450px;
    padding: 21px 46px 20px 90px;
    font-size: 2rem;
    line-height: 1.5;
  }
}

.black-btn__wrapper {
  text-align: center;
}

.black-btn {
  display: inline-block;
  padding: 29px;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  letter-spacing: 0.15em;
  color: #ffffff;
  width: 370px;
  max-width: 100%;
  background: #101010;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-weight: bold;
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
}
@media screen and (min-width: 992px) {
  .black-btn {
    -webkit-transition: 0.25s;
    transition: 0.25s;
    width: 450px;
    padding: 32px;
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

.black-btn--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 39px;
  width: 11px;
  height: 21px;
  background: url(../images/arrow.svg) center center/cover no-repeat;
}
@media screen and (min-width: 992px) {
  .black-btn--arrow::after {
    right: 49px;
  }
}

.btn--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  width: 18px;
  height: 18px;
  background: url(../images/common/icon_arrow-right-black.svg) center center/cover no-repeat;
}
@media screen and (min-width: 992px) {
  .btn--arrow::after {
    right: 25px;
  }
}

.btn--arrow-large::after {
  right: 25px;
}
@media screen and (min-width: 992px) {
  .btn--arrow-large::after {
    right: 28px;
  }
}

.btn--icon::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 27px;
}
@media screen and (min-width: 992px) {
  .btn--icon::before {
    left: 39px;
  }
}

.btn--icon-mail::before {
  width: 23px;
  height: 18px;
  background: url(../images/common/icon_mail-black.svg) center center/cover no-repeat;
}

.btn--icon-file::before {
  width: 20px;
  height: 24px;
  background: url(../images/common/icon_file-black.svg) center center/cover no-repeat;
}

.btn--icon-tel::before {
  width: 23px;
  height: 23px;
  background: url(../images/common/icon_tel.svg) center center/cover no-repeat;
}

.mr1em {
  margin-right: 1em;
}

.mb0 {
  margin-bottom: 0;
}

.shippori {
  font-family: "Shippori Mincho B1", serif;
}

/*===============================
 ヘッダー
 ===============================*/
.header {
  width: 100%;
  height: auto;
}

.header__inner {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 999;
  position: fixed;
  left: 0;
  top: 0;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 992px) {
  .header__inner {
    height: 70px;
  }
}

.logo {
  margin-top: 21px;
  margin-left: 19px;
}
@media screen and (min-width: 992px) {
  .logo {
    margin-top: 25px;
    margin-left: 39px;
  }
}

.logo__link {
  display: block;
  max-width: 224px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .logo__link {
    max-width: 243px;
  }
}

/*===============================
 フッター
 ===============================*/
.footer {
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .footer {
    text-align: left;
  }
}

.footer-bottom {
  width: 100%;
  background: #3e3e3e;
  padding-top: 26px;
  padding-bottom: 13px;
}
@media screen and (min-width: 992px) {
  .footer-bottom {
    padding-top: 46px;
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 992px) {
  .footer-bottom__inner {
    max-width: 1110px;
    margin-right: auto;
    margin-left: auto;
    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;
  }
}

.footer-logo__link {
  display: block;
}

.footer-bottom__list {
  margin-bottom: 17px;
}
@media screen and (min-width: 992px) {
  .footer-bottom__list {
    margin-bottom: 0;
  }
}

.footer-bottom__item {
  font-size: 1.3rem;
  line-height: 1.9230769231;
}

@media screen and (min-width: 992px) {
  .footer-bottom__item:last-child {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .footer-bottom-foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.copy-right {
  font-size: 1.1rem;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .copy-right {
    font-size: 1.2rem;
  }
}

/*===============================
 トップページ
 ===============================*/
main {
  margin-top: -60px;
}
@media screen and (min-width: 992px) {
  main {
    margin-top: -70px;
  }
}

.fv {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.fv__inner {
  width: 100%;
  height: 400px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .fv__inner {
    height: 630px;
  }
}

.fv__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__copy {
  position: absolute;
  bottom: -140px;
  right: 0;
  background: white;
  padding: 20px;
}
.fv__copy img {
  width: 276px;
}
@media screen and (min-width: 375px) {
  .fv__copy {
    padding: 30px;
  }
}
@media screen and (min-width: 768px) {
  .fv__copy {
    padding: 46px 54px;
    bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .fv__copy {
    padding: 56px 70px;
  }
  .fv__copy img {
    width: 360px;
  }
}

.concept {
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 229px;
}
@media screen and (min-width: 992px) {
  .concept {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 287px;
  }
}

@media screen and (min-width: 992px) {
  .concept__inner {
    max-width: 1170px;
    margin-right: auto;
    margin-left: auto;
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.concept__body {
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .concept__body {
    margin-bottom: 0;
  }
}

.concept__catch {
  font-size: 3.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .concept__catch {
    font-size: 4rem;
    line-height: 1.75;
    font-weight: bold;
    margin-bottom: 30px;
  }
}
.concept__catch span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #dfeaee));
  background: linear-gradient(transparent 50%, #dfeaee 50%);
}

.concept__text {
  font-size: 2.2rem;
  line-height: 1.8181818182;
  letter-spacing: 0.1em;
  margin-bottom: 180px;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .concept__text {
    font-size: 2.5rem;
    line-height: 1.8;
    margin-bottom: 0;
  }
}

.concept__img-wrapper {
  position: relative;
}
@media screen and (min-width: 992px) {
  .concept__img-wrapper {
    margin-top: 160px;
    width: 42.735042735%;
    max-width: 500px;
    margin-right: 10.5128205128%;
  }
}

.bg-img__wrapper {
  width: 94.5945945946%;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .bg-img__wrapper {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

.top-img__wrapper {
  position: absolute;
  top: -28.5714285714%;
  left: -6.7567567568%;
  width: 92.1621621622%;
  max-width: 540px;
}
@media screen and (min-width: 992px) {
  .top-img__wrapper {
    top: -30%;
    left: auto;
    right: 18%;
    width: 108%;
  }
}

.bottom-img__wrapper {
  position: absolute;
  bottom: -28.2857142857%;
  right: -6.7567567568%;
  width: 92.7027027027%;
  max-width: 540px;
}
@media screen and (min-width: 992px) {
  .bottom-img__wrapper {
    bottom: -27.4%;
    right: auto;
    left: 18.6%;
    width: 108%;
  }
}

.about {
  background: #f9f9f9;
  padding-top: 280px;
  margin-bottom: 170px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 90px;
  }
}
@media screen and (min-width: 992px) {
  .about {
    max-width: 980px;
    margin-bottom: 180px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (min-width: 992px) {
  .about .card {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .about .card__text {
    margin-bottom: 0;
  }
}
.about .card__text:last-child {
  margin-bottom: 0;
}

.section__title {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 35px;
}
.section__title span {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.72;
}
.section__title .text-small {
  font-size: 1.8rem;
  display: block;
}
@media screen and (min-width: 992px) {
  .section__title .text-small {
    display: inline-block;
  }
}
@media screen and (min-width: 992px) {
  .section__title {
    font-size: 3rem;
    line-height: 1.8;
  }
  .section__title text-small {
    font-size: 2.3rem;
  }
}

.section__text {
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .section__text {
    font-size: 1.5rem;
    line-height: 1.875;
  }
}

.section__text.mb_sp75 {
  margin-bottom: 75px;
}

@media screen and (min-width: 992px) {
  .section__text.mb_pc80 {
    margin-bottom: 75px;
  }
}

.section__note {
  margin-top: 40px;
  font-size: 1.3rem;
  line-height: 1.5384615385;
  width: 86.4864864865%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .section__note {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-top: 25px;
  }
}

.card__wrapper {
  width: 86.4864864865%;
  margin-right: auto;
  margin-left: auto;
}
.card__wrapper > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .card__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 1110px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -60px;
  }
}

.card {
  margin-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .card {
    width: 31.5315315315%;
    max-width: 350px;
    margin-right: 2.7027027027%;
  }
}

@media screen and (min-width: 992px) {
  .card:nth-child(3n) {
    margin-right: 0;
  }
}

.card__img-wrapper {
  margin-bottom: 25px;
}
@media screen and (min-width: 992px) {
  .card__img-wrapper {
    margin-bottom: 21px;
  }
}

.card__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}

.card-title-img__wrapper {
  -ms-flex-preferred-size: 44px;
      flex-basis: 44px;
  margin-right: 13px;
}

.card__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  font-size: 2rem;
  line-height: 1.3043478261;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #101010;
  font-family: "Shippori Mincho B1", serif;
}
.card__title span {
  display: block;
  font-size: 1.7rem;
  line-height: 1.7647058824;
  margin-bottom: 3px;
}

.card__text {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  margin-bottom: 35px;
}

.detail {
  margin-bottom: 150px;
}
@media screen and (min-width: 992px) {
  .detail {
    margin-bottom: 140px;
  }
}
.detail .section__title {
  letter-spacing: 0.03em;
}
.detail .section__title .text-35 {
  font-size: 24px;
}
@media screen and (min-width: 992px) {
  .detail .section__title .text-35 {
    font-size: 35px;
  }
}
.detail .section__title .text-30 {
  font-size: 19px;
}
@media screen and (min-width: 992px) {
  .detail .section__title .text-30 {
    font-size: 30px;
  }
}
.detail .section__title .text-25 {
  font-size: 17px;
}
@media screen and (min-width: 992px) {
  .detail .section__title .text-25 {
    font-size: 25px;
  }
}
.detail .section__title2 {
  background: #dfdfdf;
  margin: 50px 0px 50px;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .detail .section__title2 {
    margin: 75px 0px 50px;
    padding: 10px 20px;
    font-size: 20px;
  }
}
@media screen and (min-width: 992px) {
  .detail .card__img-wrapper {
    margin-bottom: 0;
  }
}
.detail .card {
  margin-bottom: 50px;
}
.detail .card:last-child {
  margin-bottom: 0;
}

.point {
  margin-bottom: 150px;
}
@media screen and (min-width: 992px) {
  .point {
    margin-bottom: 180px;
  }
}
.point .card__wrapper {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .point .card__wrapper {
    margin-bottom: -30px;
  }
}
.point .card {
  background: #ffffff;
  padding: 45px 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .point .card {
    padding: 53px 60px 60px;
    width: 48.6486486486%;
    max-width: 540px;
  }
}
.point .card:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .point .card:last-child {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 992px) {
  .point .card:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .point .card:nth-child(3n) {
    margin-right: 2.7027027027%;
  }
}
.point .card__text {
  margin-bottom: 0;
  line-height: 1.8666666667;
}
@media screen and (min-width: 992px) {
  .point .card__img-wrapper {
    margin-bottom: 30px;
  }
}

.title {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  background: transparent;
  padding: 7px 8px 8px;
  border: 1px solid #101010;
  border-radius: 18px;
  margin-bottom: 20px;
  width: 110px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  color: #101010;
}
@media screen and (min-width: 992px) {
  .title {
    margin-bottom: 37px;
  }
}

.card__catch {
  font-size: 2rem;
  line-height: 1.75;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .card__catch {
    margin-bottom: 43px;
  }
}

.voice {
  margin-top: 150px;
  margin-bottom: 150px;
}
@media screen and (min-width: 992px) {
  .voice {
    margin-top: 180px;
    margin-bottom: 140px;
  }
}
.voice .media__img-wrapper {
  width: 100%;
  position: relative;
}
.voice .media__img-wrapper::before {
  content: "";
  display: block;
  padding-top: 70.2702702703%;
}
@media screen and (min-width: 992px) {
  .voice .media__img-wrapper::before {
    padding-top: 100%;
  }
}
.voice .media__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.media {
  margin-bottom: 30px;
  background: #ffffff;
}
@media screen and (min-width: 992px) {
  .media {
    max-width: 1110px;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.media:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 992px) {
  .media__img-wrapper {
    -ms-flex-preferred-size: 31.5315315315%;
        flex-basis: 31.5315315315%;
    max-width: 350px;
    margin-right: 3.6036036036%;
  }
}

.media__body {
  padding: 38px 30px 40px;
}
@media screen and (min-width: 992px) {
  .media__body {
    padding: 40px 40px 44px 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

.label {
  width: 115px;
  text-align: center;
  padding: 4px;
  font-size: 1.5rem;
  line-height: 2;
  display: inline-block;
  margin-bottom: 30px;
  background: #3d3d3d;
  color: #ffffff;
  font-family: "Shippori Mincho B1", serif;
}

.media__title {
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .media__title {
    margin-bottom: 20px;
  }
}

.media__text {
  font-size: 1.5rem;
  line-height: 1.8666666667;
}
@media screen and (min-width: 992px) {
  .media__text {
    line-height: 2;
  }
}

.greeting {
  background: #ffffff;
  position: relative;
  margin-bottom: 321px;
}
@media screen and (min-width: 992px) {
  .greeting {
    margin-bottom: 140px;
  }
}
.greeting .section__inner {
  width: 77.5%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 80px;
  padding-bottom: 240px;
}
@media screen and (min-width: 992px) {
  .greeting .section__inner {
    width: 100%;
    max-width: 980px;
    padding-bottom: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .greeting .section__body {
    width: 58.1632653061%;
    max-width: 570px;
    margin-right: 11.2244897959%;
  }
}
.greeting .section__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2rem;
  line-height: 1.9;
  font-weight: 600;
  text-align: left;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 992px) {
  .greeting .section__title {
    font-size: 2.5rem;
    line-height: 2;
    margin-bottom: 62px;
  }
}
.greeting .section__text {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .greeting .section__text {
    line-height: 2;
    margin-bottom: 76px;
  }
}
.greeting .img-text__wrapper {
  max-width: 110px;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .greeting .img-text__wrapper {
    max-width: 128px;
    margin-right: auto;
    margin-left: 0;
  }
}
.greeting .img-wrapper {
  width: 64.25%;
  max-width: 257px;
  position: absolute;
  left: 0;
  bottom: -151px;
}
@media screen and (min-width: 992px) {
  .greeting .img-wrapper {
    width: auto;
    max-width: none;
    position: static;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

.gallery {
  margin-bottom: 150px;
}
@media screen and (min-width: 992px) {
  .gallery {
    margin-bottom: 140px;
  }
}
.gallery__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
  .gallery__inner {
    max-width: 1110px;
    margin-right: auto;
    margin-left: auto;
  }
}
.gallery .img-wrapper {
  width: 50%;
}
@media screen and (min-width: 992px) {
  .gallery .img-wrapper {
    width: 24.954954955%;
  }
}

.faq {
  margin-top: 150px;
}
@media screen and (min-width: 992px) {
  .faq {
    margin-top: 180px;
  }
}

.faq__content {
  background: #ffffff;
  padding: 30px;
}
.faq__content > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .faq__content {
    padding: 60px 65px;
  }
}

.faq__list {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .faq__list {
    margin-bottom: 60px;
  }
}

.question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .question {
    margin-bottom: 27px;
  }
}

.head {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Shippori Mincho B1", serif;
  color: #101010;
  margin-right: 9px;
  line-height: 1.25;
  -ms-flex-preferred-size: 22px;
      flex-basis: 22px;
  height: 29px;
}
@media screen and (min-width: 992px) {
  .head {
    margin-right: 20px;
  }
}

.text {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
@media screen and (min-width: 992px) {
  .text {
    line-height: 2;
  }
}

.answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.answer .head {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Shippori Mincho B1", serif;
  color: #101010;
  margin-right: 9px;
  line-height: 1.25;
  -ms-flex-preferred-size: 22px;
      flex-basis: 22px;
  height: 29px;
}
@media screen and (min-width: 992px) {
  .answer .head {
    margin-right: 20px;
  }
}

.answer__text {
  font-size: 1.5rem;
  line-height: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}

.section-type02 {
  margin-bottom: 150px;
}
@media screen and (min-width: 992px) {
  .section-type02 {
    margin-bottom: 140px;
  }
}
.section-type02 .content {
  width: 100%;
  height: auto;
  padding: 30px;
  background: #ffffff;
}
@media screen and (min-width: 992px) {
  .section-type02 .content {
    padding: 60px 65px;
  }
}
.section-type02 .content__section {
  margin-bottom: 21px;
  font-size: 1.5rem;
  line-height: 1.8666666667;
}
@media screen and (min-width: 992px) {
  .section-type02 .content__section {
    line-height: 1.6666666667;
    margin-bottom: 24px;
  }
}
.section-type02 .content__section:last-child {
  margin-bottom: 0;
}
.section-type02 .content__title {
  font-weight: normal;
}

.section-type02.lesson {
  margin-bottom: 170px;
}
@media screen and (min-width: 992px) {
  .section-type02.lesson {
    margin-bottom: 140px;
  }
}

.section-type02.faq {
  margin-bottom: 200px;
}
@media screen and (min-width: 992px) {
  .section-type02.faq {
    margin-bottom: 200px;
  }
}

@media screen and (min-width: 992px) {
  .section-type02.mb_pc180 {
    margin-bottom: 180px;
  }
}

.section__title3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 40px;
  padding-left: 15px;
  position: relative;
}
.section__title3::before {
  content: "";
  width: 5px;
  height: 29px;
  background: #101010;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}