@charset "utf-8";

/* =============================================
共通CSS
============================================= */

.main_contents * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main_contents {
  width: 900px;
  margin: 0 auto;
  /* font-family: "M PLUS 1", sans-serif; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
}

.main_contents img {
  width: 100%;
  vertical-align: bottom;
}

.main_contents a {
  display: block;
  text-decoration: none;
  color: #333;
}

.main_contents a:hover img {
  opacity: 1;
}

/* =============================================
FV
============================================= */

.main_contents .fv {
  margin-bottom: 16px;
  padding: 32px;
  background-color: #ffd700;
}

.main_contents .fv .fv_contents {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.main_contents .fv h1 {
  width: 40%;
}

.main_contents .fv .FV_text {
  width: 55%;
  text-align: left;
  font-size: 22px;
  font-weight: 700;
}

.main_contents .fv img {
  width: 100%;
  height: auto;
}

/* =============================================
各商品説明
============================================= */

.main_contents .item_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.main_contents .contents img {
  width: 100%;
  height: auto;
}

.main_contents .contents {
  width: calc((100% / 3) - 8px);
  padding: 1rem;
  background-color: #fff;
  box-shadow: rgba(139, 139, 139, 0.1) 0px 0px 6px 2px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.main_contents .contents .item_name {
  margin-bottom: 10px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.main_contents .contents .item_name span {
  font-size: 16px;
  font-weight: 500;
}

.main_contents .contents .flex_grow {
  flex-grow: 1;
}

.main_contents .contents .item_color {
  margin-bottom: 8px;
}

.main_contents .contents .item_color p {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.main_contents .contents .item_color p span {
  font-size: 18px;
}

.main_contents .contents .item_text {
  margin-bottom: 16px;
}

.main_contents .contents .item_text p {
  margin-bottom: 8px;
  padding: 16px;
  text-align: left;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  border-radius: 3px;
}

.main_contents .contents .item_img_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.main_contents .contents .item_img_flex p {
  border: none;
  padding: 8px;
  font-size: 14px;
}

.main_contents .contents .item_img_flex .img_wrap {
  width: 50%;
}

.bg_gray {
  background-color: #eee;
}

.main_contents .contents .marker {
  background: linear-gradient(transparent 60%, #f9ff00 40%);
}

/* =============================================
ボタン
============================================= */

.btn_more_01 {
  margin-bottom: 8px;
}

.btn_more_01 .img_wrap {
  overflow: hidden;
}

.btn_more_01 a .img_wrap img {
  transition: transform 0.3s ease;
}

.btn_more_01 a:hover .img_wrap img {
  transform: scale(1.1);
}

.btn_more_02 {
  width: 248px;
  margin: 0 auto;
}

.btn_more_02 a {
  position: relative;
  width: 100%;
  padding: 1.1rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  background-color: #333;
  transition: all 0.3s;
}

.btn_more_02 a:hover {
  color: #333;
  font-weight: 700;
  background-color: #ffd700;
}

/* =============================================
下層ページCSS
============================================= */
#riptieCarrying .fv {
  width: 100%;
  padding: 0;
  background-color: #fff;
}

#riptieCarrying .fv h1 {
  width: 100%;
}

/* =============================================
下層ページボタンCSS
============================================= */

.main_contents .btn_wrap {
  display: flex;
  gap: 2px;
}

.main_contents .btn {
  width: calc(900px / 3);
}

.main_contents .btn a {
  position: relative;
  margin-bottom: 16px;
  padding: 8px;
  background-color: #e5e5e5;
  font-weight: 500;
  color: #333;
  text-align: center;
  transition: all 0.2s;
}

.main_contents .btn_back .arrow {
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 16px;
  left: 16px;
  top: calc(50% + 0.5px);
  transform: translateY(-50%);
  overflow: hidden;
}

/* SVG共通 */
.main_contents .btn_back .arrow_svg {
  position: absolute;
  top: 50%;
  left: 1px;
  width: 22px;
  height: auto;
  transform: translateY(-50%);
  will-change: transform, opacity;
}

.main_contents .btn_back .arrow_svg path {
  stroke: #333;
  stroke-width: 1;
  fill: #333;
}

/* ホバー */
.main_contents .btn a:hover {
  background-color: #333;
  color: #fff;
  font-weight: 400;
}

.main_contents .btn_back a:hover .arrow_svg path {
  stroke: #fff;
  stroke-width: 1;
  fill: #fff;
}
