@charset "UTF-8";

@import url('../../../../resource/css/reset.css');
@import url('../../../../resource/css/header.css');
@import url('../../../../resource/css/footer.css');

/* ImageFlux専用のReset設定
 * ======================================== ======================================== */
.imageflux_contents {
  font-size: 14px;
}

.imageflux_contents * {
  border: 0;
  box-sizing: border-box;
  font-family:
    'ヒラギノ角ゴ ProN',
    'Hiragino Kaku Gothic ProN',
    'メイリオ',
    Meiryo,
    'Yu Gothic',
    YuGothic,
    Verdana,
    Helvetica,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

main a {
  color: #447af2;
}

main a:hover {
  text-decoration: underline;
}

.inner {
  max-width: 960px;
  margin: auto;
}

@media (min-width: 801px) {
  .show_mobile {
    display: none;
  }
}

@media (max-width: 800px) {
  .inner {
    padding: 0 16px;
  }

  .hide_mobile {
    display: none;
  }
}

/* ImageFlux 読み込みヘッダ
 * ======================================== ======================================== */
.imageflux_header {
  position: relative;
  min-height: 120px;
  padding: 32px 0;
  background-color: #447af2;
}

.imageflux_header .inner {
  display: flex;
  padding: 0;
}

.imageflux_header nav a:hover {
  opacity: 0.7;
}

/* ImageFlux ロゴ
 * ---------------------------------------- */
.imageflux_main_logo {
  flex: 0 0 224px;
}

.imageflux_main_logo .imageflux_logo {
  width: 148px;
  height: 32px;
}

.mobile_navi_group {
  display: flex;
  flex: 1 1 auto;
}

@media (max-width: 800px) {
  .imageflux_header {
    min-height: auto;
    padding: 0;
  }

  .imageflux_header .inner {
    flex-direction: column;
  }

  .imageflux_main_logo {
    flex: 0 0 auto;
    padding: 16px 20px;
    position: relative;
    z-index: 150;
    background-color: #447af2;
  }
}

/* グローバルナビ
 * ---------------------------------------- */
.global_navi {
  position: relative;
  top: -4px;
  flex: 1 1 auto;
}

.global_navi_list {
  display: flex;
  justify-content: space-between;
}

.global_navi_link {
  flex: 0 0 160px;
  height: 56px;
}

.global_navi_link a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 4px 8px;
  border-radius: 2px;
  color: #fff;
}

.global_navi_link .main_text {
  display: block;
  font-size: 16px;
  font-weight: bold;
}

.global_navi_link .sub_text {
  display: block;
  font-size: 13px;
}

/* サインアップナビ
 * ---------------------------------------- */
.signup_navi {
  flex: 0 0 240px;
}

.signup_navi_list {
  display: flex;
}

.signup_login {
  margin-right: 8px;
}

.signup_navi a {
  display: block;
  height: 32px;
  color: #fff;
  text-align: center;
  line-height: 30px;
}

.signup_login a {
  width: 112px;
}

.signup_contact a {
  width: 120px;
  border: 1px solid #fff;
  border-radius: 2px;
}

/* LiveAppの「ライブ配信」ボタンをデフォルトで表示しない */
.signup_liveapp {
  display: none;
}

/* 画像変換のお申込みボタンをデフォルトで表示しない */
.signup_imageflux,
.cta_imageflux {
  display: none;
}
 

/* レスポンシブ表示のハンバーガーメニュー
 * ---------------------------------------- */
@media (max-width: 800px) {
  .mobile_navi_group {
    width: 100%;
    flex-direction: column;
    position: absolute;
    top: -224px;
    left: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 500ms ease;
  }

  .is_open .mobile_navi_group {
    top: 64px;
  }

  .global_navi {
    top: 0;
  }

  .global_navi_list {
    flex-direction: column;
  }

  .global_navi_link {
    flex: 0 0 auto;
  }

  .global_navi_link a {
    padding: 0 16px;
    border-bottom: 1px solid #ccc;
    line-height: 56px;
  }

  .global_navi_link .main_text {
    display: inline;
  }

  .global_navi_link .sub_text {
    display: inline;
  }

  .signup_navi {
    flex: 0 0 auto;
  }

  .signup_navi_list li {
    flex: 0 0 50%;
  }

  .signup_navi a {
    width: 100%;
    height: 56px;
    line-height: 56px;
  }

  .signup_navi .signup_login {
    width: 100%;
    margin-right: 0;
    border-right: 1px solid #ccc;
  }

  .signup_navi .signup_contact a {
    border: 0;
  }

  .mobile_navi_toggle {
    display: block;
    height: 48px;
    margin: 0;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 180;
  }

  .switch {
    display: block;
    position: absolute;
    right: 0;
    width: 48px;
    height: 100%;
    background-color: transparent;
  }

  .switch::before,
  .switch button,
  .switch button:focus,
  .switch::after {
    content: "";
    display: block;
    position: absolute;
    width: 22px;
    height: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border: 1px solid #fff;
    transition: all 500ms ease;
    outline: 0;
  }

  .switch::before {
    top: -16px;
  }

  .switch::after {
    bottom: -16px;
  }

  .is_open .switch::before {
    top: 0;
    transform: rotate(45deg);
  }

  .is_open .switch button {
    width: 0;
  }

  .is_open .switch::after {
    bottom: 0;
    transform: rotate(135deg);
  }
}

/* ImageFlux 読み込みフッター
 * ======================================== ======================================== */

/* トライアル開始までの流れ
 * ---------------------------------------- */
.layout_try {
  min-height: 400px;
  padding: 56px 0;
  background-color: #faf9f6;
}

.layout_try h3 {
  margin-bottom: 32px;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
}

.trial_step_list {
  display: flex;
  margin: 32px 0;
  justify-content: space-around;
}

.trial_step {
  position: relative;
  width: 296px;
  height: 160px;
  padding: 24px 0;
  background-color: #fff;
  text-align: center;
}

.trial_step::before,
.trial_step::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  top: 0;
  border: 0 solid;
  border-width: 80px 16px;
}

.trial_step::before {
  border-color: #fff;
  border-left-color: #faf9f6;
  left: -16px;
}

.trial_step::after {
  border-color: #faf9f6;
  border-left-color: #fff;
  right: -16px;
}

.step_title {
  margin-bottom: 8px;
  color: #447af2;
}

.step_title .step_number {
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
}

.step_title .main_text {
  display: block;
  font-size: 16px;
  line-height: 32px;
}

.layout_try .footnote {
  color: #464646;
  font-size: 13px;
  line-height: 24px;
}

@media (max-width: 800px) {
  .layout_try {
    min-height: auto;
    padding: 48px 0;
  }

  .trial_step_list {
    flex-direction: column;
    margin-bottom: 8px;
    align-items: center;
  }

  .trial_step {
    width: 100%;
    max-width: 342px;
    height: auto;
    min-height: 120px;
    margin-bottom: 8px;
    padding: 24px;
    text-align: left;
  }

  .trial_step::before,
  .trial_step::after {
    display: none;
  }

  .trial_step br {
    display: none;
  }
}

/* トライアル申込み、お問い合わせ
 * ---------------------------------------- */
.layout_call_to_action {
  min-height: 296px;
  padding: 56px 0;
  background: #4d85f4 no-repeat bottom center;
  background-image: url(../img/include/img_bg_footer.svg);
  background-size: 800px;
}

.layout_call_to_action h3 {
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.try_signup_list {
  display: flex;
  margin: 40px 0;
  justify-content: center;
}

.try_signup_list a {
  display: flex;
  width: 268px;
  height: 64px;
  margin: 0 8px;
  border-radius: 2px;
  color: #fff;
  font-size: 17px;
  justify-content: center;
  align-items: center;
}

.try_signup_list .signup_trial a {
  background-color: #fff;
  color: #0358ff;
}

.try_signup_list .signup_trial a:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.signup_contact a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.layout_call_to_action .footnote {
  color: #fff;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 800px) {
  .layout_call_to_action h3 {
    line-height: 32px;
  }

  .try_signup_list {
    flex-direction: column;
    align-items: center;
  }

  .try_signup_list .signup_trial {
    margin-bottom: 24px;
  }
}

/* ImageFlux フッターナビ（資料ダウンロード、ドキュメント、サポートサイト他）
 * ---------------------------------------- */
.layout_footer_navi {
  height: 144px;
  min-height: 144px;
  background-color: #fff;
}

.layout_footer_navi .inner {
  display: flex;
  height: 100%;
  align-items: center;
}

.layout_footer_navi .imageflux_logo {
  flex: 0 0 200px;
}

.layout_footer_navi .imageflux_logo img {
  width: 148px;
  height: 32px;
}

.footer_navi {
  display: flex;
  flex: 1 1 auto;
}

.document_list {
  display: flex;
  flex: 1 1 auto;
}

.document_list li {
  display: flex;
  width: 120px;
  height: 64px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
}

.document_list a {
  color: #447af2;
}

.document_list a:hover {
  opacity: 0.7;
}

.feedback_list {
  display: flex;
  flex: 0 0 354px;
  justify-content: space-between;
}

.feedback_list a {
  display: flex;
  width: 170px;
  height: 60px;
  position: relative;
  border: 1px solid #ebe9e2;
  color: #447af2;
  font-size: 13px;
  font-weight: bold;
  align-items: center;
}

.feedback_list a:hover {
  background-color: #f0f0f0;
}

.feedback_list i,
.feedback_list img {
  display: block;
  position: absolute;
  left: 16px;
}

.feedback_list i {
  font-size: 32px;
}

.feedback_list img {
  margin-top: -4px;
  width: 20px;
  height: 32px;
}

.twitter .main_text {
  display: block;
  margin-left: 56px;
}

.feedback .main_text {
  display: block;
  margin-left: 48px;
}

@media (max-width: 800px) {
  .layout_footer_navi {
    height: auto;
    padding: 32px 0;
  }

  .layout_footer_navi .inner {
    flex-direction: column;
  }

  .layout_footer_navi .imageflux_logo {
    flex: 0 0 auto;
    width: 100%;
  }

  .footer_navi {
    flex-direction: column;
  }

  .document_list {
    margin: 24px 0;
  }

  .feedback_list {
    flex: 0 0 auto;
  }
}

/* ImageFlux コンテンツエリア
 * ======================================== ======================================== */

/* 共通指定
 * ---------------------------------------- */
.imageflux_contents h2 {
  padding: 80px 0 64px;
  color: #1f1f1f;
  font-size: 26px;
  line-height: 44px;
}

.behave_as_button {
  display: flex;
  border: 1px solid #447af2;
  border-radius: 3px;
  background-color: #fff;
  color: #447af2;
  justify-content: center;
  align-items: center;
}

.behave_as_button:hover {
  background-color: #f9f9f9;
  text-decoration: none;
}

@media (max-width: 800px) {
  .imageflux_contents h2 {
    padding: 56px 0 32px;
    font-size: 24px;
  }
}

/* ヒーローエリア
 * ---------------------------------------- */
.layout_hero {
  position: relative;
  min-height: 480px;
  padding-top: 64px;
  background-color: #447af2;
}

.only_top {
  min-height: 400px;
}

.hero_text_only {
  background: #447af2 no-repeat calc(50% - 160px) 0;
  background-image: url(../img/top/img_hero.png);
  background-size: 1400px;
}

.catch_copy {
  margin-bottom: 40px;
  color: #fff;
  font-weight: bold;
}

.catch_copy .sub_text {
  display: block;
  font-size: 24px;
}

.catch_copy .main_text {
  display: block;
  font-size: 32px;
}

.signup_trial .behave_as_button {
  width: 260px;
  height: 56px;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 800px) {
  .layout_hero {
    padding-top: 32px;
  }

  .hero_text_only {
    background-position: 100% 100px;
    background-size: 1300px;
  }

  .catch_copy {
    font-size: 26px;
  }

  .layout_hero .signup_trial .behave_as_button {
    position: absolute;
    top: 450px;
    left: 0;
    right: 0;
    margin: auto;
    border: 0;
    box-shadow: 0 3px 6px #00000029;
  }

  .only_top .signup_trial .behave_as_button {
    top: 370px;
  }
}

@media (max-width: 400px) {
  .hero_text_only {
    background-position: calc(50% - 210px) 120%;
    background-size: 800px;
  }
}

/* サービスリスト
 * ---------------------------------------- */
.layout_service_summary {
  padding-bottom: 104px;
}

.service_summary {
  display: flex;
  margin-bottom: 64px;
}

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

.service_logo {
  flex: 0 0 224px;
  height: 136px;
  margin-right: 64px;
  border: 1px solid #afafaf;
}

.service_logo a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.service_logo img {
  height: 50%;
}

.summary_body h3 {
  margin-bottom: 16px;
  color: #1f1f1f;
  font-size: 22px;
  line-height: 36px;
}

.summary_body h3 .sub_text {
  font-size: 15px;
  font-weight: normal;
  vertical-align: baseline;
}

.summary_body p {
  font-size: 15px;
  line-height: 24px;
}

.summary_body .news_text {
  background: #eaf1ff;
  padding: 1.5rem 2rem;
  margin: 0.9rem 0 0.5rem;
}

.summary_body .news_text p span {
  background: #fff;
  color: #447af2;
  font-weight: bold;
  padding: 0.2rem 0.7rem;
  margin-right: 1rem;
}

.summary_body .news_text p a {
  font-weight: bold;
}

.link_to_detail {
  margin-top: 16px;
}

.link_to_detail .behave_as_button {
  width: 184px;
  height: 44px;
}

@media (max-width: 800px) {
  .layout_service_summary {
    padding-bottom: 56px;
  }

  .service_summary {
    flex-direction: column;
  }

  .service_logo {
    flex: 0 0 132px;
    width: 100%;
    max-width: 336px;
    margin-right: 0;
    margin-bottom: 24px;
  }

  .summary_body .main_text {
    display: block;
    line-height: 28px;
  }

  .link_to_detail {
    margin-top: 24px;
  }

  .link_to_detail .behave_as_button {
    width: 100%;
  }
}

/* 導入企業
 * ---------------------------------------- */
.layout_trustedby {
  padding-bottom: 104px;
  background-color: #faf9f6;
}

.company_list {
  display: flex;
  flex-wrap: wrap;
}

.company_list li {
  display: flex;
  flex: 0 0 184px;
  height: 96px;
  margin-right: 8px;
  margin-bottom: 8px;
  border: 1px solid #f0eee9;
  background-color: #fff;
  justify-content: center;
  align-items: center;
}

.company_list li img {
  display: block;
  max-height: 100%;
}

.company_list li .logo_hey {
  height: 40px;
}

.layout_trustedby .footnote {
  margin-top: 16px;
  color: #464646;
  font-size: 13px;
  line-height: 24px;
}

@media (max-width: 800px) {
  .layout_trustedby {
    padding-bottom: 56px;
  }

  .company_list li {
    flex: 0 0 104px;
    height: 64px;
  }

  .company_list li img {
    max-width: 70%;
    max-height: 70%;
  }

  .company_list li .logo_hey {
    height: 32px;
  }

  .company_list .empty {
    display: none;
  }
}

/* ニュース
 * ---------------------------------------- */
.layout_news {
  padding-bottom: 64px;
}

.layout_news h2 {
  padding: 80px 0 32px;
  color: #4d85f4;
}

.news_list {
  margin-bottom: 16px;
}

.news_list li {
  border-bottom: 1px solid #e3e0d8;
  line-height: 24px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.link_to_sakuranews {
  text-align: right;
}

@media (max-width: 800px) {
  .layout_news h2 {
    padding: 40px 0 24px;
  }

  .news_list li {
    line-height: 24px;
    padding: 16px 0;
  }

  .timestamp {
    display: block;
    margin-bottom: 8px;
  }
}

/* 導入企業（画像変換、Livestreming共通）
 * ---------------------------------------- */
.layout_poweredby {
  display: flex;
  background: #f9f8f5;
}

.layout_poweredby .inner {
  display: flex;
  min-height: 136px;
  margin: 0 auto;
  align-items: center;
}

.layout_poweredby ul {
  display: flex;
  margin: 0;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}

.layout_poweredby li {
  color: #9d9699;
  font-size: 12px;
  margin: 0 16px;
}

.layout_poweredby li img {
  max-height: 48px;
  position: relative;
  vertical-align: middle;
}

.layout_poweredby li .hey {
  height: 40px;
}

.layout_poweredby li .omunibus {
  max-width: 146px;
}

@media (max-width: 800px) {
  .layout_poweredby .inner {
    flex-direction: column;
    padding: 32px 0;
  }

  .layout_poweredby ul {
    width: 100%;
  }

  .layout_poweredby li {
    margin: 0;
    text-align: center;
  }

  .layout_poweredby .title {
    padding: 24px 0;
    text-align: center;
  }

  .layout_poweredby li img {
    max-width: 100%;
    max-height: 28px;
  }

  .poweredby {
    flex-direction: column;
  }

  .trustedby {
    flex-wrap: wrap;
  }

  .trustedby li {
    display: flex;
    width: 50%;
    max-width: 160px;
    min-height: 64px;
    justify-content: center;
    align-items: center;
  }

  .trustedby .title {
    width: 100%;
    max-width: 100%;
  }
}

/* お客様の声（画像変換、Livestreming共通）
 * ---------------------------------------- */
.layout_uservoice {
  padding-bottom: 80px;
  background-color: #fff;
  font-size: 15px;
  overflow: hidden;
}

.layout_uservoice h2 {
  color: #52474d;
}

.layout_voices {
  display: flex;
  position: relative;
  justify-content: space-between;
}

.layout_voices li {
  flex: 1 1 100%;
  min-width: 232px;
  margin-right: 16px;
  padding: 0 16px 24px;
  border-radius: 2px;
  background: white;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.layout_voices li:last-child {
  margin-right: 0;
}

.user-logo {
  display: flex;
  width: 100%;
  max-width: 216px;
  min-height: 70px;
  margin: 32px auto 40px;
  justify-content: center;
  align-items: center;
}

.user-logo img {
  display: block;
  max-width: 100%;
  max-height: 70px;
}

.user-logo .f_hey {
  max-height: 56px;
}

.layout_voices li p {
  text-align: left;
  color: #52474d;
  padding: 0 12px;
  line-height: 1.8;
}

.layout_voices li a {
  text-align: left;
  color: #447af2;
  padding: 0 12px;
  line-height: 1.8;
}

@media (max-width: 800px) {
  .layout_voices {
    flex-direction: column;
  }

  .layout_voices li {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    padding-bottom: 32px;
  }

  .layout_voices li a {
    display: block;
    text-align: right;
  }
}

/* よくある質問（画像変換、LiveAppで共通）
 * ---------------------------------------- */
.layout_faq {
  padding-bottom: 104px;
}

.faq {
  padding-left: 32px;
  border-bottom: 1px solid #e8e7de;
}

.question {
  position: relative;
  padding: 24px 32px 16px 0;
  color: #447af2;
  font-size: 16px;
  line-height: 32px;
/*  cursor: pointer;*/
}

.question::before {
  content: "Q";
  display: inline-block;
  margin-right: 32px;
  font-size: 21px;
  font-weight: bold;
}

/*.question::after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  margin: auto;
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 0;
  border: 2px solid;
  border-color: #000 transparent transparent #000;
  transform: rotate(45deg);
}*/

/*.is_close .question::after {
  border-color: transparent #000 #000 transparent;
}*/

.question .text {
  vertical-align: top;
}

.answer {
  position: relative;
  padding: 8px 0 16px 56px;
  font-size: 16px;
}

/*.is_close .answer {
  display: none;
}*/

.answer::before {
  content: "A";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 21px;
  font-weight: bold;
}

.answer p {
  margin-bottom: 8px;
}

.link_to_faq .behave_as_button {
  width: 232px;
  height: 56px;
  margin: 48px auto 0;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 800px) {
  .faq {
    padding-left: 0;
  }

  .question {
    margin-left: 32px;
    padding: 32px 32px 24px 0;
    text-indent: -16px;
  }

  .question::before {
    margin-right: 8px;
  }

  .question::after {
    right: 8px;
  }

  .answer {
    padding-left: 32px;
  }
}