@charset "utf-8";

/* @common
----------------------------------------------------------*/

/* @top
----------------------------------------------------------*/
/* @top-hero  */
.top-hero {
  position: relative;
  z-index: 2;
  padding: 1px 0;display: flex;
  align-items: stretch; 
  overflow: hidden;
}
.top-hero-img {
  max-width: 1650px;
  margin-top: 45px;
  margin-left: auto;
}
.top-hero-img img{
    width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-hero-con {
  position: absolute;
  inset: 0;
  -webkit-box-align: center;
  align-items: center;
  max-width: 1500px;
}
.top-hero-con_inner {
  /*width: 48%;*/
  max-width: 550px;
  /*padding: 4.5% 3.5%;*/
}
.top-hero-con img {
  max-width:300px;
  width: 100%;
}
.ttl_lead{
    margin-right: .15em;
    font-size: 2.4em;
    font-weight: 600;
}

.top-hero-con .h_lead {
  margin-top: 2.5em;
  line-height: 2.2;
}
.txt {
    line-height: 2.2;
}
.top-hero-con .h_btn_list {
  margin: 15% 5px 0;
}
.top-hero-con .h_btn_list li {
  width: 60%;
  margin: 0 auto;
}

.top-hero-con .h_btn_list a {
  display: block;
  padding-left: 1.2em;
  padding-right: 1.2em;
}
.top-hero-con .h_btn_list a:hover {
  opacity: 0.8;
}


/* @top-case */

.top-case {
    text-align: center;
    z-index: 2;
    padding-top: 8%;
}

.post_row {
    line-height: 2.4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.post_col {
    margin-bottom: 2em !important;
    -ms-flex: 1 1 0%;
    -webkit-flex: 1 1 0%;
    flex: 1 1 0%;
}
.post_col-2 {
    margin-right: 50px;
    width: calc(50% - 25px);
}

.speech_balloon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.post_content *:last-child {
    margin-bottom: 0;
}
.post_content p:last-child {
    margin: 0;
}
.speech_balloon_text_inner>*:last-child {
    margin-bottom: 0 !important;
}
.speech_balloon_user {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 30px;
    margin-bottom: 2em;
    min-width: 80px;
    text-align: center;
}
.speech_balloon_user_image {
    border-radius: 50%;
    height: 100px ;
    width: 100px;
    object-fit: cover;
}
.speech_balloon_user_name {
    font-size: 87.5%;
    line-height: 1.2;
    margin-top: 12px;
}
.speech_balloon_text {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-bottom: 3em;
    position: relative;
}
.speech_balloon.left .before {
    transform: rotate(180deg);
    border-left-color: #222635;
}

.speech_balloon_text .before {
    border-left-color: inherit;
    border-width: 8px 0 8px 10px;
}
.speech_balloon.left .after {
    margin-right: -3px;
    border-right-color:#ffffff;
}
.speech_balloon_text .after {
    border-right-color: inherit;
    border-width: 8px 10px 8px 0;
}
.speech_balloon_text .before, .speech_balloon_text .after {
    border-color: transparent;
    border-style: solid;
    pointer-events: none;
    height: 0;
    margin-top: -10px;
    width: 0;
    position: absolute;
    right: 100%;
    top: 40px;
}
.speech_balloon_text_inner {
    background: #fff;
    border: 2px solid #222635;
    border-radius: 10px;
    line-height: 2;
    min-height: 80px;
    padding: 15px 12px;
    position: relative;
    color: #333;
    text-align: left;
}
.speech_balloon_text_inner p{
    margin-top: 0;
}
.speech_balloon.right {
    -webkit-box-orient: beyondtal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.speech_balloon.right .before {
    left: 100%;
    border-left-color:#222635;
}
.speech_balloon.right .after {
    left: 100%;
    transform: rotate(180deg);
    margin-left: -3px;
    border-right-color:#ffffff;
}
.speech_balloon.right .speech_balloon_user {
    margin-left: 36px;
    margin-right: 0;
}


.case-list {
  max-width: 960px;
  margin: 0 auto;
}


/* @top-attractive */
.top-attractive {
  text-align: center;
  padding-top: 2%;
  padding-bottom: 0;
}

.catch {
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  z-index: 0;
  font-weight: 700;
}

.catch::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 10px;
  width: 0;
  background: #ffff00;
  z-index: -1;
  animation: none;
}

.catch span {
  color: #e60023;
  font-weight: bold;
  font-size: 1.25em;
  display: inline-block;
  transform: translateY(-1px);
  animation: none;
  opacity: 0;
}

.catch.is-active::after {
  animation: marker 1.2s ease forwards;
}

.catch.is-active span {
  animation: pop 0.6s ease 0.8s both;
}


@keyframes marker {
  to {
    width: 100%;
  }
}

@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 20px 60px;
}

.step {
  position: relative;
  width: 28%;
  background: #f8f8f8;
  border-radius: 12px;
  text-align: center;
  padding-bottom: 30px;
}

.step-head {
  background: #f26b4f;
  border-radius: 12px 12px 0 0;
  padding: 10px 0 5px;
}

.step-label {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #fff;
}

.step-num {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
}

.step-text {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2em 0;
  line-height: 1.6;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 60%;
  transform: translateY(-60%);
  border-left: 20px solid #f26b4f;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.step-circle {
  width: 250px;
  height: 250px;
  background: #eee;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; 
}

.step-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}



.step {
  opacity: 0;
}


.step:first-child {
  opacity: 1;
}


.step.slide-in {
  animation: slideUp 0.6s ease forwards;
}


.step:nth-child(2).slide-in { animation-delay: 0.2s; }
.step:nth-child(3).slide-in { animation-delay: 0.4s; }

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(60px); 
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.text_box{
    max-width:1400px;
    width:100%;
    margin: 60px auto;
    padding-top: 40px;
    background: #ecf1f9;
}

.box-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: stretch; 
}


.con-box {
  border: 1px solid #888;
  padding: 1.5em 1em 1em 1em;
  display: flex;
  flex-direction: column;
}


.con-box p{
  text-align: left;
}


.head-box {
  display: flex;
  align-items: center;     
  justify-content: center; 
  gap: 20px;
  max-width: 600px;
  width:100%;
  position: relative;
  text-align: center;      
}


.img-box {
  text-align: center;
  margin-bottom: 1.2em;
}

.img-box img{
  width: 220px;
  height: auto;
  margin: 0 auto;
}

.name{
  font-size: 1.3rem;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.02em;
}
.name::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e9eef4;
}
.name::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #0a53a4;
}

.flow-box {
  padding: 1em;
  margin: 1em 0;
  font-size: 0.95rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.flow-box .ttl {
  font-weight: bold;
  margin-bottom: 5px;
}


.problem {
  background: #e9ecef;
  min-height: 200px;
}


.solution {
  background: #fff;
  border: 1px solid #333;
  min-height: 160px;
}


.result {
  font-weight: 600;
  padding: 1em;
  min-height: 180px;
}



.flow-box.result{
  background: #fafaeb;
  border: 10px solid #ffff00;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.flow-box.result .fw-bold{
  color: #0a53a4;
}

.arrow_1 {
  width: 0;
  height: 0;
  margin: 10px auto;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #888;
}

/* @top-jirei */
.top-jirei {
  padding-top: 4%;
  padding-bottom: 4%;
}

/* @top-feature */
.top-feature{
  position: relative;
  background: #ecf1f9;
}

.feature-hero{
  height: 400px;
  background: url(/img/top/feature-bg.jpg) no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


.feature-header,
.feature-con{
  position: relative;
  z-index: 2;
}
.feature-header{
  text-align: center;
  color: #fff; 
}
.feature-con{
    padding-top: 50px;
    padding-bottom: 50px;
}
.top-feature .widt-inner{
  margin-top: 80px; 
}


.title-marker_sub-ttl {
  position: relative;
  font-size: 2.4rem;
  color: #2E3346;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.title-marker_sub-ttl::before {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: 28%;
  transform: translateX(-50%);
  background-image: linear-gradient(
    to right,
    #0a53a4,
    #0a53a4 3px,
    transparent 3px,
    transparent 6px
  );
  background-size: 6px 1px;
}
.title-marker_sub-ttl span {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  margin-top: 1.5em;
  font-weight: 600;
  color: #0a53a4;
}

.feature-con_items{
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.feature-con_item{
  display: block;
  width: auto;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 3.2em;
  padding: 2em 1em;
  position: relative;
}

.feature-label{
  position: absolute;
  top: -30px;
  left: 20px;
  width: 90px;
  height: 110px;
  background: #f26b4f;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
  font-style: italic;
}

.label-ja{
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  opacity: 0.9;
  margin-bottom: 5px;
}

.label-num{
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
}
.feature-body{
  display: flex;
  gap: 10px;
}

.feature-catch{
  letter-spacing: 0.08em;
  color: #0a53a4;
  text-align: center;
  padding-top: 1em;
  position: relative;
  font-size: 2rem;
  z-index: 0;
  font-weight: 700;
  min-height: 120px;
}


.feature-catch::after{
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  margin: .1em auto 0;
  background: linear-gradient(90deg, #0a53a4, #3aa0ff);
}
.feature-con_item-img{
  width: 35%;
}

.feature-con_item-img img{
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.feature-text{
  width: 65%;
}

.feature-con_item-ttl{
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 0;
  padding-left: 12px;
}

.feature-con_item-txt{
  line-height: 1.7;
  padding: 0 0 20px;
  flex-grow: 1;
  text-align: left;
}


/* @top-feature_others */
.top-feature_others {
    padding-bottom: 4%;
    position: relative;
    z-index: 1;
}
.top-feature_others_con{
    padding-top: 3%;
}
.title-marker_ttl {
    font-size: 1.1em;
    font-weight: bold;
    margin: 4px 0 16px;
    padding-left: 70px;
    position: relative;
    letter-spacing: 0.08em;
}
.title-marker_ttl::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    background: #0a53a4;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.table-scroll {
  overflow-x: auto;
  white-space: nowrap;
}

.table_design12 th {
  position: sticky;
  left: 0;
  background-color: #e2e2e2;
  z-index: 2;
}


.table_design12 .head {
  position: sticky;
  left: 0;
  z-index: 3; 
  font-size: .95em;
}
.table_design12 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  min-width: 700px;
  font-weight: bold;
  text-align: center;
}
.table_design12 thead th {
  padding: 1em .8em;
  border-right: 2px solid#fff;
}
.table_design12 thead th:first-child{
  background-color: #e2e2e2;
  z-index: 3;
}
.table_design12 thead th:not(:first-child) {
  background: #aaa;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.5em;
}
.table_design12 thead th span {
  font-size: .8rem;
}
.table_design12 thead th:nth-child(2) {
  background-color: #f88400;
  position: relative;
}
.table_design12 tbody {
  border: 2px solid #eee;
}
.table_design12 tbody tr {
  background-color: #f4f4f4;
}
.table_design12 tbody tr:nth-child(odd) {
  background-color: #fff;
  border: solid 1px #999;
}
.table_design12 td {
  border-left: 2px solid #eee;
}
.table_design12 td {
  padding: .5em;
  font-size: 1.1rem;
  font-weight: 700;
}
.table_design12 td:nth-child(2) {
  border-right: 2px solid #f88400;
  border-left: 2px solid #f88400;
}
.table_design12 tr:last-child td:nth-child(2) {
  border-bottom: 2px solid #f88400;
}

/* @top-lineup */
.lineup-list{
    background: #fff;
}
.lineup-list-item {
  width: 25%;
  margin: 2% 0;
  padding: 1em;
  text-align: center;
}

.lineup-list-item .img img{
   max-width: 120px;
}

.lineup-list-item .ttl {
  font-size: 1.5rem;
}
.lineup-list-item .txt {
  margin-bottom: 0;
  line-height: 1.5;
}
.lineup-list-item:last-child{
  position: relative;
}

.lineup-list-item:last-child::after{
  content: "...etc";
  position: absolute;
  right: -5px;
  top: 90%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #666;
  white-space: nowrap;
}
/* @detail-feature */

#detail-1{
    margin-top: 2em;
}
#detail-2,#detail-3,#detail-4{
    margin-top: 3.5em;
}

.detail-feature {
    padding-top: 2%;
    padding-bottom: 4%;
}

.detail-title{
    line-height: 100%;
    letter-spacing: -0.02em;
    font-size: 4.3em;
    color: #2E3346;
}

.merit-style {
  position: relative;
  text-align: center;
  padding: 3em 2em;
}


.merit-style .en {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  color: #f26b4f; 
  font-style: italic;
  letter-spacing: 0.05em;
}


.merit-style .jp {
  display: block;
  margin-top: 10px;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a53a4;
}


.merit-style::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 150px;
  background: #ecf1f9;
  transform: translate(-50%, -50%) rotate(-20deg);
  z-index: -1;
  opacity: 0.6;
}
.title-marker_ttl1 {
    font-size: 1.1em;
    margin: 4px 0 16px;
    padding-left: 70px;
    position: relative;
    letter-spacing: 0.08em;
}
.title-marker_ttl1::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    background: #333;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}


.top-about-con-movie {
  width: 100%;
  max-width: 550px;     
  aspect-ratio: 3 / 2;  
  overflow: hidden;
  margin: 0 auto;      
}

.movie-wrap,
.movie-thumb {
  width: 100%;
  height: 100%;
  position: relative;
}

.movie-thumb img,
.movie-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featurelist_1 {
  display: flex;
  gap: 30px;
  padding-top: 1.5em;
  border-bottom: 1px solid #d9d9d9;
}

.feature_image_1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featurelist {
    display: flex;
    justify-content: space-between;
    padding: 1.5em 2.5em;
    border-bottom: 1px solid #d9d9d9;
    align-items: center;
}
.featurelist.no-border {
  border-bottom: none;
}
.feature_con {
    width: 55%;
 }
.feature_con_title {
    font-size: 1.3rem;
    line-height: 160%;
    letter-spacing: .04em;
    margin-top: 10px;
    font-weight: 600;
}
.feature_body {
    width: 90%;
    margin-top: 15px;
}
.alert-box {
    margin-bottom: 1em;
}
.feature_image {
        width: 45%;
    }
.feature_imag_title {
    line-height: 160%;
    letter-spacing: .04em;
    margin-top: 10px;
    font-weight: 500;
    text-align: center;
}
.feature-con_items_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.feature-con_item_2 {
    width: 48%;
}

.imgbox{
    max-width:1000px;
    width:100%;
    margin: 2em auto;
}
.feature-con_item_3 {
    width: 30%;
}


#detail-2 .featurelist.no-border {
  background: #e9ecef;
  padding: 1.5em;
  margin-top: 1.8em;
  position: relative;
}


#detail-2 .featurelist:not(.no-border) {
  background: #fafaeb;
  border: 5px solid #ffff00; 
  padding: 1.5em;
  margin-top: 6em;
}


#detail-2 .featurelist.no-border::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #888;
}

.alert-box{
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ff1a1a;
  padding: 1em .8em;
}


.alert-icon{
  position: relative;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid #ffe600;
}


.alert-icon::after{
  content: "!";
  position: absolute;
  top: 18px;
  left: -6px;
  font-size: 28px;
  font-weight: bold;
  color: #000;
}


.alert-icon::before{
  content: "";
  position: absolute;
  top: -6px;
  left: -46px;
  border-left: 46px solid transparent;
  border-right: 46px solid transparent;
  border-bottom: 80px solid #000;
  z-index: -1;
}

.alert-text{
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 700;
}


/* レスポンシブ*/
@media screen and (max-width: 1440px) {
 .top-hero-con_inner {
    max-width: 400px;
}
}
/* 1024px 以下 (タブレット横以下) */
@media screen and (max-width: 1280px) {
 .top-hero-con {
    margin-top: 50px;
     
}
 .top-hero-con_inner {
    padding: 3% 2.5%;
}

.top-hero-img {
    margin-top: 60px;
}
.top-hero {
    padding-bottom: 2vw;
    }
.top-hero-con .h_btn_list {
    margin: 8% 5px 0;
}
.ttl_lead {
    font-size: 1.8em;
}

}

@media screen and (min-width: 1280px) {
  /* @top
  ----------------------------------------------------------*/

  .top-hero-con .h_btn_list li {
    font-size: 1.125rem;
  }

}

/* 960px 以上 (PC・タブレット横) */
@media screen and (min-width: 960px) {



}


/* 1024px 以下 */
@media screen and (max-width: 1024px) {
    
  .top-hero {
    padding-top: 5vw;
    }
  .top-about-con-txt {
     min-width: 420px;
    padding-left: 4rem;
    padding-right: 5%; 
  }

    
 /* @detail-feature */
  
.detail-title { 
    font-size: 3.8em;
 }

.detail_section {
    display: block;
 }

/* @top-feature */
.feature-con_items{
    grid-template-columns: 1fr;
  }
.feature-con {
    padding-top: 0px;
 }
  
/* @top-attractive */

.img-box {
    max-width:150px;
}
.img-box img{
  width:90%;
  height: auto;
  display: block;
}


.name{
  font-size: 1.2rem;
}  
    

}



/* 959px 以下 (タブレット縦以下) */
@media screen and (max-width: 959px) {

  /* @common
  ----------------------------------------------------------*/

  /* @top
  ----------------------------------------------------------*/
  /* @top-hero */
   .top-hero {
    display: flex;
    flex-direction: column; 
    padding-top: 0;
    padding-bottom: 0;
  }
 
  .top-hero-con {
    position: relative;
    margin-top: 0;
     
  }
  .top-hero-con .h_lead { 
    max-width: 480px;
 }
  .top-hero-con_inner {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding:0;
  }
  .top-hero-con .h_btn_list {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 600px;
    margin: 10% auto 0;
    padding: 0 ;
    font-size: 1.2rem;

  }
    
      
 .top-hero-img {
    margin-top: 10%;
    order: -1;
  }
  .ttl_lead {
    margin-right: 0;
    font-size: 1.8em;
    text-align: center;
  }

  
  .post_row {
        display: block;
        line-height: 2;
    }
  .post_col-2 {
    margin-right: 0;
    width: auto;
  }

  /* @top-attractive */
  .top-attractive {
    padding-top: 1%; 
  }
    
  .catch {
    font-size: 1.9rem;
    }
  .step {
    width: 100%; 
    max-width: 400px; 
  }
  .text_box{
      text-align: left;
    }
    
  .steps {
    flex-direction: column; 
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
  }
  
  .step:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -20px;
    transform: translateX(50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid #f88400;
    border-bottom: none;
  }
  .box-2 {
    width: 100%;
    margin: 0 auto;
    grid-template-columns: 1fr;
 }  
/* @top-feature */



.top-feature::before {
    height: 15%;
    left: 0;
  }
.feature_image {
    width: 45%;
 }
 .feature-con_item {
    width: 100%;
}  
 .feature-con_items {
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-flow: column;
   flex-flow: column;
   margin-left: 0px;
   margin-top: 65px;
}

 .top-feature_others_con {
    padding-top: 8%;
} 
    
 .top-feature_others {
    padding-bottom: 8%;
}
 .table_design12 .head:before {
        content: "";
        position: absolute;
        top: 0;
        left: -1px;
        right: -1px;
        width: 100%;
        height: 100%;
}   
    
/* @top-case */
 .top-case {
     margin-top: 15%;
}

 

    
    
/* @top-feature_others */
 .merit-style .en {
    font-size: 3rem;
}
 .merit-style {
   padding: 2em 2em;  
}
    
    
}

/* 599px 以下 (スマホ)  */
@media screen and (max-width: 599px) {
  /* @common
  ----------------------------------------------------------*/


  /* @top
    
  ----------------------------------------------------------*/
  /* @top-hero */
  .top-hero-con .h_lead {
    margin-top: 1.5em;
  }
  .top-hero-con .h_btn_list {
    font-size: 1rem;
  }
  .top-hero-img {
    margin-top: 18%;
  }


  /* @top-attractive */
  .attractive-list {
    margin-top: 40px;
  }
    
  
    


 
  .step-circle {
    width: 200px;
    height: 200px;
  }

 
  .step-text {
    margin: 1.5em 0;
  }

  .step-num {
    font-size: 1.8rem;
  }

 .step.slide-in {
    animation: slideUp 0.9s ease forwards; 
  }
    
  
  /* @top-feature */
    
.feature-body{
  display: block;
  gap: 10px;
}
.feature-hero {
    height: 200px;
}
.title-marker_sub-ttl {
    font-size: 1.8em;
 }
 .featurelist {
     padding: .5em 1em;
     display: block; 
  }
 .feature-catch {
   font-size: 1.8em;  
   min-height: 70px;
 }
 .feature_body {
     width: 100%; 
 }
 .feature_con {
    width: 100%;
}  
 .feature_image {
    width: 100%;
} 
.feature_image p{
    margin-top: 0;
} 

.featurelist_1 {
    flex-direction: column; 
  }
.featurelist_1 p{
    margin-top: 0;
  }
    
 .feature-label {
     width: 70px;
    height: 90px;
 }
 .feature-con_item_3 p{
    font-size: .8em; 
 }
.feature-con_item-img {
    width: 100%;
    max-width:120px;
    margin: 0 auto;
}  
.feature-text {
    width: 100%;
}  
.feature-con_item-ttl {
    text-align: center;
}
    
    
 /* @detail-feature */
  
 .detail-title { 
    font-size: 2.5em;
 }
/* @top-feature_others */
.merit-style .en {
    font-size: 2.3rem;
}
.merit-style::after {
   width: 180px;
   height: 100px;
}  
    

/* @top-lineup */
  .lineup-list-item {
    width: 50%;
  }

}
