@charset "UTF-8";
/* CSS Document */


/* ------------------------

共通

------------------------ */
.yuMincho{
/*  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
}
.pc_only{
  display: block;
}
.sp_only {
  display: none;
}
.pc_img_only{
  display: inline;
}
.sp_img_only {
  display: none;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .pc_only{
    display: none;
  }
  .sp_only {
    display: block;
  }
  .pc_img_only{
    display: none;
  }
  .sp_img_only {
    display: inline;
  }
}

/* ------------------------

.sec

------------------------ */
.sec {
  padding: 75px 0 80px;
  font-size: 15px;
  background: #ffffff;
}
.sec_inner {
  width: 970px;
  margin-left: auto;
  margin-right: auto;
}
.sec_bgC{
  background-color: #F7F7F7;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .sec {
    padding: 55px 0 60px;
  }
  .sec_inner {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}


/* ------------------------

.mod_headerbar

------------------------ */
.mod_headerbar_in_nav .sub_heading{
  color: #FFF;
  text-decoration: none;
  margin-bottom: 12px;
}
.mod_headerbar_in_nav_category dl dd .sub_heading:nth-of-type(n+2){
  margin-top: 30px;
}
.mod_headerbar_in_nav .extra-link{
  margin-top: 30px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .mod_headerbar_in_nav .sub_heading{
      padding: 15px 0 12px 10px;
      margin-bottom: 0;
  }
  .mod_headerbar_in_nav_category dl dd .sub_heading:nth-of-type(n+2){
      margin-top: 15px;
  }
  .mod_headerbar_in_nav .extra-link{
      margin-top: 15px;
  }
}


/* **************************************************************

  fade_img_box

************************************************************** */
.fade_img_box {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.fade_img_box .fade_img_overlay {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 0;
  background-color: #000;
  z-index: 2;
}
.active .fade_img_box .fade_img_overlay {
  animation: fade-img-overlay-anime 1.5s ease 0s 1 normal forwards;
  -webkit-animation: fade-img-overlay-anime 1.5s ease 0s 1 normal forwards;
}
@keyframes fade-img-overlay-anime {
  0%   {width: 0%; left: 0;}
  35%  {width: 100%; left: 0;}
  100% {width: 100%; left: 101%;}
}

.fade_img_box .fade_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fade_img_box .fade_img img {
  opacity: 0;
}
.active .fade_img_box .fade_img img {
  animation: fade-img-anime 2.5s ease 0s 1 normal forwards;
}
.active  a.fade_img_block {
  display: block;
}
.active .fade_img_box .fade_img a img{
  transition: transform 0.3s linear;
  cursor: pointer;
}
.active .fade_img_box .fade_img a:hover img{
  transform: scale(1.1);
}

@keyframes fade-img-anime {
  0%   {opacity: 0;}
  25%  {opacity: 0;}
  26%  {opacity: 1;}
  100% {opacity: 1;}
}
@keyframes hover-anime {
  0%   {opacity: 1; transform: scale(1);}
  100% {opacity: 1; transform: scale(1.1);}
}

/* ------------------------

.ttl_sec_type01

------------------------ */
.ttl_sec_type01 {
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 2px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .ttl_sec_type01 {
    font-size: 24px;
  }
}

/* ------------------------

.txt_sec_type01

------------------------ */
.txt_sec_type01 {
  margin-top: 15px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

/* ------------------------

.btn_sec_type01

------------------------ */
.btn_sec_type01 {
  margin: 50px auto 0;
  width: 320px;
}
.btn_sec_type01 a{
  position: relative;
  display: block;
  padding: 18px 12px;
  text-decoration: none;
  color: #333333;
  border: 1px solid #707070;
  text-align: center;
  line-height: 1.5;
  transition: all .4s ease;
  font-size: 15px;
  letter-spacing: 1px;
}
.btn_sec_type01 a:hover{
  background-color: #ffffff;
}
.btn_sec_type01 a span{
  position: relative;
}
.btn_sec_type01 a:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 26px;
  height: 5px;
  margin-top: -3px;
  background : url(/common/sumai2020/img/icon_arrow02_b.png) no-repeat center bottom;
  background-size: 100%;
  transition: all .4s ease;
}
.btn_sec_type01 a:hover:after{
  right: -11px;
}
.btn_sec_type01 a:hover:before {
  left: 0;
  right: auto;
  width: calc(100% - 1px);
}
.btn_sec_large {
  width: 400px;
}
.btn_sec_type01.btn_sec_type01_white a {
  border:  1px solid #ffffff;
  color: #ffffff;
}
.btn_sec_type01.btn_sec_type01_white a:hover{
  background-color: rgba(0,0,0,.6);
}
.btn_sec_type01.btn_sec_type01_white a:after {
  background: url(/common/sumai2020/img/icon_arrow02_w.png) no-repeat center bottom;
  background-size: 100%;
}
.btn_sec_col2 {
  width: 800px;
  margin: 0 auto;
}
.btn_sec_col2:after{
  content:"";
  display:block;
  clear:both;
  height:0;
  overflow:hidden;
}
.btn_sec_col2 .btn_sec_type01{
  float: left;
  width: 360px;
  margin-right: 80px;
}
.btn_sec_col2 .btn_sec_type01:nth-of-type(2n){
  margin-right: 0;
}

@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .btn_sec_type01 {
    width: 89.555%;
  }
  .btn_width_type01 {
    width: 80%;
  }
  .btn_width_type02 {
    width: 84.507%;
  }
  .btn_sec_type01 a:after{
    right: 6.875%;
  }
  .btn_sec_type01 a:hover:after {
    right: 1.875%;
  }
  .btn_sec_col2 {
    width: 100%;
  }
  .btn_sec_col2 .btn_sec_type01{
    float: none;
    width: 80%;
    margin: 20px auto 0;
  }
  .btn_sec_col2 .btn_sec_type01:nth-of-type(2n){
    margin-right: auto;
  }
}
@media only screen and (max-device-width: 1280px) and (max-width: 320px){
  .btn_sec_type01 a {
    font-size: 11px;
  }
}

/* ------------------------

a.hover_moution

------------------------ */
a.hover_moution {
  overflow: hidden;
}
a.hover_moution img{
  width: 100%;
  transition-duration: 0.3s;
}
a.hover_moution:hover img{
  transform: scale(1.1);
}

/* ------------------------

colum2_wrap

------------------------ */
.colum2_wrap {
  margin-top: 45px;
}
.colum2_wrap:after{
  content:"";
  display:block;
  clear:both;
  height:0;
  overflow:hidden;
}
.colum2_wrap li {
  float: left;
  width: 460px;
}
.colum2_wrap li:nth-child(2n) {
  float: right;
}
.colum2_wrap li a{
  display: block;
  text-decoration: none;
  color: #333333;
}
.colum2_wrap li .colum2_thum {
  overflow: hidden;
}
.colum2_wrap li .colum2_txtarea{
  margin-top: 30px;
}
.colum2_wrap li .colum2_ttl{
  font-weight: bold;
  line-height: 1.5;
}
.colum2_wrap li .colum2_txt{
  margin-top: 10px;
  line-height: 1.86;
}
.colum2_wrap li a:hover .colum2_ttl{
  text-decoration: underline;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .colum2_wrap li {
    width: 48.73%;
  }
}

/* ------------------------

colum3_wrap

------------------------ */
.colum3_wrap {
  margin-top: 45px;
}
.colum3_wrap:after{
  content:"";
  display:block;
  clear:both;
  height:0;
  overflow:hidden;
}
.colum3_wrap li {
  float: left;
  width: 302px;
  margin-right: 32px;
  margin-top: 30px;
}
.colum3_wrap li:nth-of-type(-n+3) {
  margin-top: 0;
}
.colum3_wrap li:nth-of-type(3n) {
  margin-right: 0;
}
.colum3_wrap li a{
  display: block;
  width: 100%;
  text-decoration: none;
  color: #333333;
}
.colum3_wrap li .colum3_thum {
  overflow: hidden;
}
.colum3_wrap li .colum3_txtarea{
  margin-top: 30px;
}
.colum3_wrap li .colum3_ttl{
  font-weight: bold;
  line-height: 1.5;
}
.colum3_wrap li .colum3_txt{
  margin-top: 10px;
  line-height: 1.86;
}
.colum3_wrap li a:hover .colum3_ttl{
  text-decoration: underline;
}
.colum3_wrap.colum3_center {
  margin-top: 30px;
}
.colum3_wrap.colum3_center li {
  margin: 0 auto;
  float: none;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .colum3_wrap li {
    float: none;
    margin-right: 0;
    width: 100%;
  }
  .colum3_wrap li:nth-of-type(-n+3) {
    margin-top: 30px;
  }
  .colum3_wrap li:first-of-type {
    margin-top: 0;
  }
  .colum3_wrap li .colum3_thum {
    float: left;
    width: 44.77%;
  }
  .colum3_wrap li .colum3_txtarea {
    margin-top: 0;
    float: right;
    width: 50.74%;
    font-size: 14px;
  }
  .sec_series_btn a {
    padding: 11px 0;
  }
}

/* ------------------------

.sec_simulation

------------------------ */
@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .sec_simulation .colum2_wrap {
    margin-top: 45px;
  }
  .sec_simulation .colum2_wrap li{
    width: 100%;
    margin-top: 30px;
  }
  .sec_simulation .colum2_wrap li:first-of-type{
    margin-top: 0;
  }
  .sec_simulation .colum2_wrap li .colum2_txt {
    margin-top: 5px;
  }
}

/* ------------------------

.sec_slider_wrap

------------------------ */
.sec_slider_wrap {
  margin: 45px auto 0;
}
.sec_slider_wrap .slider_box{
  width: 355px;
  margin: 0 10px;
  background-color: #ffffff;
}
.sec_slider_wrap.pc_slide_off {
  display: flex;
  justify-content: center;
}
.sec_slider_wrap.pc_slider_off .slick-track{
  margin-left: auto;
  margin-right: auto;
  transform: none;
}
.sec_campaign .sec_slider_wrap .slider_box{
  box-shadow: 5px 10px 20px 0 rgba(0,0,0,.05);
}
.sec_slider_wrap .slick-track {
  padding-bottom: 40px;
}
.sec_slider_wrap .slider_box .slider_thum{
  overflow: hidden;
}
.sec_slider_wrap .slick-list {
  padding: 0 215px;
}
.sec_slider_wrap .slider_box a{
  display: block;
  text-decoration: none;
}
.sec_slider_wrap .slider_box a img{
  width: 100%;
}
.sec_slider_wrap .slider_box .slider_txtarea {
  padding: 30px 25px 20px;
  line-height: 1.5;
}
.sec_slider_wrap .slider_box a .slider_ttl{
  font-weight: bold;
  color: #333333;
}
.sec_slider_wrap .slider_box a .slider_txt{
  margin-top: 10px;
  color: #333333;
}

.sec_slider_wrap .slick-prev,
.sec_slider_wrap .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  bottom: -20px;
  display: block;
  width: 16px;
  height: 40px;
  left: 20%;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.sec_slider_wrap .slick-next {
  left: auto;
  right: 20%;
}
.sec_slider_wrap .slick-prev:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 16px;
  height: 40px;
  background: url(/common/sumai2020/img/icon_prev01.png) no-repeat left center;
  background-size: 100%;
}
.sec_slider_wrap .slick-next:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 16px;
  height: 40px;
  background: url(/common/sumai2020/img/icon_next01.png) no-repeat right center;
  background-size: 100%;
}
.sec_slider_wrap .slick-dots {
  width: 50%;
  display: table !important ;
  margin: 10px auto 0;
}
.sec_slider_wrap .slick-dots li {
  display: table-cell;
}
.sec_slider_wrap .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 100%;
  height: 2px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  transition: all .1s ease-out;
  border-bottom: 1px solid #CCCCCC;
  background: none;
}
.sec_slider_wrap .slick-dots li.slick-active button {
  height: 3px;
  border-bottom: 3px solid #CC0000;
}
.sec_slider_wrap .slick-dots li button:before{
  display: none;
}

@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .sec_slider_wrap .slider_box {
    width: 350px;
  }
  .sec_slider_wrap.pc_slide_off {
    display: block;
  }
  .sec_slider_wrap .slick-list {
    padding: 0;
  }
  .sec_slider_wrap .slick-prev {
    left: 20px;
  }
  .sec_slider_wrap .slick-next {
    right: 20px;
  }
  .sec_slider_wrap .slick-dots {
    width: calc(100% - 92px);
  }
  .sec_slider_wrap .slider_box .slider_txtarea {
    padding: 15px;
    font-size: 13px;
  }
  .sec_slider_wrap .slider_box a .slider_txt {
    margin-top: 5px;
  }
}

/* ------------------------

.catalog

------------------------ */
.sec_catalog .sec_slider_wrap .slick-list {
  padding: 0 80px;
}
.sec_catalog .sec_slider_wrap .slider_box {
  width: 188px;
}
.sec_catalog .sec_slider_wrap .slider_box .slider_thum {
  padding: 0 39px;
}
.sec_catalog .sec_slider_wrap .slider_box .slider_txtarea {
  padding: 20px 0 0;
}
.sec_catalog .sec_slider_wrap .slider_box a {
  text-decoration: underline;
  color: #333333;
  transition: all .1s ease;
}
.sec_catalog .sec_slider_wrap .slider_box a:hover {
  opacity: .7;
}
.sec_catalog .sec_slider_wrap .slider_box .slider_ttl {
  font-size: 14px;
  text-align: center;
}

@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .sec_catalog .sec_slider_wrap .slick-list {
    padding: 0;
  }
  .sec_catalog .sec_slider_wrap .slider_box{
    margin: 0 15px;
  }
  .sec_catalog .sec_slider_wrap .slider_box .slider_thum {
    padding: 0 10px;
  }
}

/* ------------------------

.sec_bnrArea

------------------------ */
.sec.sec_bnrArea {
  background-color: #333333;
}
.sec_bnrArea .bnr_box {
  position: relative;
  margin-top: 30px;
}
.sec_bnrArea .bnr_box:first-of-type {
  margin-top: 0;
}
.sec_bnrArea .bnr_box01 a,
.sec_bnrArea .bnr_box02 a{
  transition: all .4s ease;
}
.sec_bnrArea .bnr_box01 a:after{
  content: "";
  position: absolute;
  bottom: 20px;
  right: 505px;
  width: 26px;
  height: 5px;
  background: url(/common/sumai2020/img/icon_arrow02_w.png) no-repeat center bottom;
  background-size: 100%;
  transition: all .4s ease;
}
.sec_bnrArea .bnr_box01 a:hover{
  opacity: .7;
}
.sec_bnrArea .bnr_box01 a:hover:after{
  right: 473px;
}
.sec_bnrArea .bnr_box02 a:after{
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 26px;
  height: 5px;
  background: url(/common/sumai2020/img/icon_arrow02_wr.png) no-repeat center bottom;
  background-size: 100%;
  transition: all .4s ease;
}
.sec_bnrArea .bnr_box02 a:hover{
  opacity: .7;
}
.sec_bnrArea .bnr_box02 a:hover:after{
  right: -13px;
  background: url(/common/sumai2020/img/icon_arrow02_r2.png) no-repeat center bottom;
  background-size: 100%;
}
.sec_bnrArea .bnr_box .btn_sec_type01{
  position: absolute;
  right: 117px;
  width: 250px;
  margin: 0;
  background-color: #333333;
}
.sec_bnrArea .bnr_box .bnr_box_btn01 {
  top: 55px;
}
.sec_bnrArea .bnr_box .bnr_box_btn02 {
  top: 125px;
}
.sec_bnrArea .bnr_box .btn_sec_type01 a{
  border: none;
  text-align: left;
  color: #ffffff;
}
.sec_bnrArea .bnr_box .btn_sec_type01 a:hover{
  background-color: #780014;
}
.sec_bnrArea .btn_sec_type01 a:after {
  background: url(/common/sumai2020/img/icon_arrow02_w.png) no-repeat center bottom;
  background-size: 100%;
}

@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .sec_bnrArea .bnr_box01 a:after {
    bottom: 20px;
    right: 20px;
  }
  .sec_bnrArea .bnr_box01 a:hover:after,
  .sec_bnrArea .bnr_box02 a:hover:after{
    right: 10px;
  }
  .sec_bnrArea .bnr_box .btn_sec_type01 {
    width: 74.62%;
    left: 50%;
    right: auto;
    margin-left: -37.31%;
  }
  .sec_bnrArea .bnr_box .bnr_box_btn01 {
    top: auto;
    bottom: 29.85%;
  }
  .sec_bnrArea .bnr_box .bnr_box_btn02 {
    top: auto;
    bottom: 8.95%;
  }
  .sec_bnrArea .bnr_box .btn_sec_type01 a{
    padding: 15px 12px;
  }
}
@media only screen and (max-device-width: 1280px) and (max-width: 320px){
  .sec_bnrArea .bnr_box .btn_sec_type01 a{
      font-size: 12px;
  }
}


/* ------------------------

.sec_customer

------------------------ */
.sec_customer .btn_area:after{
  content:"";
  display:block;
  clear:both;
  height:0;
  overflow:hidden;
}
.sec_customer .btn_area li{
  width: 178px;
  float: left;
  margin-right: 20px;
  box-shadow: 0 2px 0 0px rgba(0,0,0,0.16);
}
.sec_customer .btn_area li a{
  padding-left: 15px;
  text-align: left;
}
.sec_customer .btn_area li:nth-of-type(5n){
  margin-right: 0;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .sec_customer .btn_area {
    margin-top: 45px;
  }
  .sec_customer .btn_area li{
    width: 48.35%;
    margin-right: 0;
    margin-top: 20px;
    font-size: 14px;
  }
  .sec_customer .btn_area li:nth-of-type(2n){
    float: right;
  }
  .sec_customer .btn_area li:nth-of-type(-n+2){
    margin-top: 0;
  }
  .sec_customer .btn_sec_type01 {
    margin-top: 0;
  }
}
@media only screen and (max-device-width: 1280px) and (max-width: 320px){
  .sec_customer .btn_area li{
    font-size: 11px;
  }
}

/* ------------------------

.sec_business_customer

------------------------ */
.sec_business_customer .btn_area:after{
  content:"";
  display:block;
  clear:both;
  height:0;
  overflow:hidden;
}
.sec_business_customer .btn_area li{
  display: table;
  width: 226px;
  float: left;
  margin-right: 22px;
  box-shadow: 0 2px 0 0px rgba(0,0,0,0.16);
}
.sec_business_customer .btn_area li a{
  display: table-cell;
  height: 64px;
  padding: 0 0 0 15px;
  background-color: #ffffff;
  text-align: left;
  line-height: 1.5;
  vertical-align: middle;
}
.sec_business_customer .btn_area li:nth-of-type(4n){
  margin-right: 0;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .sec_business_customer .btn_area {
    margin-top: 45px;
  }
  .sec_business_customer .btn_area li{
    width: 48.35%;
    margin-right: 0;
    font-size: 14px;
  }
  .sec_business_customer .btn_area li.btn_sec_type01{
    margin-top: 20px;
  }
  .sec_business_customer .btn_area li:nth-of-type(-n+2){
    margin-top: 0;
  }
  .sec_business_customer .btn_area li:nth-of-type(2n){
    float: right;
  }
  
}
@media only screen and (max-device-width: 1280px) and (max-width: 320px){
  .sec_business_customer .btn_area li{
    font-size: 11px;
  }
}

/* ------------------------

.sec_contact_us

------------------------ */
.sec_contact_us {
  padding-bottom: 0;
}
.sec_contact_us .contact_us_box {
  width: 420px;
  margin: 0 auto;
  box-shadow: 0 2px 0 0px rgba(0,0,0,0.16);
}
.sec_contact_us .contact_us_box a{
  position: relative;
  display: block;
  padding: 105px 0 40px;
  background: url(/common/sumai2020/img/icon_mail.png) no-repeat center 40px;
  border: 1px solid #999999;
  text-decoration: none;
  color: #333333;
  text-align: center;
}
.sec_contact_us .contact_us_box a:after{
  content: "";
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 26px;
  height: 5px;
  background : url(/common/sumai2020/img/icon_arrow02_b.png) no-repeat center bottom;
  background-size: 100%;
  transition: all .4s ease;
}
.sec_contact_us .contact_us_box a:hover:after {
  right: -13px;
}
.sec_contact_us .contact_us_ttl {
  font-size: 18px;
  font-weight: bold;
}
.sec_contact_us .contact_us_txt {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .sec_contact_us {
    padding-bottom: 60px;
    border-bottom: solid 1px #CCC;
  }
  .sec_contact_us .contact_us_box {
    width: 89.55%;
  }
  .sec_contact_us .contact_us_box a:after {
    top: auto;
    bottom: 21px;
    right: 11px;
    margin-top: 0;
  }
}

/* ------------------------

.sec_relation

------------------------ */
.sec_relation .sec_slider_wrap .slick-list {
  padding: 0 40px;
}
.sec_relation .sec_slider_wrap .slider_box{
  background-color: #000000;
}
.sec_relation .sec_slider_wrap .slider_box a{
  position: relative;
  transition: all .4s ease;
}
.sec_relation .sec_slider_wrap .slider_box a:hover{
  opacity: .7;
}
.sec_relation .sec_slider_wrap .slider_relation_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  width: 100%;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .sec_relation .sec_slider_wrap .slick-list {
    padding: 0 5px;
  }
  .sec_relation .sec_slider_wrap .slider_box {
    margin: 0 5px;
  }
  .sec_relation .sec_slider_wrap .slider_relation_ttl {
    font-size: 14px;
  }
}

/*-------------------------
   product_other
-------------------------*/
.product_other{
  max-width: 970px;
  margin: 80px auto 0;
  text-align:center;
  color:#fff;
}
@media screen and (max-device-width: 1280px) and (max-width: 640px) {
  .product_other{
    margin-top: 60px;
    padding: 0 20px;
  }
}
.product_other .ttl{
  font-size:30px;
  line-height: 1.5;
}
.product_other .sub_ttl{
  font-size:14px;
  display:block;
}
.product_other_item{
  padding: 40px 0 30px;
  margin-top: 20px;
  background-position:center center;
  background-repeat:no-repeat;
  background-size: 100%;
}
.product_other_item:first-of-type{
  margin-top: 0;
}
.product_other_item.u_order{
  background-image: url(/common/sumai2020/img/u_oder.jpg);
}
.product_other_item.l-class_club{
  background-image: url(/common/sumai2020/img/l-class_club.jpg);
}
.product_other_item.l-class_voice{
  background-image: url(/common/sumai2020/img/l-class_voice.jpg);
}
.product_other_item.style_6{
  background-image:url(/common/sumai2020/img/style_6.jpg);
}
.product_other_item .text{
  margin: 1em 5px;
  font-size:15px;
  line-height: 2;
}
.product_other_item .btn_sec_type01 {
  margin: 20px auto 0;
  width: 230px;
}
.product_other_item .btn_sec_type01 a {
  padding: 15px 12px;
}
@media screen and (max-device-width: 1280px) and (max-width: 640px) {
  .product_other_item {
    margin-bottom: 0.5em;
    background-size: cover;
  }
  .product_other_item.u_order{
    background-image:url(/common/sumai2020/img/u_oder_sp.jpg)
  }
  .product_other_item.l-class_club{
    position: relative;
    background-image:url(/common/sumai2020/img/l-class_club_sp.jpg)
  }
  .product_other_item.l-class_club:after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background:url(/common/sumai2020/img/l-class_club_icon_sp.jpg) no-repeat;
    background-size: 100%;
  }
  .product_other_item .btn_sec_type01 {
    width: 180px;
  }
  .product_other_item.l-class_voice .ttl{
    font-size: 23px;
  }
  .product_other_item.l-class_voice{
    background-image:url(/common/sumai2020/img/l-class_voice_sp.jpg);
  }
  .product_other_item.style_6{
    background-image:url(/common/sumai2020/img/style_6_sp.jpg);
  }
}

/*-------------------------
   product_other
-------------------------*/
.move_area {
  margin-top: 80px;
}
.move_area .move_box{
  position: relative;
  margin-top: 40px;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}
.move_area .move_box iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-device-width: 1280px)  and (max-width: 640px){
  .move_area {
    margin-top: 50px;
  }
  .move_area .move_box {
    margin-top: 20px;
  }
}
