@charset "UTF-8";
/*--------------------------------------
    IMPORT
--------------------------------------*/
@import url('/shop/common/webfont/fonts.css');

/*--------------------------------------
    RESET
--------------------------------------*/
* {
  box-sizing: border-box;
}

html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, p, figure, blockquote {
  margin: 0;
  padding: 0;
}

ul, li {
  list-style: none;
}

em {
  font-weight: bold;
  font-style: normal;
}

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

/*--------------------------------------
    カスタムプロパティ
--------------------------------------*/
:root {
	--wimax-main: #083090;
	--wimax-sub: #0091d7;
  --uq-pink: #e4007f;
	--text-normal: #333;
	--text-strong: #e60012;
}

/*--------------------------------------
    COMMON
--------------------------------------*/
body {
  width: 100%;
  min-width: 115rem;
  height: 100%;
  line-height: 1.75;
  text-align: justify;
  color: #333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}

.l-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	padding: 0 25px;
}
.c-header-link {
	display: flex;
	align-items: center;
	column-gap: 20px;
	height: 100%;
}
.c-header-logo img {
	width: 148px;
	height: auto;
}
.c-header-text {
	font-weight: 700;
	font-size: 2rem;
}
.c-header-button__list {
	display: flex;
	column-gap: 10px;
}
.c-header-button__item {
	width: 211px;
	height: 46px;
}
.c-header-button__link {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	padding-left: 20px;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.182;
	text-align: center;
	color: #707070;
	border-radius: 24px;
}
.c-header-button-mail .c-header-button__link {
	background: #fff;
	border: 1px solid #adadad;
}
.c-header-button-web .c-header-button__link {
	color: #fff;
	background: var(--wimax-sub);
	border: 1px solid var(--wimax-sub);
}
.c-header-button-tel .c-header-button__link {
	color: #fff;
	background: var(--wimax-main);
	border: 1px solid var(--wimax-main);
}
.c-header-button__link::before {
	display: inline-block;
	content: "";
}
.c-header-button-mail .c-header-button__link::before {
	width: 22px;
	height: 16px;
	margin-right: 10px;
	background: url( "/shop/corporation/_assets/img/icon_mail_black.svg") no-repeat 0 0 / contain;
}
.c-header-button-web .c-header-button__link::before {
	width: 29px;
	height: 20px;
	margin-right: 15px;
	background: url( "/shop/corporation/_assets/img/icon_web_white.svg") no-repeat 0 0 / contain;
}
.c-header-button-tel .c-header-button__link::before {
	width: 20px;
	height: 20px;
	margin-right: 28px;
	background: url( "/shop/corporation/_assets/img/icon_tel_white.svg") no-repeat 0 0 / contain;
}
.l-container__inner {
  margin: auto;
  padding: 0 15px;
  max-width: 930px;
}
.c-seo-heading {
  display: none;
}
.c-section-heading {
	font-weight: 900;
	font-size: 3.5rem;
	line-height: 1;
	letter-spacing: 0.06em;
	text-align: center;
	color: var(--wimax-main);
}
.c-notes-text {
	padding-left: 1em;
	font-size: 1.2rem;
	line-height: 1.5;
	text-indent: -1em;
}
.c-text-link {
	color: var(--wimax-sub);
	text-decoration: underline !important;
}
.c-text-link--window::after {
	display: inline-block;
	position: relative;
	top: 2px;
	right: 0;
	width: 12px;
	height: 12px;
	margin: auto;
	font-family: "Material Icons";
	font-size: 1.2rem;
	text-decoration: none;
	content: "\e895";
}
.c-text-link:hover {
	text-decoration: none !important;
}
@media screen and (max-width: 767px) {
	.l-header {
		height: 60px;
		padding: 0 0 0 20px;
	}
	.c-header-link {
		flex-direction: column;
		justify-content: center;
		column-gap: 0;
	}
	.c-header-logo img {
		width: 95px;
	}
	.c-header-text {
		font-size: 1.4rem;
	}
	.c-header-button__list {
		column-gap: 0;
	}
	.c-header-button__item {
		width: 80px;
		height: 60px;
	}
	.c-header-button__link {
		flex-direction: column;
		justify-content: center;
		row-gap: 3px;
		padding-left: 0;
		font-size: 1.1rem;
		border-radius: 0;
	}
	.c-header-button-mail .c-header-button__link {
		background: #fff;
		border: 0px;
		border-left: 1px solid #adadad;
	}
	.c-header-button-mail .c-header-button__link::before {
		width: 20px;
		height: 15px;
		margin-right: 0;
	}
	.c-header-button-web .c-header-button__link::before {
		width: 23px;
		height: 16px;
		margin-right: 0;
	}
	.c-header-button-tel .c-header-button__link::before {
		width: 16px;
		height: 16px;
		margin-right: 0;
	}
	.c-section-heading {
		font-size: 2.5rem;
	}
}

/* 表組み */
.c-table {
	width: 100%;
	min-width: 0;
	margin: 0 auto;
	border: 1px solid #ccc;
	border-collapse: separate;
	overflow: hidden;
  border-spacing: 0;
  border-radius: 10px;
	table-layout: fixed;
}
.c-table th,
.c-table td {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.c-table th {
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.237;
	text-align: center;
}
.c-table td {
	background: #fff;
}
.c-table th:last-child,
.p-plan-table .c-table td:last-child,
.p-quality-table .c-table tr:nth-child(2) > td:last-child {
	border-right: none;
}
.c-table tr:last-child > th,
.c-table tr:last-child > td,
.p-quality-table .c-table tr:nth-child(2) > td:last-child {
	border-bottom: none;
}
.c-table td {
	font-size: 1.6rem;
}
.c-table-bg01 {
	height: 44px;
	padding: 9px 0;
	color: #fff;
	background: #666666;
}
.c-table-bg02 {
	background: #f5f5f5;
}
@media screen and (max-width: 767px) {
	.c-table {

	}
	.c-table th,
	.c-table td {
		font-size: 1.3rem;
	}
}

/*--------------------------------------
    modal
--------------------------------------*/
.modal-area {
	display: none;
}
#colorbox {
  padding-bottom: 20px !important;
  border-radius: 10px;
}

#cboxLoadedContent {
  background-color: #fff !important;
}

/*--------------------------------------
    p-firstview
--------------------------------------*/
.p-firstview {
	background: linear-gradient(90deg,rgba(8, 48, 144, 1) 0%, rgba(0, 145, 215, 1) 100%);
}
.p-firstview__kv {
	max-width: 950px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.p-firstview {
		height: 275px;
	}
	.p-firstview__kv {
		max-width: 375px;
	}
}

/*--------------------------------------
    p-content
--------------------------------------*/
.p-content-wrap {
	display: flex;
}
.p-lead .p-content-wrap {
	flex-direction: row-reverse;
	justify-content: center;
	column-gap: 50px;
}
@media screen and (max-width: 767px) {
	.p-lead .p-content-wrap {
		flex-direction: column-reverse;
	}
}

/*--------------------------------------
    p-lead
--------------------------------------*/
.p-lead .c-section-heading {
	letter-spacing: normal;
}
.p-lead {
	margin-top: 55px;
}
.p-lead-plan {
	width: 463px;
	margin-top: 8px;
}
.p-lead-text {
	margin-top: 7px;
	font-weight: 700;
	font-size: 2rem;
	letter-spacing: 0.02em;
	text-align: center;
}
.p-lead-price {
	margin-top: 8px;
	line-height: 1;
	text-align: center;
}
.p-lead-price-text01 {
	font-weight: 700;
	font-size: 7.4rem;
	color: var(--uq-pink);
}
.p-lead-price-text02 {
	position: relative;
	font-weight: 700;
	font-size: 3.4rem;
}
.p-lead-price-text03 {
	position: absolute;
	top: -10px;
	left: 20px;
	font-weight: 400;
	font-size: 1.4rem;
}
.p-lead-price-text04 {
	font-weight: 500;
	font-size: 3.7rem;
}
.p-lead-price-text05 {
	font-weight: 500;
	font-size: 1.8rem;
}
.p-lead-text-box {
	margin-top: 15px;
	padding: 3.5px 15px;
	font-size: 1.2rem;
	line-height: 1.167;
	text-align: center;
	border: 1px solid #d6d6d6;
}
.p-lead-product {
	display: flex;
	justify-content: center;
	column-gap: 40px;
}
.p-lead-product__inner {
	width: 172px;
}
.p-lead-product-lead {
	text-align: center;
}
.p-lead-product-lead span {
	position: relative;
	display: inline-block;
	padding: 0 20px;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.333;
	text-align: center;
}
.p-lead-product-lead span::before,
.p-lead-product-lead span::after {
	position: absolute;
	top: 0;
	width: 1px;
	height: 40px;
	background: var(--text-normal);
	content: "";
}
.p-lead-product-lead span::before {
	left: 0;
	transform: rotate(-15deg);
}
.p-lead-product-lead span::after {
	right: 0;
	transform: rotate(15deg);
}
.p-lead-product-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 172px;
	height: 172px;
	margin-top: 10px;
	border: 1px solid #d6d6d6;
	border-radius: 10px;
}
.p-lead-product-img img {
	width: 150px;
	height: 150px;
	border-radius: 10px;
}
.p-lead-product-title {
	margin-top: 8px;
	font-size: 1.3rem;
	text-align: center;
	line-height: 1.4;
}
.p-lead-product-title em {
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: -0.02em;
}
.p-lead-notes {
	margin-top: 13px;
}
.p-lead-banner {
	margin-top: 43px;
}
@media screen and (max-width: 767px) {
	.p-lead .c-section-heading {
		font-size: 2.3rem;
	}
	.p-lead {
		margin-top: 35px;
	}
	.p-lead-plan {
		width: 100%;
		margin-top: 20px;
	}
	.p-lead-plan-wrap {
		display: flex;
		justify-content: center;
		column-gap: 12px;
		margin-top: 5px;
	}
	.p-lead-text {
		margin-top: 5px;
		font-size: 1.3rem;
		line-height: 1.462;
	}
	.p-lead-price {
		margin-top: 0;
		text-align: left;
	}
	.p-lead-price-text01 {
		font-size: 4.8rem;
	}
	.p-lead-price-text02 {
		font-size: 2rem;
	}
	.p-lead-price-text03 {
		top: -5px;
		left: 10px;
		font-size: 0.9rem;
	}
	.p-lead-price-text04 {
		display: inline-block;
		margin-top: 10px;
		font-size: 2.4rem;
	}
	.p-lead-price-text05 {
		font-size: 1.5rem;
	}
	.p-lead-text-box {
		margin-top: 10px;
		padding: 8px 15px;
	}
	.p-lead-product {
		column-gap: 10px;
	}
	.p-lead-product__inner {
		width: 162px;
	}
	.p-lead-product-lead span {
		font-size: 1.2rem;
	}
	.p-lead-product-lead span::before,
	.p-lead-product-lead span::after {
		height: 34px;
	}
	.p-lead-product-img {
		width: 162px;
		height: 99px;
		margin-top: 3px;
	}
	.p-lead-product-img img {
		width: 96px;
		height: 96px;
	}
	.p-lead-product-title {
		margin-top: 5px;
		font-size: 1.1rem;
	}
	.p-lead-product-title em {
		font-size: 1.3rem;
	}
	.p-lead-notes {
		margin-top: 7px;
	}
	.p-lead-banner {
		margin-top: 15px;
	}
}

/*--------------------------------------
    p-contact
--------------------------------------*/
.p-contact .c-section-heading {
	font-size: 3rem;
}
.p-contact .c-section-heading span {
	position: relative;
	display: inline-block;
	padding: 0 20px;
}
.p-contact .c-section-heading span::before,
.p-contact .c-section-heading span::after {
	position: absolute;
	top: -3px;
	width: 2px;
	height: 37px;
	background: var(--wimax-main);
	content: "";
}
.p-contact .c-section-heading span::before {
	left: 0;
	transform: rotate(-15deg);
}
.p-contact .c-section-heading span::after {
	right: 0;
	transform: rotate(15deg);
}
.p-contact-minus-section {
	margin-top: -103px;
}
.p-contact-minus-section .l-container {
	padding-top: 103px;
}
.p-contact {
	position: relative;
	padding: 65px 0 67px;
}
.p-contact-minus-section .p-contact {
	padding: 50px 0 60px;
}
.p-contact::after {
	position: absolute;
	right: 22px;
	bottom: 82px;
	margin: auto;
	width: 272px;
	height: 252px;
	background: url("/shop/corporation/_assets/img/corporation_gachamuku01.svg") no-repeat 0 0 / cover;
	content: "";
}
.p-contact-content {
	display: flex;
	column-gap: 32px;
	padding: 15px;
	background: #fff;
	border-radius: 10px;
}
.p-contact--a .p-contact-content {
	border: 1px solid #fff;
}
.p-contact--b .p-contact-content {
	border: 1px solid #d6d6d6;
}
.p-contact-content--tel {
	margin-top: 32px;
}
.p-contact-content--web {
	margin-top: 10px;
}
.p-contact-haeding {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 112px;
	font-weight: 700;
	font-size: 1.7rem;
	border-radius: 10px;
}
.p-contact--a .p-contact-haeding {
	border: 1px solid #d6d6d6;
	background: #fff;
}
.p-contact--b .p-contact-haeding {
	border: 1px solid #f5f5f5;
	background: #f5f5f5;
}
.p-contact-content--tel .p-contact-haeding {
	min-height: 225px;
}
.p-contact-content--web .p-contact-haeding {
	min-height: 141px;
}
.p-contact-haeding::before {
	display: inline-block;
	content: "";
}
.p-contact-content--tel .p-contact-haeding::before {
	width: 35px;
	height: 35px;
	background: url("/shop/corporation/_assets/img/icon_tel_black.svg") no-repeat 0 0 / cover;
}
.p-contact-content--web .p-contact-haeding::before {
	width: 45px;
	height: 31px;
	background: url("/shop/corporation/_assets/img/icon_web_black.svg") no-repeat 0 0 / cover;
}
.p-contact-lead01 {
	font-weight: 700;
	font-size: 1.6rem;
}
.p-contact-lead02 {
	font-weight: 500;
	font-size: 1.6rem;
	text-align: center;
}
.p-contact-lead02 span {
	position: relative;
	display: inline-block;
	padding: 0 10px;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.333;
	text-align: center;
}
.p-contact-lead02 span::before,
.p-contact-lead02 span::after {
	position: absolute;
	top: 0;
	width: 1px;
	height: 20px;
	background: var(--text-normal);
	content: "";
}
.p-contact-lead02 span::before {
	left: 0;
	transform: rotate(-15deg);
}
.p-contact-lead02 span::after {
	right: 0;
	transform: rotate(15deg);
}
.p-contact-tel {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 15px;
	margin-top: 5px;
}
.p-contact-tel__img {
	position: relative;
	top: 8px;
	width: 68px;
}
.p-contact-tel__text {
	font-weight: 700;
	font-size: 5.3rem;
	line-height: 1;
}
.p-contact-button {
	width: 422px;
	height: 51px;
}
.p-contact-button-link {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	height: 100%;
	font-weight: 700;
	font-size: 1.8rem;
	color: #fff;
	border-radius: 10px;
}
.p-contact-content--tel .p-contact-button-link {
	background: var(--wimax-main);
	box-shadow: 0 7px 0 0 #050f47;
}
.p-contact-content--tel .p-contact-button-link::before {
	display: inline-block;
	width: 28px;
	height: 28px;
	background: url("/shop/corporation/_assets/img/icon_calendar_white.svg") no-repeat 0 0 / cover;
	content: "";
}
.p-contact-content--web .p-contact-button-link {
	background: var(--wimax-sub);
	box-shadow: 0 7px 0 0 #056290;
}
.p-contact-notes {
	margin-top: 38px;
	font-weight: 500;
	font-size: 1.5rem;
}
.p-contact-notes-item {
	font-size: 1.1rem;
	line-height: 1.455;
}
.p-contact-web {
	font-weight: 700;
	font-size: 1.7rem;
	text-align: center;
}
.p-contact-web-text01 {
	font-weight: 900;
	font-size: 2.3rem;
}
.p-contact-web-text02 {
	background: linear-gradient(transparent 60%, #BAD3F6 60%);
}
@media screen and (max-width: 767px) {
	.p-contact .c-section-heading {
		font-size: 1.9rem;
	}
	.p-contact .c-section-heading span {
		padding: 0 10px;
	}
	.p-contact .c-section-heading span::before,
	.p-contact .c-section-heading span::after {
		height: 23px;
	}
	.p-contact-minus-section {
		margin-top: -54px;
	}
	.p-contact-minus-section .l-container {
		padding-top: 54px;
	}
	.p-contact {
		padding: 35px 0 25px;
	}
	.p-contact-minus-section .p-contact {
		padding: 30px 0 25px;
	}
	.p-contact::after {
		display: none;
	}
	.p-contact-content {
		column-gap: 17px;
		justify-content: center;
		padding: 8px 17px 8px 6px;
	}
	.p-contact-content--tel {
		position: relative;
		margin-top: 17px;
	}
	.p-contact-haeding {
		width: auto;
		padding: 0 8.5px;
		font-size: 1.2rem;
		border-radius: 8px;
	}
	.p-contact-content--tel .p-contact-haeding {
		min-height: 254px;
	}
	.p-contact-content--web .p-contact-haeding {
		min-height: 138px;
	}
	.p-contact-haeding::before {
		display: inline-block;
		content: "";
	}
	.p-contact-content--tel .p-contact-haeding::before {
		width: 24px;
		height: 24px;
	}
	.p-contact-content--web .p-contact-haeding::before {
		width: 31px;
		height: 22px;
	}
	.p-contact-lead01 {
		font-size: 1.4rem;
	}
	.p-contact-lead02 {
		font-weight: 500;
		font-size: 1.6rem;
		text-align: center;
	}
	.p-contact-lead02 span {
		font-size: 1.3rem;
	}
	.p-contact-lead02 span::before,
	.p-contact-lead02 span::after {
		height: 18px;
	}
	.p-contact-tel {
		column-gap: 5px;
		width: 252px;
		height: 46px;
		margin-top: 5px;
		margin-bottom: 75px;
		border: 1px solid #d6d6d6;
		border-radius: 10px;
		box-shadow: 0 5px 0 0 #adadad;
	}
	.p-contact-tel__img {
		top: 1px;
		width: 30px;
	}
	.p-contact-tel__text {
		font-size: 2.3rem;
	}
	.p-contact-button {
		width: 252px;
		height: 46px;
	}
	.p-contact-button-link {
		column-gap: 10px;
		font-size: 1.4rem;
	}
	.p-contact-content--tel .p-contact-button-link {
		box-shadow: 0 5px 0 0 #050f47;
	}
	.p-contact-content--tel .p-contact-button-link::before {
		width: 22px;
		height: 22px;
	}
	.p-contact-content--web .p-contact-button-link {
		box-shadow: 0 5px 0 0 #056290;
	}
	.p-contact-notes {
		margin-top: 0;
		font-size: 1.4rem;
	}
	.p-contact-notes-wrap {
		position: absolute;
		top: 100px;
		right: 0;
		left: 0;
		bottom: 0;
		width: 277px;
		height: 59px;
		margin: 3px auto 0;
		padding-left: 38px;
	}
	.p-contact-web {
		font-size: 1.3rem;
		line-height: 1.4;
	}
	.p-contact-web-text01 {
		font-size: 1.8rem;
		line-height: 1;
	}
	.p-contact-web-text02 {
		background: linear-gradient(transparent 70%, #BAD3F6 70%);
	}	
}

/*--------------------------------------
    p-plan
--------------------------------------*/
.p-plan {
	padding: 55px 0;
}
.p-plan-container {
	position: relative;
	display: flex;
	justify-content: center;
	column-gap: 120px;
	margin-top: 47px;
}
.p-plan-container::after {
	position: absolute;
	width: 1px;
	height: 295px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background: #ccc;
	content: "";
}
.p-plan-container__img {
	width: 264px;
}
.p-plan-category {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 264px;
	height: 41px;
	margin: 0 auto;
	border-radius: 100vh;
	background-color: var(--wimax-main);
	color: #fff;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1;
	text-align: center;
}
.p-plan-lead {
	margin-top: 10px;
	font-weight: 500;
	font-size: 1.6rem;
	text-align: center;
	line-height: 1.212;
}
.p-plan-img {
	max-width: 168px;
	margin: 10px auto 0;
}
.p-plan-img img {
	width: 100%;
}
.p-plan-info-heading {
	margin-top: 10px;
	height: 22px;
	line-height: 1;
}
@media screen and (max-width: 767px) {
	.p-plan {
		padding: 35px 0 28px;
	}
	.p-plan-container {
		column-gap: 22px;
		margin-top: 27px;
	}
	.p-plan-container::after {
		height: 205px;
	}
	.p-plan-container__img {
		width: 155px;
	}
	.p-plan-category {
		max-width: 155px;
		font-size: 1.4rem;
	}
	.p-plan-category em {
		font-size: 1.1rem;
	}
	.p-plan-lead {
		margin-top: 6px;
		font-size: 1.3rem;
	}
	.p-plan-img {
		max-width: 98px;
		margin: 5px auto 0;
	}
	.p-plan-info-heading {
		margin-top: 3px;
		height: 13px;
	}
}

/* 表組み */
.p-plan-table {
	margin-top: 47px;
}
.p-plan-table .c-table th:nth-child(1) {
	width: 163px;
}
.p-plan-table .c-table td {
	padding: 6.5px 38px;
}
.p-plan-table .c-table-bg01,
.p-plan-table .c-table-bg02 {
	height: 50px;
}
.p-plan-table-name {
	font-size: 1.9rem;
	letter-spacing: 0.06em;
}
.p-plan-table-category {
	margin-left: 10px;
	padding: 1px 9.5px;
	font-size: 1.5rem;
	letter-spacing: 0.06em;
	color: #707070;
	background: #fff;
	border-radius: 12px;
}
.p-plan-table .c-table .p-plan-table-text01 em,
.p-plan-table-text03 {
	font-weight: 400;
	font-size: 1.4rem;
}
.p-plan-table-text01 strong {
	font-weight: 700;
	font-size: 2.2rem;
}
.p-plan-table-text02 {
	font-size: 1.4rem;
	text-align: center;
}
.p-plan-table-text02 em {
	font-weight: 700;
	font-size: 1.7rem;
}
.p-plan-table-text02 strong {
	font-weight: 700;
	font-size: 2.2rem;
}
.p-plan-table .c-table .c-notes-text {
	font-size: 1.2rem;
}
.p-plan-table-price-wrap {
	display: flex;
}
.p-plan-table-price:first-child {
	position: relative;
	margin-right: 15px;
}
.p-plan-table-price-wrap .p-plan-table-price:first-child::after {
	position: absolute;
	top: 0;
	right: -7px;
	bottom: 0;
	display: inline-block;
	width: 1px;
	height: 30px;
	margin: auto 0;
	transform: rotate(18deg);
	background: #ccc;
	content: "";
}
.p-plan-detail-icon {
	display: inline-block;
	width: 25px;
	height: 21px;
}
.p-plan-detail-icon--pc {
	display: inline-block;
}
.p-plan-detail-icon--sp {
	display: none;
}
.p-plan-detail-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: var(--wimax-main);
	border-radius: 4px;
}
.p-plan-detail-link img {
	width: 14px;
}
.p-plan-table-price-num {
	font-weight: 700;
	font-size: 2.2rem;
}
.p-plan-table-text01-tax {
	font-size: 1.3rem;
}
.p-plan-table-price-num strong {
	font-weight: 700;
	font-size: 3.2rem;
}
.p-plan-table-price-yen {
	font-weight: 400;
	font-size: 1.6rem;
}
.p-plan-table-price-tax {
	font-weight: 400;
	font-size: 1.3rem;
}
.p-plan-table-product {
	display: flex;
	justify-content: center;
	column-gap: 16px;
	margin-top: 18px;
}
.p-plan-table-product__inner {
	width: 100%;
	padding: 20px 0 25px;
	background: #f5f5f5;
	border-radius: 8px;
}
.p-plan-table-product-img {
	width: 138px;
	height: 138px;
	margin: 0 auto;
}
.p-plan-table-product-img img {
	width: 138px;
}
.p-plan-table-product-logo img {
	height: 17px;
}
.p-plan-detail-wrap {
	width: 100%;
}
.p-plan-table .c-table td .p-plan-detail-wrap--01 {
	padding: 10px 0px 20px;
}
.p-plan-table .c-table td .p-plan-detail-wrap--02 {
	padding: 15px 0px 3px;
}
.p-plan-detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 50px;
	border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
	.p-plan-table .c-table td .p-plan-detail-wrap--01 {
		padding: 0px;
	}
	.p-plan-table .c-table td .p-plan-detail-wrap--02 {
		padding: 0;
	}
	.p-plan-detail {
		display: flex;
		justify-content: space-between;
		align-items: center;
		min-height: 50px;
		border-bottom: 1px solid #ccc;
	}
}

@media screen and (max-width: 767px) {
	.p-plan-table {
		margin-top: 22px;
	}
	.p-plan-table-text01 em {
		font-size: 1.1rem;
		display: block;
	}
	.p-plan-table-text01 .p-plan-table-price-tax {
		display: block;
	}
	.p-plan-table .c-table th:nth-child(1) {
		padding: 8px 0;
		width: 65px;
	}
	.p-plan-table .c-table td {
		padding: 6.5px 12px;
	}
	.p-plan-table .c-table-bg01,
	.p-plan-table .c-table-bg02,
	.p-plan-table .c-table td {
		height: auto;
	}
	.p-plan-table-name {
		font-size: 1.6rem;
	}
	.p-plan-table-category {
		padding: 1px 7.5px;
		font-size: 1.3rem;
		border-radius: 10px;
	}
	.p-plan-table .c-table .p-plan-table-text01 em {
		font-size: 1rem;
		line-height: 1;
	}
	.p-plan-table-text03 {
		font-size: 1.2rem;
		line-height: 1.3;
	}
	.p-plan-table-text01-tax {
		font-size: 1.1rem;
	}
	.p-plan-table-text01 strong {
		font-size: 1.7rem;
	}
	.p-plan-table-text02 {
		font-size: 1.1rem;
		line-height: 1.3;
	}
	.p-plan-table-text02 em {
		font-size: 1.4rem;
	}
	.p-plan-table-text02 strong {
		font-size: 2rem;
	}
	.p-plan-table .c-table .c-notes-text {
		font-size: 1.1rem;
	}
	.p-plan-detail-icon {
		display: inline-block;
		width: 25px;
		height: 21px;
	}
	.p-plan-detail-icon--pc {
		display: none;
	}
	.p-plan-detail-icon--sp {
		display: inline-block;
	}
	.p-plan-detail-link {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		background: var(--wimax-main);
		border-radius: 4px;
	}
	.p-plan-detail-link img {
		width: 14px;
	}
	.p-plan-table-price-num {
		font-size: 1.6rem;
	}
	.p-plan-table-price-num strong {
		font-size: 2.2rem;
		line-height: 1;
	}
	.p-plan-table-price--sp01 .p-plan-table-price-num {
		font-size: 2.2rem;
	}
	.p-plan-table-price--sp01 .p-plan-table-price-yen {
		font-size: 1.6rem;
	}
	.p-plan-table-price--sp01 .p-plan-table-price-tax {
		font-size: 1.3rem;
	}
	.p-plan-table-price--sp02 .p-plan-table-price-num {
		font-size: 1.8rem;
		line-height: 1;
	}
	.p-plan-table-price-yen {
		font-size: 1.3rem;
	}
	.p-plan-table-price-tax {
		display: flex;
		justify-content: flex-end;
		font-size: 1rem;
		line-height: 1;
	}
	.p-plan-table-price-yen .p-plan-table-price-tax {
		display: inline;
	}
	.p-plan-table-product {
		column-gap: 6px;
		margin-top: 10px;
	}
	.p-plan-table-product__inner {
		width: 100%;
		padding: 7px 0 10px;
		background: #f5f5f5;
		border-radius: 8px;
	}
	.p-plan-table-product-img {
		width: 72px;
		height: 72px;
	}
	.p-plan-table-product-img img {
		width: 72px;
	}
	.p-plan-table-product-logo img {
		height: 9px;
	}	
}

/* .p-plan-mode-table */
.p-plan-table .c-table .p-plan-mode-table-wrap {
	padding: 30px 38px 20px;
}
.p-plan-table .c-table .p-plan-mode-table {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.p-plan-table .c-table .p-plan-mode-table th,
.p-plan-table .c-table .p-plan-mode-table td {
	font-weight: 400;
	font-size: 1.4rem;
}
.p-plan-table .c-table .p-plan-mode-table th {
	padding: 10px 13px 5px;
	line-height: 1.414;
}
.p-plan-table .c-table .p-plan-mode-table td {
	padding: 7px 13px 6px;
}
.p-plan-table .c-table .p-plan-mode-table th:nth-child(1) {
	width: 149px;
}
.p-plan-table .c-table .p-plan-mode-table th:nth-child(2) {
	width: 254px;
}
.p-plan-table .c-table .p-plan-mode-table th strong {
	font-weight: 700;
	font-size: 1.6rem;
}
.p-plan-table .c-table .p-plan-mode-table th em {
	display: inline-block;
	font-weight: 400;
	font-size: 1.1rem;
}
.p-plan-table .c-table .p-plan-mode-table th sup {
	font-size: 1rem;
}
.p-plan-table .c-table .p-plan-mode-table-notes {
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	.p-plan-table .c-table .p-plan-mode-table-wrap {
		padding: 15px 12px 20px;
	}
	.p-plan-mode-table-inner {
		width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
	}
	.p-plan-mode-table {
		display: block;
    width: 560px;
		margin: 0 auto;
	}
	.p-plan-table .c-table .p-plan-mode-table th,
	.p-plan-table .c-table .p-plan-mode-table td {
		font-size: 1.3rem;
	}
	.p-plan-table .c-table .p-plan-mode-table th {
		padding: 10px 5px 5px;
	}
	
	.p-plan-table .c-table .p-plan-mode-table th:nth-child(1) {
		width: 90px;
	}
	.p-plan-table .c-table .p-plan-mode-table th:nth-child(2) {
		width: 235px;
	}
	.p-plan-table .c-table .p-plan-mode-table th strong {
		font-size: 1.4rem;
	}
}

/*--------------------------------------
    p-product-info
--------------------------------------*/
.p-product-info {
	padding: 65px 0;
}
.p-product-info .c-section-heading {
	color: #fff;
}
.p-product-info__inner {
	margin-top: 40px;
}
.p-product-container {
	display: flex;
	column-gap: 45px;
	margin-top: 15px;
	padding: 33px 37px 26px 47px;
	border-radius: 10px;
	background-color: #fff;
}
.p-product-container__img {
	width: 233px;
}
.p-product-category {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 233px;
	height: 36px;
	border-radius: 100vh;
	background-color: var(--wimax-main);
	color: #fff;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1;
	text-align: center;
}
.p-product-img {
	max-width: 206px;
	margin: 25px auto 0;
}
.p-product-img img {
	width: 100%;
}
.p-proguct-info-heading {
	height: 31px;
	line-height: 1;
}
.p-proguct-info-heading img {
	width: auto;
	height: 100%;
}
.p-product-lead {
	margin-top: 17px;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1;
}
.p-product-support {
	display: flex;
	column-gap: 4px;
	margin-top: 12px;
}
.p-product-support__item {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 25px;
	padding: 0 0.65em;
	border-radius: 6px;
	background-color: var(--wimax-sub);
	color: #fff;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1;
	text-align: center;
}
.p-product-support__sup {
	margin-top: -5px;
	font-weight: 400;
	font-size: 60%;
}
.p-product-content-info {
	margin: 13px 0 0 -4px;
}
.p-product-content-info__table {
	border-collapse: separate;
	border-spacing: 4px;
}
.p-product-content-info__th {
	height: 15px;
	padding: 1px 0;
	font-weight: 400;
	font-size: 1.1rem;
	text-align: center;
	line-height: 1;
}
.p-product-content-info__th:first-child {
	background-color: #ccc;
}
.p-product-content-info__td {
	width: calc(285px / 3);
	padding-right: 5px;
	border-right: 1px solid #ccc;
	font-size: 1.3rem;
	line-height: 1.25;
	text-align: center;
}
.p-product-content-info__td:first-child {
	border-left: 1px solid #ccc;
}
.p-product-content-info__td strong {
	font-weight: 700;
	font-size: 2.8rem;
}
.p-product-content-info__td:nth-child(3) strong,
.p-product-content-info__td:nth-child(4) strong {
	padding-left: 0.45em;
}
.p-product-content-info__bps {
	position: relative;
	left: 7px;
}
.p-product-content-info__sup {
	position: relative;
	top: 2px;
	font-size: 65%;
	vertical-align: top;
}
.p-product-content__size {
	margin-top: 12px;
	font-size: 1.4rem;
	line-height: 1;
}
.p-product-content__list {
	margin-top: 10px;
}
@media screen and (max-width: 767px) {
	.p-product-info {
		padding: 42px 0 32px;
	}
	.p-product-info__inner {
		margin-top: 25px;
	}
	.p-product-container {
		flex-direction: column;
		row-gap: 8px;
		padding: 26px 19px 20px;
	}
	.p-product-container__img {
		margin: auto;
	}
	.p-product-img {
		max-width: 185px;
		margin-top: 16px;
	}
	.p-proguct-info-heading {
		height: 24px;
		margin-top: 7px;
		text-align: center;
	}
	.p-product-lead {
		margin-top: 15px;
		font-size: 1.6rem;
		text-align: center;
		letter-spacing: 0.05em;
	}
	.p-product-support {
		justify-content: center;
	}
	.p-product-support__item {
		padding: 0 0.6em;
	}
	.p-product-content-info {
		margin: 21px 0 0;
	}
	.p-product-content-info__inner {
		margin: 0 -12px;
	}
	.p-product-content-info__table {
		margin: auto;
	}
	.p-product-content-info__td {
		width: calc(235px / 3);
		line-height: 1.27;
	}
	.p-product-content-info__td span {
		font-size: 1.1rem;
	}
	.p-product-content-info__td strong {
		font-size: 2.6rem;
	}
	.p-product-content-info__bps {
		left: 5px;
	}
}

/*--------------------------------------
    p-quality
--------------------------------------*/
.p-quality {
	padding: 65px 0 58px;
}
.p-quality-lead {
	max-width: 408px;
	margin: 65px 0 0 97px;
}
.p-quality-heading {
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.372;
}
.p-quality-text01 {
	margin-top: 17px;
	font-size: 1.6rem;
}
.p-quality-text01 em {
	font-weight: 700;
	font-size: 2rem;
}
.p-quality-text02 {
	margin-top: 15px;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.4;
}
.p-quality-bg {
	position: relative;
	margin-top: 40px;
	padding: 43px 40px 33px;
	background: #fff;
	border-radius: 10px;
}
.p-quality-bg::after {
	position: absolute;
	top: -273px;
	right: 102px;
	margin: auto;
	width: 242px;
	height: 273px;
	background: url("/shop/corporation/_assets/img/corporation_img01.svg") no-repeat 0 0 / cover;
	content: "";
}
.p-quality-wrap {
	display: flex;
	flex-direction: row-reverse;
	column-gap: 47px;
	padding: 0 57px;
}
.p-quality-wrap .p-quality-wrap__inner:first-child {
	margin-top: 60px;
}
.p-quality-img {
	width: 342px;
}
.p-quality-point {
	margin-top: 57px;
	padding: 0 57px;
}
.p-quality-point-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.p-quality-point__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: calc((100% - 32px) / 3);
	padding: 25px 0 10px;
	background: #def1fa;
	border-radius: 12px;
}
.p-quality-point-title {
	position: absolute;
	top: -12px;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}
.p-quality-point-title span {
	display: inline-block;
	width: 69px;
	padding: 3.5px 0;
	font-weight: 700;
	font-size: 1.7rem;
	line-height: 1;
	color: #fff;
	background: var(--wimax-sub);
	border-radius: 12px;
}
.p-quality-point-text {
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.323;
	text-align: center;
	color: var(--wimax-sub);
}
.p-quality-point-text sup {
	font-size: 1.2rem;
}
.p-quality-table {
	margin-top: 35px;
}
.p-quality-table th:nth-child(1) {
	width: 135px;
}
.p-quality-table th:nth-child(2) {
	width: 238px;
}
.p-quality-table .c-table-bg02 {
	height: 64px;
}
.p-quality-table td {
	text-align: center;
}
.p-quality-table-img {
	padding: 16px 32px 12px;
}
@media screen and (max-width: 767px) {
	.p-quality {
		padding: 42px 0 19px;
	}
	.p-quality-lead {
		margin: 25px 0 0 0;
	}
	.p-quality-heading {
		font-size: 2rem;
		text-align: center;
	}
	.p-quality-bg .p-quality-heading {
		font-size: 2.8rem;
		text-align: left;
	}
	.p-quality-text01 {
		margin-top: 10px;
		font-size: 1.4rem;
	}
	.p-quality-text01 em {
		font-size: 1.8rem;
	}
	.p-quality-text02 {
		margin-top: 7px;
	}
	.p-quality-bg {
		margin-top: 20px;
		padding: 25px 20px 22px;
	}
	.p-quality-bg::after {
		display: none;
	}
	.p-quality-wrap {
		flex-direction: column;
		column-gap: 0;
		padding: 0;
	}
	.p-quality-wrap .p-quality-wrap__inner:first-child {
		margin-top: 0;
	}
	.p-quality-img {
		width: 100%;
		margin-top: 25px;
		padding: 0 20px;
	}
	.p-quality-point {
		margin-top: 35px;
		padding: 0;
	}
	.p-quality-point-wrap {
		row-gap: 23px;
	}
	.p-quality-point__inner {
		width: calc((100% - 11px) / 2);
		padding: 15px 0 7px;
		border-radius: 8px;
	}
	.p-quality-point__inner:last-child {
		width: calc((100% - 11px) / 2);
		margin: 0 auto;
	}
	.p-quality-point-title {
		top: -13px;
	}
	.p-quality-point-title span {
		width: 48px;
		padding: 2.5px 0;
		font-size: 1.2rem;
		border-radius: 8px;
	}
	.p-quality-point-text {
		font-size: 1.4rem;
	}
	.p-quality-point-text sup {
		font-size: 0.8rem;
	}
	.p-quality-table {
		width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		margin-top: 20px;
	}
	.p-quality-table .c-table {
		display: block;
		width: max-content;
	}
	.p-quality-table th:nth-child(1) {
		width: 95px;
	}
	.p-quality-table th:nth-child(2) {
		width: 219px;
	}
	.p-quality-table .c-table-bg02 {
		height: 66px;
	}
}

/*--------------------------------------
    p-scene
--------------------------------------*/
.p-scene {
	padding: 65px 0 74px;
}
.p-scene-card {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 28px;
	margin-top: 40px;
}
.p-scene-card__inner {
	width: calc((100% - 54px) / 3);
	padding: 19px 17px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 6px 6px 4px 0 rgba(0, 0, 0, 0.2);
}
.p-scene-card-heading {
	margin-top: 13px;
	font-weight: 700;
	font-size: 2.2rem;
	text-align: center;
}
.p-scene-card-heading span {
	background: linear-gradient(transparent 70%, #a6d8f1 70%);
}
.p-scene-card-laed {
	margin-top: 10px;
	padding: 0 12px;
	font-size: 1.5rem;
	line-height: 1.6;
}
@media screen and (max-width: 767px) {
	.p-scene {
		padding: 42px 0 26px;
	}
	.p-scene-card {
		row-gap: 12px;
		margin-top: 30px;
	}
	.p-scene-card__inner {
		width: calc((100% - 10px) / 2);
		padding: 11px 10px;
		box-shadow: 4px 4px 2px 0 rgba(0, 0, 0, 0.2);
	}
	.p-scene-card-heading {
		font-size: 1.5rem;
		line-height: 1.516;
	}
	.p-scene-card-laed {
		margin-top: 12px;
		padding: 0 8px;
		font-size: 1.3rem;
		line-height: 1.4;
	}
}

/*--------------------------------------
    p-qa
--------------------------------------*/
.p-qa {
	padding: 70px 0 63px;
}
.p-qa__list {
	margin-top: 47px;
	border-top: 1px solid #ccc;
}
.p-qa__inner {
	border-bottom: 1px solid #ccc;
}
.p-qa__q,
.p-qa__a {
  display: flex;
	column-gap: 20px;
}
.p-qa__q {
  align-items: center;
	position: relative;
	min-height: 80px;
	padding: 10px 78px 10px 20px;
	cursor: pointer;
}
.p-qa__q::before,
.p-qa__q::after {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background: var(--text-normal);
	content: "";
}
.p-qa__q::before {
	right: 26px;
	width: 26px;
	height: 2px;
}
.p-qa__q::after {
	right: 38px;
	width: 2px;
	height: 26px;
}
.p-qa__q.is-open::after {
	display: none;
}
.p-qa__a {
	margin-bottom: 15px;
	padding: 20px 78px 20px 20px;
	background: #d9eef9;
	border-radius: 10px;
}
.p-qa__icon {
	width: 100%;
	max-width: 48px;
}
.p-qa__q-text {
	font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.556;
}
.p-qa__a-text {
	align-self: center;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
	.p-qa {
		padding: 42px 0 33px;
	}
	.p-qa__list {
		margin-top: 25px;
	}
	.p-qa__q,
	.p-qa__a {
		column-gap: 10px;
	}
	.p-qa__q {
		min-height: 60px;
		padding: 10px 36px 10px 10px;
	}
	.p-qa__q::before {
		right: 8px;
		width: 20px;
	}
	.p-qa__q::after {
		right: 17px;
		height: 20px;
	}
	.p-qa__a {
		margin-bottom: 10px;
		padding: 15px 25px 15px 10px;
	}
	.p-qa__icon {
		max-width: 34px;
	}
	.p-qa__q-text {
		font-size: 1.6rem;
		line-height: 1.25;
	}
	.p-qa__a-text {
		font-size: 1.4rem;
		line-height: 1.786;
	}
}

/*--------------------------------------
    modal
--------------------------------------*/
#colorbox {
	padding-bottom: 0 !important;
}
.p-modal-area {
	display: none;
}
.p-modal {
	max-width: 846px;
	margin: auto;
	padding: 40px 80px;
	border: 1px solid #767778;
	border-radius: 8px;
	font-feature-settings: normal;
}
.p-modal__heading-area {
	font-weight: 900;
	line-height: 1;
	text-align: center;
}
.p-modal-heading {
	font-size: 2.1rem;
}
.p-modal-lead {
	margin-top: 12px;
	font-size: 1.7rem;
}
.p-modal-lead sup {
	font-size: 60%;
}
.p-modal__text-area {
	margin-top: 23px;
}
.p-modal-text-heading {
	font-weight: 400;
	font-size: 1.2rem;
}
.p-modal-text {
	padding-left: 1em;
	font-size: 1.2rem;
	text-indent: -1em;
}
ol .p-modal-item {
	list-style: decimal inside;
}
@media screen and (max-width: 767px) {
	.p-modal {
		margin: auto;
		padding: 30px 26px 20px;
	}
	.p-modal-heading {
		font-size: 1.6rem;
	}
	.p-modal-lead {
		margin-top: 10px;
		font-size: 1.3rem;
	}
	.p-modal__text-area {
		margin-top: 20px;
	}
	.p-modal-text-heading {
		font-weight: 400;
		font-size: 1.2rem;
	}
	.p-modal-text {
		padding-left: 1em;
		font-size: 1.2rem;
		text-indent: -1em;
	}
}

/*--------------------------------------
    FONT COLOR
--------------------------------------*/
.u-f_color01 { color: var(--wimax-main); }
.u-f_color02 { color: var(--wimax-sub); }
.u-f_color03 { color: var(--uq-pink); }

/*--------------------------------------
    BACKGROUND COLOR
--------------------------------------*/
.u-bg_color01 { background: #d9eef9; }
.u-bg_color02 { background: #6b83bc; }
.u-bg_color03 { background: #f5f5f5; }
.u-bg_color04 {
	background: url("/shop/corporation/_assets/img/corporation_bg.jpg") repeat top center / auto 19px;
}

/*--------------------------------------
    LAYOUT VARIATION
--------------------------------------*/
/* margin variation */
.u-mt00 {
  margin-top: 0 !important;
}

.u-mt01 {
  margin-top: 1px !important;
}

.u-mt02 {
  margin-top: 2px !important;
}

.u-mt03 {
  margin-top: 3px !important;
}

.u-mt04 {
  margin-top: 4px !important;
}

.u-mt05 {
  margin-top: 5px !important;
}

.u-mt06 {
  margin-top: 6px !important;
}

.u-mt07 {
  margin-top: 7px !important;
}

.u-mt08 {
  margin-top: 8px !important;
}

.u-mt09 {
  margin-top: 9px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt11 {
  margin-top: 11px !important;
}

.u-mt12 {
  margin-top: 12px !important;
}

.u-mt13 {
  margin-top: 13px !important;
}

.u-mt14 {
  margin-top: 14px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt16 {
  margin-top: 16px !important;
}

.u-mt17 {
  margin-top: 17px !important;
}

.u-mt18 {
  margin-top: 18px !important;
}

.u-mt19 {
  margin-top: 19px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt21 {
  margin-top: 21px !important;
}

.u-mt22 {
  margin-top: 22px !important;
}

.u-mt23 {
  margin-top: 23px !important;
}

.u-mt24 {
  margin-top: 24px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt26 {
  margin-top: 26px !important;
}

.u-mt27 {
  margin-top: 27px !important;
}

.u-mt28 {
  margin-top: 28px !important;
}

.u-mt29 {
  margin-top: 29px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt31 {
  margin-top: 31px !important;
}

.u-mt32 {
  margin-top: 32px !important;
}

.u-mt33 {
  margin-top: 33px !important;
}

.u-mt34 {
  margin-top: 34px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt36 {
  margin-top: 36px !important;
}

.u-mt37 {
  margin-top: 37px !important;
}

.u-mt38 {
  margin-top: 38px !important;
}

.u-mt39 {
  margin-top: 39px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt41 {
  margin-top: 41px !important;
}

.u-mt42 {
  margin-top: 42px !important;
}

.u-mt43 {
  margin-top: 43px !important;
}

.u-mt44 {
  margin-top: 44px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mt46 {
  margin-top: 46px !important;
}

.u-mt47 {
  margin-top: 47px !important;
}

.u-mt48 {
  margin-top: 48px !important;
}

.u-mt49 {
  margin-top: 49px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt51 {
  margin-top: 51px !important;
}

.u-mt52 {
  margin-top: 52px !important;
}

.u-mt53 {
  margin-top: 53px !important;
}

.u-mt54 {
  margin-top: 54px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mt56 {
  margin-top: 56px !important;
}

.u-mt57 {
  margin-top: 57px !important;
}

.u-mt58 {
  margin-top: 58px !important;
}

.u-mt59 {
  margin-top: 59px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt61 {
  margin-top: 61px !important;
}

.u-mt62 {
  margin-top: 62px !important;
}

.u-mt63 {
  margin-top: 63px !important;
}

.u-mt64 {
  margin-top: 64px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mt66 {
  margin-top: 66px !important;
}

.u-mt67 {
  margin-top: 67px !important;
}

.u-mt68 {
  margin-top: 68px !important;
}

.u-mt69 {
  margin-top: 69px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt71 {
  margin-top: 71px !important;
}

.u-mt72 {
  margin-top: 72px !important;
}

.u-mt73 {
  margin-top: 73px !important;
}

.u-mt74 {
  margin-top: 74px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mt76 {
  margin-top: 76px !important;
}

.u-mt77 {
  margin-top: 77px !important;
}

.u-mt78 {
  margin-top: 78px !important;
}

.u-mt79 {
  margin-top: 79px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mr00 {
  margin-right: 0 !important;
}

.u-mr05 {
  margin-right: 5px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mr18 {
  margin-right: 18px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-mb00 {
  margin-bottom: 0 !important;
}

.u-mb05 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb18 {
  margin-bottom: 18px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb32 {
  margin-bottom: 32px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-ml00 {
  margin-left: 0 !important;
}

.u-ml05 {
  margin-left: 5px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-ml18 {
  margin-left: 18px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-minus_mt01 {
  margin-top: -1px !important;
}

.u-minus_mt02 {
  margin-top: -2px !important;
}

.u-minus_mt03 {
  margin-top: -3px !important;
}

.u-minus_mt04 {
  margin-top: -4px !important;
}

.u-minus_mt05 {
  margin-top: -5px !important;
}

.u-minus_mt06 {
  margin-top: -6px !important;
}

.u-minus_mt07 {
  margin-top: -7px !important;
}

.u-minus_mt08 {
  margin-top: -8px !important;
}

.u-minus_mt09 {
  margin-top: -9px !important;
}

.u-minus_mt10 {
  margin-top: -10px !important;
}

.u-minus_mt11 {
  margin-top: -11px !important;
}

.u-minus_mt12 {
  margin-top: -12px !important;
}

.u-minus_mt13 {
  margin-top: -13px !important;
}

.u-minus_mt14 {
  margin-top: -14px !important;
}

.u-minus_mt15 {
  margin-top: -15px !important;
}

.u-minus_mt16 {
  margin-top: -16px !important;
}

.u-minus_mt17 {
  margin-top: -17px !important;
}

.u-minus_mt18 {
  margin-top: -18px !important;
}

.u-minus_mt19 {
  margin-top: -19px !important;
}

.u-minus_mt20 {
  margin-top: -20px !important;
}

.u-minus_mt21 {
  margin-top: -21px !important;
}

.u-minus_mt22 {
  margin-top: -22px !important;
}

.u-minus_mt23 {
  margin-top: -23px !important;
}

.u-minus_mt24 {
  margin-top: -24px !important;
}

.u-minus_mt25 {
  margin-top: -25px !important;
}

.u-minus_mt26 {
  margin-top: -26px !important;
}

.u-minus_mt27 {
  margin-top: -27px !important;
}

.u-minus_mt28 {
  margin-top: -28px !important;
}

.u-minus_mt29 {
  margin-top: -29px !important;
}

.u-minus_mt30 {
  margin-top: -30px !important;
}

.u-minus_mt31 {
  margin-top: -31px !important;
}

.u-minus_mt32 {
  margin-top: -32px !important;
}

.u-minus_mt33 {
  margin-top: -33px !important;
}

.u-minus_mt34 {
  margin-top: -34px !important;
}

.u-minus_mt35 {
  margin-top: -35px !important;
}

.u-minus_mt36 {
  margin-top: -36px !important;
}

.u-minus_mt37 {
  margin-top: -37px !important;
}

.u-minus_mt38 {
  margin-top: -38px !important;
}

.u-minus_mt39 {
  margin-top: -39px !important;
}

.u-minus_mt40 {
  margin-top: -40px !important;
}

/* width variation */
.u-wid200 {
  width: 200px !important;
}

.u-wid250 {
  width: 250px !important;
}

.u-wid300 {
  width: 300px !important;
}

.u-wid350 {
  width: 350px !important;
}

.u-wid400 {
  width: 400px !important;
}

.u-wid450 {
  width: 450px !important;
}

.u-wid500 {
  width: 500px !important;
}

.u-wid550 {
  width: 550px !important;
}

.u-wid600 {
  width: 600px !important;
}

.u-wid650 {
  width: 650px !important;
}

.u-wid700 {
  width: 700px !important;
}

.u-wid750 {
  width: 750px !important;
}

.u-wid800 {
  width: 800px !important;
}

.u-wid850 {
  width: 850px !important;
}

.u-wid900 {
  width: 900px !important;
}

.u-wid950 {
  width: 950px !important;
}

.u-wid1000 {
  width: 1000px !important;
}

.u-wid1050 {
  width: 1050px !important;
}

.u-wid1100 {
  width: 1100px !important;
}

.u-wid1150 {
  width: 1150px !important;
}

.u-wid1200 {
  width: 1200px !important;
}

/* font variation */
.u-f10 {
  font-size: 0.625rem !important;
}

.u-f11 {
  font-size: 0.6875rem !important;
}

.u-f12 {
  font-size: 0.75rem !important;
}

.u-f13 {
  font-size: 0.8125rem !important;
}

.u-f14 {
  font-size: 0.875rem !important;
}

.u-f15 {
  font-size: 0.9375rem !important;
}

.u-f16 {
  font-size: 1rem !important;
}

.u-f17 {
  font-size: 1.0625rem !important;
}

.u-f18 {
  font-size: 1.125rem !important;
}

.u-f19 {
  font-size: 1.1875rem !important;
}

.u-f20 {
  font-size: 1.25rem !important;
}

.u-f21 {
  font-size: 1.3125rem !important;
}

.u-f22 {
  font-size: 1.375rem !important;
}

.u-f23 {
  font-size: 1.4375rem !important;
}

.u-f24 {
  font-size: 1.5rem !important;
}

.u-f25 {
  font-size: 1.5625rem !important;
}

.u-f26 {
  font-size: 1.625rem !important;
}

.u-f27 {
  font-size: 1.6875rem !important;
}

.u-f28 {
  font-size: 1.75rem !important;
}

.u-f29 {
  font-size: 1.8125rem !important;
}

.u-f30 {
  font-size: 1.875rem !important;
}

/* line option */
.u-new_line {
  display: inline-block;
}

/* box option */
.u-m_center {
  margin: 0 auto;
}

/* font-weight option */
.u-fw_bold {
  font-weight: bold !important;
}

.u-fw_normal {
  font-weight: normal !important;
}

/* display option */
.u-display_none {
  display: none !important;
}

.u-sp_display {
  display: none !important;
}

.u-pc_display {
  display: block !important;
}

.u-sp_display_ib {
  display: none !important;
}

.u-pc_display_ib {
  display: inline-block !important;
}

/* text option */
.u-ta_left {
  text-align: left !important;
}

.u-ta_right {
  text-align: right !important;
}

.u-ta_center {
  text-align: center !important;
}

.u-ta_justify {
  text-align: justify !important;
}

.u-lh_flat {
  line-height: 1 !important;
}

/* float option */
.u-fl_left {
  float: left !important;
}

.u-fl_right {
  float: right !important;
}

.u-fl_none {
  float: none !important;
}

/* border opiton */
.u-bd_t_none {
  border-top: none !important;
}

.u-bd_r_none {
  border-right: none !important;
}

.u-bd_b_none {
  border-bottom: none !important;
}

.u-bd_l_none {
  border-left: none !important;
}

/* flexbox opiton */
.u-content_flex {
  display: flex;
}

.u-content_flex_spbw {
  display: flex;
  justify-content: space-between;
}

.u-content_flex_wrap {
  display: flex;
  flex-wrap: wrap;
}

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

.u-content_flex_column {
  display: flex;
  flex-direction: column;
}

.u-align_items_center {
  align-items: center;
}

.u-flex_order_m1 {
  order: -1;
}

.u-flex_order_p1 {
  order: 1;
}

@media screen and (max-width: 767px) {
  /*--------------------------------------
  		LAYOUT VARIATION
  --------------------------------------*/
  /* margin variation */
  .u-sp_mt00 {
    margin-top: 0 !important;
  }

  .u-sp_mt01 {
    margin-top: 1px !important;
  }

  .u-sp_mt02 {
    margin-top: 2px !important;
  }

  .u-sp_mt03 {
    margin-top: 3px !important;
  }

  .u-sp_mt04 {
    margin-top: 4px !important;
  }

  .u-sp_mt05 {
    margin-top: 5px !important;
  }

  .u-sp_mt06 {
    margin-top: 6px !important;
  }

  .u-sp_mt07 {
    margin-top: 7px !important;
  }

  .u-sp_mt08 {
    margin-top: 8px !important;
  }

  .u-sp_mt09 {
    margin-top: 9px !important;
  }

  .u-sp_mt10 {
    margin-top: 10px !important;
  }

  .u-sp_mt11 {
    margin-top: 11px !important;
  }

  .u-sp_mt12 {
    margin-top: 12px !important;
  }

  .u-sp_mt13 {
    margin-top: 13px !important;
  }

  .u-sp_mt14 {
    margin-top: 14px !important;
  }

  .u-sp_mt15 {
    margin-top: 15px !important;
  }

  .u-sp_mt16 {
    margin-top: 16px !important;
  }

  .u-sp_mt17 {
    margin-top: 17px !important;
  }

  .u-sp_mt18 {
    margin-top: 18px !important;
  }

  .u-sp_mt19 {
    margin-top: 19px !important;
  }

  .u-sp_mt20 {
    margin-top: 20px !important;
  }

  .u-sp_mt21 {
    margin-top: 21px !important;
  }

  .u-sp_mt22 {
    margin-top: 22px !important;
  }

  .u-sp_mt23 {
    margin-top: 23px !important;
  }

  .u-sp_mt24 {
    margin-top: 24px !important;
  }

  .u-sp_mt25 {
    margin-top: 25px !important;
  }

  .u-sp_mt26 {
    margin-top: 26px !important;
  }

  .u-sp_mt27 {
    margin-top: 27px !important;
  }

  .u-sp_mt28 {
    margin-top: 28px !important;
  }

  .u-sp_mt29 {
    margin-top: 29px !important;
  }

  .u-sp_mt30 {
    margin-top: 30px !important;
  }

  .u-sp_mt31 {
    margin-top: 31px !important;
  }

  .u-sp_mt32 {
    margin-top: 32px !important;
  }

  .u-sp_mt33 {
    margin-top: 33px !important;
  }

  .u-sp_mt34 {
    margin-top: 34px !important;
  }

  .u-sp_mt35 {
    margin-top: 35px !important;
  }

  .u-sp_mt36 {
    margin-top: 36px !important;
  }

  .u-sp_mt37 {
    margin-top: 37px !important;
  }

  .u-sp_mt38 {
    margin-top: 38px !important;
  }

  .u-sp_mt39 {
    margin-top: 39px !important;
  }

  .u-sp_mt40 {
    margin-top: 40px !important;
  }

  .u-sp_mt41 {
    margin-top: 41px !important;
  }

  .u-sp_mt42 {
    margin-top: 42px !important;
  }

  .u-sp_mt43 {
    margin-top: 43px !important;
  }

  .u-sp_mt44 {
    margin-top: 44px !important;
  }

  .u-sp_mt45 {
    margin-top: 45px !important;
  }

  .u-sp_mt46 {
    margin-top: 46px !important;
  }

  .u-sp_mt47 {
    margin-top: 47px !important;
  }

  .u-sp_mt48 {
    margin-top: 48px !important;
  }

  .u-sp_mt49 {
    margin-top: 49px !important;
  }

  .u-sp_mt50 {
    margin-top: 50px !important;
  }

  .u-sp_mt51 {
    margin-top: 51px !important;
  }

  .u-sp_mt52 {
    margin-top: 52px !important;
  }

  .u-sp_mt53 {
    margin-top: 53px !important;
  }

  .u-sp_mt54 {
    margin-top: 54px !important;
  }

  .u-sp_mt55 {
    margin-top: 55px !important;
  }

  .u-sp_mt60 {
    margin-top: 60px !important;
  }

  .u-sp_mt61 {
    margin-top: 61px !important;
  }

  .u-sp_mt62 {
    margin-top: 62px !important;
  }

  .u-sp_mt63 {
    margin-top: 63px !important;
  }

  .u-sp_mt64 {
    margin-top: 64px !important;
  }

  .u-sp_mt65 {
    margin-top: 65px !important;
  }

  .u-sp_mt66 {
    margin-top: 66px !important;
  }

  .u-sp_mt67 {
    margin-top: 67px !important;
  }

  .u-sp_mt68 {
    margin-top: 68px !important;
  }

  .u-sp_mt69 {
    margin-top: 69px !important;
  }

  .u-sp_mt70 {
    margin-top: 70px !important;
  }

  .u-sp_mt71 {
    margin-top: 71px !important;
  }

  .u-sp_mt72 {
    margin-top: 72px !important;
  }

  .u-sp_mt73 {
    margin-top: 73px !important;
  }

  .u-sp_mt74 {
    margin-top: 74px !important;
  }

  .u-sp_mt75 {
    margin-top: 75px !important;
  }

  .u-sp_mt76 {
    margin-top: 76px !important;
  }

  .u-sp_mt77 {
    margin-top: 77px !important;
  }

  .u-sp_mt78 {
    margin-top: 78px !important;
  }

  .u-sp_mt79 {
    margin-top: 79px !important;
  }

  .u-sp_mt80 {
    margin-top: 80px !important;
  }

  .u-sp_mt85 {
    margin-top: 85px !important;
  }

  .u-sp_mt90 {
    margin-top: 90px !important;
  }

  .u-sp_mt95 {
    margin-top: 95px !important;
  }

  .u-sp_mt100 {
    margin-top: 100px !important;
  }

  .u-sp_mr00 {
    margin-right: 0 !important;
  }

  .u-sp_mr05 {
    margin-right: 5px !important;
  }

  .u-sp_mr10 {
    margin-right: 10px !important;
  }

  .u-sp_mr15 {
    margin-right: 15px !important;
  }

  .u-sp_mr18 {
    margin-right: 18px !important;
  }

  .u-sp_mr20 {
    margin-right: 20px !important;
  }

  .u-sp_mr25 {
    margin-right: 25px !important;
  }

  .u-sp_mr30 {
    margin-right: 30px !important;
  }

  .u-sp_mr35 {
    margin-right: 35px !important;
  }

  .u-sp_mr40 {
    margin-right: 40px !important;
  }

  .u-sp_mr45 {
    margin-right: 45px !important;
  }

  .u-sp_mr50 {
    margin-right: 50px !important;
  }

  .u-sp_mr55 {
    margin-right: 55px !important;
  }

  .u-sp_mr60 {
    margin-right: 60px !important;
  }

  .u-sp_mr65 {
    margin-right: 65px !important;
  }

  .u-sp_mr70 {
    margin-right: 70px !important;
  }

  .u-sp_mr75 {
    margin-right: 75px !important;
  }

  .u-sp_mr80 {
    margin-right: 80px !important;
  }

  .u-sp_mr85 {
    margin-right: 85px !important;
  }

  .u-sp_mr90 {
    margin-right: 90px !important;
  }

  .u-sp_mr95 {
    margin-right: 95px !important;
  }

  .u-sp_mr100 {
    margin-right: 100px !important;
  }

  .u-sp_mb00 {
    margin-bottom: 0 !important;
  }

  .u-sp_mb05 {
    margin-bottom: 5px !important;
  }

  .u-sp_mb10 {
    margin-bottom: 10px !important;
  }

  .u-sp_mb15 {
    margin-bottom: 15px !important;
  }

  .u-sp_mb18 {
    margin-bottom: 18px !important;
  }

  .u-sp_mb20 {
    margin-bottom: 20px !important;
  }

  .u-sp_mb25 {
    margin-bottom: 25px !important;
  }

  .u-sp_mb30 {
    margin-bottom: 30px !important;
  }

  .u-sp_mb32 {
    margin-bottom: 32px !important;
  }

  .u-sp_mb35 {
    margin-bottom: 35px !important;
  }

  .u-sp_mb40 {
    margin-bottom: 40px !important;
  }

  .u-sp_mb45 {
    margin-bottom: 45px !important;
  }

  .u-sp_mb50 {
    margin-bottom: 50px !important;
  }

  .u-sp_mb55 {
    margin-bottom: 55px !important;
  }

  .u-sp_mb60 {
    margin-bottom: 60px !important;
  }

  .u-sp_mb65 {
    margin-bottom: 65px !important;
  }

  .u-sp_mb70 {
    margin-bottom: 70px !important;
  }

  .u-sp_mb75 {
    margin-bottom: 75px !important;
  }

  .u-sp_mb80 {
    margin-bottom: 80px !important;
  }

  .u-sp_mb85 {
    margin-bottom: 85px !important;
  }

  .u-sp_mb90 {
    margin-bottom: 90px !important;
  }

  .u-sp_mb95 {
    margin-bottom: 95px !important;
  }

  .u-sp_mb100 {
    margin-bottom: 100px !important;
  }

  .u-sp_ml00 {
    margin-left: 0 !important;
  }

  .u-sp_ml05 {
    margin-left: 5px !important;
  }

  .u-sp_ml10 {
    margin-left: 10px !important;
  }

  .u-sp_ml15 {
    margin-left: 15px !important;
  }

  .u-sp_ml18 {
    margin-left: 18px !important;
  }

  .u-sp_ml20 {
    margin-left: 20px !important;
  }

  .u-sp_ml25 {
    margin-left: 25px !important;
  }

  .u-sp_ml30 {
    margin-left: 30px !important;
  }

  .u-sp_ml35 {
    margin-left: 35px !important;
  }

  .u-sp_ml40 {
    margin-left: 40px !important;
  }

  .u-sp_ml45 {
    margin-left: 45px !important;
  }

  .u-sp_ml50 {
    margin-left: 50px !important;
  }

  .u-sp_ml55 {
    margin-left: 55px !important;
  }

  .u-sp_ml60 {
    margin-left: 60px !important;
  }

  .u-sp_ml65 {
    margin-left: 65px !important;
  }

  .u-sp_ml70 {
    margin-left: 70px !important;
  }

  .u-sp_ml75 {
    margin-left: 75px !important;
  }

  .u-sp_ml80 {
    margin-left: 80px !important;
  }

  .u-sp_ml85 {
    margin-left: 85px !important;
  }

  .u-sp_ml90 {
    margin-left: 90px !important;
  }

  .u-sp_ml95 {
    margin-left: 95px !important;
  }

  .u-sp_ml100 {
    margin-left: 100px !important;
  }

  .u-sp_minus_mt01 {
    margin-top: -1px !important;
  }

  .u-sp_minus_mt02 {
    margin-top: -2px !important;
  }

  .u-sp_minus_mt03 {
    margin-top: -3px !important;
  }

  .u-sp_minus_mt04 {
    margin-top: -4px !important;
  }

  .u-sp_minus_mt05 {
    margin-top: -5px !important;
  }

  .u-sp_minus_mt06 {
    margin-top: -6px !important;
  }

  .u-sp_minus_mt07 {
    margin-top: -7px !important;
  }

  .u-sp_minus_mt08 {
    margin-top: -8px !important;
  }

  .u-sp_minus_mt09 {
    margin-top: -9px !important;
  }

  .u-sp_minus_mt10 {
    margin-top: -10px !important;
  }

  .u-sp_minus_mt11 {
    margin-top: -11px !important;
  }

  .u-sp_minus_mt12 {
    margin-top: -12px !important;
  }

  .u-sp_minus_mt13 {
    margin-top: -13px !important;
  }

  .u-sp_minus_mt14 {
    margin-top: -14px !important;
  }

  .u-sp_minus_mt15 {
    margin-top: -15px !important;
  }

  .u-sp_minus_mt16 {
    margin-top: -16px !important;
  }

  .u-sp_minus_mt17 {
    margin-top: -17px !important;
  }

  .u-sp_minus_mt18 {
    margin-top: -18px !important;
  }

  .u-sp_minus_mt19 {
    margin-top: -19px !important;
  }

  .u-sp_minus_mt20 {
    margin-top: -20px !important;
  }

  .u-sp_minus_mt21 {
    margin-top: -21px !important;
  }

  .u-sp_minus_mt22 {
    margin-top: -22px !important;
  }

  .u-sp_minus_mt23 {
    margin-top: -23px !important;
  }

  .u-sp_minus_mt24 {
    margin-top: -24px !important;
  }

  .u-sp_minus_mt25 {
    margin-top: -25px !important;
  }

  .u-sp_minus_mt26 {
    margin-top: -26px !important;
  }

  .u-sp_minus_mt27 {
    margin-top: -27px !important;
  }

  .u-sp_minus_mt28 {
    margin-top: -28px !important;
  }

  .u-sp_minus_mt29 {
    margin-top: -29px !important;
  }

  .u-sp_minus_mt30 {
    margin-top: -30px !important;
  }

  .u-sp_minus_mt31 {
    margin-top: -31px !important;
  }

  .u-sp_minus_mt32 {
    margin-top: -32px !important;
  }

  .u-sp_minus_mt33 {
    margin-top: -33px !important;
  }

  .u-sp_minus_mt34 {
    margin-top: -34px !important;
  }

  .u-sp_minus_mt35 {
    margin-top: -35px !important;
  }

  .u-sp_minus_mt36 {
    margin-top: -36px !important;
  }

  .u-sp_minus_mt37 {
    margin-top: -37px !important;
  }

  .u-sp_minus_mt38 {
    margin-top: -38px !important;
  }

  .u-sp_minus_mt39 {
    margin-top: -39px !important;
  }

  .u-sp_minus_mt40 {
    margin-top: -40px !important;
  }

  /* width variation */
  .u-sp_wid200,
.u-sp_wid250,
.u-sp_wid300,
.u-sp_wid350,
.u-sp_wid400,
.u-sp_wid450,
.u-sp_wid500,
.u-sp_wid550,
.u-sp_wid600,
.u-sp_wid650,
.u-sp_wid700,
.u-sp_wid750,
.u-sp_wid800,
.u-sp_wid850,
.u-sp_wid900,
.u-sp_wid950,
.u-sp_wid1000,
.u-sp_wid1050,
.u-sp_wid1100,
.u-sp_wid1150,
.u-sp_wid1200 {
    width: auto !important;
  }

  /* font variation */
  .u-sp_f10 {
    font-size: 0.625rem !important;
  }

  .u-sp_f11 {
    font-size: 0.6875rem !important;
  }

  .u-sp_f12 {
    font-size: 0.75rem !important;
  }

  .u-sp_f13 {
    font-size: 0.8125rem !important;
  }

  .u-sp_f14 {
    font-size: 0.875rem !important;
  }

  .u-sp_f15 {
    font-size: 0.9375rem !important;
  }

  .u-sp_f16 {
    font-size: 1rem !important;
  }

  .u-sp_f17 {
    font-size: 1.0625rem !important;
  }

  .u-sp_f18 {
    font-size: 1.125rem !important;
  }

  .u-sp_f19 {
    font-size: 1.1875rem !important;
  }

  .u-sp_f20 {
    font-size: 1.25rem !important;
  }

  .u-sp_f21 {
    font-size: 1.3125rem !important;
  }

  .u-sp_f22 {
    font-size: 1.375rem !important;
  }

  .u-sp_f23 {
    font-size: 1.4375rem !important;
  }

  .u-sp_f24 {
    font-size: 1.5rem !important;
  }

  .u-sp_f25 {
    font-size: 1.5625rem !important;
  }

  .u-sp_f26 {
    font-size: 1.625rem !important;
  }

  .u-sp_f27 {
    font-size: 1.6875rem !important;
  }

  .u-sp_f28 {
    font-size: 1.75rem !important;
  }

  .u-sp_f29 {
    font-size: 1.8125rem !important;
  }

  .u-sp_f30 {
    font-size: 1.875rem !important;
  }

  /* box option */
  .u-sp_m_center {
    margin: 0 auto;
  }

  /* font-weight option */
  .u-sp_fw_bold {
    font-weight: bold !important;
  }

  .u-sp_fw_normal {
    font-weight: normal !important;
  }

  /* display option */
  .u-sp_display {
    display: block !important;
  }

  .u-pc_display {
    display: none !important;
  }

  .u-sp_display_ib {
    display: inline-block !important;
  }

  .u-pc_display_ib {
    display: none !important;
  }

  /* text option */
  .u-sp_ta_left {
    text-align: left !important;
  }

  .u-sp_ta_right {
    text-align: right !important;
  }

  .u-sp_ta_center {
    text-align: center !important;
  }

  .u-sp_ta_justify {
    text-align: justify !important;
  }

  .u-sp_lh_flat {
    line-height: 1 !important;
  }

  /* float option */
  .u-sp_fl_left {
    float: left !important;
  }

  .u-sp_fl_right {
    float: right !important;
  }

  .u-sp_fl_none {
    float: none !important;
  }

  /* border opiton */
  .u-sp_bd_t_none {
    border-top: none !important;
  }

  .u-sp_bd_r_none {
    border-right: none !important;
  }

  .u-sp_bd_b_none {
    border-bottom: none !important;
  }

  .u-sp_bd_l_none {
    border-left: none !important;
  }

  /* flexbox opiton */
  .u-sp_content_flex {
    display: flex;
  }

  .u-sp_content_flex_spbw {
    display: flex;
    justify-content: space-between;
  }

  .u-sp_content_flex_wrap {
    display: flex;
    flex-wrap: wrap;
  }

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

  .u-sp_content_flex_column {
    display: flex;
    flex-direction: column;
  }

  .u-sp_align_items_center {
    align-items: center;
  }

  .u-sp_flex_order_m1 {
    order: -1;
  }

  .u-sp_flex_order_p1 {
    order: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* display option */
  .u-tb_display {
    display: block !important;
  }
}
/*-----------------------------------------------------------
*** [style.css] ***
------------------------------------------------------------*/