@charset "UTF-8";
:root {
  --blue: #29ABE2;
  --blue-dk: #1A8BBF;
  --blue-lt: #00C1FF;
  --purple: #7955C7;
  --purple-dk: #231A30;
  --purple-lt: #F2EBF9;
  --black: #231A30;
  --bg-dk: #266988;
  --bg-md: #25769A;
  --bg-lt: #4089AA;
  --gray-lt: #F5F5F5;
  --gray-bg: #EFEFEF;
  --white: #FFFFFF;
  --border: #E5E5E5;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
html:focus {
  outline: none;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 400;
}

.font_sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

/* ----------------------------------- */
/* スマホ、PC　表示・非表示
/* ----------------------------------- */
.sp {
  display: none;
}
@media print, screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.sp_tab {
  display: none;
}
@media print, screen and (max-width: 1024px) {
  .sp_tab {
    display: block;
  }
}

@media print, screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

/* ----------------------------------- */
/* コンテナ
/* ----------------------------------- */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  transition: ease-in 0.1s;
}

@media screen and (min-width: 1025px) {
  .container {
    max-width: 1030px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 970px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 750px;
  }
}
/* ----------------------------------- */
/* clearfix
/* ----------------------------------- */
.clearfix:before,
.clearfix:after,
.container:before,
.container:after {
  content: " ";
  display: table;
}

.clearfix:after,
.container:after {
  clear: both;
}

/* ----------------------------------- */
/* フォントサイズ・余白 */
/* ----------------------------------- */
.fs12 {
  font-size: 12px !important;
}

.fs14 {
  font-size: 14px !important;
}

.fs16 {
  font-size: 16px !important;
}

.fs18 {
  font-size: 18px !important;
}

.fs20 {
  font-size: 20px !important;
}

.fs22 {
  font-size: 22px !important;
}

.fs24 {
  font-size: 24px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.w10p {
  width: 10% !important;
}

.w20p {
  width: 20% !important;
}

.w30p {
  width: 30% !important;
}

.w40p {
  width: 40% !important;
}

.w50p {
  width: 50% !important;
}

.w60p {
  width: 60% !important;
}

.w70p {
  width: 70% !important;
}

.w80p {
  width: 80% !important;
}

.w90p {
  width: 90% !important;
}

.w100p {
  width: 100% !important;
}

/* ----------------------------------- */
/* リンク */
/* ----------------------------------- */
a {
  color: var(--black);
  text-decoration: none;
  transition: all ease 0.3s;
}

a:hover,
a:focus {
  color: var(--bg-dk);
  text-decoration: none;
  transition: all ease 0.3s;
}

a:focus,
a:active,
a:hover {
  outline: 0;
  text-decoration: none;
}

a img:hover {
  opacity: 0.95;
}

/* ----------------------------------- */
/* 共通
/* ----------------------------------- */
.sub_title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--blue);
  display: block;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .sub_title {
    margin-bottom: 16px;
  }
}

.sec_title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.sec_title._white {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sec_title {
    font-size: 32px;
  }
}

p {
  text-align: justify;
  text-justify: inter-ideograph;
  margin: 0;
}

.scroll-hint-icon {
  position: absolute;
  left: 0;
  border-radius: 0 16px 16px 0;
  width: 60px;
}

.scroll-hint-text {
  font-size: 10px;
}

/* ----------------------------------- */
/* ヘッダー
/* ----------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  height: 80px;
  background-color: #fff;
}
header .header_inner {
  margin: 0 auto;
  padding: 0 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
header .logo {
  max-width: 280px;
  width: 100%;
}
header .logo a {
  display: flex;
}
header .hdr_nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 0 auto;
  padding: 0 20px 0 0;
}
header .hdr_nav li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
header .hdr_nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
}
header .hdr_nav a:hover {
  color: var(--bg-dk);
}
header .header-cta {
  font-size: 14px;
  padding: 10px;
  font-weight: 700;
  color: #ffffff;
  width: 140px;
  height: 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent linear-gradient(90deg, #32ABE2 0%, #7955C7 100%) 0% 0% no-repeat padding-box;
  border-radius: 4px;
  text-decoration: none;
}
header .header-cta:hover {
  background: transparent linear-gradient(90deg, #7955C7 0%, #32ABE2 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  header {
    height: 60px;
  }
  header .hdr_nav {
    display: none;
  }
  header .header_inner {
    padding: 0 15px;
  }
  header .logo {
    max-width: 208px;
  }
  header .header-cta {
    font-size: 12px;
    width: 100px;
    height: 40px;
  }
}

.fv_section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .fv_section {
    margin-top: 60px;
  }
}

.sticky_wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 160px;
}
@media screen and (max-width: 767px) {
  .sticky_wrapper {
    padding-top: 70px;
  }
}

.sticky_flex_row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  top: 50px;
}

.left_content_column {
  width: calc(100% - 350px);
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .left_content_column {
    width: 100%;
  }
}

.sp_price_cta {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.global_ir_text_content {
  position: relative;
}
.global_ir_text_content:before {
  content: "";
  display: block;
  background: url("../img/map.svg") no-repeat right top;
  background-size: 520px auto;
  position: absolute;
  top: -240px;
  right: 2%;
  width: 520px;
  height: 500px;
}
.global_ir_text_content .text_content_wrap p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 30px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .global_ir_text_content:before {
    display: none;
  }
  .global_ir_text_content .text_content_wrap p {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 30px;
  }
}

.right_sticky_column {
  width: 100%;
  flex-shrink: 0;
  position: absolute;
  top: 160px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  z-index: 5;
  height: calc(100% - 300px);
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  transition: ease-in 0.1s;
}

@media screen and (min-width: 1025px) {
  .right_sticky_column {
    max-width: 1030px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .right_sticky_column {
    max-width: 970px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .right_sticky_column {
    max-width: 750px;
  }
}
.fv_bg_slider {
  position: absolute;
  top: 46px;
  left: 0;
  width: 100%;
  height: 240px;
  z-index: 1;
}
.fv_bg_slider .fv_swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.fv_bg_slider .fv_swiper:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/gra_white.png") repeat-x bottom center;
  background-size: auto 120px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 3;
}
.fv_bg_slider .fv_bg_item {
  width: 100%;
  height: 100%;
  border-radius: 120px;
  overflow: hidden;
}
.fv_bg_slider .fv_bg_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .fv_bg_slider {
    height: 180px;
    top: 10px;
  }
  .fv_bg_slider:before {
    content: "";
    display: block;
    background: url("../img/map.svg") no-repeat right top;
    background-size: 172px auto;
    position: absolute;
    top: 80%;
    right: 20px;
    width: 172px;
    height: 500px;
    z-index: 2;
  }
}

.fv_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.fv_text_area {
  flex: 1;
}
.fv_text_area .fv_sub_title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
}
.fv_text_area .fv_main_copy {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}
.fv_text_area .fv_lead_copy {
  max-width: 523px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .fv_text_area .fv_sub_title {
    font-size: 24px;
    line-height: 1.2;
  }
  .fv_text_area .fv_main_copy {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .fv_text_area .fv_lead_copy {
    max-width: 215px;
    margin-bottom: 15px;
  }
}

.fv_cta_button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  background: transparent linear-gradient(180deg, #7955C7 0%, #32ABE2 100%) 0% 0% no-repeat padding-box;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  text-align: center;
  margin-top: -20px;
  margin-left: 350px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: absolute;
  top: -60px;
  right: -70px;
}
.fv_cta_button:hover {
  background: transparent linear-gradient(180deg, #32ABE2 0%, #7955C7 100%) 0% 0% no-repeat padding-box;
  color: #ffffff;
}
.fv_cta_button .fv_cta_text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  padding-bottom: 26px;
}
.fv_cta_button .fv_cta_text:before {
  content: "";
  background: url(../img/arrow_right.svg) no-repeat bottom center;
  background-size: 40px auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .fv_cta_button {
    width: 120px;
    height: 120px;
    margin-top: -20px;
    margin-left: 350px;
    font-size: 13px;
    top: -10px;
    right: -130px;
  }
  .fv_cta_button .fv_cta_text {
    font-size: 13px;
  }
  .fv_cta_button .fv_cta_text:before {
    background: url(../img/arrow_right.svg) no-repeat bottom center;
    background-size: 32px auto;
    width: 32px;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .fv_cta_button {
    right: 0;
  }
}

.grd_copy_box {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .grd_copy_box {
    display: block;
  }
}

.fv_main_image {
  width: 300px;
  height: auto;
  height: 100%;
  flex-shrink: 0;
  margin-left: auto;
}
.fv_main_image .fv_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .fv_main_image {
    margin: 0;
  }
}

.sticky_img_box {
  position: sticky;
  top: 100px;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sticky_img_box {
    position: static;
  }
}

.global_ir {
  position: relative;
  width: 100%;
  background-color: #37274E;
  color: #fff;
  padding: 80px 0 0;
}
.global_ir::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: transparent radial-gradient(closest-side at 50% 50%, #42208B 0%, #231A30 100%) 0% 0% no-repeat padding-box;
  z-index: 0;
  z-index: 1;
}
.global_ir .text_content_wrap {
  max-width: 570px;
  margin-bottom: 60px;
}
.global_ir .text_content_wrap p {
  font-size: 16px;
  line-height: 2.5;
  margin-bottom: 40px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.global_ir .text_content_wrap p:last-child {
  margin-bottom: 0;
}
.global_ir .visual_content_wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 40px;
}
.global_ir .visual_content_wrap .image_box {
  width: 480px;
  height: 320px;
  z-index: 1;
  overflow: hidden;
}
.global_ir .visual_content_wrap .image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.global_ir .visual_content_wrap .main_copy {
  width: 100%;
  margin: 0;
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.global_ir .visual_content_wrap .main_copy img {
  max-width: 920px;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .global_ir .visual_content_wrap {
    position: relative;
    display: block;
    align-items: flex-end;
    margin-top: 40px;
    view-timeline-name: --image-expand;
    view-timeline-axis: block;
  }
  .global_ir .visual_content_wrap .image_box {
    width: 480px;
    height: 320px;
    z-index: 1;
    overflow: hidden;
    animation: expand-image linear both;
    animation-timeline: --image-expand;
    animation-range: entry 0% cover 50%;
    position: relative;
    z-index: 2;
  }
  .global_ir .visual_content_wrap .image_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  @keyframes expand-image {
    from {
      transform: scale(1);
      width: 480px;
    }
    to {
      transform: scale(1);
      width: 100vw;
      height: 100vh;
      border-radius: 0;
    }
  }
}
.global_ir {
  /* @media screen and (min-width: 768px) and (max-width: 1024px) {
      .text_content_wrap {
          max-width: 385px;
          margin-bottom: 60px;
      }

      .visual_content_wrap {
          position: relative;
          display: block;
          align-items: flex-end;
          margin-top: 40px;
          view-timeline-name: --image-expand;
          view-timeline-axis: block;

          .image_box {
              width: 480px;
              height: 320px;
              z-index: 1;
              overflow: hidden;
              animation: expand-image linear both;
              animation-timeline: --image-expand;
              animation-range: entry 0% cover 50%;
              position: relative;
              z-index: 5;

              img {
                  width: 100%;
                  height: 100%;
                  object-fit: cover;
                  display: block;
              }
          }

          @keyframes expand-image {
              from {
                  transform: scale(1);
                  width: 480px;
              }

              to {
                  transform: scale(1);
                  width: 100vw;
                  height: 100vh;
                  border-radius: 0;
              }
          }

      }
  } */
}
@media screen and (max-width: 1024px) {
  .global_ir {
    padding-top: 90px;
  }
  .global_ir::before {
    width: 100%;
    height: 240px;
  }
  .global_ir .text_content_wrap p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 35px;
  }
  .global_ir .visual_content_wrap {
    margin-top: 0;
    display: block;
  }
  .global_ir .visual_content_wrap .image_box {
    width: 100%;
    height: 234px;
  }
  .global_ir .visual_content_wrap .main_copy {
    max-width: 294px;
  }
}

.scroll_wrap {
  position: relative;
  padding-bottom: 100px;
}

.scroll_down {
  position: absolute;
  bottom: 0px;
  left: 20px;
}
.scroll_down::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3.5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7955C7;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.scroll_down::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 60px;
  background: #7955C7;
}
@media screen and (max-width: 767px) {
  .scroll_down {
    display: none;
  }
}

@keyframes circlemove {
  0% {
    bottom: 60px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.reason_area {
  background: var(--gray-bg);
}
.reason_area .reason_wrap {
  display: flex;
  align-items: flex-end;
  padding: 140px 0 70px;
  justify-content: space-between;
}
.reason_area .headline_wrap {
  flex-basis: calc(100% - 500px);
  max-width: calc(100% - 500px);
  width: 100%;
}
.reason_area .text_box {
  flex-basis: 480px;
  max-width: 480px;
  width: 100%;
}
.reason_area .text_box p {
  line-height: 2;
}
.reason_area .bg1 {
  background-color: var(--bg-lt);
}
.reason_area .bg2 {
  background-color: var(--bg-md);
}
.reason_area .bg3 {
  background-color: var(--bg-dk);
}
.reason_area .feature_inner {
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.reason_area .feature_image_container {
  flex-basis: 55.555555%;
  max-width: 55.555555%;
  width: 100%;
}
.reason_area .feature_image_container .feature_image {
  width: 100%;
  height: auto;
  display: block;
}
.reason_area .feature_content {
  flex-basis: calc(100% - 60px - 55.555555%);
  max-width: calc(100% - 60px - 55.555555%);
  width: 100%;
}
.reason_area .feature_header {
  display: flex;
  align-items: baseline;
  gap: 25px;
  color: #ffffff;
  margin-bottom: 25px;
}
.reason_area .feature_header .feature_number {
  font-weight: 700;
  font-size: 56px;
}
.reason_area .feature_header .feature_main_title {
  font-weight: 700;
  font-size: 20px;
}
.reason_area .feature_sub_title {
  color: var(--blue-lt);
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 24px;
}
.reason_area .feature_description {
  line-height: 2;
  font-size: 16px;
  color: #ffffff;
}
@media screen and (min-width: 1025px) {
  .reason_area .reason_list .container {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media screen and (max-width: 1024px) {
  .reason_area .reason_wrap {
    display: block;
    padding: 60px 0;
  }
  .reason_area .reason_wrap p {
    font-size: 14px;
  }
  .reason_area .headline_wrap {
    max-width: 100%;
  }
  .reason_area .text_box {
    max-width: 100%;
  }
  .reason_area .text_box p {
    line-height: 1.6;
  }
  .reason_area .feature_inner {
    display: block;
  }
  .reason_area .feature_image_container {
    max-width: 100%;
  }
  .reason_area .feature_content {
    max-width: 100%;
  }
  .reason_area .feature_header {
    margin: 8px 0 5px;
    max-width: 100%;
  }
  .reason_area .feature_sub_title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .reason_area .feature_description {
    font-size: 14px;
    line-height: 1.6;
  }
}

.media_area {
  background-color: var(--gray-lt);
  width: 100%;
  padding: 120px 0;
}
.media_area .media_plan_header_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}
.media_area .media_plan_text_box {
  flex-basis: 60%;
  width: 60%;
}
.media_area .media_plan_description {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}
.media_area .media_plan_top_image_box {
  flex-basis: 35%;
  width: 35%;
  max-width: 320px;
  position: relative;
  top: 55px;
}
.media_area .media_plan_top_image_box img {
  width: 100%;
  height: auto;
  display: block;
}
.media_area .media_plan_list_block {
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.4));
  transform: translate3d(0, 0, 0);
}
.media_area .media_plan_list_block img {
  width: 100%;
  max-width: 100%;
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .media_area .media_plan_header_block {
    align-items: center;
    margin-bottom: 50px;
  }
  .media_area .media_plan_text_box {
    flex-basis: 65%;
    width: 65%;
  }
  .media_area .media_plan_top_image_box {
    flex-basis: 30%;
    width: 30%;
  }
  .media_area .media_plan_description {
    font-size: 16px;
  }
  .media_area .media_plan_description br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .media_area {
    padding: 60px 0;
  }
  .media_area .media_plan_header_block {
    display: block;
  }
  .media_area .media_plan_text_box {
    flex-basis: auto;
    width: 100%;
    margin-bottom: 30px;
  }
  .media_area .media_plan_description {
    font-size: 14px;
  }
  .media_area .media_plan_description br {
    display: none;
  }
  .media_area .media_plan_top_image_box {
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
  }
  .media_area .media_plan_list_block {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 20px 20px;
  }
  .media_area .media_plan_list_block img {
    width: 940px;
    max-width: none;
  }
}

.plan_area {
  width: 100%;
  margin: 120px 0;
}
.plan_area .description {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
}
.plan_area img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .plan_area {
    margin: 60px 0;
  }
  .plan_area .description {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.majormedia_area {
  width: 100%;
  padding: 120px 0;
  background: url("../img/major_media_bk.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}
.majormedia_area:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #231A30;
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
}
.majormedia_area .container {
  position: relative;
}
.majormedia_area .description {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #fff;
}
.majormedia_area img {
  width: 100%;
}
.majormedia_area .att_text {
  text-align: right;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .majormedia_area {
    padding: 60px 0;
  }
  .majormedia_area .description {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.feature_area {
  background-color: #1C1A1F;
  padding: 120px 10px;
}
.feature_area .sec_title {
  margin-bottom: 30px;
}
.feature_area .column2Wrap {
  display: flex;
  gap: 10px;
  min-height: 259px;
}
.feature_area .column2Wrap + .column2Wrap {
  margin-top: 10px;
}
.feature_area .column2Wrap.row_reverse {
  flex-direction: row-reverse;
}
.feature_area .column2Wrap .columnBox {
  flex-basis: calc((100% - 10px) / 2);
  max-width: calc((100% - 10px) / 2);
  width: 100%;
}
.feature_area .bg_box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.feature_area .bg_box img {
  max-width: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.feature_area .bg_box img.service04img {
  top: 0;
  transform: translate(-50%, 0);
  object-fit: cover;
  height: auto;
}
.feature_area .bg_box:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: transparent radial-gradient(closest-side at 50% 50%, #493664 0%, #231A30 100%) 0% 0% no-repeat padding-box;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.feature_area .text_box {
  background-color: #fff;
  padding: 60px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.feature_area .num {
  padding: 0 0 0 20px;
  margin-bottom: 10px;
  position: relative;
  color: var(--purple);
}
.feature_area .num:before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--purple);
  border-radius: 100%;
}
.feature_area h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 700;
}
.feature_area p {
  font-size: 14px;
}
.feature_area .icon_img {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.feature_area .icon_img img {
  width: 50px;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .feature_area .container._container2 {
    padding: 0;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature_area .bg_box img.service04img {
    object-fit: cover;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .feature_area {
    padding: 60px 0;
  }
  .feature_area .column2Wrap {
    flex-direction: column;
    min-height: 1px;
  }
  .feature_area .column2Wrap.row_reverse {
    flex-direction: column;
  }
  .feature_area .column2Wrap .columnBox {
    max-width: 100%;
    width: 100%;
  }
  .feature_area .bg_box {
    min-height: 150px;
  }
  .feature_area .text_box {
    padding: 30px 20px 70px;
  }
  .feature_area h3 {
    margin: 0 0 10px;
  }
  .feature_area .icon_img {
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
  .feature_area .icon_img img {
    width: 50px;
    height: auto;
  }
}

.case_area {
  background: var(--gray-lt);
  padding: 120px 0;
}
.case_area .description {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 70px;
}
.case_area .card_container {
  border-radius: 16px;
}
.case_area .label_common {
  display: inline-block;
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}
.case_area h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
}
.case_area .desc_text {
  font-size: 14px;
  margin: 0;
}
.case_area .section_top {
  background-color: #fff;
  display: flex;
  gap: 85px;
  margin-bottom: 30px;
  align-items: flex-start;
  padding: 32px 60px 0;
  max-height: 400px;
  border-radius: 16px;
  overflow: hidden;
}
.case_area .section_top .image_wrap {
  flex-basis: 265px;
  max-width: 265px;
  width: 100%;
}
.case_area .section_top .text_wrap {
  flex-basis: calc(100% - 350px);
  max-width: calc(100% - 350px);
  width: 100%;
}
.case_area .section_top .text_wrap .label_story {
  background-color: #36C6CB;
  margin-top: 15px;
}
.case_area .flex_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  row-gap: 30px;
}
.case_area .flex_container .label_common {
  margin-bottom: 8px;
}
.case_area .flex_container .flex_item {
  flex-basis: calc((100% - 40px) / 2);
  max-width: calc((100% - 40px) / 2);
  width: 100%;
  padding: 30px 40px 0;
  background-color: #fff;
  border-radius: 16px;
  max-height: 340px;
  overflow: hidden;
}
.case_area .flex_container .flex_item .label_financial {
  background-color: #CB3664;
}
.case_area .flex_container .flex_item .label_esg {
  background-color: #36CB87;
}
.case_area .flex_container .flex_item .label_governance {
  background-color: #231A30;
}
.case_area .flex_container .flex_item .label_strategy {
  background-color: #CE3F13;
}
.case_area .flex_container .flex_item .item_body {
  display: flex;
  gap: 38px;
  align-items: flex-start;
}
.case_area .flex_container .flex_item .item_body .item_image_wrap {
  flex-basis: 175px;
  max-width: 175px;
  width: 100%;
}
.case_area .flex_container .flex_item .item_body .item_text_wrap {
  flex: 1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .case_area h3 br {
    display: none;
  }
  .case_area .section_top {
    padding: 170px 40px 30px;
  }
  .case_area .section_top .sp_top {
    left: 40px;
  }
  .case_area .flex_container .flex_item {
    padding: 30px 40px 0;
  }
}
@media screen and (max-width: 1024px) {
  .case_area {
    padding: 80px 0;
  }
  .case_area .description {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .case_area .label_common {
    margin-bottom: 8px;
  }
  .case_area h3 {
    margin: 0 0 20px;
  }
  .case_area .section_top {
    display: block;
    margin-bottom: 10px;
    max-height: none;
    border-radius: 16px;
    position: relative;
  }
  .case_area .section_top .image_wrap {
    max-width: 172px;
    margin: 0 auto 16px;
    height: 240px;
    overflow: hidden;
  }
  .case_area .section_top .text_wrap {
    max-width: 100%;
  }
  .case_area .section_top .text_wrap .label_story {
    background-color: #36C6CB;
    margin-top: 0;
  }
  .case_area .section_top .sp_top {
    position: absolute;
    top: 30px;
    width: 100%;
  }
  .case_area .flex_container {
    display: block;
    row-gap: 10px;
  }
  .case_area .flex_container .flex_item {
    max-width: 100%;
    width: 100%;
    max-height: none;
    overflow: hidden;
  }
  .case_area .flex_container .flex_item + .flex_item {
    margin-top: 10px;
  }
  .case_area .flex_container .flex_item .label_financial {
    background-color: #CB3664;
  }
  .case_area .flex_container .flex_item .label_esg {
    background-color: #36CB87;
  }
  .case_area .flex_container .flex_item .label_governance {
    background-color: #231A30;
  }
  .case_area .flex_container .flex_item .label_strategy {
    background-color: #CE3F13;
  }
  .case_area .flex_container .flex_item .item_body {
    gap: 28px;
  }
  .case_area .flex_container .flex_item .item_body .item_image_wrap {
    flex-basis: 145px;
    max-width: 145px;
    height: 168px;
    overflow: hidden;
  }
  .case_area .flex_container .flex_item .item_body .item_text_wrap {
    flex-basis: calc(100% - 173px);
    max-width: calc(100% - 173px);
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .case_area .section_top {
    padding: 170px 20px 30px;
  }
  .case_area .section_top .sp_top {
    left: 15px;
  }
  .case_area .flex_container .flex_item {
    padding: 30px 20px 0;
  }
}

.cta_area {
  width: 100%;
  padding: 160px 0;
  background: url("../img/bg_download.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta_area .cta_download_inner {
  width: 100%;
  text-align: center;
  color: #ffffff;
}
.cta_area .cta_label {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}
.cta_area .sec_title {
  margin-bottom: 20px;
}
.cta_area .cta_description {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
  font-weight: 500;
  text-align: center;
}
.cta_area .cta_button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent linear-gradient(90deg, #32ABE2 0%, #7955C7 100%) 0% 0% no-repeat padding-box;
  color: #ffffff;
  text-decoration: none;
  padding: 11px 47px 11px 37px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  max-width: 260px;
  margin: 0 auto;
  position: relative;
}
.cta_area .cta_button:before {
  content: "";
  background: url("../img/arrow_white.svg") no-repeat right center;
  background-size: 18px auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 18px;
  height: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .cta_area {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .cta_area {
    padding: 60px 0;
  }
  .cta_area .cta_description {
    margin-bottom: 30px;
    text-align: left;
  }
}

.price_area {
  padding: 120px 0;
  background-color: #231A30;
  border-top: 10px solid #00C1FF;
}
.price_area .container_inner {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.price_area .description {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 50px;
  color: #ffffff;
}
.price_area .content_left {
  max-width: 500px;
  flex-basis: 500px;
  width: 100%;
}
.price_area .image_vertical {
  margin-top: 65px;
  flex-basis: calc(100% - 580px);
  max-width: calc(100% - 580px);
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .price_area .image_horizontal img {
    max-width: 450px;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .price_area {
    padding: 60px 0;
  }
  .price_area .description {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .price_area .container_inner {
    display: block;
  }
  .price_area .content_left,
  .price_area .image_vertical {
    max-width: 100%;
  }
  .price_area .image_vertical {
    margin-top: 20px;
  }
  .price_area .image_horizontal {
    text-align: center;
  }
}

.option_area {
  padding: 120px 0 110px;
  background-color: #F2FAFE;
}
.option_area .description {
  font-size: 16px;
  margin-bottom: 40px;
  font-weight: 500;
}
.option_area .container_inner {
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
}
.option_area .option_card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  flex-basis: calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.option_area .option_card .card_badge {
  background-color: #7955C7;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 16px;
  text-align: center;
  max-width: 200px;
  width: 100%;
  margin: 0 auto 24px;
}
.option_area .option_card .card_icon {
  width: 60px;
  height: auto;
  text-align: center;
  margin: 0 auto 16px;
}
.option_area .option_card .card_icon img {
  max-width: 100%;
  height: auto;
}
.option_area .option_card .card_sub_title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}
.option_area .option_card .card_price {
  color: #00C1FF;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
  line-height: 1;
  margin-bottom: 16px;
}
.option_area .option_card .card_price .price_number {
  font-size: 32px;
}
.option_area .option_card .card_price .price_unit {
  font-size: 20px;
}
.option_area .option_card .price_note {
  color: #00C1FF;
  font-size: 12px;
  margin-bottom: 20px;
  text-align: center;
  margin-top: -10px;
}
.option_area .option_card .card_text {
  font-size: 14px;
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .option_area .container_inner {
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .option_area {
    padding: 60px 0;
  }
  .option_area .container_inner {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    max-width: 940px;
    width: 100%;
    flex-wrap: nowrap;
    padding-bottom: 20px;
  }
  .option_area .option_card {
    max-width: 300px;
    flex-basis: 300px;
    flex-shrink: 0;
  }
}

.contact_area {
  padding: 120px 0;
  background: url("../img/bg_cta.jpg") no-repeat center center;
  background-size: cover;
}
.contact_area .sub_title {
  margin-bottom: 24px;
}
.contact_area .sec_title {
  margin-bottom: 30px;
}
.contact_area .text_wrap {
  background-color: #fff;
  border-radius: 16px;
  padding: 60px;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}
.contact_area .gradient_text {
  background: transparent linear-gradient(270deg, #7955C7 0%, #32ABE2 100%) 0% 0% no-repeat padding-box;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  font-weight: bold;
}
.contact_area .cta_band_btns {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.contact_area .cta_btn {
  flex-basis: calc((100% - 40px) / 2);
  max-width: calc((100% - 40px) / 2);
  width: 100%;
  padding: 26px 80px;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-align: center;
  max-width: 360px;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
}
.contact_area .cta_btn:before {
  content: "";
  background: url("../img/arrow_white.svg") no-repeat right center;
  background-size: 18px auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 18px;
  height: 100%;
}
.contact_area .cta_grd {
  background: transparent linear-gradient(90deg, #32ABE2 0%, #7955C7 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  color: #ffffff;
}
.contact_area .cta_grd:hover {
  background: transparent linear-gradient(90deg, #7955C7 0%, #32ABE2 100%) 0% 0% no-repeat padding-box;
}
.contact_area .btn_free {
  border: 1px solid #00C1FF;
  color: #00c1ff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.contact_area .btn_free:before {
  content: "";
  background-image: url("../img/arrow_blue.svg");
}
.contact_area .btn_free:hover {
  background-color: #00C1FF;
  color: #fff;
}
.contact_area .btn_free:hover:before {
  content: "";
  background-image: url("../img/arrow_white.svg");
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact_area .cta_band_btns {
    gap: 20px;
  }
  .contact_area .cta_btn {
    flex-basis: calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
    padding: 26px 40px;
    font-size: 16px;
  }
  .contact_area .cta_btn:before {
    right: 20px;
  }
  .contact_area .cta_grd {
    background: transparent linear-gradient(90deg, #32ABE2 0%, #7955C7 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    color: #ffffff;
  }
  .contact_area .cta_grd:hover {
    background: transparent linear-gradient(90deg, #7955C7 0%, #32ABE2 100%) 0% 0% no-repeat padding-box;
  }
  .contact_area .btn_free {
    border: 1px solid #00C1FF;
    color: #00c1ff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
  .contact_area .btn_free:before {
    content: "";
    background-image: url("../img/arrow_blue.svg");
  }
  .contact_area .btn_free:hover {
    background-color: #00C1FF;
    color: #fff;
  }
  .contact_area .btn_free:hover:before {
    content: "";
    background-image: url("../img/arrow_white.svg");
  }
}
@media screen and (max-width: 767px) {
  .contact_area {
    padding: 60px 0;
  }
  .contact_area .sub_title {
    margin-bottom: 15px;
  }
  .contact_area .sec_title {
    margin-bottom: 30px;
    font-size: 24px;
  }
  .contact_area .text_wrap {
    padding: 40px 20px;
  }
  .contact_area .gradient_text {
    font-size: 34px;
  }
  .contact_area .cta_band_btns {
    display: block;
    margin-top: 20px;
  }
  .contact_area .cta_btn {
    max-width: 100%;
    padding: 26px 50px;
  }
  .contact_area .cta_btn:before {
    right: 20px;
  }
  .contact_area .btn_free {
    margin-top: 10px;
  }
}

.footer_section {
  background-color: #ffffff;
  padding: 120px 0 120px;
  text-align: center;
  position: relative;
}
.footer_section a {
  text-decoration: none;
  color: var(--black);
}
.footer_section .back_to_top {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #231A30;
  width: 60px;
  height: 60px;
}
.footer_section .back_to_top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.footer_section .back_to_top .arrow_up {
  width: 8px;
  height: 8px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(-45deg);
  margin-top: 5px;
}
.footer_section .footer_logo_main {
  width: 278px;
  height: auto;
  margin: 0 auto 30px;
}
.footer_section .footer_logo_main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer_section .footer_link_external {
  position: relative;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  padding-right: 25px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}
.footer_section .footer_link_external:before {
  content: "";
  background: url("../img/icon_external.svg") no-repeat center center;
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 100%;
}
.footer_section .footer_pmark {
  width: 80px;
  margin: 30px auto 28px;
}
.footer_section .footer_logo_sub {
  width: 180px;
  height: auto;
  margin: 0 auto 28px;
}
.footer_section .footer_nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer_section .footer_nav li {
  display: flex;
  align-items: center;
}
.footer_section .footer_nav li:not(:last-child):not(.copyright)::after {
  content: "|";
  margin: 0 20px;
  font-size: 14px;
}
.footer_section .footer_nav li a {
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer_section .copyright {
  width: 100%;
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .footer_section {
    padding: 80px 0 120px;
  }
  .footer_section .footer_nav {
    flex-direction: column;
  }
  .footer_section .footer_nav li:not(:last-child)::after {
    display: none;
  }
}

/* ---------------------------------------------------------------- */
/* フローティングバナー */
/* ---------------------------------------------------------------- */
#floatingBox {
  width: 260px;
  height: 80px;
  background-color: #231A30;
  border-top-left-radius: 16px;
  padding: 10px 20px;
  position: fixed;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all ease 0.3s;
  z-index: 99;
}
#floatingBox .ir-label {
  color: #00C1FF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
}
#floatingBox .ir-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent linear-gradient(90deg, #32ABE2 0%, #7955C7 100%) 0% 0% no-repeat padding-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 50px 9px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  max-width: 220px;
  margin: 0 auto;
  position: relative;
}
#floatingBox .ir-button:before {
  content: "";
  background: url(../img/arrow_right.svg) no-repeat center right;
  background-size: 20px auto;
  position: absolute;
  bottom: 0;
  right: 16px;
  width: 20px;
  height: 100%;
}
#floatingBox .ir-button:hover {
  background: transparent linear-gradient(90deg, #7955C7 0%, #32ABE2 100%) 0% 0% no-repeat padding-box;
}
#floatingBox.fixed {
  transition: all ease 0.3s;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #floatingBox {
    width: 345px;
    height: auto;
    background-color: transparent;
    border-top-left-radius: 0;
    padding: 0;
  }
  #floatingBox .ir-label {
    font-size: 11px;
    line-height: 1.2;
    margin-right: 10px;
    flex-shrink: 0;
  }
}/*# sourceMappingURL=style.css.map */