img {
 /* image-rendering: -webkit-optimize-contrast;*/
	image-rendering: auto;
}
img {
  -webkit-user-drag: none; /* Chrome, Safari, Opera */
  -khtml-user-drag: none;  /* Konqueror */
  -moz-user-drag: none;    /* Firefox */
  -o-user-drag: none;      /* Opera */
  user-drag: none;         /* Standard property */
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
 	display: block;
}
.layout-content  {
	/*line-height: 1.6;*/
	line-height: 1.75;
	/*font-size: 15px;*/
	font-size: 16px;
	font-family: YakuHanJP_Noto, "HelveticaLTPro-Light", "Noto Sans JP", sans-serif;
	font-weight: 300;
	overflow-x: hidden;
	color: #565656;
	box-sizing: border-box;
	text-align: center;
	line-break: strict;
}
.layout-content img {
	width: 100%;
	vertical-align: top;
	display: block;
}
.layout-content a, .layout-content label{
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.layout-content a:hover {
	opacity: 0.6;
}
.layout-content h2 {
	font-size: 30px;
	font-weight: 500;
	padding-bottom: 0.8em;
	color: #947020;
	border-bottom: 2px solid #947020;
	display: inline-block;
	position: relative;
	margin-bottom: 1.5em;
	line-hright: 1.2;
}
.layout-content p {
	margin: 0;
	padding: 0;
}
.layout-content li {
  	list-style-type: none;
}
.layout-content section {
	width: 100%;
	padding: 7% 0;
}
.note {
	font-size: 1.2rem;
	line-height: 1.2;
	display: inline-block;
	vertical-align: baseline;
  	margin-top: 1em;
}
.flex {
	display: flex;
	align-items:center;
}
.inner {
	width: 100%;
	max-width:750px;
	margin: 0 auto;
}
.pc_only {
	display: block;
}
.sp_only {
	display: none;
}
.bigger_txt {
	font-size: 1.6em;
	line-height: 1.5;
}
.smaller_txt {
	font-size: 0.8em;
}
.honmin {
	font-family: YakuHanMP_Noto, "HonMinSKok-M", serif;
}
.bold {
	font-weight: 500;
	color: #947020;
}
.sup {
	font-size: 0.7em;
	vertical-align: 0.5em;
}
.btn {
	color: #947020;
	border: 1px solid #947020;
	border-radius: 4px;
	cursor: pointer;
	padding: 0.3em 0.8em;
	width: 100%;
	max-width: 180px;
	margin: 0.8em 0 0 auto;
	/*margin-left: auto;*/
	display: block;
	text-decoration: none;
	text-align: center;
	/*	
	background-image: url('../img/arrow_gold.svg');
	background-position: right;
    background-repeat: no-repeat;
	background-size: 23px auto;
	*/
}
.slash {
	height: 10px;
	background: linear-gradient(-60deg,transparent 35%,#EBDFC2 45%, #EBDFC2 55%,transparent 65%);
	background-size: 10px 10px;
	border: none;
	width: 25%;
	margin: 3em auto;
}
.marker {
	/*background: linear-gradient(transparent 70%, #FFF4C5 70%);*/
	color: #e2603b;
	font-weight: 500;
}
.marker_green {
	color: #429157;
	font-weight: 500;
}
.spacer {
	padding-top: 80px;
	margin-top: -80px;
}


@media screen and (max-width: 750px) {
	.btn {	
		margin: 0.8em auto;
	}		
	.layout-content h2 {
		font-size: 24px;
	}		
	.layout-content section {
		padding: 12% 0;
	}
	.inner {
		padding: 0 5%;
	}
	.pc_only {
		display: none;
	}
	.sp_only {
		display: block;
	}
	.note {
		font-size: 1.6rem;
		line-height: 1.38889;
	}
	.bigger_txt {
		font-size: 1.2em;
		line-height: 1.5;
	}
	/* ヘッダーの高さ分設定*/
	#nav_2,#nav_3,#nav_4 {
		padding-top: 63px;
		margin-top: -63px;
	}
}

/* loading */
.loading {
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,1.0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
    text-align: center;
    line-height: 0;
}
.loading .txt_area {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.loading p {
	font-size: 30px;
	height: 60px;
}
.loading .txt_1 {
	animation: fadeIn 1s ease 0s 1 normal backwards;
}
.loading .txt_2 {
	animation: fadeIn 1s ease 1s 1 normal backwards;
}
.loading .txt_3 {
	animation: fadeIn 1s ease 2s 1 normal backwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* loading END */

/* popup（campaign）*/
.popup {
	opacity: 0;
	visibility: hidden;
	transition: .6s;
}
.popup-img {
  	position: relative;
  	margin: 0 20px;
  }
.popup.is-show {
	opacity: 1;
	visibility: visible;
}
.popup-inner {
	z-index: 1000;
	position: fixed;
	max-width: 250px;
	bottom: 5%;
    right: 1%;
}
.popup-inner img {
	width: 100%;
}
.close-area {
    position: absolute;
    top: -10px;
    right: -10px;
	display:inline-block;
	cursor: pointer;
	text-align:center;
}
/* popup（campaign）END */

/* header */
.main-container {
	position: relative;
	padding-top: 10.5rem;
}
.header {
	width: 100%;
	padding: 15px 0!important;
	background: #ffffff;
	border-bottom: 1px solid #cccccc;
	position: fixed;
	top: 10.5rem;
	left: 0;
	z-index: 998;
}
.header ul {
	display: flex;
	justify-content: center;
	column-gap: 2%;
	padding: 0 2%;
}
.header li {
	position: relative;
	padding-right: 1rem;
}
.header li::after {
    width: 0.5rem;
    height: 0.5rem;
    position: absolute;
    top: calc(50% - 0.4rem);
    right: 0px;
    content: "";
    display: block;
    border-bottom: 0.1rem solid rgb(119, 119, 119);
    border-right: 0.1rem solid rgb(119, 119, 119);
    transform: rotate(45deg);
    transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header a {
	color: rgb(119, 119, 119);
	text-decoration: none;
}
/* header END */

.fv {
	margin: 0;
	padding-top: 5.5rem!important;
	padding-bottom: 3%!important;
}

@media screen and (max-width: 750px) {
	.close-area {
		max-width: 22px;
	}
	
	.loading p {
		font-size: 18px;
		height: 54px;
	}
	
	.popup-inner {
		z-index: 999;
		position: fixed;
		max-width: 750px;
		width: 100%;
		bottom: 0%;
		right: 0%;
	}
	
	.header {
		top: 12rem;
		padding: 8px 0!important;
	}
	.header ul {
		column-gap: 2%;
		padding: 0 2%;
	}
	.header li {
		font-size: 11px;
		line-height: 1.2;
	}
	.fv {
		padding-top: 3em!important;
	}
}

/* topmessage */
.topmessage {
	padding-top: 5%!important;
	background-image: url('../img/topmessage_bg.svg'), url('../img/topmessage_bg_btm.png');
    background-position: top, bottom;
    background-repeat: no-repeat, no-repeat;
	background-size: 100% auto;
}
.topmessage p {
	line-height: 2.5;
	margin-bottom: 50px;
	font-size: 18px;
}
.topmessage .bigger_txt {
	font-size: 1.7em;
	line-height: 1.6;
	color: #947020;
}
/* topmessage END */

/* balloon */
.fuwafuwa_box, .balloon_box {
	position: relative;
}
.fuwafuwa {
	max-width: 180px;
    position: absolute;
    top: 85%;
    left: 70%;
	animation: fuwafuwa 4s ease-in-out infinite alternate;
	transition: 2.0s ease-in-out;
}
.balloon {
	max-width: 230px;
    position: absolute;
    top: 80%;
    left: 72%;
	transition: 2.0s ease-in-out;
}
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}

@media screen and (max-width: 980px) {
	.balloon {
		max-width: 200px;
		top: 80%;
		left: 78%;
	}
	.fuwafuwa {
		top: 87%;
		left: 78%;
	}
}
@media screen and (max-width: 750px) {
	.topmessage .bigger_txt {
		font-size: 1.4em;
	}
	.topmessage p {
		line-height: 2.0;
	}
	.balloon {
		top: 85%;
		left: 78%;
	}
	.fuwafuwa {
		max-width: 23%;
		top: 95%;
	}
}
/* balloon END */

/* info */
.info {
	background-color: #fbf8f1;
}
.info .accordion .btn {
	/*background-color: #947020;*/
	color: #947020;
	margin-top: 1em;
}
.info_line {
	background-color: rgba(255,255,255,0.70);
	padding: 6% 8%;
	width: 100%;
	margin: 0 auto 2em;
}
.info_line p {
	text-align: left;
	padding: 1em 0;
}
.info .accordion_btn_inner {
	display: none;
}
.info_line a {
	color: #947020;
	cursor: pointer;
	text-decoration: none;
}

.info_line a:hover {
	opacity: 0.6;
}
/* info END */

/* aboutus */
.aboutus {
	background-image: url('../img/aboutus_bg.png');
    background-position: right top;
    background-repeat: no-repeat;
	background-size: 120% auto;
	background-color: #fdfdfd;
}
.aboutus_item {
	display: flex;
	align-items: center;
	margin: 5em auto;
	overflow: hidden;
}
.aboutus_item_sub .flex {
	align-items: flex-start;
	margin-top: 0.8em;
}
.aboutus_item img {
	width: 45%;
	border-radius: 8px;
	margin: 0 2em;
}
.aboutus_item p {
	width: 55%;
	margin: 0 auto;
	text-align: left;
}
.aboutus_item_sub img {
	width: 15%;
	margin: 0 1em 1em 0;
	border-radius: 8px;
}
.aboutus_item_sub p {
	width: 85%;
	text-align: left;
	margin: 0 auto;
}
.aboutus_item .bigger_txt {
	text-align: center;
	color: #947020;
	padding-bottom: 0.6em;
	border-bottom: 1px solid rgba(148,112,32,0.70);
	margin-bottom: 0.6em;
	display: block;
}
.aboutus_item_sub .bold {
	width: 100%;
}
/* aboutus END */

/* story */
.story .flex{
	margin-top: 1em;
	width: 100%;
	background-color: #EBF7E4;
	box-shadow: 2px 2px 3px rgba(188,188,188,0.50);
}
.story .flex img {
	width: auto;
	height: 100%;
	object-fit: cover;
}
.story p {
    padding: 3%;
	width: 100%;
	text-align: left;
}
.story .txt {
	background-color: #fff;
	box-shadow: 2px 2px 3px rgba(188,188,188,0.50);
}
/* story END */


/* message */
.usermessage {
	background-color: #f0e8d6;
	background-image: url('../img/usermessage_bg.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
	background-size: 100% auto;
}
.usermessage .note.end {
	text-align: right;
	width: 100%;
	display: block;
	margin-top: -4em;
}
.usermessage .box p {
    padding: 3%;
	width: 100%;
	text-align: left;
}
.usermessage .flex {
	align-items: flex-start;
}
.usermessage .flex img{
	width: 30%;
	max-width: 150px;
}
.usermessage .box li {
	width: 100%;
    background-color: #fbf8f1;
	margin-bottom: 3%;
	box-shadow: 2px 2px 3px rgba(188,188,188,0.90);
}
.usermessage .box .bigger_txt {
	margin-bottom: 0.7em;
}
.usermessage .box .txt {
	background-color: #fff;
}
.usermessage .slideshow {
  	display: flex;
	animation: loop-slide 60s infinite linear 1s both;
	margin: 0;
	padding: 0;
	width: max-content;
}
@keyframes loop-slide {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.usermessage .slideshow:hover {
  	animation-play-state: paused;
}
.usermessage .slide {
	list-style: none;
	width: 350px;
	height: 510px;
	padding: 1em;
	margin-right: 1em;
	background-color: #fff;
	box-shadow: 2px 2px 3px rgba(188,188,188,0.90);
	transition: all 0.2s;
	text-align: left;
	overflow: visible;
}
.usermessage .slide .ttl{
	border-bottom: 1px solid #947020;
	padding-bottom: 0.5em;
	width: 100%;
	margin-left: 0.8em;
}
.usermessage .slide:hover {
 	transform: translateY(-10px);	
}
.usermessage .slide img {
	width: auto;
	height: 100%;
	object-fit: cover;
}
.usermessage .slideshow_wrap02 {
	height: 590px;
}
.usermessage .slideshow_wrap02 .slide {
	margin: 0 0.5em 5px 0.5em;
}
.usermessage .slideshow_wrap02 .slide:hover {
	transform: none;
}
/* slider 矢印 */
.prev-arrow,
.next-arrow {
	display: block;
	width: 44px;
	height: 44px;
	background: #947020;
	border-radius: 50%;
	transition: all .3s ease;
	cursor: pointer;
	position:absolute;
	top: 0;
	bottom: 44px;
	margin: auto 0;
	z-index: 100;
}
.prev-arrow {
	transform: rotate(180deg);
	left: -10%;
}
.next-arrow {
	right: -10%;
}
.prev-arrow::before,
.next-arrow::before{
	position:absolute;
	content: "";
	width:10px;
	height:10px;
	border-right: 2px solid #FFF;
	border-top: 2px solid #FFF;
	top:0;
	bottom:0;
	left:-5%;
	right:0;
	margin:auto;
	transform:rotate(45deg);
}
@media screen and (max-width: 900px){
	.prev-arrow {
		left: -3%;
	}
	.next-arrow {
		right: -3%;
	}
}

@media screen and (max-width: 750px) {
	.usermessage .slideshow_wrap02,
	.usermessage .slideshow_wrap02 .slide {
		height: 520px;
	}
	.usermessage .slideshow_wrap02 {
		margin-bottom: 2em;
	}
	.prev-arrow,
	.next-arrow {
		width: 30px;
		height: 30px;
		bottom: 30px;
	}
	.prev-arrow::before,
	.next-arrow::before {
		width:8px;
		height:8px;
	}
}
/* slider 矢印 END */
/* message END */

/* rank */
.rank {
	background-color: #ece0ce;
	background-image: url('../img/rank_bg.jpg');
    background-position: top;
    background-repeat: no-repeat;
	background-size: 100% auto;
	position: relative;
}
.rank .btn {
	color: #fff;
	background-color: #226034;
	max-width: 200px;
	border: none;
	padding: 0.5em 2em;
	margin: 0.8em auto 2em;
	/*background-image: url('../img/arrow_white.svg');*/
}
.rank .flex {
	gap: 14px;
}
.rank .flex img {
	margin-top: 14px;	
}
.rank_items {
	overflow: hidden;
	margin-bottom: 2em;
}
.rank_items ul {
	animation: marquee-left 60s linear infinite;
	display: flex;
	margin: 0;
	padding: 0;
	width: max-content;
}
.rank_items ul li {
	list-style: none;
	padding: 0 10px;
	width: calc(100vw / 3 - 20px);
}
.rank_items img {
	display: block;
	width: 100%;
}
@keyframes marquee-left {
	from {
		transform: translateX(-50%);
	}
	to {
		transform: translateX(0%);
	}
}
/* rank END */

@media screen and (max-width: 750px) {
	.info_line {
		margin: 5% 0;
	}
	
	.aboutus {
		background-size: 200% auto;
	}
	.aboutus_item {
		display: block;
		margin: 0 auto 1.5em;
		width: 85%;
	}
	.aboutus_item p {
		width: 100%;
		margin: 0.5em 0;
	}
	.aboutus_item img{
		width: 90%;
		margin: 0.5em auto;
	}
	.aboutus_item_sub .flex{
		display: block;
	}
	.aboutus_item_sub {
		width: 85%;
		margin: 0 auto 2em;
	}
	.aboutus_item_sub .bold{
		width: 85%;
		margin: 0 auto;
	}
	.aboutus_item_sub img {
		float: right;
		width: 95px;
		margin: 0 0 0.5em 0.5em;
	}
	
	.usermessage .box p {
    	padding: 5%;
	}
	.usermessage .note.end {
		margin-top: 0;
		padding: 0 0 3em 0;
		color: #565656;
	}
	.usermessage .box .bigger_txt {
		font-size: 1.2em;
		font-size: 1.2em;
	}
	.usermessage .slideshow:hover {
		animation-play-state: running;
	}
	.usermessage .slideshow:active {
		animation-play-state: paused;
	}
	.usermessage .slide {
		width: 300px;
		height: 580px;
	}
	
	.rank {
		background-position: top;
		background-size: 205% auto;
	}
	.rank .flex {
		display: block;
	}
	.rank .flex img {
		width: 100%;
	}
	.rank .flex img+img {
		margin-left: 0;
	}
	.rank_items ul li {
		list-style: none;
		padding: 0px;
		width: calc(100vw / 1);
	}
}

/* quiz */
.quiz {
	background-color: #fefefe;
	background-image: url('../img/quiz_bg.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
	background-size: 100% auto;
}
.a_txt .btn {
		margin: 0.8em auto;
}
.quiz_box {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
  	align-items: center;
	padding: 0;
	margin-top: 5%;
}
.quiz_box li {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
	margin: 5px;
	box-shadow: 2px 2px 3px rgba(188,188,188,0.30);
}
.quiz_box li a {
	width: 200px;
	height: 200px;
	cursor: pointer;
	text-decoration: none;
	padding: 7%;
	font-weight: 400;
}
.orange li a {
	background-color: #FFF7E3;
	color: #e5a200;
}
.orange li:nth-child(2n) a {
	background-color: #FFF2D2;
}
.green li a {
	background-color: #EFF9EF;
	color: #20805D;
}
.green li:nth-child(2n) a {
	background-color: #E7F5E8;
}
.blue li a {
	background-color: #E8F0F6;
	color: #205380;
}
.blue li:nth-child(2n) a {
	background-color: #D8E7F5;
}
.q_num {
	text-align: center;
	font-weight: 500;
	font-size: 1.6em;
	color: #947020; 
	margin-bottom: 0.4em;
	/* text-shadow: 1px 1px 1px rgba(188,188,188,0.70); */
}
.q_txt {
	text-align: left;
	line-height: 1.4;
	padding: 3%; 

}
.a_num_ttl {
	text-align: center;
	font-weight: 500;
	font-size: 1.4em;
	color: #947020;
	border-bottom: 2px solid rgba(199,165,80,0.60);
	padding: 3% 6% 9%;
	margin: 0 3% 6%;
}

.a_num {
	text-align: center;
	font-weight: 500;
	font-size: 1.4em;
	color: rgba(199,165,80,1.00);
	/* border-bottom: 2px solid rgba(199,165,80,0.60); */
	padding: 3%;
	margin: 3%;
}
.a_txt {
	overflow-y: auto;
	overflow-x: hidden;
	text-align: left;
	margin: -6% 0 3%;
	padding: 3%; 
}
.a_txt img {
	width: 100%;
	padding-top: 3%;
}

.tab-wrap {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	margin: 3em 3em 0;
	justify-content: space-around;
}
.tab-label {
	cursor: pointer;
	flex: 1;
	font-weight: 500;
	order: -1;
	padding: 12px 24px;
	position: relative;
	text-align: center;
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
	user-select: none;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
	line-height: 1.3;
}
.tab-label .smaller_txt{
	color: rgba(199,165,80,0.70);
}
.tab-switch:checked + .tab-label {
	color: #947020;
	background-color: rgba(255,255,255,0.80)
}
.tab-label::after {
	background: #947020;
	bottom: 0;
	content: '';
	display: block;
	height: 2px;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transform: translateX(100%);
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s 80ms;
	width: 100%;
	z-index: 1;
}
.tab-switch:checked ~ .tab-label::after {
	transform: translateX(-100%);
}
.tab-switch:checked + .tab-label::after {
	opacity: 1;
	transform: translateX(0);
}
.tab-content {
	height:0;
	opacity:0;
	pointer-events:none;
	transform: translateX(-30%);
	transition: transform .3s 80ms, opacity .3s 80ms;
	width: 100%;
}
.tab-switch:checked ~ .tab-content {
	transform: translateX(30%);
}
.tab-switch:checked + .tab-label + .tab-content {
	height: auto;
	opacity: 1;
	order: 1;
	pointer-events:auto;
	transform: translateX(0);
}
.tab-wrap::after {
	content: '';
	order: -1;
	width: 100%;
}
.tab-switch {
	display: none;
}
/* quiz END */


/* message */
.message {
	background-image: url('../img/message_bg.png');
    background-position: bottom;
    background-repeat: no-repeat;
	background-size: 100% auto;
}
.message_wrap {
	box-shadow: 2px 2px 3px rgba(188,188,188,0.30);
	background-color: #fbf8f1;
	margin-bottom: 2em;
}
.message ul {
	display: flex;
	justify-content: center;
	column-gap: 2%;
	font-size: 1.1em;
	margin-bottom: 2em;
}
.message a {
	text-decoration: none;
}
.message .note.end {
	text-align: right;
	width: 100%;
	color: #fbf8f1;
}
.message .icon {
	padding: 0 0.4em;
	border-radius: 3px;
	margin-top: 0.5em;
	display: inline-block;
	background-color: #E6F2EA;
	color: #226034;
}
.message .ttl {
	text-align: left;
	width: 100%;
	padding: 3%;
}
.message .flex {
	align-items: flex-start;
}
.message .flex img{
	width: 30%;
	max-width: 150px;
}
.message .txt_wrap {
	background-color: rgba(255,255,255,0.90);
	padding: 3%;
	text-align: left;
	overflow: hidden;
}
.message .txt_wrap img{
	width: 20%;
	height: 20%;
	max-width: 150px;
	max-height: 300px;
	float: right;
	padding: 0.5em 0 0.5em 0.5em;
}
.message .accordion .btn {
	border: none;
	padding: 0;
	margin: 0.3em auto;
	max-width: 150px;
	position: relative;
}
.message .accordion .btn::before,
.message .accordion .btn::after {
	position: absolute;
	font-size: 8px;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s;
}
.message .accordion .btn::before {
  content: '＼';
  right: 20px;
}
.message .accordion .btn::after {
  content: '／';
  right: 13px;
}
.message .accordion .btn.open::before {
  right: 13px;
}
.message .accordion .btn.open::after {
  right: 20px;
}
.message .js-accordion_inner {
	display: none;
	padding-top: 1em;
}
/* message END */

/* others */
.history {
	padding-bottom: 30%!important;
	background-image: url('../img/history_bg.png');
    background-position: bottom;
    background-repeat: no-repeat;
	background-size: 100% auto;
	text-align: center;
}
.ending img {
	width: 80%;
	max-width: 280px;
	padding-top: 10%;
	margin: 0 auto;
}
/* others END */

@media screen and (max-width: 750px) {
.message .icon {
	font-size: 0.8em;
}	
.ending img {
	width: 60%;

}	
	.quiz {
		background-position: right bottom;
		background-size: 150% auto;
	}
	.quiz_box li {
		width: 48%;
		height: auto;
		min-height: 200px;
		margin: 1%;
	}
	.quiz_box li a {
		width: 100%!important;
		height: auto;
		min-height: 220px;
	}
	.orange li:nth-child(1) a, .orange li:nth-child(4) a, .orange li:nth-child(5) a {
		background-color: #FFF2D2!important;
	}
	.orange li:nth-child(2) a, .orange li:nth-child(3) a, .orange li:nth-child(6) a {
		background-color: #FFF7e3!important;
	}
	.green li:nth-child(1) a, .green li:nth-child(4) a, .green li:nth-child(5) a {
		background-color: #E7F5E8!important;
	}
	.green li:nth-child(2) a, .green li:nth-child(3) a, .green li:nth-child(6) a {
		background-color: #EFF9EF!important;
	}
	.blue li:nth-child(1) a, .blue li:nth-child(4) a, .blue li:nth-child(5) a {
		background-color: #D8E7F5!important;
	}
	.blue li:nth-child(2) a, .blue li:nth-child(3) a, .blue li:nth-child(6) a {
		background-color: #E8F0F6!important;
	}
	.tab-wrap {
		margin: 0;
	}
	
	.message {
		padding-bottom: 23%!important;
	}
	.message .note.end {
		color: #565656;
	}
	.message .txt_wrap img{
		width: 35%;
		height: 35%;
	}
}


/* 非表示 */
.in-minicart_contents, .nav-action__item--cart.in-cart a:after {
	display: none!important;
}
.nav-sitemap__column:nth-of-type(4) .nav-sitemap__item:nth-of-type(2) {
	display: none!important;
}
.nav-support__item:nth-of-type(2) {
	display: none!important;
}


/*▼2025/10/17 add*/
	.usermessage .flex.center {
		align-items: center;
	}
	.usermessage .txt_wrap {
		background-color: #ffffff;
		padding: 3%;
		text-align: left;
		overflow: hidden;
	}
	.usermessage .txt_wrap p {
		padding: 0;
	}
	.usermessage .txt_wrap .bold {
		margin-bottom: 3%;
		display: inline-block;
	}
	.usermessage .txt_wrap .user_box {
		margin-bottom: 3%;
	}
	.usermessage .txt_wrap .user_icon {
		width: 15%;
		height: 15%;
		max-width: 150px;
		max-height: 300px;
		float: left;
		padding: 0.5em 0.5em 0.5em 0;
	}
	.usermessage .txt_wrap .user_txt {
		padding: 0 0 0 3%;
	}
	.usermessage .txt_wrap hr {
		 height: 0.5px;
		 background-color: #947020;
		 width: 94%;
		 border: none;
		margin: 3% 0 3% 0;
	}
	.usermessage .txt_wrap .group_photo {
		margin-top: 3%;
	}
	.usermessage .accordion .btn {
		border: none;
		padding: 0;
		margin: 0.3em auto;
		max-width: 150px;
		position: relative;
	}
	.usermessage .accordion .btn::before,
	.usermessage .accordion .btn::after {
		position: absolute;
		font-size: 8px;
		top: 50%;
		transform: translateY(-50%);
		transition: .3s;
	}
	.usermessage .accordion .btn::before {
	  content: '＼';
	  right: 20px;
	}
	.usermessage .accordion .btn::after {
	  content: '／';
	  right: 13px;
	}
	.usermessage .accordion .btn.open::before {
	  right: 13px;
	}
	.usermessage .accordion .btn.open::after {
	  right: 20px;
	}
	.usermessage .js-accordion_inner {
		display: none;
		padding-top: 1em;
	}
	@media screen and (max-width: 750px) {
		.usermessage .txt_wrap {
			padding: 5%;
		}
		.usermessage .txt_wrap .user_icon {
			width: 20%;
			width: 20%;
		}
	}
	
	.txt_area_staff {
		color: #947020;
		font-weight: 300;
	}