@charset "utf-8";

/* --------------------
hero
-------------------- */

.hero {
  background: url(../img/hero_bg.png);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: visible;
  text-align: left;
  position: relative;
  z-index: 10;
}

.hero .area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 90%;
  height: 480px;
  background-color: transparent;
  padding: 0;
  z-index: 10;
  position: relative;
  max-width: 100%;
}

.hero .area .text-area {
  position: relative;
  width: auto;
  left: 0;
  top: auto;
  padding-right: 2rem;
  width: 50%;
}

.hero .headline {
  margin: 0;
  padding: 0;
  font-weight: bold;
  line-height: 1.5em;
  text-align: left;
  padding-bottom: 0;
  position: relative;
  bottom: 0;
  z-index: 89;
  display: inline;
}

.hero .headline .text {
  font-weight: bold;
  border-bottom: none;
  color: #fff;
  font-size: 40px;
  line-height: 1.5em;
}

.hero .headline .label {
  display: block;
  padding: 8px 0;
  color: #fff;
  background-color: #1C73A1;
  font-size: 16px;
  line-height: 1.5em;
  width: 96px;
  position: relative;
  bottom: 8px;
}

.hero .headline span::before {
  content: none;
}

.hero .lead {
  margin: 0;
  text-align: left;
  font-size: 20px;
  line-height: 2rem;
  font-weight: normal;
  color: #fff;
  position: relative;
  bottom: 0;
  z-index: 89;
  display: block;
  padding: 1rem 0;
  width: auto;
}

.hero .note {
  font-size: 16px;
  color: #fff;
}

.hero .area .movie {
  width: 50%;
  aspect-ratio: 16/9;
  background-color: #333;
  line-height: 0.5;
}

.hero .area .movie .youtube-container {
  aspect-ratio: 16/9;
}

.hero .area .movie .video {
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-out;
}

.hero .area .movie .video:hover {
  cursor: pointer;
}

@media screen and (min-width: 1600px) {
  .hero {
    height: 25vw;
  }

  .hero .area {
    height: 100%;
    width: 70vw;
  }

  .hero .area .movie {
    text-align: right;
  }

  .hero .area .movie .video {
    width: 100%;
    height: 100%;
  }

  .hero .headline .label {
    font-size: 0.85vw;
    width: 5vw;
    bottom: 0.75vw;
  }

  .hero .headline .text {
    font-size: 2vw;
  }

  .hero .lead {
    font-size: 1vw;
    line-height: 1.75;
  }
}

@media screen and (max-width: 1200px) {
  .hero .area {
    width: auto;
    padding: 0 2rem;
  }
}

@media screen and (max-width: 1000px) {
  .hero {
    min-height: 320px;
  }

  .hero .area {
    height: auto;
    padding: 15vw 0 20vw 0;
    max-width: 100%;
    width: auto;
    flex-direction: column-reverse;
  }

  .hero .area .movie {
    width: 90vw;
    background-color: transparent;
  }

  .hero .headline .label {
    font-size: 12px;
    width: 64px;
  }

  .hero .area .text-area {
    width: 90vw;
    position: relative;
    padding-bottom: 5vw;
  }

  .hero .area .image {
    width: 70%;
    height: auto;
    right: 10px;
    position: relative;
    background-color: transparent;
  }

  .hero .headline {
    line-height: 1;
  }

  .hero .headline .text {
    font-size: 32px;
    line-height: 1.5em;
    padding-bottom: 16px;
  }

  .hero .lead {
    font-size: 16px;
    line-height: 1.5em;
    width: 90%;
    padding-top: 20px;
  }

  .hero .note {
    font-size: 12px;
  }

  .hero .sim-image {
    display: none;
  }

  .hero .area .image-area {
    width: 40%;
    top: 100px;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%) fixed,url(../img/hero_bg.png);
    background-size: cover;
    height: auto;
    position: relative;
    background-position: right bottom;
    padding-bottom: 4rem;
  }

  .hero .area {
    padding: 25vw 0 15vw 0;
  }

  .hero .area .text-area {
    width: auto;
    padding: 0 1rem 1rem 1rem;
  }

  .hero .headline .label {
    position: relative;
    top: 0;
  }

  .hero .headline {
    top: 0;
    left: 0;
    margin-bottom: 5px;
    line-height: 1rem;
    text-align: center;
  }

  .hero .headline .text {
    font-size: 28px;
    margin-bottom: 0;
    padding: 8px 0;
    line-height: 1.5em;
    text-align: left;
    display: block;
    width: auto;
  }

  .hero .area .image {
    width: 240px;
    height: auto;
    top: 80px;
    right: 0;
    text-align: center;
    margin:  0 auto;
    background-color: transparent;
  }

  .hero .area .image img {
    width: 100%;
    margin: 0 auto;
  }

  .hero .lead {
    font-size: 16px;
    line-height: 1.75rem;
    text-align: left;
    display: block;
    padding: 0;
    width: auto;
    bottom: 0;
  }

  .hero .area .movie {
    width: calc(100% - 1rem);
    padding: 0 0.5rem;
  }

  .hero .area .movie .video {
    margin-bottom: 1rem;
  }

  .hero .area .movie .btn {
    padding: 0 1rem;
    display: block;
    width: auto;
  }
}

@media screen and (max-width: 375px) {
  .hero .headline .text {
    font-size: 24px;
  }

  .layout-main .hero  .lead { 
    font-size: 14px;
  }
}


/* --------------------
news
-------------------- */
.news {
  padding: 0;
  background: #edf4f7;
  margin-bottom: -10px;
}

.news .news-container {
  border: none;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  min-height: 60px;
  box-shadow: rgb(0 0 0 / 10%) 2px 2px 0;
  position: relative;
  top: -30px;
  z-index: 70;
  margin: 0 10%;
}

.news .news-container .area {
  display: flex;
  align-items: center;
  padding: 32px 0;
}

.news .news-title {
  color: #2C95BB;
  font-size: 20px;
  text-align: center;
  padding: 8px 0;
  width: 100px;
}

.news .news-list {
  padding: 0 10px;
  line-height: 1.5;
  background-color: #fff;
  width: 100%;
  min-height: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.news .news-list .item-list .item {
  padding: 0 0 16px 0;
  font-size: 1vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.news .news-list .item-list .item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.news .news-list .item-list .item a {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  line-height: 1.5;
  color: #2C95BB;
}

.news .news-list .item-list .item a:hover {
  text-decoration: underline;
  color: #46C3F1;
}

.news .time {
  color: #2c2c2c;
  margin: 0 10px;
  min-width: 100px;
  display: inline-block;
  font-size: 16px;
  line-height: 1.5em;
}

@media screen and (min-width: 1600px) {
  .news .news-container {
    margin: 0 15%;
  }

  .news .news-title {
    font-size: 1vw;
  }

  .news .time {
    min-width: 6vw;
    font-size: 0.85vw;
  }

  .news .news-container .area {
    width: auto;
    max-width: 100%;
    margin: 0 3vw;
    padding: 2vw 0;
  }

  .news .news-list .item-list .item {
    padding-bottom: 1vw;
  }

  .news .news-list .item-list .item a {
    font-size: 0.85vw;
    width: auto;
  }
}

@media screen and (max-width: 1200px) {
  .news .news-container {
    margin: 0 10px;
  }

  .news .news-list .item-list .item a {
    font-size: 1rem;
  }

  .news .time {
    font-size: 1rem;
  }
}

@media screen and (max-width: 960px) {
  .news .news-container {
    margin: 0 10px;
  }

  .news .news-container .area {
    display: block;
  }

  .news .news-title {
    text-align: center;
    width: 100%;
    padding: 0 0 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .news .news-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: -24px;
    background: rgb(255, 255, 255);
    margin: 10px;
    padding: 0px;
  }

  .news .news-container .area {
    display: block;
  }

  .news .news-list {
    padding: 10px 20px;
    width: auto;
  }

  .news .news-list ul li {
    padding: 0;
    margin: 0 1.5rem 0.5rem 0;
  }

  .news .time {
    display: block;
    margin: 0 0 10px 0;
    width: 100%;
    text-align: left;
  }

  .news .news-list .item-list .item {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 0 24px 0;
    margin: 0;
  }

  .news .news-list .item-list .item:last-child {
    padding-bottom: 0;
  }
}

/* --------------------
.task-and-solution
-------------------- */
.task-and-solution {
  padding: 24px 0 0 0;
  background: #edf4f7;
}

.task-and-solution .bg-black {
  background-color: #333;
  margin: 0 10%;
  border-radius: 10px;
  min-height: 880px;
  height: calc(100vw - 480px);
}

/*
.task
-------------------- */

.task {
  padding: 60px 0 0 0;
  position: relative;
}

.task::before {
  display: block;
  content: "";
  width: 160px;
  height: 4px;
  background-color: #23b8ef;
  position: absolute;
  top: 0;
  left: calc(50% - 80px);
}

.task .headline {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.task .headline span {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.task .headline span::before {
  content: none;
}

.task .item-list {
  display: flex;
  margin-top: 50px;
  justify-content: center;
  gap: 20px;
}

.task .item-list .item {
  background-color: transparent;
  border-radius: 10px;
  padding: 0;
  width : 33.33333% ;
  width : -webkit-calc(100% / 3) ;
  width : calc(100% / 3) ;
  min-height: 240px;
  position: relative;
  margin-bottom: 40px;
}

.task li:nth-of-type(1n + 2) {
  margin-left: 20px;
}

.task .item-list .item .title {
  line-height: 1.8rem;
  text-align: center;
  font-weight: bold;
}

.task .item-list .item .title span {
  font-weight: bold;
  color: #fff;
  font-size: 20px;
}

.task figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 200px;
}

.task figure img {
  width: 180px;
}

@media screen and (min-width: 1600px) {
  .task-and-solution .bg-black {
    margin: 0 15%;
    max-height: 40vw;
  }

  .task .headline span {
    font-size: 1.85vw;    
  }

  .task-and-solution .bg-black .task {
    width: auto;
    max-width: 50vw;
    padding-top: 3vw;
    padding-bottom: 1vw;
  }

  .task .item-list .item .title span {
    font-size: 1.25vw;
  }
}

@media screen and (max-width: 1200px) {
  .task-and-solution .bg-black {
    margin: 0 10px;
  }

  .task .headline span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 960px) {
  .task-and-solution {
    padding-bottom: 360px;
  }
  .task-and-solution .task .headline span {
    font-size: 28px;
  }
  .task {
    padding-top: 40px;
  }
  .task .item-list {
    margin-bottom: 40px;
  }
  .task .item-list .item .title {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .task-and-solution {
    padding-bottom: 40px;
  }
  .task-and-solution .task {
    padding: 40px 0;
  }
  .task-and-solution .task .headline {
    margin-bottom: 40px;
  }
  .task-and-solution .task .headline span {
    font-size: 24px;
  }
  .task-and-solution .task .item-list {
    display: block;
    margin: 0;
  }
  .task-and-solution .task .item-list .item {
    width: auto;
    margin: 0 0 20px 0;
  }
  .task-and-solution .task .item-list .item .title {
    font-size: 20px;
  }
  .task-and-solution .task .item-list .item.icon-cost figure {
    top: 0;
  }
  .task .item-list .item.icon-security {
    top: 0;
  }
  .task li:last-child {
    margin-bottom: 0;
  }
  .task-and-solution .bg-black {
    height: auto;
  }
  .task-and-solution .btn.black .click-area {
    background-color: #23b8ef;
  }
  .task-and-solution .btn.black .click-area:hover {
    background-color: #333;
  }
}

/*
.solution
-------------------- */
.solution {
  padding: 0;
}

.solution .area {
  position: relative;
}

.solution .headline {
 padding-top: 0;
 padding-bottom: 20px;
 margin-bottom: 0;
}

.solution .headline span {
  color: #20b8ef;
  border-bottom: none;
  line-height: 1.5em;
  font-size: 40px;
  font-weight: bold;
}

.solution .headline span::before {
  content: none;
}

.solution .lead {
  font-size: 20px;
  text-align: center;
  line-height: 2rem;
  color: #fff;
  font-weight: normal;
  padding-bottom: 10px;
}

.solution .item-list {
 display: flex;
 margin-bottom: 50px;
 padding-top: 40px;
 justify-content: center;
 gap: 30px;
}

.solution .item-list .item {
 background-color: #fff;
 border-radius: 10px;
 padding: 20px 16px;
 width : 33.33333% ;
 width : -webkit-calc(100% / 3) ;
 width : calc(100% / 3) ;
 box-shadow: rgb(0 0 0 / 10%) 2px 2px 0;
 position: relative;
}

.solution .item-list .item .title {
 display: block;
 margin-bottom: 20px;
 text-align: center;
 min-height: 96px;
}

.solution .item-list .item .title span {
 font-size: 20px;
 text-align: center;
 color: #333;
 line-height: 1.6em;
}

.solution .item-list .item figure {
 min-height: 160px;
 margin-bottom: 10px;
}

.solution figure {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 min-height: 110px;
}

.solution .item-list .item .lead {
 font-size: 16px;
 line-height: 1.75rem;
 text-align: center;
 color: #333;
 text-shadow: none;
}

.solution .about-icon001,
.solution .about-icon002,
.solution .about-icon003 {
 width: 100%;
}

.solution .btn {
  padding-top: 0;
}

@media screen and (min-width: 1600px) {
  .solution .headline span {
    font-size: 1.85vw;
  }

  .solution .lead {
    font-size: 1vw;
    line-height: 1.75;
  }

  .solution .area {
    width: auto;
    max-width: 60vw;
  }

  .solution .item-list .item .title {
    min-height: 5vw;
  }

  .solution .item-list .item .title span {
    font-size: 1.25vw;
  }

  .solution .item-list .item .lead {
    font-size: 1vw;
    line-height: 1.75;
  }
}

@media screen and (max-width: 960px) {
  .solution .item-list {
    gap: 10px;
  }
  .solution .headline span {
    font-size: 32px;
  }
  .solution .lead {
    font-size: 16px;
  }
  .solution .item-list .item {
    padding: 10px;
  }
  .solution .btn.black {
    width: 55%;
  }
}

@media screen and (max-width: 767px) {
  .solution {
    padding-bottom: 20px;
  }
  .solution .headline span {
    font-size: 28px;
    line-height: 40px;
  }
  .solution .lead {
    font-size: 16px;
    line-height: 1.75rem;
  }
  .solution .item-list {
    display: block;
    margin-bottom: 0;
  }
  .solution .item-list .item {
    width: auto;
    margin-bottom: 20px;
  }
  .solution .item-list .item .title {
    min-height: auto;
  }
  .solution .item-list .item.item-design {
    top: 0;
  }
  .solution .btn.orange {
    width: 100%;
  }
  .solution .btn.black {
    width: 100%;
  }
}


/* --------------------
price
-------------------- */

.price {
 margin-top: 25vw;
 padding: 80px 0 40px 0;
 background: #edf4f7;
}

.price .lead {
 font-size: 20px;
 margin-bottom: 30px;
 line-height: 1.6em;
}

.price .inner {
  margin-top: 40px;
}

.price .inner .bnr-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.price .inner .bnr-list .bnr-item {
  width: calc(50% - 10px);
}

.price .inner .bnr-list .bnr-item .click-area {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 0;
  min-height: 334px;
  margin-bottom: 20px;
  display: block;
}

.price .inner .bnr-list .bnr-item .click-area img {
  width: 100%;
  transition: all 0.2s ease-in-out;
}

.price .inner .bnr-list .bnr-item .click-area:hover img {
  opacity: 0.6;
}

.price .inner .bnr-list .bnr-item .lead {
  font-size: 16px;
  text-align: left;
  line-height: 1.75em;
  margin-bottom: 20px;
}

.price .inner .bnr-list .bnr-item .lead a {
  transition: all 0.2s ease-out;
}

.price .inner .bnr-list .bnr-item .lead a:hover {
  text-decoration: underline;
}

.price .price-outline {
  width: 700px;
  margin: 0 auto 40px auto;
}

.price .configuration-example .image {
  width: 80px;
  height: 80px;
  display: block;
  background-color: #ccc;
  border-radius: 40px;
  margin-right: 16px;
}

.price .configuration-example .image img {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  box-shadow: rgb(0 0 0 / 10%) 3px 3px 0;
}

.price .configuration-example .title-area {
  margin-right: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.price .configuration-example .area .ul-list .item .label {
  background-color: #565656;
  padding: 4px;
  border-radius: 4px;
  font-size: 12px;
  min-width: 80px;
  text-align: center;
  color: #fff;
}

.price .configuration-example .area .ul-list {
  padding-bottom: 40px;
}

.price .configuration-example .area .ul-list .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  padding: 20px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  border-radius: 10px;
}

.price .configuration-example .area .ul-list .item:last-child {
  margin-bottom: 0;
}

.price .configuration-example .area .ul-list .item .title {
  padding: 0 0 0 10px;
}

.price .configuration-example .area .ul-list .item .title span {
  font-size: 24px;
  color: #333;
}

.price .configuration-example .area .ul-list .item .title .ruby {
  font-size: 16px;
}

.price .configuration-example .area .score-list {
  display: block;
}

.price .configuration-example .area .score-list .item {
  padding: 8px;
  box-shadow: none;
}

.price .configuration-example .area .score-list .item .label {
  font-size: 12px;
  min-width: 80px;
  text-align: center;
  margin: 0;
  padding: 4px;
}

.price .configuration-example .area .item .score-area {
  width: 100%;
}

.price .configuration-example .area .item .score-area .item {
  margin: 10px 0 0 0;
  padding: 0;
}

.price .configuration-example .area .item .score {
  font-size: 20px;
  margin-left: 10px;
}

.price .configuration-example .area .score-list .item .score .unit {
  font-size: 12px;
  padding-left: 4px;
}

.price .configuration-example .area .btn {
  width: auto;
  min-width: 200px;
  margin: 0 0 0 auto;
  padding-top: 0;
}

.price .configuration-example .area .btn .click-area {
  min-height: 40px;
}

.price .area .campaign {
  margin: 80px 0 0 0;
}

.price .area .campaign .campaign-inner .service-sim {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price .area .campaign .service-sim .click-area {
  width: 50%;
}

.price .area .campaign .service-sim .click-area img {
  width: 100%;
  transition: all 0.2s;
}

.price .area .campaign .service-sim .click-area:hover img {
  opacity: 0.6;
}

.price .area .campaign .service-sim .service-summary {
  width: 50%;
  padding-left: max(1vw, 16px);
}

.price .area .campaign .service-sim .service-summary .lead {
  text-align: left;
  font-size: max(1.25vw, 16px);
}

.price .area .campaign .service-sim .btn {
  width: auto;
  padding-top: 0;
}

.price .area .campaign .service-sim .btn .click-area {
  border: 1px solid #2C95BB;
  transition: all 0.2s;
}

.price .area .campaign .service-sim .btn .click-area .text {
  font-size: max(1vw, 16px);
  color: #2C95BB;
}

.price .area .campaign .service-sim .btn .click-area:hover {
  background-color: #2C95BB;
}

.price .area .campaign .service-sim .btn .click-area:hover .text {
  color: #fff;
}


@media screen and (min-width: 1600px) {  
  .price .configuration-example {
    margin: 0 auto;
    width: 65vw;
  }

  .price .lead {
    font-size: 1vw;
    line-height: 1.75;
  }

  .price .price-outline {
    width: 60%;
    margin-bottom: 2vw;
  }

  .price .configuration-example .area .btn {
    min-width: auto;
    position: relative;
    right: 2vw;
  }

  .price .configuration-example .area .btn .click-area {
    min-height: auto;
    padding: 0.5vw 1vw;
  }

  .price .configuration-example .image {
    width: 5vw;
    height: 5vw;
    border-radius: 2.5vw;
    margin-right: 1vw;
  }

  .price .configuration-example .image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }

  .price .configuration-example .area .ul-list .item .title span {
    font-size: 1.5vw;
  }

  .price .configuration-example .area .ul-list .item .label {
    font-size: 0.75vw;
  }

  .price .configuration-example .area .item .score {
    font-size: 1.25vw;
  }

  .price .configuration-example .area .score-list .item .score .unit {
    font-size: 0.75vw;
  }

  .price .configuration-example .btn .click-area span {
    font-size: 0.875vw;
  }

  .price .area .campaign {
    width: 65vw;
    margin: 5vw auto 0 auto;
  }

  .price .inner .bnr-list {
    gap: 2vw;
  }

  .price .inner .bnr-list .bnr-item .lead {
    font-size: 1vw;
    line-height: 1.75;
  }
}

@media screen and (max-width: 1200px) {
  .price {
    margin-top: 40vw;
  }
}

@media screen and (max-width: 960px) {
  .price {
    margin-top: 40px;
  }

  .price .maxheadline .text {
    font-size: 32px;
  }

  .price .lead {
    font-size: 16px;
  }

  .price .btn.black,
  .price .inner .btn.btn-sim {
    width: 70%;
  }

  .price .inner .headline .text {
    font-size: 20px;
  }

  .price .inner .bnr-list .bnr-item .click-area {
    height: auto;
    min-height: auto;
  }

  .price .configuration-example {
    margin: 0 10px;
  }

  .price .price-outline {
    width: 100%;
  }

  .price .configuration-example .area .ul-list .item .title-area .label {
    margin: 0 auto 5px 0;
    font-size: 12px;
  }

  .price .configuration-example .area .ul-list .item .title-area .score-area .label {
    margin: 0;
  }

  .price .configuration-example .title-area {
    flex-direction: column;
  }

  .price .configuration-example .area .ul-list .item .title {
    padding: 0;
  }

  .price .configuration-example .area .ul-list .item .title .ruby {
    display: block;
  }

  .price .configuration-example .area .item .score-area .item {
    justify-content: flex-start;
  }

  .price .configuration-example .area {
    margin: 0 auto;
    max-width: 100%;
    width: calc(100% - 20px);
  }

  .price .area .campaign .headline span::before {
    left: calc(100% - 50px);
  }

  .price .area .campaign .campaign-inner .service-sim {
    flex-direction: column;
    width: 75%;
    margin: 0 auto;
  }

  .price .area .campaign .service-sim .click-area {
    width: auto;
  }

  .price .area .campaign .service-sim .service-summary {
    width: auto;
    padding-left: max(1vw, 16px);
  }

  .price .area .campaign .service-sim .service-summary .lead {
    text-align: left;
    font-size: max(1.25vw, 16px);
    padding-top: 1rem;
  }

  .price .area .campaign .service-sim .btn {
    width: auto;
    padding-top: 0;
  }

  .price .area .campaign .service-sim .btn .click-area {
    border: 1px solid #2C95BB;
    transition: all 0.2s;
  }

  .price .area .campaign .service-sim .btn .click-area .text {
    font-size: 1rem;
    color: #2C95BB;
  }

  .price .area .campaign .service-sim .btn .click-area:hover {
    background-color: #2C95BB;
  }

  .price .area .campaign .service-sim .btn .click-area:hover .text {
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .price {
    padding: 40px 0;
  }

  .price .configuration-example .area {
    width: auto;
    padding: 0;
  }

  .price .lead {
    font-size: 16px;
  }

  .price .inner {
    padding: 20px;
  }

  .price .inner .bnr-list {
    flex-direction: column;
  }

  .price .inner .bnr-list .bnr-item {
    width: 100%;
    margin-bottom: 40px;
  }

  .price .inner .bnr-list .bnr-item .click-area {
    min-height: auto;
  }

  .price .inner .bnr-list li:last-child {
    margin-bottom: 0;
  }

  .price .btn,
  .price .section .btn {
    margin-top: 0;
    width: 100%;
  }

  .price .inner .btn .text {
    font-size: 12px;
  }

  .price .btn.black,
  .price .inner .btn.btn-sim  {
    width: 100%;
  }

  .price .configuration-example .area .ul-list .item {
    flex-wrap: wrap;
    padding: 10px;
  }

  .price .configuration-example .image {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin-right: 10px;
  }

  .price .configuration-example .image img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
  }

  .price .configuration-example .title-area {
    width: calc(100% - 110px);
    margin: 10px 0;
    text-align: left;
    display: block;
  }

  .price .configuration-example .area .ul-list .item .title-area .label {
    display: block;
    max-width: 80px;
    font-size: 12px;
  }

  .price .configuration-example .area .ul-list .item .title {
    padding: 5px 0 0 0;
    display: block;
    text-align: left;
  }

  .price .configuration-example .area .ul-list .item .title span {
    line-height: 1.3em;
  }

  .price .configuration-example .area .ul-list .item .title .ruby {
    display: block;
  }

  .price .configuration-example .area .btn {
    margin: 20px auto 10px auto;
  }

  .price .area .campaign .headline span::before {
    left: calc(50% - 15px);
  }

  .price .area .campaign .campaign-inner .service-sim {
    width: auto;
  }
}

/*
.sim-area
-------------------- */
.sim-area {
  width: calc(100% - 40px);
  max-width: 960px;
  margin: 0 auto 40px auto;
}

.sim-area .sim-inner .sim-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap:  20px;
}

.sim-area .sim-inner .inner {
  margin-top: 0;
}

.sim-area .sim-inner .sim-list .bg-white-item {
  background-color: #fff;
  width: calc(50% - 10px);
  height: auto;
  box-shadow: rgb(0 0 0 / 10%) 2px 2px;
  border-radius: 5px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sim-area .lead {
  font-size: 16px;
  line-height: 1.75em;
  margin-bottom: 0;
}

.bg-white-item .inner {
  padding: 20px;
}

.bg-white-item .inner .image {
  width: 100%;
  padding: 0;
  margin-top: 0;
  margin-bottom: 20px;
  box-shadow: none;
  display: block;
  text-align: center;
}

.bg-white-item .inner .image img {
  height: 240px;
  width: auto;
}

.bg-white-item .product-title {
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.bg-white-item .product-title .text {
  font-size: 28px;
}

.bg-white-item .price-score {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.bg-white-item .price-score .tax-included {
  font-size: 16px;
}

.price .table.blue.bg-white {
  margin: 0;
}

.table.blue.bg-white .bg-blue {
  width: 320px;
}

.bg-white-item .ul-list li {
  margin-bottom: 10px;
}

/* btn  */
.price.price .btn.white.amazon {
  margin: 0 20px 20px 20px;
  padding-top: 0;
  display: flex;
  align-items: center;
  width: auto;
}

.price .multi-sim .btn.white.amazon {
  margin-bottom: 0;
  position: relative;
  top: 0;
  position: static;
  margin-bottom: 20px;
}

.price .multi-sim .btn.white.positon-botom {
  position: static;
}

.price .chip-sim {
  position: relative;
}

.price .chip-sim .btn.white.positon-botom {
  position: static;
  width: calc(100% - 40px);
  margin: auto 20px 20px 20px;
}

.price .btn .click-area.btn-area {
  background-color: #fff;
  border: 1px solid #2C95BB;
  box-shadow: none;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  color: #2C95BB;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.price .btn .click-area.btn-area:hover {
  background-color: #2C95BB;
  text-decoration: none;
  color: #fff;
}

@media screen and (min-width: 1600px) {
  .bg-white-item .inner .image img {
    width: 50%;
    height: auto;
  }

  .sim-area {
    width: auto;
    max-width: 65vw;
  }

  .sim-area .sim-inner .sim-list {
    gap: 1.5vw;
  }

  .sim-area .sim-inner .inner {
    padding: 1.5vw;
  }

  .bg-white-item .product-title .text {
    font-size: 1.5vw;
  }

  .bg-white-item .price-score {
    font-size: 1.25vw;
  }

  .bg-white-item .price-score .tax-included {
    font-size: 0.85vw;
  }

  .bg-white-item .ul-list li {
    font-size: 0.85vw;
  }

  .sim-area .lead {
    font-size: 0.85vw;
  }
}

@media screen and (max-width: 960px) {
  .table.blue.bg-white .bg-blue {
    width: 260px;
  }

  .bg-white-item .product-title {
    line-height: 2em;
    margin-bottom: 0;
  }

  .bg-white-item .product-title .text {
    font-size: 22px;
  }

  .bg-white-item .price-score {
    font-size: 20px;
  }

  .price .btn.white.amazon {
    top: 0;
  }

  .price .sub-section .image {
    width: 100%;
  }

  .bg-white-item .inner .image img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .sim-area .sim-inner .sim-list {
    flex-direction: column;
  }

  .sim-area .sim-inner .sim-list .bg-white-item {
    width: 100%;
    min-height: auto;
  }

  .bg-white-item .product-title .text {
    font-size: 20px;
  }

  .price .chip-sim .btn.white.positon-botom {
    position: static;
  }

  .price {
    padding-bottom: 0;
  }

  .price .sim-area .footer-normal {
    width: 100%;
    margin: 40px 0 0 0;
  }

  .price .table.blue.bg-white .bg-blue {
    width: 50vw;
  }
}

/* --------------------
.case-and-feature
-------------------- */
.case-and-feature {
 padding: 40px 0 80px 0;
 background: #edf4f7;
}

.case-and-feature .area {
  padding-bottom: 80px;
}

.case-and-feature .area.lead-area {
  padding-bottom: 20px;
}

.case-and-feature .area.lead-area .maxheadline .text {
  color: #fff;
}

.case-and-feature .area.lead-area .lead {
  font-size: 20px;
  color: #fff;
  line-height: 2rem;
}

.case-and-feature .bg-black {
  background-color: #333;
  margin: 0 10%;
  padding: 60px 0 80px 0;
  border-radius: 10px;
  position: relative;
}

@media screen and (min-width: 1600px) {
  .case-and-feature .bg-black {
    margin: 0 15%;
    border-radius: 0.5vw;
  }
}

@media screen and (max-width: 1250px) {
 .case-and-feature .bg-black {
    margin: 0 10px;
    padding: 40px 0;
  }
}

@media screen and (max-width: 960px) {

  .case-and-feature .area.lead-area .maxheadline .text {
    font-size: 32px;
  }

  .case-and-feature .area.lead-area .lead {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .case-and-feature {
    padding: 40px 0;
  }

  .case-and-feature .bg-black {
    height: auto;
    padding: 40px 0;
  }

  .case-and-feature .area.lead-area {
    padding-bottom: 0;
  }

  .case-and-feature .area.lead-area .lead {
    font-size: 16px;
  }

  .case-and-feature .btn {
    width: auto;
  }
}

/*
.case
-------------------- */

.case {
  padding: 0;
  position: relative;
 }

.case .item-list {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
  margin: 0 20px;
}

.case .item {
  width : 33.33333% ;
  width : -webkit-calc(100% / 3) ;
  width : calc(100% / 3) ;
  min-height: 320px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgb(0 0 0 / 40%) 4px 4px 0;
}

.case .item .click-area img,
.case .item .click-area .title span {
  transition: all 0.2s ease-out;
}

.case .item .click-area .title span {
  display: block;
  width: auto;
}

.case .item .click-area:hover img {
  opacity: 0.6;
}

.case .item .click-area:hover .title span {
  text-decoration: underline;
  color: #46C3F1;
}

.case .item .text-area {
  padding: 0 10px 20px 10px;
}

.case .item .click-area .label {
  font-size: 12px;
  position: relative;
  top: 16px;
  left: 20px;
  color: #333;
  margin-bottom: 20px;
  display: block;
}

.case .item .title {
  display: block;
  margin: 0;
  padding: 0 10px 10px 10px;
}

.case .item .title span {
  color: #2C95BB;
  font-size: 16px;
  line-height: 24px;
  padding: 0 10px;
}

.case .item img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.case .item .lead {
  font-size: 14px;
  text-align: left;
  display: block;
  padding: 0 10px 0 10px;
}

.case .btn {
  padding: 40px 0 0 0;
}

@media screen and (min-width: 1600px) {
  .case .item-list {
    gap: 1.5vw;
    width: 90%;
    margin: 0 auto;
  }

  .case-and-feature .area.lead-area .lead {
    font-size: 0.95vw;
    line-height: 1.75;
  }

  .case .item .click-area .label {
    font-size: 0.85vw;
  }

  .case .item .click-area .title span {
    font-size: 1.125vw;
    line-height: 1.5;
  }

  .case .item .lead {
    font-size: 1vw;
    line-height: 1.75;
  }
}

@media screen and (max-width: 960px) {
  .case .item-list {
    gap: 10px;
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .case .maxheadline .text {
    font-size: 32px;
    line-height: 1.75rem;
  }

  .case .lead {
    font-size: 16px;
  }

  .case .item-list {
    flex-direction: column;
    margin-top: 20px;
  }

  .case .item-list .item {
    margin-top: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .case .item-list .item:last-child {
    margin-bottom: 0;
  }

  .case .item-list .item .lead {
    font-size: 16px;
  }

}

/*
feature
-------------------- */

.feature {
  padding: 0;
  position: relative;
}

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

.feature .area.margin-bottom-none,
.feature .inner.margin-bottom-none {
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature .headline .text {
  color: #20B8EF;
  font-size: 32px;
  font-weight: bold;
}

.feature .headline span::before {
  content: none;
}

.feature .item-list {
  display: block;
  position: relative;
}

.feature .item-list .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  margin-bottom: 40px;
}

.feature .item-list .item:last-child {
  margin-bottom: 0;
}

.feature .item-list .item figure {
  width: 80px;
  margin-right: 20px;
}

.feature .item-list .item figure img {
  width: 80px;
  border-radius: 40px;
  box-shadow: rgba(0, 0, 0, 20%) 4px 4px 0;
}

.feature .item-list .item .title {
 margin-bottom: 10px;
 text-align: left;
 display: block;
}

.feature .item-list .item .title span {
 font-size: 20px;
 line-height: 1.8rem;
 font-weight: bold;
 color: #fff;
}

.feature .item-list .item .lead {
 display: block;
 font-size: 16px;
 text-align: left;
 color: #fff;
}

.feature img {
 width: 96px;
}

.feature small {
 font-size: 12px;
}

.feature small {
 font-size: 12px;
}

.feature .btn {
 padding: 40px 0 0 0;
}

@media screen and (min-width: 1600px) {
  .feature .inner {
    width: auto;
    max-width: 80%;
  }

  .feature .headline .text {
    font-size: 1.85vw;
  }

  .feature .item-list .item {
    margin-bottom: 3.5vw;
  }

  .feature .item-list .item figure {
    width: 7vw;
    margin-right: 1vw;
  }

  .feature .item-list .item figure img {
    width: 100%;
    border-radius: 50%;
  }

  .feature .item-list .item .text-area {
    width: 90%;
  }

  .feature .item-list .item .title span {
    font-size: 1.5vw;
  }

  .feature .item-list .item .lead {
    font-size: 1vw;
  }
}

@media screen and (max-width: 960px) {
  .feature .inner {
    padding: 0 10px;
  }
  .feature .headline .text {
    font-size: 28px;
  }
  .feature .item-list {
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .feature .inner {
    width: auto;
    padding: 0;
  }

  .feature .headline {
    padding-bottom: 0;
    margin-bottom: 20px;
  }

  .feature .item-list {
    display: block;
  }

  .feature .item-list .item {
    width: auto;
    margin: 0 0 40px 0;
    align-items: flex-start;
  }

  .feature .item-list .item .title {
    display: flex;
    align-items: center;
    min-height: 60px;
  }

  .feature .item-list .item figure {
    margin: 0 10px;
  }

  .feature .item-list .item figure img {
    width: 60px;
    height: 60px;
    border-radius: 30px;
  }

  .feature .item-list .item .text-area {
    width: 100%;
  }

  .feature .item-list .item .lead {
    width: calc(100% + 60px);
    position: relative;
    left: -70px;
  }
}

/* --------------------
.device-list-support
-------------------- */
.device-list-support .bg-blue {
  padding: 40px 0 60px 0;
  background-color: #2c95bb;
  margin: 0 10%;
  border-radius: 10px;
}

.device-list-support .bg-blue .area {
  position: relative;
  padding-top: 0;
}

.device-list-support .bg-blue .area .maxheadline {
  padding: 20px 0 0 0;
}

.device-list-support .bg-blue .area .maxheadline .text {
  color: #fff;
  font-size: 40px;
}

.device-list-support .bg-blue .area .maxheadline .en {
  color: #fff;
}

.device-list-support .bg-blue .area .lead.large-text {
  font-size: 20px;
  line-height: 1.75em;
  color: #fff;
}

@media screen and (min-width: 1600px) {
  .device-list-support .bg-blue {
      margin: 0 15%;
  }
}

@media screen and (max-width: 1250px) { 
  .device-list-support .bg-blue {
      margin: 0 10px;
  }
}

@media screen and (max-width: 767px) { 
  .device-list-support .bg-blue {
    padding: 40px 0;
  }

  .device-list-support .bg-blue .area .maxheadline { 
    padding-top: 0;
  }

  .device-list-support .bg-blue .area .maxheadline .text {
    font-size: 32px;
    line-height: 1.5em;
  }

  .device-list-support .bg-blue .area .lead.large-text {
    font-size: 16px;
  }
}

/* 
.device-list
-------------------- */
.device-list {
  margin-bottom: 80px;
}

.device-list .btn .click-area:hover {
  background-color: #333;
}

@media screen and (max-width: 960px) {
  .device-list .maxheadline .text {
    font-size: 32px;
  }
}

/* 
.support
-------------------- */
.support .list-area {
  padding-top: 32px;
}

.support .list-area .item-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}

.support .list-area .item-list .item.white-bg {
  width: calc(50% - 15px);
  height: auto;
  box-shadow: rgb(0 0 0 / 20%) 4px 4px;
  border-radius: 4px;
  background-color: #fff;
  position: relative;
}

.support .list-area .item-list .item.white-bg .inner {
  padding: 20px;
  position: relative;
  min-height: 280px;
}

.support .list-area .item-list .item.white-bg .inner .headline { 
  margin-bottom:0;
  min-height: 72px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.support .list-area .item-list .item.white-bg .inner .headline .text {
  font-size: 24px;
}

.support .list-area .item-list .item.white-bg .inner .headline .text::before {
  content: none;
}

.support .list-area .item-list .item.white-bg .inner .btn {
  width: calc(100% - 40px);
  position: absolute;
  bottom: 20px;
  left: 20px;
}

@media screen and (min-width: 1600px) {
  .support .list-area .item-list {
    margin: 0 4vw 1vw 4vw;
  }

  .device-list-support .bg-blue .area .maxheadline .text {
    font-size: 2vw;
  }

  .device-list-support .bg-blue .area .maxheadline .en {
    font-size: 0.85vw;
  }

  .device-list-support .bg-blue .area .lead.large-text {
    font-size: 1vw;
  }

  .support .list-area .item-list .item.white-bg .inner {
    min-height: 16vw;
  }

  .support .list-area .item-list .item.white-bg .inner .headline .text {
    font-size: 1.5vw;
  }

  .support .list-area .item-list .item.white-bg .inner .lead {
    font-size: 1vw;
  }
}

@media screen and (max-width: 767px) {
  .support .list-area .item-list {
    flex-direction: column;
  }

  .support .list-area .item-list .item.white-bg { 
    width:auto;
  }

  .support .list-area .item-list .item.white-bg .inner .headline { 
    min-height:auto;
  }
}


/* --------------------
faq
-------------------- */

.faq {
 padding: 80px 0;
 background-color: #edf4f7;
}

.faq .headline {
  margin-bottom: 60px;
}

.faq .menu {
  padding-bottom: 40px;
}

.faq .menu__item {
  background: #fff;
  color: #24A6D1;
  display: block;
  margin-bottom: 20px;
  padding: 20px 20px 20px 60px;
  position: relative;
  box-shadow: rgb(0 0 0 / 10%) 2px 2px 0;
  border-radius: 5px;
}

.faq .menu__item:last-child {
  margin-bottom: 0;
}

.faq .menu__item__link {
  color: #24a6d1;
  display: block;
  line-height: 1.75rem;
  padding: 0 3rem 0 1rem;
  position: relative;
  font-weight: bold;
  font-size: 20px;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}

.faq .menu__item__link::after {
  background: none;
  content: '＋';
  display: block;
  font-family: 'ヒラギノ角ゴ ProN W2', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'Yu Gothic', YuGothic, Verdana, Helvetica, 'ＭＳ Ｐゴシック', sans-serif;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 60px;
  font-size: 2rem;
  font-weight: normal;
}

.faq .menu__item__link.on::after {
  content: 'ー';
}

.faq .menu__item__link:hover {
  color: #46c3f1;
}

.faq .menu__item__link::before {
  content: 'Q';
  position: absolute;
  left: -20px;
  font-size: 20px;
}

.faq .submenu {
  background: #fff;
  display: none;
}

.faq .submenu.open {
  display: block;
}

.faq .submenu__item {
  color: #333;
  padding: 1rem 0 0 1rem;
  line-height: 2rem;
  font-size: 16px;
}

.faq .menu__item__link .link_text {
  text-decoration: underline;
}

.faq .menu__item__link .link_text:hover {
  color: #46c3f1;
  text-decoration: none;
}

.faq .btn {
  margin-bottom: 0;
}

.faq .btn .fa {
  font-size: 16px;
}

.faq .lead {
  font-size: 20px;
  padding-top: 20px;
}

@media screen and (min-width: 1600px) {
  .faq .area {
    width: 60vw;
  }

  .faq .menu__item {
    padding: 1.5vw 1.5vw 1.5vw 2vw;
  }

  .faq .menu__item__link {
    font-size: 1.25vw;
    line-height: 1.5;
  }

  .faq .menu__item__link::before { 
    font-size: 1.25vw;
  }

  .faq .submenu__item {
    font-size: 1vw;
    line-height: 1.75;
  }

  .faq .menu__item__link::after {
    font-size: 1.75vw;
    top: -0.5vw;
  }
}

@media screen and (max-width: 960px) {
  .faq .maxheadline .text {
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  .faq .headline {
    margin-bottom: 2rem;
  }

  .faq .menu__item {
    padding-left: 20px;
  }

  .faq .menu__item__link::before {
    left: -10px;
  }

  .faq .menu__item__link::after {
    right: -30px;
  }

  .faq .menu__item__link::after {
    font-size: 24px;
  }

  .faq .btn {
    width: 100%;
  }

  .faq .lead {
    font-size: 16px;
  }
}

/* --------------------
.column
-------------------- */
.column .bg-blue {
  padding: 40px 0;
  background-color: #2c95bb;
  margin: 0 10%;
  border-radius: 10px;
  margin-bottom: 80px;
}

.column .bg-blue .inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 32px;
}

.column .bg-blue .inner .image {
  width: 30vw;
}

.column .bg-blue .inner .text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.column .bg-blue .inner .text-area .title {
  background: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.column .bg-blue .inner .text-area .title .text {
  font-size: 32px;
  line-height: 1.5em;
  color: #fff;
  font-weight: bold;
}

.column .bg-blue .inner .text-area .lead {
  color: #fff;
  text-align: left;
  font-size: 16px;
  line-height: 1.75em;
  margin-bottom: 20px;
}

.column .bg-blue .inner .text-area .btn {
  margin: 0;
  padding-top: 0;
  width: 15vw;
}

.column .bg-blue .inner .text-area .btn .click-area { 
  min-height: 40px;
}

.column .bg-blue .inner .text-area .btn .click-area:hover {
  background-color: #333;
}

.column .bg-blue .inner .text-area .btn .click-area .text {
  color: #2c95bb;
  font-size: 16px;
}

.column .bg-blue .inner .text-area .btn .click-area .fa {
  font-size: 16px;
  color: #2c95bb;
}

.column .bg-blue .inner .text-area .btn .click-area:hover .text,
.column .bg-blue .inner .text-area .btn .click-area:hover .fa {
  color: #fff;
}

@media screen and (min-width: 1600px) {
  .column .bg-blue {
    margin: 0 auto 2vw auto;
    padding: 2vw 0;
    width: 60vw;
    border-radius: 0.5vw;
  }

  .column .bg-blue .area {
    width: auto;
    max-width: 100%;
    padding: 0 2vw;
  }

  .column .bg-blue .inner .image { 
    width: 30vw;
  }

  .column .bg-blue .inner .text-area .title .text {
    font-size: 1.75vw;
  }

  .column .bg-blue .inner .text-area .lead {
    font-size: 1vw;
  }

  .column .bg-blue .inner .text-area .lead .pc {
    display: none;
  }

  .column .bg-blue .inner .text-area .btn .click-area {
    min-height: auto;
    padding: 0.5vw 0;
  }

  .column .bg-blue .inner .text-area .btn .click-area .text {
    font-size: 1vw;
  }
}

@media screen and (max-width: 960px) {
  .column .bg-blue {
    margin: 0 10px 80px 10px;
  }

  .column .bg-blue .inner .image {
    width: 80vw;
  }

  .column .bg-blue .inner .text-area .btn { 
    width: 20vw;
  }
}

@media screen and (max-width: 767px) {
  .column .bg-blue {
    padding: 20px 16px;
    margin-bottom: 40px;
  }

  .column .bg-blue .area {
    padding: 0;
  }

  .column .bg-blue .inner {
    flex-direction: column;
    gap: 16px;
  }

  .column .bg-blue .inner .image {
    border-radius: 8px;
    overflow: hidden;
    width: auto;
  }

  .column .bg-blue .inner .text-area .title {
    margin-bottom: 10px;
  }

  .column .bg-blue .inner .text-area .title .text {
    font-size: 24px;
  }

  .column .bg-blue .inner .text-area .lead {
    margin-bottom: 0;
  }

  .column .bg-blue .inner .text-area .btn {
    width: 50%;
    padding-top: 16px;
  }
}

/* --------------------
common
-------------------- */
.layout-main .fa {
  margin: 0 4px;
}

@media screen and (max-width: 767px) {
 .layout-main .maxheadline .text {
  font-size: 32px;
   line-height: 2.5rem;
   padding-bottom: 10px;
 }

 .layout-main .maxheadline .en {
   font-size: 14px;
 }

 .layout-main .lead {
  font-size: 16px;
 }
}