@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


/* 202602_ヒトツナギデザイン_スマホトップ改修 */

/* 共通 */
:root{
  --spHeaderH: 55px;  /* 上の固定ヘッダー高 */
}
#page {
    overflow-x: hidden !important;
    overflow-y: visible !important;
}
.spCenterBox {
	margin: 0 15px;
}

.img100auto {
	width: 100%;
	height: auto;
}

/* トップへ戻るボタン */
#sps-floating-menu {
	bottom: 85px;
}

/* ヘッダー共通 */
#common-header.spHeader {
	padding-bottom: 0 !important;
	height: 52px !important;
	border-top: 3px solid #FFC100;
	background-image: url(/hpgen/smp/img/2026RN/header/header_backImg.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.spHeader__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	transition: all .4s ease;
	transform: translateY(0);
	opacity: 1;
}

.spHeader.searchOpen .spHeader__inner {
	transform: translateY(-101%);
	opacity: 0;
}

.spHeader__left {
	display: flex;
	align-items: center;
}

#common-header.spHeader h1 {
	width: 138px !important;
	max-height: 40px !important;
	padding: 0;
}

.spHeader__img {
	width: 63px;
	margin-left: 3px;
}

.spHeader__menuList {
	display: flex;
	align-items: center;
	gap: 14px;
}

.spHeader__menuList li {
	width: 35px;
}

.spHeader__menuList li a {
	display: block;
}

.spHeader__menuList img {
	width: 100%;
	height: auto;
}

#common-header.spHeader .open-btn {
	position: relative;
	top: inherit;
	right: inherit;
	background: none;
	background-size: auto;
	width: auto;
	height: auto;
	z-index: 1;
}

#common-header.spHeader #search-wrap {
	top: -101%;
	right: inherit;
	border-radius: 0;
	left: 0;
	width: 100%;
}

#common-header.spHeader #search-wrap.panelactive {
	z-index: 201;
	right: inherit;
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	top: -3px;
}

.spHeader__serachWrap {
	padding: 10px 15px;
}

.spHeader__serachWrap p {
	margin: 0;
}

#common-header.spHeader #search-wrap input[type="text"] {
	width: calc(100% - 20px);
	border: 1px solid #E2B087;
	border-radius: 3px;
	background: #FFFFEC;
	padding: 9px;
	height: 16px;
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	color: #B7B7B7;
}

#common-header.spHeader #search-wrap input[type="text"]:focus {
	background: #FFFFEC;
}

#common-header.spHeader #search-wrap input[type="submit"] {
	position: absolute;
	top: 13px;
	right: 20px;
	background: url(/hpgen/smp/img/2026RN/header/icon_search.png) no-repeat center center;
	background-size: 28px 28px;
	width: 30px;
	height: 30px;
	padding: 0;
}

/* フローティングメニュー */
.spFloating {
	position: fixed;
	bottom: 0;
	left: 0;
	background: #FFFFA7;
	border-top: 3px solid #FFC100;
	width: 100%;
	z-index: 100;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.spFloating__inner {
	padding: 10px 0px 10px 30px;
	position: relative;
}

.spFloating__left {
	display: flex;
	align-items: center;
	gap: 28px;
}

.spFloating__leftBox {
	display: block;
	height: 49px;
}


.spFloating__cart {
	position: absolute;
	bottom: -10px;
	right: 70px;
}

.spFloating__cart .cart_info {
	position: relative;
}

.spFloating__cart .cart_info .item_count {
	position: absolute;
	top: 22px;
	right: 9px;
	font-size: 10px;
	background: #D52D00;
	color: #ffffff;
	border-radius: 999px;
	width: 14px;
	height: 14px;
	line-height: 14px;
	text-align: center;
}

.spFloating__burger {
	position: absolute;
	bottom: 23px;
	right: 15px;
	width: 32px;
	height: 24px;
}

.spFloating__burger img {
	width: 32px;
	height: auto;
}


/* スマホのメニュー */

/* メニュー開いてる間スクロール禁止 */
body.menuOpen {
  overflow: hidden;
}
.spMenu {
	font-family: "Noto Sans JP", sans-serif;
	position: fixed;
	/* top: 55px; */
	top: var(--spHeaderH);
	bottom: 0;
	right: 0;
	background: #ffffff;
	width: 311px;
	z-index: 10001;
	/* height: calc(100dvh - 55px); */
	height: auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
  transform: translateX(105%);
  transition: transform .25s ease;
}
.spMenu.open {
  transform: translateX(0);
}
#spMenu__close {
  position: fixed;
  inset: 0;
	top: 55px;
  background: rgba(106, 106, 106, 0.65);
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
}
#spMenu__close::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: #FFFFA7;
}
#spMenu__close.open{
  opacity: 1;
  pointer-events: auto;
}
.spMenu__close img {
	position: absolute;
	bottom: 16px;
	right: 327px;
	z-index: 1;
}

.spMenu__list {
	border-top: 3px solid #FFC100;
}

.spMenu__list.is-orange {
	border-bottom: 3px solid #FFC100;
}

.spMenu__listItem {
	border-bottom: 1px solid #FFC100;
}
.spMenu__listItem:last-child {
	border-bottom: none;
}

.spMenu__listItem a {
	display: flex;
	align-items: center;
	padding: 10px;
	gap: 10px;
	color: #000;
	font-size: 14px;
	font-weight: 900;
	position: relative;
}
.spMenu__listItem a::after {
	display: block;
	content: "";
	background-image: url(/hpgen/smp/img/2026RN/header/menu_arrowBLK.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 13px;
	height: 19px;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	position: absolute;
}
.spMenu__list.is-orange .spMenu__listItem a {
	background-color: #FFFFEC;
}
.spMenu__list.is-orange .spMenu__listItem a::after {
	background-image: url(/hpgen/smp/img/2026RN/header/menu_arrowORG.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.spMenu__listItem.has-child {
	position: relative;
}
.spMenu__listItem.has-child .spMenu__childBtn {
	position: absolute;
	top: 0;
	right: 0;
	width: 55px;
	height: 55px;
	z-index: 2;
	background-image: url(/hpgen/smp/img/2026RN/header/menu_plus.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 18px 18px;
	display: block;
}
.spMenu__listItem.has-child a::after {
	display: none;
}

.spMenu__ChildList {
	display: none;
	flex-wrap: wrap;
}
.spMenu__listItem.is-open .spMenu__childBtn {
	background-image: url(/hpgen/smp/img/2026RN/header/menu_minus.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 18px 4px;
}
.spMenu__ChildList li {
	border-top: 1px solid #FFC100;
	width: 50%;
	box-sizing: border-box;
	position: relative;
}
.spMenu__ChildList > li:not(.fullWide):nth-child(even) {
  border-left: 1px dashed #FFC100;
}
.spMenu__ChildList li a {
	display: block;
	padding: 4px 10px;
	font-size: 16px;
}
.spMenu__ChildList li::after {
	display: block;
	content: "";
	background-image: url(/hpgen/smp/img/2026RN/header/menu_arrowSmall.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 7px;
	height: 10px;
	top: 50%;
	right: 11px;
	transform: translateY(-50%);
	position: absolute;
}
.spMenu__ChildList li a .fz12 {
	font-size: 12px;
}
.spMenu__ChildList li a .small {
	font-size: 10px;
}
.spMenu__ChildList li.fullWide {
	width: 100%;
	text-align: center;
}
.spMenu__ChildList.is-category li a {
	font-size: 12px;
	padding: 8px 10px;
}
.spMenu__ChildList.is-category li.fz11 a {
	font-size: 11px;
}

/* フッター共通 */
#footer .class,#footer .ch {
	display: none;
}
#footer section {
	margin: 0!important;
}
.spFooter {
	font-family: "Noto Sans JP", sans-serif;
}

.spFooter__annaiTitle {
	text-align: center;
	font-size: calc(28 / 375 * 100vw);
	font-weight: 700;
	padding-left: 0;
	line-height: 1.5;
}

.spFooter__annaiTitle span {
	font-size: calc(24 / 375 * 100vw);
	margin-left: calc(4 / 375 * 100vw);
}

.spFooter__annaiTitle img {
	vertical-align: sub;
	width: calc(222 / 375 * 100vw);
}

.spFooter__annaiBoxTitle {
	margin: 32px 0 0;
	position: relative;
}

.spFooter__annaiBoxTitle::after {
	display: block;
	content: "";
	background-image: url(/hpgen/smp/img/2026RN/footer/annnai_arrow.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: calc(11 / 375 * 100vw);
	height: calc(18 / 375 * 100vw);
	top: 50%;
	right: calc(18 / 375 * 100vw);
	transform: translateY(-50%) rotate(90deg);
	position: absolute;
	transition: all .35s ease;
}

.spFooter__annaiBox.is-open .spFooter__annaiBoxTitle::after {
	transform: translateY(-50%) rotate(-90deg);
}

.spFooter__annaiBoxContents {
	margin: 0 15px 0;
	max-height: 0;
	overflow: hidden;
	transition: all .35s ease;
}

.spFooter__annaiBox.is-open .spFooter__annaiBoxContents {
	max-height: 1000px;
	margin-top: 16px;
}

.spFooter__annaiRead {
	text-align: center;
	font-family: "ヒラギノ丸ゴ Pro W8", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
	font-size: calc(16 / 375 * 100vw);
	font-weight: 900;
	line-height: 1.3;
}

.spFooter__annaiRead .f24 {
	font-size: calc(24 / 375 * 100vw);
}

.spFooter__annaiRead .red {
	color: #CD0000;
}

.spFooter__annaiPtag {
	font-size: calc(14 / 375 * 100vw);
	text-align: center;
	line-height: 1.4;
	font-weight: 500;
	margin: 14px 0 !important;
}

.spFooter__annaiPtag a {
	text-decoration: underline;
	color: #0055FF;
}

.spFooter__annaiPtag .kome {
	font-weight: 400;
	font-size: calc(11 / 375 * 100vw);
	display: block;
}

.spFooter__annaiPtag.is-left {
	text-align: left;
}

.spFooter__annaiTextLink {
	text-align: right;
	display: block;
}

.spFooter__annaiCenter {
	text-align: center;
}

.spFooter__annaiCenter .spFooter__annaiPtag {
	text-align: left;
	display: inline-block;
	margin: 0 !important;
}

.spFooter__annaiOrange {
	background: #ffecca;
	font-weight: 700;
	font-size: calc(15 / 375 * 100vw);
	text-align: center;
	padding: 2px;
}

.spFooter__annaiList {
	display: flex;
	gap: 5px 2%;
	margin: 10px auto;
	padding: 0;
	justify-content: center;
	list-style-type: none !important;
	flex-wrap: wrap;
}

.spFooter__annaiList li {
	width: 32%;
	list-style: none;
	font-size: calc(14 / 375 * 100vw);
}

.spFooter__annaiList li::before {
	content: "●";
	color: #f07000;
	margin-right: 3px;
}

.spFooter__annaiCredit {
	margin: 10px 0 16px;
}

.spFooter__contact {
	margin-top: 32px;
}

.spFooter__contactWrap {
	margin: 15px 15px 0;
}

.spFooter__contactList .pTag {
	font-size: calc(14 / 375 * 100vw);
	line-height: 1.4;
	font-weight: 500;
	position: relative;
	padding-left: 1.2em;
}

.spFooter__contactList .pTag::before {
	content: "●";
	color: #3C9E2A;
	position: absolute;
	left: 0;
	top: 0;
}

.spFooter__contactBox {
	margin-top: 24px;
}

.spFooter__contactTel {
	width: 91.4%;
	display: block;
}

.spFooter__contactText {
	font-size: calc(16 / 375 * 100vw);
	line-height: 1.4;
	font-weight: 500;
	text-align: center;
}

.spFooter__contactText .small {
	font-size: calc(12 / 375 * 100vw);
}

.spFooter__contactKome {
	font-size: calc(11 / 375 * 100vw);
	color: #CE0000;
	text-align: center;
}

.spFooter__contactMail {
	display: block;
	margin-top: 15px;
	width: 99%;
}

.spFooter__netShop {
	margin-top: 32px;
}

.spFooter__netShopWrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 16px;
}

.spFooter__netShopWrap a {
	width: 20%;
}

.spFooter__calender {
	margin-top: 32px;
}

.spFooter__calendarWrap {
	margin-top: 16px;
	text-align: center;
}
.spFooter__calendarWrap #calendar_div {
	font-size: 14px;
}

.spFooter__sns {
	margin-top: 32px;
}

.spFooter__snsList {
	display: flex;
	gap: 4px;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}

.spFooter__snsList li {
	list-style: none;
}

.spFooter__bnr {
	margin-top: 32px;
}

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

.spFooter__bnr2col a {
	width: 48.5%;
	display: block;
}

.spFooter__bnr1col a {
	display: block;
	margin-top: 16px;
}

.spFooter__bnrText {
	font-size: calc(10 / 375 * 100vw);
	margin: 15px !important;
}

.spFooter__nav {
	background: #4D4D4D;
	color: #ffffff;
	padding: 10px;
	margin-top: 30px;
}

.spFooter__nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 20px;
	justify-content: center;
}

.spFooter__nav ul li {
	list-style: none;
}

.spFooter__nav ul li a {
	font-size: calc(12 / 375 * 100vw);
	color: #ffffff;
	text-decoration: underline;
}

.spFooter__copyright {
	padding: 24px 0 60px;
	text-align: center;
	font-size: calc(14 / 375 * 100vw);
}

.spFooter__copyright a {
	color: #0055FF;
}


/* トップページ */
.top__announce {
	margin: 15px;
}

#top_slider .swiper-container {
	padding-bottom: 40px;
}

#top_slider .swiper-slide {
	width: calc(100% - 30px) !important;
}

#top_slider .swiper-container-horizontal>.swiper-pagination-bullets {
	bottom: 5px;
}

#top_slider .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 6px;
}

#top_slider .swiper-pagination-bullet {
	background: #FDFCED;
	border: 2px solid #FFD638;
	opacity: 1;
}

#top_slider .swiper-pagination-bullet-active {
	background: #CD0000 !important;
}

.top__calendar2602 {
	margin: 0 15px;
	position: relative;
}

.top__calendar2602 .top__calendarDate {
	position: absolute;
	bottom: calc(24 / 375 * 100vw);
	right: calc(241 / 375 * 100%);
	font-size: calc(27 / 375 * 100vw);
  /* letter-spacing: 0.03em; */
	/* font-family: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif; */
	font-weight: 900;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.top__sendFree {
	margin: 10px 15px;
	display: block;
}

/* トップページ週間ランキング */
.top__weeklyRank_title {
	margin: 30px 30px 10px;
}

.mp_ranklistpattern_layout1 {
	height: calc(247 / 375 * 100vw);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(/hpgen/smp/img/2026RN/top/weekly_rankBgIng.png);
}

.mp_ranklistpattern_layout1 .itemlist {
	display: flex;
	justify-content: space-between;
	width: 92% !important;
	margin: 0 auto !important;
	padding-top: calc(60 / 375 * 100vw);
	padding-bottom: calc(25 / 375 * 100vw);
}

.mp_ranklistpattern_layout1 .itemlist .prize {
	display: none;
}

.mp_ranklistpattern_layout1 .itemlist li {
	border: none;
	background: #ffffff;
	width: 29%;
	text-align: center;
	line-height: 1.5;
}

.mp_ranklistpattern_layout1 .itemlist li a {
	display: flex;
	flex-direction: column;
	background: none;
	width: 100%;
	padding: 0;
	color: #0055FF;
	text-decoration: underline;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(9 / 375 * 100vw);
	font-weight: 700;
}

.mp_ranklistpattern_layout1 .li_l {
	float: none;
	margin: 0 auto;
}

.mp_ranklistpattern_layout1 .li_r {
	padding-bottom: 0;
	padding-top: calc(24 / 375 * 100vw);
	position: relative;
}

.mp_ranklistpattern_layout1 .li_r .price {
	color: #CD0000;
	font-size: calc(13 / 375 * 100vw);
	position: absolute;
	top: calc(2 / 375 * 100vw);
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-decoration: none !important;
}

.mp_ranklistpattern_layout1 .imgborder {
	border: none;
}

.mp_ranklistpattern_layout1 .itemlist .tag {
	display: none;
}

/* トップページ新着商品 */
.mp_newlistpattern_layout4 {
	margin: 16px auto 0;
	width: 95%;
}

.loadImgSlidernew {
	width: 100% !important;
	margin: 0 auto !important;
}

.imgSlidernew.slick-slider {
	margin-bottom: 0;
}

.imgSlidernew .slick-slide {
	padding: 0 5px;
	position: relative;
}

.mp_newlistpattern_layout4 a .li_r {
	padding-bottom: 0;
	padding-top: calc(28 / 375 * 100vw);
	color: #0055FF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(9 / 375 * 100vw);
	font-weight: 700;
	margin: 0 !important;
}

.mp_newlistpattern_layout4 .li_r .price {
	color: #CD0000;
	font-size: calc(13 / 375 * 100vw);
	position: absolute;
	top: calc(115 / 375 * 100vw);
	font-weight: 700;
	font-family: "Noto Sans JP", sans-serif;
	left: 60%;
	transform: translateX(-50%);
	width: 100%;
}

.imgSlidernew .slick-next:before,
.imgSlidernew .slick-prev:before {
	content: "";
}

.imgSlidernew .slick-next,
.imgSlidernew .slick-prev {
	width: 18px !important;
	height: 30px !important;
	z-index: 10;
	bottom: 30%;
}

.imgSlidernew .slick-next {
	background: url("/hpgen/smp/img/2026RN/top/new_item_next.svg") no-repeat center center;
	background-size: cover;
	right: 0;
}

.imgSlidernew .slick-prev {
	background: url("/hpgen/smp/img/2026RN/top/new_item_prev.svg") no-repeat center center;
	background-size: cover;
	left: 0;
}

#mp_txt_new_button {
	display: none !important;
}


.top__viewMore {
	width: 46%;
	margin: 20px auto;
	display: block;
}

.top__search {
	margin-top: 32px;
}

.top__searchList {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
	justify-content: center;
}

.top__searchList li {
	width: 47%;
	list-style: none;
}

.top__panemoku {
	margin-top: 32px;
}

.top__panemokuTitle {}

.top__pText {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 10px;
	margin: 20px 30px !important;
	font-weight: bold;
}

.top__pText.mt-10 {
	margin-top: 10px !important;
}

.top__panemokuWrap {
	position: relative;
	margin-top: 16px;
}

.top__panemokuLink {
	position: absolute;
	width: 46%;
	left: 50%;
	transform: translateX(-50%);
	bottom: calc(15 / 375 * 100vw);
}

.top__matomegai {
	margin-top: 32px;
}

.top__matomegaiWrap {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(/hpgen/smp/img/2026RN/top/matomegai_back.png);
	padding: 24px 15px;
	display: flex;
	justify-content: space-between;
	row-gap: 20px;
	flex-wrap: wrap;
}

.top__matomegaiBox {
	width: 48%;
}

.top__matomegaiBoxTitle {
	font-size: calc(14 / 375 * 100vw);
	text-align: center;
	line-height: 1.3;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
	position: relative;
	padding: 0;
}

.top__matomegaiBoxTitle::before {
	display: block;
	content: "";
	background-image: url(/hpgen/smp/img/2026RN/top/matomegai_icon1.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: calc(17 / 375 * 100vw);
	height: calc(27 / 375 * 100vw);
	bottom: 0;
	left: calc(10 / 375 * 100vw);
	position: absolute;
}

.top__matomegaiBoxTitle::after {
	display: block;
	content: "";
	background-image: url(/hpgen/smp/img/2026RN/top/matomegai_icon2.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: calc(17 / 375 * 100vw);
	height: calc(27 / 375 * 100vw);
	bottom: 0;
	right: calc(10 / 375 * 100vw);
	position: absolute;
}

.top__matomegaiBoxTitle.is-self::before {
	left: calc(6 / 375 * 100vw);
}

.top__matomegaiBoxTitle.is-self::after {
	right: calc(6 / 375 * 100vw);
}

.top__matomegaiBoxTitle .under-line {
	background: linear-gradient(transparent 80%, rgba(217, 167, 0, 0.4) 80%);
}

.top__matomegaiBoxTitle.is-medama .under-line {
	background: linear-gradient(transparent 80%, rgba(255, 137, 0, 0.4) 80%);
}

.top__matomegaiBoxTitle.is-self .under-line {
	background: linear-gradient(transparent 80%, rgba(164, 202, 66, 0.4) 80%);
}

.top__matomegaiBoxTitle.is-event .under-line {
	background: linear-gradient(transparent 80%, rgba(141, 179, 227, 0.4) 80%);
}

.top__matomegaiBoxTitle .big {
	font-size: calc(16 / 375 * 100vw);
	color: #A96600;
}

.top__matomegaiBoxTitle.is-medama .big {
	color: #E46800;
}

.top__matomegaiBoxTitle.is-self .big {
	color: #147700;
}

.top__matomegaiBoxTitle.is-event .big {
	color: #0063B1;
}

.top__matomegaiBoxLink {
	margin-top: 8px;
	display: block;
}

.top__kanji {
	margin-top: 20px;
}

.top__kanjiSubTitle {
	text-align: center;
	font-size: calc(16 / 375 * 100vw);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
	margin: 10px 0 0;
}

.top__kanjiSubTitle.mt-sm {
	margin-top: 2px;
}

.top__kanjiBox {
	position: relative;
}

.top__kanjiLink {
	position: absolute;
	width: 88%;
	left: 50%;
	transform: translateX(-50%);
	top: calc(22 / 375 * 100vw);
	display: block;
}

.top__faq {
	margin: 20px 15px 0;
	border: 4px solid #4D9DCF;
	border-radius: 16px;
}

.top__faqBorder {
	margin: 3px;
	border-radius: 10px;
	border: 3px solid rgba(77, 157, 207, 0.5);
	position: relative;
	padding: 30px 16px;
}

.top__faqTopImg {
	position: absolute;
	width: 90px;
	height: 62px;
	top: -16px;
	left: -10px;
}

.top__faqTitle {
	text-align: center;
	font-size: calc(20 / 375 * 100vw);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
}

.top__faqList {
	list-style-type: none !important;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 18px;
}

.top__faqList li a {
	background: #E8F2F7;
	border-radius: 6px;
	display: block;
	color: #000;
	font-size: calc(13 / 375 * 100vw);
	padding: 10px 24px 10px 12px;
	font-family: "Noto Sans JP", sans-serif;
	position: relative;
}

.top__faqList li a::after {
	display: block;
	content: "";
	background-image: url(/hpgen/smp/img/2026RN/top/faq_arrow.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: calc(21 / 375 * 100vw);
	height: calc(20 / 375 * 100vw);
	top: 50%;
	right: calc(2 / 375 * 100vw);
	transform: translateY(-50%);
	position: absolute;
}

.top__faqBtn {
	margin: 16px auto 0;
	width: 54%;
	display: block;
}

.top__news {
	margin-top: 32px;
}

.top__newsWrap {
	margin-top: 15px;
}

.top__newsBox {
	border: 1px solid #CCCCCC;
	overflow-y: scroll;
	overflow-x: hidden;
	padding: 20px 15px;
	height: 260px;
}

/* スクロールバー幅 */
.top__newsBox::-webkit-scrollbar {
	width: 10px;
}

/* 背景 */
.top__newsBox::-webkit-scrollbar-track {
	background: #F4F4F4;
}

/* つまみ */
.top__newsBox::-webkit-scrollbar-thumb {
	background: #CCCCCC;
	border-radius: 9px;
}

.top__newsTable tr:first-child th p {
	margin-top: 0;
}

.top__newsTable th,
.top__newsTable td {
	display: block;
}

.top__newsTable th {
	text-align: left;
}

.top__newsTable td {
	border-bottom: 2px dotted #ccc;
}