@charset "utf-8";

/*----------------------------------------------------------------------------------------

	base-responsive.css

----------------------------------------------------------------------------------------*/


/* ヘッダー //
////////////////////////////////////////////////////////////////////*/

.header-wrap {
  border-top: solid 4px #222222;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .header-wrap {
    width: 100%;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
    position: fixed;
    z-index: 999;
  }
}

.header_inner-wrap {
  width: 1080px;
  margin: auto;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .header_inner-wrap {
    width: 100%;
    align-items: center;
    padding: 5px 10px;
    box-sizing: border-box;
    height: 55px;
  }
}

/* ロゴ・ディスクリプション */
.logo_desc-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo_desc-wrap .header_logo {
  width: 370px;
  margin-right: 35px;
}

@media screen and (max-width: 767px) {
  .logo_desc-wrap .header_logo {
    width: 240px;
    margin-left: 0px;
    margin-right: 5px;
  }
}

.logo_desc-wrap .header_logo img {
  width: 100%;
}

/* お問い合わせ関連（PCヘッダー右側） */
.contact-wrap {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  align-items: center;
}

.contact-wrap .tel-wrap .tel {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.2rem;
  line-height: 1;
}

.contact-wrap .tel-wrap .tel a {
  display: block;
  text-decoration: none;
  padding-bottom: 4px;
}

.contact-wrap .tel-wrap .time {
  list-style: none;
}

.contact-wrap .tel-wrap .time .list {
  font-size: 0.6rem;
  line-height: 1.2em;
}

.header-contact-btns {
  display: flex;
  margin-left: 20px;
}

.header-contact-btn+.header-contact-btn {
  margin-left: 5px;
}

.header-contact-btn__link {
  transition: opacity 0.3s;
}

.header-contact-btn__link:hover {
  opacity: 0.8;
}

.header-sns-icons {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.header-sns-icon {
  transition: opacity 0.3s;
  width: 32px;
}

.header-sns-icon:hover {
  opacity: 0.8;
}

.header-sns-icon+.header-sns-icon {
  margin-left: 12px;
}

/* スマホメニューボタン（スマホヘッダー右側） */
.nav_toggle>* {
  display: block;
  text-align: center;
}

.nav_toggle>.fa {
  font-size: 28px;
}

.nav_toggle>.text {
  font-size: 10px;
}

/* グローバルメニュー */
.header_g-menu {
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .header_g-menu {
    display: none;
    position: absolute;
    top: 55px;
    width: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    height: calc(100vh - 55px);
    background-color: #222;
  }
}

@media screen and (min-width: 768px) {
  .header_g-menu {
    height: 50px;
    background-color: #ebeef1;
    position: relative;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }

  .header_g-menu.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
  }
}

/* メニュー ///
---------------------------------------------- */
.g-menu {
  list-style: none;
  display: flex;
  max-width: 1080px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .g-menu {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .g-menu__item {
    border-left: 1px solid #fff;
  }

  .g-menu__item:last-of-type {
    border-right: 1px solid #fff;
  }
}

.g-menu__item--search>.dropDown-menu {
  display: block;
}

@media screen and (min-width: 768px) {
  .g-menu__item--search>.dropDown-menu {
    display: none;
  }
}

.g-menu__item--company .dropDown-menu__heading {
  width: 370px;
}

.g-menu__link {
  font-size: 0.7rem;
  text-decoration: none;
}

.g-menu__link:hover {
  background-color: #222;
  color: #fff;
}

.g-menu__link-current {
  background-color: #92c800;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .g-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .g-menu__link::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, 0.75);
  }
}

@media screen and (min-width: 768px) {
  .g-menu__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 204px;
    height: 100%;
    line-height: 50px;
    cursor: pointer;
  }

  .g-menu__link.-home {
    width: 53px;
    font-size: 0.8rem;
  }

  .g-menu__link.-current {
    background-color: #92c800;
    color: #fff;
  }

  .g-menu__link.-current:hover {
    background-color: #92c800;
  }
}

/* ドロップダウン ///
---------------------------------------------- */
@media screen and (max-width: 767px) {
  .dropDown>a::after {
    content: "\f196";
  }

  .dropDown>a.is-active {
    color: #fff;
  }

  .dropDown>a.is-active::after {
    content: "\f147";
  }
}

@media screen and (min-width: 768px) {
  .dropDown>a.is-active {
    background-color: #222;
    color: #fff;
  }
}

.dropDown-menu {
  display: none;
  background-color: #444;
}

@media screen and (max-width: 767px) {
  .g-menu__list--search>.dropDown-menu {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .dropDown-menu {
    width: 100%;
    padding: 40px 0;
    background-color: rgba(0, 0, 0, 0.85);
    position: absolute;
    left: 0;
  }
}

.dropDown-menu__contents {
  color: #fff;
  margin: 0 15px;
  padding-top: 15px;
}

.dropDown-menu__contents:last-of-type {
  padding-bottom: 15px;
}

.dropDown-menu__contents.-service {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.dropDown-menu__contents.-loan {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

@media screen and (min-width: 768px) {
  .dropDown-menu__contents {
    display: flex;
    align-items: center;
    width: 1080px;
    margin: 0 auto;
    padding: 0;
  }

  .dropDown-menu__contents:last-of-type {
    padding-bottom: 0;
  }

  .dropDown-menu__contents.-service {
    padding-bottom: 30px;
  }

  .dropDown-menu__contents.-loan {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .dropDown-menu__contents.-useful {
    padding-top: 30px;
  }
}

.dropDown-menu__heading {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 24px;
}

.dropDown-menu__heading::before {
  content: "";
  height: 24px;
  margin-right: 8px;
  border-right: 2px solid #92c800;
}

@media screen and (min-width: 768px) {
  .dropDown-menu__heading {
    width: 219px;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
  }

  .dropDown-menu__heading::before {
    height: 30px;
    border-right-width: 3px;
  }
}

.dropDown-menu .tri-icon>*::before {
  font-size: 13px;
}

.linkBoxes {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .linkBoxes {
    flex-wrap: nowrap;
  }
}

.linkBoxes__item {
  width: calc((100vw - 44px) / 2);
  max-width: 185px;
}

.linkBoxes__item:nth-of-type(2n) {
  margin-left: 14px;
}

.linkBoxes__item:nth-of-type(n+3) {
  margin-top: 14px;
}

@media screen and (min-width: 768px) {
  .linkBoxes__item {
    width: 200px;
    height: 150px;
    max-width: none;
  }

  .linkBoxes__item:nth-of-type(2n) {
    margin-left: 0;
  }

  .linkBoxes__item:nth-of-type(n+3) {
    margin-top: 0;
  }

  .linkBoxes__item+.linkBoxes__item {
    margin-left: 20px;
  }

  .linkBoxes__item img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.linkBoxes__item.-sub {
  width: 100%;
  max-width: none;
  margin-top: 15px;
  margin-left: 0;
}

.linkBoxes__item.-sub+.linkBoxes__item.-sub {
  margin-top: 7px;
}

@media screen and (min-width: 768px) {
  .linkBoxes__item.-sub {
    width: auto;
    margin-top: 0;
    margin-left: 20px;
  }

  .linkBoxes__item.-sub+.linkBoxes__item.-sub {
    margin-top: 0;
  }
}

.linkBox {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .linkBox {
    height: 100%;
  }

  .linkBox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: background-color 0.3s;
    background-color: transparent;
  }

  .linkBox:hover::before {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.linkBox.-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.linkBox.-reverse>.linkBox__title {
  position: static;
  height: 28px;
  background-color: #222;
}

.linkBox__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: 32px;
  padding-right: 6px;
  padding-left: 6px;
  background-color: rgba(0, 0, 0, 0.5);
  line-height: 1.167;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .linkBox__title {
    display: flex;
    justify-content: center;
    text-align: center;
    height: auto;
    line-height: 25px;
  }
}

.linkBox__title.tri-icon>* {
  align-items: center;
}

.linkBox__title>p {
  font-size: 12px;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .linkBox__title>p {
    width: 100%;
    justify-content: center;
    margin: 0;
    text-align: center;
    margin-right: 0;
    font-size: 13px;
    text-align: center;
  }
}

.linkBox-sub__item+.linkBox-sub__item {
  margin-top: 7px;
}

@media screen and (min-width: 768px) {
  .linkBox-sub__item+.linkBox-sub__item {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .linkBox-sub__item br {
    display: none;
  }
}

.linkBox-sub__item>a {
  color: #fff;
  font-size: 12px;
  line-height: 1.333;
  text-decoration: none;
  transition: 0.3s;
}

.linkBox-sub__item>a:hover {
  color: #92c800;
}

@media screen and (min-width: 768px) {
  .linkBox-sub__item>a {
    font-size: 13px;
    line-height: 1.385;
  }
}

@media screen and (min-width: 768px) {
  .textLinks {
    display: flex;
    flex-wrap: wrap;
    width: 860px;
    margin-left: auto;
  }

  .textLinks.-search {
    margin-top: 22px;
  }
}

@media screen and (max-width: 767px) {
  .textLinks__item:not(:first-of-type) {
    margin-top: 7px;
  }
}

.textLinks__item>a {
  color: #fff;
  font-size: 12px;
  line-height: 1.333;
  text-decoration: none;
  transition: 0.3s;
}

.textLinks__item>a:hover {
  color: #92c800;
}

@media screen and (min-width: 768px) {
  .textLinks__item>a {
    font-size: 13px;
  }
}

@media screen and (min-width: 768px) {
  .textLinks__item>a {
    line-height: 2.154;
  }
}

.g-menu-footer {
  margin-bottom: 56px;
  padding: 25px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.g-menu-footer-contactBtns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.g-menu-footer-contactBtns>.item {
  width: calc(50% - 5px);
}

.g-menu-footer-contactBtns>.item:nth-child(n+3) {
  margin-top: 10px;
}

.g-menu-footer-contactBtns a {
  display: block;
  padding: 10px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
}

.g-menu-footer-contactBtns .fa {
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.75);
}

.sp-g-menu-footer-sns-icons {
  margin-top: 15px;
}

.post_header {
  position: relative;
  background-image: url(../images/page/header_bg1.png);
  background-position: center;
  background-size: cover;
  padding-top: 50px;
}

@media screen and (max-width: 767px) {
  .post_header {
    padding: 0 10px;
  }
}

.post_header>.inner {
  max-width: 1080px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .post_header>.inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 115px;
  }
}


/* フッター //
////////////////////////////////////////////////////////////////////*/

.footer-wrap {
  background-image: url(../images/footer/footer_bg.png);
  background-position: bottom;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .footer-wrap {
    padding: 30px 10px 20px;
  }
}

.footer-wrap>.inner {
  max-width: 1080px;
  margin: auto;
  background-image: url(../images/footer/bg_logo.png);
  background-position: top right;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .footer-wrap>.inner {
    background-image: none;
  }
}

.footer-wrap>.inner .company-wrap {
  padding-top: 50px;
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer-wrap>.inner .company-wrap {
    padding-top: 0;
    display: block;
  }
}

.footer-wrap>.inner .company-wrap .desc-wrap .company_name {
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.25;
  color: white;
}

@media screen and (max-width: 767px) {
  .footer-wrap>.inner .company-wrap .desc-wrap .company_name {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

.footer-wrap>.inner .company-wrap .desc-wrap .desc {
  margin-top: 5px;
  font-size: 0.7rem;
  line-height: 1.4;
  color: white;
}

@media screen and (max-width: 767px) {
  .footer-wrap>.inner .company-wrap .desc-wrap .desc {
    font-size: 0.65rem;
  }
}

.footer-wrap>.inner .company-wrap .desc-wrap .desc .text_small {
  color: white;
  font-size: 0.6rem;
}

.footer-wrap>.inner .company-wrap .desc-wrap .desc a {
  color: white;
}

.footer-wrap>.inner .company-wrap .desc-wrap .corona {
  margin-bottom: -10px;
}

.footer-wrap>.inner .map-wrap {
  margin-top: 30px;
  width: 100%;
  height: 350px;
}

@media screen and (max-width: 767px) {
  .footer-wrap>.inner .map-wrap {
    height: 200px;
    margin-top: 10px;
  }
}

.footer-wrap>.inner .map-wrap iframe {
  max-width: 100%;
  max-height: 100%;
}

.footer-wrap>.inner .footer-nav .menu {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .footer-wrap>.inner .footer-nav .menu {
    display: block;
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer-wrap>.inner .footer-nav .menu .menu-item .home_link, .footer-wrap>.inner .footer-nav .menu .menu-item .pc_swicth {
    border-bottom: solid 1px #5c5c5c;
    display: flex;
    align-items: center;
  }

  .footer-wrap>.inner .footer-nav .menu .menu-item .home_link a, .footer-wrap>.inner .footer-nav .menu .menu-item .pc_swicth a {
    font-size: 0.65rem;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    display: inline-block;
    width: calc(100% - 30px);
  }
}

.footer-wrap>.inner .footer-nav .menu .menu-item .pc_swicth:before {
  content: "\f108";
  font-size: 0.8rem;
}

.footer-wrap>.inner .footer-nav .menu .menu-item .link_title {
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .footer-wrap>.inner .footer-nav .menu .menu-item .link_title {
    font-size: 0.65rem;
    margin-bottom: 0;
    padding: 10px 0;
    border-bottom: solid 1px #5c5c5c;
    display: flex;
    line-height: 1.2em;
    font-weight: normal;
  }

  .footer-wrap>.inner .footer-nav .menu .menu-item .link_title:before {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: #999;
  }
}

@media screen and (max-width: 767px) {
  .footer-wrap>.inner .footer-nav .menu .menu-item .link_title.open:before {
    content: "\f068";
  }
}

.footer-wrap>.inner .footer-nav .menu .menu-item .menu-links-wrap {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .footer-wrap>.inner .footer-nav .menu .menu-item .menu-links-wrap {
    display: none;
  }
}

.footer-wrap>.inner .footer-nav .menu .menu-item .menu-links {
  list-style: none;
  padding-right: 40px;
}

@media screen and (max-width: 767px) {
  .footer-wrap>.inner .footer-nav .menu .menu-item .menu-links {
    padding-right: 0;
  }
}

.footer-wrap>.inner .footer-nav .menu .menu-item .menu-links li {
  font-size: 0.65rem;
  line-height: 1.2rem;
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer-wrap>.inner .footer-nav .menu .menu-item .menu-links li {
    line-height: 1.2em;
    border-bottom: solid 1px #5c5c5c;
    position: relative;
  }
}

.footer-wrap>.inner .footer-nav .menu .menu-item .menu-links li a {
  color: white;
  text-decoration: none;
}

.footer-wrap>.inner .footer-nav .menu .menu-item .menu-links li a:before {
  margin-right: 8px;
}

.footer-wrap>.inner .footer-nav .menu .menu-item .menu-links li a:hover {
  color: #92c800;
}

@media screen and (max-width: 767px) {
  .footer-wrap>.inner .footer-nav .menu .menu-item .menu-links li a {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    position: relative;
  }

  .footer-wrap>.inner .footer-nav .menu .menu-item .menu-links li a:after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    color: rgba(255, 255, 255, 0.5);
  }
}

.footer-wrap>.inner .copyright {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 20px;
  font-size: 14px;
  color: #aaaaaa;
}

@media screen and (max-width: 767px) {
  .footer-wrap>.inner .copyright {
    margin-top: 10px;
    padding-bottom: 0px;
    font-size: 10px;
    line-height: 12px;
  }
}

.footer-btns-wrapper {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.footer-contact-btns {
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer-contact-btns {
    width: 100%;
  }
}

.footer-contact-btn {
  width: 200px;
}

@media screen and (max-width: 767px) {
  .footer-contact-btn {
    width: 100%;
  }
}

.footer-contact-btn+.footer-contact-btn {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .footer-contact-btn+.footer-contact-btn {
    margin-left: 5px;
  }
}

.footer-contact-btn__link {
  display: block;
  padding: 10px 0;
  background-color: #92c800;
  color: white;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .footer-contact-btn__link {
    font-size: 12px;
  }
}

.footer-contact-btn__link:hover {
  color: white;
}

.footer-contact-btn__link>i {
  color: rgba(255, 255, 255, 0.75);
  margin-right: 8px;
}

.footer-sns-icons {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.footer-sns-icon {
  font-size: 30px;
}

.footer-sns-icon+.footer-sns-icon {
  margin-left: 12px;
}

.footer-sns-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-sns-icon__link>i {
  color: rgba(255, 255, 255, 0.75);
}

.sp-footer-sns-icons {
  margin-top: 30px;
}

/* top_link ///
---------------------------------------------- */
.top_link {
  position: fixed;
  display: block;
  text-align: center;
  background-color: #92c800;
  color: white;
  margin: 0;
  text-decoration: none;
  font-size: 1rem;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: none;
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 767px) {
  .top_link {
    width: 40px;
    height: 40px;
    font-size: 0.5rem;
    transition: opacity 0.2 ease-out;
  }

  .top_link.end {
    opacity: 0;
    pointer-events: none;
  }
}

.top_link i {
  color: white;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .top_link i {
    font-size: 1.2rem;
  }
}

.top_link:hover {
  color: white;
}

.swicth_off {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 100px;
  height: 60px;
  background-color: #92c800;
  color: white;
  font-size: 1.2rem;
  z-index: 999;
  padding: 0 20px;
  text-decoration: none;
  box-sizing: border-box;
  line-height: 60px;
}


/* tksn //
////////////////////////////////////////////////////////////////////*/

.tksn .ellipsis::before,
.tksn .ellipsis::after {
  display: none;
}

.tksn_box {
  font-size: 2rem;
  line-height: 150px;
  text-align: center;
  transition: opacity 0.1s;
}

.tksn_box:not(.active) {
  display: none;
}

.tksn_box>table {
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.tksn_box>br {
  display: none;
}

.tksn_box table {
  font-family: inherit !important;
}

/* 種別を選ぶリスト ///
---------------------------------------------- */
.tksn-change-list {
  box-sizing: border-box;
  margin: 0 auto;
  width: 235px;
  height: 28px;
  display: table;
  border: 1px solid #c00;
  border-radius: 3px;
  table-layout: fixed;
}

.tksn-change-list li {
  display: table-cell;
  vertical-align: middle;
  color: #c00;
  text-align: center;
  cursor: pointer;
}

.tksn-change-list li:not(:last-child) {
  border-right: 1px solid #c00;
}

.tksn-change-list .active {
  background-color: #c00;
  color: #fff;
}

/* 読込中 ///
---------------------------------------------- */
.tksn.loading {
  min-height: 50px;
  position: relative;
  overflow: hidden;
}

.tksn.loading::after {
  margin: auto;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #929292;
  font-size: 36px;
  line-height: 1;
  pointer-events: auto;
  content: "\f110";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  animation: r1 1.2s linear infinite;
}

.tksn.loading .tksn_box {
  opacity: 0.8;
}

@keyframes r1 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* des52 ///
---------------------------------------------- */
.des52 .tksn_box table {
  border-collapse: inherit;
  border-spacing: 1px;
}

.des52>.tksn_box>table>tbody>tr>td {
  width: 278px;
}

.des52>.tksn_box>table>tbody>tr>td table {
  margin-bottom: 0px;
}

@media screen and (min-width: 768px) {
  .des52>.tksn_box>table>tbody>tr>td table {
    width: 100%;
  }
}

/* des64 ///
---------------------------------------------- */
.des64>.tksn_box>table>tbody {
  display: block;
}

.des64>.tksn_box>table>tbody>tr {
  display: flex;
  flex-wrap: wrap;
}

.des64>.tksn_box>table>tbody>tr>td {
  box-sizing: border-box;
  height: auto !important;
  border: 1px solid #ccc !important;
  display: block;
  float: left;
  /*IE用*/
  vertical-align: top;
}

.des64>.tksn_box>table>tbody>tr>td>table {
  box-sizing: border-box;
  margin-bottom: 0 !important;
  height: 100%;
  border: 2px solid #fff !important;
}

.tksnBox64>tbody>tr:nth-of-type(3) table tbody {
  display: flex;
  flex-direction: column;
}

.tksnBox64>tbody>tr:nth-of-type(3) table tr:nth-of-type(1) td:nth-of-type(1) {
  padding-bottom: 5px;
}

.tksnBox64>tbody>tr:nth-of-type(3) table tr:nth-of-type(1) td:nth-of-type(2) {
  display: none;
}

.tksnBox64>tbody>tr:nth-of-type(3) table tr:nth-of-type(2) td a {
  width: 80px;
  display: block;
  margin-left: 8px;
}

/* des74 ///
---------------------------------------------- */
.des74>.tksn_box li {
  margin-right: 20px;
  border-top: 0;
  position: relative;
  font-size: 14px;
  line-height: 1.3;
  text-align: left;
  overflow: hidden;
}

.des74>.tksn_box li:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.des74>.tksn_box li>h4 {
  font-weight: 400;
}

.des74>.tksn_box li>span,
.des74>.tksn_box li a {
  font-family: inherit;
  font-weight: 400;
}

.des74>.tksn_box li>span {
  margin: auto;
  height: 1em;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 17px;
  z-index: -1;
  font-size: inherit;
  line-height: 1;
}

.des74>.tksn_box ul a {
  box-sizing: border-box;
  padding: 8px 20px 8px 112px;
  height: auto;
  display: block;
  line-height: 1;
}

@media screen and (max-width: 767px) {

  /* tksn //
  ////////////////////////////////////////////////////////////////////*/
  .tksn .ellipsis::before,
  .tksn .ellipsis::after {
    display: none;
  }

  .tksn_box {
    font-size: 14px;
    line-height: 100px;
    text-align: center;
  }

  .tksn_box:not(.active) {
    display: none;
  }

  .tksn_box>* {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }

  .tksn_box img[src$="newsbg.gif"] {
    width: auto;
  }

  .tksn_box>br {
    display: none;
  }

  .tksn_box table {
    font-family: inherit !important;
  }

  /* 種別を選ぶリスト ///
  ---------------------------------------------- */
  .tksn-change-list {
    box-sizing: border-box;
    margin: 20px auto 0;
    width: 235px;
    height: 28px;
    display: table;
    border: 1px solid #c00;
    border-radius: 3px;
    table-layout: fixed;
  }

  .tksn-change-list li {
    display: table-cell;
    vertical-align: middle;
    color: #c00;
    text-align: center;
    cursor: pointer;
  }

  .tksn-change-list li:not(:last-child) {
    border-right: 1px solid #c00;
  }

  .tksn-change-list .active {
    background-color: #c00;
    color: #fff;
  }

  /* 読込中 ///
  ---------------------------------------------- */
  .tksn.loading {
    min-height: 50px;
    position: relative;
    overflow: hidden;
  }

  .tksn.loading::after {
    margin: auto;
    width: 1em;
    height: 1em;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #929292;
    font-size: 36px;
    line-height: 1;
    pointer-events: auto;
    content: "\f110";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    animation: r1 1.2s linear infinite;
  }

  .tksn.loading .tksn_box {
    opacity: 0.8;
  }

  @keyframes r1 {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  /* des52 ///
  ---------------------------------------------- */
  .des52 .tksn_box {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .des52 .tksn_box table {
    border-collapse: inherit;
    border-spacing: 1px;
  }

  /* des64
  -------------------------------------------------------------------*/
  .tksn.des64 {
    min-height: 300px;
  }

  .tksn.des64>.tksn_box {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .des64>.tksn_box>table {
    margin: 0 10px 10px;
  }

  .des64>.tksn_box>table>tbody {
    display: block;
  }

  .des64>.tksn_box>table>tbody>tr {
    display: flex;
  }

  .des64>.tksn_box>table>tbody>tr>td {
    box-sizing: border-box;
    min-width: 267px;
    height: auto !important;
    display: block;
  }

  .des64>.tksn_box>table>tbody>tr>td>table {
    margin-bottom: 0 !important;
    width: 267px;
  }

  /* des74 ///
  ---------------------------------------------- */
  .des74>.tksn_box>ul>li {
    border-top: none;
    position: relative;
  }

  .des74>.tksn_box>ul>li>span {
    position: absolute;
    top: 0;
    left: 18px;
    color: #c00;
    font-size: 14px;
    line-height: 26px;
    pointer-events: none;
  }

  .des74>.tksn_box>ul>li>h4>a {
    padding: 25px 18px 1px 18px;
    height: auto;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }
}

/* ----------------------------------------
//
// tksn_x
//
---------------------------------------- */
:where(.tksn_x .home_ranking-list),
:where(.tksn_x .home_ranking-list *) {
  box-sizing: border-box;
}

.tksn_x .home_ranking-list>table>tbody {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.tksn_x .home_ranking_tksn {
  display: flex;
  gap: 16px;
  font-size: 16px;
}

.tksn_x .home_ranking_tksn>td {
  width: calc((100% - 32px) / 3);
  padding: 0;
}

.tksn_x .home_ranking-list_detail {
  text-align: center;
  line-height: 1.5;
}

.tksn_x .home_ranking-list_detail_area {
  display: block;
  margin-bottom: 0.5em;
  padding-right: 0.5em;
  padding-left: 0.5em;
  line-height: 2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tksn_x .home_ranking-list_detail_price {
  font-size: 24px;
}

.tksn_x .home_ranking-list_detail .new {
  vertical-align: middle;
}

.tksn_x .home_ranking-kotsu_info {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: auto;
  padding-right: 0.5em;
  padding-left: 0.5em;
}

.tksn_x .home_ranking-kotsu_info::before,
.tksn_x .home_ranking-kotsu_info::after {
  content: none;
}

.tksn_x .home_ranking-list_img {
  text-align: center;
  line-height: 1;
}

.tksn_x .home_ranking-list_point_contents {
  padding-right: 1em;
  font-size: 15px;
  line-height: 1.333;
}

.tksn_x .home_ranking-list_point_title {
  font-size: 20px;
}

.tksn_x .home_ranking-list_btn {
  margin: 14px auto 18px;
  line-height: 44px;
  font-size: 18px;
}

.tksn_x .home_ranking-list_detail_date {
  line-height: 2em;
}

@media screen and (max-width: 767px) {
  .tksn_x .home_ranking-list {
    overflow-x: auto;
  }

  .tksn_x .home_ranking-list>table>tbody {
    flex-direction: row;
    gap: 8px;
  }

  .tksn_x .home_ranking_tksn {
    gap: 8px;
    font-size: 14px;
  }

  .tksn_x .home_ranking_tksn>td {
    width: auto;
    min-width: 240px;
  }

  .tksn_x .home_ranking-list_point_contents {
    font-size: 13px;
  }
}
