@charset 'utf-8';

/* ----------------------------------------------------
  基本設定
---------------------------------------------------- */
body {
  color: #333;
  background-color: #fff;
  font-size: 14px;
  font-family:'游ゴシック','YuGothic', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Helvetica, Arial, Verdana, sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}
a {display: inline-block;}
a:link { color:#333;text-decoration:none;}
a:visited { color:#333;}
a:hover { color:#333;text-decoration: underline;}
a:active { color:#333;}
a img {
  margin: 0 auto;
}
.fade {
  -webkit-transition: opacity .2s ease;
  -moz-transition: opacity .2s ease;
  -o-transition: opacity .2s ease;
  -ms-transition: opacity .2s ease;
  transition: opacity .2s ease;
}
.fade:hover {
  opacity: .7;
  filter: alpha(opacity=70);
}
body {
  min-width: 320px;
}
/*============================
#wrap
============================*/
#wrap {
  padding-top: 77px;
}
/*============================
#header
============================*/
#header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 1200;
  animation: none!important;
  position: absolute;
}
/*上スクロール時ヘッダー表示*/
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*下スクロール時ヘッダー非表示*/
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#header .txt {
  background: #ffffff;
  color: #707070;
  font-size: 9px;
  height: 19px;
  padding: 2px 0;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #d82035;
  opacity: 1;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease;
}
#header .HiddenTag {
  height: 0 !important;
  opacity: 0 !important;
  padding: 0px !important;
  border: none !important;
}
#header .inner {
  padding-top: 15px;
  height: 58px;
  position: relative;
}
#header .logo {
  margin: 0 auto;
  position: relative;
  width: 139px;
  height: 31px;
  z-index: 100;
}
@media only screen and (max-width:350px){
  #header .logo {
    width: 120px;
    height: 26.37px;
  }
}
#header .logo img {
  height: auto;
  width: 100%;
}
#header .btns {
  position: absolute;
  left: 7px;
  top: 8px;
  vertical-align: top;
  opacity:0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease;
}
#header .btns li {
  display: inline-block;
}
#header .btns img {
  width: 45px;
}
@media only screen and (max-width:350px){
  #header .btns img {
    width: 40px;
  }
}
.header-underline {
  border-bottom: 1px solid #ccc;
}
/*============================
#sp-nav
============================*/
#sp-nav {
  width: 21px;
  height: 50px;
  position:absolute;
  right: 23px;
  top: 0px;
  cursor: pointer;
  opacity:0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease;
}
@media only screen and (max-width:350px) {
  #sp-nav {
  width: 17px;
  }
}
#sp-nav a {
  display: block;
  width: 100%;
  height: 100%;
}
.hamburger-icon {
  background-color: #D82035;
  border-radius: 50%;
  border: 1px solid #ffffff;
  color: #fff;
  display: block;
  font-size: 10px;
  font-weight: bold;
  height: 16px;
  width: 16px;
  line-height: 16px;
  text-align: center;
  position: absolute;
  top: 9px;
  left: 15px;
  z-index: 999;
}
.android-icon {
  line-height: 15px!important;
}
@media only screen and (max-width:350px){
  .hamburger-icon {
  left: 11px;
  }
}
.hamburger-line {
  height: 2px;
  width: 100%;
  display: inline-block;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  -ms-transition: all .4s;
  transition: all .4s;
  position: absolute;
  border-radius: 2px;
  background-color: #333333;
}
.line-1 {
  top: 17px; 
}
.line-2 {
  top: 25px; 
}
@media only screen and (max-width:350px) {
  .line-2 {
    top: 23.5px; 
  }
}
.line-3 {
  top: 33px; 
}
@media only screen and (max-width:350px) {
  .line-3 {
    top: 30px; 
  }
}
.hamburger-open .hamburger-icon {
  display: none;
}
/*hamburger-openクラスが付与されるとハンバーガメニューの三本線が回転して×に*/
.hamburger-open .line-1 {
  transform: translateY(6px) rotate(-45deg);
}
.hamburger-open .line-2 {
  opacity: 0;/*真ん中の線は透過*/
}
.hamburger-open .line-3{
  top: 29px;
  transform: translateY(-6px) rotate(45deg);
}
#sp-nav .hamburger-text {
  position: absolute;
  top: 41px;
}
@media only screen and (max-width:350px){
  #sp-nav .hamburger-text {
    top: 37px;
    left: -2px;
  }
}
#menu-text {
  position: absolute;
  right: -28px;
  width: 33.5px;
}
@media only screen and (max-width:350px){
  #menu-text {
    right: -24px;
    width: 28.5px;
  }
}
#close-text {
  position: absolute;
  right: -23px;
  width: 25px;
}
@media only screen and (max-width:350px){
  #close-text {
  right: -20px;
  width: 20px;
  }
}
#sp-nav .hamburger-hidden-text {
 display: none;
}
/*============================
#header-review
============================*/
#header-review {
  width: 45px;
  height: 44px;
  position:absolute;
  right: 60px;
  top: 10px;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease;
}
@media only screen and (max-width:350px) {
  #hreader-review {
  width: 17px;
  }
}
#header-review a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
#header-review a img {
  width: 38px;
}

/*============================
#nav-are
============================*/
#nav-area {
  width: 100%;
  max-width: 100%;
  position: fixed;
  z-index: 1100;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0%) translateZ(0);
  transform: translateX(0%) translateZ(0);
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition: all 0.6s;
  pointer-events: all;
  top: -100%;
}
#nav-area .nav-inner {
  height: 100%;
  background-color: white;
}
#nav-area .scroll-down{
 top: 0px;
}
/*============================
#nav-tab-area
============================*/
#nav-tab-area {
  display: none;
  height: 0px;
}
#nav-tab-area:after {
  height: 2px;
  width: calc(100vw/3);
  background-color: #D82035;
  border-radius: 2px;
  content: "";
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 48px;
  right: 33%;
  z-index: 9999;
}
#nav-tab-area .nav-tab {
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: calc(-100vw/3);
  border-bottom: 1px solid #EEEEEE;
}
#nav-tab-area .nav-tab li {
  height: 48px;
  width: calc(100vw/3);
  text-align: center;
  opacity: 1;
  float: left;
  display: block;
  margin-left: 0px;
  line-height: 0.8em;
  font-size: 12px;
  font-weight: bold;
  padding-top: 17px;
  padding-bottom: 15px;
  position: relative;
}
@media only screen and (max-width:350px){
  #nav-tab-area .nav-tab li {
    font-size: 10px;
  }
}
#nav-tab-area .nav-tab-item {
  color: #BBBBBB;
}
#nav-tab-area .nav-tab-item span{
  height: 12px;
  width: 12px;
  background-color: #D82035;
  border-radius: 50%;
  color: #fff;
  display: block;
  font-size: 8px;
  font-weight: bold;
  line-height: 12px;
  text-align: center;
  position: absolute;
  top: 14px;
  left: 81.5%;
}
@media only screen and (min-width:700px){
  #nav-tab-area .nav-tab-item span {
    left: 67%;
  }
}
@media only screen and (min-width:920px){
  #nav-tab-area .nav-tab-item span {
    left: 63%;
  }
}
#nav-tab-area .current-tab {
  color: #D82035;
}

/*============================
#nav-menu-area
============================*/
#nav-menu-area {
  overflow: hidden;
  position: relative;
}
#nav-menu-area .nav-menu { 
  position: absolute;
  height: 100vh;
  top: 0px;
  width: 700vw;
  left: 0!important;
} 
#nav-menu-area .nav-menu-inner {
  width: 85%;
  margin: 0 auto;
  max-width: 650px;
}
@media only screen and (max-width:330px){
  #nav-menu-area .nav-menu-inner {
    width: 88%;
  }
}
#nav-menu-area .nav-menu-item {
  width: 100vw;
  position: relative;
  visibility: visible;
  opacity: 1;
  float: left;
  min-height: 30px;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}
#nav-menu-area .nav-menu .nav-menu-item.clone {
  display: none;
}
#nav-menu-area .bottom-link a {
  font-weight: bold;
  font-size: 12px;
  text-decoration: underline;
  margin-top: 10px;
}
#nav-menu-area .bottom-center-link {
  text-align: center;
  padding-top: 22.5px;
  margin-bottom: 31px;
}
/* 会員メニュー */
#nav-menu-area .login-area-line {
  border-bottom: 1px solid #E6E6E6;
  margin: 0 auto 30px auto;
}
#nav-menu-area .login-btn-area {
  margin: 25px auto 30px auto;
  background-color: #EEEEEE;
  padding: 20px 0 15px 0;
  text-align: center;
}
#nav-menu-area .nav-login-btn img{
  width: 86%;
  margin: 0 auto
}
#nav-menu-area .register-btn {
  font-weight: bold;
  font-size: 10px;
  text-decoration: underline !important;
  text-align: center;
  margin-top: 7px;
}
#nav-menu-area .notification-icon-area {
  margin: 23px auto 0px auto;
  display: flex;
  justify-content: space-between;
}
#nav-menu-area .notification-icon{
  text-align: center;
}
#nav-menu-area .notification-icon a{
  position: relative;
}
#nav-menu-area .notification-icon a img{
  width: 76%;
}
#nav-menu-area .notification-icon p{
  font-weight: bold;
  font-size: 12px;
  margin-top: 7px;
}
#nav-menu-area .notification-icon:nth-child(3) p{
  font-size: 10px;
  margin-top: 9px;
}
#nav-menu-area .notice-icon {
  height: 24px;
  width: 24px;
  background-color: #D82035;
  border-radius: 50%;
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 24px;
  position: absolute;
  text-align: center;
  left: 73%;
}
#nav-menu-area .notice-icon-three-digits {
  font-size: 10px;
}
#nav-menu-area .notice-icon-three-digits>span {
  position: relative;
  top: -2px;
}
#nav-menu-area .menu-btn-area {
  display: flex;
  justify-content: space-between;
  margin-top: 23px;
}
#nav-menu-area .menu-btn img{
  width: 100%;
}
#nav-menu-area .menu-mypage-btn {
  width: 35.5%;
}
#nav-menu-area .menu-search-btn {
  width: 62%;
}
#nav-menu-area .menu-btn-area li:nth-of-type(2){
  text-align: end;
}
#nav-menu-area .search-condition-area{
  margin: 25px auto 22.5px auto;
}
#nav-menu-area .search-menu ul li{
  background-color: #F5F5F5;
  padding: 17px 0px 17px 28px;
  margin: 7px auto 0px auto;
  width: 94%;
  font-size: 12px;
  position: relative;
}
#nav-menu-area .search-menu ul li a{
  width: 88.5%;
}
#nav-menu-area .left-red-label {
  font-weight: bold;
  font-size: 14px;
}
#nav-menu-area .left-red-label span{
  height: 20px;
  padding-left: 5px;
  background-color: #D82035;
  border-radius: 3px;
  margin-right: 5px;
}
#nav-menu-area .no-search-condition {
  text-align: center;
  padding: 14px!important;
}
#nav-menu-area .search-saved a::after{
  content: '>';
  font-size: 12px;
  position: absolute;
  display: block;
  top: 34%;
  right: 15px;
}
#nav-menu-area .disp-none {
  display: none;
}
#nav-menu-area .two-line {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
#nav-menu-area .condition-name {
  width: calc(82% - 62px);
  position: absolute;
  left: 28px;
  top: 17px;
}
#nav-menu-area .one-line {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
#nav-menu-area .offer-counts {
  width: 60px;
  position: absolute;
  right: 33px;
  top: 17px;
  text-align: end;
}
#nav-menu-area .no-search-saved {
  font-weight: bold;
  text-align: center!important;
  padding: 14px!important;
}
#nav-menu-area .no-search-saved a{
  text-decoration: underline;
}
#nav-menu-area .no-search-saved a::after{
  display: none;
}
#nav-menu-area .search-condition-link {
  text-align: right;
  width: 94%;
  margin: 0 auto;
}

/* あなたにおすすめメニュー */
#colored-link-area {
  margin-top: 24px;
}
#colored-link-area .colored-link {
  background-color: #FFEFF1;
  height: 50px;
  border-radius: 5px;
  margin: 0 auto 14px auto;
  padding: 6px;
  position: relative;
}
#colored-link-area .colored-link a {
  display: flex;
}
#colored-link-area .colored-link a::after{
  content: '>';
  font-size: 13px;
  position: absolute;
  display: block;
  top: 16px;
  right: 25px;
}
@media only screen and (max-width:350px){
  #colored-link-area .colored-link a::after{
    right: 18px;
  }
}
#colored-link-area .colored-link-icon {
  width: 14px;
  height: 14px;
  margin: 12px;
}
#colored-link-area .colored-link-subtext {
  display: block;
  margin-left: 0px;
  height: 10px;
}
#colored-link-area .recommend-subtext {
  width: 40px;
}
#colored-link-area .matching-subtext {
  width: 31px;
}
#colored-link-area .wish-subtext {
  width: 16px;
}
#colored-link-area .ranking-subtext {
  width: 27px;
}
#colored-link-area .colored-link-text {
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  margin-top: 2px;
}
#colored-link-area .colored-link-text span {
  font-size: 12px;
  font-weight: bold;
}
#colored-link-area .nav-new-icon {
  font-size: 8px;
  color: #FFFFFF;
  font-weight: bold;
  background-color: #D82035;
  width: 37px;
  height: 15px;
  position: absolute;
  top: 18px;
  left: 200px;
  text-align: center;
  border-radius: 2px;
  padding-top: 1.3px;
}
.simple-link-area {
  margin-bottom: 22.5px;
  margin-top: 9px;
}
.simple-link-area .simple-link {
  position: relative;
  margin: 0 auto;
  padding: 14px 0px 9.5px 21.5px;
  width: 82.5%;
  border-bottom: 1px solid #E6E6E6;
}
.simple-link-area .simple-link a {
  font-size: 12px;
  font-weight: bold;
  color: #333333;
  width: 100%;
}
.simple-link-area .simple-link a::after{
  content: '>';
  font-size: 12px;
  position: absolute;
  display: block;
  top: 14px;
  right: 4.5px;
  color: #333333;
}
/* お役立ちメニュー */
#helpful-link-area {
  margin: 25px auto 14px auto;
}
#helpful-link-area li:last-child a{
  padding-top: 8px;
}
#helpful-link-area .helpful-link {
  position: relative;
  margin: 0 auto;
  padding-top: 4px;
  padding-bottom: 9.5px;
  border-bottom: 1px solid #E6E6E6;
  text-align: center;
}
#helpful-link-area .helpful-link span{
  position: absolute;
  left: 28px;
  bottom: 20.75px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.6px 0 4.6px 10.5px;
}
#helpful-link-area .red-triangle img{
  width: 50%;
}
#helpful-link-area .purple-triangle img{
  width: 63%;
}
#helpful-link-area .blue-triangle img{
  width: 68.5%;
}
#helpful-link-area .wt-red-triangle img{
  width: 50.5%;
}
#helpful-link-area .red-triangle span{
  border-color: transparent transparent transparent #D82035;
}
#helpful-link-area .purple-triangle span{
  border-color: transparent transparent transparent #9666C7;
}
#helpful-link-area .blue-triangle span{
  border-color: transparent transparent transparent #36B1DF;
}
#helpful-link-area .wt-red-triangle span{
  border-color: transparent transparent transparent #D41A3E;
}
#sns-link-area {
  margin: 0 auto;
}
#sns-link-area .sns-icons-area {
  display: inline-block;
  width: 100%;
}
#sns-link-area .sns-icons {
  display: flex;
  width: 87%;
  margin: 23px auto 22.5px auto;
  justify-content: space-evenly;
  align-items: flex-end;
}
#sns-link-area .sns-icons li img {
  width:40px;
  heigth:32.92px;
}
/*============================
共通スタイル
============================*/
.hr-style-01 {
  background: url(/th/sp/img/common/bg_01.png) repeat top left;
  border: none;
  height: 5px;
  width: 100%;
}
.top-modal-box {
  background: #fff;
  display: none;
  height: 100%;
  left: 0;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
.top-modal-box .title {
  background: #d82035;
  color: #fff;
  font-size: 16px;
  padding: 15px 0;
  text-align: center;
}
.top-modal-box .back {
}
.top-modal-box .back a {
  background: #eee;
  display: block;
  padding: 15px 0 15px 13px;
}
.top-modal-box .back a span {
  display: inline-block;
  background: url(/th/sp/img/common/icn_arrow_l_02.png) no-repeat left 5px;
  -webkit-background-size: 7px 8px;
  background-size: 7px 8px;
  font-weight: bold;
  padding: 0 0 0 15px;
}
.top-modal-box ul {
  border: 2px solid #000;
  margin: 15px;
}
.top-modal-box ul li {
  border-bottom: 2px solid #000;
}
.top-modal-box ul li:last-child {
  border: none;
}
.top-modal-box ul li p {
  font-weight: bold;
  text-decoration: none;
}
.top-modal-box ul li p span {
  font-size: 12px;
  text-decoration: underline;
}
.top-modal-box ul li a {
  display: block;
  padding: 10px;
}
.top-modal-box ul li a {
  text-decoration: none;
}
.top-modal-box ul li a div {
  background: url(/th/sp/img/common/icn_arrow_r_02.png) no-repeat center right;
  -webkit-background-size: 7px 8px;
  background-size: 7px 8px;
  padding: 0 10px 0 0;
}

/*============================
 検索結果通知
============================*/
.recordcount {
  display: none;
  position: fixed;
  margin-top: 0px;
  margin-right: 0px;
  bottom: 15px;
  left: 15px;
  float: left;
  right: 15px;
  background-color: rgba(85,85,85,0.7);
  color: #fff;
  width: 100px;
  height: 20px;
  text-align: center;
  font-size: 10px;
  line-height: 2;
  border-radius: 2px;
}

/*============================
#pagetop
============================*/
#pagetop {
  text-align: right;
  margin: 0 7px -10px;
}
#pagetop a {
}
#pagetop a img {
}

/*============================
#footer
============================*/
#footer {
  border-top: 2px solid #000;
  background: #f5f5f5;
  padding: 20px 15px;
}
#footer .device {
  border: 2px solid #000;
  margin: 0 0 20px;
}
#footer .device li {
  float: left;
  width: 50%;
}
#footer .device li a {
  background: #fff;
  display: block;
  padding: 7px 0;
  text-decoration: none;
  text-align: center;
}
#footer .device li a.active {
  background: #000;
  color: #fff;
}
#footer .links {
  margin: 0 0 20px;
}
#footer .links li {}
#footer .links li a {
  color: #999;
  line-height: 1.8;
  text-decoration: underline;
}
#footer .links .links-01 {
  float: left;
  width: 65%;
}
#footer .links .links-02 {
  float: left;
  width: 35%;
}
#footer .logos {
  margin: 0 0 20px;
}
#footer .logos li {
  float: left;
  margin: 0 15px 0 0;
}


/* ------ ベース ------ */
#contents {
  margin-bottom: 10px;
  font-size: 12px;
  color: #222;

}
#contents a {
  text-decoration: underline;
}
.contents-inner {
  padding: 15px 15px 0;
}
.contents-inner *:first-child {
  margin-top: 0;
}

.top-modal-box .contents-inner {
  margin: 13px;
  padding: 0;
}


/* ------ 見出し ------ */
.hd-type-01 {
  padding: 15px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: #d82035;
}
.hd-type-01.-left {
  text-align: left;
  position: relative;
}
.hd-type-01.-left .-link {
  padding: 5px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-decoration: none !important;
  border: 2px solid #fff;
  display: inline-block;
  position: absolute;
  right: 15px;
  margin-top: -18px;
  top: 50%;
}
.hd-type-01.-left .-link:before {
  content: '';
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background: url(/th/sp/img/offer/icon_folder.png) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  display: inline-block;
}
.hd-type-02 {
  margin-top: 20px;
  padding: 10px 15px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  background-color: #d82035;
}
.hd-type-02.-left {
  text-align: left;
  position: relative;
}
.hd-type-03 {
  margin-top: 40px;
  padding: 10px 15px;
  font-size: 14px;
  text-align: center;
  background-color: #ffdadf;
  border-top: 2px solid #222;
  border-bottom: 2px solid #222;
}
.hd-type-03 span {
  font-weight: bold;
}
.hd-type-03.-left {
  text-align: left;
  position: relative;
}
.hd-type-04 {
  margin-top: 15px;
  padding: 2px 0;
  line-height: 1em;
  border-left: 6px solid #d82035;
}
.hd-type-04 span {
  padding-left: 8px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2em;
  display: inline-block;
}
.hd-type-04.-large span {
  font-size: 14px;
  font-weight: bold;
}
.hd-type-04 a.-right {
  padding-left: 12px;
  color: #222;
  font-size: 10px;
  background: url(/th/sp/img/offer/icon_arrow_right_red.png) no-repeat left 1px;
  background-size: 8px 8px;
  float: right;
}
.hd-type-message {
  padding-left: 32px;
  background: url(/th/sp/img/common/icon_legend_unread.png) no-repeat 5px center;
  background-size: 27px;
}
.hd-type-message span {
  padding: 3px 0;
  font-size: 14px;
  font-weight: bold;
}
.hd-type-0n {
  margin-top: 20px;
  padding: 10px;
  font-size: 14px;
  text-align: left;
  background-color: #ffdadf;
}
.hd-type-0n span {
  padding-left: 8px;
  font-weight: bold;
  border-left: 6px solid #d82035;
  display: inline-block;
}
.hd-type-0n2 {
  line-height: 1.2;
  border-left: 6px solid #1bb3b1;
}
.hd-type-0n2 span {
  padding-left: 8px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
}
.hd-type-05 {
  margin-top: 5px;
}
.hd-type-05 span {
  font-size: 12px;
  font-weight: bold;
  display: block;
  text-indent: -11px;
  margin-left: 11px;
}
.hd-type-05.-large span {
  font-size:14px;
}
.hd-type-05 span:before {
  margin: 0 6px 0 0;
  width: 5px;
  height: 5px;
  content:'';
  background-color: #bbb;
  vertical-align: middle;
  display:inline-block;
}
.hd-type-06 {
  padding: 12px 15px;
  font-size: 14px;
  background-color: #eee;
  position: relative;
  line-height: 1;
}
.hd-type-06 span {
  font-weight: bold;
}
.hd-type-06 .-link {
  padding: 5px;
  position: absolute;
  right: 7px;
  margin-top: -17px;
  top: 50%;
}
.hd-type-0n3 {
  margin-top: 20px;
  padding: 8px 0px 0px 0px;
  font-size: 14px;
  text-align: left;
}
.hd-type-0n3 span {
  padding-left: 8px;
  font-weight: bold;
  border-left: 6px solid #d82035;
  display: inline-block;
}

/* ------ テキスト ------ */
.fcR {
  color: #d82035;
}
.fcGl {
  color: #555;
}
.fwB {
  font-weight: bold;
}
.taL {
  text-align: left !important;
}
.taC {
  text-align: center !important;
}
.taR {
  text-align: right !important;
}
.job-search-text {
  margin-top: 10px;
  color: #d82035;
}
.job-search-text b {
  font-weight: bold;
}
.bgB {
  font-weight: inherit;
  background-color: #c7eded !important;
}
.large-text {
  font-size: 14px;
  text-align: center;
}
.largest-text{
  font-size:16px;
}
.small-text {
  font-size: 10px;
}
.text-block {
  margin-top: 10px;
}
.explanation-text {
  font-size: 14px;
  line-height: 1.8em;
}
.ellipsis-text{
  max-height: 3em;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#job-span.job-search-text,
#bus-span.job-search-text,
#place-span.job-search-text,
#pr-span.job-search-text,
#type-span.job-search-text{
  max-height: 3em;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.-caption {
  padding: 10px 15px 5px;
  font-size: 10px;
}
.bg-type01 {
  padding: 5px;
}
.bg-type01.-gray {
  background-color: #eee;
}
.bg-type01.-blue {
  background-color: #e8f7f7;
}
.bg-type01.-orange {
  background-color: #ffeddd;
}
.bg-type01.-wide {
  padding: 10px;
}
.bg-stripe.-red {
  padding: 15px;
  background: url(/th/sp/img/common/bg_stripe_red.png) repeat left top;
}
.bg-stripe.-gray {
  margin-top: 10px;
  text-align: center;
  background: url(/th/sp/img/common/bg_stripe_gray.png) repeat top left;
}
.bg-stripe.-gray p {
  padding: 15px;
}


.bg-blue-box {
  padding: 10px;
  background: #e8f7f7;
  font-size: 12px;
}
.bg-blue-box dt {
  font-weight: bold;
}
/* ------ リンク ------ */
.link-type-01 {
  text-align: left;
}
.link-type-01 a {
  padding-left: 12px;
  color: #222;
  background: url(/th/sp/img/offer/icon_arrow_right_red.png) no-repeat left 5px;
  background-size: 8px 8px;
  display: inline-block;
}

.link-type-01.large-text a {
  background: url(/th/sp/img/offer/icon_arrow_right_red.png) no-repeat left 6px;
  background-size: 8px 8px;
}
.link-type-01.inline-link a{
  font-size: 80%;
  text-decoration: none!important;
}
.link-type-01.inline-link a span{
  font-size: 125%;
  text-decoration: underline;
}
.link-type-01.inline-link.unlink a{
  pointer-events: none;
}
.link-type-01.inline-link.unlink a span{
  text-decoration: none;
}
.link-type-02 {
  text-align: left;
}
.link-type-02 a {
  padding-left: 12px;
  font-size: 14px;
  color: #222;
  background: url(/th/sp/img/offer/icon_arrow_left_red.png) no-repeat left 5px;
  background-size: 8px 8px;
  display: inline-block;
}
.link-type-top {
  float: left;
}

.link-type-03 {
  padding: 15px;
  background-color: #d82035;
  text-align: left;
}
.link-type-03 a {
  padding-left: 12px;
  font-size: 14px;
  color: #fff;
  background: url(/th/sp/img/offer/icon_arrow_right_white.png) no-repeat left 5px;
  background-size: 8px 8px;
  display: inline-block;
}

.link-type-04 a {
  padding: 15px 0 15px 13px;
  background-color: #eee;
  text-align: left;
  display: block;
}
.link-type-04 a span {
  padding-left: 15px;
  font-size: 12px;
  color: #222;
  text-decoration: none !important;
  background: url(/th/sp/img/offer/icon_arrow_left_black.png) no-repeat left 5px;
  background-size: 7px 8px;
  display: inline-block;
}

.link-type-plus,
.link-type-minus {
  margin-top: 5px;
  text-align: right;
}
.link-type-plus span {
  padding-left: 18px;
  color: #222;
  text-decoration: underline;
  background: url(/th/sp/img/offer/icon_plus.png) no-repeat left 2px;
  background-size: 14px 14px;
  display: inline-block;
}

.link-type-minus span {
  padding-left: 18px;
  color: #222;
  text-decoration: underline;
  background: url(/th/sp/img/offer/icon_minus.png) no-repeat left 2px;
  background-size: 14px 14px;
  display: inline-block;
}


/* ------ ボタン ------ */
.link-button {
  margin-top: 10px;
  padding: 12px 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.7em;
  text-decoration: none !important;
  text-align: center;
  border-radius: 3px;
  display: block;
  position: relative;
}
.link-button.-left {
  padding-left: 15px;
  text-align: left;
}
.link-button.-type01 {
  color: #fff;
  background: -webkit-linear-gradient(top, rgba(92,92,92,1) 0%, rgba(92,92,92,1) 50%, rgba(51,51,51,1) 51%, rgba(51,51,51,1) 100%);
  background: linear-gradient(to bottom, rgba(92,92,92,1) 0%, rgba(92,92,92,1) 50%, rgba(51,51,51,1) 51%, rgba(51,51,51,1) 100%);
}
.link-button.-type02 {
  color: #fff;
  text-decoration: none;
  background: -webkit-linear-gradient(top, rgba(240,64,110,1) 0%, rgba(240,64,110,1) 50%, rgba(237,10,89,1) 51%, rgba(237,10,89,1) 100%);
  background: linear-gradient(to bottom, rgba(240,64,110,1) 0%, rgba(240,64,110,1) 50%, rgba(237,10,89,1) 51%, rgba(237,10,89,1) 100%);
}
.link-button.-type02 span{
  display: block;
  margin-top:5px;
  margin-left: 0.5em;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.5em;
}
.link-button.-type02.-form-address{
  margin-left:30%;
  width:30%;
  padding: 8px 0;
}
.link-button.-type02.-pr {
  padding: 8px 0;
}
.link-button.-type02.-pr:before {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  content: '';
  background: url(/th/sp/img/offer/icon_pr.png) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  display: inline-block;
}
.link-button.-type02.-login {
  padding: 12px 0 11px;
  font-size: 16px;
  font-weight: normal;
}
.link-button.-type02.-login:before {
  margin: -2px 5px 0 0;
  width: 16px;
  height: 13.5px;
  content: '';
  background: url(/th/sp/img/offer/icon_login_wt.png) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  display: inline-block;
}
.link-button.-type02.-regist {
  background: -webkit-linear-gradient(top, rgba(73,194,193,1) 0%, rgba(73,194,193,1) 50%, rgba(27,179,177,1) 51%, rgba(27,179,177,1) 100%);
  background: linear-gradient(to bottom, rgba(73,194,193,1) 0%, rgba(73,194,193,1) 50%, rgba(27,179,177,1) 51%, rgba(27,179,177,1) 100%);
}
.link-button.-type02.-regist:before {
  margin: -2px 5px 0 0;
  width: 20px;
  height: 20px;
  content: '';
  background: url(/th/sp/img/offer/icon_regist.png) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  display: inline-block;
}
.link-button.-type03 {
  color: #fff;
  background: #bbb;
}
.link-button.-type04 {
  padding: 16px 30px 16px 15px;
  font-size: 14px;
  color: #222;
  line-height: 1em;
  border: 2px solid #222;
  border-radius: 0;
  background: #fff;
}
@media only screen and (max-width: 374px) {
  .link-button.-type04 {
    padding: 16px 30px 16px 10px;
  }
}
.link-button.-type04.-middle {
  padding: 10px 20px 9px 15px;
  font-size: 12px;
}
.link-button.-type04.-narrow {
  width:67%;
}
@media only screen and (max-width: 374px) {
  .link-button.-type04.-narrow {
    font-size: 12px;
  }
}
.link-button.-type04:after {
  margin-left: 5px;
  width: 10px;
  height: 10px;
  content: '';
  background: url(/th/sp/img/offer/icon_arrow_right_black.png) no-repeat left top;
  background-size: contain;
  display: block;
  position: absolute;
  right: 10px;
  margin-top: -5px;
  top: 50%;
}
.link-button.-type05 {
  padding: 15px 45px 15px 15px;
  font-size: 14px;
  color: #222;
  text-align: left;
  border: 2px solid #222;
  border-radius: 0;
  background: #fff;
}
.link-button.-type05:after {
  content: '';
  width: 22px;
  height: 16px;
  background: url(/th/sp/img/offer/icon_arrow_bottom_black.png) no-repeat left top;
  background-size: contain;
  display: block;
  position: absolute;
  right: 15px;
  margin-top: -8px;
  top: 50%;
}
.input-col-multi .link-button.-type05:after {
  content: '';
  width: 18px;
  height: 13px;
  background: url(/th/sp/img/offer/icon_arrow_bottom_black.png) no-repeat left top;
  background-size: contain;
  display: block;
  position: absolute;
  right: 10px;
  margin-top: -8px;
  top: 50%;
}

.link-button.-type05.select-type-01 {
  border: none;
}
.link-button.-type05.select-type-01 select {
  border: 2px solid #222;
}
.link-button.-type06 {
  color: #fff;
  text-decoration: none;
  background: -webkit-linear-gradient(top, rgba(73,194,193,1) 0%, rgba(73,194,193,1) 50%, rgba(27,179,177,1) 51%, rgba(27,179,177,1) 100%);
  background: linear-gradient(to bottom, rgba(73,194,193,1) 0%, rgba(73,194,193,1) 50%, rgba(27,179,177,1) 51%, rgba(27,179,177,1) 100%);
}
.link-button.-type06.-regist {
  padding: 12px 0 11px;
  font-size: 16px;
  font-weight: normal;
}
.link-button.-type06.-regist:before {
  margin: -2px 5px 0 0;
  width: 20px;
  height: 20px;
  content: '';
  background: url(/th/sp/img/offer/icon_regist.png) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  display: inline-block;
}
.link-button.-line2 {
  padding: 6px 0;
}
.link-button.-middle {
  padding: 10px 20px 9px 10px;
  line-height: 1.6em;
}
.link-button.-middle:after {
  right: 10px;
}
.link-button.-middle.-type05:after {
  width: 18px;
  height: 14px;
  margin-top: -7px;
}
.link-button.-middle.-type05 select {
  padding: 8px 30px 8px 10px
}
.link-button.-middle.select-type-01 {
  padding: 0;
}
.link-button.-middle.select-type-01 select {
  height: 42px;
  padding: 8px 30px 8px 10px;
  line-height: 1.7;
}
.link-button.-small {
  padding: 9px 10px;
  line-height: 1em;
  margin-top: -15px;
}
.link-button.-right {
  margin-left: auto;
}
.link-button.-search {
  margin-top: 0;
  padding: 11px 0;
  color: #fff;
  font-size: 14px;
  border-radius: 0;
  background: -webkit-linear-gradient(top, rgba(231,64,82,1) 0%, rgba(231,64,82,1) 50%, rgba(216,33,53,1) 51%, rgba(216,33,53,1) 100%);
  background: linear-gradient(to bottom, rgba(231,64,82,1) 0%, rgba(231,64,82,1) 50%, rgba(216,33,53,1) 51%, rgba(216,33,53,1) 100%);
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .3);
  -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .3);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .3);
}
.link-button.-search:before {
  margin-right: 5px;
  width: 24px;
  height: 24px;
  content: '';
  background: url(/th/sp/img/offer/icon_search.png) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  display: inline-block;
}
.link-button.-more {
  margin-top: 10px;
  padding: 11px 0;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 0;
  background-color: #999;
}
.link-button.-more:after {
  margin-left: 5px;
  width: 24px;
  height: 24px;
  content: '';
  background: url(/th/sp/img/offer/icon_arrow_bottom_white.png) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  display: inline-block;
}

.link-button.-close {
  margin: 10px -15px -15px;
  padding: 11px 0;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 0;
  background-color: #999;
}
.link-button.-close:after {
  margin-left: 5px;
  width: 24px;
  height: 24px;
  content: '';
  background: url(/th/sp/img/offer/icon_arrow_top_white.png) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  display: inline-block;
}
.btn-regist a,
.btn-login a {
  color: #fff;
  display: block;
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
.btn-regist {
  background-color: #1bb3b1;
  background-image: -webkit-linear-gradient(bottom, rgba(255,255,255,0), rgba(255,255,255,.2), rgba(255,255,255,0) 50%, rgba(255,255,255,.2) 50%);
  background-image: -moz-linear-gradient(bottom, rgba(255,255,255,0), rgba(255,255,255,.2), rgba(255,255,255,0) 50%, rgba(255,255,255,.2) 50%);
  background-image: -o-linear-gradient(bottom, rgba(255,255,255,0), rgba(255,255,255,.2), rgba(255,255,255,0) 50%, rgba(255,255,255,.2) 50%);
  background-image: -ms-linear-gradient(bottom, rgba(255,255,255,0), rgba(255,255,255,.2), rgba(255,255,255,0) 50%, rgba(255,255,255,.2) 50%);
  background-image: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,.2), rgba(255,255,255,0) 50%, rgba(255,255,255,.2) 50%);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.btn-regist a span {
  background: url(/th/sp/img/top/icn_new.png) no-repeat left center;
  -webkit-background-size: 14px 15px;
  background-size: 14px 15px;
  display: inline-block;
  padding: 0 0 0 20px;
}
.btn-login {
  background-color: #ef406d;
  background-image: -webkit-linear-gradient(top, rgba(237,10,89,0), #ed0a59, rgba(237,10,89,0) 50%, #ed0a59 50%);
  background-image: -moz-linear-gradient(top, rgba(237,10,89,0), #ed0a59, rgba(237,10,89,0) 50%, #ed0a59 50%);
  background-image: -o-linear-gradient(top, rgba(237,10,89,0), #ed0a59, rgba(237,10,89,0) 50%, #ed0a59 50%);
  background-image: -ms-linear-gradient(top, rgba(237,10,89,0), #ed0a59, rgba(237,10,89,0) 50%, #ed0a59 50%);
  background-image: linear-gradient(to bottom, rgba(237,10,89,0), #ed0a59, rgba(237,10,89,0) 50%, #ed0a59 50%);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.btn-login a span {
  background: url(/th/sp/img/top/icn_login_wh.png) no-repeat left center;
  -webkit-background-size: 14px 19px;
  background-size: 14px 19px;
  display: inline-block;
  padding: 0 0 0 20px;
}
/* ------ カラム ------ */
.col-type-01 {
}
.col-type-01:after {
  content: '';
  clear: both;
  display: block;
}
.col-type-01 > .-block {
  float: right;
}
.col-type-01 > .-block:first-child {
  font-size: 12px;
  float: left;
}
.col-type-01 > .-block:nth-child(n + 3) {
  margin-top: 10px;
}
.col-type-01 > .-block:nth-child(2n + 3) {
  float: left;
}
.col-type-02 {
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 2px solid #bbb;
  border-bottom: 2px solid #bbb;
}
.fixed-bottom-area {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.fixed-bottom-area.is-fixed {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 200;
}
.col-type-02:after {
  content: '';
  clear: both;
  display: block;
}
.col-type-02 > .-block {
  float: right;
}
.col-type-02 > .-block:first-child {
  float: left;
}
.col-type-02 > .-block .link-button {
  margin-top: 0;
}


/* ------ 入力系 ------ */
input[type='text']:focus,
input[type='password']:focus,
input[type='email']:focus,
input[type='tel']:focus {
  outline: 0!important;
  -webkit-box-shadow: 0 0 5px 0 rgba(216,32,53,0.8)!important;
  -moz-box-shadow: 0 0 5px 0 rgba(216,32,53,0.8)!important;
  box-shadow: 0 0 5px 0 rgba(216,32,53,0.8)!important;
}
textarea.text-type-01 {
  font-size: 14px;
}
textarea:focus {
  outline: 0!important;
  -webkit-box-shadow: 0 0 5px 0 rgba(216,32,53,0.8)!important;
  -moz-box-shadow: 0 0 5px 0 rgba(216,32,53,0.8)!important;
  box-shadow: 0 0 5px 0 rgba(216,32,53,0.8)!important;
}
.input-type-01[type='text'],
.input-type-01[type='password'],
.input-type-01[type='email'],
.input-type-01[type='tel'] {
  margin-top: 10px;
  padding: 0 15px;
  width: 100%;
  height: 49px;
  font-size: 14px;
  border: 2px solid #222;
  -webkit-box-shadow: inset 2px 2px 5px rgba(0,0,0,.1);
  -moz-box-shadow: inset 2px 2px 5px rgba(0,0,0,.1);
  box-shadow: inset 2px 2px 5px rgba(0,0,0,.1);
  box-sizing: border-box;
}
.input-col-02 {
  margin-top: 10px;
  width: 100%;
  display: table;
  table-layout: fixed;
}
.input-col-02 .-block {
  vertical-align: middle;
  display: table-cell;
}
.input-col-02 .-block:last-child {
  padding: 0 10px;
}
.input-col-02 .-block .input-type-01,
.input-col-02 .-block .link-button {
  margin-top: 0;
}
.input-col-03 {
  margin-top: 10px;
  width: 100%;
  display: table;
  table-layout: fixed;
}
.input-col-03 .-block {
  vertical-align: middle;
  display: table-cell;
  font-size: 14px;
}
.input-col-03 .-block .input-type-01,
.input-col-03 .-block .link-button {
  margin-top: 0;
}
.input-col-multi {
  margin-top: 10px;
  width: 100%;
  display: table;
  table-layout: fixed;
}
.input-col-multi .-block {
  vertical-align: middle;
  display: table-cell;
  font-size: 14px;
}
.input-col-multi .-block:first-child {
  padding-left: 0 !important;
}
.input-col-multi .-block.-text {
  padding: 0 5px;
  text-align: center;
}
.input-col-multi .-block .input-type-01,
.input-col-multi .-block .link-button {
  margin-top: 0;
}
.select-type-01 {
  margin-top: 10px;
  padding: 0 !important;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.select-type-01 select {
  padding: 0 45px 0 15px;
  width: 100%;
  color: #222;
  height: 49px;
  font-size: 14px;
  font-family: '游ゴシック', 'YuGothic', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Helvetica, Arial, Verdana, sans-serif;
  font-weight: bold;
  vertical-align: middle;
  background: transparent;
  border: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  position: relative;
  z-index: 15;
}
.link-button.-type05.select-type-01 select {
  font-size: 12px;
}
.-year .link-button.-type05.select-type-01 select {
  padding: 0 30px 0 10px;
}
.top-modal-box .check-type-01 {
  margin: 10px 0 0;
  border: 2px solid #222;
}
.check-type-01 {
  margin: 10px 0 0;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  border-left: 2px solid #222;
}
.check-type-01 li {
  border-bottom: 2px solid #222;
}
.check-type-01 li input[type='checkbox'] {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.check-type-01 li label {
  padding: 15px 15px 15px 40px;
  font-size: 12px;
  font-weight: bold;
  display: block;
}
.check-type-01 li label.check-all {
  font-size: 14px;
}
.check-type-01 li input[type='checkbox'] ~ label {
  line-height: 1em;
  background: url(/th/sp/img/offer/icon_check.png) no-repeat 10px 48%;
  background-size: 20px auto;
}
.check-type-01 li input[type='checkbox']:checked ~ label {
  background: url(/th/sp/img/offer/icon_check_on.png) no-repeat 10px 48%;
  background-size: 20px auto;
}
.check-type-01 li input[type='checkbox']:disabled ~ label {
  background: url(/th/sp/img/offer/icon_check.png) no-repeat 10px 48% #CCC;
  background-size: 20px auto;
}
.ui-check-01 {
}
.ui-check-01.-center {
  text-align: center;
}
.ui-check-01 input[type='checkbox'] {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.ui-check-01 label {
  padding: 5px 0 5px 30px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
}
.ui-check-01 input[type='checkbox'] ~ label {
  line-height: 1em;
  background: url(/th/sp/img/offer/icon_check.png) no-repeat 0 48%;
  background-size: 20px auto;
}
.ui-check-01 input[type='checkbox']:checked ~ label {
  background: url(/th/sp/img/offer/icon_check_on.png) no-repeat 0 48%;
  background-size: 20px auto;
}
.radio-type-01 {
}
.radio-type-01 li {
  margin-right: 10px;
  display: inline-block;
}
.radio-type-01 li:last-child {
  margin-right: 0;
}
.radio-type-01 li input[type='radio'] {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.radio-type-01 li label {
  padding: 8px 0 8px 22px;
  font-weight: bold;
  display: inline-block;
}
.radio-type-01 li input[type='radio'] ~ label {
  line-height: 1em;
  background: url(/th/sp/img/offer/icon_radio.png) no-repeat 0 48%;
  background-size: 20px auto;
}
.radio-type-01 li input[type='radio']:checked ~ label {
  background: url(/th/sp/img/offer/icon_radio_on.png) no-repeat 0 48%;
  background-size: 20px auto;
}
.radio-type-01.-portrait li {
  margin-right: 0;
  display: block;
}
.radio-type-01.-portrait li label {
  padding: 10px 0 10px 25px;
  font-size: 12px;
}
.accordion-area {
  margin-top: 15px;
}
.accordion-area > .accordion-title {
  padding: 18px 15px;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  line-height: 1em;
  border: 2px solid #222;
  position: relative;
  z-index: 10;
}
.accordion-area > .accordion-title:after {
  content: '';
  width: 24px;
  height: 24px;
  background: url(/th/sp/img/offer/icon_acc_open.png) no-repeat left top;
  background-size: contain;
  display: block;
  position: absolute;
  right: 15px;
  margin-top: -12px;
  top: 50%;
  z-index: 20;
}
.accordion-area > .accordion-title.js-active:after {
  background: url(/th/sp/img/offer/icon_acc_close.png) no-repeat left top;
  background-size: contain;
}
.accordion-area > .accordion-title + .accordion-inner .check-type-01 {
  margin-top: -2px;
}
.accordion-area > .accordion-title + .accordion-inner .contents-inner {
  padding-bottom: 15px;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  border-left: 2px solid #222;
}
.accordion-area > .accordion-inner {
  display: none;
}
.text-type-01 {
  padding: 10px;
  width: 100%;
  color: #333;
  font-size: 12px;
  font-family: '游ゴシック','YuGothic', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Helvetica, Arial, Verdana, sans-serif;
  border: 2px solid #222;
  background-color: #fff;
  -webkit-box-shadow: inset 2px 2px 5px rgba(0,0,0,.1);
  -moz-box-shadow: inset 2px 2px 5px rgba(0,0,0,.1);
  box-shadow: inset 2px 2px 5px rgba(0,0,0,.1);
  box-sizing: border-box;
  resize: vertical;
}
.text-type-01.-small {
  border: 1px solid #222;
}


/* ------ リスト ------ */
.list-type-01 {
  margin-top: 10px;
}
.list-type-01 li {
  padding-left: 1em;
  text-indent: -1em;
}


/* ------ テーブル ------ */
.table-type-01 {
  margin-top: 15px;
  width: 100%;
  border: 2px solid #bbb;
}
.table-type-01 th,
.table-type-01 td {
  padding: 10px;
  border: 2px solid #bbb;
  vertical-align: top;
  text-align: left;
}
.table-type-01 th {
  font-weight: bold;
  background-color: #eee;
  white-space: nowrap;
}
.table-type-01 td p.text-ellipsis {
  max-height: 3em;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.table-type-01 td p.text-ellipsis-02 {
  max-height: 3em;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.table-type-01 .icon-list {
}
.table-type-01 .icon-list img {
  margin: 2px 0 2px 5px;
  height: 18px;
  vertical-align: middle;
  display: inline-block;
}


/* ------ 区切り線 ------ */
.hr-type-01 {
  margin: 15px auto 0;
  height: 0;
  border: none;
  border-top: 2px solid #bbb;
}


/* ------ アイコン ------ */
.icon-type-01 {
  margin-top: 10px;
  letter-spacing: -.3em;
}
.icon-type-01 li {
  margin: 0 5px 5px 0;
  padding: 1px 6px;
  color: #1bb3b1;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  letter-spacing: normal;
  border: 2px solid #1bb3b1;
  border-radius: 3px;
  vertical-align: top;
  display: inline-block;
}
.icon-type-01 li:last-child {
  margin-right: 0;
}

.icon-type-required {
  margin: -4px 0 0 5px;
  padding: 3px 5px 1px!important;
  font-size: 10px !important;
  color: #fff;
  background-color: #d82035;
  vertical-align: middle;
}

.icon-type-recommend {
  margin: -4px 0 0 5px;
  padding: 2px 5px!important;
  font-size: 10px !important;
  font-weight: bold;
  color: #fff;
  background-color: #36b1df;
  vertical-align: middle;
  border-radius: 10px;
}

/* ------ ユニーク ------ */
.search-condition-title {
  border-top: 3px solid #d82035;
  background-color: #ffdadf;
}
.search-condition-title a {
  padding: 15px 35px 15px 15px;
  color: #222;
  font-size: 14px;
  text-decoration: none !important;
  overflow-wrap: break-word;
  display: block;
  position: relative;
}
.search-condition-title a:after {
  width: 10px;
  height: 10px;
  content: '';
  background: url(/th/sp/img/offer/icon_arrow_right_red.png) no-repeat left top;
  background-size: contain;
  display: block;
  position: absolute;
  right: 10px;
  margin-top: -5px;
  top: 50%;
}
.search-condition {
  padding: 10px 15px 0;
  color: #555;
}
.search-condition span {
  font-size: 10px;
  max-height: 3em;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.company-area {
  margin-top: 30px;
  padding: 15px;
  border-top: 3px solid #d82035;
  background-color: #ffdadf;
}
.no-top {
  margin-top: 0;
  border-top: none;
}
.company-area .company-name {
  font-size: 10px;
  font-weight: bold;
  color: #555;
}
.company-area .company-title {
  font-size: 14px;
  font-weight: bold;
  overflow-wrap: break-word;
}
.company-area .company-title a {
  color: #222;
  display: inline;
}
.company-area .company-title img {
  margin-left: 5px;
  height: 18px;
  width: 18px;
  vertical-align: top;
  display: inline-block;
}
.company-area .company-day {
  margin-top: 5px;
}
.company-area .company-day:after {
  content: '';
  clear: both;
  display: block;
}
.company-area .company-day .icon {
  line-height: 1;
  float: left;
}
.company-area .company-day .icon img {
  margin-right: 5px;
  height: 18px;
  vertical-align: middle;
  display: inline-block;
}
.company-area .company-day .icon .new-icon {
  width: calc(18px * 70 / 38);
}
.company-area .company-day .icon .end-icon {
  width: calc(18px * 184 / 38);
}
.company-area .company-day .icon .simple-interview-icon {
  width: calc(18px * 155 / 38);
}
.company-area .company-day .limit {
  padding-top: 5px;
  font-size: 10px;
  color: #555;
  text-align: right;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  float: right;
}
.company-lead {
  max-height: 3em;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: -.02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.company-intro {
  margin-top: 15px;
  width: 100%;
  display: table;
  table-layout: fixed;
}
.company-intro > div {
  width: 100%;
  vertical-align: top;
  display: table-cell;
}
.company-intro > .photo {
  width: 114px;
}
.company-intro.-offer > .photo {
  height: 90px;
}
.company-intro.-company > .photo {
  height: 130px;
}
.viewpoint {
  display: table;
  margin-top: 15px;
  padding: 2px 0;
  table-layout: fixed;
  width: 100%;
}
.viewpoint.-bg-pink {
  background-color: #ffdadf;
}
.viewpoint.-bg-blue {
  background-color: #e8f7f7;
}
.viewpoint div {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.viewpoint .left {
  width: 33%;
}
.viewpoint .left img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 55px;
  height: 55px;
}
.viewpoint .right p {
  display: -webkit-box;
  font-size: 10px;
  overflow: hidden;
  padding: 0 10px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.company-intro.-feature > .photo {
  width: 165px;
}
.company-intro > .photo p img{
  max-width: 100%;
  height: auto;
}
.company-intro > .photo + .text {
  padding-left: 15px;
}
.company-intro > .interest {
  padding: 0;
  width: 54%;
}
.company-intro > .interest .link-button {
  margin-top: 10px;
}
.company-intro > .text > .lead-text {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  padding-right: 15px;
}
.appeal-point {
  margin-top: 10px;
}
.appeal-point:after {
  content: '';
  clear: both;
  display: block;
}
.appeal-point li {
  margin: 0 1% 1% 0;
  padding: 1px 0;
  width: 24%;
  color: #ececec;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  background-color: #bbb;
  border-radius: 3px;
  float: left;
  min-width: 70px;
  white-space: nowrap;
}
@media only screen and (min-width:321px){
  .appeal-point li:nth-child(4n) {
    margin-right: 0;
    width: 25%;
  }
}
@media only screen and (max-width:320px){
  .appeal-point li {
    width: 32%;
  }
  .appeal-point li:nth-child(3n) {
    margin-right: 0;
    width: 33%;
  }
}
.appeal-point li.on {
  color: #fff;
  background-color: #1bb3b1;
}
.contents-inner .appeal-point02 {
  margin-top: 2%;
}
.appeal-point02:after {
  content: '';
  clear: both;
  display: block;
}
.appeal-point02 li {
  margin: 0 1% 2% 0;
  padding: 1px 6px;
  color: #1bb3b1;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  border: 2px solid #1bb3b1;
  border-radius: 3px;
  float: left;
}
.pager-result {
  margin-top: 15px;
  font-size: 10px;
  color: #555;
  text-align: center;
}
.pager-result + .pager {
  margin-top: 5px;
}
.pager {
  margin-top: 15px;
  text-align: center;
  letter-spacing: -.2em;
}
.pager li {
  margin: 0 5px;
  display: inline-block;
}
.pager li a {
  width: 25px;
  font-weight: bold;
  line-height: 25px;
  color: #222;
  text-align: center;
  letter-spacing: normal;
  text-decoration: none !important;
  border: 2px solid #222;
  display: inline-block;
}
.pager li.act a {
  color: #fff;
  background-color: #222;
}
.search-result .search-result-inner {
  margin-top: 25px;
  padding: 15px;
  width: 100%;
  background-color: rgba(0, 0, 0, .6);
  display: table;
}
.search-result .search-result-inner .result,
.search-result .search-result-inner .btn {
  vertical-align: middle;
  display: table-cell;
}
.search-result .search-result-inner .result {
  width: 40%;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.search-result .search-result-inner .result span {
  padding-right: 5px;
  font-size: 20px;
  font-weight: bold;
}
.search-result .search-result-inner .btn {
  width: 60%;
}
.view-point {
  margin-top: 15px;
  padding: 15px;
  background: #ffdadf;
  border-top: 2px solid #bbb;
}
.view-point dl dt {
  padding-bottom: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  background: url(/th/sp/img/offer/view_point_line.png) repeat-x bottom;
  background-size: 6px;
}
.view-point dl dt:before {
  content: '';
  margin-bottom: 4px;
  height: 15px;
  background: url(/th/sp/img/offer/ttl_view_point.png) no-repeat center;
  background-size: contain;
  display: block;
}
.view-point dl dd {
  margin-top: 15px;
}
.search-keywords {
  margin-top: 30px;
  padding: 5px 15px 15px;
  background-color: #eee;
  overflow: hidden;
}
.search-keywords .search-andor {
  margin: 10px 0;
  width: 100%;
  display: table;
  table-layout: fixed;
}
.search-keywords .search-andor > .-block {
  padding: 0 0 0 5px;
  vertical-align: middle;
  display: table-cell;
}
.search-keywords .search-andor > .-block:first-child {
  padding: 0 5px 0 0;
}
.search-keywords .search-andor > .-block .select-type-01 {
  margin-top: 0;
}
.search-keywords .link-button.-search {
  margin-top: 10px;
}
.message-legend {
  margin-top: 15px;
  width: 100%;
  background-color: #eee;
  display: table;
}
.message-legend > p {
  padding: 5px 0;
  width: 25%;
  text-align: center;
  vertical-align: top;
  display: table-cell;
}
.message-legend > p img {
  width: 40px;
}
.message-legend > p span {
  font-size: 10px;
  display: block;
}
.message-text {
  margin-top: 15px;
  padding: 15px;
  background-color: #eee;
  word-wrap: break-word;
}
.message-text .message-head {
  margin-bottom: 4px;
  padding: 15px;
  font-size: 14px;
  background-color: #fff;
}
.message-text .message-head dt {
  color: #222;
  font-weight: bold;
}
.message-text .message-head dd {
  color: #999;
  font-size: 10px;
}
.message-text .message-head > dd:nth-of-type(1) {
  margin-top: 5px;
}
.message-text .message-body {
  padding: 15px;
  color: #222;
  background-color: #fff;
}
.message-text .message-body a {
  word-break: break-word;
}
.table-message {
  margin-top: 15px;
  width: 100%;
}
.table-message th,
.table-message td {
  border: 2px solid #eee;
}
.table-message th a,
.table-message td a {
  display:block;
  padding:15px 0;
  text-decoration: none!important;
}
.table-message tr.unread {
  background-color: #eefbff;
}
.table-message tr.unread .detail .message-detail dt {
  font-weight: bold;
}
.table-message tr.refusal {
  background-color: #bbb;
}
.table-message.-check {
  table-layout: fixed;
}
.table-message.-check th {
  padding:10px 0;
  color: #222;
  font-size: 12px;
  text-align: center;
  background-color: #eee;
}
.table-message.-check th.th-hide {
  width: 45px;
}
.table-message.-check td.message-check {
  padding: 0;
  text-align: center;
  vertical-align: middle;
}
.table-message.-check td.message-check .ui-check-01 label {
  padding: 20px;
  background-position: center center;
}
.message-list {
  display: table;
  table-layout: fixed;
}
.message-list .status,
.message-list .detail {
  vertical-align: top;
  display: table-cell;
}
.message-list .status {
  width: 70px;
  text-align: center;
}
.message-list .status img {
  width: 55px;
}
.message-list .detail {
  padding-right: 15px;
}
.message-list .detail .message-day {
  color: #999;
}
.message-list .detail .message-title a {
  display: block;
}
.message-list .detail .message-detail {
  color: #999;
  word-wrap: break-word;
}
.message-list .detail .message-detail dt {
  font-size: 14px;
  color: #333;
}
a .message-list .detail .message-detail dt {
  text-decoration: underline;
}
.unlink a .message-list .detail .message-detail dt {
  text-decoration: none;
}
.table-message.-detail .message-list .detail .message-detail dt {
  font-size:12px;
}
.table-message tr.unlink {
  background-color: #eee;
}
.table-message tr.unlink a {
  pointer-events: none;
}
.message-list .detail .message-detail dd span {
  color: #222;
  display: block;
}
.message-list .detail .message-detail dd p {
  max-height: 3em;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.message-list .job-interview-icon img {
  margin-top: 5px;
  height: 18px;
}
.ranking-area {
  margin-top: 15px;
}
.ranking-area li {
  padding: 15px 15px 15px 0;
  width: 100%;
  display: table;
  table-layout: fixed;
}
.ranking-area li:nth-child(odd) {
  background-color: #eee;
}
.ranking-area li .ranking-rank,
.ranking-area li .ranking-image,
.ranking-area li .ranking-company {
  vertical-align: top;
  display: table-cell;
}
.ranking-area li .ranking-rank {
  padding-top: 18px;
  width: 55px;
  font-weight: bold;
  text-align: center;
  background: url(/th/sp/img/offer/icon_rank_red.png) no-repeat center top;
  background-size: 35px auto;
}
.ranking-area li:nth-child(1) .ranking-rank {
  background-image: url(/th/sp/img/offer/icon_rank_gold.png);
}
.ranking-area li:nth-child(2) .ranking-rank {
  background-image: url(/th/sp/img/offer/icon_rank_silver.png);
}
.ranking-area li:nth-child(3) .ranking-rank {
  background-image: url(/th/sp/img/offer/icon_rank_bronze.png);
}
.ranking-area li .ranking-rank span {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}
.ranking-area li .ranking-rank span:after {
  margin: -2px 0 0 3px;
  content: '位';
  font-size: 12px;
  vertical-align: middle;
  display: inline-block;
}
.ranking-area li .ranking-image {
  width: 80px;
}
.ranking-area li .ranking-image img {
  width: 100%;
}
.ranking-area li .ranking-company {
  padding-left: 15px;
  word-wrap: break-word;
}
.ranking-area li .ranking-company dt a {
  font-size: 14px;
  text-decoration: underline;
  display: block;
}
.recommend-area {
  border-top: 2px solid #d82035;
  background-color: #f5f5f5;
}

.recommend-area h2 {
  padding: 15px;
  font-weight: bold;
  text-align: center;
}

.recommend-area .sp-slide ul {
  padding: 0 15px;
}
.recommend-area .sp-slide ul li {
  margin-right: 2%;
  width: 32%;
  font-size: 10px;
  float: left;
}
.recommend-area .sp-slide ul li a {
  text-decoration: none !important;
  display: block;
}
.recommend-area .sp-slide ul li .recom-text {
  display: -webkit-box;
  font-weight: bold;
  height: 3em;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.recommend-area .sp-slide ul li:last-child {
  margin-right: 0;
}
.recommend-area .sp-slides-container {
  padding: 15px 0;
  background-color: #fff;
}
.recommend-area .sp-buttons {
  padding-bottom: 15px;
}
#search-content {
  display: none;
}
#cate_bnr {
  margin:10px 0;
}
#cate_bnr img{
  width:100%;
}
.flow-nation {
}
.flow-nation ul {
  display: table;
  width: 100%;
}
.flow-nation ul li {
  width: 33%;
  display: table-cell;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
  background: #eee;
  position: relative;
}

.flow-nation ul li:nth-child(1) {
  z-index: 100;
}
.flow-nation ul li:nth-child(2) {
  z-index: 50;
}

.flow-nation ul li:nth-child(3) {
  z-index: 1;
}
.flow-nation ul li:not(:last-child){
  border-right: 2px solid #fff;
}
.flow-nation ul li.act {
  background: #ffdadf;
}
.flow-nation ul li:not(:last-child):after {
  content: '';
  display: block;
  margin-top: -10px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: #eee;
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: 1000;
}
.flow-nation ul li:not(:last-child):before {
  content: '';
  display: block;
  margin-top: -10px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: #fff;
  position: absolute;
  top: 50%;
  left: -webkit-calc(100% + 2px) ;
  left: (100% + 2px) ;
  z-index: 500;
}
.flow-nation ul li.act:not(:last-child):after {
  border-left-color: #ffdadf;
}
.box_center {
  text-align: center;
}
.border_red {
  margin-top: 15px;
  border-top: 2px solid #d82035;
}
.caption_black {
  padding: 33px 15px 0;
  color: #000000;
}
.caption_black p {
  max-height: 3em;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.caption_black2 {
  padding: 20px 0 5px;
  color: #000000;
}
.caption_black2 p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.table-alternately {
  margin-top: 15px;
  width: 100%;
  border: 2px solid #bbb;
}
.table-alternately td {
  background-color: #eee;
  border: 2px solid #bbb;
  font-weight: bold;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}
.table-alternately .odd {
  background-color: #fff;
}
.table-alternately td p.text-ellipsis{
  max-height: 3em;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.left_img {
  float: left;
  margin-right: 15px;
  width: 165px;
}
.offer-condition-name {
  background: #ffdadf;
}

.end-date {
  margin: 20px 0;
  padding: 10px 15px;
  font-size: 12px;
  background: #eee;
}

.end-date dt {
  font-weight: bold;
}

.blockonly_box {
  display: inline-block;
  word-break: break-word;
}

.bg-blue-box {
  padding: 10px;
  background: #e8f7f7;
  font-size: 12px;
}
.bg-blue-box dt {
  font-weight: bold;
}

.company-area .company-offer-title {
  font-size: 14px;
  font-weight: bold;
  overflow-wrap: break-word;
}

.withdrawal-link {
  pointer-events: none;
  opacity: .6;
}

.withdrawal-no-action {
  pointer-events: none;
  opacity: .6;
}

.withdrawal-sp-area .hr-type-02 {
  border-top: 3px solid #d82035;
  padding: 0;
}

/* ------ バリデーションエラー ------ */
.error-box {
  padding: 10px;
  background-color:#eee;
  word-break: break-word;
}
.error-box li.msg {
  color:#d82035;
}

/* ------ インプットエラー ------ */
.input-type-01[type='text'].err,
.input-type-01[type='tel'].err,
.input-type-01[type='email'].err,
.input-type-01[type='password'].err,
textarea.text-type-01.err,
.link-button.-type05.select-type-01.err,
ul.radio-type-01.err {
  background: #ffdadf!important;
}

/* ------ メッセージ ------ */
.message-box {
  font-size: 12px;
  font-weight: bold;
  margin: 10px auto;
  padding: 10px;
}
.message-box li.msg {
  font-weight: bold;
}

/* ------ 検索結果(SP版)・求人詳細(SP版)関連リンク ------ */
.related-area {
  padding: 15px 50px 15px 15px;
  background-color: #d82035;
  text-align: left;
  font-size: 13px;
  color: #fff;
  display: block;
  position: relative;
}
.related-title:after {
  width: 20px;
  height: 15px;
  content: '';
  background: url(/th/sp/img/common/btn_arrow_bottom_white.png) no-repeat left top;
  background-size: contain;
  display: block;
  position: absolute;
  right: 15px;
  margin-top: -8px;
  top: 50%;
}
.related-title.open:after {
  background: url(/th/sp/img/common/btn_arrow_top_white.png) no-repeat left top;
  background-size: contain;
}
.related-element {
  border-left: 2px solid #d82035;
  border-right: 2px solid #d82035;
  border-bottom: 2px solid #d82035;
}
.related-type {
  padding-left: 8px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2em;
  display: inline-block;
}
.related-link {
  padding: 5px 10px 0 0;
  display: inline-block;
}

/* ------ 面接対策 ------ */
.span-interview-selection-text {
  display:block;
  background-color: #e8f7f7;
  padding: 10px;
}
.span-interview-selection-symbol{
  display:block;
  padding:5px;
}
/* ------ メールアドレスバリデーションエラー内のリンク ------ */
.error-mailAddress a {
  text-decoration: underline;
}

/* ------ スカウト特典 ------ */
ul.scout-icon {
  margin-top: 2px;
}
ul.scout-icon > li {
  display: inline-block;
  margin: 2px 2px 0 0;
  padding: 1px 6px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  border-radius: 3px;
  background-color: #f89135;
}
.contents-inner ul.scout-icon > li:first-child {
  margin-top: 2px;
}
.view-point-yellow {
  background-color: #fffbdc;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 15px;
}
.view-point-yellow .scout-label {
  font-weight: bold;
  padding: 4px 4px 4px 30px;
  background: url(/th/sp/img/scout/scout-label.png) no-repeat top left 4px/contain;
  margin-bottom: 8px;
  font-size: 13px;
}
.view-point-yellow a {
  padding-left: 12px;
  color: #222;
  font-size: 10px;
  background: url(/th/sp/img/offer/icon_arrow_right_red.png) no-repeat left 4px;
  background-size: 8px 8px;
}

/* ------ 気になる ------ */
.review > .heart {
  width: 16px;
  height: 14px;
  margin-right: 10px;
  margin-bottom: 2px;
}
.link-button.review {
  border: 2px solid #D82035;
  border-radius: 3px;
  height: 14px;
  padding: 11px 0 15px;
}
.-type03.review > .heart {
  margin-right: 5px;
}
.link-button.-type03.review {
  border: none;
  height: 20px;
  padding: 13px 0 11px;
}
@media only screen and (max-width: 359px) {
  .-type03.review > .heart {
    width: 12px;
    height: 10.5px;
    margin-right: 3px;
  }
  .link-button.-type03.review {
    font-size: 11px;
  }
}
