@charset "UTF-8";

/*margin,padding*/
.mat0 { margin-top: 0 !important;}
.mat20 { margin-top: 20px !important;}
.mat30 { margin-top: 30px !important;}
.mat40 { margin-top: 40px !important;}
.mat60 { margin-top: 60px !important;}
.mab0 { margin-bottom: 0 !important;}
.mab30 { margin-bottom: 30px !important;}
.mab40 { margin-bottom: 40px !important;}

/* font-size */
.fzss { font-size: 50% !important;}
.fzs { font-size: 75% !important;}
.fzm { font-size: 87% !important;}
.fzl { font-size: 100% !important;}
.fzml { font-size: 115% !important;}
.fzxl { font-size: 135% !important;}
.fzxll { font-size: 150% !important;}
.fzxlll {font-size: 175% !important;}
.fzxllll { font-size: 200% !important;}
.f44	{font-size:44px !important;}

/* font-weight */
.fwb { font-weight: bold;}

/* color */
.f_pink { color: #ff0474 !important;}
.bg_grey { background-color: #f2f2f2 !important;}
.f_white	{color:#ffffff !important;}


/*display*/
.fl { float: left !important;}
.fr { float: right !important;}
.tac {text-align: center !important;}

.attention	{font-size:14px !important;}

.pc { display: block;}
.sp { display: none;}

@media (max-width: 768px) {
  .pc { display: none; }
  .sp { display: block; }
  .f44	{font-size:24px !important;}
.attention	{font-size:12px !important;}

}

@media all and (-ms-high-contrast: none) {
  html {
    overflow-x: hidden;
  }
}

/*ホバーを滑らかに処理*/
a {
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

a,
a:hover {
  color: #000;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

.clearfix {
  display: block;
  clear: both;
  content: "";
}


/*---------------------------------------------
layout
---------------------------------------------*/
section {
  width: 1170px;
  margin: 0 auto;
  padding: 40px 0 100px 0;
}

#wrap {
  position: absolute;
  top: 149px;
  left: 0;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  *,
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  section {
    width: 100%;
    margin: 0 auto;
    padding: 10px 16px 40px 16px;
  }

  #wrap {
    position: absolute;
    top: 102px !important;
    overflow: hidden;
  }
}


/* カラムレイアウト
-----------------------------*/


/* 3カラム デフォルトレイアウト */
.three_column:after {
  display: table;
  clear: both;
  content: "";
}

/*
.three_column>*:nth-child(2n) {
  margin-right: 0;
}
*/
.three_column>* {
  float: left;
  width: 370px;
  margin-right: 20px;
}

.three_column>*:nth-child(3n) {
  margin-right: 0;
}

/* 4カラム デフォルトレイアウト */
.four_column:after {
  display: table;
  clear: both;
  content: "";
}

.four_column {
  display: flex;
  flex-wrap: wrap;
}

.four_column>* {
  width: calc((100% - 84px) / 4);
  margin-right: 28px;
}

.four_column>*:nth-child(4n) {
  margin-right: 0;
}

.four_column>*:nth-child(n + 5) {
  margin-top: 28px;
}


/* 5カラム デフォルトレイアウト */
.five_column:after {
  display: table;
  clear: both;
  content: "";
}

.five_column>* {
  float: left;
  width: 218px;
  margin-right: 20px;
}

.five_column>*:nth-child(5n) {
  margin-right: 0;
}

@media (max-width: 768px) {

  
  .three_column>*,
  .four_column>*,
  .five_column>* {
    float: left;
    width: 48%;
    margin-right: 10px;
  }

  .three_column>*:nth-child(2n),
  .four_column>*:nth-child(2n),
  .five_column>*:nth-child(2n) {
    margin-right: 0;
  }
}

/* カラム系 白背景 グレーボーダー */
.column_grey>li {
  margin-bottom: 20px;
  background-color: #fff;
  border: 3px solid #ccc;
  border-radius: 10px;
  /* CSS3草案 */
  -webkit-border-radius: 10px;
  /* Safari,Google Chrome用 */
  -moz-border-radius: 10px;
  /* Firefox用 */
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .column_grey>li {
    margin-bottom: 10px;
    background-color: #fff;
    border: 3px solid #ccc;
    box-sizing: border-box;
  }
}

/*---------------------------------------------
parts
---------------------------------------------*/

/*見出し*/
.heading_wrap {
  z-index: 3;
  position: relative;
  width: 980px;
  margin: 0px auto 50px;
}

.heading_text {
  position: absolute;
  top: 65%;
  left: 50%;
  display: flex;
  flex-direction: column;
  height: 100%;
  transform: translate(-50%, -50%);
}

.heading_text>* {
  color: #000;
  font-weight: bold;
  text-align: center;
}

.heading_sub {
  width: 800px;
  font-size: 200%;
  margin: 56px 0 10px;
  color:#666666;
  position: relative;

}

.heading_sub::before {
  z-index: -1;
  content: '';
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 19px;
  margin: auto;
  background: url(../images/common/h2_attend.webp) top center no-repeat;
  background-size: auto;
}

.heading_main {
  z-index: 1;
  width: 800px;
  font-size: 54px;
  margin-bottom: 23px;
}



@media screen and (max-width: 767px) {
  .heading_wrap {
    width: 100%;
    margin: 0px auto 20px;
  }

  .heading_text {
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin:12% auto auto;
    text-align: center;
    transform: none;
  }


  _::-webkit-full-page-media, _:future, :root .heading_text {
    margin-top: 12%;
  }

  .heading_sub {
    width: 100%;
    font-size: 3.8vw;
    margin-top: 14px;
  }

  .heading_sub::before{
     width:88%;
     height: 20px;
     bottom:-18px;
     background-size: contain;
  }


  .heading_main {
    display: inline;
    width: 100%;
    font-size: 6.5vw;
    margin-bottom: 16px;
    
  }

  .heading_main::before {
    content: none;
  }
}

/* IE11 */
@media all and (-ms-high-contrast: none) {
  .heading_sub {
    margin-top: 26px;
  }

  .heading_main {
    margin-bottom: 12px;
  }
}


/* 買取申込ボタン */
.application {
  position: relative;
  display: table;
  width: 42.8%;
  height: 70px;
  text-align: center;
  margin: 0 auto;
}
#wrap .application img{
  width: auto;
}
.application>.app_btn {
  display: table-cell;
  width: 100%;
  height: 70px;
  color: #ffff00;
  line-height: 70px;
  font-size: 175%;
  text-decoration: none;
  background: rgb(255, 3, 0);
  background: linear-gradient(0deg, rgba(255, 3, 0, 1) 0%, rgba(255, 149, 0, 1) 100%);
  margin: 0;
  border-radius: 35px;
  -webkit-text-stroke: 4px #000;
  text-stroke: 4px #000;
  vertical-align: middle;
  box-sizing: border-box;
}

.application>a.app_btn:hover {
  opacity: 0.6;
}

.app_btn.arrow_right {
  position: absolute;
  padding-right: 25px;
}

.app_btn.arrow_right:before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  background-color: #fff;
  height: 2px;
  right: 22px;
}

.app_btn.arrow_right:after {
  content: '';
  position: absolute;
  top: 31px;
  transform: rotate(45deg);
  width: 10px;
  background-color: #fff;
  height: 2px;
  right: 20px;
}



/*IE 調整*/
@media all and (-ms-high-contrast: none) {
  .application>.app_btn {
    font-family: inherit;
  }

  .bg_btn p {
    top: 56%;
  }

  .application>.app_btn {
    font-family: inherit\9;
    /*IE10以下*/
  }
}


@media (max-width: 768px) {
  .application {
    width: 80%;
    height: 45px;
    margin: 0 auto;
  }

  #wrap .application img{
    width: 100%;
  }
  .application>a.app_btn {
    line-height: 2.9;
  }

  .application>.app_btn {
    display: block;
    width: 100%;
    height: 50px;
    font-size: 125%;

  }

  .app_btn.arrow_right:before {
    position: absolute;
    top: -4px;
    right: 15px;
  }
}


input::placeholder {
  color: #999999;
}

/* IE */
input:-ms-input-placeholder {
  color: #999999;
}

/* Edge */
input::-ms-input-placeholder {
  color: #999999;
}


/* サブボタン */

.sub_conductor {
  width: 42.8%;
  text-align: center;
  margin: auto;
}

.sub_conductor>a.sub_btn {
  background: url("../images/common/btn_sub.webp") no-repeat;
  background-size: 100% auto;
  display: block;
  width: 480px;
  height: auto;
  margin: 0 auto;
  line-height: 70px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  color: #fff;
  transition: none;
}

.sub_conductor>a.sub_btn:hover {
  opacity: 0.7;
  transition:.3s;
}

.sub_conductor>a.sub_btn.arrow_right {
  position: absolute;
}




.sub_conductor2 {
  width: 100%;
  text-align: center;
  margin: auto;
}

.sub_conductor2>a.sub_btn {
  background: url("../images/common/btn_sub.webp") no-repeat;
  background-size: 100% auto;
  display: block;
  width: 400px;
  height: auto;
  margin: 0 auto;
  line-height: 60px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  color: #fff;
  transition: none;
}

.sub_conductor2>a.sub_btn:hover {
  opacity: 0.7;
  transition:.3s;
}

.sub_conductor2>a.sub_btn.arrow_right {
  position: absolute;
}

.sub_faq	{height:100px !important;border:none!important;;color:#ffffff!important;;padding:10px!important;;font-size:20px!important;;}

/*IE 調整*/
@media all and (-ms-high-contrast: none) {
  .sub_conductor>a.sub_btn {
    font-family: inherit;
  }

  
  .sub_conductor>a.sub_btn {
    font-family: inherit;
    /*IE10以下*/
  }


}


/* FAQアコーディオンアイコン＿プラスマイナス */
.i_plus,
.i_minus {
  position: absolute;
}

.i_search {
  position: relative;
}

.i_plus:before,
.i_minus:before,
.i_search:before {
  display: block;
  position: absolute;
  font-family: 'Fontawesome';
  width: 14px;
  height: 14px;
  color: #000;
  font-size: 140%;
}

.i_plus:before {
  top: 6px;
  right: 13px;
  content: "\f078";
  font-size: 12px;
}

.i_minus:before {
  top: 4px;
  right: 13px;
  content: "\f077";
  font-size: 12px;
}

.i_search:before {
  top: 44%;
  transform: translateY(-50%);
  left: 13px;
  content: "\f002";
}


@media (max-width: 768px) {
  .sub_conductor {
    width: 90%;
    height: 40px;
  }

  .sub_conductor>a.sub_btn {
    width: 90%;
    height: 50px;
    font-size: 16px;
    line-height: 3.3;
  }

  .sub_conductor>a.sub_btn:hover {
    background-color: #fff;
  }
  .sub_conductor2 {
    width: 100%;
    height: 60px;
  margin-left:-10px;
  }

  .sub_conductor2>a.sub_btn {
    width: 110%;
    height: 60px;
    font-size: 16px;
    line-height: 2.5;
  }

  .sub_conductor2>a.sub_btn:hover {
    background-color: #fff;
  }

.sub_faq	{height:100px !important;border:none!important;color:#ffffff!important;padding:3px!important;font-size:14px!important;}

  .i_plus:before,
  .i_minus:before {
    top: 1px;
  }
}



/* パンくずリスト */
#dir_path {
  background: #fff;
}

#dir_path section {
  padding: 6px 0;
}

#dir_path section ol {
  width: 100%;

}

#dir_path section ol li {
  float: left;
  width: auto;
  padding-right: 7px;
  line-height: 2;
}

#dir_path section ol li:after {
  display: inline-block;
  content: ">";
}

#dir_path section ol li:last-child:after {
  content: "";
}

#dir_path section ol li a {
  display: inline-block;
  width: auto;
  color: #333;
  margin-right: 7px;
}

@media (max-width: 768px) {
  #dir_path section {
    padding: 3px 0;
  }

  #dir_path section ol {
    padding-left: 5px;
  }

  #dir_path section ol li {
    font-size: 85%;
  }
}

/*block*/
.block_rel {
  position: relative;

}

.block_note {
  border: 3px solid #aaa;
  border-radius: 3px;
  padding: 20px 30px;
  line-height: 1.5;
  margin: 40px 0;
}


@media (max-width: 768px) {
  .block_note {
    padding: 10px;
    margin: 40px 0 10px;
  }
}


/*----------------------------------------------
ヘッダー
-----------------------------------------------*/
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 21;
  width: 100%;
  background-color: #fff;
}

#header {
  top: 0;
  left: 0;
  padding: 6px 0 0 0;
}

/* header */
#header section {
  padding: 0;
  position: relative;
  height: 100px;
}

#header .logo {
  height: auto;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 500;
  width: 212px;
}

#header .various {
  width: 1170px;
  position: absolute;
  top: 5px;
  bottom: 0px;
  right: 0;
  left: 0px;
  box-sizing: border-box;
}

#header .first_row,
#header .second_row {
  width: 100%;
}

#header .first_row {
  height: 38px;
  margin-bottom: 10px;
}

#header .second_row {
  position: absolute;
  bottom: 0;
  height: auto;
}


/* 買取申込ボタン */
#header .application {
  position: absolute;
  right: 0;
  height: 36px;
  margin: 0px;
}

#header .application>.app_btn {
  position: absolute;
  right: 0;
  width: 222px;
  height: 46px;
  line-height: 36px;
  font-size: 16px;
  padding-right: 0;
  border-radius: 0px;
  background: none;
  background-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .application>.app_btn::before,
#header .application>.app_btn::after {
  content: none;
}

@media all and (-ms-high-contrast: none) {
  #header .application {
    display: block;
  }

  #header .application>.app_btn:before {
    top: -1px;
  }
}

#header .second_row>ul {
  display: flex;
  align-items: stretch;
  transform: skewX(-10deg);
}

#header .second_row>ul>li.nav_head {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  font-weight: bold;
  font-size: 14px;
  padding-top:4px;
}


#header .second_row>ul>li.nav_head>p {
  transform: skewX(10deg);
}

#header .second_row>ul>li:not(.nav_head) {
  width: calc((100% - 80px) / 5);
  height: 100%;
}

#header .second_row>ul.-min_nav>li:not(.nav_head) {
  width: calc((100% - 80px) / 4);
}

#header .second_row>ul>li.nav_head {
  position: relative;
  color: #fff;
  background: #ff0474;
}

#header .second_row>ul>li:last-child {
  margin-right: 0;
}


#header .second_row>ul>li>a {
  display: block;
  text-align: center;
  border-top: 3px solid transparent;
  border-right: 1px solid #000;
}

#header .second_row>ul>li>a.-latest {
  color: #fff;
  background: #363636;
  border-top: 3px solid #ff0474;
  border-right: 1px solid #fff;
}

#header .second_row>ul>li.long{
  width: 320px;
}
#header .second_row>ul>li.short{
  width: 230px;
}

#header li a {
  width: 100%;
  box-sizing: border-box;
}

#header .second_row .nav_txt {
  display: flex;
  line-height: 2;
  font-size: 16px;
  box-sizing: border-box;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  transform: skewX(10deg);
  height:35px;
}


@media screen and (max-width: 767px) {
  #header li a {
    width: 100%;
    border-bottom: none;
  }
}

/*----------------------------------------*/
@media (max-width: 768px) {
  #header {
    padding: 0px 0 0 0;
    height: 40px;
  }

  #header section {
    position: relative;
    height: auto;
  }

  #header .logo {
    width: auto;
    top:0;
    padding: 4px 0px 3px 10px;
    height: 38px;
  }

  #header .logo img {
    width: auto;
    height: 100%;
  }

  #header .first_row {
    height: auto;
    margin-bottom: 0px;
  }

  #header .second_row {
    display: none;
  }

  #header .various {
    width: auto;
    left: 60px;
  }

  #header li a span {
    font-size: 10px;
    transform: scale(0.7);
    padding-left: 2px;
  }

  #header li a img {
    width: 25px;
  }

  #header .btn_area {
    position: absolute;
    right: 0px;
    /*phase2 中階層ができた場合
    right: 40px;*/
    width: 44px;
  }


  .sp_gnav {
    position: absolute;
    width: 100%;
    top: 40px;
    background: #fff;
    overflow: hidden;
  }

  .sp_gnav>ul {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    border-top: 2px solid #ff0474;
    transform: skewX(-10deg);
    background: #fff;
  }

  .sp_gnav>ul>li {
    width: calc(100% / 3);
    font-size: 10px;
    text-align: center;
  }

  .sp_gnav>ul>li.nav_head {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    background: #ff0474;
    color: #fff;
    line-height: 1;
  }

  .sp_gnav>ul>li.nav_head::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 10px 0 0;
    border-color: #ff0474 transparent transparent transparent;
    transform: skewX(10deg);
  }


  .sp_gnav>ul>li:first-child {
    margin-right: 0;
    width:36px;
  }

  .sp_gnav>ul>li:last-child {
    margin-right: 0;
  }

  .sp_gnav>ul>li>a {
    display: block;
    white-space: nowrap;
    padding: 9px 10px;
    color: #000;
    background: #fff;
    border-right: 1px solid #2d2d2d;
    font-weight: bold;
    line-height: 1.2;
    
  }
  .sp_gnav .nav_head p,.sp_gnav>ul>li>a>p {
    transform: skewX(10deg);
  }
  .sp_gnav>ul:not(.-min_nav)>li.-latest {
    width: calc((100% - 40px) / 2);
  }

  .sp_gnav>ul.-min_nav>li.-latest {
    width: calc(100% - 40px);
  }

    .sp_gnav>ul:not(.-min_nav)>li.-latest.long {
    width: calc((100% + 65%) / 3);
  }
  .sp_gnav>ul:not(.-min_nav)>li.-latest.short {
    width: calc((100% + 22px) / 3);
  }


  .sp_gnav>ul>li.-latest>a {
    display: block;
    white-space: nowrap;
    padding: 9px 6px;
    color: #fff;
    background: #2d2d2d;
    font-weight: bold;
    line-height: 1.2;
    border-right: 1px solid #fff;
  }

  .sp_gnav>ul>li:last-child>a {
    border-right: 0;
  }
}



/*----------------------------------------------
フッター
-----------------------------------------------*/
#footer .sitemap p a:before,
#footer .sitemap dt a:before {
  content: '' !important;
  top: 10% !important;
  background: url(../images/common/circle-white-arrow.svg) top center no-repeat;
  width: 16px !important;
  height: 16px !important;
}

@media (max-width: 768px) {
  #footer {
    padding-bottom: 80px !important;
  }

  #footer .sitemap p a:before,
  #footer .sitemap dt a:before {
    content: '' !important;
    top: 10% !important;
    background: url(../images/common/circle-white-arrow.svg) top center no-repeat;
    width: 14px !important;
    height: 14px !important;
  }
}


/*---------------------------------------------
04. clearfix
---------------------------------------------*/
.clearfix,
footer,
section {
  *zoom: 1;
}

.clearfix:after,
footer:after,
section:after {
  content: " ";
  display: table;
  clear: both;
}



/* 2.layout
----------------------------------------*/

/*---------------------------------------------
footer input clear
---------------------------------------------*/

footer input[type="submit"],
footer input[type="text"],
footer input[type="password"],
footer input[type="email"],
footer input[type="number"],
footer input[type="url"],
footer input[type="tel"],
footer input[type="search"],
footer textarea,
footer select {
  outline: none;
  box-sizing: border-box;
  border-style: none;
}

footer select,
footer button {
  cursor: pointer;
}

footer input[type="submit"] {
  -webkit-appearance: none;
}

/*iphone用*/
footer input[type="text"],
footer input[type="checkbox"]+label.checkbox2,
footer input[type="radio"]+label {
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 2px 3px 5px 1px rgba(0, 0, 0, 0.18) inset;
  -moz-box-shadow: 2px 3px 5px 1px rgba(0, 0, 0, 0.18) inset;
  -webkit-box-shadow: 2px 3px 5px 1px rgba(0, 0, 0, 0.18) inset;
}

/*----------------------------------------------
フッター検索枠
-----------------------------------------------*/

footer .search_box input[type="text"] {
  background: url(/moetaku/_assets/images/common/icon_search.png) no-repeat top 58% left 10px;
  background-color: #fff9d4;
  background-size: 16px;
  min-height: 36px;
  padding: 0.3em 10px 0 30px;
  line-height: 1.4em;
}

footer .search_box input[type="text"]:focus {
  background-color: #fff;
}

footer .search_box input[type="submit"] {
  color: #fff;
  min-height: 36px;
  background: #999;
  background: url(/moetaku/_assets/images/common/icon_search_w.png) no-repeat top 48% left 10px #999;
  background-size: 16px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin-left: 10px;
  padding-top: 2px;
  cursor: pointer !important;
}

footer .search_box input[type="submit"]:hover {
  opacity: 0.7;
}

@media all and (-ms-high-contrast: none) {
  footer .search_box input[type="submit"] {
    font-family: inherit;
    line-height: 36px;
  }

  footer .search_box input[type="submit"] {
    font-family: inherit\9;
    line-height: 36px\9;
  }
}

/*----------------------------------------------
メインビジュアル
-----------------------------------------------*/
#main_bg {
  position: relative;
  margin-top: -45px;
  z-index: 0;
  width: 100%;
  min-width: 1170px;
  background: url(../images/common/main_bg.webp) no-repeat center top;
  background-size: cover;
  background-position: center;
}

#main_visual {
  height: 440px;
  width: 100%;
  min-width: 1170px;
  overflow: hidden;
}

#main_visual .inner {
  position: relative;
  display: block;
  width: 1170px;
  text-align: center;
  margin: 0 auto;
  z-index: 0;
}

#main_visual .headline {
  position: relative;
  width: calc(100% - 410px);
  padding-top: 25px;
  font-size: 40px;
}

#main_visual em {
  font-size: 64px;
  line-height: 1.2em;
}

#main_visual .mv_main {
  width: 54%;
  margin: -80px auto 0;
  text-align: center;
}

#main_visual .mv_point {
  width: 500px;
  margin: 35px auto 0 auto;
  z-index: 5;
}

#main_visual .mv_ob {
  position: absolute;
  top: 270px;
  left: 320px;
  width: 120px;
  z-index: 6;
}

/*第二階層*/
#main_bg.second_row {
  background: url(../images/common/main_bg.webp) no-repeat center top;
  background-size: cover;
  background-position: center;
}

.second_row #main_visual .headline .mv_main {
  width: 30%;
  margin: auto;
  margin-top:-30px !important;
}
.second_row #main_visual .headline .mv_txt{
    position: relative;
    z-index: 2;
    font-size: 68px;
    color: #fff;
    font-weight: bold;
    margin-top:30px;
    line-height: 1em;
    letter-spacing: -0.08em;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
    
}
.second_row #main_visual .headline .mv_txt2{
    position: relative;
    z-index: 2;
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    line-height: 1em;
    letter-spacing: -0.08em;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
    
}
.second_row #main_visual .headline .mv_txt:before{
    content: "";
    position: absolute;
    display: block;
    background: url(../images/mv_sec/title_sec_bg.webp) no-repeat center center;
    background-size: 105% 105%;
    width: 100%;
    height:120%;
    top: -13%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}
.second_row.line2 #main_visual .headline .mv_txt:before{
    height:106%;
    top: -3%; 
}
.second_row #main_visual .headline .mv_txt2:before{
    content: "";
    position: absolute;
    display: block;
    background: url(../images/mv_sec/title_sec_bg.webp) no-repeat top center;
    background-size: 80% 90%;
    width: 100%;
    height:116%;
    top: 8%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}

.second_row #main_visual .headline .mv_sec_l {
  position: absolute;
  top: 70px;
  left: -50px;
  width: 250px;
  z-index: 1;
  transform: rotate(-10deg);
}
.second_row #main_visual .headline .mv_sec_r {
  position: absolute;
  top: 70px;
  left: 570px;
  width: 250px;
  z-index: 1;
  transform: rotate(10deg);
}
.second_row #top_search{
  right: 16px;
}


@media (max-width: 768px) {
  #main_bg {
    width: auto;
    height: auto;
    min-width: auto;
    margin-top: 0;
    background: url(../images/common/main_bg_sp.webp) no-repeat center top;
    background-size: cover;
  }
  #main_bg.second_row {
    background: url(../images/common/main_bg_sp.webp) no-repeat center top;
    background-size: cover;
    background-position: center;
  }

  #main_visual .headline img {
    width: 100%;
  }

  #figure #main_bg {
    background: none;
  }

  #main_visual {
    width: auto;
    min-width: auto;
    height: 476px;
    background-size: 100%;
    padding-bottom: 0px;
  }

  #main_visual .inner {
    width: auto;
  }

  #main_visual .mv_main{
    width:88%;
  }

  #main_visual .headline {
    width: 100%;
    padding: 20px 20px 0 20px;
    box-sizing: border-box;
    font-size: 6.25vw;
    line-height: 1.1;
  }

 
  #main_visual em {
    font-size: 9.375vw;
    line-height: 1.2em;
  }

  #main_visual .mv_point {
    width: 94%;
    margin: 30px auto 0 auto;
  }

  #main_visual .mv_ob {
    z-index: -1;
    top: 64%;
    left: 0px;
    right:0px;
    margin: auto;
    width: 100px;
  }

  /*第二階層*/
  .second_row #main_visual .headline .mv_main {
    width: 48%;
    margin: auto;
  }
  .second_row #main_visual .headline .mv_txt{
      font-size: 40px;
      margin-top:16px;
      line-height: 1.2em;
  }
  .second_row #main_visual .headline .mv_txt2{
      font-size: 24px;
      padding-bottom: 16px;
  }
  .second_row #main_visual .headline .mv_txt:before{
      background: url(../images/mv_sec/title_sec_bg.webp) no-repeat center center;
      background-size: 105% 105%;
      height:110%;
      top: -3%;
  }
  .second_row #main_visual .headline .mv_txt2:before{
      background: url(../images/mv_sec/title_sec_bg.webp) no-repeat top center;
      background-size: 100% 72%;
      top: -8%;
  }

  /*タイトルが2行の場合*/
  .second_row.line2 #main_visual .headline .mv_txt{
      font-size: 36px;
      line-height: 1em;
      letter-spacing: -0.1em;
  }
  .second_row.line2 #main_visual .headline .mv_txt2{
      font-size: 28px;

  }

  .second_row #main_visual .headline .mv_sec_l {
    top: 30px;
    left: -30px;
    width: 150px;
  }
  .second_row #main_visual .headline .mv_sec_r {
    top: 30px;
    left: 250px;
    width: 150px;
  }


}

@media (max-width: 320px) {

  #main_visual {
    height: 430px;
  }

}

/*----------------------------------------------
トップビジュアル検索枠
-----------------------------------------------*/
#top_search {
  z-index: 30;
  position: absolute;
  top: 100px;
  right: 68px;
  width: 400px;
  height: 240px;
  background: #fff;
  border-radius: 15px;
  transform: skewX(-10deg);
}


#top_search .app_box {
  transform: skewX(10deg);
  box-sizing: border-box;
  margin: 0 0 0 10px;
  padding: 50px 0px 40px 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#top_search .app_box h3 {
  z-index: 1;
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  margin: auto;

}
#top_search .app_box h3 img{
  width:280px;
  height: auto;
}


#top_search .app_box .application {
  width: 84%;
  margin-left:15px;
}

#top_search .app_box .application>.app_btn {
  padding-right: 0;
  left: 52%;
  transform: translateX(-50%);
  background: none;
}
#top_search .app_box .application>.app_btn img{
  width:auto;
}
#top_search .app_box .application>.app_btn::before,
#top_search .app_box .application>.app_btn::after {
  content: none;
}

#top_search .top_serchbox {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  width: 350px;
}

_::-webkit-full-page-media,
_:future,
:root #top_search .top_serchbox {
  width: 86%;
  min-height: 48px;
}

#top_search .top_serchbox form {
  position: relative;
  display: flex;
  justify-content: center;
  border: 2px solid #cccccc;
  overflow: hidden;
}

#top_search .top_serchbox input {
  padding: 16px 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 14px;
  background-color: #f2f2f2;
  box-shadow: 14px 12px 11px -7px rgba(0, 0, 0, 0.1) inset;
  border: none;
  width: 260px;
}

_::-webkit-full-page-media,
_:future,
:root #top_search .top_serchbox input {
  width: 100%;
}

@-moz-document url-prefix() {

  /*ff huck*/
  #top_search .top_serchbox form {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }

  #top_search .top_serchbox input {
    width: 175px;
  }

  #top_search .top_serchbox button {
    width: calc(75% - 60px);
  }
}


@media all and (-ms-high-contrast:none) {

  /* IE11 */
  *::-ms-backdrop,
  #top_search .top_serchbox input {
    width: calc(75% - 60px);
  }

  *::-ms-backdrop,
  #top_search .top_serchbox button {
    width: calc(75% - 60px);
  }
}

@media all and (-ms-high-contrast: none) {
  #top_search .top_serchbox {
    width: 100%;
  }

  #top_search .top_serchbox input {
    width: calc(75% - 60px);
  }
}

#top_search .top_serchbox button {
  padding: 16px 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 14px;
  background: rgb(92,99,103,1);
  background: linear-gradient(45deg, rgba(145,143,141,1) 0%, rgba(92,99,103,1) 100%);
  color: #fff;
  border: none;
  width: 60px;
  cursor: pointer;
  box-shadow: -5px 12px 11px -7px rgba(0, 0, 0, 0.1) inset;

}

#top_search .top_serchbox button:hover {
  opacity: 0.6;
}

#top_search .application {
  height: 45px;
}

@media (max-width: 768px) {

  #top_search {
    left: 0;
    right: 0;
    top: 0;
    width: 88%;
    margin: 24px auto 0;
    padding: 0 0px 2px;
    position: relative;
    height: 150px;
  }

  #top_search .app_box h3 img{
     width: 70%;
  }
  #top_search .top_serchbox{
    width:90%;
    margin-top:10px;
    margin-bottom: 10px;
  }
  #top_search .top_serchbox input {
    padding: 2px 10px!important;
  }
  #top_search .app_box {
    padding: 8px 0 8px;
  }

  #top_search .app_box .application>.app_btn {
    width: 100%;
    line-height: 2em;
  }
  #top_search .app_box .application>.app_btn img{
    width:90%;
  }


}

.ipad #top_search .top_serchbox,
.ipad #top_search .top_serchbox input,
.ipad #top_search .top_serchbox form {
  width: auto !important;
}


.ipad #header .second_row li:nth-child(1) .nav_txt,
.ipad #header .second_row li:nth-child(2) .nav_txt,
.ipad #header .second_row li:nth-child(3) .nav_txt,
.ipad #header .second_row li:nth-child(4) .nav_txt {
  font-size: 10px !important;

}

@media (max-width: 320px) {
  #top_search {
    margin: 10px auto 0;
    height: 178px;
  }
}

/*----------------------------------------------
お知らせ枠 TOP
----------------------------------------------*/
#top .news {
  display: table;
  background-color: #f2f2f2;
  height: auto;
  width: 100%;
  box-sizing: border-box;
  font-weight: bold;
  min-width: 1170px;
  position: relative;
}

#top .news_header {
  position: relative;
  display: table-cell;
  width: 22%;
  background-color: #666666;
  text-align: right;
  color: #ffffff;
  padding: 10px 20px 10px 0;
  box-sizing: border-box;
}

#top .news_header::before {
  content: '';
  position: absolute;
  top: 0;
  right: -11px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0 41px 11px;
  border-color: transparent transparent transparent #666666;
}

#top .news_main {
  display: table-cell;
  width: 78%;
  padding: 10px 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  #top .news {
    min-width: auto;
  }

  #top .news_header {
    width: 26%;
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
    background-color: #666666;
  }

  #top .news_header::before {
    content: none;
  }

  #top .news_main {
    width: 74%;
    padding: 10px 10px 10px;
    font-size: 10px;
    vertical-align: top;
  }

}

/*----------------------------------------------
sidebar
----------------------------------------------*/
.sidebar {
  position: fixed;
  right: 0;
  top: 104px;
  z-index: 30;
  width: 80px;
  background-color: transparent;
}

.sidebar img {
  width: auto;
}

.sidebar a:hover {
  color: #ffffff;
  opacity: 0.6;
}


.sidebar_body>* {
  border-top: 1px solid #808080;
  padding: 15px 6px;
  display: block;
  background-color: #000;
  font-weight: 500;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
}

.sidebar_body>*:last-child {
  padding: 16px 12px;
}

.sidebar_head,
.sidebar_foot {
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.sidebar_head {
  border-top-left-radius: 6px;
  background-color: #ff0474;
}

.sidebar_head>* {
  padding: 10px 0 8px;
  border-top-left-radius: 10px;
  background-color: #ff0474;
}

.sidebar_foot>* {
  border-top: 1px solid #808080;
  padding: 10px 14px 12px;
  display: block;
  background-color: #f83600;
  border-bottom-left-radius: 6px;
}


@media screen and (max-width: 767px) {
  .sidebar {
    position: fixed;
    right: 0;
    top: auto;
    bottom: 0px;
    z-index: 30;
    width: 100%;
    height: 57px;
    padding: 0;
    clip-path: none;
    background: #000;
    box-sizing: border-box;
    display: flex;
  }

  .sidebar img {
    width: 100%;
  }

  .sidebar_head {
    display: none;
  }

  .sidebar_body {
    width: 85.72%;
    display: flex;
  }

/*長いタイトルの時はコメントアウト*/

/*  .sidebar_body>* {
    border-top: none;
    padding: 5px 1px;
    width: 16%;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #000;
    font-size: 10px;
  }

/*長いタイトル用*/
  .sidebar_body>* {
    border-top: none;
    padding: 5px 1px;
    width: 14%;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #000;
    font-size: 10px;
  }

  .sidebar_body>*:nth-child(3) {
    padding: 5px 1px;
    width: 21%;
  }
  .sidebar_body>*:nth-child(4) {
    padding: 5px 1px;
    width: 23%;
  }
/*長いタイトル用*/

  .sidebar_head,
  .sidebar_foot {

    box-sizing: border-box;
    color: #fff;
    text-align: center;
    font-weight: normal;
    font-size: 10px;
    margin: 0;
  }

  .sidebar_head {
    width: 12.28%;
    border-radius: 0;
  }

  .sidebar_head>* {
    padding: 16px 0 12px;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .sidebar_body>*:last-child {
    padding: 5px;
  }

  .sidebar_foot>* {
    padding: 5px;
    border-radius: 0;
  }

  .sidebar_foot img {
    width: auto;
    height: 46px;
  }

}


/*ヘッダーテキスト*/
.h_text {
  position: absolute;
  width: 100%;
  z-index: 100;
  text-align: left;
  color: #000;
  font-size: 12px;
  pointer-events: none;

}

.h_text section {
  margin: auto;
  padding: 28px 0 0 0;
  position: relative;
}

.h_text h1 {
  margin-left: 230px;
}

@media (max-width: 768px) {
  .h_text {
    font-size: 10px;
    transform: scale(0.8);
  }

  .h_text section {
    padding: 6px 0 0 0;

  }

  .h_text h1 {
    margin-left: 90px;
    height: 45px;
  }

}


/* conversionエリア */

.conversion {
  position: relative;
  z-index: 1;
  min-width: 1170px;
}

.conversion section {
  text-align: center;
  z-index: 3;
  padding: 60px 0 80px;
}

.conversion section .conv_txt>.conv_txt_medi {
  z-index: 3;
  position: relative;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}



.conversion .strong_txt {
  z-index: 3;
  position: relative;
  color: #ff0474;
  font-weight: bold;
}


.conversion .strong_txt:after{

}
.conversion .conv_txt {
  position: relative;
  margin-bottom:0.5em;
}
.conversion .conv_txt .strong_txt {
  font-size: 80px;
}

.conversion .conv_txt_num {
  font-size: 120px;
  line-height: 1;
}


.conversion .conv_txt_medi {
  font-size: 14px;
  font-weight: normal;
}

.conversion .conv_line {
  position: absolute;
  bottom: -16px;
  left: 50%;
  
  transform: translateX(-50%);
  z-index: 0;
  width: auto;
}
.conversion .conv_txt:nth-child(1) .conv_line{
  width:960px!important;
}
.conversion .conv_txt:nth-child(2) .conv_line{
  width:1100px!important;
}
@media all and (-ms-high-contrast: none) {
  .conversion .conv_line {
    bottom: 8px;
  }
}


@media all and (-ms-high-contrast: none) {
  .conversion .conv_txt .conv_line {
    bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  .conversion {
    min-width: auto;
    padding: 30px 0;
  }

  .conversion section {
    padding: 0;
  }

  .conversion section p {
    font-size: 12px;
  }

  .conversion section .conv_txt>.conv_txt_medi {
    display:block;
    font-size: 18px;
    margin-bottom:0.5em;
  }

  .conversion .conv_txt .strong_txt {
    font-size: 34px;
    position: relative;
  }

  .conversion .conv_txt .strong_txt:after {
    content: "";
    display: block;
    width:6em;
    height: 6px;
    margin: auto;
    background: url(../images/common/bg_title_marker.svg) center center no-repeat;
    background-size: auto;
  }
  .conversion .conv_txt .strong_txt.large:after{
    width:8em;
  }
  .conversion .conv_txt_num {
    font-size: 60px;
  }

 
}


/*----------------------------------------------
メインコンテンツ
-----------------------------------------------*/
/* section */


section .conv_btn {
  width: 500px;
  display: block;
  margin: 30px auto 0;
}

section .conv_btn:hover {
  opacity: 0.6;
}

@media all and (-ms-high-contrast: none) {
  .conv_btn {
    overflow: hidden
  }
}

@media screen and (max-width: 767px) {
  section .conv_btn {
    width: 80%;
    margin: 12px auto 0;
  }
}


/* lead-area */
.lead-area {
  padding-top: 10px;
}

.lead-area section {
  padding: 30px 0 60px 0;
}

.lead-area p {
  margin-top: 20px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 768px) {


  .lead-area section {
    padding: 0 0 60px 0;
  }

  .lead-area p {
    font-size: 140%;
  }
}

/* total */
#total {
  margin-top: 40px;
  min-width: 1170px;
}

/*total_thanks*/
.total_thanks {
  width: 100%;
  text-align: center;
  font-weight: bold;
  min-width: 1170px;
  background-color: #000025;
}

.total_thanks section {
  padding: 40px 0 50px;
}

.total_thanks h2 {
  color: #fff !important;
  font-size: 150% !important;
}

.total_thanks h3 {
  color: #fff !important;
  font-size: 250% !important;
}

@media (max-width: 768px) {
  #total {
    min-width: auto;
    margin-top: 0;
  }
  .total {
    background-size: 100%;
    height: auto;
    padding-bottom: 57%;
  }

  .total_thanks {
    min-width: auto;
  }

  #wrap .total_thanks h2 {
    font-size: 14px !important;
    margin: 0px 0 40px 0;
  }

  .total_thanks h3 {
    font-size: 20px !important;

  }

  .total_thanks section {
    padding: 20px 0;
  }
}

/* review */
#review {
  position: relative;
  min-width: 1170px;
}

#review::before {
  z-index: -1;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 44%;
  background: url(../images/common/bg_review.webp) top center no-repeat;
  background-size: 865px auto;
}

#review section {
  padding: 30px 0 60px 0;
}

#review #yotpoArea {
  width: 970px;
}
#review #yotpoArea .review_title{
  margin: 0 auto 10px;
  text-align: center;
}
#review #yotpoArea img{
  text-align: center;
  width: 720px;
  height: auto;
}
#review .yotpo.yotpo-main-widget {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 2px solid rgba(204, 204, 204, 0.8);
  border-radius: 10px;

}

.main-widget.yotpo-display-wrapper {
  padding: 40px;
}

#review .yotpo.yotpo-main-widget > img {
  width: 826px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  #review::before {
    padding-top: 83.6%;
    background-size: 100% auto;
 
  }

  #review #yotpoArea {
    width: 100%;
  }
  #review #yotpoArea img{
    width: 100%;
  }

  .main-widget.yotpo-display-wrapper {
    padding: 2px;
  }

}


.review_box {
  width: 990px;
  height: auto;
  margin: 0px auto 50px;
  z-index: 1;
}

.review_content {
  background: #fff;
  width: 100%;
  height: auto;
  padding: 0 30px;
  margin: -30px auto 50px;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
  border: 4px solid #cccccc;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  #review {
    min-width: auto;
  }

  #review section {
    padding: 10px 15px 40px;
  }

  #review .h_title {
    margin-top: 6px;
  }

  #review .h_title>* {
    font-size: 16px;
  }

  #review .h_title h3 {
    font-size: 24px;
    margin-top: 4px;
  }

  .review_content {
    margin: 0 auto;
  }

  .review_box {
    width: 100%;
    margin: 18px auto 0;
  }
}
@media screen and (max-width: 320px) {
  .main-widget .bottom-line-items {
      margin-bottom: 84px!important;
  }
  .filters-container .free-text-search-input {
    width: 256px!important;
    }
}


/*usage*/

.usage section{
  padding: 40px 0 140px 0;
}

.usage .heading_wrap{
  margin: 0px auto 90px;
}
.usage ul {
  position: relative;
  z-index: 3;
}

.usage .five_column li {
  position: relative;
  background-color: #051232;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  width: 210px;
  margin-right: 30px;
  border-radius:10px;
}

.usage .five_column li:nth-child(5) {
  margin-right: 0px;
}

.usage .five_column li:before {
  content: "1";
  position: absolute;
  display: block;
  top: -30px;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  font-family: "Crimson Text";
  background: #ff0474;
  color: #fff;
  font-size: 146%;
  font-weight: 700;
  border-radius: 3px;
  line-height: 40px;
  transform: skewX(-10deg);
}

.usage .five_column li.n2:before {
  content: "2";
}

.usage .five_column li.n3:before {
  content: "3";
}

.usage .five_column li.n4:before {
  content: "4";
}

.usage .five_column li.n5:before {
  content: "5";
}

.usage .five_column li:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  margin-top: -40px;
  width: 40px;
  height: 40px;
  transform: rotate(-90deg);
  background: url(../images/common/usage_arrow.webp) no-repeat center center;
  background-size: contain;
}

.usage .five_column li:nth-child(5):after {
  content: "";
  border: none;
  background: none;
}

.usage .five_column li dl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  box-sizing: border-box;
  height: 95px;
}

.usage .five_column li dt {
  font-size: 122%;
  font-weight: 700;
}

.usage .five_column li dd {
  font-size: 100%;
  font-weight: 700;
}

.usage .sub_conductor {
  text-align: center;
  margin: 30px auto;
}



@media (max-width: 768px) {
  .usage section{
    padding: 16px 16px 60px;
  }


  .usage .heading_wrap{
    margin:0 auto;
  }

  .usage ul{
    margin:0 16px;
  }
  .usage .five_column li {
    width: 100%;
    margin-left: 0px;
    margin-bottom: 30px;
    min-height: auto;
  }

  .usage .five_column li:before {
    top: 0;
    left: -12px;
    margin-top: -10px;
    margin-left: 0px;
    width: 30px;
    height: 30px;
    font-size: 122%;
    line-height: 30px;
    z-index: 5;
  }

  .usage .five_column li:after {
    top: inherit;
    right: inherit;
    bottom: -26px;
    left: 46%;
    transform:none;
    width: 35px;
    height: 35px;
  }
  .usage .five_column li:last-child:after{
    background: none;
  }
  .usage .five_column li dl {
    height: 90px;
    padding: 10px;
  }

  .usage .five_column li dt {
    font-size: 122%;
  }

  .usage .five_column li dd {
    font-size: 87%;
  }

  .usage .five_column li img {
    width: 90px;
    height: 90px;
    float: left;
  }
  .usage .sub_conductor {
    width:99%;
    margin:0 auto;
  }


}



/* request */

.request .heading_wrap {
  margin: 0px auto 70px;
}


.request_item {
  position: relative;
  width: 100%;
  height: auto;
  padding: 60px 90px 60px;
  background: #eee;
  border: 2px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.request_title {
  position: absolute;
  top: -23px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 570px;
  height: 65px;
  margin: auto;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  background: #333;
  border-radius: 10px;
  transform: skewX(-10deg);

}
.request_title span{
  transform: skewX(10deg);
}
.request_row {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.request_item+.request_item {
  margin-top: 70px;
}

.request_item_block {
  width: 470px;
}

.request_item_block+.request_item_block {
  margin-left: 30px;
}

.request_item_block p {
  padding: 0 25px;
  font-size: 20px;
  line-height: 1.6;
}

.request_item_block p>span {
  z-index: 1;
  position: relative;
  display: inline;
  font-size: 22px;
  font-weight: bold;
  background: url(../images/common/request_head.svg) bottom -2px left no-repeat,
  url(../images/common/request_line.webp) bottom left -4px repeat-x,
  url(../images/common/request_bottom.svg) bottom -2px right no-repeat;
  background-size: 50px 8px,100% 2px,50px 8px;
  
}

.request_list {
  margin-top: 30px;
}

.request_list_item {
  padding: 0 25px;
}

.request_list_item+.request_list_item {
  margin-top: 10px;
}

.request_list_item>dt,
.request_list_item>dd {
  position: relative;
  padding-left: 20px;
  font-size: 20px;
}

.request_list_item>dt {
  font-weight: bold;
}

.request_list_item>dt::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  background: #999;
}

@media screen and (max-width: 767px) {
  .request {
    margin-top: 130px;
    background-image: url(../images/common/bg_attend_sp.webp);
    background-size: 100%;
  }

  .request .heading_wrap {
    margin: -120px auto 30px;
  }


  .request_title {
    width: 70%;
    height: 40px;
    font-size: 14px;
  }

  .request_item {
    padding: 40px 55px 20px;
  }

  .request_row {
    flex-direction: column;
  }


  .request_item_block {
    width: 100%;
  }

  .request_item_block+.request_item_block {
    margin-top: 30px;
    margin-left: 0;
  }

  .request_item_block p {
    padding: 0;
    font-size: 14px;
  }

  .request_item_block p>span {
    font-size: 15px;
  }

  .request_list_item {
    padding: 0;
  }

  .request_list_item>dt,
  .request_list_item>dd {
    font-size: 14px;
  }

  .request_list_item>dt::before {
    top: 3px;
    width: 10px;
    height: 10px;
  }
}

/* features */

.features .heading_main::before {
  background-size: 69%;
}

.features .three_column li {
  height: 290px;
  margin-bottom: 20px;
  border-left: 1px solid #ccc;
  box-sizing: border-box;
}

.features .three_column li:nth-child(3n) {
  border-right: 1px solid #ccc;
}

.features .three_column .circle_pic {
  width: 200px;
  height: auto;
  margin: 20px auto;
}

.features_txt {
  text-align: center;
}

.features .three_column dl dt {
  font-size: 20px;
  font-weight: bold;
}

.features .three_column dl dd {
  font-size: 34px;
  font-weight: bold;
  padding: 0px 0px 20px;
  color: #ff0474;
}


@media (max-width: 768px) {

  .features .heading_wrap::before {
    right: -63px;
    bottom: -80px;
    width: 129px;
    height: 179px;
  }

  .features .three_column {
    margin: 0 auto;
  }

  .features .three_column li {
    float: left;
    width: 50%;
    height: auto;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .features .three_column li:nth-child(even) {
    border-left: 0;
  }

  .features .three_column li:last-child {
    margin-bottom: 0;
  }

  .features .three_column .circle_pic {
    width: 48%;
    margin-bottom: 0;
  }

  .features .three_column dl {
    padding: 5%;
  }

  .features .three_column dl dt,
  .features .three_column dl dd span {
    font-size: 100%;
  }

  .features .three_column dl dd {
    font-size: 120%;
  }

}

/* campaign*/



#campaign_area .block_note {
  border: 0;
  margin-top: 0;
  padding: 30px 0 60px;
  border-radius: 0 0 20px 20px;
}

.block_note {
  background: #051232;
  padding: 32px 18px 28px;
  color: #ffffff;
}

.campaign_title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.campaign_caption ul {
  margin-top: 10px;
  padding: 0 80px;
  font-size: 20px;
}

.campaign_caption ul li:first-child {
  margin-top: 0px;
 font-weight: bold;
  color: #ff77af;
}

.campaign_caption ul li:nth-child(2)
{
}
.campaign_caption ul li {
  padding-left: 34px;
  position: relative;

}

.campaign_caption ul li::before {
  position: absolute;
  content: '●';
  width: 16px;
  height: 20px;
  top: 0;
  left: 10px;
  color: #999;
}


@media (max-width: 768px) {

  #campaign_area .heading_wrap{
    margin:0 auto;
  }
  #campaign_area .block_note {
    padding: 20px;

  }

  .block_note {
    padding: 10px;
    margin: 40px 0 10px;
  }

  .campaign_title {
    font-size: 16px;
  }

  .campaign_caption ul {
    padding: 0;
    font-size: 14px;
    margin-top: 10px;
  }

  .campaign_caption ul li {
    margin-top: 10px;
    padding-left: 28px;
  }

  section .conv_btn {
    width: 100%;
    margin-top: 0;
  }

}


/* purchase*/
.purchase {
  background: #051232;
  position: relative;
  min-width: 1170px;

}
.purchase .heading_sub{
    color:#cccccc;
}
.purchase .heading_main{
    color: #ffffff;
}
.purchase.-bg-photo {
  position: relative;
  background: url(../images/common/bg_wanted_top_pc.webp) top center,url(../images/common/bg_wanted_bottom_pc.webp) bottom center;
  background-repeat: no-repeat;
  background-color: #173850;
  background-size: 1400px auto;
}

.purchase_ballon {
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 10px;
  max-width:300px;
  height: 70px;
  margin: 0 auto -2px;
  background: #ff0474;
  border-radius: 10px;
  box-sizing: border-box;
  transform: skewX(-10deg);
  top:0;
  right:150px;
}


.purchase_ballon::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #ff0474;
  z-index: 2;
}

.purchase_ballon p {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
}
.purchase_ballon span{
  font-size: 24px;
}


.purchase section#csm {
  padding-top: 447px;
  padding-bottom: 0;
}

.purchase .csm {
  padding-bottom: 100px;
}


.purchase .heading_main::before {
  background-size: 73%;
}

.purchase_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0px -50px 0 0;
}


.purchase_list>li {
  width: calc((100% - 288px) / 4);
  margin: 10px;
  padding: 10px 16px 20px;
  background: #fff;
  border-radius: 10px;
  position: relative;
}

.purchase_list>li:hover a{
  opacity: 0.7;
}

.purchase_list.-wanted>li {
  border: 2px solid #ccc;
}

.purchase_list.-radius_card>li {
  width: calc((100% - 250px) / 5);
  margin: 5px;

  border: 2px solid #ccc;

}

.purchase .purchase_list .purchase_genre_content {
  background: transparent;
}

.purchase_list .purchase_prise {
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.purchase_list.-wanted .purchase_prise p,
.purchase_list.-wanted .purchase_prise em {
  color: #ff0024;
}

.purchase_list .purchase_prise em {
  font-size: 14px;
}

.purchase_list .purchase_prise p {
  width: 100%;
  text-align: right;
}

.purchase_list.-radius_card .purchase_prise p {
  font-size: 18px;
}

.purchase_list .purchase_prise p span {
  font-size: 44px;
}

.purchase_list.-radius_card .purchase_prise p span {
  font-size: 38px;
}

@media (max-width: 768px) {
  .purchase {
    min-width: auto;
  }

  .purchase_ballon {
    padding: 7px 10px;
    max-width:120px;
    height: 70px;
    
    top:-40px;
    right:10px;
  }


  .purchase_ballon::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top: 10px solid #ff0474;
    z-index: 2;
  }

  .purchase_ballon p {
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
  }
  .purchase_ballon span{
    font-size: 20px;
  }


  .purchase .csm {
    padding-bottom: 0px;
  }
  .purchase.-bg-photo {
    position: relative;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    background: url(../images/common/bg_wanted_top.webp) top center,url(../images/common/bg_wanted_bottom.webp) bottom center;
    background-repeat: no-repeat;
    background-color: #173850;
    background-size: 100% auto;
  }

  .purchase section#csm {
    position: relative;
    z-index: 1;
    padding-bottom: 13%;
    padding-top:70%;
  }

  .purchase_ballon {
    width: 80%;
  }

  .purchase_list{
    margin: 0px -13px 0 0
  }
  .purchase_list.-wanted {
    padding-top: 30%;
  }

  .purchase_list.-wanted>li {
    padding: 10px 6px 14px;
  }
  .purchase_list>li:hover a{
    opacity: 1;
  }

  .purchase_list>li,
  .purchase_list.-radius_card>li {
    width: calc((100% - 30px) / 3);
    margin: 3px;
    padding: 10px 6px 14px;
  }

}


.purchase .purchase_genre_content {
  width: 100%;
  text-align: center;
  margin: 0 0 10px;
  padding: 0;
  background: #fff;
  box-sizing: border-box;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.purchase .purchase_genre_content img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.purchase_prise::before {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 11px;
  bottom: -3px;
  left: 0px;
  right:0px;
  margin: auto;
  background: url(../images/common/bg_price.svg) no-repeat bottom center;
  background-size: contain;
  z-index:1;
}

.purchase_list .purchase_name { height: auto !important; display: block; }
.purchase_name {
  margin: 0px 0px 10px;
  font-weight: 700;
  color: #000;
  font-size: 14px;
}

.purchase_data {
  margin: 0px 0px 10px;
  font-size: 75%;
  color: #000;
}

.purchase_prise {
  font-size: 110%;
  font-weight: 700;
  color: #ff0024;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  z-index: 3;
  padding-right: 4px;
  font-weight: bold;
}

.purchase_prise span {
  font-size: 38px;
  font-family: "Crimson Text";
}

.purchase_prise>* {
  display: block;
}


@media (max-width: 768px) {
  .purchase section {
    width: 100%;
    height: auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
  }

  .purchase .purchase_genre_content {
    height: auto;
    margin: 0 0 5px;
  }

  .purchase .purchase_name {
    margin: 0px 0px 5px;
    line-height: 1.4;
    word-wrap: break-word;
    font-size: 10px;
  }

  .purchase .purchase_data {
    margin: 0px 0px 3px;
    font-size: 10px;
  }

  .purchase .purchase_prise {
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
  }

  .purchase_prise span {
    width: 68%;
    font-size: 36px;
  }

  .purchase_prise {
    padding-right: 2px;
  }

  .purchase_list .purchase_prise p {
    padding: 0;
  }

  .purchase_list .purchase_prise p,
  .purchase_list.-radius_card .purchase_prise p,
  .purchase_list .purchase_prise em {
    font-size: 12px;
  }

  .purchase_list .purchase_prise p span {
    font-size: 17px;
  }

  .purchase_list.-radius_card .purchase_prise p span {
    font-size: 19px;
  }

  .purchase_prise::before {
    height:11px;
    bottom: -2px;
    background-image: url(../images/common/bg_price.svg);
    background-size: contain;
    left: 0px;
  }


  .four_column>*:nth-child(n + 3) {
    margin-top: 14px;
  }
}

@media (max-width: 332px) {
  .purchase_list .purchase_prise p span {
    font-size: 17px;
  }
}

.purchase .tab_changer {
  width: 100%;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.purchase .tab_changer li {
  width: calc((100% - 50px) / 3);
  height: 70px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin:0 8px 8px 0;
  box-sizing: border-box;
  background: url("../images/common/h2_attend.webp") no-repeat bottom -10px center;
  background-size: 100% 20px;
}

.purchase .tab_changer.-min_tab li {
  width: calc((100% - 40px) / 3);
}


@media all and (-ms-high-contrast: none) {
  .purchase .tab_changer li {
    height: 50px;
    padding-top: 10px;
  }
}

.purchase .tab_changer li:last-child {
  margin-right: 0;
}


@media (max-width: 768px) {
  .purchase .tab_changer {
    align-items: stretch;
    width: 100%;
    height: auto;
    padding: 0;
  }

  .purchase .tab_changer li {
    width: calc((100% - 12px) / 3);
    height: auto;
    padding: 8px 5px 10px;
    font-size: 12px;
    letter-spacing: -1px;
    line-height: 1.2;
    min-height: 2em;
    margin:0 4px 4px 0;
  }

  .purchase .tab_changer.-min_tab li {
    width: calc((100% - 8px) / 3);
  }

  .purchase .tab_changer li:nth-child(3n) {
    margin-right: 0;
  }


  .purchase .tab_changer li:first-child {
    margin-left: 0;
  }

  .purchase .tab_changer li:last-child {
    margin-right: 0;
    font-size: 12px;
  }

  .purchase .tab_changer li:last-child::before {
    font-size: 12px;
    top: 50%;
    left: 10px;
    transition: all 0.2s ease 0s;
  }

  .purchase .tab_changer li span {
    font-size: 10px;
    font-weight: normal;
  }
  .purchase .tab_changer li:hover, .purchase .tab_changer li.current{
    border-radius: 6px 6px 3px 3px!important;
  }
}

.purchase .tab_changer li:hover,
.purchase .tab_changer li.current {
  background-color: #035c82;
  border-radius:10px 10px 6px 6px;
}


.pack_list	{
background: #ffffff;  
color:#051232;  
font-weight: bold;  
padding:10px 0 5px; 
font-size:40px;
margin:50px auto !important;
text-align:center;
width:102%;
}

@media screen and (max-width: 767px) {
.pack_list	{
padding:10px 0 5px; 
font-size:20px;
margin:40px auto 20px !important;
text-align:center;
width:98%;

}

}


/* 買取価格 */
#kaitori {
  min-width: 1170px;
  padding: 40px 0 40px;
  background: rgb(238,238,238);
  background: linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(5,18,50,1) 30%, rgba(5,18,50,1) 100%);
}

#kaitori section {
  padding: 0;
}


#kaitori .heading_wrap {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

#kaitori .heading_sub{
  color:#cccccc;
}
#kaitori .heading_main{
  color:#ffffff;
}

#kaitori .heading_main::before {
  background-size: 50%;
}

.kaitori_box {
  width: 100%;
  height: auto;
  margin: -4px auto 0;
  z-index: 0;
}

.kaitori_content {
  position: relative;
  z-index: 1;
  height: auto;
  margin: 0 auto 0;
  padding: 70px 20px;
  border: 2px solid #ccc;
  border-radius: 10px;
  background: #eeeeee;
  transform: skewX(-10deg);

}



.kaitori_serchbox {
  position: relative;
  width: calc(60% + 140px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #cccccc;
  transform: skewX(10deg);
}

.kaitori_serchbox_content {
  display: flex;
  justify-content: center;
  width: 100%;
  box-shadow: 14px 12px 11px -7px rgba(0, 0, 0, 0.1) inset;
  background-color: #f2f2f2;
}

.kaitori_serchbox input {
  padding: 16px 12px 16px 50px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 20px;
  background-color:#ffffff;
  box-shadow: 14px 12px 11px -7px rgb(0 0 0 / 10%) inset;
  height: 38px;
  width: calc(100% - 140px);
  font-family: 'メイリオ', Meiryo, sans-serif;
}

.kaitori_serchbox::before {
  position: absolute;
  content: '';
  width: 22px;
  height: 22px;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  background: url(../images/common/i_search.webp) no-repeat;
}

.kaitori_serchbox button {
  padding: 16px 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 20px;
  background: rgb(92,99,103,1);
  background: linear-gradient(45deg, rgba(145,143,141,1) 0%, rgba(92,99,103,1) 100%);
  font-weight: 500;
  color: #fff;
  width: 140px;
  cursor: pointer;
  box-shadow: -5px 12px 11px -7px rgba(0, 0, 0, 0.1) inset;
}

.kaitori_serchbox button:hover {
  opacity: 0.6;
  transition: all 0.2s ease 0s;
}


@media screen and (max-width: 767px) {
  #kaitori {
    min-width: auto;
    margin-top: 50px;
    padding: 20px 0 20px;
  }

  #kaitori section {
    padding: 0px 15px 0px;
  }

  #kaitori .heading_wrap{
    margin: 0 auto;
  }

  .kaitori_box {
    min-width: auto;
    margin: 0px auto 0;
  }

  .kaitori_serchbox {
    width: calc(76% + 70px);
  }

  .kaitori_serchbox input {
    padding: 10px 10px 10px 35px;
    border: none;
    border-radius: 0;
    outline: none;
    font-size: 16px;
    background-color: transparent;
    border: none;
    height: auto;
    width: calc(100% - 70px);
  }

  .kaitori_serchbox button {
    width: 70px;
    padding: 12px 8px;
    font-size: 16px;
  }

  .kaitori_serchbox::before {
    width: 16px;
    height: 18px;
    left: 9px;
    background-size: 16px;
  }

  .kaitori_content {
    width: 100%;
    height: auto;
    margin: 0 auto 0;
    position: relative;
    z-index: 1;
    padding: 26px 12px 26px;
  }

}


#assurance section{
  padding: 10px 0px 140px 0px;
}

.assurance_img {
  position: relative;
  display: block;
  width: 709px;
  margin: auto;
}


.assurance p {
  margin: 30px 0;
  font-size: 52px;
  color: #ff0474;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}



@media screen and (max-width: 767px) {
  #assurance section{
    padding: 10px 16px 60px 16px;
  }
  .assurance_img {
    width: 100%;
  }

  .assurance_img::before {
    bottom: -128px;
    right: -52px;
    width: 124px;
    height: 167px;
  }

  .assurance p {
    font-size: 28px;
    letter-spacing: 0;
    margin: 20px 0 ;
  }
  .assurance .sub_conductor {
    width:97%;
    margin-top: 30px;
  }

}


/* 4.state
----------------------------------------*/
.is-current {
  color: #ff0474;
}

.sc_active {
  opacity: 0.7;
}


/*faq*/

.faq dl {
  margin-bottom: 40px;
}

.faq dt {
  display: block;
  border-bottom: 2px solid #333;
  padding: 8px 16px 8px 66px;
  position: relative;
  color: #000;
  font-size: 125%;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: bold;
}

.faq dt:after {
  content: "Q";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 48px;
  font-size: 150%;
  font-weight: bold;
  background-color: #333;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  font-family: "Crimson Text";
  font-weight: 700;
  bottom: 0;
  left: 0;
}

.faq dd {
  display: block;
  padding: 0;
  border-left: 2px solid #a0a0a0;
  margin-left: 100px;
  padding: 8px 8px 8px 16px;
  position: relative;

}

.faq dd:after {
  content: "A";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  font-family: "Crimson Text";
  font-weight: 700;
  bottom: 0;
  left: 0;
  font-size: 150%;
  color: #ff0474;
  top: 1px;
  left: -30px;
}

.faq dt span {
  display: block;
  cursor: pointer;
}

.faq dt span.i_plus {
  position: static;
}

.faq dt span.i_plus::before {
  content: '';
  background: url(../images/common/arrow-down.svg) top center no-repeat;
}

.faq dt.js-active span.i_plus:before {
  content: "";
  background: url(../images/common/arrow-up.svg) top center no-repeat;
  font-size: 100%;
  top: 0.5em;
}

.faq dd .f_pink {
  font-size: 19px;
  font-weight: bold;
}

.faq .sub_conductor>a.sub_btn {
  display: block;
  width: 100%;
  height: 40px;
  margin: 0 auto;
  line-height: 2.3;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  border-radius: 3px;
  border: solid 2px #333333;
  color: #000;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
}

@media (max-width: 768px) {

  .faq dt {
    vertical-align: middle;
    font-size: 100%;
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 46px;
    padding: 8px 30px 8px 45px;
  }

  .faq dt:after {
    width: 36px;
  }

  .faq dd {
    margin-left: 40px;
    padding: 8px 0px 8px 16px;
    position: relative;
  }

  .faq dt span.i_plus:before {
    top: 0.6em;
  }

  .faq dt.js-active span.i_plus:before {
    font-size: 140%;
    font-weight: 700;
  }
}

/* sells */
#sells {
  margin-top: 10px;
}

.sells {
  width: 100%;
  text-align: center;
}

.sells .four_column li a {
  position: relative;
  padding: 10px 10px 40px;
  display: block;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.sells .four_column li a:hover {
  background-color: #ffd4df;
}

.sells .four_column li p {
  font-weight: 700;
  font-size: 137%;
  margin: 10px 0 15px;

}

.sells .four_column li a:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  content: '';
  width: 25px;
  height: 25px;
  margin: auto;
  background: url(../images/common/circle-right.svg) top center no-repeat;
}


.sells .application {
  margin-top: 30px;
}


@media (max-width: 768px) {
 
  .sells .four_column li p {
    font-size: 100%;
  }

  .sells .four_column li a:hover {
    background-color: none;
  }

  .sells .four_column li a:after {
    width: 22px;
    height: 22px;
  }

}

/*シリーズリンク*/
.series{
  position: relative;
  margin:40px auto;
  padding:50px 0;
}
.series::before,
.series::after{
  position: absolute;
  content:"";
  display: block;
  width:100%;
  height:20vw;
  left:0;
  right:0;
  margin: auto;
}
.series::before{
  top:0;
  background: url(../images/common/bg_title.webp) no-repeat top center;
  background-size: 100%;
  z-index: -1;
}
.series::after{
  bottom:0;
  transform: rotate(180deg);
  background: url(../images/common/bg_title.webp) no-repeat top center;
  background-size: 100%;
  z-index: -2;
}

.series ul li{
  background: #051232;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
}
.series ul dl{
  padding:20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
}
.series ul dl dt{
  margin-bottom:20px;
  display: flex;
  justify-content: center; 
  align-items: center; 
}
.series ul dl dt img{
  border:1px solid #cccccc;
}
.series ul dl dd{
  display: flex;
  text-align: center;
  justify-content: center; 

}
@media (max-width: 768px) {
  .series{
    margin:20px auto;
    padding:30px 10px;
  }
  .series::before{
    background: url(../images/common/bg_title_sp.webp) no-repeat top center;
    background-size: 90%;
  }
  .series::after{
    bottom:0;
    background: url(../images/common/bg_title_sp.webp) no-repeat top center;
    background-size: 90%;
  }

  .series ul li{
    font-size: 14px;
  }
  .series ul dl dt{
    margin-bottom:10px;  
  }
}



/*.third_genre
-----------------------------------------------------*/
.third_genre .third_genre_right {
	width: 40%;
	float: right;
	position: relative;
	z-index: 5;
}
.third_genre .third_genre_right img {
	width: 264px;
	height: auto;
	position: relative;
	right: -60px;
	top: 130px;
transform: rotate( 15deg );
}
.third_genre .third_genre_left {
	width: 60%;
	float: left;
	position: relative;
	z-index: 10;
	overflow: hidden;
		left:30px;

}
.third_genre dl {
	position: relative;
	border: 7px solid #ff0474;
	border-radius: 15px;
}
.third_genre dt {
	background: #ff0474;
	text-align: center;
	color:#ffffff;
	font-weight: bold;
	font-size: 30px;
	padding: 25px 0 20px;
	position: relative;
}
.third_genre dt:after {
	content: "";
	background: url('/moetaku/tcg/pokemon_card/_assets/images/common/bg_dotted.webp') repeat;
	background-size: contain;
	color: #03004c;
	height: 4px;
	width: 60px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.third_genre dt span {
	display: block;
	color: #03004c;
	font-size: 20px;
	margin-bottom: 3px;
}
.third_genre dd {
	padding: 30px;
	font-size: 16px;
	line-height: 1.8;
	background: #fff;
}

.mmat100	{margin-top:-100px !important;}

@media (max-width: 768px) {
	/*.third_genre
	-----------------------------------------------------*/
	.third_genre .third_genre_right {
		width: 100%;
		float: none;
		text-align: center;
		margin-bottom: 0px;
		margin-top:10px;
	}
	.third_genre .third_genre_right img {
		width: 150px;
		height: auto;
		position: static;
	}
	.third_genre .third_genre_left {
		width: 100%;
		float: none;
		left:0;
	}

	.third_genre .third_genre_left.more_active  {
		max-height: 1000px;
	}
	.third_genre .third_genre_left.more_active:after {
		background: none;
	}

	.third_genre dt {
		font-size: 18px;
		padding: 10px 0 15px;
	}
	.third_genre dt:after {
		background-size: contain;
		height: 2px;
		width: 25px;
	}
	.third_genre dt span {
		font-size: 16px;
	}
	.third_genre dd {
		padding: 20px 15px;
		font-size: 12px;
		line-height: 1.6;
	}

}

/*-------------------------------------
高価買取下テーブル
--------------------------------------*/

#other_lists {
  width: 100%;
}
#other_lists h4.message_title {
  margin: 0 auto 15px;;
}
#other_lists p {
  font-size: 73%;
  padding: 0 5px 5px 0;
  text-align: right;
}
.other_header {
  position: relative;
  width: 100%;
  height: 40px;
  background-color: #5c5c5c;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.other_header li {
  float: left;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  box-sizing: border-box;
}
.other_header li:first-child,
.other_list li:first-child {
  width: 840px;
}
.other_header li:nth-child(2),
.other_list li:nth-child(2) {
  width: 110px;
}
.other_header li:last-child,
.other_list li:last-child {
  width: 200px;

}
.other_list {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.other_list {
  max-height: 1000px;
  transition: max-height 500ms;
  overflow: hidden;
}
.other_list:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1000px;
  background: linear-gradient(rgba(242, 242, 242, 0) 40%, rgba(242, 242, 242, 0.8) 95%, rgba(242, 242, 242, 1));
  content: "";
}
.other_list.more_active {
  max-height: 100%;
}
.other_list.more_active:after {
  background: none;
}



.other_list ul {
  width: 100%;
  height: 60px;
  border: 1px solid #ccc;
  border-top: 0;
  box-sizing: border-box;
}
.other_list ul:nth-child(odd) {
  background: #f2f2f2;
}
.other_list ul:nth-child(even) {
  background: #fff;
}
.other_list li {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 0 10px;
  font-size: 92%;
  box-sizing: border-box;
}
.other_list .price {
  color:#ee0d5c;
  font-weight:900;
  font-size: 100%;
  padding: 12px 10px;
  text-align: right;
}
.other_list .price span {
  font-size: 165%;
}

.other_list .price span.tag {
    position: relative;
    top: -3px;
    display: inline-block;
    font-size:13px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    background-color: #ee0d5c;
    text-align: center;
    padding: 6px 6px 5px;
    margin: 0 0 5px 5px;
}


@media (max-width: 768px) {
  #other_lists h4.message_title {
    margin: 0 auto 10px;
  }
  #other_lists p {
    font-size: 85%;
  }
  .other_header li:first-child {
    width: 70%;
  }
  .other_header li:last-child {
    width: 30%;
  }
  .other_list {
    max-height: 400px;
    transition: max-height 500ms;
    overflow: hidden;
  }
  .other_list:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.8) 95%, rgba(255, 255, 255, 1));
    content: "";
  }
  .other_list.more_active {
    max-height: 100%;
  }
  .other_list.more_active:after {
    background: none;
  }
  .other_list ul {
    height: 100%;
  }
  .other_list li {
    display: block;
    float: left;
    font-size: 80%;
  }
  .other_list .info {
    float: left;
    width: 55% !important;
    padding: 10px 5px;
    text-align: left;
    box-sizing: border-box;
  }
  .other_list .vendor {
    float: left;
    width: 20% !important;
    padding: 10px 5px;
    text-align: left;
    box-sizing: border-box;
  }
  .other_list .price {
    width: 25% !important;
    padding: 10px 5px;
    box-sizing: border-box;
  }
  .other_list .price span {
    font-size: 130%;
  }
  .other_list .price span.tag {
    position: relative;
    top: 0;
    display: inline-block;
    font-size: 11px;
    font-weight: normal;
    padding: 4px 4px 3px;
    margin: 0;
  }
  #js_more_btn.sub_btn {
    padding: 0 20px;
    line-height: 2.6;
  }
}


/*日本一安全宣言*/

#safety section{
  padding: 50px 0px 40px 0px;
}

#safety h3{
  text-align: center;
  font-size:28px;
  font-weight: bold;
}
#safety h3 p{
  width:15em;
  position: relative;
  margin: auto;
}
#safety h3 p:before,#safety h3 p:after{
  content:"……";
  display: inline-block;
  position: absolute;
  width:50px;
  font-size: 20px;
  color:#000;
  bottom:-10px;
}
#safety h3 p:before{
  left:-50px;
  transform: rotate(45deg);
}
#safety h3 p:after{
  right:-50px;
  transform: rotate(-45deg);
}
#safety .three_column{
  margin-top:20px;
}
#safety dd {
  margin-top:20px;
  text-align: center;
  font-size: 18px;
}

#safety dd .marker {
  font-size:24px;
  font-weight: bold;
  text-align: center;
  background: url(/moetaku/tcg/onepiece/_assets/images/common/bg_price.svg) no-repeat top 12px center;
  background-size: 100% 30px;
}

#safety dd .marker.large{
  background-size: 100% 36px;
}
#safety dd .marker.small{
  background-size: 100% 20px;
}

#safety dd .normal{
  margin-top:5px;
}
@media screen and (max-width: 767px) {
  #safety h3{
    font-size:18px;
  }
  #safety h3 p{
    width:14em;
    margin-bottom: 5px;
  }
  #safety picture {
    width:92%;
    display: block;
    margin: auto;
  }
  #safety .three_column>*{
    float: none;
    width: 100%;
    padding:0 10px;
    margin-bottom:40px;
  }
  #safety .three_column>*:last-child{
    margin-bottom:0;
  }


}



/*愛情買取*/
#love {
  background: url(/moetaku/tcg/pokemon_card/_assets/images/common/bg_love.webp) top center repeat-y;

}

#love section{
  padding: 50px 0px ;
}
#love h2{
  text-align: center;
  font-size:70px;
  font-weight: bold;
  padding-top:10px;
}

#love h3{
  text-align: center;
  font-size:28px;
  font-weight: bold;
  padding-top:30px;
  color:#e4007f;
}
#love h3 p{
  width:15em;
  position: relative;
  margin: auto;
}
#love h3 p:before,#love h3 p:after{
  content:"……";
  display: inline-block;
  position: absolute;
  width:50px;
  font-size: 20px;
  color:#e4007f;
  bottom:0px;
}
#love h3 p:before{
  left:-50px;
  transform: rotate(45deg);
}
#love h3 p:after{
  right:-50px;
  transform: rotate(-45deg);
}

#love  .catch_copy{
font-family: "Noto Sans";
font-size: 150%;
font-weight: bold;
margin-bottom:10px;
  color:#e4007f;
  text-align: center;
}

#love  img{
width:750px;
margin-left:17%;
text-align: center;
}

#love .main img{
width:1000px;
text-align: center;
margin-left:7%;

}

#love .message_title{
position: relative;
margin:0 auto 30px;
width:48%;
padding:6px 12px 8px;
font-weight: bold;
font-size:112%;
font-family: "Noto Sans";
color:#000000;
text-align: center;
background-color: #ffe12b;
border:2px solid #000000;
-webkit-border-radius: 10px;  -moz-border-radius: 10px; border-radius: 10px;
}

#love .message_title:after{
position: absolute;
content: "";
color: #fff;
top: 80%;
left: 48%;
width: 15px;
height: 15px;
border-top: 2px solid #000000;
border-right: 2px solid #000000;
-webkit-transform: rotate(-225deg);
transform: rotate(-225deg);
z-index: 0;
background: #ffe12b;
}

#love .message_title.black{
color:#000;
border:2px solid #000;
}

#love .message_title.black:after{
border-top: 2px solid #000;
border-right: 2px solid #000;
}


#love .sub_conductor5 {
  position: relative;
  width: 50%;
  height: 30px;
  text-align: center;
  margin: 50px auto;
}

#love .sub_conductor5>a.sub_btn {
  display: block;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  line-height: 50px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border-radius: 35px;
  color: #fff;
  background-color: #333;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
}

#love .sub_conductor5>a.sub_btn:hover {
  opacity: 0.7;
}

#love .sub_conductor5>a.sub_btn.arrow_right {
  position: absolute;
}

#love .sub_conductor5>a.sub_btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 27px;
  height: 27px;
  margin: auto;
  background: url(/moetaku/tcg/pokemon_card/_assets/images/common/circle-arrow-right.svg) top left no-repeat;
  background-size: 100%;
}


.button_tcg a {
    background: #ffffff;
    border-radius: 5px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 30px auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #000000;
    transition: 0.3s ease-in-out;
    font-weight: bold;
    border:2px solid;
}
.button_tcg a:hover {
    background: #ffe12b;
    color: #000000;
    border:2px solid;
}
.button_tcg a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #000000;
    border-right: 3px solid #000000;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button_tcg a:hover:after {
    border-color: #000000;
}


@media screen and (max-width: 767px) {

#love {
    background-size:100%;

}

#love section{
  padding: 20px 0;
}
#love h2{
  font-size:40px;
}

#love h3{
  font-size:18px;
}

#love h3 p:before,#love h3 p:after{
  content:"……";
  display: inline-block;
  position: absolute;
  width:50px;
  font-size: 16px;
  color:#e4007f;
  bottom:0px;
}
#love h3 p:before{
  left:-30px;
  transform: rotate(45deg);
}
#love h3 p:after{
  right:-30px;
  transform: rotate(-45deg);
}

#love  img{
width:90%;
margin-left:5%;
}

#love .main img{
width:95%;
text-align: center;
margin-left:2.5%;

}

#love .message_title{
width:80%;
}

#love .sub_conductor5 {
  width: 90%;
  height: 30px;
  text-align: center;
  margin: 30px auto;
}

#love .sub_conductor5>a.sub_btn {
  width: 100%;
  font-size: 14px;
}


#love .sub_conductor5>a.sub_btn::before {
  right: 10px;
}


}
