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

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.wrap {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

p {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

@media (min-width: 1200px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media (max-width: 1199px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  a[href^="tel:"] {
    display: block;
    pointer-events: painted;
  }
}

/*デバイスごとの表示切り替え*/
@media (max-width: 1199px) {
  .pc-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.tab-below {
  display: none;
}
@media (max-width: 1199px) {
  .tab-below {
    display: block;
  }
}

@media (min-width: 1200px) {
  .tab-only {
    display: none;
  }
}
@media (max-width: 1199px) {
  .tab-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none;
  }
}

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

/*************************************************************************************
共通インナー幅
**************************************************************************************/
.common-width {
  max-width: 1100px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .common-width {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .common-width {
    width: 89%;
  }
}

/*************************************************************************************
セクションタイトル
**************************************************************************************/
.section__title {
  text-align: center;
  font-size: 48px;
}
@media (max-width: 1199px) {
  .section__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .section__title {
    font-size: 24px;
  }
}
.section__title span {
  display: block;
  color: #FD6334;
  font-size: 16px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .section__title span {
    margin-top: 20px;
  }
}

/*************************************************************************************
CTA
**************************************************************************************/
.cta {
  padding: 80px 0;
  background: linear-gradient(125deg, #FF9E0C 0%, #FF9E0C 40%, #FFD70C 100%);
}
@media (max-width: 767px) {
  .cta {
    padding: 60px 0;
  }
}
.cta .small {
  font-size: 24px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cta .small {
    font-size: 16px;
  }
}
.cta p {
  font-size: 42px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1199px) {
  .cta p {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .cta p {
    font-size: 24px;
  }
}

/*************************************************************************************
ボタン
**************************************************************************************/
.btn a {
  text-decoration: none;
  padding: 12px 30px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 767px) {
  .btn a {
    font-size: 18px;
  }
}

.btn__white a {
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #ffffff;
}
@media (min-width: 1200px) {
  .btn__white a {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .btn__white a:hover {
    border: 1px solid #111111;
    background-color: #111111;
    color: #ffffff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
}

.btn__black a {
  background-color: #111111;
  color: #ffffff;
  border: 1px solid #111111;
}
@media (min-width: 1200px) {
  .btn__black a {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .btn__black a:hover {
    border: 1px solid #ffffff;
    background-color: #ffffff;
    color: #111111;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
}

/*************************************************************************************
フッター
**************************************************************************************/
.footer {
  background-color: #FD6334;
  padding: 15px 0;
  position: relative;
}

.footer__copy {
  color: #ffffff;
  display: block;
  text-align: center;
}

.footer__copy a {
  color: #ffffff;
  text-decoration: underline;
}

.footer__copy a:hover {
  text-decoration: none;
}

.sp-btn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
  max-width: 120px;
  width: 33%;
  height: 100px;
}
@media (max-width: 767px) {
  .sp-btn {
    display: block;
  }
}
.sp-btn a {
  display: block;
  width: 100%;
  border: 3px solid #FF9E0C;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 15px 0;
  font-size: 12px;
  line-height: 120%;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}
.sp-btn a img {
  display: block;
  width: 40px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5px;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 10px;
  background-color: #ffffff;
  z-index: 9999;
}

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

.header__logo a {
  display: block;
  font-size: 42px;
  text-align: center;
  text-decoration: none;
  line-height: 100%;
}
@media (max-width: 767px) {
  .header__logo a {
    font-size: 36px;
  }
}
.header__logo a .red {
  color: #FD6334;
}
.header__logo a .logo-sub {
  display: block;
  font-size: 14px;
  margin-top: -10px;
}
@media (max-width: 767px) {
  .header__logo a .logo-sub {
    font-size: 12px;
  }
}

.header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.header__link a {
  text-decoration: none;
  font-weight: 700;
}
@media (max-width: 767px) {
  .header__link a {
    display: none;
  }
}

.header__btn a {
  display: block;
  background-color: #FF9E0C;
  border: 2px solid #FF9E0C;
  color: #ffffff;
  font-size: 19px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  padding: 5px 20px;
}
@media (min-width: 1200px) {
  .header__btn:nth-of-type(2) a {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .header__btn:nth-of-type(2) a:hover {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    background-color: #ffffff;
    border: 2px solid #FF9E0C;
    color: #FF9E0C;
  }
}
@media (max-width: 767px) {
  .header__btn:nth-of-type(2) a {
    display: none;
  }
}
.header__btn:nth-of-type(3) a {
  background-color: #FFD70C;
  border: 2px solid #FFD70C;
  border-radius: 50px;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  color: #111111;
  padding: 5px 35px;
}
@media (min-width: 1200px) {
  .header__btn:nth-of-type(3) a {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .header__btn:nth-of-type(3) a:hover {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    background-color: #ffffff;
    border: 2px solid #FFD70C;
  }
}
@media (max-width: 767px) {
  .header__btn:nth-of-type(3) a {
    display: none;
  }
}
.header__btn:nth-of-type(4) {
  display: none;
}
@media (max-width: 767px) {
  .header__btn:nth-of-type(4) {
    display: block;
  }
}
.header__btn:nth-of-type(4) a {
  font-size: 14px;
}

/*************************************************************************************
ファーストビュー
**************************************************************************************/
.fv {
  margin-top: 120px;
  padding-top: 40px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .fv {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}

.fv__message {
  font-size: 80px;
  font-weight: 700;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  border-bottom: 8px solid #FD6334;
  line-height: 150%;
}
@media (max-width: 767px) {
  .fv__message {
    font-size: 50px;
    line-height: 220%;
    text-align: center;
  }
}
.fv__message strong {
  font-size: 120px;
  position: relative;
}
@media (max-width: 767px) {
  .fv__message strong {
    font-size: 80px;
  }
}
.fv__message strong::before {
  position: absolute;
  content: "";
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 28px;
  background: url(../img/fv-accent.png) no-repeat center/cover;
}
@media (max-width: 767px) {
  .fv__message strong::before {
    top: -10px;
  }
}

.fv__img {
  display: block;
  max-width: 700px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .fv__img {
    width: 89%;
  }
}
@media (max-width: 767px) {
  .fv__img {
    width: 80%;
    margin-top: 40px;
  }
}

.fv__text {
  font-size: 36px;
  font-weight: 900;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding: 0 30px;
  position: relative;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .fv__text {
    font-size: 22px;
    padding: 0 15px;
    margin-top: 15px;
  }
}
.fv__text::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 6px;
  height: 80%;
  background: #111111;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
@media (max-width: 767px) {
  .fv__text::before {
    width: 3px;
    height: 90%;
  }
}
.fv__text::after {
  position: absolute;
  content: "";
  top: 10px;
  right: 0;
  width: 6px;
  height: 80%;
  background: #111111;
  -webkit-transform: rotate(207deg);
          transform: rotate(207deg);
}
@media (max-width: 767px) {
  .fv__text::after {
    width: 3px;
  }
}

.fv__btn a {
  background: linear-gradient(125deg, #FF9E0C 0%, #FF9E0C 40%, #FFD70C 100%);
  border: 3px solid #FFD70C;
  text-decoration: none;
  padding: 12px 30px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
}
@media (min-width: 1200px) {
  .fv__btn a {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .fv__btn a:hover {
    background: #ffffff;
    border: 3px solid #FF9E0C;
    color: #FF9E0C;
  }
}
@media (max-width: 767px) {
  .fv__btn a {
    font-size: 18px;
  }
}

/*************************************************************************************
背景、社長様
**************************************************************************************/
.trouble__wave img {
  display: block;
}

.trouble {
  background-color: #5C5A5A;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .trouble {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.trouble__title {
  font-size: 48px;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .trouble__title {
    font-size: 32px;
  }
}
.trouble__title span {
  display: block;
  font-size: 24px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .trouble__title span {
    font-size: 16px;
    margin-top: 20px;
  }
}

.trouble__contents {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
}

@media (max-width: 767px) {
  .trouble__contents {
    display: block;
    margin-top: 30px;
  }
}
.trouble__contents li {
  position: relative;
}
.trouble__contents li:not(:nth-of-type(4)) {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .trouble__contents li:not(:nth-of-type(4)) {
    max-width: 400px;
  }
}
.trouble__contents li:nth-of-type(1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 767px) {
  .trouble__contents li:nth-of-type(1) {
    margin-left: -40px;
  }
}
.trouble__contents li:nth-of-type(1) p {
  position: absolute;
  right: -100px;
  bottom: 90px;
}
@media (max-width: 1199px) {
  .trouble__contents li:nth-of-type(1) p {
    bottom: 70px;
  }
}
@media (max-width: 767px) {
  .trouble__contents li:nth-of-type(1) p {
    right: -120px;
    bottom: 0;
  }
}
.trouble__contents li:nth-of-type(2) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .trouble__contents li:nth-of-type(2) {
    margin-top: 10px;
  }
}
.trouble__contents li:nth-of-type(2) p {
  position: absolute;
  right: -70px;
  bottom: 0px;
}
@media (max-width: 1199px) {
  .trouble__contents li:nth-of-type(2) p {
    right: -40px;
    bottom: -30px;
  }
}
.trouble__contents li:nth-of-type(3) {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .trouble__contents li:nth-of-type(3) {
    margin-left: -30px;
    margin-top: 20px;
  }
}
.trouble__contents li:nth-of-type(3) p {
  position: absolute;
  right: -20px;
  bottom: 100px;
}
@media (max-width: 1199px) {
  .trouble__contents li:nth-of-type(3) p {
    right: -40px;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .trouble__contents li:nth-of-type(3) p {
    right: -117px;
    bottom: 20px;
  }
}
.trouble__contents li:nth-of-type(4) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 70%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .trouble__contents li:nth-of-type(4) {
    margin-right: auto;
    margin-left: auto;
  }
}
.trouble__contents li p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 1199px) {
  .trouble__contents li p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .trouble__contents li p {
    font-size: 14px;
  }
}
.trouble__contents li p img {
  width: 40px;
}
@media (max-width: 1199px) {
  .trouble__contents li p img {
    width: 30px;
  }
}
@media (max-width: 767px) {
  .trouble__contents li p img {
    width: 20px;
  }
}

/*************************************************************************************
リアルな課題
**************************************************************************************/
.problem {
  background: url(../img/problem-bg.jpg) no-repeat center/cover;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .problem {
    padding: 50px 0;
  }
}

.problem__message {
  font-size: 24px;
  text-align: center;
  margin-top: 80px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .problem__message {
    font-size: 20px;
    margin-top: 60px;
  }
}

.problem__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 740px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .problem__wrap {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .problem__wrap {
    width: 89%;
    gap: 10px;
  }
}

.problem__card {
  border: 3px solid #111111;
  border-radius: 20px;
  background-color: #ffffff;
  padding-top: 40px;
  padding-bottom: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .problem__card {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
.problem__card::after {
  position: absolute;
  content: "";
  width: 120px;
  height: 55px;
  background: url(../img/problem-moyamoya.png) no-repeat center/cover;
}
@media (max-width: 767px) {
  .problem__card::after {
    width: 80px;
    height: 36px;
  }
}
.problem__card:nth-of-type(1)::after {
  top: -20px;
  left: -20px;
}
.problem__card:nth-of-type(2)::after {
  top: 100px;
  right: -100px;
}
@media (max-width: 1199px) {
  .problem__card:nth-of-type(2)::after {
    right: 0;
  }
}
@media (max-width: 767px) {
  .problem__card:nth-of-type(2)::after {
    right: -20px;
  }
}
.problem__card:nth-of-type(3):after {
  bottom: 80px;
  left: -60px;
}
@media (max-width: 1199px) {
  .problem__card:nth-of-type(3):after {
    left: 0;
  }
}
@media (max-width: 767px) {
  .problem__card:nth-of-type(3):after {
    left: -20px;
  }
}
.problem__card:nth-of-type(4)::after {
  bottom: 0;
  right: -60px;
}
@media (max-width: 1199px) {
  .problem__card:nth-of-type(4)::after {
    right: 0;
    bottom: -30px;
  }
}
.problem__card figure {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
}
.problem__card p {
  text-align: center;
  font-weight: 700;
  margin-top: 20px;
}
.problem__card p span {
  color: #FD6334;
  font-size: 28px;
}
@media (max-width: 767px) {
  .problem__card p span {
    font-size: 20px;
  }
}

/*************************************************************************************
ビフォーアフター
**************************************************************************************/
.before-after {
  background-color: #ffffff;
  padding-bottom: 80px;
}
@media (max-width: 1199px) {
  .before-after {
    padding-bottom: 40px;
  }
}

.before-after__block {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .before-after__block {
    padding: 40px 0;
  }
}
.before-after__block:not(:last-of-type) {
  border-bottom: 1px dashed #FF9E0C;
}
.before-after__block h2 {
  font-size: 36px;
  text-align: center;
}
.before-after__block h2 span {
  color: #FD6334;
  text-align: center;
  display: block;
  font-size: 16px;
}
@media (max-width: 767px) {
  .before-after__block h2 {
    font-size: 24px;
  }
}

.before-after__wrap {
  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;
  gap: 150px;
  margin-top: 100px;
  position: relative;
}
@media (max-width: 1199px) {
  .before-after__wrap {
    gap: 40px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .before-after__wrap {
    display: block;
  }
}
.before-after__wrap::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 47px;
  height: 110px;
  background: url(../img/arrow-orange.png) no-repeat center/cover;
}
@media (max-width: 1199px) {
  .before-after__wrap::after {
    width: 30px;
    height: 70px;
  }
}
@media (max-width: 767px) {
  .before-after__wrap::after {
    top: 45%;
    left: 45%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.before {
  width: 100%;
}
.before p {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .before {
    margin-bottom: 60px;
  }
}

.before__box {
  border: 3px solid #111111;
  padding: 30px;
}
@media (max-width: 767px) {
  .before__box {
    padding: 10px;
  }
}
.before__box figure {
  width: 330px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .before__box figure {
    width: 100%;
  }
}
.before__box figure img {
  width: 100%;
  aspect-ratio: 358/239;
  -o-object-fit: cover;
     object-fit: cover;
}
.before__box p {
  font-size: 16px;
  font-weight: 700;
}

.after {
  width: 100%;
}
.after p {
  font-size: 36px;
  font-weight: 700;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.after p::after {
  position: absolute;
  content: "";
  top: -10px;
  right: -30px;
  width: 40px;
  height: 40px;
  background: url(../img/adter-kirakira.png) no-repeat center/cover;
}

.after__box {
  border: 3px solid #111111;
  padding: 30px;
}
@media (max-width: 767px) {
  .after__box {
    padding: 10px;
  }
}
.after__box figure {
  width: 330px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .after__box figure {
    width: 100%;
  }
}
.after__box figure img {
  width: 100%;
  aspect-ratio: 358/239;
  -o-object-fit: cover;
     object-fit: cover;
}
.after__box p {
  font-size: 16px;
  font-weight: 700;
  position: static;
}
.after__box p::after {
  display: none;
}

.before-after__service {
  border: 3px solid #FF920C;
  background-color: #FFE7A9;
  padding: 20px 80px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .before-after__service {
    padding: 20px;
  }
}
.before-after__service h3 {
  font-size: 28px;
  font-weight: 700;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  border-bottom: 3px solid #FD6334;
}
@media (max-width: 767px) {
  .before-after__service h3 {
    font-size: 24px;
  }
}
.before-after__service p {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .before-after__service p {
    margin-top: 20px;
  }
}

/*************************************************************************************
解決策
**************************************************************************************/
.solution {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .solution {
    padding: 60px 0;
  }
}

.solution__img {
  margin-top: 50px;
}

.solution__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .solution__wrap {
    display: block;
    margin-top: 40px;
  }
}

.solution__block {
  width: calc(33.3% - 26.6666666667px);
}
@media (max-width: 767px) {
  .solution__block {
    max-width: 650px;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
  .solution__block:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.solution__block img {
  display: block;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
}
.solution__block h3 {
  background-color: #FD6334;
  color: #ffffff;
  padding: 20px;
  text-align: center;
  margin-top: -15px;
}
.solution__block p {
  margin-top: 10px;
}

/*************************************************************************************
AIがもたらす６つの経営変革
**************************************************************************************/
.merit {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .merit {
    padding: 60px 0;
  }
}

.merit__wrap {
  margin-top: 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
@media (max-width: 1199px) {
  .merit__wrap {
    gap: 50px 15px;
  }
}
@media (max-width: 767px) {
  .merit__wrap {
    display: block;
    max-width: 500px;
    width: 89%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 50px;
  }
}

.merit__card {
  position: relative;
  border-radius: 15px;
  border: 3px solid #FF920C;
}
@media (max-width: 767px) {
  .merit__card:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
@media (max-width: 1199px) {
  .merit__card:nth-of-type(5) h3 {
    font-size: 20px;
    padding: 35px 0;
  }
}
.merit__card:nth-of-type(6) h3 {
  font-size: 22px;
  padding: 34px 0;
}
@media (max-width: 1199px) {
  .merit__card:nth-of-type(6) h3 {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .merit__card:nth-of-type(6) h3 {
    padding: 23px 0;
  }
}
.merit__card .merit__card__num {
  position: absolute;
  width: 80px;
  height: 80px;
  background: url(../img/merit-medal.png) no-repeat center/cover;
  top: -40px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 1199px) {
  .merit__card .merit__card__num {
    width: 65px;
    height: 65px;
    top: -50px;
  }
}
.merit__card .merit__card__num small {
  display: block;
  font-size: 10px;
  padding-top: 15px;
}
@media (max-width: 1199px) {
  .merit__card .merit__card__num small {
    padding-top: 10px;
  }
}
.merit__card .merit__card__num span {
  font-size: 26px;
  line-height: 100%;
}
.merit__card h3 {
  background-color: #FF920C;
  color: #ffffff;
  padding: 30px 0;
  text-align: center;
  border-radius: 10px 10px 0 0;
  font-size: 26px;
}
@media (max-width: 767px) {
  .merit__card h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .merit__card figure {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
}
.merit__card p {
  padding: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .merit__card p {
    padding: 10px;
    text-align: center;
    font-size: 15px;
  }
}

/*************************************************************************************
お客様の声
**************************************************************************************/
.review {
  background-color: #FFF3B8;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .review {
    padding: 60px 0;
  }
}

.review__wrap {
  max-width: 780px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .review__wrap {
    margin-top: 30px;
  }
}

.review__block {
  border: 3px solid #FD6334;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  background-color: #ffffff;
  padding: 30px 40px;
}
@media (max-width: 767px) {
  .review__block {
    display: block;
    padding: 20px;
  }
}
.review__block:not(:last-of-type) {
  margin-bottom: 30px;
}

.review__person {
  width: 180px;
}
@media (max-width: 767px) {
  .review__person {
    margin-right: auto;
    margin-left: auto;
  }
}
.review__person img {
  display: block;
  width: 70%;
  margin-right: auto;
  margin-left: auto;
}
.review__person span {
  display: block;
  font-weight: 500;
  text-align: center;
  line-height: 160%;
  margin-top: 5px;
}

.review__contents {
  width: calc(100% - 180px);
}
@media (max-width: 767px) {
  .review__contents {
    width: 100%;
    margin-top: 30px;
  }
}
.review__contents h3 {
  color: #FD6334;
}
.review__contents p {
  margin-top: 15px;
}

/*************************************************************************************
よくある質問
**************************************************************************************/
.faq {
  padding: 80px 0;
}

.faq__wrap {
  padding: 32px 0 60px 0;
  max-width: 780px;
  width: 92%;
  margin-right: auto;
  margin-left: auto;
}

.faq__box {
  border: #FF9E0C solid 3px;
  border-radius: 15px;
}
.faq__box:not(:last-child) {
  margin-bottom: 24px;
}

.faq__box-q {
  padding: 12px 80px;
  position: relative;
  font-weight: bold;
}
@media (max-width: 767px) {
  .faq__box-q {
    padding: 15px 45px;
    padding-left: 55px;
    font-size: 14px;
  }
}
.faq__box-q::before {
  position: absolute;
  content: "Q";
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  padding: 1px 8px;
  background: #FF9E0C;
  border-radius: 50px;
}

.faq__box-icon {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq__box-icon.is-open .faq__box-bar2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.faq__box-bar1 {
  width: 14px;
  height: 2px;
  background: #FF9E0C;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.faq__box-bar2 {
  width: 2px;
  height: 14px;
  background: #FF9E0C;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.faq__box-a {
  line-height: 1.5;
  padding: 16px 30px 16px 80px;
  display: none;
  position: relative;
}
@media (max-width: 767px) {
  .faq__box-a {
    padding-left: 55px;
    font-size: 14px;
  }
}

.faq__box-content {
  padding-bottom: 80px;
  position: relative;
}
.faq__box-content::before {
  position: absolute;
  content: "A";
  top: 0;
  left: -60px;
  color: #FF9E0C;
  padding: 1px 8px;
  background: #ffffff;
  border: 2px solid #FF9E0C;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .faq__box-content::before {
    left: -33px;
    padding: 1px 7px;
  }
}

.faq__btn a {
  background: linear-gradient(125deg, #FF9E0C 0%, #FF9E0C 40%, #FFD70C 100%);
  color: #111111;
  padding: 8px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 1200px) {
  .faq__btn a {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .faq__btn a:hover {
    border: 1px solid #FF9E0C;
    background: #ffffff;
    color: #FF9E0C;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
}
@media (max-width: 767px) {
  .faq__btn a {
    white-space: nowrap;
  }
}

/*************************************************************************************
有益資料
**************************************************************************************/
.download {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .download {
    padding: 60px 0;
  }
}

.download__img {
  margin-top: 40px;
  max-width: 500px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

/*************************************************************************************
お問い合わせ
**************************************************************************************/
.contact {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .contact {
    padding: 60px 0;
  }
}

.contact__wrap {
  margin-top: 40px;
  max-width: 850px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  border: 5px solid #FF9E0C;
  border-radius: 30px;
  padding: 30px;
}
@media (max-width: 767px) {
  .contact__wrap {
    padding: 10px;
  }
}