@charset "UTF-8";

/* all */
html {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  overflow-x: hidden;
}

body {
  font-size: 1.4em;
  color: #333333;
}

/* color */
.bg-gray {
  background: #F5F5F5;
}

.bg-yellow {
  background: #FCF9E6 !important;
}

/* common */
* {
  margin: 0;
  padding: 0;
}
img {
  image-rendering: -webkit-optimize-contrast;
}
section {
  padding: 100px 0;
}
.sp {
  display: none !important;
}
.pc {
  display: block !important;
}
#service, #flow {
  background: #fff;
}
.flex {
  display: flex;
  justify-content: space-between;
}
.title-area {
  padding-bottom: 7rem;
  text-align: center;
}
.section-subtitle {
  color: #FB4388;
  font-weight: 700;
  font-size: 2rem;
  font-family: 'Roboto', sans-serif;
}
.section-title {
  margin-top: .5rem;
  color: #FB4388;
  font-weight: 700;
  font-size: 4rem;
}
.section-catch {
  font-size: 2rem;
  margin-top: 3rem;
  font-weight: 700;
}
a {
  text-decoration: none;
  color: #000;
}
.link {
  color: #0066c0;
  text-decoration: underline;
}
li {
  list-style-type: none;
}
.content-area {
  width: 90%;
  margin: 0 auto;
}
.cta-button {
  background: transparent linear-gradient(270deg, #FC8991 0%, #FC8991 47%, #FB4388 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 100px;
  color: #fff;
  padding: 1rem 5rem;
  cursor: pointer;
  transition: all .5s;
  position: relative;
}
.cta-button span {
  position: relative;
}
.cta-button:before {
  background: transparent linear-gradient(90deg, #FC8991 0%, #FC8991 30%, #FB4388 100%) 0% 0% no-repeat padding-box;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 5rem;
  transition: all .5s;
  color: #fff;
}
.cta-button:hover {
  color: #fff;
}
.cta-button:hover:before {
  opacity: 0;
  transition: all .5s;
}
.detail-button {
  background: #fff;
  border: 1px solid #FB4388;
  box-shadow: 0px 3px 6px #00000029;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1.75rem 0;
  color: #FB4388;
  text-align: center;
  width: 280px;
  border-radius: 3rem;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  display: block;
}
.detail-button:hover {
  background: #FB4388;
  color: #fff;
  transition: all .5s;
}
.detail-button.external:hover:after {
  content: url(../img/external-icon-wt.svg);
  transition: all .5s;
}
.detail-button.external:after {
  position: absolute;
  content: url(../img/external-icon.svg);
  right: 2rem;
  top: 1.75rem;
  font-size: 1rem;
}

@media screen and (min-width:1450px) {
  .content-area {
    width: 1360px !important;
    margin: 0 auto;
  }
}

@media screen and (max-width:999px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .section-subtitle {
    font-size: 1.4rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-catch {
    font-size: 1.2rem;
    width: 90%;
    margin: 2.4rem auto 0 auto;
    line-height: 1.6;
  }
  .title-area {
    padding-bottom: 2.4rem;
  }
  .detail-button{
    font-size: 1.6rem;
    font-weight: bold;
    padding: 1rem 0;
    width: 100%;
  }
}

/* animation */
.fade-before {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 1s;
}
.fade-before:before {
  background: #fff;
  content: "";
  width: 100%;
  height: 100%;
}
.fade-in {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* header */
.page-header {
  display: none;
}
.header-box {
  position: fixed;
  background: #fff;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
.logo {
  padding: 2.6rem;
}
.logo img{
  width: 210px;
}
.menu-list {
  display: flex;
}
.menu-list li {
  padding: 3.2rem 2rem;
}
.menu-list li:nth-child(5) {
  position: relative;
}
.menu-list li:nth-child(5):after {
  content: '';
  position: absolute;
  right: 0;
  top: 2.5rem;
  height: 3.5rem;
  width: 1px;
  background: #D5D5D5;
}
.menu-list li a{
  font-weight: 700;
}
.hamburger{
  display: none;
}

@media screen and (min-width:1000px) and (max-width:1075px) {
  .menu-list li {
    padding: 3.2rem 1.5rem;
  }
  .menu-list li a {
    font-size: 1.3rem;
  }
}

@media screen and (max-width:999px) {
  .header-box {
    height: 45px;
  }
  .logo {
    display: flex;
    align-content: center;
    padding: 10px 20px;
    width: 135px;
  }
  .logo img{
    width: 100%;
  }
  .global-nav {
    background-color: #fff;
    display: none;
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .menu-list{
    display: block;
    padding: 20px;
  }
  .menu-list li{
    border-bottom: 1px solid #D5D5D5;
    padding: 0;
    position: relative;
  }
  .menu-list li:nth-child(5):after {
    height: 8px;
    width: 8px;
    top: 0;
    background: #fff;
  }
  .menu-list li:last-child{
    border: none;
  }
  .menu-list li::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
    vertical-align: middle;
  }
  .menu-list li:nth-child(4):after{
    background: transparent;
    height: 8px;
    width: 8px;
    top: 0;
  }
  .menu-list li:last-child::after{
    display: none;
  }
  .menu-list li a{
    display: block;
    font-size: 1.6rem;
    padding: 2rem 2rem 2rem 0;
  }
  .menu-list li .cta-button{
    box-sizing: border-box;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    padding: 2rem 4.5rem;
    margin: 2.4rem auto 0 auto;
    width: 300px;
  }
  .hamburger {
    cursor: pointer;
    display: block;
    margin: 12px 17px 0 0;
    height: 20px;
    width: 24px;
    position: relative;
  }
  .hamburger span {
    background: #E4035E;
    cursor: pointer;
    display: block;
    transition: 0.3s;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 50%;
  }
  .hamburger span:first-child {
    top: 0;
  }
  .hamburger span:last-child {
    top: 100%;
  }
  .hamburger.open span {
    top: 50%;
  }
  .hamburger.open span:first-child {
    transform: rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    display: none;
  }
  .hamburger.open span:last-child {
    transform: rotate(-45deg);
  }
}

/* fv */
section.fv {
  /* padding-top: 80px; */
  /* padding-bottom: 0; */
  padding: 0;
}
#fv .content-area {
  width: 100%;
}
.fv-area {
  background: #39AFF0;
  position: relative;
  height: 100vh;
}
#fv .title-area {
  background: #39AFF0;
  width: 580px;
  height: 100vh;
  position: relative;
  padding-bottom: 0;
}
#fv .title-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  width: 480px;
}
#fv.passing .title-area:before {
  display: none;
}
.fv-area:after {
  background-image: url(../img/fv-bg.jpg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
  width: calc(100vw - 580px);
  height: 100vh;
  top: 0;
  left: 580px;
  pointer-events: none;
  z-index: 1;
  min-height: 100vh;
}
.fv-area .logo {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  margin: 0;
  background: #fff;
  padding: 2rem;
  border-radius: 0 0 2rem 0;
  z-index: 1;
}

#fv .cta-button {
  margin-top: 1rem;
  display: inline-block;
  width: 350px;
  padding: 2rem;
  font-size: 2.5rem;
  font-weight: bold;
  z-index: 2
}

.logo,
.fv-subtitle,
.fv-title,
#fv .cta-button,
.fv-area:after{
  opacity: 0;
  transition: all 1s;
}

.logo.fade-in,
.fv-subtitle.fade-in,
.fv-title.fade-in,
#fv .cta-button.fade-in,
.fv-area.fade-in:after{
  opacity: 1;
}

.fv-subtitle img, .fv-title img {
  width: 100%;
}
.fv-txt {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

@media screen and (max-width:999px) {
  .fv-area {
    background: #fff;
    height: auto;
  }
  .fv-area .logo {
    display: none;
  }
  .page-header {
    display: block;
  }
  #fv .title-area {
    height: 315px;
    width: 100%;
  }
  #fv .title-box {
    position: relative;
    top: 85px;
    left: auto;
    transform: inherit;
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
    padding-top: 40px;
  }

  .fv-area:after {
    background-image: url('../img/fv-bg-sp.png');
    background-position: top;
    position: relative;
    width: auto;
    height: auto;
    left: auto;
    top: auto;
  }
  #fv .cta-button{
    box-sizing: border-box;
    width: 300px;
    font-size: 1.8rem;
    margin: 0;
    z-index: 2;
  }
}

@media screen and (max-width:500px) {
  #fv .title-box {
    padding-top: 0;
    width: 300px;
  }
  #fv .title-area {
    height: 290px;
    width: 100%;
  }
}

@media screen and (max-width:375px) {
  #fv .title-area:after {
    bottom: -8%;
  }
}

@media screen and (max-height:800px) {
  #fv .title-area:after {
    /* top: 250px; */
  }
}

@media screen and (max-height:550px) {
  #fv .title-area {
    height: 500px;
  }
  .fv-area{
    height: 100%;
  }
  .fv-area:after {
    height: 500px;
    min-height: 500px;
  }
}


/* news */
#news .content-area {
  width: 85%;
}
.news-card {
  width: calc(100% / 3);
  background: #fff;
  border-radius: 2rem;
  margin: 0 1rem;
  box-shadow: 0px -1px 6px #00000029;
}
.news-card-img {
  width: 100%;
  border-radius: 2rem 2rem 0 0;
}
.news-card-box {
  padding: 2rem 2rem 4rem 2rem;
}
.news-card-date {
  color: #B4B4B4;
}
.news-card-category {
  color: #2A58BC;
  margin-left: 1rem;
  padding: .3rem 1rem;
  border: 1px solid #2A58BC;
  border-radius: 2rem;
}
.news-card-title {
  padding: 1.6rem 0;
  line-height: 2;
}
.slick-arrow:before{
  content:"" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.slick-next:before{
  background: url(../img/arrow-r.svg) !important;
  background-size: contain !important;
}
.slick-prev:before{
  background: url(../img/arrow-l.svg) !important;
  background-size: contain !important;
}
.slick-prev, .slick-next {
  width: 6rem;
  height: 6rem;
}
.slick-next {
  right: -6.5rem;
}
.slick-prev {
  left: -6.5rem;
}

@media screen and (max-width:999px) {
  .news{
    padding: 40px 0 50px;
  }
  #news .content-area{
    width: 100%;
  }
  .news-card {
    width: 80%;
    background: #fff;
    border-radius: 2rem;
    margin: 0 1rem;
    box-shadow: 0px -1px 6px #00000029;
  }
  .news-card-box {
    padding: 1rem 2rem;
  }
  .news-card-date{
    font-size: 1rem;
  }
  .news-card-category{
    display: inline-block;
    font-size: 1rem;
  }
  .news-card-title{
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem 0;
  }
  .slick-next {
    right: 0;
    z-index: 1;
  }
  .slick-prev {
    left: 0;
    z-index: 1;
  }
  .slick-prev:before,
  .slick-next:before{
    opacity: 1;
  }
}

/* service */
#service .slick-track {
  display: flex;
}
#service .slick-slide {
  height: auto !important;
}
#service .content-area {
  width: 100% !important;
}
.service {
  position: relative;
}
.service:before {
  content: "";
  background: url(../img/service-bg1.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -60px;
  left: 5%;
  width: 293px;
  height: 232px;
}
.service:after {
  content: "";
  background: url(../img/service-bg2.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -60px;
  right: 5%;
  width: 182px;
  height: 248px;
}
.service-block.first {
  width: 100%;
  margin: 0 auto;
}
.service-block.second, .service-block.third {
  margin-bottom: 6rem;
  max-width: 1360px;
  margin: 12rem auto 6rem auto;
}
.service-block.second .detail-button {
  margin-left: 0;
}
.service-block.third .detail-button {
  margin-left: 0;
}
.service-block.second {
  margin-top: 8rem;
}
.service-block.third {
  margin-top: 12rem;
}
.service-title-area {
  width: 100%;
  margin: 0 auto 2.5rem auto;
}
.service-block.first .service-title-area {
  max-width: 1224px;
  width: 90%;
}
.service-no {
  font-size: 8rem;
  font-family: 'Roboto', sans-serif;
  color: #2A58BC;
  vertical-align: bottom;
  margin-bottom: 1rem;
}
.service-title {
  font-size: 2.6rem;
  font-weight: 700;
  display: inline-block;
  line-height: 8rem;
  margin-left: 1rem;
}
.service-lead {
  line-height: 2;
  margin: 2rem 0;
}
.service-box {
  width: 100%;
  background: #F5F5F5;
  border-radius: 1.5rem;
  box-shadow: 0px -1px 6px #00000029;
  border: 1px solid #207FD6;
  margin: 0 1rem;
}
.service .slick-next {
  right: 5rem;
  z-index: 100;
}
.service .slick-prev {
  left: 5rem;
  z-index: 100;
}
.service-slick-button-group {
  display: flex;
  width: 90%;
  margin: 5rem auto 3rem auto;
}
.service-slick-button-group .detail-button {
  width: 30%;
}
.service-slick-button-group .detail-button.active {
  background: #FB4388;
  color: #fff;
  transition: all .5s;
}
.service-box-title {
  background: #2A58BC;
  color: #fff;
  text-align: center;
  border-radius: 1.5rem 1.5rem 0 0;
  font-size: 2.2rem;
  padding: 2rem 0;
}
.service-box-content {
  padding: 3rem 2.5rem 4rem 2.5rem;
  min-height: 715px;
}
.service-box-content .detail-button {
  width: 100%;
}
.service-box-content-title {
  font-size: 2.4rem;
  color: #FB4388;
  text-align: center;
  font-weight: 700;
  padding: 2rem 0 3rem 0;
}
.service-box-content-desc {
  line-height: 2;
  text-align: center;
}
.service-box-content-block {
  display: flex;
  /* flex-wrap: wrap; */
  margin: 3rem 0;
  justify-content:space-around;
}
.service-box-card {
  background: #fff;
  text-align: center;
  padding: 0 0 2rem 0;
  width: 30%;
  position: relative;
  box-shadow: 0 0 36px rgb(0 0 0 / 6%);
}
.service-box.second .service-box-card {
  width: 22%;
}
.service-flow-no{
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateY(0) translateX(-50%);
  -webkit-transform: translateY(0) translateX(-50%);
  color: #2A58BC;
  background: #fff;
  padding: .5rem 2rem;
  border-radius: 2rem;
  border: 1px solid #2A58BC;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
}
.service-box-card-img {
  width: 100%;
}
.service-box-card-icon {
  height: 2rem;
}
.service-box-card-title {
  color: #fff;
  font-weight: 700;
  padding: 1rem 0 1rem .5rem;
}
.service-box-card-band {
  background: #2A58BC;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
}
.service-box-card-txt {
  font-weight: 700;
  line-height: 2;
  font-size: 1.6rem;
  padding: 2rem 1rem;
}
.service-box-card-detail {
  padding: 0 2rem;
  line-height: 2;
  text-align: left;
}
.service-box.first .service-box-card-detail {
  padding: 0 4rem 1rem 4rem;
}

.service-sub-box {
  background: #E5F3FF;
  border-radius: 1.5rem;
  padding: 3rem 3.5rem 3rem 3.5rem;
  display: flex;
  align-items: flex-start;
  margin: 8rem auto 0 auto;
  max-width: calc(1224px - 7rem);
  width: calc(90% - 7rem);
}
.service-sub-img {
  width: 100px;
  object-fit: contain;
  margin-right: 2rem;
}
.service-sub-box .service-lead {
  margin: 2rem 0 0 0;
}
.service-sub-title {
  font-size: 2rem;
  text-decoration: underline;
  color: #2A58BC;
  text-align: left;
  line-height: 1.6;
}
.service-txt-box {
  position: relative;
  width: 43%;
}
.service-img-box {
  width: 47.5%;
}
.service-block.second .service-block-img {
  width: 110%;
}
.service-block.second .service-block-img {
  position: absolute;
  top: 0;
  right: -121%;
}
.service-block.second .service-txt-box {
  margin-left: 5%;
}
@media screen and (min-width:1300px) {
  .service-block.second .service-txt-box {
    margin-bottom: 5%;
  }
}
.service-block.second .service-title {
  line-height: 4rem;
}
.service-feature-first {
  margin-bottom: 3rem;
  display: flex;
  justify-content: left;
  padding: 3rem 0;
  border-radius: 1rem;
}
.service-list-item {
  border: 2px solid #FB4388;
  border-radius: 1rem;
  width: 150px;
  padding: 2rem 0;
  background: #fff;
}
.service-list-item:last-child {
  margin-left: 2rem;
}
.service-list-item:hover {
  cursor: pointer;
}
.service-list-img {
  width: 70px;
  display: block;
  margin: 0 auto;
}
.service-list-title {
  text-align: center;
  color: #FB4388;
  padding-top: .5rem;
  font-weight: 700;
}
.service-feature-second {
  background: #fff;
  padding: 2.4rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
}
.service-feature-second > li {
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 1rem 0;
}
.service-block.third .service-block-img {
  position: absolute;
  top: 0;
  left: -124%;
  width: 113%;
}
.service-block.third .reverse {
  flex-direction: row-reverse;
}
.service-block.third .service-img-box {
  width: 50%;
}
.service-block.third .service-txt-box {
  margin-right: 5%;
}
.service-block.third .service-title {
  line-height: 4rem;
}

.service-box-card-other {
  display: flex;
  margin: 2rem auto;
  align-items: flex-start;
}

.service-box-content-other {
  background: #fff;
  margin-bottom: 3rem;
  padding: 2rem;
}

.service-box-content-other .service-box-card {
  padding: 0;
  box-shadow: none;
}

.service-box-content-other .service-box-card.third {
  width: 32%;
}

.service-box-content-other .service-box-card.fourth {
  width: 24%;
}

.service-box-content-other .service-box-card-img-wrapper {
  width: 100px;
  padding-left: 1rem;
  padding-top: .5rem;
}

.service-box-content-other .service-box-card-img {
  height: 40px;
  object-fit: contain;
}

.service-box-content-other .service-box-card-detail {
  padding-right: 0;
}

.service-box-content-other-title-wrapper {
  display: flex;
  align-items: center;
  margin: 0 0 2.5rem 0;
}

.service-box-card-other-wrapper {
  display: flex;
  justify-content: space-between;
}

.service-box-content-other-title {
  padding-bottom: .75rem;
  border-bottom: 1px solid #FB4388;
}

.other-title-caption {
  font-weight: 700;
}

.other-title-st {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FB4388;
  padding-left: 0.5rem;
}

.service-box-content-other-title-description {
  font-size: 1.6rem;
  padding-left: 2rem;
}

@media screen and (max-width:999px) {
  .service.fade-in{
    transform: none;
  }
  .service .slick-arrow{
    transition: 0.3s all;
    opacity: 0;
    position: fixed;
    z-index: 1;
  }
  .service .slick-arrow.fade-in{
    opacity: 1;
  }
  .service .slick-next {
    right: 0;
    top: 30rem;
  }
  .service .slick-prev {
    left: 0;
    top: 30rem;
  }
  .service-box-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .service-box-card-img.sp {
    width: 92%;
    height: 145px;
    object-fit: cover;
    margin: .5rem auto 2rem auto;
  }
  .service-box.first .service-box-card-band, .service-box.second .service-box-card-band {
    padding: 1.2rem 1rem 0.7rem;
  }
  .service:before {
    background-size: contain;
    top: -35px;
    left: 5%;
    width: 154px;
    height: 122px;
  }
  .service:after {
    background-size: contain;
    top: -35px;
    right: 15px;
    width: 93px;
    height: 126px;
  }
  #service .content-area{
    margin-top: 2.6rem;
  }
  .service-block.second,
  .service-block.third {
    margin-top: 5rem;
  }
  .service-block.third {
    margin-bottom: 0;
  }
  .service-no {
    font-size: 5rem;
  }
  .service-title {
    font-size: 2rem;
    line-height: 1.45;
    width: calc(100% - 50px);
  }
  .service-block.second .service-title,
  .service-block.third .service-title{
    line-height: 1.45;
  }
  .service-flex {
    flex-wrap: wrap;
  }
  .service-box-title {
    border-radius: 1.4rem 1.4rem 0 0;
    font-size: 2rem;
    padding: 1.4rem 0;
  }
  .service-box {
    width: 100%;
    margin-bottom: 3rem;
  }
  .service-box-content {
    padding: 1.5rem 1rem 0 1rem;
  }
  .service-box-content-block {
    margin: 0;
    flex-wrap: wrap;
  }
  .service-box-content-desc {
    font-size: 1.2rem;
    text-align: left;
  }
  .service-sub-box {
    margin-top: 1rem;
    display: block;
    text-align: center;
    padding: 3rem 2rem;
    width: 83%;
  }
  .service-sub-img {
    margin-bottom: 2rem;
  }
  .service-sub-box .service-lead {
    text-align: left;
  }
  .service-sub-title {
    font-size: 1.8rem;
  }
  .service-block.second .flex {
    display: block;
  }
  .service-txt-box {
    width: 90%;
  }
  .service-block.second .service-block-img, .service-block.third .service-block-img {
    position: initial;
    width: 100%;
    height: 200px;
    border-radius: 2rem;
    object-fit: cover;
  }
  .service-list{
    margin-bottom: 1.5rem;
  }
  .service-list > li {
    font-size: 1.2rem;
    text-indent: -1em;
    line-height: 2;
    padding: 0;
  }
  .service-lead {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 3rem 0 2rem;
  }
  .service-box-card{
    padding: 0 0 2rem 0;
    margin: 2rem 0;
    width: 100%;
  }
  .service-box-card.third .service-box-card-band, .service-box-card.fourth .service-box-card-band {
    padding: 0 1rem;
  }
  .service-box.second .service-box-card {
    width: 100%;
  }
  .service-flow-no{
    font-size: 1.2rem;
    padding: 0.3rem 3rem;
  }
  .service-box-card-title{
    height: auto;
  }
  .service-box-content-other-title-wrapper {
    display: block;
  }
  .service-box-card-other-wrapper {
    display: block;
  }
  .service-box-content-other .service-box-card.third {
    width: 100%;
  }
  .service-box-content-other .service-box-card.fourth {
    width: 100%;
  }
  .service-box-content-other-title-description {
    padding-left: 0;
    padding-top: 1rem;
    font-size: 1.2rem;
    line-height: 2;
  }
  .service-box-card-txt {
    padding: 2rem 1rem;
    font-size: 1.4rem;
  }
  .service-box-content-title {
    font-size: 1.6rem;
    padding: 1rem 0 2rem;
  }
  .other-title-st {
    font-size: 2rem;
  }
  .service-feature-second > li {
    font-size: 1.4rem;
    text-indent: -1em;
    padding-left: 1em;
  }
  .service-box-card-detail {
    font-size: 1.2rem;
  }
  .service-box-content-other {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  .service-box-card-other {
    margin: 1rem auto;
  }
  .service-box-card-second-sp {
    display: flex;
  }
  .service-box-card-second-sp .service-box-card-img {
    height: 100px;
    padding-left: 1rem;
    padding-top: 0.5rem;
  }
  .service-box-card-second-sp .service-box-card-detail {
    padding: 0 1rem;
    overflow-wrap:break-word;
    word-wrap:break-word;
  }
  .service-box.first .service-box-card-detail {
    padding: 0 1.2rem;
  }
  .service-slick-button-group {
    margin-top: 2rem;
    position: sticky;
    top: 75px;
    z-index: 9;
    /* background: #fff; */
    /* padding: 1rem 2rem; */
  }

}

/* case */
.case {
  position: relative;
}
.case:before {
  content: "";
  background: url(../img/case-bg1.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -50px;
  left: 5%;
  width: 245px;
  height: 238px;
}
.case:after {
  content: "";
  background: url(../img/case-bg2.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -90px;
  right: 5%;
  width: 203px;
  height: 250px;
}
.case .content-area {
  margin-bottom: 5rem;
}
.case-card {
  width: 32%;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0px 3px 6px #00000029;
}
.case-card-img {
  width: 100%;
  border-radius: 2rem 2rem 0 0;
}
.coming-img {
  position: relative;
}
.coming-img:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  left: 0;
  top: 0;
  content: "";
  border-radius: 2rem 2rem 0 0;
}
.coming-img:after {
  position: absolute;
  color: #fff;
  content: "Coming soon";
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.coming .case-card-box {
  height: 100px;
}
.case-card-box {
  padding: 2rem 2rem 4rem 2rem;
}
.case-card-company-name {
  color: #B4B4B4;
  font-family: 'Roboto', sans-serif;
}
.case-card-title {
  font-weight: 700;
  line-height: 2;
  font-size: 1.6rem;
  padding: 1rem 0;
}
.case-card-category {
  display: flex;
}
.case-card-category > li:first-child {
  margin-left: 0;
}
.case-card-category > li {
  display: inline-block;
  color: #3683C9;
  margin-left: .75rem;
  padding: .3rem 1rem;
  border: 1px solid #3683C9;
  border-radius: 2rem;
}
.case-card-desc {
  padding: 1.6rem 0;
  line-height: 2;
}
.contact-link-box {
  text-align: center;
}
.contact-link {
  display: inline-block;
  color: #FB4388;
  font-size: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid;
}

@media screen and (max-width:999px) {
  .case{
    padding: 30px 0 50px;
  }
  .case:before {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -60px;
    left: 5%;
    width: 106px;
    height: 103px;
  }
  .case:after {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -60px;
    right: 5%;
    width: 94px;
    height: 117px;
  }
  .case .flex {
    flex-wrap: wrap;
  }
  .case .content-area{
    margin-bottom: 2rem;
  }
  .case-card {
    width: 100%;
    margin-bottom: 2rem;
  }
  .case-card-company-name {
    font-size: 1rem;
  }
  .case-card-title {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .case-card-category > li {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  .case-card-desc {
    font-size: 1.2rem;
    line-height: 1.5;
    padding-bottom: 0;
  }
  .case .detail-button{
    margin-bottom: 2rem;
  }
  .contact-link{
    font-weight: bold;
    letter-spacing: 0.06em;
  }
}

/* flow */
.flow {
  position: relative;
}
.flow:before {
  content: "";
  background: url(../img/flow-bg1.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -65px;
  left: 5%;
  width: 205px;
  height: 218px;
}
.flow:after {
  content: "";
  background: url(../img/flow-bg2.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -65px;
  right: 5%;
  width: 179px;
  height: 210px;
}
.flow-container {
  border-radius: 1rem;
  border: 1px solid #FB4388;
  margin-bottom: 3rem;
}
.flow-box {
  width: 20%;
  position: relative;
  border-right: 1px solid #FB4388;
}
.flow-box:after {
  position: absolute;
  content: '';
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #FB4388;
  top: 50%;
  right: -10px;
  transform: translateY(-50%) translateX(0);
  -webkit-transform: translateY(-50%) translateX(0);
}
.flow-box:last-child:after {
  display: none;
}
.flow-box:last-child {
  border-right: 0;
}
.flow-no{
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateY(0) translateX(-50%);
  -webkit-transform: translateY(0) translateX(-50%);
  color: #fff;
  background: #FB4388;
  padding: .5rem 2rem;
  border-radius: 2rem;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
}
.flow-img {
  height: 70px;
  display: block;
  margin: 6rem auto 1rem auto;
}
.flow-title {
  text-align: center;
  color: #FB4388;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.flow-desc {
  padding: 2rem;
  line-height: 1.6;
}

@media screen and (max-width:999px) {
  .flow{
    padding: 70px 0 50px;
  }
  .flow:before {
    background-size: contain;
    top: -30px;
    left: 5%;
    width: 98px;
    height: 105px;
  }
  .flow:after {
    background-size: contain;
    top: -30px;
    right: 5%;
    width: 90px;
    height: 106px;
  }
  .flow-container {
    border: none;
  }
  .flow .flex {
    flex-wrap: wrap;
  }
  .flow-container{
    margin-bottom: 0;
  }
  .flow-box {
    width: 100%;
    border: 1px solid #FB4388;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
  }
  .flow-box:after {
    position: absolute;
    content: '';
    border-top: 10px solid #FB4388;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    bottom: -10px;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    -webkit-transform: translateY(0) translateX(-50%);
    top: auto;
    right: auto;
    border-bottom: none;
  }
  .flow-box:last-child {
    border-right: 1px solid #FB4388;
    margin-bottom: 0;
  }
  .flow .detail-button {
    margin-top: 3rem;
  }
}

/* price */
.price {
  position: relative;
}
.price .section-catch {

}
.price:before {
  content: "";
  background: url(../img/price-bg1.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -50px;
  left: 65%;
  width: 217px;
  height: 232px;
  transform: translateY(0) translateX(-50%);
  -webkit-transform: translateY(0) translateX(-50%);
}
.price-container {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 -1px 6px rgba(0, 0, 0, .16);
}
.price-box {
  padding: 2.5rem 3.5rem;
  display: flex;
}
.price-initial-box .price-select-txt{
  margin-top:2rem;
}
.price-select-txt {
  font-weight: 700;
}
.price-initial-box {
  width: 43%;
  padding-right: 2.5%;
  border-right: 1px solid #ddd;
}
.price-device-box {
  width: 50%;
  padding-left: 4.5%;
  margin-top: 4.3rem;
}
.price-initial-title {
  font-size: 2rem;
  font-weight: 700;
}
.price-initial-cost-box {
  display: flex;
  align-items: center;
  margin: 1.2rem 0 1rem;
}
.price-initial-cost-img {
  height: 100px;
  object-fit: contain;
  padding: 11px 0;
}
.price-initial-cost {
  padding-left: 2rem;
  font-size: 4rem;
  font-weight: 700;
  color: #FB4388;
  margin: 6rem 0 0;
  font-family: 'Roboto', sans-serif;
}
.price-initial-txt {
  font-weight: 700;
  line-height: 2;
}
.price-initial-subtxt {
  font-size: 1.2rem;
  color: #999999;
  margin-top: 1rem;
}
.price-device-txt {
  font-weight: 700;
  line-height: 2;
}
.price-device-main-box {
  display: flex;
  flex-wrap: wrap;
}
.price-device-sub-box {
  display: flex;
  margin-right: 2rem;
}
.price-device-size {
  font-weight: 700;
  margin-top: 3rem;
}
.price-device-cost-title {
  font-weight: 700;
}
.price-device-cost {
  font-size: 4rem;
  font-weight: 700;
  color: #FB4388;
  font-family: 'Roboto', sans-serif;
}
.price-device-txt-box {
  padding-left: 2rem;
  margin: 6rem 0 0;
}
.price-device-img-box img {
  width: 150px;
}
.price-tab-box {
  margin-top: 5rem;
  padding-bottom: 4rem;
  background-color: #fff;
  width: calc(100% - 3rem);
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 1rem;
  position: relative;
}
.tab-content {
  display: none;
  padding: 4rem;
  clear: both;
  overflow: hidden;
  background-color: #F5F5F5;
}
#jquery-tab-pager-navi {
  display: none;
}
.jquery-tab-pager-tabbar {
  position: relative;
}
.tab-control .tab-left {
  position: absolute;
  top: 50%;
  left: 3px;
  z-index: 1;
}
.tab-control .tab-right {
  position: absolute;
  top: 50%;
  right: 3px;
  z-index: 1;
}
.tab-left:hover, .tab-right:hover {
  cursor: pointer;
  opacity: 0.7;
}
.jquery-tab-pager-tabbar li {
  background-color: #fff;
  width: calc(100% / 5);
  height: 6rem;
  line-height: 6rem;
  font-size: 1.8rem;
  text-align: center;
  color: #565656;
  padding: 0;
  font-weight: 700;
  position: relative;
}
.jquery-tab-pager-tabbar li:nth-child(2):before, .jquery-tab-pager-tabbar li:nth-child(3):before, .jquery-tab-pager-tabbar li:nth-child(4):before, .jquery-tab-pager-tabbar li:nth-child(5):before {
  position: absolute;
  content: '';
  width: 0.1rem;
  height: 3rem;
  background: #3683C9;
  left: 0;
  top: 1.5rem;
  display: inline-block;
}
.jquery-tab-pager-tabbar li.current:before {
  display: none;
}
.jquery-tab-pager-tabbar li.current + li:before {
  display: none;
}
.jquery-tab-pager-tabbar li.current {
  background-color: #F5F5F5;
  color: #3683C9;
  border-radius: 1rem 1rem 0 0;
}
.pack-detail-title {
  font-weight: 700;
  margin-bottom: 3rem;
}
.pack-price-title {
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}
.pack-price-cost {
  font-size: 6rem;
  font-weight: 700;
  color: #FB4388;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3rem;
  font-family: 'Roboto', sans-serif;
}
.pack-detail-option-box {
  padding: 3rem;
  margin: 3rem 0;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
}
.pack-detail-option-txt {
  margin-bottom: 3rem;
}
.option-style {
  color: #fff;
  text-align: center;
  padding: 1.5%;
  margin: 2% 1%;
  border-radius: 4rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.option-quarter {
  width: 20%;
}
.option-half {
  width: 45%;
}
.option-valid {
  background: #2A58BC;
}
.option-invalid {
  background: #C8C8C8;
}
.option-license {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
  bottom: -2rem;
  color: #000;
  width: 100%;
}
.pack-option-title {
  margin-bottom: 3rem;
}
.super {
  vertical-align: super;
  font-size: 1rem;
}
table {
  width: 100%;
  margin-bottom: 3rem;
}
table th {
  width: 22%;
  background: #2A58BC;
  box-sizing: border-box;
  padding: 1.5rem;
  vertical-align: middle;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
table td {
  background: #fff;
  box-sizing: border-box;
  padding: 1.5rem;
  vertical-align: top;
  text-align: left;
}
.option-box {
  width: 700px;
  margin: 0 auto;
}
.pack-option-txt {
  font-size: 1rem;
  line-height: 3;
  margin-bottom: 2rem;
}
@media all and (max-width: 999px) {
  .price{
    padding: 40px 0;
  }
  .price:before {
    background-size: contain;
    top: -35px;
    left: 75%;
    width: 115px;
    height: 123px;
    transform: translateY(0) translateX(-50%);
    -webkit-transform: translateY(0) translateX(-50%);
  }
  .price-initial-title {
    font-size: 1.4rem;
  }
  .price-initial-cost {
    font-size: 2.4rem;
    margin:0;
  }
  .price-initial-cost-img{
    height: 60px;
    padding: 0;
  }
  .price-device-img-box img{
    width: 84px;
  }
  .price-box {
    display: block;
    padding: 2rem;
  }
  .price-device-size{
    margin-top: 2rem;
  }
  .price-initial-box {
    padding-right: 0;
    border-right: none;
    width: 100%;
  }
  .price-device-box {
    padding-left: 0;
    margin-top: 3rem;
    width: 100%;
  }
  .price-device-sub-box {
    align-items: center;
  }
  .price-device-main-box {
    margin: 1.2rem 0;
  }
  .price-device-txt-box {
    margin: 0;
  }
  .price-initial-txt {
    font-size: 1.2rem;
  }
  .price-initial-subtxt {
    font-size: 1rem;
  }
  .price-device-cost {
    font-size: 2.4rem;
    margin-top: 0.5rem;
  }
  .price-device-txt{
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 10px;
  }
  .jquery-tab-pager-tabbar {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
  }
  .jquery-tab-pager-tabbar li {
    width: auto;
    padding: 0 2rem;
    font-size: 1.2rem;
    height: 4rem;
    line-height: 4rem;
  }
  .jquery-tab-pager-tabbar li:nth-child(2):before, .jquery-tab-pager-tabbar li:nth-child(3):before, .jquery-tab-pager-tabbar li:nth-child(4):before, .jquery-tab-pager-tabbar li:nth-child(5):before {
    height: 2rem;
    top: 1rem;
  }
  .tab-content {
    padding: 3rem 2rem;
  }
  .pack-detail-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .pack-price-title{
    font-size: 1.2rem;
  }
  .pack-price-cost {
    font-size: 4rem;
    margin-left: 1rem;
  }
  .pack-detail-option-box{
    padding: 1rem 0 2.5rem 0;
    margin: 1.5rem 0;
  }
  .pack-detail-option-txt{
    margin-bottom: 1.5rem;
  }
  .option-quarter {
    width: 48%;
  }
  .option-half {
    width: 100%;
  }
  .option-style {
    font-size: 1rem;
    padding: 3% 0;
    white-space: nowrap;
    margin: 1.2rem auto;
  }
  .option-license {
    bottom: -1.5rem;
  }
  .option-box {
    width: 100%;
  }
  .pack-option-title{
    font-size: 1.2rem;
    margin-bottom: 1.6rem;
  }
  .pack-option-txt{
    font-size: 1rem;
    line-height: 1.5;
  }
  table th {
    background: #DDEEFD;
    color: #000;
  }
  table th, table td {
    display: block;
    font-size: 1.2rem;
    text-align: center;
    padding: 1rem;
    width: 100%;
    border-bottom: none;
  }
  table tr:last-child td:last-child {
    border-bottom: 1px solid #ccc;
  }

}

/* qa */
.accordion-block {
  margin-bottom: 1.5rem;
}
.accordion-container .accordion-btn {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 2.5rem 6rem 2.5rem 4.5rem;
  font-size: 1.6rem;
  cursor: pointer;
  background: #fff;
  font-weight: 700;
  border-radius: .5rem;
  line-height: 1.6;
  box-shadow: 0 -1px 6px rgba(0, 0, 0, .16);
}
.accordion-container .accordion-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  width: 20px;
  height: 1px;
  transform: rotate(90deg);
  background: #999999;
  transition: all .3s ease-in-out;
}
.accordion-container .accordion-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  width: 20px;
  height: 1px;
  background: #999999;
  transition: all .2s ease-in-out;
}
.accordion-container .accordion-btn.open {
  border-radius: .5rem .5rem 0 0;
}
.accordion-container .accordion-btn.open::before {
  transform: rotate(180deg);
}
.accordion-container .accordion-btn.open::after {
  opacity: 0;
}
.accordion-container .accordion-btn.open:last-of-type {
  border-bottom: none;
}
.accordion-container .accordion-box {
  display: none;
  padding: 2.5rem 3rem 4rem 4.5rem;
  background-color: #fff;
  border-radius: 0 0 .5rem .5rem;
  border-top: 1px solid #eee;
  line-height: 1.6;
  box-shadow: 0 -1px 6px rgba(0, 0, 0, .16);
}
.accordion-container .accordion-box p {
  color: #444444;
  font-size: 1.6rem;
  font-weight: 700;
}


@media (max-width: 999px) {
  #qa{
    padding: 0 0 5rem;
  }
  .accordion-container {
    width: 100%;
    padding-bottom: 0;
  }
  .accordion-container .accordion-btn {
    margin: 0;
    padding: 2rem 6rem 2rem 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .accordion-container .accordion-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 20px;
    height: 1px;
    transform: rotate(90deg);
    background: #29A1D3;
    transition: all .3s ease-in-out;
  }
  .accordion-container .accordion-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 20px;
    height: 1px;
    background: #29A1D3;
    transition: all .2s ease-in-out;
  }
  .accordion-container .accordion-box p {
    color: #444444;
    font-size: 1.2rem;
    font-weight: 700;
  }
  .accordion-container .accordion-btn.open::before {
    transform: rotate(180deg);
  }
  .accordion-container .accordion-btn.open::after {
    opacity: 0;
  }
  .accordion-container .accordion-btn.open:last-of-type {
    border-bottom: none;
  }
  .accordion-container .accordion-box {
    padding: 2rem 2rem 3rem 2rem;
  }
}

/* cta */
section.cta {
  padding: 0;
}
.cta {
  background-image: url("../img/bg-cta.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.cta-area {
  text-align: center;
  padding: 80px 0;
}
.cta-title {
  font-size: 4rem;
  color: #fff;
}
.cta .cta-button {
  font-size: 2.5rem;
  margin-top: 2rem;
  display: inline-block;
  padding: 2rem;
  width: 400px;
  font-weight: bold;
}

@media screen and (max-width:999px) {
  .cta-area{
    padding: 40px 0 45px;
  }
  .cta-title {
    font-size: 1.8rem;
  }
  .cta .cta-button{
    box-sizing: border-box;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    margin-top: 1.6rem;
    width: 340px;
  }
}

/* footer */
.page-footer {
  background: #333;
  text-align: center;
  height: 40px;
  line-height: 40px;
}
.page-footer small {
  color: #fff;
}

@media screen and (max-width:999px) {
  .page-footer {
    height: 50px;
    line-height: 48px;
  }
  .page-footer small {
    font-size: 1rem;
  }
}

/* modal */
.modal-open{
	position: fixed;
	display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
	width: 300px;
	height: 50px;
	font-weight: bold;
	color: #fff;
	background: #000;
	margin: auto;
	cursor: pointer;
	transform: translate(-50%,-50%);
}
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,75%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
  box-sizing: border-box;
  z-index: 11;
}
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 90%;
}
.modal-close1, .modal-close2, .modal-close3, .modal-close4, .modal-close5 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -2rem;
  right: -2rem;
  width: 4rem;
  height: 4rem;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  background: #333;
  border-radius: 2rem;
  font-weight: 100;
}
.modal-content{
	background: #fff;
	text-align: left;
}
.modal-txt-box {
  background: #fff;
  padding: 3rem;
  overflow-y: auto;
  overflow-y: scroll;
  height: 40vh;
}
.modal4 .modal-txt-box, .modal5 .modal-txt-box {
  height: 20vh;
}
.modal-button-box {
  background: #F5F5F5;
  padding: 1.5rem 3rem;
  text-align: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, .16);
}
.modal-link-button {
  display: inline-block;
  background: #fff;
  padding: 1.5rem 0;
  border: 1px solid #FB4388;
  border-radius: 3rem;
  color: #FB4388;
  width: 290px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}
.modal-box {
  margin-bottom: 1rem;
  padding: 1.5rem;
}
.modal-box-img {
  height: 3.2rem;
  vertical-align: top;
}
.modal-box-title {
  display: inline-block;
  line-height: 3.2rem;
  font-size: 2rem;
  color: #FB4388;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
.modal-box-desc {
  line-height: 1.6;
}

@media screen and (max-width:999px) {
  .modal4 .modal-txt-box, .modal5 .modal-txt-box {
    height: 35vh;
  }
}

/* article */
section.article-fv {
  padding: 8rem 0 0 0;
}
article p {
  line-height: 2;
}
.article .title-area {
  padding: 5rem 0;
  margin-bottom: 8rem;
  background: #F5F5F5;
}
.article-container {
  width: 90%;
  margin: 0 auto;
}
.article-block {
  margin-bottom: 6rem;
}
.article-heading {
  position: relative;
  font-size: 3.6rem;
  font-weight: 400;
  border-bottom: 2px solid #E4E5E7;
  padding-bottom: 1.5rem;
  margin-bottom: 5rem;
}
.article-heading:before {
  position: absolute;
  content: '';
  width: 3.6rem;
  left: 0;
  bottom: -2px;
  border-bottom: 2px solid #FB4388;
}
.article-txt {
  margin-bottom: 4rem;
}
.article-img {
  display: block;
  width: 100%;
  margin-bottom: 4rem;
}
.article-flex-box {
  display: flex;
  margin-bottom: 4rem;
}
.article-flex-txt-box {
  width: 50%;
}
.article-flex-img-box {
  width: 48%;
}
