@charset "UTF-8";
/* =====================
  リセット
 ======================= */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

i, address {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

small {
  font-size: 100%;
}

/* =====================
	ミマムAIナビ
 ======================= */
/** -------------------- 変数定義 -------------------- **/
:root {
  /* カラー定義 */
  --c_text: #4D4D4D;
  --c_wht: #fff;
  /* フォント定義 */
  --font_ja: "Noto Sans JP", sans-serif;
  /* transition定義 */
  --anim: all 0.4s ease-out;
}

body {
  font-family: var(--font_ja);
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0;
  color: var(--c_text);
}
body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

.clearfix {
  clear: both;
}

a {
  color: var(--c_text);
  -webkit-transition: var(--anim);
  transition: var(--anim);
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

.section {
  padding: 80px 0;
}

.inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.header + * {
  margin-top: 100px;
}

.cmn-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: var(--c_wht);
  background: #06C283;
  border-radius: 100px;
  font-weight: 700;
  padding: 15px 24px;
}
.cmn-btn:before {
  content: "";
  width: 1.3125em;
  height: 1em;
  background: url(../img/ico_mail.png) no-repeat center/contain;
}
.cmn-btn:hover {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.cmn-ttl {
  text-align: center;
  margin-bottom: 45px;
}
.cmn-ttl-eng {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
  position: relative;
  margin-bottom: 24px;
}
.cmn-ttl-eng:before {
  content: "";
  width: 50px;
  height: 3px;
  background: currentColor;
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: auto;
}
.cmn-ttl-jp {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.75;
}

/** -------------------- ヘッダー -------------------- **/
.header {
  background: var(--c_wht);
  height: 100px;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
/** -------------------- フッター -------------------- **/
.footer {
  background: #4D4D4D;
  color: var(--c_wht);
  padding: 16px 0;
}
.footer .footer-copy {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
}

/** -------------------- トップページ -------------------- **/
.mv {
  background: #FFFDF0;
  position: relative;
  padding: 80px 0 95px;
}
.mv .mv-txtbox > * {
  padding-left: 10px;
}
.mv .mv-catch {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.96;
  letter-spacing: 0.025em;
  margin-bottom: 16px;
}
.mv .mv-catch mark {
  background: #FF9209;
  color: var(--c_wht);
  font-style: normal;
  font-weight: 700;
  padding: 0 12px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.mv .mv-ttl {
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: #FF9209;
  margin-bottom: 40px;
}
.mv .mv-ttl > span {
  position: relative;
}
.mv .mv-ttl > span:before {
  content: "";
  width: 100%;
  height: 8px;
  background: currentColor;
  border-radius: 50px;
  position: absolute;
  bottom: -6px;
  left: 0;
}
.mv .mv-ttl > span span {
  letter-spacing: 0.24em;
  margin: 0 -0.12em 0 0.12em;
}
.mv .mv-txt {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.025em;
  margin-bottom: 36px;
}
.mv .mv-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50%;
  height: 540px;
  max-height: 100%;
}
.mv .mv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left bottom;
     object-position: left bottom;
}

.trouble .trouble-ttl {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  line-heigth: 1.53;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
.trouble .trouble-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.trouble .trouble-list > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 32.167%;
          flex: 0 1 32.167%;
  border: 3px solid #F56E00;
  padding: 30px 0 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.756;
  letter-spacing: 0.025em;
}
.trouble .trouble-list > li img {
  width: 170px;
  margin: 0 auto 14px;
}
.trouble .trouble-ending {
  margin-top: 45px;
  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;
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.58;
}
.trouble .trouble-ending strong {
  font-size: 170%;
  font-weight: 700;
  color: #F56E00;
}
.trouble .trouble-ending:before, .trouble .trouble-ending:after {
  content: "";
  width: 5px;
  height: 146px;
  background: #F56E00;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.trouble .trouble-ending:before {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.trouble .trouble-ending:after {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

.about {
  background: #FAF9F7;
}
.about .about-box {
  border: 7px solid #FDF581;
  background: var(--c_wht);
  padding: 90px 12px 0;
  text-align: center;
  position: relative;
  margin-top: 100px;
}
.about .about-box-ttl {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #ff9209;
  color: var(--c_wht);
  padding: 14px 22px 10px;
  white-space: nowrap;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.625;
}
.about .about-box-ttl strong {
  font-size: 32px;
  font-weight: 700;
}
.about .about-box-ttl:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 11px 0 11px;
  border-color: #ff9209 transparent transparent transparent;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  margin: auto;
}
.about .about-box-txt {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.75;
}
.about .about-box-img {
  margin: 55px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.3%;
     -moz-column-gap: 2.3%;
          column-gap: 2.3%;
}
.about .about-box-img01 {
  width: 45.25%;
}
.about .about-box-img02 {
  width: 31.42%;
  margin-bottom: min(-7px, -1.25%);
}
.about .about-box-img03 {
  width: 55%;
}

.function {
  overflow: hidden;
}
.function .function-list-item {
  position: relative;
  margin-bottom: 98px;
}
.function .function-list-item:last-child {
  margin-bottom: 0;
}
.function .function-list-item--new .function-list-imgbox:before {
  content: "NEW";
  font-size: 27px;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 116px;
  height: 116px;
  background: #ff9209;
  border: 4px solid #0c116f;
  color: var(--c_wht);
  border-radius: 50%;
  position: absolute;
  left: 12px;
  top: -22px;
}
.function .function-list-imgbox {
  width: 51.3%;
  margin: 0 -3.167%;
  position: relative;
  z-index: 2;
}
.function .function-list-txtbox {
  background: #FDF8B6;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  max-width: 1100px;
  min-height: 248px;
  padding: 40px 8% 40px 50%;
}
.function .function-list-num {
  color: #FF9209;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.44;
  margin-bottom: 8px;
}
.function .function-list-num > span {
  border-bottom: 3px solid #F56E00;
}
.function .function-list-ttl {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4167;
  margin-right: -1em;
}
.function .function-list-txt {
  font-weight: 700;
  margin-top: 10px;
}
.function .function-list-sub {
  position: absolute;
}
.function .function-list-sub01 {
  right: -30px;
  top: -57px;
}
.function .function-list-sub02 {
  left: -64px;
  bottom: -72px;
}
.function .function-list-sub03 {
  bottom: -64px;
  left: -85px;
}

.subject {
  background: #FAF9F7;
}
.subject .subject-lead {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}
.subject .subject-box {
  max-width: 1000px;
  margin: 0 auto 52px;
  background: var(--c_wht);
  padding: 70px 4% 82px;
}
.subject .subject-box:last-child {
  margin-bottom: 0;
}
.subject .subject-box-ttl {
  text-align: center;
  color: #FF9209;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.75;
  margin-bottom: 24px;
}
.subject .subject-box-ttl > span {
  border-bottom: 3px solid currentColor;
  padding-bottom: 2px;
  display: inline-block;
}
.subject .subject-box-ttl02 {
  color: #F56E00;
}
.subject .subject-box-lead {
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
.subject .subject-box-subttl {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
  padding: 28px 60px;
  background: url(../img/ico_check.png) no-repeat left 10px center/30px;
  border-bottom: 1px solid #B3B3B3;
  cursor: pointer;
}
.subject .subject-box-subttl:before, .subject .subject-box-subttl:after {
  content: "";
  width: 18px;
  height: 3px;
  background: var(--c_text);
  border-radius: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.subject .subject-box-subttl:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
.subject .subject-box-subttl.is-open:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.subject .subject-box-list {
  margin-top: 28px;
  font-weight: 700;
  display: none;
}
.subject .subject-box-list > li:before {
  content: "・";
}

.solution .solution-ttl {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 36px;
}
.solution .solution-ttl strong {
  color: #F56E00;
  font-size: 170%;
  font-weight: 700;
}
.solution .solution-ttl:before, .solution .solution-ttl:after {
  content: "";
  width: 5px;
  height: 112px;
  background: #F56E00;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.solution .solution-ttl:after {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
.solution .solution-list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 6.25%;
}
.solution .solution-list-item {
  text-align: center;
}
.solution .solution-list-img {
  width: 312px;
  max-width: 100%;
  margin: 0 auto 35px;
}
.solution .solution-list-img img {
  width: 247px;
  margin: 0 auto;
}
.solution .solution-list-ttl {
  color: #FF9209;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4167;
  padding-bottom: 4px;
  margin-bottom: 18px;
  border-bottom: 3px solid #F56E00;
}
.solution .solution-list-txt {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.75;
}

.summary {
  background: #FDF8B6;
}
.summary .summary-ttl {
  text-align: center;
  color: #FF9209;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 32px;
}
.summary .summary-cta {
  text-align: center;
}
.summary .summary-cta .cmn-btn {
  font-size: 24px;
  padding: 15px 61px;
}

/* PCのみ
  ------------------------ */
@media (min-width: 768px) {
  .forSP {
    display: none !important;
  }
  .function .function-list-item:nth-child(odd) .function-list-imgbox {
    margin-left: auto;
  }
  .function .function-list-item:nth-child(odd) .function-list-imgbox:before {
    left: auto;
    right: -12px;
  }
  .function .function-list-item:nth-child(odd) .function-list-txtbox {
    padding: 40px 48% 40px 8%;
  }
}
/* タブレット
  ------------------------ */
@media (max-width: 1100px) {
  .mv {
    padding-bottom: 0;
  }
  .mv .mv-txtbox {
    text-align: center;
  }
  .mv .mv-img {
    position: relative;
    width: 600px;
    max-width: 100%;
    height: auto;
    left: auto;
    bottom: auto;
    margin: 20px auto 0;
  }
  .trouble .trouble-list > li {
    font-size: 18px;
  }
  .trouble .trouble-ending {
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
  .function .function-list-item--new .function-list-imgbox:before {
    width: 80px;
    height: 80px;
    font-size: 20px;
    border-width: 3px;
    left: 4px;
  }
  .function .function-list .function-list-item:nth-child(odd) .function-list-imgbox:before {
    right: 4px;
  }
  .function .function-list-sub {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  .function .function-list-sub03 {
    left: -48px;
  }
}
/* スマホ
  ------------------------ */
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .forPC {
    display: none !important;
  }
  .section {
    padding: 40px 0;
  }
  .header + * {
    margin-top: 50px;
  }
  .cmn-btn {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    padding: 4px 20px;
  }
  .cmn-ttl {
    margin-bottom: 20px;
  }
  .cmn-ttl-eng {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .cmn-ttl-eng:before {
    width: 25px;
    height: 1.5px;
    bottom: -6px;
  }
  .cmn-ttl-jp {
    font-size: 18px;
  }
  /** -------------------- ヘッダー -------------------- **/
  .header {
    height: 50px;
  }
  .header .header-inner {
    padding: 0 10px;
  }
  .header .header-logo {
    width: 80px;
  }
  /** -------------------- フッター -------------------- **/
  .footer {
    padding: 12px 0;
  }
  .footer .footer-copy {
    font-size: 11px;
  }
  /** -------------------- トップページ -------------------- **/
  .mv {
    padding: 24px 0 0;
  }
  .mv .mv-txtbox > * {
    padding-left: 0;
  }
  .mv .mv-catch {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .mv .mv-catch mark {
    padding: 0 8px;
  }
  .mv .mv-ttl {
    font-size: 40px;
    margin-bottom: 24px;
  }
  .mv .mv-ttl > span:before {
    height: 4px;
    bottom: -4px;
  }
  .mv .mv-txt {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .mv .mv-img {
    width: 80%;
  }
  .trouble .trouble-ttl {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .trouble .trouble-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
  }
  .trouble .trouble-list > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 335px;
            flex: 0 1 335px;
    border-width: 2px;
    padding: 16px 20px;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    text-align: left;
  }
  .trouble .trouble-list > li img {
    width: 80px;
    margin: 0;
  }
  .trouble .trouble-ending {
    margin-top: 24px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    font-size: 16px;
  }
  .trouble .trouble-ending:before, .trouble .trouble-ending:after {
    width: 2px;
    height: 90px;
  }
  .about .about-box {
    border-width: 3px;
    padding: 0 12px;
    border-top: 0;
    margin-top: 0;
  }
  .about .about-box-ttl {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    margin: 0 -35px 20px;
    font-size: 16px;
    line-height: 1.4;
    padding: 8px;
    white-space: normal;
  }
  .about .about-box-ttl strong {
    font-size: 24px;
  }
  .about .about-box-ttl:after {
    display: none;
  }
  .about .about-box-txt {
    font-size: 14px;
  }
  .about .about-box-img {
    margin: 20px auto 0;
  }
  .about .about-box-img01 {
    width: 54%;
  }
  .about .about-box-img02 {
    width: 38%;
    margin-bottom: -5px;
  }
  .about .about-box-img03 {
    width: 60%;
  }
  .function {
    overflow: hidden;
  }
  .function .function-list {
    max-width: 400px;
    margin: 0 auto 30px;
  }
  .function .function-list-item {
    margin-bottom: 60px;
  }
  .function .function-list-item--new .function-list-imgbox:before {
    left: auto;
    right: 0;
    width: 64px;
    height: 64px;
    font-size: 16px;
  }
  .function .function-list-imgbox {
    width: auto;
  }
  .function .function-list-txtbox {
    position: relative;
    top: auto;
    -webkit-transform: none;
            transform: none;
    min-height: auto;
    padding: 36px 20px 20px;
    margin-top: -16px;
  }
  .function .function-list-num {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .function .function-list-num > span {
    border-width: 2px;
  }
  .function .function-list-ttl {
    font-size: 20px;
    margin-right: 0;
  }
  .function .function-list-txt {
    margin-top: 8px;
  }
  .function .function-list-sub {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  .function .function-list-sub01 {
    right: -60px;
    top: auto;
    bottom: -80px;
  }
  .function .function-list-sub02 {
    left: auto;
    right: -55px;
    bottom: -100px;
  }
  .function .function-list-sub03 {
    bottom: -50px;
    right: -48px;
    left: auto;
  }
  .subject .subject-lead {
    margin-bottom: 24px;
  }
  .subject .subject-box {
    padding: 24px 12px;
    margin-bottom: 30px;
  }
  .subject .subject-box-ttl {
    font-size: 18px;
  }
  .subject .subject-box-ttl > span {
    border-width: 2px;
  }
  .subject .subject-box-lead {
    margin-bottom: 8px;
  }
  .subject .subject-box-subttl {
    font-size: 16px;
    padding: 16px 32px;
    background-size: 20px;
    background-position: left center;
  }
  .subject .subject-box-subttl:before, .subject .subject-box-subttl:after {
    width: 12px;
    height: 2px;
    right: 8px;
  }
  .subject .subject-box-list {
    margin: 16px 0 8px;
  }
  .solution .solution-ttl {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    font-size: 15px;
    margin-bottom: 24px;
  }
  .solution .solution-ttl strong {
    font-size: 150%;
  }
  .solution .solution-ttl:before, .solution .solution-ttl:after {
    width: 2px;
    height: 80px;
  }
  .solution .solution-list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100px 12px minmax(auto, 250px);
    grid-template-columns: 100px minmax(auto, 250px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 12px;
  }
  .solution .solution-list-img {
    -ms-grid-row-span: 2;
    grid-row: span 2;
    margin: 0;
  }
  .solution .solution-list-ttl {
    font-size: 20px;
    border-width: 2px;
    padding-bottom: 2px;
    margin-bottom: 4px;
  }
  .solution .solution-list-txt {
    font-size: 16px;
    line-height: 1.5;
  }
  .summary .summary-ttl {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .summary .summary-cta .cmn-btn {
    font-size: 16px;
    padding: 15px 40px;
  }
}