@charset "UTF-8";
/* ---------------------------------------------
Reset
--------------------------------------------- */
/* Modern browser */
* {
  box-sizing: border-box;
  margin: 0;
}
*::before, *::after {
  box-sizing: border-box;
}

html {
  font-family: -apple-system, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(12px, 0.378rem + 1.86vw, 20px);
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/* addition */
img,
video,
iframe {
  vertical-align: bottom;
  display: block;
}

img {
  height: auto;
  margin: 0 auto;
  width: 100%;
}

em {
  font-style: normal;
}

small {
  font-size: 70%;
}

ul,
ol,
li {
  padding: 0;
  list-style: none;
}

/*==================================
wrapper
==================================*/
#wrapper {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

/*==================================
コピペ/テキストリンクエリア
==================================*/
.clipboard-container {
  position: relative;
}
.clipboard-container button.copy-btn,
.clipboard-container .textlink_area {
  position: absolute;
  margin: 0 auto;
  right: 0;
  left: 0;
  padding: 0;
}
.clipboard-container button.copy-btn {
  border: none;
  bottom: 20.6349206349%;
  width: 84.1333333333%;
  box-shadow: 0px 0px 15px -5px #777777;
}
.clipboard-container button.copy-btn:hover {
  opacity: 0.5;
}
.clipboard-container .textlink_area {
  bottom: 8.75%;
  text-align: center;
}
.clipboard-container .success-msg {
  display: none;
  position: fixed;
  width: 300px;
  height: 40px;
  line-height: 40px;
  background-color: #29aba4;
  color: #fff;
  top: 100px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  border-radius: 5px;
}

/*==================================
対象商品リンク
==================================*/
.lineup-container {
  position: relative;
}
.lineup-container .lineup_link {
  position: absolute;
  bottom: 9.3095422808%;
  height: 67.9596586501%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 中央揃え */
  right: 0;
  left: 0;
}
.lineup-container .lineup_link_top {
  margin-bottom: 60px;
  width: 39.6%;
  /* 上下のスペース */
}
.lineup-container .lineup_link_bottom1 {
  display: flex;
  justify-content: center;
  /* 中央揃え */
  margin-bottom: 60px;
  width: 82.5333333333%;
  /* 必要に応じて調整 */
  gap: 25px;
  /* 左右のスペース */
}
.lineup-container .lineup_link_bottom {
  display: flex;
  justify-content: center;
  /* 中央揃え */
  width: 82.5333333333%;
  /* 必要に応じて調整 */
  gap: 25px;
  /* 左右のスペース */
}

@media screen and (max-width: 640px) {
  #wrapper {
    width: 100%;
  }
  .lineup-container {
    position: relative;
  }
  .lineup-container .lineup_link_top {
    margin-bottom: 10%;
  }
  .lineup-container .lineup_link_bottom1 {
    margin-bottom: 10%;
  }
}