
@charset "utf-8";

/* メイン */
.main {
	width: 1000px;
	margin: 0 auto;
}

/* メインナビ */
.main_nav_wrapper {
	position: relative;
	display: block;
	margin-top: 8%;
}

.main_nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 6.6667%;
}

.main_nav > li {
	flex-basis: 33.33%;
}

.main_nav > li:nth-child(4),
.main_nav > li:nth-child(5) {
	flex-basis: 50%;
}

.main_nav > li > a {
	display: block;
	padding: 7px 5px;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	background-color: #2c1b1e;
	border-radius: 15px;
}

.main_nav > li:nth-child(1) > a,
.main_nav > li:nth-child(4) > a {
	margin-right: 5px;
}

.main_nav > li:nth-child(2) > a {
	margin: 0 5px;
}

.main_nav > li:nth-child(3) > a,
.main_nav > li:nth-child(5) > a {
	margin-left: 5px;
}

.main_nav > li:nth-child(4) > a,
.main_nav > li:nth-child(5) > a {
	margin-top: 10px;
}

.main_nav > li:hover > a {
	position: relative;
	color: #fff;
	background-color: #604243;
}

.main_nav > li:hover > a::after {
	position: absolute;
	bottom: -64px;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -5px;
	border-right: 5px solid transparent;
	border-bottom: 16px solid #604243;
	border-left: 5px solid transparent;
	content: '';
}

.main_nav > li:nth-child(4):hover > a::after,
.main_nav > li:nth-child(5):hover > a::after {
	bottom: -24px;
}

/* サブナビ */
.main_nav > li .menu_sub_wrapper {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 2;
	width: 100%;
	padding-top: 23px;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.main_nav > li:hover .menu_sub_wrapper {
	visibility: visible;
	opacity: 1;
}

.menu_sub {
	margin: 0 6.6667%;
	padding: 16px 24px;
	background-color: #604243;
	border-radius: 6px;
}

.menu_sub > li > a {
	display: block;
	padding: 10px;
	color: #4c1f0f;
	font-size: 14px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	line-height: 1.5;
	text-decoration: none;
}

.menu_sub > li > a:hover {
	color: #fff;
	background-color: #604243;
}

.menu_sub_inner dl {
	padding: 8px 0;
	color: #fff;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

.menu_sub_inner dl:not(:first-child) {
	margin-top: 8px;
}

.menu_sub_inner dl:not(:last-child) {
	border-bottom: 1px solid #887172;
}

.menu_sub_inner dt {
	font-weight: bold;
	font-size: 12px;
	line-height: 1;
}

.menu_sub_inner dd {
	margin-top: 10px;
}

.menu_sub_inner dd > ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.menu_sub_inner dd > ul > li {
	margin-left: 12px;
}

.menu_sub_inner dd > ul > li > a {
	display: block;
	padding: 4px 4px 4px 8px;
	font-size: 12px;
	line-height: 1.4;
	background: url(https://gigaplus.makeshop.jp/honeyshop/img/common/menu_sub_arrow.svg) no-repeat left center / 4px auto;
}

.menu_sub_inner dd > ul > li > a:hover {
	text-decoration: underline;
}

@media (max-width: 360px) {
	.main_nav > li > a {
		padding: 7px 4px;
		font-size: 11px;
	}

	.main_nav > li:nth-child(1) > a,
	.main_nav > li:nth-child(4) > a {
		margin-right: 3px;
	}

	.main_nav > li:nth-child(2) > a {
		margin: 0 3px;
	}

	.main_nav > li:nth-child(3) > a,
	.main_nav > li:nth-child(5) > a {
		margin-left: 3px;
	}
}

@media (min-width: 768px) {
	.main_nav_wrapper {
		margin-top: 40px;
	}

	.main_nav {
		flex-wrap: inherit;
		width: 1000px;
		margin: 0 auto;
	}

	.main_nav > li,
	.main_nav > li:nth-child(4),
	.main_nav > li:nth-child(5) {
		flex-basis: 180px;
	}

	.main_nav > li > a {
		margin: 0 !important;
		padding: 10px;
		font-size: 16px;
		line-height: 30px;
		border-radius: 25px;
	}

	.main_nav > li:hover > a::after {
		bottom: -24px !important;
	}

	.menu_sub {
		margin: 0;
		border-radius: 0;
	}

	.menu_sub_inner {
		width: 920px;
		margin: 0 auto;
	}

	.menu_sub_inner dl {
		display: flex;
		align-items: center;
		padding: 18px 0;
	}

	.menu_sub_inner dl:not(:first-child) {
		margin-top: 0;
	}

	.menu_sub_inner dt {
		flex-basis: 180px;
		padding-left: 30px;
		font-size: 16px;
		background: url(https://gigaplus.makeshop.jp/honeyshop/img/common/menu_sub_arrow.svg) no-repeat 12px center / 7px auto;
	}

	.menu_sub_inner dd {
		flex: 1;
		margin-top: 0;
	}

	.menu_sub_inner dd > ul > li {
		margin-left: 16px;
	}

	.menu_sub_inner dd > ul > li > a {
		padding: 8px 8px 8px 20px;
		line-height: 1;
		white-space: nowrap;
		background-size: 5px auto;
		font-size: 14px;
	}
}

/* 標準バナー */
.bnrs_normal_wrapper {
	width: 275px;
	margin: 50px auto;
}

.bnrs_normal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.bnrs_normal li {
	flex-basis: 125px;
	margin-top: 25px;
	overflow: hidden;
	border-radius: 5px;
}

.bnrs_normal_border {
	border: 1px solid #e6e6e6;
}

.bnrs_normal li:nth-child(1),
.bnrs_normal li:nth-child(2) {
	margin-top: 0;
}

.bnrs_normal li a {
	display: block;
}

.bnrs_normal li a img {
	transition: 1s all;
}

.bnrs_normal li a img:hover {
	transform: scale(1.1, 1.1);
	transition: 0.75s all;
}

@media (min-width: 768px) {
	.bnrs_normal_wrapper {
		width: 850px;
		margin: 60px auto 100px;
	}

	.bnrs_normal {
		justify-content: flex-start;
	}

	.bnrs_normal li {
		flex-basis: 250px;
		margin: 50px 50px 0 0;
		overflow: hidden;
		border-radius: 10px;
	}

	.bnrs_normal li.bnrs_normal_border {
		flex-basis: 248px;
	}

	.bnrs_normal li:nth-child(3n) {
		margin-right: 0;
	}

	.bnrs_normal li:nth-child(1),
	.bnrs_normal li:nth-child(2),
	.bnrs_normal li:nth-child(3) {
		margin-top: 0;
	}
}

/* 汎用見出し（大） */
.heading_large {
	color: #2c1b1e;
	font-weight: bold;
	font-size: 20px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	line-height: 1;
}

@media (min-width: 768px) {
	.heading_large {
		font-size: 30px;
	}
}

/* 汎用見出し（中） */
.heading_normal {
	color: #2c1b1e;
	font-weight: bold;
	font-size: 15px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	line-height: 1;
	text-align: center;
}

@media (min-width: 768px) {
	.heading_normal {
		font-size: 24px;
	}
}

/* アーチ状 */
.arc_wrapper {
	margin-top: 1.924285714285714%;
}

.arc {
	position: relative;
}

.arc::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 102%;
	height: 0;
	margin: -1.924285714285714% -1% 0;
	padding-top: 1.924285714285714%;
	overflow: hidden;
	content: '';
}

.arc_white::before {
	background: url(https://gigaplus.makeshop.jp/honeyshop/img/common/arc_white.svg) no-repeat center top / 100% auto;
}

.arc_gray::before {
	background: url(https://gigaplus.makeshop.jp/honeyshop/img/common/arc_gray.svg) no-repeat center top / 100% auto;
}

/* フッタ */
.footer_links_box {
	padding-top: 50px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

.footer_description {
	margin-bottom: 5%;
	padding-bottom: 70px;
	color: #6b2800;
	font-weight: bold;
	font-size: 15px;
	line-height: 1.2;
	text-align: center;
	background: url(https://gigaplus.makeshop.jp/honeyshop/img/common/logo_vertical.svg) no-repeat center bottom / 50px auto;
}

.footer_links {
	padding: 0 10% 5%;
}

.fixed_nav_links:not(:last-child) {
	padding-bottom: 20px;
}

.footer_links_title,
.fixed_nav_links_title {
	padding: 8px 20px;
	color: #fff;
	font-weight: bold;
	font-size: 13px;
	line-height: 14px;
	text-align: center;
	background: #2c1b1e url(https://gigaplus.makeshop.jp/honeyshop/img/common/toggle_sp_white_off.png) no-repeat right 12px center / 10px auto;
	border-radius: 15px;
	overflow-anchor: none;
}

.footer_links_title.on,
.fixed_nav_links_title.on {
	background-image: url(https://gigaplus.makeshop.jp/honeyshop/img/common/toggle_sp_white_on.png);
}

.footer_links:first-of-type .footer_links_title,
.fixed_nav_links:first-of-type .fixed_nav_links_title {
	background-color: #6b2800;
}

.footer_links_title + dd,
.fixed_nav_links_title + dd {
	display: none;
}

.footer_links_title + dd {
	padding-top: 10px;
}

.fixed_nav_links_title + dd {
	padding-top: 17px;
}

.footer_links_title.on + dd,
.fixed_nav_links_title.on + dd {
	display: block;
}

.footer_link li,
.fixed_nav_link li {
	list-style-type: none;
}

.footer_link li a,
.fixed_nav_link li a {
	display: block;
	padding: 6px 0 6px 10px;
	color: #2c1b1e;
	font-size: 13px;
	line-height: 1.6;
	text-decoration: none;
}

.footer_links:first-of-type .footer_link li a,
.fixed_nav_links:first-of-type .fixed_nav_link li a {
	color: #6b2800;
}

.footer_link li a:hover,
.fixed_nav_link li a:hover {
	text-decoration: underline;
}

.footer_link_s li a::before,
.fixed_nav_link li a::before {
	content: '- ';
}

@media (min-width: 768px) {
	.footer_links_box {
		display: flex;
		align-items: flex-start;
		width: 1000px;
		margin: 0 auto;
		padding-top: 70px;
		font-family: 'M PLUS Rounded 1c', sans-serif;
	}

	.footer_description {
		margin-bottom: 0;
		padding: 32px 32px 120px 0;
		font-size: 20px;
		background-size: 103px auto;
	}

	.footer_links {
		padding: 32px;
		border-left: 1px solid #e6e6e6;
	}

	.footer_links_title {
		padding: 0;
		color: #6b2800;
		font-weight: bold;
		font-size: 16px;
		line-height: 1.4;
		text-align: left;
		background: transparent;
		border-radius: 0;
		pointer-events: none;
	}

	.footer_links_title.on,
	.footer_links:first-of-type .footer_links_title {
		background: transparent;
	}

	.footer_links_title + dd {
		display: block !important;
		padding-top: 24px;
	}

	.footer_link li {
		list-style-type: none;
	}

	.footer_link li a {
		display: inline-block;
		padding: 6px 0;
		color: #6b2800;
		font-size: 13px;
		line-height: 1.6;
		text-decoration: none;
	}

	.footer_link li a:hover {
		text-decoration: underline;
	}

	.footer_link_s li a::before {
		color: #6b2800;
		content: '- ';
	}
}

/* フッタ情報 */
.footer_bottom {
	padding: 0;
}

.footer_info,
.footer_bottom_links_wrapper {
	display: none;
}

.footer_sns_box {
	padding: 15% 0 2%;
	background: url(https://gigaplus.makeshop.jp/honeyshop/img/common/bg_footer_sp.png) no-repeat center bottom / cover;
}

.footer_sns_box dt,
.footer_sns {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
}

.footer_sns_box dt {
	width: 100px;
	color: #fff;
	font-size: 10px;
	font-family: monospace;
	line-height: 1.4;
}

.footer_sns_box dt::before {
	content: '＼';
}

.footer_sns_box dt::after {
	content: '／';
}

.footer_sns {
	width: 80px;
}

.footer_sns li {
	flex-basis: 15px;
}

.footer_sns li a {
	display: inline-block;
}

@media (min-width: 768px) {
	.footer_bottom {
		padding: 130px 0 40px;
		background: url(https://gigaplus.makeshop.jp/honeyshop/img/common/bg_footer_pc.png) repeat-x left bottom / 1120px auto;
	}

	.footer_info,
	.footer_bottom_links_wrapper {
		display: block;
	}

	.footer_bottom_links_wrapper {
		width: 800px;
		margin: 0 auto;
	}

	.footer_bottom_links {
		display: flex;
		justify-content: flex-end;
	}

	.footer_bottom_links li:not(:first-child) {
		margin-left: 12px;
	}

	.footer_bottom_links li a {
		display: inline-block;
		padding: 8px;
		color: #fff;
		font-size: 14px;
		line-height: 1.4;
		text-decoration: underline;
	}

	.footer_bottom_links li a:hover {
		text-decoration: none;
	}

	.footer_info_wrapper {
		display: flex;
		justify-content: space-between;
		width: 800px;
		margin: 30px auto 0;
	}

	.footer_info,
	.footer_sns_box {
		color: #fff;
	}

	.footer_info dt {
		margin-bottom: 1em;
		font-weight: bold;
		font-size: 14px;
		line-height: 1.4;
	}

	.footer_info dd {
		font-size: 12px;
		line-height: 1.6;
		opacity: 0.7;
	}

	.footer_sns_box {
		flex-basis: 136px;
		padding: 0;
		background: transparent;
	}

	.footer_sns_box dt {
		width: 160px;
		margin-bottom: 10px;
		font-size: 14px;
	}

	.footer_sns {
		width: 140px;
	}

	.footer_sns li {
		flex-basis: 30px;
	}
}

/* コピーライト */
.copyright {
	padding: 2px 0;
	color: #fff;
	font-size: 9px;
	line-height: 11px;
	text-align: center;
	background-color: #522001;
}

@media (min-width: 768px) {
	.copyright {
		padding: 8px 0;
		font-size: 9px;
		line-height: 14px;
	}
}

/* 固定ナビ */
@media (max-width: 768px) {
	.fixed {
		overflow-y: hidden;
	}
}

.fixed_nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	display: none;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: auto;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	background-color: #fff;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}

.fixed_nav.on {
	display: block;
	animation: fixed_nav_effect 0.25s ease 0s 1 alternate none running;
}

.fixed_nav.off {
	display: block;
	animation: fixed_nav_effect_2 0.25s ease 0s 1 alternate none running;
}

.fixed_nav_inner {
	position: relative;
	padding: 10%;
}

.fixed_nav_close {
	position: absolute;
	top: 15px;
	left: 15px;
}

.fixed_nav_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	color: #6b2800;
	font-weight: bold;
	line-height: 1;
}

.fixed_nav_header_user {
	flex: 1;
	font-size: 10px;
}

.fixed_nav_header_user span {
	margin-right: 0.25em;
	font-size: 13px;
}

.fixed_nav_header_btn {
	display: flex;
	align-items: center;
	margin-left: auto;
	border: 1px solid #6b2800;
	border-radius: 30px;
}

.fixed_nav_header_btn li {
	flex-basis: 50%;
}

.fixed_nav_header_btn li:first-child {
	border-right: 1px solid #6b2800;
}

.fixed_nav_header_btn li a {
	display: block;
	padding: 7px 14px;
	font-size: 13px;
	line-height: 16px;
	white-space: nowrap;
	text-align: center;
}

.fixed_nav_search {
	position: relative;
	margin-bottom: 20px;
}

.fixed_nav_search input {
	width: 100%;
	height: 30px;
	padding: 10px !important;
	font-size: 13px;
	background: #fff url(https://gigaplus.makeshop.jp/honeyshop/img/common/bg_fixed_nav_search.png) no-repeat right center / auto 100% !important;
	border: 1px solid #6b2800 !important;
	border-radius: 15px !important;
}

.fixed_nav_search input:focus {
	background-color: #feffda !important;
	box-shadow: 0 0 5px 0 rgba(107, 40, 0, 0.5);
	transition: background-color 0.5s;
	transition: box-shadow;
}

.fixed_nav_search input::placeholder {
	color: #e1d4cc;
}

.fixed_nav_search input:-ms-input-placeholder {
	color: #e1d4cc;
}

.fixed_nav_search input::-ms-input-placeholder {
	color: #e1d4cc;
}

.fixed_nav_search input::-webkit-input-placeholder {
	padding-top: 0.2em;
}

.fixed_nav_search a {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 44px;
	height: 0;
	padding: 30px 0 0;
	overflow: hidden;
}

.fixed_nav_etclinks li a {
	display: block;
	padding: 8px;
	color: #2c1b1e;
	font-weight: bold;
	font-size: 12px;
	line-height: 1.5;
	text-decoration: underline;
}

.fixed_nav_sns {
	margin-top: 40px;
}

.fixed_nav_sns dt {
	margin-bottom: 20px;
	color: #2c1b1e;
	font-weight: bold;
	font-size: 13px;
	line-height: 1.5;
}

.fixed_nav_sns ul {
	display: flex;
}

.fixed_nav_sns li {
	flex-basis: 30px;
}

.fixed_nav_sns li:not(:last-child) {
	margin-right: 20px;
}

.fixed_nav_links dd > dl {
	padding: 0 5%;
}

.fixed_nav_links dd > dl .fixed_nav_links_title {
	text-align: left;
}

.fixed_nav_links dd > dl .fixed_nav_links_title:not(:first-child) {
	margin-top: 10px;
}

.fixed_nav_links dd > dl .fixed_nav_links_title.on {
	color: #2c1b1e;
	background-color: #bfbabb;
	background-image: url(https://gigaplus.makeshop.jp/honeyshop/img/common/toggle_sp_brown_on.png);
}

.fixed_nav_content {
	position: relative;
	background-color: #e9e8e8;
	border-radius: 5px;
}

.fixed_nav_content::before {
	position: absolute;
	top: -13px;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -4px;
	border-right: 4px solid transparent;
	border-bottom: 13px solid #e9e8e8;
	border-left: 4px solid transparent;
	content: '';
}

.fixed_nav_content dl {
	padding: 5%;
}

.fixed_nav_content dl:not(:last-child) {
	border-bottom: 1px solid #b0aaab;
}

.fixed_nav_content dt {
	padding-left: 15px;
	color: #2c1b1e;
	font-weight: bold;
	font-size: 13px;
	line-height: 1;
	background: url(https://gigaplus.makeshop.jp/honeyshop/img/common/fixed_nav_content_arrow.svg) no-repeat 0 center / 6px auto;
}

.fixed_nav_content dd {
	padding: 2% 4% 0;
}

.fixed_nav_content dd li a {
	display: inline-block;
	padding: 4px 0 4px 12px;
	color: #2c1b1e;
	font-weight: bold;
	font-size: 12px;
	line-height: 1.5;
	background: url(https://gigaplus.makeshop.jp/honeyshop/img/common/fixed_nav_content_arrow.svg) no-repeat 0 center / 4px auto;
}

@keyframes fixed_nav_effect {
	0% {
		transform: scale(1.25);
		opacity: 0.25;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes fixed_nav_effect_2 {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(1.25);
		opacity: 0.25;
	}
}

@media (min-width: 768px) {
	.fixed_nav {
		display: none !important;
	}
}

/* パンくずリスト */
.breadcrumbs {
	display: flex;
	align-items: center;
	margin-left: 6.67%;
	overflow-x: scroll;
	color: #2c1b1e;
	font-size: 10px;
	line-height: 1.6;
	white-space: nowrap;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;

	/* IE・Edge スクロールバー非表示 */
	-ms-overflow-style: none;

	/* Firefox スクロールバー非表示 */
	scrollbar-width: none;
}

/* Chrome・Safari スクロールバー非表示 */
.breadcrumbs::-webkit-scrollbar {
	display: none;
}

.breadcrumbs li:not(:last-child) {
	margin-right: 0.25em;
}

.breadcrumbs li:not(:last-child)::after {
	margin-left: 0.25em;
	content: '＞';
}

.breadcrumbs a,
.breadcrumbs span {
	display: inline-block;
	padding: 0.25em;
}

.breadcrumbs a {
	color: #2c1b1e;
}

.breadcrumbs a:hover {
	text-decoration: underline;
}

@media (min-width: 768px) {
	.breadcrumbs {
		width: 1140px;
		margin: 0 auto;
		font-size: 12px;
	}
}

/* データ無い場合 */
.empty {
	margin: 6.67% 6.67% 0;
	padding: 15% 5%;
	color: #c00;
	font-weight: bold;
	font-size: 15px;
	text-align: center;
	background-color: #ffecec;
	border: 2px solid #c00;
}

@media (min-width: 768px) {
	.empty {
		width: 850px;
		margin: 30px auto 0;
		padding: 100px 50px;
		font-size: 24px;
		border: 4px solid #c00;
	}
}

/* ページャ */
.pager {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 6.67%;
}

.pager li span,
.pager li a {
	display: block;
	width: 30px;
	margin: 0 5px;
	color: #604243;
	font-weight: bold;
	font-size: 16px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	line-height: 28px;
	text-align: center;
	text-decoration: none;
	border: 1px solid #ccc;
	border-radius: 15px;
}

.pager li a:hover,
.pager li span {
	color: #fff;
	background-color: #604243;
	border-color: #604243;
}

.pager li a:hover {
	background-color: #604243;
	border-color: #604243;
}

@media (min-width: 768px) {
	.pager {
		margin-top: 60px;
	}
}

/* ローディング */
.loading_white {
	background: #2c1b1e url(https://gigaplus.makeshop.jp/honeyshop/img/common/loading_white.svg) no-repeat center center / 100px auto!important;
}

.loading_brown {
	background: url(https://gigaplus.makeshop.jp/honeyshop/img/common/loading_brown.svg) no-repeat center center / 100px auto!important;
}

/* ======================================
ご利用ガイド
====================================== */

/* 大見出し */
.heading_large {
	text-align: center;
}

/* レイアウト */
.guide_wrapper {
	padding: 8% 6.67% 4%;
}

.guide_box {
	margin: 9.23077% auto 0;
}

.guide_tm {
	margin: 3em 0 1em;
	padding: 0.5em 0;
	font-weight: bold;
	font-size: 13px;
	line-height: 1.6;
	border-top: 1px solid #2b2b2b;
	border-bottom: 1px solid #2b2b2b;
}

.guide_txt {
	font-size: 12px;
	line-height: 2;
	list-style: decimal;
}

.guide_txt > li {
	margin-left: 2em;
}

.guide_txt + .guide_txt {
	margin-top: 1em;
}

.guide_txt a {
	color: #2b2b2b;
	text-decoration: underline;
}

.guide_txt a:hover {
	text-decoration: none;
}

.txt_right {
	text-align: right;
}

@media (min-width: 768px) {
	.guide_wrapper {
		padding: 80px 0 40px;
	}

	.guide_box {
		width: 850px;
		margin: 30px auto 0;
	}

	.guide_tm {
		padding: 0.5em 2rem;
		font-size: 18px;
	}

	.guide_txt {
		padding: 0 2rem;
		font-size: 14px;
	}
}