@charset "utf-8";

/* ==== 共通定義 ==== */
* {
  box-sizing: border-box;
}

/* レスポンシブでの表示/非表示 */
@media screen and (max-width: 720px) {
  .shown_pc {
    display: none;
  }  
}
@media screen and (min-width: 721px) {
  .shown_tab, .shown_sp {
    display: none;
  }  
}

/* 中央寄せ */
.flex_centerize {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

/* セクション全般 */
.section_title {
  margin-bottom: 32px;
}
.section_description {
  width: 90%;
  max-width: 960px;
  margin: 0 auto 64px;
}
@media screen and (max-width: 720px) {
  .section_description {
    width: 100%;
  }
}

/* 1カラム/2カラム */
.description_one_column {
  width: 468px;
  margin: auto;
}

.description_two_columns {
  width: 100%;
  max-width: 960px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.description_two_columns > *,
.description_two_columns > div > img {
  width: 468px;
}
.description_one_column > p,
.description_two_columns > div > p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1.75em;
}

.description_one_column.low_lineheight > p,
.description_two_columns > div.low_lineheight > p {
  line-height: 1.5;
  margin-bottom: 1.5em;
}

.description_two_columns > div > ul {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1em;
}
.description_two_columns > div > ul li:before {
  content: '■ ';
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: #0050a0;
}

.description_one_column > p:last-child,
.description_two_columns > div > p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 720px) {
  .description_one_column {
    width: calc(100% - 40px);
    max-width: 468px;
  }
  
  .description_two_columns {
    width: calc(100% - 40px);
    max-width: 468px;
    flex-direction: column;
    margin: auto;
  }
  .description_two_columns.sp_rev {
    flex-direction: column-reverse;
  }

  .description_two_columns > *,
  .description_two_columns > div > img {
    width: 100%;
  }
  .description_two_columns > * {
    margin-bottom: 16px;
  }
  
  .description_two_columns > div > ul {
    font-size: 18px;
    white-space: nowrap;
  }
  .description_two_columns > div > ul li:before {
    font-size: 18px;
  }
  
  .description_one_column > p:last-child,
  .description_two_columns > div > p:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 374px) {
  .description_two_columns > div > ul {
    font-size: 16px;
  }
}

/* 画像の枠線 */
.img_border {
  border: solid 1px #c8cdd2;
}

/* ボタン、ボタン型リンク */
.btn {
	display: block;
	width: 100%;
	height: 32px;
	border-radius: 8px;
	color: #fff;
	line-height: 1.25;
}
.btn:hover {
	color: #fff;
}
.green_btn {
	background-color: #8bc34a;
	box-shadow: 0 3px 0 0 #639b22;
}
.green_btn:hover {
	background-color: #a2db62;
}
.green_btn:active {
  position: relative;
  top: 3px;
  box-shadow: none;
}
.orange_btn {
  background-color: #ff3c19;
  box-shadow: 0 3px 0 0 #d71400;
}
.orange_btn:hover {
  background-color: #ff6441;
}
.orange_btn:active {
  position: relative;
  top: 3px;
  box-shadow: none;
}
.yellow_btn {
  background-color: #ffff00;
  box-shadow: 0 3px 0 0 #e1e100;
  color: #5a5f64;
}
.yellow_btn:hover {
  background-color: #ffff80;
  color: #969BA0;
}
.yellow_btn:active {
  position: relative;
  top: 3px;
  box-shadow: none;
}

/* 動画制作の詳細はこちら */
.link_video_page {
  margin-top: 32px;
}

.link_video_page .btn {
  width: 296px;
  height: 64px;
  font-size: 24px;
  display: flex;
}

/* 今すぐお気軽にご相談ください(override) */
.service_contact_message {
  position: relative;
  height: 344px;
  background-color: #ff0000;
}
.service_contact_message_main {
  padding-top: 40px;
}
.plan_contact_staff_left {
  position: absolute;
  left: calc(50% - 496px);
  bottom: 0;
  width: 160px;
}
.plan_contact_staff_right {
  position: absolute;
  right: calc(50% - 496px);
  bottom: 0;
  width: 168px;
}
@media screen and (max-width: 960px) {
  .plan_contact_staff_left,
  .plan_contact_staff_right {
    display: none;
  }
}
@media screen and (max-width: 720px) {
  .service_contact_message {
    height: auto;
    padding: 24px 0;
  }
  .service_contact_message_main {
    padding-top: 0;
  }
  .service_contact_caution {
    width: calc(100% - 40px);
    margin: auto;
    text-align: left;
  }
}
/* 次のセクションは上を空ける */
.service_contact_message + section {
  margin-top: 108px;
}
@media screen and (max-width: 720px) {
  .service_contact_message + section {
    margin-top: 72px;
  }
}

/* title_main(override) */
@media screen and (max-width: 640px) {
  .title_main {
    font-size: 24px;
  }
}
/* ==== 共通定義 ここまで ====  */

/* ファーストビュー */
.section_firstview {
  width: 100%;
  height: 464px;
  background-image: url('/images/youtube/first_bg_pc.jpg');
  background-size: cover;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.section_firstview h2, .section_firstview li, .section_firstview span {
  color: #ffffff;
}

.firstview_block_left {
  width: 304px;
  height: 464px;
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
}

.firstview_block_left img {
  width: 416px;
  height: 464px;
  vertical-align: bottom;
}

.firstview_block_right {
  margin-left: 24px;
}

.firstview_block_right h2 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  margin: 40px 0 26px;
}
.firstview_block_right h2 .num_montseratt {
  font-size: 60px;
}
.first_catch_kerning_01 {
  letter-spacing: -6px;
}
/* .first_catch_kerning_02 {
  letter-spacing: -4.5px;
} */

.firstview_list_catch {
  font-size: 24px;
  font-weight: 600;
  line-height: 2;
}

.firstview_list_cards {
  width: 632px;
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
}

.firstview_card_item {
  width: 195px;
  height: 144px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  background-color: rgba(255,255,255,0.3);
}
.firstview_card_item.card_01 {
  line-height: 1;
}
/* .firstview_card_item.card_01 > span:first-child {
  margin-bottom: 8px;
}
.firstview_card_item.card_03 > span:first-child,
.firstview_card_item.card_03 > span:nth-child(2) {
    margin-bottom: 4px;
} */
.card_item_notice {
  font-size: 10px;
  font-weight: 300;
  margin-top: 10px;
}
.first_card_text_small {
  font-size: 18px;
}
.first_card_text_heavy,
.first_card_text_large,
.first_card_text_x_large {
  font-weight: 800;
}
.first_card_text_large {
  font-size: 32px;
}
.first_card_text_x_large {
  font-size: 40px;
}
.first_card_num_large {
  font-size: 36px;
}
.first_card_num_x_large {
  font-size: 64px;
}

.first_underline {
  position: relative;
}
.first_underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #ffff00;
}
@media screen and (max-width: 960px) {
  .firstview_block_right {
    margin-left: 0;
  }
  
  .firstview_block_right h2 {
    font-size: 48px;
    max-width: 9em;
  }
  
  .firstview_list_catch {
    font-size: 20px;
  }
  
  .firstview_list_cards {
    width: calc(100vw - 304px);
    margin-top: 0;
  }
  
  .firstview_card_item {
    width: calc(100% / 3 - 8px);
    font-size: 20px;
  }
  .first_card_text_small {
    font-size: 16px;
  }
  .first_card_text_large {
    font-size: 28px;
  }
  .first_card_text_x_large {
    font-size: 32px;
  }
  .first_card_num_large {
    font-size: 32px;
  }
  .first_card_num_x_large {
    font-size: 48px;
  }
}

@media screen and (max-width: 720px) {
  .section_firstview {
    position: relative;
    height: 558px;
    margin-top: 56px;
  }
  
  .firstview_block_left {
    position: absolute;
    width: 178px;
    height: 300px;
    left: 0;
    bottom: 0;
  }
  
  .firstview_block_left img {
    width: 200px;
    height: 300px;
  }
  
  .firstview_block_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: calc(100% - 40px);
    margin: 8px auto;
  }
  
  .firstview_block_right h2 {
    font-size: 40px;
    line-height: 1.25;
    margin: 8px auto 4px 0;
  }
  .firstview_block_right h2 .num_montseratt {
    font-size: 44px;
    line-height: calc(50 / 44);
  }
  
  .first_catch_kerning_01 {
    letter-spacing: 0px;
  }
  .first_catch_kerning_02 {
    letter-spacing: 0px;
  }
  .firstview_list_catch > li:last-child .first_catch_kerning_01 {
    letter-spacing: -4.5px;
  }
  
  .firstview_list_catch {
    font-size: 18px;
    line-height: 1.25;
  }
  .firstview_list_catch > li {
    margin-bottom: 10px;
  }
  .firstview_list_catch > li:last-child {
    margin-bottom: 14px;
  }
  
  .firstview_list_cards {
    width: 176px;
    display: flex;
    flex-direction: column;
    margin-top: 0;
  }
  
  .firstview_card_item {
    width: 176px;
    height: 72px;
    font-size: 16px;
    margin-bottom: 8px;
  }
  .firstview_card_item.card_02,
  .firstview_card_item.card_03 {
    font-size: 24px;
    line-height: 1.25;
  }
  .firstview_card_item.card_02 {
    height: 120px;
  }
  .firstview_card_item.card_03 {
    height: 72px;
  }
  .firstview_card_item.card_01 > span:first-child {
    margin-bottom: 4px;
  }
  /* .firstview_card_item.card_03 > span:first-child,
  .firstview_card_item.card_03 > span:nth-child(2) {
      margin-bottom: 4px;
  } */
  .card_item_notice {
    display: block;
    width: 144px;
    text-align: left;
    line-height: 1.25;
    margin: 8px auto 0;
  }
  .first_card_text_small {
    font-size: 16px;
  }
  .first_card_text_large {
    font-size: 24px;
  }
  .first_card_text_x_large {
    font-size: 32px;
  }
  .first_card_num_large {
    font-size: 27px;
  }
  .first_card_num_x_large {
    font-size: 32px;
  }
}
@media screen and (max-width: 374px) {
  .firstview_block_left {
    left: calc(100vw - 375px);
  }
  .firstview_block_right h2 {
    font-size: 36px;
  }
}

/* Google Premier Partner Awards 2019 動画広告部門日本国内第1位 受賞の実力 */
.section_awards {
  margin-top: -40px;
  margin-bottom: 108px;
}
.solution_lead {
  font-size: 24px;
  margin-bottom: 24px;
}

@media screen and (max-width: 720px) {
  .section_awards {
    margin-top: 32px;
    margin-bottom: 72px;
  }
  .solution_lead {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}

/* グラッドキューブの強み */
.strength_cards {
  display: flex;
  justify-content: space-between;
  width: 960px;
  margin: auto;
}

.strength_cards .card {
  width: 304px;
  height: 403px;
  border: solid 1px #ebf0f5;
  border-radius: 8px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
}
.strength_cards .card:hover {
  border: solid 4px #96b4e1;
  box-shadow: 0 2px 12px 0 #96b4e1;
  top: -3px;
}
.strength_cards .card:active {
  border: solid 4px #0050a0;
  box-shadow: 0 2px 12px 0 #96b4e1;
  top: -3px;
}

.strength_cards .card .card_image {
  width: 272px;
  height: 160px;
}

.number_arrow {
  width: 64px;
}
.strength_subnumber_text {
  font-family: 'Oswald';
  font-weight: bold;
  font-size: 40px;
  color: #96b4e1;
  margin: 4px;
}

.strength_cards .card .card_leads {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}
.strength_cards .card .card_leads span {
  color: #0050a0;
}
.strength_cards .card .card_description {
  width: 272px;
  text-align: left;
  margin: 16px auto;
  white-space: nowrap;
}
.strength_cards .card .card_description li {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.strength_cards .card .card_description li:before {
  content: '■ ';
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #0050a0;
}

.strength_link_plan {
  margin: 32px auto 64px;
}
.strength_link_plan .btn {
  display: flex;
  width: 272px;
  height: 64px;
  font-size: 24px;
  font-weight: bold;
}

.strength_description h4 {
  font-size: 40px;
  line-height: 1;
  color: #0050a0;
  text-align: center;
  margin: 16px auto 48px;
}

.strength_description .description_two_columns {
  align-items: flex-start;

}

/* ---- 動画制作の詳細はこちら(グラッドキューブの強み限定のmargin-bottom設定) ---- */
.strength_link_video_page {
  margin: 32px auto -12px;
}

.subsection_solution h3 {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 32px;
  text-align: center;
}

.strength_img_caption_01 {
  font-size: 14px;
  display: block;
}
.strength_img_caption_02 {
  font-size: 12px;
  display: block;
}

.strength_description ul {
  margin-bottom: 1em;
}
.strength_description ul li:before {
  content: '■ ';
  font-weight: 600;
  color: #0050a0;
}

@media screen and (max-width: 960px) {
  .strength_cards {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .strength_cards .card {
    margin-bottom: 24px
  }
  .strength_link_plan {
    margin-top: 0;
  }
}
@media screen and (max-width: 720px) {
  .strength_description {
    margin-top: 48px;
  }

  .strength_description h4 {
    font-size: 32px;
    line-height: 1.25;
    margin: 0 auto 16px;
  }
  .subsection_solution h3 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 16px;
  }
  .subsection_solution h3 .solution_kerning {
    letter-spacing: -2.5px;
    padding-right: 2.5px;
  }
}

/* 以下のお悩みをグラッドキューブが解決します。(旧ページからコピー) */
.listing_problem_list {
  display: flex;
  flex-direction: column;
  width: 87.5%;
  max-width: 796px;
  margin: auto;
  margin-top: 24px;
}
.listing_problem_item {
  display: flex;
  flex-direction: row;
  height: 136px;
  margin-bottom: 24px;
}
@media screen and (max-width: 720px) {
  .listing_problem_item {
    flex-direction: column;
    height: auto;
  }
}
.listing_problem_outline {
  width: 389.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 32px;
  line-height: 1.25;
  font-weight: bold;
  color: #fff;
  background-color: #0050a0;
}
@media screen and (max-width: 720px) {
  .listing_problem_outline {
    width: 100%;
    font-size: 24px;
    padding: 8px 0 0;
  }
}
.listing_problem_border {
  width: 17px;
  background: linear-gradient(225deg, #ebf0f5 8.5px, transparent 0), linear-gradient(-45deg, #ebf0f5 8.5px, #0050a0 0);
  background-color: #ebf0f5;
  background-size: 17px 17px;
  background-repeat: repeat-y;
}
@media screen and (max-width: 720px) {
  .listing_problem_border {
    width: 100%;
    height: 17px;
    background: linear-gradient(45deg, #ebf0f5 8.5px, transparent 0), linear-gradient(-45deg, #ebf0f5 8.5px, #0050a0 0);
    background-color: #ebf0f5;
    background-size: 17px 17px;
    background-repeat: repeat-x;
  }
}
.listing_problem_detail {
  width: 389.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 32px;
  line-height: 1.25;
  font-weight: bold;
  background-color: #ebf0f5;
}
@media screen and (max-width: 720px) {
  .listing_problem_detail {
    width: 100%;
    padding: 0 0 8px;
    font-size: 24px;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .detail_item {
    font-size: calc(1.875vw + 4.5px);
    letter-spacing: calc(0.15625vw - 1.625px);
    margin-left: calc(5vw - 28px);
  }
}
@media screen and (max-width: 720px) {
  .detail_item {
    font-size: 24px;
    letter-spacing: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 640px) {
  .detail_item {
    font-size: calc(2.5vw + 8px);
  }
}
@media screen and (max-width: 480px) {
  .detail_item {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 4px;
  }
}

/* ---- PCのみ・2つ目のitemは色反転 ---- */
@media screen and (min-width: 721px) {
  .listing_problem_item.color_rev_pc .listing_problem_outline {
    background-color: #ebf0f5;
    color: #0050a0;
  }
  .listing_problem_item.color_rev_pc .listing_problem_detail {
    background-color: #0050a0;
    color: #ebf0f5;
  }
  .listing_problem_item.color_rev_pc .listing_problem_border {
    background: linear-gradient(225deg, #0050a0 8.5px, transparent 0), linear-gradient(-45deg, #0050a0 8.5px, #ebf0f5 0);
    background-color: #0050a0;
    background-size: 17px 17px;
  }  
}

/* 動画制作の費用 */
.creative_item_list {
  display: flex;
  width: 960px;
  margin: auto;
  justify-content: space-between;
}

.creative_item {
  width: 304px;
}

.creative_item_image {
  width: 100%;
  height: 171px;
  background-color: #d8d8d8; /* ダミー箇所 */
  margin-bottom: 8px;
}

.creative_desc_subitem {
  white-space: nowrap;
}

@media screen and (max-width: 960px) {
  .creative_item_list {
    width: 304px;
    flex-direction: column;
  }
  .creative_item_list >li:not(:last-child) {
    margin-bottom: 32px;
  }
}

/* YouTube広告の特徴 */
.subsection_features {
  margin-top: 48px;
}
.feature_subsection_title {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 16px
}
.feature_subsection_catch {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 24px;
}
.feature_description {
  margin: 24px auto 32px;
}
@media screen and (max-width: 720px) {
  .feature_subsection_title {
    margin-bottom: 24px;
    line-height: 1.25;
  }
  .feature_subsection_catch {
    line-height: 1.25;;
  }
}

/* 配信の特徴 */
.feature_format_list {
  display: flex;
  width: 960px;
  margin: auto;
  justify-content: space-between;
  flex-wrap: wrap;
}
.feature_format_item {
  width: 304px;
}
.feature_format_item:nth-child(-n+3) {
  margin-bottom: 32px;
}
.feature_format_name {
  display: flex;
  align-items: center;
  width: 100%;
  height: 68px;
  font-size: 24px;
  line-height: 1.25;
  padding-bottom: 8px;
  border-bottom: solid 1px #0050a0;
}
.format_subitem_description {
  margin-bottom: 16px;
}
.feature_format_image {
  width: 304px;
}

@media screen and (max-width: 960px) {
  .feature_format_list {
    width: 100%;
    max-width: 335px;
    flex-direction: column;
  }
  .feature_format_item, .feature_format_image {
    width: 100%;
  }
  .feature_format_item {
    margin-bottom: 32px;
  }
  .feature_format_name {
    height: auto;
  }
}

/* YouTube広告の活用 */
.houtouse_catch {
  width: 504px;
  font-size: 24px;
  line-height: 1.5;
  margin: 0 auto 24px;
}
.howtouse_description {
  margin-bottom: 24px;
}
.howtouse_image {
  display: block;
  width: 632px;
  margin: 24px auto;
}
@media screen and (max-width: 720px) {
  .houtouse_catch, .howtouse_image {
    width: 100%;
    max-width: 335px;
  }
}

/* YouTube広告を使うべき理由 */
.section_reason_main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 304px 24px 304px 24px 304px;
  grid-template-columns: repeat(3, 304px);
  -ms-grid-rows: 352px 24px 320px;
  grid-template-rows: 352px 320px;
  grid-gap: 24px;
  gap: 24px;
}
.reason_subsection {
  background-color: #ebf0f5;
  width: 100%;
  height: 100%;
  margin-top: 0;
}
.reason_subsection.subsec_1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-column: 1/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 24px;
}
.reason_subsection:not(.subsec_1) {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  padding: 16px 24px 24px 24px;
}
.reason_subsection.subsec_2 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
.reason_subsection.subsec_3 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
.reason_subsection.subsec_4 {
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
}
.reason_subsection_title {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.reason_subsection.subsec_1 .reason_subsection_title {
  line-height: 1;
}
.reason_subsection.subsec_1 .reason_description {
  width: 444px;
}
.reason_description {
  background-image: url('/images/youtube/youtube_bg_icon.png');
  background-position: center;
  background-repeat: no-repeat;
}

.reason_description p {
  line-height: 1.5;
}
.reason_description p:first-of-type {
  margin-bottom: 1.5em;
}
.reason_image {
  width: 460px;
}

@media screen and (max-width: 720px) {
  .section_reason_main {
    display: flex;
    flex-direction: column;
    width: calc(100vw - 40px);
  }
  .reason_subsection.subsec_1 {
    flex-direction: column;
    padding: 16px;
  }
  .reason_subsection.subsec_1 .reason_description {
    width: 100%;
    margin-bottom: 16px;
  }
  .reason_image {
    width: 303px;
  }
  .reason_subsection:not(.subsec_1) {
    padding: 16px;
  }
}

/* サポート体制 */
.support_lead {
  font-size: 24px;
  line-height: 1.25;
  margin: 0 auto 32px;
}
@media screen and (max-width: 720px) {
  .section_support {
    margin-top: 72px;
  }
}

/* 料金体系 */
.section_plan .plan_main{
  background-color: #ff0000;
  padding-top: 40px;
}
.plan_main .description_two_columns {
  margin: auto
}
.plan_main p {
  color: #ffffff;
}
.plan_main .price_table {
  max-width: 468px;
}
.plan_main .price_table td {
  height: 102px;
  text-align: center;
}
.plan_main .price_table td:first-child {
  background-color: #ebf0f5;
  width: 164px;
}
.plan_main .price_table .price_caption {
  display: block;
  font-size: 12px;
  font-weight: normal;
  margin-top: 0;
}
.plan_link_startup {
  position: relative;
  z-index: 1;
}
.plan_link_startup .btn {
  width: 402px;
  height: 64px;
  font-size: 24px;
  display: flex;
}
.plan_link_to_contact {
  width: 320px;
  height: 64px;
  font-size: 24px;
  display: flex;
}
/* override */
.price_table th, .price_table td {
  border-color: #ff0000;
}

@media screen and (max-width: 720px){
  .section_plan .plan_main{
    padding-top: 28px;
  }
  .plan_main .price_table td {
    height: 80px;
    font-size: 16px;
  }
  .plan_main .price_table td:first-child {
    background-color: #ebf0f5;
    width: 112px;
  }
  .plan_main .price_table .pricetable_large {
    font-size: 48px;
  }
  .plan_link_startup .btn {
    width: calc(100% - 40px);
    height: 80px;
    line-height: 1.25;
    text-align: center;
  }
  .plan_link_to_contact {
    width: calc(100% - 40px);
  }
}

/* スライドショー(startup.cssからコピー) */
.slider {
	margin-top: 48px;
}
.slider_item {
	max-width: 238px;
	height: 390px;
  border: solid 1px #ebf0f5;
  margin: 42px auto;
}
.slider_item img {
	max-width: 100%;
	width: 100%;
}
.slider_item p {
  font-size: 14px;
  line-height: 2em;
  padding: 20px 28px;
  text-align: left;
}
.slick-arrow {
  position: absolute;
  top: calc(50% - 32px);
  z-index: 1;
  line-height: 2;
  background-color: #ffffff;
  color: #c8cdd2;
  text-align: center;
  height: 64px;
  width: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0px 2px 8px rgba(0,0,0,0.3));
  outline: none;
  padding: 0; /* iOSでのズレ対応用 */
}
.slick-arrow span {
  font-family: 'FontAwesome';
  color: inherit;
  font-size: 32px;
  position: relative;
  top: 2px; /* Font Awesome使用によるズレ補正 */
}
.slick-arrow:hover {
  background-color: #0050a0;
  color: #ffffff;
}
.slick-arrow:active {
  background-color: #0050a0;
  color: #ffffff;
  filter: none;
  top: calc(50% - 30px);
}
.slick-prev {
  left: 88px;
}
.slick-next {
  right: 88px;
}
/* Font Awesome使用によるズレ補正 */
.slick-prev span {
  left: -2px;
}
.slick-next span {
  left: 2px;
}
@media screen and (max-width: 720px) {
  /*results*/
  .slider {
    margin: 0 auto;
    overflow: hidden;
  }
  .slider_item {
    width: 295px;
    margin: auto;
  }

  .slick-arrow {
    top: calc(50% - 24px);
    height: 48px;
    width: 48px;
  }
  .slick-arrow span {
    font-size: 24px;
    top: 1px;
  }
  .slick-arrow:active {
    top: calc(50% - 22px);
  }
  .slick-prev {
    left: 10px;
  }
  .slick-next {
    right: 10px;
  }
}

/* 広告担当者 */
.slider_item p.staff_detail {
  line-height: 1.5;
  font-size: 16px;
  font-weight: bold;
  padding-top: 12px
}
.staff_name {
  display: block;
  font-size: 24px;
}

/* 「お問い合わせ」セクションのみ service_contact_message クラス変更 */
.service_contact .service_contact_message {
  height: 256px;
}
/* service_common.cssの記載を無理やりoverrideするので!important */
@media screen and (max-width: 720px) {
  .service_contact .service_contact_message {
    height: 203px;
  }
  .service_contact .service_contact_caution br{
    display: none !important;
  }
}

/* 「お問い合わせ」セクション画像挿入用 */
.contact_wrapper {
  position: relative;
}
.contact_wrapper .plan_contact_staff_left {
  bottom: auto;
  top: 146px;
  z-index: 1;
}
.contact_wrapper .plan_contact_staff_right {
  bottom: auto;
  top: 142px;
  z-index: 1;
}

/* FAQ(override) */
section.listing_faq {
  margin-top: 20px;
}
@media screen and (max-width: 480px) {
  .faq_question {
    font-size:  16px;
    letter-spacing: 0;
  }
}

.service_contact_form dd.service_contact_privacy{
  padding-left: calc(100% * 32 / 560);
  padding-right: calc(100% * 32 / 560);
  text-align: left;
  font-size: 15px;
  text-indent: -39px;
  margin-left: 39px;
}