<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* 変数
-------------------------------------------------- */
/* ----- メディアクエリー ----- */
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

/* アクセス時演出
-------------------------------------------------- */
.delay02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay06 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.scale {
  -webkit-animation-name: scale_anime;
          animation-name: scale_anime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  transition: 0.5s ease;
}

@-webkit-keyframes scale_anime {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale_anime {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* 共通パーツ
-------------------------------------------------- */
* {
  letter-spacing: 0.1em;
  line-height: 1.4;
}

p {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #2e3337;
}

img {
  max-width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* ----- 登録リンク ----- */
.register {
  text-align: center;
}

.link_register {
  font-weight: 600;
  display: inline-block;
  background: #f3d115;
  border-bottom: 5px #eaad09 solid;
  padding: 24px;
  margin: 0 auto;
  box-shadow: 0px 0px 24px 0px rgba(234, 173, 9, 0.4);
  border-radius: 48px;
  position: relative;
  min-width: 540px;
  margin-top: 56px;
  overflow: hidden;
  transition: ease 0.2s;
  z-index: 3;
}
.link_register:after {
  content: " ";
  position: relative;
  display: inline-block;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .link_register {
    min-width: auto;
    width: 100%;
    margin-top: 32px;
    padding: 20px;
  }
}
.link_register_text {
  font-size: 32px;
  color: #463514;
  z-index: 2;
  font-weight: 600;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .link_register_text {
    font-size: 24px;
  }
}
.link_register:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #ffe346;
  width: 100%;
  height: 100%;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.link_register:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.link_register:after {
  z-index: 2;
  position: absolute;
  top: 50%;
  right: 35px;
  width: 24px;
  height: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/icon_link_yellow.svg);
}
@media only screen and (max-width: 767px) {
  .link_register:after {
    width: 22px;
    height: 22px;
    right: 25px;
  }
}
.link_register:visited {
  color: #463514;
}

.lp_wrapper .link_guide {
  font-weight: 600;
  display: inline-block;
  margin: 0 auto;
  font-size: 24px;
  margin-top: 24px;
  display: block;
  width: -webkit-fit-content;
  width: fit-content;
  width: -moz-fit-content;
}
.lp_wrapper .link_guide:after {
  content: " ";
  position: relative;
  display: inline-block;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .lp_wrapper .link_guide {
    font-size: 18px;
  }
}
.lp_wrapper .link_guide:after {
  width: 24px;
  height: 24px;
  top: 4px;
  margin-left: 8px;
}
@media only screen and (max-width: 767px) {
  .lp_wrapper .link_guide:after {
    width: 20px;
    height: 20px;
  }
}
.lp_wrapper .link_white {
  color: #fff;
  transition: ease 0.3s;
}
.lp_wrapper .link_white:after {
  background-image: url(../img/icon_link_white.svg);
}
.lp_wrapper .link_white:visited {
  color: #fff;
}
.lp_wrapper .link_white:hover {
  opacity: 0.7;
}
.lp_wrapper .link_blue {
  color: #1d74be;
  transition: ease 0.3s;
}
.lp_wrapper .link_blue:after {
  background-image: url(../img/icon_link_blue.svg);
}
.lp_wrapper .link_blue:visited {
  color: #1d74be;
}
.lp_wrapper .link_blue:hover {
  opacity: 0.7;
}
.lp_wrapper .link_detail {
  font-weight: 600;
  display: inline-block;
  margin-top: 4px;
  transition: ease all 0.2s;
  white-space: nowrap;
  display: block;
  width: -webkit-fit-content;
  width: fit-content;
  width: -moz-fit-content;
}
.lp_wrapper .link_detail:after {
  content: " ";
  position: relative;
  display: inline-block;
  background-size: contain;
}
.lp_wrapper .link_detail:after {
  width: 18px;
  height: 18px;
  top: 4px;
  margin-left: 8px;
}

/* イントロ
-------------------------------------------------- */
.intro {
  background: url(../img/mv_bg_pc.jpg) no-repeat top center;
  padding: 120px 0;
}
@media only screen and (min-width: 1940px) {
  .intro {
    background-size: cover;
  }
}
@media only screen and (max-width: 767px) {
  .intro {
    background: url(../img/mv_bg_sp.jpg) no-repeat;
    background-size: 100%;
    padding: 240px 0 48px;
  }
}
.intro .intro_inner {
  max-width: 1024px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .intro .intro_inner {
    padding: 0;
  }
}

/* ----- メインビジュアル ----- */
@media only screen and (max-width: 767px) {
  .mv {
    width: auto;
  }
}
.mv_catch {
  background-color: #fff;
  border-radius: 18px;
  padding: 4px 16px;
  color: #1d74be;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .mv_catch {
    font-size: 13px;
    line-height: 1.4;
    margin: 0px 20px;
    border-radius: 22px;
    padding: 5px 20px;
    text-align: center;
    white-space: normal;
  }
}
.mv_box {
  display: block;
}
.mv_copy {
  margin: 8px 0 0 -24px;
}
@media only screen and (max-width: 767px) {
  .mv_copy {
    margin: 8px 0 0 0;
    width: 100%;
  }
}

/* ----- 特長エリア ----- */
.feature {
  display: flex;
  margin-top: 64px;
}
@media only screen and (max-width: 767px) {
  .feature {
    flex-direction: column;
    margin-top: 0;
    padding: 0 20px;
  }
}
.feature_box {
  text-align: center;
  padding: 32px 24px 24px;
  box-shadow: 0 0 16px 0 rgba(61, 76, 88, 0.05);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-sizing: border-box;
  flex-basis: 31.5%;
}
@media only screen and (min-width: 768px) {
  .feature_box:nth-child(2) {
    margin: 0 2.5%;
  }
}
@media only screen and (max-width: 767px) {
  .feature_box {
    margin-top: 24px;
    background: #fff;
  }
}
.feature_icon {
  width: 135px;
}
@media only screen and (max-width: 767px) {
  .feature_icon {
    width: 112px;
  }
}
.feature_head {
  color: #1d74be;
  font-weight: 600;
  line-height: 1.4;
  font-size: 21px;
  margin-top: 16px;
}
.feature_text {
  font-size: 15px;
  text-align: left;
  margin-top: 8px;
}

/* ----- キャンペーンサマリー ----- */
.intro_campaign {
  background: rgba(29, 116, 190, 0.95);
  border-radius: 20px;
  box-shadow: 0 0 25px 0 rgba(29, 116, 190, 0.25);
  max-width: 880px;
  margin: 40px auto 0;
  padding: 24px 32px 24px 40px;
  display: flex;
  align-items: center;
  transition: ease 0.3s;
}
.intro_campaign:hover {
  -webkit-filter: brightness(1.12);
          filter: brightness(1.12);
}
@media only screen and (max-width: 767px) {
  .intro_campaign {
    flex-direction: column;
    padding: 32px 24px 24px;
    margin: 24px 20px 0;
    border-radius: 10px;
  }
}
.intro_campaign_head {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .intro_campaign_head {
    font-size: 22px;
  }
}
.intro_campaign_text {
  color: #fff;
  margin-top: 8px;
  font-size: 15px;
}
.intro_campaign_note {
  color: #8598aa;
  font-size: 13px;
  line-height: 1.4;
  color: #a2cef4;
  margin-top: 8px;
}
.intro_campaign .intro_left {
  flex-basis: 90%;
}
@media only screen and (max-width: 767px) {
  .intro_campaign .intro_left {
    order: 1;
  }
}
.intro_campaign .intro_right {
  text-align: center;
  margin: 16px 16px 0;
}
@media only screen and (max-width: 767px) {
  .intro_campaign .intro_right {
    width: 100%;
    margin: 0;
  }
}
.intro_campaign .intro_right * {
  color: #f3d115;
  font-weight: 600;
  line-height: 1.4;
}
.intro_campaign .intro_right .copy_main {
  font-size: 40px;
  margin-top: -16px;
}
@media only screen and (max-width: 767px) {
  .intro_campaign .intro_right .copy_main {
    margin-top: -10px;
  }
}
.intro_campaign .intro_right .copy_main .strong {
  font-size: 95px;
  letter-spacing: 4px;
}
@media only screen and (max-width: 767px) {
  .intro_campaign .intro_right .copy_main .strong {
    font-size: 65px;
  }
}
.intro_campaign_anker {
  order: 2;
  width: 30px;
  flex-basis: 4%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media only screen and (max-width: 767px) {
  .intro_campaign_anker {
    margin-top: 20px;
    width: 30px;
  }
}

/* About
-------------------------------------------------- */
.about {
  background: url(../img/content-bg.jpg) no-repeat top center;
  padding-bottom: 120px;
}
@media only screen and (min-width: 1940px) {
  .about {
    background-size: cover;
  }
}
@media only screen and (max-width: 767px) {
  .about {
    padding-bottom: 56px;
  }
}
.about .about_inner {
  max-width: 1024px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 20px;
}

/* ----- ボックス01/02共通 ----- */
.about_block_col2 {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .about_block_col2 {
    flex-direction: column;
  }
}
.about_block_col2 .content_main {
  flex-basis: 56%;
}
.about_block_col2 .figure_box {
  flex-basis: 40%;
  text-align: center;
  display: flex;
  align-items: center;
}
.about_block_col2 .figure_box .figure {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .about_block_col2 .figure_box .figure {
    margin-top: 24px;
    width: 95%;
  }
}
.about_block_col2 .about_head_sub {
  color: #1d74be;
  font-weight: 600;
}
.about_block_col2 .about_head {
  font-size: 26px;
  font-weight: 600;
  margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  .about_block_col2 .about_head {
    font-size: 24px;
  }
}
.about_block_col2 .about_text {
  margin-top: 8px;
}
.about_block_col2 .about_note {
  color: #8598aa;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 8px;
}

/* ----- ボックス02 ----- */
.flex_reverse {
  margin-top: 96px;
}
@media only screen and (max-width: 767px) {
  .flex_reverse {
    flex-direction: column-reverse;
    margin-top: 48px;
  }
}
.flex_reverse .content_main {
  order: 2;
}
.flex_reverse .figure_box {
  order: 1;
}
.flex_reverse .figure_box .figure {
  width: 95%;
}

/* ----- ボックス03/04共通 ----- */
.about_block_col1 {
  text-align: center;
  margin-top: 96px;
}
@media only screen and (max-width: 767px) {
  .about_block_col1 {
    margin-top: 48px;
  }
}
.about_block_col1 .about_head {
  font-size: 36px;
  color: #1d74be;
  font-weight: 600;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .about_block_col1 .about_head {
    font-size: 28px;
  }
}

/* ----- ボックス03 ----- */
.work_container {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .work_container {
    flex-direction: column;
    margin: 0;
  }
}
.work_container .work_categoly {
  flex-basis: 48%;
}
.work_container .work_categoly .work_head {
  color: #fff;
  padding: 3px 20px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600;
  font-size: 22px;
  margin: 0 auto;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .work_container .work_categoly .work_head {
    font-size: 18px;
    min-width: 120px;
    margin-top: 24px;
  }
}
.work_container .work_categoly .men {
  background-color: #4295dc;
}
.work_container .work_categoly .girl {
  background-color: #e17090;
}
.work_container .work_list {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.work_container .work_card {
  background-color: #1d74be;
  flex-basis: 48%;
  border-radius: 10px;
  box-shadow: 0 0 25px 0 rgba(29, 116, 190, 0.25);
}
.work_container .work_card .thumb {
  max-width: 100%;
  border-radius: 8px 8px 0 0;
}
.work_container .work_card .number {
  color: #f3d115;
  font-size: 34px;
  font-weight: bold;
  margin-top: 4px;
}
@media only screen and (max-width: 767px) {
  .work_container .work_card .number {
    font-size: 26px;
  }
}
.work_container .work_card .label {
  color: #fff;
  margin: -14px 0 12px;
}
@media only screen and (max-width: 767px) {
  .work_container .work_card .label {
    font-size: 14px;
    margin: -8px 0 8px;
  }
}
.work_container .work_note {
  color: #8598aa;
  font-size: 13px;
  line-height: 1.4;
  text-align: right;
  margin-top: 16px;
}

/* ----- ボックス04 ----- */
@media only screen and (min-width: 768px) {
  .about_block_col1 .narrow_head {
    width: 80%;
    margin: 0 auto;
  }
}
.flow {
  box-shadow: 0 0 16px 0 rgba(61, 76, 88, 0.05);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 28px 0 48px;
  position: relative;
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .flow {
    padding: 24px;
    border-radius: 10px;
    margin-top: 24px;
  }
}
.flow_chara {
  position: absolute;
  right: -20px;
  top: -40px;
}
.flow_head {
  font-size: 24px;
  font-weight: 600;
}
.flow_text {
  margin-top: 4px;
}
@media only screen and (max-width: 767px) {
  .flow_text {
    text-align: left;
  }
}
.flow_fig {
  margin-top: 20px;
}

/* ----- Earnings ----- */
.earnings_head {
  font-weight: 600;
  font-size: 22px;
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .earnings_head {
    margin-top: 32px;
  }
}
.earnings_note {
  color: #8598aa;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  margin-top: 16px;
}
.earnings_table {
  font-size: 13px;
  letter-spacing: 0em;
  width: 100%;
  border: 1px solid #bad7f1;
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .earnings_table {
    font-size: 12px;
  }
}
.earnings_table th, .earnings_table td {
  padding: 10px 12px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .earnings_table th, .earnings_table td {
    padding: 8px 10px;
  }
}
.earnings_table th {
  background-color: #1d74be;
  color: #fff;
  font-weight: 600;
}
.earnings_table tr {
  border-bottom: 1px dashed #bad7f1;
}
.earnings_table .table_head {
  border-bottom: none;
}
.earnings_table td.wholesale_price {
  background-color: #f4f9fe;
  border-right: 2px solid #bad7f1;
  color: #1d74be;
  font-weight: 600;
}
.earnings_table td.wholesale_price:last-child {
  border-right: none;
}
@media only screen and (max-width: 767px) {
  .earnings .sp_scroll {
    overflow: auto;
    white-space: nowrap;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 0 20px;
  }
}
.earnings_howto {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .earnings_howto {
    flex-direction: column;
    margin-top: 0;
  }
}
.earnings_howto_item {
  background-color: #f4f9fe;
  border-radius: 10px;
  width: 49%;
  padding: 24px;
}
@media only screen and (max-width: 767px) {
  .earnings_howto_item {
    width: 100%;
    margin-top: 20px;
  }
}
.earnings_howto_catch {
  color: #1d74be;
  font-weight: 600;
  line-height: 1.4;
  font-size: 20px;
}
.earnings_howto_icon {
  width: 50px;
  margin-top: 12px;
}
.earnings_howto .strong {
  font-weight: 600;
}
.earnings_howto .link_detail {
  margin: 8px auto 0;
}
.earnings_howto p {
  margin-top: 8px;
}

.tab_price {
  clear: both;
  width: 735px;
  height: 13px;
  margin-top: 16px;
  position: relative;
}

.tab_price li {
  float: left;
  width: 180px;
  margin-right: 3px;
}

.tab_price li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  line-height: 1.25;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: 1px solid #fff;
  border-bottom: none;
}

.tab_price li.active a {
  border-color: #c1ddf4;
  background-color: #1d74be;
  color: #fff;
}

.tab_price li a {
  border-color: #c1ddf4;
  background-color: #fff;
  color: #1d74be;
}

.tab_section {
  display: none;
  text-align: center;
}

.tab_section.active {
  display: block;
}

.attention_list {
  color: #8598aa;
  font-size: 13px;
  line-height: 1.4;
  display: none;
  text-align: left;
  margin-top: 16px;
}

.attention_list.active {
  display: block;
}

/* Support
-------------------------------------------------- */
.support {
  display: flex;
  margin: 0 auto;
  max-width: 880px;
  padding: 64px 0;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .support {
    flex-direction: column;
    padding: 56px 20px;
  }
}
.support_img {
  width: 144px;
  margin-right: 40px;
}
@media only screen and (max-width: 767px) {
  .support_img {
    margin-right: 0;
  }
}
.support_head {
  color: #1d74be;
  font-weight: 600;
  line-height: 1.4;
  font-size: 26px;
}
@media only screen and (max-width: 767px) {
  .support_head {
    font-size: 22px;
    margin-top: 24px;
  }
}
.support_text {
  margin-top: 4px;
}
.support_link {
  margin-top: 4px;
  font-weight: 600;
  display: inline-block;
}
.support_link:after {
  content: " ";
  position: relative;
  display: inline-block;
  background-size: contain;
}
.support_link:after {
  width: 18px;
  height: 18px;
  top: 4px;
  margin-left: 8px;
}

/* 多言語調整
-------------------------------------------------- */
.en_us * {
  font-family: "Rubik", "Helvetica Neue", sans-serif;
}

.zh_cn {
  font-family: "Noto Sans SC", sans-serif;
}

.zh_tw {
  font-family: "Noto Sans TC", sans-serif;
}

.ko_kr {
  font-family: "Noto Sans KR", sans-serif;
}

/* ----- 共通 ----- */
@media only screen and (min-width: 768px) {
  .short_adjust .mv .mv_copy {
    max-width: inherit;
  }
  .short_adjust .intro {
    padding: 160px 0;
    background: url(../img/mv_bg_pc_short.jpg) no-repeat top center;
  }
  .short_adjust .feature {
    margin-top: 100px;
  }
  .short_adjust .intro_campaign {
    max-width: 720px;
    margin: 56x auto 0;
  }
  .short_adjust .campaign_head {
    margin-top: 24px;
  }
  .short_adjust .campaign_text {
    margin-top: 12px;
  }
  .short_adjust .campaign_box_head .strong {
    margin-top: -12px;
  }
  .short_adjust .support {
    max-width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .short_adjust .intro {
    padding: 300px 0 48px;
    background: url(../img/mv_bg_sp_short.jpg) no-repeat;
    background-size: 100%;
  }
  .short_adjust .campaign_catch:before, .short_adjust .campaign_catch:after {
    width: 14px;
    top: 0;
  }
  .short_adjust .campaign_head {
    margin-top: 8px;
    line-height: 1.4;
  }
  .short_adjust .campaign_box_head .strong {
    margin-top: -12px;
  }
}
/* ----- 台湾 ----- */
@media only screen and (min-width: 768px) {
  .zh_tw .earnings_howto_item {
    width: 32%;
  }
}
/* ----- 韓国 ----- */
@media only screen and (min-width: 768px) {
  .ko_kr .intro {
    padding: 160px 0 120px;
  }
  .ko_kr .about {
    background: url(../img/content-bg_pc_ko_kr.jpg) no-repeat top center;
  }
  .ko_kr .campaign_head {
    margin-top: 24px;
    line-height: 1.4;
  }
  .ko_kr .campaign_head .strong {
    line-height: 0.8;
  }
}
@media only screen and (max-width: 767px) {
  .ko_kr .intro {
    background: url(../img/mv_bg_sp_ko_kr.jpg) no-repeat;
    background-size: 100%;
    padding: 240px 0 48px;
  }
}
.comic {
  padding-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .comic {
    padding-bottom: 80px;
  }
}
.comic_inner {
  border-radius: 20px;
  box-shadow: 0 0 16px 0 rgba(61, 76, 88, 0.05);
  background-color: #fff;
  padding: 40px 24px;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .comic_inner {
    flex-direction: column;
    padding: 0;
    background: none;
    box-shadow: none;
  }
}
.comic_img {
  min-width: 0;
}
@media only screen and (max-width: 767px) {
  .comic_img:first-child {
    margin-bottom: 24px;
  }
}

/* ----- 中国 ----- */
.zh_cn .intro {
  padding: 136px 0 160px;
}
@media only screen and (max-width: 767px) {
  .zh_cn .intro {
    padding: 230px 0 48px;
  }
}
.zh_cn .work_list {
  display: flex;
  margin-top: 32px;
  justify-content: space-between;
  -webkit-column-gap: 3%;
     -moz-column-gap: 3%;
          column-gap: 3%;
}
@media only screen and (max-width: 767px) {
  .zh_cn .work_list {
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.zh_cn .work_list .work_card {
  box-shadow: 0 0 25px 0 rgba(29, 116, 190, 0.25);
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .zh_cn .work_list .work_card {
    margin-bottom: 12px;
    flex-basis: 48%;
    box-shadow: none;
  }
}
.zh_cn .work_list .thumb {
  border-radius: 10px;
}

/* 言語切り替えボタン
-------------------------------------------------- */
.lp_header {
  overflow: visible;
}

.header_right {
  margin-left: auto;
  display: flex;
}

.header_dropdown_nav {
  position: relative;
  padding-left: 8px;
  height: 100%;
  display: inline-flex;
  margin-right: 16px;
}

.header_dropdown_nav_Link {
  display: flex;
  position: relative;
  align-items: center;
  cursor: pointer;
  height: 100%;
  color: #2e3337;
}

.header_dropdown_nav_Link.type_index {
  color: #666;
}

.header_dropdown_nav_Link:link,
.header_dropdown_nav_Link:visited {
  color: #2e3337;
}

.header_dropdown_nav_Link:hover {
  opacity: 0.8;
  text-decoration: none;
}

.header_dropdown_nav.type_language .header_dropdown_nav_Link::before {
  margin-right: 4px;
  background: url(../img/icon_globe.svg);
  width: 14px;
  height: 14px;
  content: " ";
}

.header_dropdown_nav_Link::after {
  display: block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: -4px 0 0 6px;
  box-shadow: -1px -1px 0 #2e3337 inset;
  width: 8px;
  height: 8px;
  content: "";
}

.header_dropdown_nav_Link:hover::after {
  box-shadow: -1px -1px 0 #2e3337 inset;
}

.header_dropdown_nav_group {
  display: block;
  position: absolute;
  top: 20px;
  right: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 5500;
  transition: all 0.2s ease-out;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background: #fff;
  width: 200px;
}

.header_dropdown_nav_group.is_active {
  top: 30px;
  visibility: visible;
  opacity: 1;
}

.header_dropdown_nav_group.type_index {
  right: -10px;
}

.header_dropdown_nav_group.is_active.type_index {
  top: 38px;
  right: -10px;
}

.header_dropdown_list {
  padding: 5px 0;
}

.header_dropdown_list &gt; li {
  line-height: 1;
  text-align: left;
}

.header_dropdown_list &gt; li &gt; a {
  display: block;
  position: relative;
  padding: 12px 10px 12px 30px;
  color: #2e3337;
  text-decoration: none;
}

.header_dropdown_list &gt; li &gt; a:hover {
  background: #f1f5f9;
}

.header_dropdown_list &gt; li.is-selected &gt; a {
  pointer-events: none;
  color: #1d74be;
}

.header_dropdown_list &gt; li.is-selected &gt; a::before {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 30px;
  font-family: "Font Awesome 5 pro";
  font-size: 14px;
  font-weight: 200;
  content: "\f00c";
}

/* Alibaba
-------------------------------------------------- */
.infomation {
  padding: 80px 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .infomation {
    padding: 48px 20px;
  }
}
.infomation_head {
  font-size: 28px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .infomation_head {
    font-size: 22px;
  }
}
.infomation_banner {
  margin-top: 24px;
  transition: ease 0.3s;
}
.infomation_banner:hover {
  opacity: 0.8;
}
.infomation_text {
  margin-top: 16px;
}
.infomation_box {
  text-align: left;
  width: 920px;
  margin: 32px auto 0;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .infomation_box {
    width: auto;
    padding: 0;
  }
}
.infomation_question, .infomation_answer {
  line-height: 1.6;
  font-size: 14px;
  padding: 0 20px 0 32px;
}
.infomation_question:before, .infomation_answer:before {
  font-size: 17px;
  font-weight: bold;
  margin: 0 8px 0 -20px;
}
.infomation_question a, .infomation_answer a {
  color: #1d74be;
}
.infomation_question {
  padding-top: 20px;
  margin-bottom: 4px;
}
.infomation_question:before {
  content: "Q";
  color: #1d74be;
}
.infomation_question:first-child {
  border-top: 1px solid #dde3e9;
}
.infomation_answer {
  padding-bottom: 20px;
  border-bottom: 1px solid #dde3e9;
}
.infomation_answer:before {
  content: "A";
  color: #e3547d;
}

.lp_header .weibo {
  display: block;
  margin-left: auto;
  background: #e61a31;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  box-sizing: border-box;
  padding: 0.4em 0.8em;
  font-size: 1.2rem;
}
.lp_header .weibo:before {
  content: "\f18a";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  margin-right: 0.3em;
  font-size: 1.4rem;
}

/* ----- ポップアップ ----- */
.fixed-attention {
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  max-width: 640px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 16px 24px;
  border-radius: 4px;
  bottom: 40px;
  z-index: 1000;
  transition: all 0.3s ease;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .fixed-attention {
    padding: 12px 24px;
    bottom: 20px;
    border-radius: 8px;
    margin: 0 20px;
  }
}
.fixed-attention.hide {
  opacity: 0;
  visibility: hidden;
  bottom: -10px;
}
.fixed-attention.ever-hide {
  display: none;
}
.fixed-attention p {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .fixed-attention p {
    font-size: 13px;
  }
}
.fixed-attention a {
  color: #ffff00;
  text-decoration: underline;
}
.fixed-attention .wrap-fixed-attention-close {
  position: relative;
  cursor: pointer;
  margin-left: 24px;
}
.fixed-attention .wrap-fixed-attention-close::before {
  display: inline;
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  color: #fff;
}/*# sourceMappingURL=lp.css.map */</pre></body></html>