@charset "UTF-8";

/* -----------------------------------------------
	共通
-------------------------------------------------- */
html {
	line-height: 1.4;
	-webkit-text-size-adjust: 100%;
	font-size: 16px;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	color: #4d6b7b;
	background-image: url("../img/bg.png");
}

img {
	max-width: 100%;
}

section {
	margin: 30px 0;
}

.mgb30 {
	margin-bottom: 30px;
}

.pdb30 {
	padding-bottom: 30px;
}

.mgb70 {
	margin-bottom: 70px;
}

.br-sp {
	display: none;
}

.br-pc {
	display: block;
}

h1 {
	font-size: 2em;
}

a.underline {
	text-decoration: underline;
}

a.underline:hover,
a.underline:active {
	color: #a3a3a3;
	transition: all 0.3s;
	text-decoration: underline;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.main-wrapper {
	background-color: white;
	margin: 0 auto;
	box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.2);
}

.hoverImg {
	transition: all 0.3s;
}

.hoverImg:hover {
	opacity: 0.8;
	transition: all 0.3s;
}

.main-wrapper--download {
	background-color: white;
	margin: 0 auto;
	box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.2);
	padding-bottom: 0px;
}

@media screen and (max-width: 767px) {
	body.bg_none {
		background-image: none;
	}

	.main-wrapper--download {
		background-color: white;
		margin: 0 auto;
		box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.2);
		padding-bottom: 40px;
	}

}

/*******装飾*******/

.btn-for-center {
	text-align: center;
}

.btn {
	display: inline-block;
	text-align: center;
	cursor: pointer;
	border-radius: 50px;
	border: 1px white solid;
	padding: 15px 20px;
	background-color: #2d5164;
	color: white;
	transition: all 0.5s;
	margin: 0 auto;
	font-size: 14px;
	letter-spacing: 2px;
}

.btn:hover,
.btn:active {
	background-color: white;
	color: #2d5164;
	border: 1px #2d5164 solid;
}

.section__title {
	background-image: url("../img/title-bg.png");
	background-position: center center;
	background-repeat: no-repeat;
	width: auto;
	color: white;
	padding: 20px 25px;
	font-family: "Zen Maru Gothic", serif;
	font-size: 24px;
	text-align: center;
	letter-spacing: 2px;
	margin-bottom: 40px;
}

.section__title-3rd {
	font-size: 20px;
	font-weight: bold;
	margin: 30px 0;
	padding-left: 40px;
	letter-spacing: 2px;
	position: relative;
}

.section__title-3rd::after {
	position: absolute;
	content: "";
	border-radius: 50px;
	width: 30px;
	height: 30px;
	background: #DB5148;
	border: 4px solid #f09e8f;
	top: 0;
	left: 0;
}

@media (max-width: 767px) {
	.section__title {
		background-size: 100% auto;
		font-size: 18px;
	}

	.section__title--mg0 {
		margin-bottom: 0;
	}

	.section__title-3rd {
		font-size: 18px;
		padding-left: 30px;
	}

	.section__title-3rd::after {
		width: 20px;
		height: 20px;
		top: 4px;
	}
}

.border {
	content: "";
	border-bottom: 4px #dc5149 dotted;
	width: 95%;
	height: 3px;
	margin: 30px auto 45px;
	text-align: center;
}

.pdf-icon {
	position: relative;
	text-decoration: underline;
	color: #c30d23;
}

.pdf-icon:hover {
	color: #ed7c7b;
	transition: all 0.5s;
}

.pdf-icon::after {
	display: inline-block;
	content: "";
	width: 24px;
	height: 24px;
	background: url("../img/icon_pdf.png") no-repeat 0 0;
	background-size: 24px 24px;
	margin-bottom: -3px;
}

@media (max-width: 767px) {
	.container {
		max-width: 100%;
		overflow: hidden;
	}

	.container-head {
		padding: 0;
	}

	.main-wrapper {
		box-shadow: 0 0 0 0;
	}

	.br-sp {
		display: block;
	}

	.br-pc {
		display: none;
	}
}

/* -----------------------------------------------
	header
-------------------------------------------------- */
#header {
	z-index: 100;
}

main {
	z-index: 90;
}

.header__logo>img {
	width: 440px;
}

.header__inner {
	width: 100%;
	background-color: white;
	padding: 0 5%;
	height: 84px;
	position: fixed;
	top: 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	z-index: 50;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__inner.fixed {
	display: none;
}

.header__container {
	width: 1200px;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__sns img,
.header__sns svg {
	width: 20px;
	height: 20px;
	fill: #FFF;
	line-height: 1;
	vertical-align: bottom;
}

.header__sns a {
	display: block;
	background-color: #2d5164;
	line-height: 1;
	border-radius: 8px;
	padding: 8px;
}

.header__sns a:hover {
	background-color: #DB5148;
}

#global-nav {
	background-color: #2d5164;
	width: 100%;
	height: 60px;
	color: white;
	position: fixed;
	top: 84px;
	transition: all 0.1s;
	z-index: 100;
}

#global-nav.fixed {
	right: 0;
	position: fixed;
	top: 0px;
	transition: all 0.1s;
}

.nav__ul {
	display: flex;
	justify-content: center;
}

.global-nav-item {
	display: inline-block;
	padding: 0 auto;
	font-weight: bold;
	max-width: 240px;
	font-size: 14px;
	width: 100%;
	text-align: center;
	position: relative;
	height: 60px;
	cursor: pointer;
}

.global-nav-item a {
	font-family: "Zen Maru Gothic", serif;
	display: block;
	width: 100%;
	font-size: 18px;
	padding: 17px 2%;
}

.menu_hover {
	color: #8ec54a;
}

.global-nav-item::after {
	content: "";
	position: absolute;
	border-right: 1px white solid;
	width: 100%;
	height: 27px;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 17px;
	z-index: -1;
}

.has-child i {
	padding-left: 5px;
	font-weight: bold;
}

.global-nav-item i {
	padding-left: 5px;
}

.global-nav-item:first-child::after {
	border-left: 1px white solid;
}

.global-nav-sub-item-list {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0);
	transform-origin: center top;
	z-index: 1;
	background-color: #db5149;
	width: 100%;
	margin-top: 0px;
}

.has-child:hover .global-nav-sub-item-list {
	visibility: visible;
	opacity: 1;
	transition: all 0.2s;
	transform: scaleY(1);
}

.global-nav-sub-item {
	color: white;
}

.global-nav-sub-item>a {
	display: block;
	padding: 15px 5px;
}

.global-nav-item:hover {
	background-color: #db5149;
}

.global-nav-item>a :active {
	color: #8ec54a;
}

.global-nav-sub-item:hover {
	color: white;
	transition: all 0.2s;
}

.global-nav-sub-item.tab1:hover {
	background-color: #ed7c7b;
}

.global-nav-sub-item.tab2:hover {
	background-color: #f7b02d;
}

.global-nav-sub-item.tab3:hover {
	background-color: #8ec54a;
}

.global-nav-sub-item.tab4:hover {
	background-color: #bb8dbe;
}

.global-nav-sub-item.tab5:hover {
	background-color: #5eb7e8;
}


.global-nav-sub-item.tab6 {
	display: none;
}

.nav__close {
	display: none;
}

.hamburger {
	display: none;
}

.sp-sns {
	display: none;
}

/****タブレット版****/
@media screen and (max-width: 1280px) {
	.global-nav-item:hover {
		background-color: transparent;
	}

	.global-nav-sub-item.tab6:hover {
		background-color: #918181;
	}

	.global-nav-item {
		font-size: 1.3vw;
		white-space: nowrap;
	}

	.global-nav-item:first-child::after {
		border-left: 0px white solid;
	}

	.global-nav-item:last-child::after {
		border-right: 0px white solid;
	}

	.sub-list-wrapper {
		display: none;
	}

	.global-nav-sub-item-list.open .sub-list-wrapper {
		display: block;
	}

	.global-nav-sub-item.tab6 {
		display: block;
	}

	.global-nav-sub-item.tab6 a {
		font-size: 16px;
		letter-spacing: 1.5px;
		transition: .3s;
	}
}

@media screen and (max-width: 900px) {
	.has-child a {
		font-size: 16px;
	}
}

/****SP版****/

@media (max-width: 767px) {
	.header__inner {
		padding: 0;
		z-index: 700;
		height: 50px;
		overflow: hidden;
	}

	.header__inner.fixed {
		display: block;
	}

	.header__container {
		min-width: 100%;
		width: 100%;
		padding: 0px;
		height: 50px;
		position: relative;
	}

	.header__logo {
		margin-left: 10px;
	}

	.header__logo img {
		width: 250px;
	}

	.header__sns {
		display: none;
	}

	#global-nav {
		position: fixed;
		z-index: 600;
		right: -100%;
		top: 0;
		opacity: 0;
		transition: all 0.2s;
		height: 100%;
	}

	#global-nav.active {
		right: 0;
		overflow-y: scroll;
		height: 100%;
		top: 0;
		opacity: 1;
	}

	#global-nav.fixed {
		position: fixed;
		z-index: 50;
		right: -100%;
		top: 0;
		transition: all 0.2s;
		height: 100%;
		z-index: 52;
		opacity: 0;
	}

	#global-nav.fixed.active {
		overflow-y: scroll;
		height: 100%;
		right: 0;
		top: 0;
		z-index: 52;
		position: fixed;
		opacity: 1;
	}

	.nav__ul {
		flex-direction: column;
		margin: 55px auto 20px;
		padding: 10px 20px 0px;
		width: 100%;
	}

	.global-nav-item {
		max-width: none;
		margin: 0 auto;
		font-weight: bold;
		font-size: 16px;
		text-align: left;
		height: 100%;
		border-bottom: 1px solid #fff;
	}

	.global-nav-item::after {
		border-right: none;
	}

	.global-nav-item:first-child::after {
		border-right: none;
		border-left: none;
	}

	.global-nav-item>a {
		display: block;
		width: 100%;
		padding: 15px;
	}

	.global-nav-item.has-child>a {
		position: relative;
		transition: all 0.2s;
	}

	.global-nav-item.has-child>a:hover {
		background-color: transparent;
	}

	.global-nav-item.has-child>a::after {
		content: "\f107";
		font-family: "fontawesome";
		color: #fff;
		position: absolute;
		font-size: 32px;
		font-weight: normal;
		right: 10px;
		top: 6px;

	}

	.global-nav-item.has-child>a.open::after {
		content: "\f106";
		font-family: "fontawesome";
		color: #fff;
		position: absolute;
		font-size: 32px;
		right: 10px;
		top: 6px;
	}

	.global-nav-sub-item-list {
		display: none;
		visibility: visible;
		opacity: 1;
		transition: all 0.2s;
		transform: scaleY(1);
	}

	.global-nav-sub-item-list.open {
		display: block;
	}

	.sub-list-grid {
		padding: 5px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		color: white;
		letter-spacing: 2px;
		background-color: #fff;
	}

	.global-nav-item:hover {
		background-color: #2d5164;
	}

	.global-nav-sub-item {
		font-weight: lighter;
		font-size: 14px;
	}

	.global-nav-sub-item>a {
		padding: 10px 15px;
		display: block;
	}

	.global-nav-sub-item.tab0 {
		display: none;
	}

	.global-nav-sub-item.tab1 {
		background-color: #ed7c7b;
	}

	.global-nav-sub-item.tab2 {
		background-color: #f7b02d;
	}

	.global-nav-sub-item.tab3 {
		background-color: #8ec54a;
	}

	.global-nav-sub-item.tab4 {
		background-color: #bb8dbe;
	}

	.global-nav-sub-item.tab5 {
		background-color: #5eb7e8;
	}

	.global-nav-sub-item.tab6 {
		display: block;
		background-color: #918181;
	}

	.global-nav-sub-item:hover {
		transition: none;
	}

	.global-nav-sub-item.tab1:hover,
	.global-nav-sub-item.tab1:active {
		background-color: #ffbdc1;
	}

	.global-nav-sub-item.tab2:hover,
	.global-nav-sub-item.tab2:active {
		background-color: #ffe0a6;
	}

	.global-nav-sub-item.tab3:hover,
	.global-nav-sub-item.tab3:active {
		background-color: #ddff8e;
	}

	.global-nav-sub-item.tab4:hover,
	.global-nav-sub-item.tab4:active {
		background-color: #fdcaff;
	}

	.global-nav-sub-item.tab5:hover,
	.global-nav-sub-item.tab5:active {
		background-color: #a4dfff;
	}

	.global-nav-sub-item.tab6:hover,
	.global-nav-sub-item.tab6:active {
		background-color: #cebdbd;
	}

	.nav__close {
		display: block;
		width: 150px;
		font-weight: normal;
		text-align: center;
		border-bottom: 70px;
		cursor: pointer;
		border-radius: 50px;
		border: 1px white solid;
		padding: 15px 20px;
		margin: 0 auto 30px;
	}

	.nav__close:hover,
	.nav__close:active {
		background-color: white;
		color: #2d5164;
	}

	.hamburger {
		display: block;
		width: 50px;
		height: 50px;
		position: relative;
		cursor: pointer;
		text-align: right;
		background-color: #2d5164;
	}

	.hamburger span {
		width: 28px;
		height: 3px;
		background-color: #fff;
		position: absolute;
		top: 14px;
		left: 12px;
		transition: 0.3s ease-in-out;
	}

	.hamburger span:nth-child(2) {
		top: 23px;
	}

	.hamburger span:nth-child(3) {
		top: 32px;
	}

	.hamburger.active span {
		transform: rotate(-45deg);
		top: 24px;
		left: 12px;
	}

	.hamburger.active span:nth-child(2),
	.hamburger.active span:nth-child(3) {
		transform: rotate(45deg);
		top: 24px;
	}

	.sp-sns {
		display: block;
		text-align: center;
	}

	.sp-sns-box {
		display: flex;
		justify-content: center;
		padding: 0 30px;
		margin-bottom: 20px;
	}

	.sp-sns-box svg {
		width: 20px;
		height: 20px;
		fill: #2d5164;
		line-height: 1;
		vertical-align: bottom;
	}

	.sp-sns-box a {
		display: block;
		background-color: #fff;
		line-height: 1;
		border-radius: 8px;
		padding: 8px;
	}

	.has-child a {
		font-size: 18px;
	}

	.has-child a i {
		display: none;
	}
}

/* -----------------------------------------------
	main-visual
-------------------------------------------------- */
.main-visual {
	box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.2);
	margin-top: 144px;
}

.main-visual img {
	width: 100%;
}

@media (max-width: 767px) {
	.main-visual {
		margin-top: 40px;
		box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.2);
	}

}

/* -----------------------------------------------
	concept
-------------------------------------------------- */
.concept {
	padding: 0 50px;
}

.concept-area1 {
	padding: 15px 0 45px;
	background: url(../img/concept_bg.png) no-repeat;
	display: flex;
	justify-content: space-between;
}

.concept-top {
	display: flex;
	flex-direction: column;
	text-align: center;
	width: 100%;
	margin: 0 auto;
}

.concept-img {
	background-image: url(../img/mv.jpg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 50%;
}

.concept-title {
	font-family: "Zen Maru Gothic", serif;
	font-size: 22px;
	font-weight: bold;
	z-index: 2;
}

.concept-title>span {
	display: block;
	font-size: 30px;
	color: #e3806e;
	letter-spacing: 2px;
	line-height: 1.7;
	margin: 15px 0;
}

.concept-text {
	line-height: 1.7;
}

.br-pc-c {
	display: block;
}

.concept-box {
	width: 100%;
	display: flex;
	margin-bottom: 50px;
}

.concept-box .box {
	width: 20%;
	text-align: center;
	margin: 0 10px;
	padding: 0 10px 20px 10px;
	border-radius: 8px;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.box>img {
	margin-bottom: 20px;
}

.box>p {
	font-size: 14px;
}

.concept-item-1 {
	background-image: url(../img/concept_1_bg.png);
}

.concept-item-2 {
	background-image: url(../img/concept_2_bg.png);
}

.concept-item-3 {
	background-image: url(../img/concept_3_bg.png);
}

.concept-item-4 {
	background-image: url(../img/concept_4_bg.png);
}

.concept-item-5 {
	background-image: url(../img/concept_5_bg.png);
}

@media screen and (max-width: 1080px) {
	.concept-area1 {
		background-image: none;
	}
}

@media (max-width: 767px) {
	.concept {
		padding: 0 20px;
	}

	.concept-title {
		font-size: 16px;
	}

	.concept-title>span {
		font-size: 24px;
		margin: 10px 0;
	}

	.concept-area1 {
		display: flex;
		flex-direction: column;
		background-image: none;
		margin: 0;
		padding: 20px 0;
		font-size: 14px;
	}

	.concept-top {
		margin: 0 auto;
	}

	.concept-img {
		width: 100%;
		height: 150px;
	}

	.concept-box {
		flex-wrap: wrap;
		justify-content: center;
	}

	.concept-box .box {
		width: 47%;
		margin: 10px 5px 5px;
		padding: 0 0 20px;
		background-size: 100% auto;
		background-position: center bottom;
	}

	.br-pc-c {
		display: none;
	}
}

/* -----------------------------------------------
	news
-------------------------------------------------- */
.news {
	padding: 50px;
	background-image: url(../img/news-bg.png);
}

.news__ul {
	background-color: #fff;
	padding: 40px;
	max-width: 850px;
	margin: 0 auto;
}

.news__ul li {
	display: flex;
	justify-content: space-between;
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid #2d5164;
}

.news__ul li span {
	width: 7em;
	font-weight: bold;
}

.news__ul li p {
	width: calc(100% - 7em);
}

.news__ul li a {
	text-decoration: underline;
	transition: .3s;
	color: #85571f;
}

.news__ul li a:hover {
	opacity: .6;
	transition: .3s;
}

@media (max-width: 767px) {
	.news {
		padding: 20px;
	}

	.news__ul li {
		display: block;
	}

	.news__ul li span {
		width: auto;
		display: block;
		line-height: 1.8;
	}

	.news__ul li p {
		width: auto;
	}
}

/* -----------------------------------------------
	企画コーナー/TOP
-------------------------------------------------- */
.corner-area {
	padding: 30px 0 60px;
}

.corner-box {
	margin-bottom: 30px;
}

.corner-title {
	font-size: 24px;
	font-weight: bold;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	font-family: "Zen Maru Gothic",
		serif;
}

.corner-title>h3>img {
	width: 80px;
	margin-right: 20px;
}

.corner-title-body>span {
	font-size: 30px;
}

.corner-box>p {
	line-height: 1.4;
}

.corner-bottom {
	display: flex;
	margin-top: 20px;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
}

.corner-bottom-left {
	width: 55%;
}

.corner-bottom-left>img {
	width: 100%;
}

.corner-bottom-right {
	width: 45%;
	height: 100%;
	border-radius: 10px;
}

.corner-bottom-right>p {
	margin-top: 20px;
}

.corner-person-top {
	display: flex;
	align-items: center;
	font-size: 16px;
	margin-bottom: 20px;
}

.corner-person-top>img {
	display: block;
	display: flex;
	align-items: center;
	width: 180px;
	height: auto;
	object-fit: cover;
	margin-right: 20px;
}

span.person-desc {
	display: inline-block;
	background-color: #2d5164;
	color: white;
	padding: 1px 40px;
	font-size: 16px;
	margin-bottom: 5px;
	letter-spacing: 5px;
	border-radius: 50px;
}

span.person-name {
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 2px;
}

.person-txt {
	margin-top: 10px;
	font-size: 14px;
}

.corner-person-bottom {
	font-size: 16px;
	line-height: 1.4;
}

/*タブレット版*/
@media (max-width: 1280px) {
	.corner-bottom {
		flex-direction: column;
	}

	.corner-bottom-left {
		width: 100%;
	}

	.corner-bottom-right {
		width: 100%;
		height: 100%;
		border-radius: 10px;
		margin-top: 20px;
	}

}

/*SP版*/
@media (max-width: 767px) {
	.corner-area {
		padding: 0px 0 90px;
	}

	.corner-title {
		font-size: 18px;
		flex-direction: column;
		text-align: center;
		margin-top: 10px;
	}

	.corner-title>h3>img {
		width: 80px;
		margin-right: 0px;
		margin-bottom: 10px;
	}

	.corner-title-body>span {
		font-size: 24px;
		margin-top: 8px;
		margin-bottom: 10px;
		display: inline-block;
	}

	.corner-box>p {
		line-height: 1.6;
	}

	.corner-bottom-left {
		width: 100%;
	}

	.corner-person-top {
		flex-direction: column;
		font-size: 16px;
		margin-bottom: 20px;
	}

	.corner-person-top>img {
		display: block;
		display: flex;
		align-items: center;
		width: 180px;
		margin-right: 0px;
		margin-bottom: 16px;
	}

	.corner-person-top-r {
		width: 100%;
		text-align: center;
	}

}

/* -----------------------------------------------
	sns　※非公開※

.sns-wrapper {
	display: flex;
	justify-content: space-between;
}
.sns:first-child {
	margin-right: 20px;
}
.sns {
	width: 100%;
}
iframe {
	max-width: 100%;
	z-index: 0;
}

@media (max-width: 767px) {
	.sns-wrapper {
		flex-direction: column;
		align-items: center;
	}
	.sns:first-child {
		margin-right: 0px;
	}
	.fb-plugin-responsive {
		width: 100%;
	}
}
@media screen and (min-width: 768px) {
	.fb-plugin-responsive {
		width: 450px;
	}
}
-------------------------------------------------- */

/* -----------------------------------------------
	summary
-------------------------------------------------- */
.summary {
	padding: 50px;
}

.summary table {
	margin: 0 40px;
}

.summary table tr {
	width: 100%;
}

.summary table th {
	width: 20%;
	font-size: 18px;
	padding-right: 10px;
}

.summary table td {
	width: 80%;
	padding-bottom: 20px;
	line-height: 1.5;
}

.summary__table td span.transparent {
	color: transparent;
}

.summary__table td .sp400-only {
	display: none;
}

.summary__info {
	background-color: #fff8f5;
	border: 1px #268d3b solid;
	border-radius: 10px;
	line-height: 1.7;
	margin: 40px 0 60px 0;
}

.info-text2022 {
	padding: 40px;
}

.info-text2022>span {
	display: block;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	margin-bottom: 15px;
	color: #c30d23;
}

.info-text2022>p {
	margin-bottom: 10px;
}

.info-text2022>p a {
	margin-bottom: 10px;
}

.info-text {
	font-size: 15px;
	text-align: center;
	margin-bottom: 25px;
	font-weight: bold;
	padding: 40px 10px 20px 10px;
}

.info-list {
	padding-left: 75px;
	list-style-type: lower-latin;
	margin-bottom: 40px;
}

@media (max-width: 767px) {
	.summary {
		padding: 20px;
	}

	.summary table {
		margin: 0 10px;
	}

	.summary table th {
		width: 30%;
		font-size: 14px;
	}

	.summary table td {
		width: 70%;
		font-size: 14px;
	}

	.info-text {
		text-align: left;
		font-weight: bold;
		margin: 0 auto;
		padding: 0;
		font-size: 14px;
		padding: 20px 10px;
	}

	.info-text2022 {
		padding: 30px 15px;
	}

	.info-list {
		list-style-type: lower-latin;
		font-size: 13px;
		padding-left: 25px;
		padding-right: 5px;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 400px) {
	.summary__table td span.transparent {
		color: #2d5164;
		display: inline-block;
		margin-top: 7px;
	}

	.summary__table td .sp400-only {
		display: block;
	}
}

/* -----------------------------------------------
	together
-------------------------------------------------- */
.together {
	padding: 50px;
}

.together__body {
	margin-top: 20px;
	text-align: center;
}

.together__body>a {
	display: inline-block;
}

.together__body>a>img {
	width: 100%;
}

.together__body>a:hover {
	opacity: 0.7;
}

@media (max-width: 767px) {
	.together {
		padding: 20px;
	}
}

/* -----------------------------------------------
	past
-------------------------------------------------- */
.past {
	padding: 50px;
}

.past__body {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 980px;
	margin: 20px auto;
}

.past__body>li {
	margin: 0 5px 10px;
	text-align: center;
}

.past__body>li>a {
	display: inline-block;
}

.past__body>li>a:hover {
	transition: 0.2s all;
	opacity: 0.8;
}

@media (max-width: 767px) {
	.past {
		padding: 20px;
	}

	.past__body {
		justify-content: center;
		flex-wrap: wrap;
		width: 100%;
	}

	.past__body>li {
		margin: 0 2% 10px;
		width: 46%;
	}

	.past__body>li>a {
		width: 100%;
		display: inline;
	}

	.past__body>li>a>img {
		width: 100%;
		display: inline;
	}
}

/* -----------------------------------------------
	contact
-------------------------------------------------- */
.contact__row {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	max-width: 740px;
	margin: 20px auto;
}

.contact__row::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 45%;
	-webkit-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
	width: 1px;
	height: 90px;
	background-color: #2d5164;
}

.contact__row .contact__inform {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}

.contact__list li {
	font-size: 20px;
	padding-left: 40px;
	margin-bottom: 20px;
	position: relative;
}

.contact__list li span.small {
	font-size: 16px;
}

.contact__list li::before {
	font-size: 36px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.contact__list li.contact__tel::before {
	content: "\f095";
	font-family: "fontawesome";
	font-size: 36px;
}

.contact__list li.contact__mail::before {
	content: "\f003";
	font-family: "fontawesome";
	font-size: 30px;

}

@media (max-width: 767px) {
	.contact__row {
		display: block;
	}

	.contact__row::before {
		display: none;
	}

	.contact__row .contact__inform {
		margin-bottom: 10px;
	}

	.contact__list li {
		font-size: 16px;
	}

	.contact__list li span.small {
		font-size: 13px;
	}
}

/* -----------------------------------------------
	footer
-------------------------------------------------- */
#footer {
	width: 100%;
	padding: 16px 0;
	background-color: #e3806e;
	color: #fff;
	height: 100%;
	line-height: 1.7;
	letter-spacing: 1px;
	font-size: 14px;
	text-align: center;
}

.footer__body {
	margin: 0 auto;
}

.footer__body>p>span {
	padding-right: 7px;
}

.footer__body>p>a {
	cursor: pointer;
	text-decoration: underline;
	margin-right: 7px;
}

.footer__body>p>a:hover {
	color: #a3a3a3;
	transition: all 0.3s;
}

@media (max-width: 767px) {
	.footer__body {
		font-size: 12px;
		padding-bottom: 20px;
		letter-spacing: 0.1px;
		text-align: center;
		margin: 0 auto;
	}
}

@media (min-width: 767px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

/* -----------------------------------------------
	to-top
-------------------------------------------------- */
#to-top {
	background-color: #2d5164;
	color: #fff;
	width: 60px;
	height: 60px;
	position: fixed;
	right: 25px;
	bottom: 25px;
	border-radius: 50%;
	box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	text-align: center;
	line-height: 0.01;
	font-size: 12px;
	z-index: 500;
}

#to-top i {
	font-size: 36px;
	margin-bottom: 3px;
}

#to-top:hover {
	background-color: #ed7c7b;
	color: white;
}

@media (max-width: 767px) {
	#to-top {
		width: 45px;
		height: 45px;
		right: 15px;
		bottom: 15px;
		font-size: 10px;
		z-index: 50;
	}

	#to-top i {
		font-size: 30px;
		margin-bottom: 0px;
	}
}

/* -----------------------------------------------
-----------------------------------------------
	各ページ共通
-----------------------------------------------
-------------------------------------------------- */
.page-area {
	width: 100%;
	padding: 0 40px 40px;
	margin: 144px 0 0 0;
}

.page-area--cmp {
	padding: 0 40px 190px;
}

.page-area--map {
	padding: 0 40px 90px;
}

.breadcrumb {
	padding: 30px 0;
}

.breadcrumb__list {
	display: flex;
}

.breadcrumb__list li {
	font-size: 14px;
	padding-right: 30px;
	position: relative;
}

.breadcrumb__list li::after {
	content: "＞";
	color: #2d5164;
	position: absolute;
	font-size: 14px;
	right: 8px;
	top: 0;
}

.breadcrumb__list li:last-child:after {
	display: none;
}

.breadcrumb__list>li>a:hover {
	color: #b4aea8;
	transition: all 0.3s;
}

@media (max-width: 767px) {
	.page-area {
		padding: 0 40px 40px;
		margin: 40px 0 0 0;
		padding: 0 5%;
	}

	.page-area--cmp {
		padding: 0 3% 90px;
	}

	.page-area--map {
		padding: 0 40px 90px;
	}

	.breadcrumb {
		padding: 20px 0;
	}

	.breadcrumb__list>li {
		padding-left: 0;
		padding-right: 30px;
	}

	.breadcrumb__list li::after {
		right: 8px;
	}

	.breadcrumb__list li:last-child:after {
		display: none;
	}

	.jump {
		padding-top: 10px;
		margin-top: -10px;
	}
}

/* -----------------------------------------------
	出展企業
-------------------------------------------------- */
.company__about {
	margin: 30px 0;
	line-height: 1.5;
}

.company__area {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

span.company-caption {
	display: block;
	font-size: 14px;
	text-align: right;
	margin-bottom: 40px;
}

.jump-concept {
	padding-top: 80px;
	margin-top: -80px;
}

.company-concept,
.company-concept {
	margin-top: 8px;
	transition: 0.3s all;
}

.company-concept:hover,
.company-concept:active {
	margin-top: -8px;
	transition: 0.3s all;
}

.company-concept:hover:last-child,
.company-concept:active:last-child {
	margin-top: -8px;
	margin-bottom: 16px;
}

.company-concept>img {
	margin: 0 20px;
	width: 160px;
}

.company-title {
	display: flex;
	align-items: center;
	font-family: "Zen Maru Gothic",
		serif;
	color: white;
	padding: 16px 10px 24px;
	height: 100%;
	position: relative;
	letter-spacing: 3px;
	margin-bottom: 30px;
	line-height: 1.1;
}

.company-title>h2 {
	font-size: 20px;
	font-weight: bold;
}

.company-title>p {
	margin-left: 50px;
	letter-spacing: 0.5px;
	font-size: 18px;
}

p.company-title-total {
	position: absolute;
	top: 16px;
	right: 30px;
}

.company-title-1 {
	background: url(../img/concept_title_1.png) repeat center center/contain;
}

.company-title-2 {
	background: url(../img/concept_title_2.png) repeat center center/contain;
}

.company-title-3 {
	background: url(../img/concept_title_3.png) repeat center center/contain;
}

.company-title-4 {
	background: url(../img/concept_title_4.png) repeat center center/contain;
}

.company-title-5 {
	background: url(../img/concept_title_5.png) repeat center center/contain;
}

.company-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 10px;
	row-gap: 7px;
	margin: 0 auto;
	width: 100%;
	margin-bottom: 20px;
}

.company-body .flex {
	display: flex;
	align-items: center;
}

.company-body .num {
	display: flex;
	align-items: center;
	font-size: 36px;
	font-family: "Zen Maru Gothic",
		serif;
	font-weight: 700;
	padding: 0 20px;
	letter-spacing: 2px;
}

.company-body--01 .num {
	color: #ed7c7b;
}

.company-body--01 .company-item {
	border: 1px solid #ed7c7b;
}

.company-body--01 .company-item:hover {
	background-color: #fdeeea;
}

.company-body--02 .num {
	color: #f7b02d;
}

.company-body--02 .company-item {
	border: 1px solid #f7b02d;
}

.company-body--02 .company-item:hover {
	background-color: #fff8eb;
}

.company-body--03 .num {
	color: #8ec54a;
}

.company-body--03 .company-item {
	border: 1px solid #8ec54a;
}

.company-body--03 .company-item:hover {
	background-color: #f6ffec;
}

.company-body--04 .num {
	color: #bb8dbe;
}

.company-body--04 .company-item {
	border: 1px solid #bb8dbe;
}

.company-body--04 .company-item:hover {
	background-color: #fdf6ff;
}

.company-body--05 .num {
	color: #5eb7e8;
}

.company-body--05 .company-item {
	border: 1px solid #5eb7e8;
}

.company-body--05 .company-item:hover {
	background-color: #ecf8ff;
}

.company-item:hover {
	transition: all 0.3s;
	/* background-color: #fff !important; */
}

/***********************************/
.company-item>a {
	display: block;
	width: 100%;
	height: 100%;
	/*一時的にリンク無効化
	pointer-events: none;*/
}

/***********************************/
.company-item a p {
	display: block;
	padding: 10px;
	line-height: 1.6;
}

@media (max-width: 1280px) {
	.company-body .num {
		display: flex;
		align-items: center;
		font-size: 30px;
		font-family: "Zen Maru Gothic",
			serif;
		font-weight: 700;
		padding: 0 0 0 10px;
		letter-spacing: 1px;
	}
}

@media (max-width: 767px) {
	.company__area {
		flex-wrap: wrap;
	}

	.company-concept>img {
		width: 130px;
		margin: 5px 0;
	}

	span.company-caption {
		text-align: left;
	}

	.company-title {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		font-size: 18px;
	}

	.company-title>p {
		margin-left: 0px;
		margin-top: 8px;
		font-size: 14px;
		letter-spacing: 0.7px;
	}

	p.company-title-total {
		position: absolute;
		top: 9px;
		right: 20px;
	}

	.company-body {
		grid-template-columns: 1fr;
	}

	.company-body .num {
		display: flex;
		align-items: center;
		font-size: 24px;
		font-family: "Zen Maru Gothic",
			serif;
		font-weight: 700;
		padding: 0 0 0 7px;
		letter-spacing: 1px;
	}
}

/* -----------------------------------------------
	出展企業-各ページ-
-------------------------------------------------- */
.jump {
	padding-top: 10px;
	margin-top: -10px;
}

.company__box {
	border: 1px #4d6b7b solid;
	padding: 20px 40px;
	margin-top: 60px;
}

.product-title {
	display: flex;
	align-items: center;
	margin: 30px 0 40px;
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	font-family: "Zen Maru Gothic",
		serif;
	font-weight: 700;
}

.product-title span {
	display: block;
}

.product-title .number {
	width: 90px;
	height: 90px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 7px;
	color: #fff;
	font-size: 40px;
	margin-right: 20px;
	position: relative;
}

.product-title .number::before {
	position: absolute;
	content: "ブース番号";
	width: 80px;
	height: 16px;
	color: #2d5164;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 16px;
	white-space: nowrap;
}

.product-title .title {
	font-size: 40px;
	width: 100%;
	font-weight: 700;
	padding: 0 5px;
	letter-spacing: 1.5px;
}

#company-concept--01 .number {
	background: url(../img/booth-icon1.png) no-repeat center center/contain;
}

#company-concept--02 .number {
	background: url(../img/booth-icon2.png) no-repeat center center/contain;
}

#company-concept--03 .number {
	background: url(../img/booth-icon3.png) no-repeat center center/contain;
}

#company-concept--04 .number {
	background: url(../img/booth-icon4.png) no-repeat center center/contain;
}

#company-concept--05 .number {
	background: url(../img/booth-icon5.png) no-repeat center center/contain;
}


#company-concept--01 .title {
	color: #e3806e;
	border-bottom: 1px solid #e3806e;
}

#company-concept--02 .title {
	color: #f7b02d;
	border-bottom: 1px solid #f7b02d;
}

#company-concept--03 .title {
	color: #8ec54a;
	border-bottom: 1px solid #8ec54a;
}

#company-concept--04 .title {
	color: #bb8dbe;
	border-bottom: 1px solid #bb8dbe;
}

#company-concept--05 .title {
	color: #5eb7e8;
	border-bottom: 1px solid #5eb7e8;
}

.company__box-inner {
	display: flex;
	justify-content: space-between;
}

.detail-area.-left {
	width: 60%;
	margin-right: 30px;
}

.detail-area.-right {
	width: 40%;
}

figure.product-image {
	margin-bottom: 36px;
	position: relative;
}

figure.product-image a {
	line-height: 0;
	cursor: zoom-in;
}

figure.product-image img {
	object-fit: cover;
	width: 100%;
}

figcaption.catch-copy {
	display: block;
	height: 100%;
	z-index: 1;
	width: 100%;
	bottom: 0;
	font-size: 18px;
	font-weight: 700;
	padding: 20px 12px;
	font-family: "Zen Maru Gothic",
		serif;
	letter-spacing: 1.5px;
}

#company-concept--01 figcaption {
	background: #fdeeea;
	color: #ed7c7b;
}

#company-concept--02 figcaption {
	background: #fff8eb;
	color: #f7b02d;
}

#company-concept--03 figcaption {
	background: #f6ffec;
	color: #8ec54a;
}

#company-concept--04 figcaption {
	background: #fdf6ff;
	color: #bb8dbe;
}

#company-concept--05 figcaption {
	background: #ecf8ff;
	color: #5eb7e8;
}

.new-item {
	position: absolute;
	background-color: #ffa600;
	color: white;
	font-weight: 500;
	padding: 5px 0 7px 3px;
	text-align: center;
	width: 90px;
	letter-spacing: 3px;
	font-size: 18px;
	top: -0;
	left: 0;
	font-family: "Zen Maru Gothic",
		serif;
}

.new-item2 {
	position: absolute;
	background-color: #ffa600;
	color: white;
	font-weight: 500;
	padding: 5px 0 7px;
	text-align: center;
	width: 90px;
	letter-spacing: 3px;
	font-size: 16px;
	top: -0;
	right: 0;
	font-family: "Zen Maru Gothic",
		serif;
}

.company__box-inner-title {
	width: 100%;
	padding: 7px 12px;
	font-family: "Zen Maru Gothic",
		serif;
	color: #fff;
}

#company-concept--01 .company__box-inner-title {
	background-color: #ed7c7b;
}

#company-concept--02 .company__box-inner-title {
	background-color: #f7b02d;
}

#company-concept--03 .company__box-inner-title {
	background-color: #8ec54a;
}

#company-concept--04 .company__box-inner-title {
	background-color: #bb8dbe;
}

#company-concept--05 .company__box-inner-title {
	background-color: #5eb7e8;
}

.company__box-inner ul {
	margin: 10px 0 36px 0;
}

.company__box-inner p {
	margin: 10px 0 36px 0;
	line-height: 1.6;
}

.company__box-inner p ul {
	margin: 0px 0 10px 0 !important;
	line-height: 1.6;
}

.company__box-inner ul li {
	padding: 5px 0px 5px 22px;
	position: relative;
}

.company__box-inner ul li::before {
	content: "●";
	position: absolute;
	left: 0;
}

.company__box-inner ul li.top-txt {
	padding: 5px 0px 16px 0px;
	position: relative;
}

.company__box-inner ul li.top-txt::before {
	content: "";
	position: absolute;
	left: 0;
}

#company-concept--01 ul li::before {
	color: #f6bbb8;
}

#company-concept--02 ul li::before {
	color: #ffdda1;
}

#company-concept--03 ul li::before {
	color: #aee29f;
}

#company-concept--04 ul li::before {
	color: #cfb0d3;
}

#company-concept--05 ul li::before {
	color: #aed2f0;
}

.company__info {
	padding: 20px;
	font-size: 14px;
	line-height: 1.4;
}

.company__info p {
	padding: 1.5px 0;
	margin: 0 0 0 0;
	line-height: 1.5;
}

.company__name {
	font-size: 22px;
	font-weight: 700;
	margin: 10px 0 5px;
	letter-spacing: 1px;
}

.company__name span {
	font-size: 14px;
}


.company__pic {
	text-align: center;
}

.company__info a {
	transition: .3s;
	text-decoration: underline;
}

.company__info a:hover {
	transition: .3s;
	opacity: .6;
}

#company-concept--01 .company__info {
	border: 1px solid #ed7c7b;
}

#company-concept--02 .company__info {
	border: 1px solid #f7b02d;
}

#company-concept--03 .company__info {
	border: 1px solid #8ec54a;
}

#company-concept--04 .company__info {
	border: 1px solid #bb8dbe;
}

#company-concept--05 .company__info {
	border: 1px solid #5eb7e8;
}

/*タブレット版*/
@media (max-width: 1280px) {
	.company__box {
		padding: 20px 20px;
	}
}

/*SP版*/
@media (max-width: 767px) {

	.jump {
		padding-top: 30px;
		margin-top: -30px;
	}

	.company__box {
		padding: 20px 10px 10px 10px;
		margin-top: 20px;
	}

	.product-title {
		align-items: center;
		margin: 10px 0 10px;
		position: relative;
	}

	.product-title .number {
		width: 60px;
		height: 60px;
		padding-bottom: 5px;
		color: #fff;
		font-size: 26px;
		margin-right: 10px;
		margin-bottom: 10px;
		letter-spacing: 2px;
	}

	.product-title .number::before {
		width: 70px;
		content: "ブース番号";
		height: 16px;
		font-size: 12px;
		letter-spacing: 0px;
		transform: none;
		top: -16px;
		left: -5px;
		transform: translateX(0%);
	}

	.product-title .title {
		font-size: 18px;
		width: 100%;
		font-weight: 700;
		padding: 0 5px;
	}

	figcaption.catch-copy {
		display: block;
		height: 100%;
		z-index: 1;
		width: 100%;
		bottom: 0;
		font-size: 16px;
		padding: 16px 12px;
	}

	.new-item {
		width: 50px;
		letter-spacing: 0px;
		font-size: 14px;
	}

	.new-item2 {
		width: 50px;
		letter-spacing: 0px;
		font-size: 14px;
	}

	.company__box-inner {
		display: flex;
		flex-direction: column;
	}

	.detail-area.-left {
		width: 100%;
		margin-right: 0px;
	}

	.detail-area.-right {
		width: 100%;
	}

	.detail-area-bottom {
		flex-direction: column;
	}

	.detail-area-bottom::before {
		top: -40px;
	}

	.company__box-list {
		margin: 10px 0 20px 0;
	}

	.company__box-list li {
		padding: 5px 0px 5px 24px;
		position: relative;
		line-height: 1.6;
	}

	.company__box-list li::before {
		content: "●";
		position: absolute;
		left: 3px;
	}

	.company__info {
		padding: 20px;
		font-size: 14px;
		line-height: 1.4;
		margin: 0 10px 20px 10px;
	}
}

/* -----------------------------------------------
	ダウンロード
-------------------------------------------------- */
.download-area h3 {
	margin-top: 60px;
}

.download-area>p {
	display: block;
	margin-bottom: 40px;
}

.download__ticket {
	margin: 50px;
}

.download__ticket>a {
	display: block;
	width: 500px;
	text-align: center;
	margin: 0 auto;
	color: #fff;
	background: #DB5148;
	padding: 20px 0;
	border-radius: 50px;
	margin-top: 30px;
	font-size: 20px;
	transition: .3s;
}

.download__ticket>a:hover {
	opacity: .6;
	transition: .3s;
}

.download__ticket>a span {
	font-size: 16px;
	padding-left: 5px;
	letter-spacing: 1px;
}

.download__ticket>a i {
	font-size: 24px;
}

.download__ticket>img {
	box-shadow: 1px 1px 10px #aaaaaa;
	margin-bottom: 10px;
	display: block;
	width: 50%;
	text-align: center;
	margin: 0 auto;
}

span.caption {
	font-size: 14px;
}

.download__banner {
	text-align: center;
}

.download__grid {
	display: grid;
	grid-template-columns: 25% 1fr 25%;
	margin-bottom: 10px;
}

.download__size {
	background: #2d5164;
	color: #fff;
	display: grid;
	place-content: center;
}

.download__img {
	display: grid;
	place-content: center;
	padding: 10px 0;
	border: 1px solid #918181;
	border-left: 0px;
}

.download__btn {
	display: grid;
	place-content: center;
	border: 1px solid #918181;
	border-left: 0px;
}

.download__btn a {
	border-radius: 50px;
	padding: 10px 30px;
	background: #db5149;
	color: #fff;
	width: 100%;
	transition: .3s;
}

.download__btn a i {
	padding-left: 5px;
}

.download__btn a:hover {
	transition: .3s;
	opacity: .6;
}

@media (max-width:1110px) {
	.download__grid {
		display: grid;
		grid-template-columns: 30% 1fr 30%;
		margin-bottom: 10px;
	}

	.download__size {
		font-size: 14px;
	}

	.download__btn {
		font-size: 14px;
	}

	.download__btn a {
		padding: 10px 20px;
	}
}

@media (max-width: 767px) {
	.download__ticket {
		margin: 50px 0;
	}

	.download__ticket>a {
		width: 80%;
		font-size: 18px;
		padding: 10px 0;
		line-height: 1.4;
	}

	.download__ticket>a span {
		font-size: 14px;
	}

	.download__ticket>a i {
		font-size: 20px;
	}

	.download__grid {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: 40px 1fr 60px;
		margin-bottom: 30px;
	}

	.download__size {
		font-size: 16px;
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}

	.download__img {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
		border-left: 1px solid #918181;
		border-bottom: 0px;
	}

	.download__btn {
		grid-column: 1 / 2;
		grid-row: 3 / 4;
		border-top: 0px;
		border-left: 1px solid #918181;
	}

	.download__btn a {
		padding: 10px 30px;
	}
}

/* -----------------------------------------------
	セミナー情報
-------------------------------------------------- */
.seminar-box {
	margin: 30px 0;
}

.seminar__titlearea {
	display: flex;
	margin-bottom: 30px;
}

.seminar__title {
	font-size: 20px;
	font-weight: 700;
	color: #149243;
	border-left: 8px double #149243;
	padding-left: 20px;
}

.seminar__subtitle {
	font-weight: 500;
	color: #2d5164;
	padding-top: 3px;
	padding-left: 20px;
	font-size: 18px;
}

.seminar__info {
	font-weight: 500;
	margin-bottom: 30px;
}

.seminar-box>p {
	line-height: 1.6;
}

.seminar__imgarea {
	margin: 30px 0;
	display: flex;
	justify-content: space-between;
}

.seminar-imgbox {
	width: 33%;
}

.seminar-imgbox>p {
	font-size: 14px;
	line-height: 1.6;
}

/* ===============================================
開催結果報告
=============================================== */

.result {
	height: 56px;
	width: 100%;
}

.result-link {
	background-color: #fff8f5;
	width: 100%;
	height: 100%;
	display: block;
	border: 1px solid #ed7c7b;
	border-radius: 10px;
	transition: 0.3s;
	color: #c30d23;
	text-align: center;
}

.result-link:hover {
	background-color: #ed7c7b;
	transition: 0.3s;
	color: #fff;
}

.result-txt {
	line-height: 56px;
	font-size: 18px;
	letter-spacing: 1.5px;
	font-weight: bold;
	position: relative;
	display: inline;
	width: 100%;
}

.result-txt::after {
	position: absolute;
	content: "";
	background-image: url(../img/icon_pdf.png);
	background-repeat: no-repeat;
	top: 3px;
	right: -15px;
	width: 24px;
	height: 24px;
}

.sp-only {
	display: none;
}

.pc-only {
	display: block;
}

@media (max-width: 767px) {
	.sp-only {
		display: block;
	}

	.pc-only {
		display: none;
	}
}