
/* CSS Document */

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  background: #fff;
}

body {
  font-family: "Noto Sans JP", 'Roboto', sans-serif;
  /* letter-spacing: 0.1rem; */
  letter-spacing: 0;
  font-size: 16px;
  font-weight: normal;
  color: #222;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: #fff;
}

*:focus {
  outline: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

a {
  text-decoration: none;
  color: #3e3e3e;
}

/* a:hover {
  text-decoration: underline;
} */
/* a:link, a:visited, a:active {
  text-decoration: none;
} */
selector {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
  line-height: 0px;
}

.text .text__inner .date {
  font-size: 12px;
  vertical-align: text-top;
  margin-top: 1px;
  display: inline-block;
  margin-left: auto;
  color: #7A7A7A;
}

.text .text__inner .title {
  font-size: 17px;
  font-weight: 600;
  padding: 0px 0 15px;
}

.text .text__inner .detail {
  display: flex;
  gap: 15px;
  align-items: center;
}

.text .text__inner .detail .writer {
  display: flex;
  align-items: center;
}

.text .text__inner .detail .writer .thumb {
  width: 30px;
  height: 30px;
  border: 1px solid#D9D9D9;
  border-radius: 100px;
  overflow: hidden;
}

.text .text__inner .detail .writer .thumb img {
  width: 30px;
  height: 30px;
}

.text .text__inner .detail .writer .name {
  font-size: 10px;
  margin-left: 6px;
  color: #7A7A7A;
}

.text .text__inner .detail .price {
  color: #1C689B;
  font-weight: 800;
  font-size: 14px;
  padding: 0px 7px;
  display: inline-block;
  border: 1px solid;
  border-radius: 100px;
  height: 21px;
}

.text .text__inner .detail .tag {
  font-size: 12px;
  ;
}

.kv {
  background: #1C689B;
  padding: 30px 20px 30px;
}

.kv .nav__list {
  display: flex;
  justify-content: center;
  padding: 22px 10px;
  gap: 40px;
}

.text__hover {
  transition: all .2s ease;
  opacity: 1;
}

.text__hover:hover {
  transition: all .2s ease;
  opacity: .8;
}

.kv .nav__list .nav__item a {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.kv .top__item {
  display: flex;
  justify-content: center;
  max-width: 1010px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  /* height: 316px; */
}

.kv .top__item .thumb {
  width: 50%;
  overflow: hidden;
}

.kv .top__item .thumb img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease-in-out;
  transform: scale(1);
  aspect-ratio: 3 / 2;
}

.kv .top__item:hover .thumb img {
  transition: all 0.3s ease-in-out;
  transform: scale(1.05);
}

.kv .top__item .text {
  background: #fff;
  width: 50%;
  display: flex;
  align-items: center;
  padding: 0 30px;
  box-sizing: border-box;
}

.kv .top__item .text .text__inner .label_new {
  font-weight: 600;
  font-size: 20px;
  color: #1C689B;
  margin-right: 10px;
}

.kv .top__item .text .text__inner .date {
  font-size: 12px;
}

.kv .top__item .text .text__inner .title {
  font-size: 25px;
}

.kv .top__item .text .text__inner .detail {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.kv .top__item .text .text__inner .detail .writer .thumb {
  width: 30px;
  height: 30px;
}

.kv .top__item .text .text__inner .detail .writer .name {
  font-size: 10px;
}

.kv .top__item .text .text__inner .detail .price {
  font-weight: 800;
  font-size: 17px;
  padding: 0px 11px;
  height: 24px;
}

.kv .top__item .text .text__inner .detail .tag {
  font-size: 12px;
  background: #f1f1f1;
  padding: 3px 8px;
  border-radius: 100px;
}

.contents {
  padding: 20px 20px 60px;
}

.contents__inner {
  max-width: 1010px;
  margin: 0 auto;
  width: 100%;
  display: flex;
}

.contents__box {
  margin-bottom: 40px;
}

.contents__left {
  width: 100%;
  margin: 0 auto;
}

.contents__list {
  overflow-x: auto;
  overflow-y: hidden;
}

.contents__list .contents__list_inner {
  display: flex;
  gap: 20px;
}

.contents__list .article__item {
  display: block;
  padding: 10px 0 20px;
  width: 100%;
  max-width: 220px;
  min-width: 220px;
}

.contents__list .article__item .thumb {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.contents__list .article__item .text {
  margin-right: 0;
  max-width: 100%;
  min-width: 100%;
}

.contents__list .article__item .thumb img {
  object-fit: cover;
  width: 100%;
}

.contents__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 3px;
}

.contents__title>a:hover {
  opacity: .8;
}

.contents__title>a:after {
  content: ">";
  font-weight: 700;
  padding-left: 20px;
  color: #878787;
}

.contents__info {
  font-size: 12px;
  margin-bottom: 13px;
  display: block;
  color: #7a7a7a;
}

.tag__area {
  margin: 20px 0 10px;
}

.tag__area>a {
  display: inline-block;
  margin: 0 .1em .6em 0;
  padding: .6em;
  line-height: 1;
  text-decoration: none;
  color: #1C689B;
  background-color: #fff;
  border: 1px solid #1C689B;
  border-radius: 2em;
  font-size: 12px;
}

.tag__area>a:before {
  content: "#";
}

.tag__area>a:hover {
  background-color: #1C689B;
  color: #fff;
}

.contents__column {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}

.contents__column .article__item {
  width: 48%;
}

.article__item img {
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}

.article__item:hover img {
  transition: all 0.3s ease-in-out;
  transform: scale(1.05);
}

.article__item {
  display: flex;
  padding: 20px 0 20px;
  border-bottom: 1px solid #F0F0F0;
}

.article__item .text {
  /* min-width: 65%;
  max-width: 65%; */
  width: 100%;
  margin-right: 10px;
}

.article__item .text .detail {
  display: flex;
  align-items: center;
  gap: 4px 10px;
  flex-wrap: wrap;
}

.article__item .text .detail .writer {
  display: flex;
  justify-content: center;
}

.article__item .text .detail .tag {
  font-size: 10px;
  background: #f1f1f1;
  padding: 3px 8px;
  border-radius: 100px;
}

.article__item .thumb {
  width: 250px;
  height: fit-content;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.article__item .thumb img {
  object-fit: cover;
  width: 250px;
  aspect-ratio: 3 / 2;
}

.contents__right {
  width: 30%;
}

.banner {
  display: block;
  transition: all .2s ease;
  border-radius: 8px;
  overflow: hidden;
  max-width: 280px;
  margin: 20px auto;
}

.banner:hover {
  transition: all .2s ease;
  opacity: .8;
}

.contents__right .article__item {
  display: block;
  padding-bottom: 20px;
}

.contents__right .article__item .thumb {
  width: 100%;
}

.contents__right .article__item .text {
  margin-right: 0;
}

.contents__right .article__item .thumb img {
  object-fit: cover;
  height: 100%;
  width: 300px;
}

.footer {
  background: #1C689B;
  padding: 30px;
}

.footer .footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .footer__inner .footer__menu {
  display: flex;
}

.footer .footer__inner .footer__logo .footer__logo_link {
  display: inline-block;
  margin-bottom: 30px;
}

.footer .footer__inner .footer__logo .footer__copyright {
  color: #fff;
  font-size: 10px;
}

.footer .footer__inner .footer__list {
  margin-right: 50px;
}

.footer .footer__inner .footer__list .footer__item .footer__link {
  color: #fff;
  font-size: 12px;
  margin-bottom: 5px;
  display: inline-block;
}


input::placeholder {
  color: red;
}


.pagination {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 0 8px;
  list-style-type: none;
  padding: 0;
  margin: 30px 0 70px;
  font-size: 14px;
}

.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border: 1px solid #dedede;
  border-radius: 25px;
  color: #222222;
}

.pagination a:hover {
  background: rgb(242, 242, 242);
}

.pagination a:not(:hover) {
  text-decoration: none;
}

.pagination .current a {
  background-color: #222222;
  color: #fff;
  pointer-events: none;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

.bt_cancel {
  display: none;
}

.contents__right .article__item .text .title {
  padding: 10px 0;
  ;
}

.aline_center {
  text-align: center;
}

.aline_left {
  text-align: left;
}

.aline_right {
  text-align: right;
}


/* //////////////////////////////////////////
  TABLET / SP
  ////////////////////////////////////////// */

@media screen and (max-width: 767px) {

  /*スマフォボタンリセット*/
  * {
    -webkit-appearance: none;
  }

  body {
    font-size: 14px;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
  }

  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }

  .contents__inner {
    margin: 0 auto;
    width: 100%;
    display: block;
  }

  .contents__left {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .contents__right {
    width: 100%;
  }


  .kv {
    padding: 15px;
  }

  .kv .nav__list .nav__item a {
    font-size: 12px;
  }

  .kv .nav__list {
    padding: 18px 10px;
    gap: 20px;
  }

  .kv .top__item {
    height: auto;
    display: block;
  }

  .kv .top__item .thumb,
  .kv .top__item .text {
    width: 100%;
  }

  .kv .top__item .thumb {
    /* height: 180px; */
    aspect-ratio: 3 / 2;
  }

  .kv .top__item .text .text__inner .title {
    font-size: 17px;
    line-height: 1.3em;
    padding: 10px 0;
  }

  .kv .top__item .text .text__inner .label_new {
    font-size: 12px;
    margin-right: 8px;
  }

  .kv .top__item .text .text__inner .date {
    font-size: 10px;
    margin-top: 3px;
  }

  .kv .top__item .text {
    padding: 14px 24px 24px 24px;
  }

  .kv .top__item .text .text__inner .detail .writer .thumb {
    width: 25px;
    height: 25px;
  }

  .kv .top__item .text .text__inner .detail .price {
    font-size: 13px;
    padding: 0px 5px;
    height: 19px;
  }

  .kv .top__item .text .text__inner .detail .tag {
    font-size: 11px;
  }

  .kv .top__item .text .text__inner .detail .writer .name {
    font-size: 10px;
    line-height: 1.1em;
  }

  .contents__title {
    font-size: 20px;
  }

  .article__item {
    padding: 10px 0 10px;
    justify-content: space-between;
  }
  .contents__column .article__item {
    width: 100%;
  }

  .text .text__inner .title {
    font-size: 14px;
    padding: 0;
  }

  .article__item .text {
    margin-right: 10px;
  }

  .article__item .thumb {
    border-radius: 6px;
    width: 160px;
  }

  .contents {
    padding: 20px 5% 10px;
  }

  .article__item .text .detail {
    gap: 4px;
    width: 100%;
    /* width: 126%; */
    margin-top: 12px;
  }

  .contents__right .article__item {
    display: flex;
    padding-bottom: 20px;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .contents__right .article__item .thumb img {
    object-fit: cover;
    height: 100%;
    width: 180px;
  }

  .contents__right .article__item .thumb {
    width: 110px;
  }

  .contents__right .article__item .text {
    margin-right: 5px;
  }

  .text .text__inner .detail .writer .thumb {
    width: 25px;
    height: 25px;
  }

  .text .text__inner .detail .writer .thumb img {
    width: 25px;
    height: 25px;
  }

  .text .text__inner .detail .price {
    color: #1C689B;
    font-weight: 800;
    font-size: 13px;
    padding: 0px 6px;
    display: inline-block;
    border: 1px solid;
    border-radius: 100px;
    height: 19px;
  }

  .text .text__inner .detail .writer .name {
    line-height: 1.1em;
  }

  .footer .footer__inner {
    display: block;
  }

  .footer .footer__inner .footer__logo .footer__logo_link {
    display: inline-block;
    margin-bottom: 10px;
  }

  .footer .footer__inner .footer__logo {
    margin-bottom: 50px;
    width: 126px;
  }

  .footer .footer__inner .footer__list {
    margin-right: 0px;
    line-height: 1.6em;
  }

  .footer .footer__inner .footer__menu {
    gap: 30px;
  }

  .banner {
    margin-bottom: 30px;
    margin-top: 20px;
    display: inline-block;
    max-width: 100%;
  }

  .banner img {
    width: 100%;
    ;
  }

  .pagination {
    font-size: 12px;
    margin: 20px 0 50px;
  }

  .disp-none {
    visibility: hidden;
    opacity: 0;
  }

  .contents__right .article__item .text .title {
    padding: 0px;
  }

  .contents__list .contents__list_inner {
    display: flex;
    gap: 20px;
  }

  .contents__list .article__item {
    display: block;
    padding: 10px 0 20px;
    width: 100%;
    max-width: 140px;
    min-width: 140px;
  }

  .contents__title>a:after {
    position: relative;
    top: -2px;
  }


}

/*media screen_end*/

@media screen and (max-width: 667px) {}

/*media screen_end*/

@media screen and (max-width: 568px) {}

/*media screen_end*/

@media screen and (max-width: 480px) {}

/*media screen_end*/

@media screen and (max-width: 375px) {}

/*media screen_end*/

@media screen and (max-width: 320px) {}

/*media screen_end*/
