@charset "UTF-8";
/* ==========================================================================
 * PAGES - feature
 *
 * WordPressのページをカスタマイズ
 * ========================================================================== */
/* ==========================================================================
 * ABSTRACTS - variables
 *
 * テーマ全体で使用する変数を定義
 * ========================================================================== */
/* ==========================================================
  ▼ ブランドカラー
============================================================ */
/* ==========================================================
  ▼ プランカラー
============================================================ */
/* ==========================================================
  ▼ UIカラー（補助的なカラーパレット）
============================================================ */
/* ==========================================================
  ▼ フォント関連
============================================================ */
/* ==========================================================================
 * ABSTRACTS - mixins
 *
 * テーマで再利用可能な変数を定義
 * ========================================================================== */
/* ==========================================================
  ▼ @mixin respon($device) - デバイスごとのレスポンシブ処理
============================================================ */
/* ==========================================================
  ▼ @mixin clearfix - フロート解除用
============================================================ */
/* ==========================================================
  ▼ @mixin nested-ol - olの入れ子階層に応じた番号スタイル
============================================================ */
/* ==========================================================
  ▼ about
============================================================ */
#about .top_heading {
  color: #0f7975;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
#about .lead {
  text-align: center;
}
#about .about_wrap {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  #about .about_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 24px;
  }
}
#about .about_wrap .wrap_img {
  position: relative;
  width: 50%;
  -webkit-box-flex: 0;
          flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #about .about_wrap .wrap_img {
    width: 100%;
  }
}
#about .about_wrap .wrap_img figure {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  background: url("../img/bg_device_macbook.png") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  #about .about_wrap .wrap_img figure {
    padding-top: 58%;
  }
}
#about .about_wrap .wrap_img video {
  position: absolute;
  top: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60%;
  aspect-ratio: 16/10;
}
@media screen and (max-width: 768px) {
  #about .about_wrap .wrap_img video {
    width: 70%;
  }
}
#about .about_wrap .wrap_description {
  -webkit-box-flex: 1;
          flex-grow: 1;
}

/* ==========================================================
  ▼ feature
============================================================ */
#feature {
  background: #f5f8f5;
}
#feature .tag_list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  #feature .tag_list {
    flex-wrap: wrap;
    -webkit-box-pack: start;
            justify-content: start;
    gap: 12px;
  }
}
#feature .tag_list li {
  width: calc((100% - 24px) / 5);
  color: #ffffff;
  background: #0f7975;
  background: -webkit-linear-gradient(left, #0f7975 0%, #0fa775 100%);
  background: linear-gradient(to right, #0f7975 0%, #0fa775 100%);
  font-weight: bold;
  text-align: center;
  padding: 8px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  #feature .tag_list li {
    width: calc((100% - 12px) / 2);
  }
}
#feature .feature_wrap .wrap_box {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-align: center;
          align-items: center;
  gap: 40px;
  padding: 24px 40px;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  #feature .feature_wrap .wrap_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
}
#feature .feature_wrap .wrap_box:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  #feature .feature_wrap .wrap_box:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}
#feature .feature_wrap .wrap_box + .wrap_box {
  margin-top: 24px;
}
#feature .feature_wrap .wrap_box .wrap_description {
  -webkit-box-flex: 1;
          flex-grow: 1;
}
#feature .feature_wrap .wrap_box .wrap_description p {
  font-size: 0.9em;
  line-height: 1.6;
}
#feature .feature_wrap .wrap_box .wrap_img {
  width: 50%;
  -webkit-box-flex: 0;
          flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #feature .feature_wrap .wrap_box .wrap_img {
    width: 100%;
  }
}
#feature .feature_wrap .wrap_box .wrap_img img {
  width: 100%;
}
#feature .feature_wrap .wrap_box .wrap_img .support {
  position: relative;
}
#feature .feature_wrap .wrap_box .wrap_img .support::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  width: 70%;
  height: 100%;
  background: url("../img/feature/feature_point_02_2.svg") no-repeat center/contain;
}

/* ==========================================================
  ▼ case
============================================================ */
#case .lead {
  text-align: center;
}
#case .case_wrap {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
          align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  #case .case_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 24px;
  }
}
#case .case_wrap .wrap_box {
  width: 50%;
  -webkit-box-flex: 0;
          flex-grow: 0;
  flex-shrink: 0;
  background-color: #f5f8f5;
  padding: 16px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  #case .case_wrap .wrap_box {
    width: 100%;
  }
}
#case .case_wrap .wrap_box .wrap_item {
  width: calc((100% - 8px) / 2);
}
#case .case_wrap .wrap_box .wrap_item figcaption {
  font-weight: bold;
  color: #ffffff;
  padding: 8px;
  line-height: 1;
  text-align: center;
  margin-bottom: 8px;
}
#case .case_wrap .wrap_box .wrap_item figcaption.before {
  background-color: #666666;
}
#case .case_wrap .wrap_box .wrap_item figcaption.after {
  background-color: #e47308;
}
#case .case_wrap .wrap_description {
  -webkit-box-flex: 1;
          flex-grow: 1;
}

/* ==========================================================
  ▼ document
============================================================ */
#document {
  background: #f5f8f5;
}
#document .lead {
  text-align: center;
}
#document .doc_wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #document .doc_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}
#document .doc_wrap .wrap_box {
  width: calc((100% - 48px) / 3);
  background-color: #ffffff;
  box-shadow: 0px 2px 10px 0px rgba(102, 102, 102, 0.3);
}
@media screen and (max-width: 768px) {
  #document .doc_wrap .wrap_box {
    width: 100%;
  }
}
#document .doc_wrap .wrap_box a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#document .doc_wrap .wrap_box a:hover {
  opacity: 0.6;
}
#document .doc_wrap .wrap_box a img {
  width: 100%;
}
#document .doc_wrap .wrap_box .wrap_txt {
  padding: 16px;
}
@media screen and (max-width: 768px) {
  #document .doc_wrap .wrap_box .wrap_txt {
    padding: 16px;
  }
}
#document .doc_wrap .wrap_box .wrap_txt .heading {
  font-weight: bold;
  text-align: center;
}
#document .doc_wrap .wrap_box .wrap_txt p {
  font-size: 0.8em;
}
#document .doc_wrap .wrap_box .wrap_txt a:hover {
  opacity: 1;
}