@charset "UTF-8";

/* ================= */
/* 要素のリセット    */
/* ================= */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}


/* ================= */
/* Base             */
/* ================= */
* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}

a:link {
  color: black;
  text-decoration: none;
  transition: color 0.5s;
}

a:visited {
  color: black;
}

a:hover {
  color: red;
}

a:active {
  color: red;
}

img {
  vertical-align: bottom;
}

/* ================= */
/* layout           */
/* ================= */
#layout-header,
#layout-footer,
#layout-title,
#layout-main {
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  background: white;
  color: black;
  line-height: 1.7;
}

#layout-title,
#layout-main {
  text-align: center;
}

/* ================= */
/* module【共通】    */
/* ================= */


/* マージン */
.margin_b_1em {
  margin-bottom: 1em;
}

.margin_b_2em {
  margin-bottom: 2em;
}

.margin_t_1em {
  margin-top: 1em;
}

.margin_t_2em {
  margin-top: 2em;
}


/* 画像 */
.image_100 img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.image_960 img {
  width: 960px;
  max-width: 100%;
  height: auto;
}

.image_600 img {
  width: 600px;
  max-width: 100%;
  height: auto;
}

/* "pc"classの画像を表示 */
.img_pc {
  display: block;
}

.img_sp {
  display: none;
}

/* "sp"classの画像を表示 */
@media screen and (max-width: 740px) {
  .img_pc {
    display: none;
  }

  .img_sp {
    display: block;
  }
}


/* スクロールミニメニュー */
.menu-area {
  display: flex;
  list-style: none;
  justify-content: center;
  margin-bottom: 2em;
}

.menu-area li {
  font-size: 1.2rem;
  margin-right: 6px;
  padding-left: 6px;
}

.menu-area li+li {
  border-left: solid 1px black;
}

@media screen and (max-width: 600px) {
  .menu-area {
    flex-wrap: wrap;
  }

  .menu-area li {
    font-size: 1.1rem;
    margin-right: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
  }
}


/* 黒ボタン */
a.saxx_btn1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: black;
  border: 1px solid black;
  padding: 0 25px 0 40px;
  color: white;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}

a.saxx_btn1:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}

a.saxx_btn1:hover {
  background: white;
  color: black;
}

a.saxx_btn1:hover:before {
  border-top: 2px solid black;
  border-right: 2px solid black;
}


/* 画面上に戻るボタン */
#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: 0.8;
  margin: 0;
  background-image: url(https://www.sportsmario.net/s/saxx/images/scroll_image.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}



/* 文字 */
span.bold {
  font-weight: bold;
}

span.red {
  font-weight: bold;
  color: #c62f64;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;

}

h1.tl_title {
  margin-bottom: 1.5em;
  text-align: center;
  font-size: 1.5rem;
}


h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}


/* PCでは改行しない、SPでは改行する */
.br_sp {
  display: none;
}

@media screen and (max-width: 880px) {
  .br_sp {
    display: inline-block;
  }
}


/* 共通枠 */
section.section {
  width: 100%;
  padding: 3em 0.5em;
  text-align: center;
  font-size: 0.9rem;
}

section.section:last-child {
  padding: 3em 0.5em 5em 0.5em;
}

.wrap {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 880px) {
  section.section {
    padding: 2em 0.5em;
  }

  section.section:last-child {
    padding: 2em 0.5em 4em 0.5em;
  }
}



/* ******【info_saxx】****** */
.saxx_reasons_hrad,
.saxx_header,
.campaign {
  width: 100%;
  max-width: 100%;
}

.saxx_innovation,
.message,
.saxx_media,
.uservoice,
.saxx_movie,
.bpp_3,
.saxx_recommend,
.saxx_recommend2,
.sizeguide,
.history {
  width: 100%;
  padding: 3rem 20px;
  text-align: center;
  font-size: 1rem;
  background: #faf7ef;
  box-sizing: border-box;
}

.saxx_innovation,
.saxx_media,
.saxx_recommend,
.bpp_3 {
  background: #edece2;
}

.message,
.uservoice,
.saxx_movie,
.saxx_recommend2,
.history {
  background: #fbf7ec;
}

h2.tl_infoSAXX {
  margin-bottom: 1.5em;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
}

.saxx_reasons_hrad img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 880px) {
  .saxx_innovation,
  .message,
  .saxx_media,
  .uservoice,
  .saxx_movie,
  .bpp_3,
  .saxx_recommend,
  .sizeguide,
  .saxx_recommend2,
  .history {
    padding: 2rem 20px;
  }
}


/* #saxx_header */
.bpp_head {
  display: flex;
  flex-wrap: nowrap;
}

.bpp_head:nth-child(even) {
  flex-direction: row-reverse;
}

.bpp_head img {
  width: 50%;
  max-width: 100%;
  height: auto;
}

.bpp_text,
.bpp_text2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background: #000;
  color: #fff;
  box-sizing: border-box;
  text-align: center;
}

.bpp_text h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 1rem;
}

.bpp_text p,
.bpp_text2 p {
  font-size: 15px;
}

.bpp_text2 {
  background: #faf7ef;
  color: #000;
}


@media screen and (max-width: 880px) {
  .bpp_text h2 {
    font-size: 20px;
  }

  .bpp_text p,
  .bpp_text2 p {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .bpp_head {
    flex-direction: column;
  }

  .bpp_head:nth-child(even) {
    flex-direction: column;
  }

  .bpp_head img {
    width: 100%;
  }

  .bpp_text,
  .bpp_text2 {
    width: 100%;
  }

  .bpp_text2 {
    padding: 16px 16px 3rem 16px;
  }
}



/*** #saxx_innovation ***/
.wrap-innovation {
  display: flex;
  justify-content: space-between;
  margin: 1rem auto 0 auto;
}

.innovation_item {
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

.wrap-innovation img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

h3.innovation_h3 {
  margin: 6px auto 8px auto;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
}

.text_left {
  text-align: left;
}

.functionality {
  width: 100%;
}

.functionality img {
  width: 70%;
  margin: 2rem auto 0 auto;
}

@media screen and (max-width: 770px) {
  .functionality img {
    width: 90%;
  }
}

@media screen and (max-width: 600px) {
  .wrap-innovation {
    flex-direction: column;
  }

  .innovation_item:not(:last-child) {
    margin: 0 0 2rem 0;
  }

  .innovation_item img {
    width: 70%;
  }

  .functionality img {
    width: 100%;
  }
}


/*** 【message】 ***/
h2.message_h1 {
  margin: 1.5rem 0;
  line-height: 1.1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
}

.f_saxx {
  font-size: 3rem;
}

.f_3 {
  font-size: 3rem;
  color: #fd451a;
}

.image_message img {
  width: 500px;
  max-width: 100%;
}

.image_message2 img {
  width: 100%;
  max-width: 100%;
}

.image-reason img {
  width: 300px;
  max-width: 100%;
}

.wrap-reason {
  position: relative;
  margin-bottom: 4rem;
}

.margin_b_1em {
  margin-bottom: 1rem;
}


h3.message_h3 {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 1.5rem 0.3rem 0.3rem 80px;
  margin: 1.5em 0 1em 0;
  border-bottom: 2px solid black;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

h3.message_h3:before {
  position: absolute;
  top: -100%;
  left: -100px;
  width: 165px;
  height: 200%;
  content: '';
  padding: 0 0.3rem 0 0;
  background: black;
}

h3.message_h3 span {
  font-size: 3.6rem;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  padding: 0 0 0 0.4em;
  color: white;
}

.st_pink {
  font-weight: normal;
  background-color: rgba(246, 79, 114, 0.2);
}

blockquote {
  quotes: initial;
  width: 600px;
  max-width: 100%;
  padding: 1rem;
  margin: 1rem auto;
  background: white;
  box-sizing: border-box;
}

.blockquoteS::before {
  content: "";
  display: flex;
  width: 1em;
  height: 1em;
  margin-right: auto;
  background: url(https://smwd.shop/apps/note/wp-content/uploads/2021/05/blockquote.svg) no-repeat;
  background-size: contain;
  transform: scale(-1, -1);
}

.blockquoteE::after {
  content: "";
  display: flex;
  width: 1em;
  height: 1em;
  margin-left: auto;
  background: url(https://smwd.shop/apps/note/wp-content/uploads/2021/05/blockquote.svg) no-repeat;
  background-size: contain;
}

.br_sp {
  display: none;
}

@media screen and (max-width: 880px) {
  .br_sp {
    display: inline-block;
  }
}

@media screen and (max-width: 600px) {
  .message img {
    width: 100%;
  }

  h2.message_h1 {
    font-size: 1.5rem;
  }

  .f_saxx {
    font-size: 2rem;
  }

  .f_3 {
    font-size: 2rem;
  }

  .wrap-reason::before {
    width: 250px;
  }

  .wrap-reason p {
    text-align: left;
  }
}





/*** 【functionality】 ***/
.wrap-functionality {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 0.5em 0;
}

.fun_item {
  margin: 0 1.5em;
}

.fun_item svg {
  display: inline-block;
}

.fun_item p {
  font-size: .875rem;
  margin-top: 0.875rem;
}

/* saxx_media */
.saxx_media img {
  width: 960px;
  height: auto;
  max-width: 100%;
}


/* saxx_movie */
.saxx_movie .wrap-movie {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 2.5rem;
}

p.tl_movie {
  padding: 5px 3px;
  font-size: 14px;
  background: black;
  color: white;
}

.wrap-movie span {
  display: inline-block;
}

.wrap-movie iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

@media screen and (max-width: 750px) {
  .saxx_movie .wrap-movie {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 16px;
  }
}


.wrap-profile {
  display: flex;
  margin: 2rem auto 0 auto;
}
.wrap-profile img {
  width: 48%;
  height: auto;
  margin: 0 auto;
  padding-right: 6px;
  box-sizing: border-box;
}

@media screen and (max-width: 790px) {
  .wrap-profile {
    flex-direction: column;
  }
  .wrap-profile img {
    width: 70%;
    padding-right: 0;
    padding-top: 10px;
  }
}




/*** 【recommend】 ***/
h2.tl_recommend {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1em;
  font-size: 1.3rem;
}

h2.tl_recommend::before {
  content: url(https://smwd.shop/apps/note/wp-content/uploads/2022/icon_arrow.png);
  vertical-align: middle;
  padding-right: 8px;
  margin-bottom: 2em;
}

h2.tl_recommend2 {
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1em;
  font-size: 1.3rem;
}

h2.tl_recommend2::before {
  content: url(https://smwd.shop/apps/note/wp-content/uploads/2022/icon_arrow.png);
  vertical-align: middle;
  padding-right: 8px;
  margin-bottom: 2em;
}

.silhouette,
.collection,
.fly,
.tension,
.mesh,
.set,
.use,
.material {
  width: 960px;
  max-width: 100%;
  margin: 1em auto 4em auto;
  text-align: center;
}

h3.tl_series {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}

.every {
  border-bottom: solid 6px #2951a3;
}

.out {
  border-bottom: solid 6px #1e8285;
}

.sport {
  border-bottom: solid 6px #e90029;
}

/* アコーディオンメニュー設定 */
nav {
  display: none;
}

.nav-open::after {
  content: "－";
  position: absolute;
  right: 5px;
  font-size: 1.3rem;
}

.nav-open.active::after {
  content: "＋";
}

@media screen and (max-width: 600px) {
  h2.tl_recommend {
    font-size: 1.2rem;
  }

  h2.tl_recommend2 {
    font-size: 1.2rem;
  }

  .silhouette,
  .collection,
  .fly,
  .tension,
  .mesh,
  .set,
  .use,
  .material {
    margin: 1em auto 3em auto;
  }
}

/* シルエット */
.wrap-silhouette {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.wrap-silhouette li {
  width: calc(100%/3);
  padding: 0 5px 15px 5px;
  font-size: 0.9rem;
}

.wrap-silhouette a {
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  .wrap-silhouette li {
    width: calc(100%/2);
    font-size: 0.8rem;
  }
}


/* コレクション */
.wrap-collection,
.wrap-fly {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.co_series {
  padding: 0 1em;
  text-align: left;
}

.list-series {
  list-style: none;
}

.list-series li {
  margin-bottom: 8px;
  font-size: 0.8rem;
}

.list-series li span {
  font-size: 0.9rem;
}

@media screen and (max-width: 800px) {

  .wrap-collection,
  .wrap-fly {
    flex-direction: column;
    justify-content: center;
  }

  .co_series {
    padding: 0 0.5em;
    margin: 0.5em 0;
  }
}


/** テンション **/
.tension-bar {
  display: flex;
  justify-content: space-between;
  line-height: .75rem;
  letter-spacing: 1px;
  padding: 0.75rem;
  font-weight: bold;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(90deg, #fb4343, #8d2c2c);
}

.wrap-tension {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0 0.5em;
  margin-top: 1em;
  width: 100%;
}

.tension_list {
  display: flex;
  flex-direction: column;
  list-style: none;
  text-align: center;
}

.tension_list li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.list_img {
  margin-top: auto;
}

.list_img img {
  width: 100px;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .tension_sp {
    display: flex;
    justify-content: flex-start;
  }

  .tension-bar {
    flex-direction: column;
    background: linear-gradient(180deg, #fb4343, #8d2c2c);
    padding: 1rem 0.25rem;
    font-size: 0.7rem;
  }

  .tension-bar span {
    /** writing-mode: vertical-rl;**/
    white-space: nowrap;
  }

  .wrap-tension {
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 0.5em;
    margin-top: 0;
  }

  .tension_list {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: solid 2px #d3d3d3;
  }

  .tension_list:not(:last-child) {
    border-bottom: none;
  }

  .list_txt,
  .list_img {
    padding: 10px;
    margin-top: 0;
  }

  .list_txt {
    text-align: left;
  }
}


/** メッシュ **/
.wrap-mesh {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

@media screen and (max-width: 600px) {
  .wrap-mesh {
    flex-direction: column;
    justify-content: center;
  }
}

/** セット **/
.wrap-set {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.set_series {
  padding: 0 1em 1em 1em;
  text-align: left;
}

.online {
  border-bottom: solid 6px #4e4e50;
}

.list-series_on {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}

.list-series_on li {
  text-align: center;
  font-size: 0.8rem;
}

.list-series_on img {
  max-width: 100%;
  height: auto;
}

.list-series_on img:hover {
  opacity: 0.7;
  transition: 0.5s;
}

.list-series_on a {
  width: calc(100%/5);
  padding: 0 5px;
}

@media screen and (max-width: 800px) {
  .wrap-set {
    flex-direction: column;
    justify-content: center;
  }

  .set_series {
    padding: 0 0.5em;
    margin: 0.5em 0;
  }


  .list-series_on a {
    width: calc(100%/2);
    padding: 0 0.5em;
    margin: 0.5em 0;
  }
}

/** 用途別 **/
.wrap-use {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

h3.tl_use {
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.every2 {
  border-bottom: solid 3px #2951a3;
}

.out2 {
  border-bottom: solid 3px #1e8285;
}

.sport2 {
  border-bottom: solid 3px #e90029;
}



/* 【recommend2】 */
.recommend2 img {
  width: 640px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5em;
}

.wrap-recommendItem2 {
  width: 960px;
  max-width: 100%;
  margin: 0 auto 5em auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2em;
  grid-row-gap: 3em;
}

.wrap-recommendItem2 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5em;
}

.wrap-recommendItem2 img:hover {
  opacity: 0.7;
}

.starP a:link {
  color: blue;
  text-decoration: underline;
}

.starP a:visited {
  color: blue;
}

.starP a:hover {
  color: red;
}

.star5_rating {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  color: #CCCCCC;
  font-size: 20px;
}

.star5_rating:before,
.star5_rating:after {
  content: '★★★★★';
}

.star5_rating:after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #ffcf32;
}



.star5_rating[data-rate="5"]:after {
  width: 100%;
}

.star5_rating[data-rate="4.5"]:after {
  width: 90%;
}

.star5_rating[data-rate="4"]:after {
  width: 80%;
}

.star5_rating[data-rate="3.5"]:after {
  width: 70%;
}

.star5_rating[data-rate="3"]:after {
  width: 60%;
}

.star5_rating[data-rate="2.5"]:after {
  width: 50%;
}

.star5_rating[data-rate="2"]:after {
  width: 40%;
}

.star5_rating[data-rate="1.5"]:after {
  width: 30%;
}

.star5_rating[data-rate="1"]:after {
  width: 20%;
}

.star5_rating[data-rate="0.5"]:after {
  width: 10%;
}

.star5_rating[data-rate="0"]:after {
  width: 0%;
}


@media screen and (max-width: 600px) {
  .wrap-recommendItem2 {
    grid-template-columns: 1fr;
  }
}


/* 【サイズ・ラッピングバナー】 */
.bannerBeside ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
}

.bannerBeside li {
  width: calc(100%/2);
  padding: 0 1.5em 2em 1.5em;
}

.bannerBeside li img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .bannerBeside li {
    width: calc(100%/1);
  }
}



/* 【hisotry】 */
.history_item {
  display: flex;
  margin-bottom: 1rem;
  text-align: left;
  align-items: center;
}

.history_item:nth-child(odd) {
  flex-direction: row-reverse;
}

.history_item img {
  width: 40%;
  padding: 10px;
}

.history_txt {
  width: 60%;
}


.header-footer {
  background: black;
  color: white;
  padding: 10px;
}

.header-footer a {
  color: white;
}

@media screen and (max-width: 680px) {
  .history_item {
    flex-direction: column;
  }
  .history_item:nth-child(odd) {
    flex-direction: column;
  }

  .history_item img {
    width: 100%;
    padding: 10px;
  }

  .history_txt {
    width: 100%;
  }
}