@charset "UTF-8";


@media screen and (max-width: 736px) {
}


/* --------------------------------------------------
		foundation
-------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
}
html {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 62.5%;
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	overflow-y: scroll;
	height: 100%;
}
body {
	position: relative;
	font-size: 1.5rem;
	line-height: 1.8;
	color: #333333;
	overflow: hidden;
	min-width: 1040px;
}
a {
	outline: none;
	color: #0B7CE0;
	text-decoration: underline;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
a:hover {
	text-decoration: none;
}
img {
	vertical-align: bottom;
	max-width: 100%;
}

@media screen and (max-width: 736px) {
body {
	min-width: 0;
}
a:hover {
	text-decoration: underline;
}
img {
	max-width: none;
	width: 100%;
}
}


/* --------------------------------------------------
		layout
-------------------------------------------------- */
/* l-header */
.l-header {
	padding-top: 30px;
	position: relative;
	z-index: 100;
	background-color: #FFFFFF;
}

.l-header__inner{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
    max-width: 1040px;
    margin: 0 auto;
}

.l-header__inner .u-cts__inner{
	position: relative;
	z-index: 10;
	background-color: #fff;
	flex: 0 0 10%;
	padding: 0;
}
.l-header__inner .l-nav{
	flex: 0 0 78%;
	margin-left: auto;
}

.l-header-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.l-header-logo--bone {
	width: 230px;
}

.l-header-logo--bone img{
	margin-bottom: 10px;
}
/* l-nav */
.l-nav-list {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: flex-end; 
	justify-content: flex-end;
}
.l-nav-list:after {
	content: "";
	position: absolute;
	top: 10px;
	right: 0;
	height: calc(100% - 20px);
	border-left: 2px solid #DDDDDD;
}
.l-nav-list li {
	position: relative;
	width: 15%;
}

.l-nav-list li:first-child{
	max-width: 80px;
}
.l-nav-list li:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	height: calc(100% - 20px);
	border-left: 2px solid #DDDDDD;
}
.l-nav-list li a {
	position: relative;
	overflow: hidden;
	z-index: 1;
	display: block;
	text-align: center;
	padding: 12px 0 11px;
	color: #333333;
	font-weight: bold;
	text-decoration: none;
	transition: color .2s ease;
}
.l-nav-list li a:after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #0B7CE0;
	transition: bottom .2s ease;
}
.l-nav-list li a:hover,
.l-nav-list li a.is-active {
	color: #0B7CE0;
}
.l-nav-list li a:hover:after,
.l-nav-list li a.is-active:after {
	bottom: 0;
}
.l-nav-list li a .icon-new {
	position: relative;
	display: inline-block;
	margin-left: 5px;
	top: -0.6em;
	color: #FFFFFF;
	font-size: 1.1rem;
	width: 16px;
	line-height: 16px;
	border-radius: 50% 50%;
	background-color: #F74242;
	text-align: center;
}
.l-nav-list-sub,
.l-nav-list.bnr,
.l-nav .l-nav-close {
	display: none;
}

.l-nav-list .l-nav-home{
    background-image: url(../img/icon_home_off.png);
    background-repeat: no-repeat;
    background-position: center center;
	background-size: 19px auto;
	text-indent: -99999px;
}
.l-nav-list .l-nav-home a:hover,
.l-nav-list .l-nav-home a.is-active {
    background-image: url(../img/icon_home.png);
    background-repeat: no-repeat;
    background-position: center center;
	background-size: 19px auto;
}


/* l-main */
.l-main {
	position: relative;
}
/* l-footer */
.l-footer {
	border-top: 1px solid #E3E3E2;
	padding: 30px 0;
}
.l-footer-copyright {
	text-align: center;
	font-size: 1.4rem;
}
/* list */
.l-list--col1,
.l-list--col2,
.l-list--col3,
.l-list--col4,
.l-list--col5 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -40px -20px 40px;
}
.l-list--col2.lyt--r,
.l-list--col3.lyt--r {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.l-list--col1.lyt--s,
.l-list--col2.lyt--s,
.l-list--col3.lyt--s,
.l-list--col4.lyt--s {
	margin-top: -20px;
}
.l-list--col2.lyt--c,
.l-list--col3.lyt--c,
.l-list--col4.lyt--c {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.l-list--col1 > *,
.l-list--col2 > *,
.l-list--col3 > *,
.l-list--col4 > *,
.l-list--col5 > * {
	margin: 40px 20px 0;
}
.l-list--col1.border > * + *,
.l-list--col2.border > *:nth-child(n+3),
.l-list--col3.border > *:nth-child(n+4),
.l-list--col4.border > *:nth-child(n+5) {
	padding-top: 40px;
	border-top: 1px solid #D9D9D9;
}
.l-list--col1.lyt--s > *,
.l-list--col2.lyt--s > *,
.l-list--col3.lyt--s > *,
.l-list--col4.lyt--s > * {
	margin-top: 20px;
}
.l-list--col1.lyt--s.border > * + *,
.l-list--col2.lyt--s.border > *:nth-child(n+3),
.l-list--col3.lyt--s.border > *:nth-child(n+4),
.l-list--col4.lyt--s.border > *:nth-child(n+5) {
	padding-top: 20px;
}
.l-list--col1 > * {
	width: calc(100% - 40px);
}
.l-list--col2 > * {
	width: calc(50% - 40px);
}
.l-list--col3 > * {
	width: calc(33.333333333333% - 40px);
}
.l-list--col4 > * {
	width: calc(25% - 40px);
}
.l-list--col5 > * {
	width: calc(50% - 40px);
}
.l-list--col1 > * > *:last-child,
.l-list--col2 > * > *:last-child,
.l-list--col3 > * > *:last-child,
.l-list--col4 > * > *:last-child {
	margin-bottom: 0;
}
.l-list--cross > li:nth-child(2n) .l-list--cross-item {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.l-list--border {
	position: relative;
	overflow: hidden;
	border-radius: 8px 8px;
	border: 1px solid #E3E3E2;
}
.l-list--border li {
	padding: 40px 40px 0;
}
.l-list--border li + li {
	border-top: 1px solid #E3E3E2;
}
/* modal */
.l-modal {
	max-width: 800px;
	margin: 0 auto;
	padding-bottom: 25px;
}

@media screen and (max-width: 736px) {

.l-nav-list .l-nav-home{
    background-position: 10% center;
}
.l-nav-list .l-nav-home a:hover,
.l-nav-list .l-nav-home a.is-active {
    background-image: none;
}
/* l-header */
.l-header__inner {
	position: relative;
	z-index: 2;
	background-color: #FFFFFF;
}
.l-header-box {
	height: 80px;
}
.l-header-logo--bone {
	width: 64.77611940298507%;
	max-width: 217px;
}
.l-header-logo--megmilk {
	display: none;
}
.l-header-nav__button {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 5.333333333333333%;
	width: 50px;
	height: 50px;
	background-color: #0B7CE0;
	border-radius: 8px 8px;
	cursor: pointer;
}
.l-header-nav__button:before {
	content: "";
	position: absolute;
	top: 14px;
	left: 14px;
	width: 22px;
	height: 2px;
	background-color: #FFFFFF;
	border-radius: 1px 1px;
	transition: transform .2s ease;
}
.l-header-nav__button:after {
	content: "";
	position: absolute;
	top: 34px;
	left: 14px;
	width: 22px;
	height: 2px;
	background-color: #FFFFFF;
	border-radius: 1px 1px;
	transition: transform .2s ease;
}
.l-header-nav__button span {
	position: absolute;
	display: block;
	top: 24px;
	left: 14px;
	width: 22px;
	height: 2px;
	background-color: #FFFFFF;
	border-radius: 1px 1px;
	transition: opacity .2s ease;
}
.l-header-nav__button.is-active:before {
	top: 24px;
	transform: rotate(45deg);
}
.l-header-nav__button.is-active:after {
	top: 24px;
	transform: rotate(-45deg);
}
.l-header-nav__button.is-active span {
	opacity: 0;
}
/* l-nav */
.l-nav {
	position: absolute;
	top: 70px;
	left: 0;
	width: 100%;
	background-color: #FFFFFF;
	transform: translateY(-110%);
	padding: 10px;
}
.l-nav.is-setup {
	transition: transform .4s cubic-bezier(0.23,1,0.32,1);
}
.l-nav.is-active {
	transform: translateY(0);
}
.l-nav-list {
	display: block;
	padding: 20px 5.970149253731343%;
	margin: 0 -5.970149253731343%;
	background-color: #0B7CE0;
}
.l-nav-list:after {
	content: none;
}
.l-nav-list li {
	overflow: hidden;
	width: 100%;
	background-color: #FFFFFF;
	border-radius: 8px 8px;
}

.l-nav-list li:first-child{
	max-width: 100%;
}
.l-nav-list > li + li {
	margin-top: 10px;
}
.l-nav-list li:before {
	content: none;
}
.l-nav-list li a {
	text-align: left;
	padding: 12px 40px 11px 20px;
}
.l-nav-list li a:after {
	content: "";
	top: calc(50% - 5px);
	bottom: auto;
	left: auto;
	right: 20px;
	background-color: transparent;
	width: 8px;
	height: 8px;
	border-top: 2px solid #0B7CE0;
	border-left: 2px solid #0B7CE0;
	transform: rotate(135deg);
}
.l-nav-list li a.l-nav-toggle:before {
	content: "";
	position: absolute;
	top: calc(50% - 7px);
	right: 23px;
	width: 2px;
	height: 14px;
	background-color: #0B7CE0;
}
.l-nav-list li a.l-nav-toggle:after {
	top: calc(50% - 1px);
	right: 17px;
	width: 14px;
	height: 2px;
	border: none;
	background-color: #0B7CE0;
	transform: rotate(0);
}
.l-nav-list li a.l-nav-toggle.is-toggle {
	background-color: #EFF7FF;
}
.l-nav-list li a.l-nav-toggle.is-toggle:before {
	opacity: 0;
}
.l-nav-list li a.l-nav-modal:after {
	top: calc(50% - 9px);
	right: 15px;
	border: none;
	width: 19px;
	height: 19px;
	background-image: url(../img/icon_zoom.png);
	background-size: 19px 19px;
	transform: rotate(0);
}
.l-nav-list li a:hover,
.l-nav-list li a.is-active {
	color: #333333;
}
.l-nav-list-sub li + li:before {
	content: "";
	position: relative;
	display: block;
	top: 0;
	left: 20px;
	width: calc(100% - 40px);
	height: 0;
	border-top: 2px dotted #D9D9D9;
	border-left: none;
}
.l-nav-list.bnr {
	display: block;
}
.l-nav-list.bnr:before {
	content: "";
	position: absolute;
	top: 0;
	left: 5.333333333333333%;
	width: 89.33333333333333%;
	border-top: 2px solid #9DD7FF;
}
.l-nav-list.bnr a {
	text-align: center;
	line-height: 1;
	padding: 0 0;
}
.l-nav-list.bnr a:after {
	top: calc(50% - 9px);
	right: 15px;
	border: none;
	width: 19px;
	height: 19px;
	background-image: url(../img/icon_outside.png);
	background-size: 19px 19px;
	transform: rotate(0);
}
.l-nav-list.bnr .bmp img {
	width: 215px;
}
.l-nav-list.bnr .megmilk img {
	width: 180px;
}



.l-nav .l-nav-close {
	display: block;
	margin: 20px 0;
}

.l-header{
	padding: 0;
}

.l-header__inner{
	display: block;
}

.l-header-box{
	padding-left: 20px;
}

.l-header-logo--bone img{
	margin: 0;
}


/* list */
.l-list--col1,
.l-list--col2,
.l-list--col3,
.l-list--col5 {
	display: block;
	margin: 0 0 40px;
}
.l-list--col4 {
	margin-left: -10px;
	margin-right: -10px;
}
.l-list--col1.lyt--s,
.l-list--col2.lyt--s,
.l-list--col3.lyt--s {
	margin-top: 0;
}
.l-list--col1 > *,
.l-list--col2 > *,
.l-list--col3 > *,
.l-list--col5 > * {
	margin: 40px 0 0;
}
.l-list--col4 > * {
	margin-left: 10px;
	margin-right: 10px;
}
.l-list--col1.border > * + *,
.l-list--col2.border > * + *,
.l-list--col3.border > * + *,
.l-list--col4.border > *:nth-child(n+3) {
	padding-top: 40px;
	border-top: 1px solid #D9D9D9;
}
.l-list--col1.lyt--s.border > * + *,
.l-list--col2.lyt--s.border > * + *,
.l-list--col3.lyt--s.border > * + *,
.l-list--col4.lyt--s.border > *:nth-child(n+3) {
	padding-top: 20px;
}
.l-list--col1 > *,
.l-list--col2 > *,
.l-list--col3 > *,
.l-list--col5 > * {
	width: 100%;
}
.l-list--col4 > * {
	width: calc(50% - 20px);
}
.l-list--border li {
	padding: 30px 8.708708708708709% 0;
}
}


/* --------------------------------------------------
		component
-------------------------------------------------- */
/* title */
.c-h2__title {
	position: relative;
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.4;
	padding-bottom: 15px;
	margin-bottom: 30px;
	border-bottom: 3px solid #0B7CE0;
}
.c-h3__title {
	position: relative;
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1.6;
	padding: 6px 30px;
	margin-bottom: 30px;
	background-color: #EFF7FF;
}
.c-h4__title {
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 30px;
}
/* button */
.c-button--a {
	position: relative;
	display: block;
	color: #FFFFFF;
	background-color: #0B7CE0;
	border: 2px solid #0B7CE0;
	border-radius: 30px 30px;
	line-height: 1.6;
	padding: 11px 0;
	border-radius: 25px 25px;
	text-decoration: none !important;
	text-align: center;
	transition: color .2s ease,
				background-color .2s ease;
}
.c-button--a:before {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 20px;
	width: 16px;
	height: 2px;
	background-color: #FFFFFF;
	transform: rotate(45deg);
	transition: background-color .2s ease;
}
.c-button--a:after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 20px;
	width: 16px;
	height: 2px;
	background-color: #FFFFFF;
	transform: rotate(-45deg);
	transition: background-color .2s ease;
}
.c-button--a:hover {
	color: #0B7CE0;
	background-color: #FFFFFF;
}
.c-button--a:hover:before,
.c-button--a:hover:after {
	background-color: #0B7CE0;
}
.c-button--b {
	position: relative;
	display: block;
	background-color: #0B7CE0;
	border-radius: 8px 8px;
	border: 1px solid #0B7CE0;
	color: #FFFFFF;
	padding: 13px 30px;
	text-align: center;
	text-decoration: none !important;
	transition: color .2s ease,
				background-color .2s ease;
}
.c-button--b:after {
	content: "";
	position: absolute;
	top: calc(50% - 5px);
	right: 20px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #FFE463;
	border-left: 2px solid #FFE463;
	transform: rotate(135deg);
}
.c-button--b:hover {
	color: #0B7CE0;
	background-color: #FFFFFF;
}
.c-button--c,
.c-button--d {
	position: relative;
	display: block;
	transition: opacity .2s ease;
}
.c-button--c.border,
.c-button--d.border {
	border: 1px solid #E3E3E2;
}
.c-button--d {
	overflow: hidden;
	border-radius: 8px 8px;
}
.c-button--c:hover,
.c-button--d:hover {
	opacity: 0.8;
}
.c-button--e {
	position: relative;
	display: block;
	background-color: #0B7CE0;
	border-radius: 8px 8px;
	border: 1px solid #0B7CE0;
	color: #FFFFFF;
	padding: 13px 30px 13px 20px;
	text-decoration: none !important;
	transition: color .2s ease,
				background-color .2s ease;
}
.c-button--e:after {
	content: "";
	position: absolute;
	top: calc(50% - 5px);
	right: 20px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #FFE463;
	border-left: 2px solid #FFE463;
	transform: rotate(135deg);
}
.c-button--e:hover {
	color: #0B7CE0;
	background-color: #FFFFFF;
}
.c-button--f {
	position: relative;
	display: block;
	background-color: #FFFFFF;
	text-align: center;
	color: #333333;
	padding: 14px 15px;
	border-radius: 30px 30px;
	text-decoration: none !important;
	transition: opacity .2s ease;
}
.c-button--f:before {
	content: "";
	position: absolute;
	top: calc(50% - 7px);
	right: 26px;
	height: 14px;
	width: 2px;
	background-color: #333333;
}
.c-button--f:after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 20px;
	height: 2px;
	width: 14px;
	background-color: #333333;
}
.c-button--f:hover {
	opacity: 0.8;
}
/* text */
.c-text {
	margin-bottom: 40px;
}
.c-text strong{
	font-size: 110%;
	font-weight: bold;
}
.c-text p + p {
	margin-top: 20px;
}
.c-text--line2 {
	position: relative;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.c-text--line3 {
	position: relative;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.c-note {
	font-size: 1.3rem;
}
/* image */
.c-image {
	margin-bottom: 40px;
}
.c-image .c-image-figuer {
	position: relative;
	overflow: hidden;
	border-radius: 8px 8px;
}


/* box */
.c-box--a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 40px;
}
.c-box--a.lyt--r {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.c-box--a .c-box__image {
	width: 39%;
}
.c-box--a .c-box__image-figuer {
	position: relative;
	overflow: hidden;
	border-radius: 8px 8px;
}
.c-box--a .c-box__body {
	width: 57%;
}
.c-box--a .c-box__body > *:last-child {
	margin-bottom: 0;
}
/* table */
.c-table--a,
.c-table--b {
	margin-bottom: 40px;
}
.c-table--a caption,
.c-table--b caption {
	text-align: left;
	margin-bottom: 10px;
}
.c-table--a table,
.c-table--b table {
	width: 100%;
	line-height: 1.5;
}
.c-table--a table thead,
.c-table--b table thead {
	color: #FFFFFF;
	background-color: #0B7CE0;
}
.c-table--a table th,
.c-table--a table td,
.c-table--b table th,
.c-table--b table td {
	text-align: left;
	vertical-align: top;
	padding: 10px 20px;
}
.c-table--a table tbody tr,
.c-table--b table tbody tr {
	border-bottom: 1px solid #0B7CE0;
}
.c-table--a table tbody th,
.c-table--b table tbody th {
	background-color: #EFF7FF;
}
.c-table--a table tbody td + td,
.c-table--b table tbody td + td {
	border-left: 1px solid #DDDDDD;
}
/* movie */
.c-movie {
	margin-bottom: 40px;
}
.c-movie__wrap {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}
.c-movie__wrap video,
.c-movie__wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* icon */
.c-icon--new {
	font-size: 1.1rem;
	color: #FFFFFF;
	background-color: #E6204F;
	border-radius: 50% 50%;
	line-height: 40px;
	width: 40px;
	text-align: center;
	border: 1px solid #FFFFFF;
}
.c-icon--outside {
	position: relative;
	display: inline-block;
	padding-left: 22px;
}
.c-icon--outside:before {
	content: "";
	position: absolute;
	top: calc(1em - 10px);
	left: 0;
	width: 19px;
	height: 19px;
	background-image: url(../img/icon_outside.png);
	background-repeat: no-repeat;
	background-size: 19px 19px;
}
.c-icon--link {
	position: relative;
	display: inline-block;
	padding-left: 22px;
}
.c-icon--link:before {
	content: "";
	position: absolute;
	top: calc(1em - 6px);
	left: 0;
	width: 12px;
	height: 12px;
	background-color: #0B7CE0;
}

@media screen and (max-width: 736px) {
/* title */
.c-h2__title {
	font-size: 2.3rem;
}
.c-h3__title {
	position: relative;
	font-size: 2.0rem;
	padding: 6px 15px;
}
.c-h4__title {
	font-size: 2.0rem;
}
/* button */
.c-button--a:hover {
	color: #FFFFFF;
	background-color: #0B7CE0;
}
.c-button--a:hover:before,
.c-button--a:hover:after {
	background-color: #FFFFFF;
}
.c-button--b:hover {
	color: #FFFFFF;
	background-color: #0B7CE0;
}
.c-button--c:hover ,
.c-button--d:hover {
	opacity: 1;
}
.c-button--e:hover {
	color: #FFFFFF;
	background-color: #0B7CE0;
}
.c-button--f:hover {
	opacity: 1;
}
/* box */
.c-box--a {
	display: block;
}
.c-box--a .c-box__image {
	margin-bottom: 30px;
	width: 100%;
}
.c-box--a .c-box__body {
	width: 100%;
	margin-bottom: 30px;
}
/* table */
.c-table--b table tbody th {
	display: block;
	width: 100%;
}
.c-table--b table tbody td {
	display: block;
	width: 100%;
}
.c-table--b table tbody td + td {
	border-left: none;
	border-top: 1px solid #DDDDDD;
}
}


/* --------------------------------------------------
		project
-------------------------------------------------- */
/* visual */
.p-visual.lyt--a {
	height: 595px;
	margin-bottom: 80px;
	background-image: url(../img/bg_03.png), url(../img/bg_02.png);
	background-position: center bottom, center top;
	background-repeat: repeat-x, repeat;
}
.p-visual.lyt--a .p-visual__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.p-visual.lyt--a .p-visual__body {
	padding-top: 120px;
	width: 320px;
}
.p-visual.lyt--a .p-visual__body-title {
	position: relative;
	font-size: 5.4rem;
	font-weight: bold;
	line-height: 1.2;
	padding-bottom: 30px;
	margin: 0 -100px 30px 0;
}
.p-visual.lyt--a .p-visual__body-title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 20px;
	height: 4px;
	background-color: #FFE463;
}
.p-visual.lyt--a .p-visual__body-title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 20px;
	height: 4px;
	background-color: #0B7CE0;
}
.p-visual.lyt--a .p-visual__image {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-top: 25px;
	margin-left: 40px;
}
.p-visual.lyt--a .p-visual__image-figuer {
	margin-right: -160px;
}
.p-visual.lyt--b {
	padding-top: 40px;
	margin-bottom: 40px;
}
.p-visual.lyt--b .p-visual__box {
	position: relative;
	padding: 40px 0;
}
.p-visual.lyt--b .p-visual__image {
	position: absolute;
	top: 0;
	left: -60px;
	width: 1120px;
}
.p-visual.lyt--b .p-visual__body {
	min-height: 180px;
	padding: 30px 0;
	background-image: url(../img/bg_02.png);
	background-position: center center;
	border-radius: 20px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.p-visual.lyt--b .p-visual__body-title {
	text-align: center;
	font-size: 4.2rem;
	font-weight: bold;
	line-height: 1.3;
}
.p-visual.lyt--c {
	padding-top: 60px;
	margin-bottom: 80px;
}
.p-visual.lyt--c .p-visual__body-member{
	display: flex;
	margin-top: 40px;
}
.p-visual.lyt--c .p-visual__body-member .p-visual__body-member-box{
	flex: 0 0 307px;
}
.p-visual.lyt--c .p-visual__body-member .p-visual__body-member-box:nth-child(2n){
	margin: 0 40px;
}
.p-visual.lyt--c .p-visual__body-member .p-visual__body-member-box .member-img {
	margin-bottom: 20px;
}
.p-visual.lyt--c .p-visual__body-member .p-visual__body-member-box .member-img p span{
	display: block;
	font-weight: bold;
	font-size: 23px;
}
.p-visual.lyt--c .p-visual__body-member .p-visual__body-member-box .member-img img{
	width: 120px;
	max-width: 120px;
	margin-bottom: 20px;
}
.p-visual.lyt--c .p-visual__body-member .p-visual__body-member-box .member-tx{
	text-align: left;
}
@media screen and (max-width: 736px) {
	.p-visual.lyt--c .p-visual__body-member{
		display: block;
	}
	.p-visual.lyt--c .p-visual__body-member .p-visual__body-member-box{
		flex: auto;
		margin: 0 0 40px;
	}
	.p-visual.lyt--c .p-visual__body-member .p-visual__body-member-box:nth-child(2n){
		margin: 0 0 40px;
	}
	.p-visual.lyt--c .p-visual__body-member .p-visual__body-member-box .member-img{
		display: flex;
		align-items: center;
		justify-content: start;
		text-align: left;
	}
	.p-visual.lyt--c .p-visual__body-member .p-visual__body-member-box .member-img img{
		width: 100px;
		max-width: 100px;
		margin-bottom: 0;
		margin-right: 20px;
	}
}

.p-visual.lyt--c .p-visual__box {
	position: relative;
}
.p-visual.lyt--c .p-visual__box:before {
	content: "";
	position: absolute;
	top: 170px;
	right: calc(50% - 560px);
	width: 100vw;
	min-width: 1100px;
	height: calc(100% - 170px);
	border-radius: 0 20px 20px 0;
	background-image: url(../img/bg_02.png);
	background-position: right top;
}
.p-visual.lyt--c .p-visual__image {
	position: relative;
	z-index: 1;
	margin-bottom: 40px;
}
.p-visual.lyt--c .p-visual__body {
	position: relative;
	z-index: 1;
	text-align: center;
	padding-bottom: 50px;
}
.p-visual.lyt--c .p-visual__image-figuer {
	position: relative;
	overflow: hidden;
	border-radius: 20px 20px;
}
.p-visual.lyt--c .p-visual__body-title {
	font-size: 4.2rem;
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 20px;
}
.p-visual.lyt--c .p-visual__body-title span {
	color: #0B7CE0;
	background: -webkit-linear-gradient(top, transparent 70%, #FFE463 70%, #FFE463 90%, transparent 90%);
	background: linear-gradient(to bottom, transparent 70%, #FFE463 70%, #FFE463 90%, transparent 90%);
}
.p-visual.lyt--d {
	margin-bottom: 100px;
	padding-top: 80px;
}
.p-visual.lyt--d .p-visual__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.p-visual.lyt--d .p-visual__body {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.p-visual.lyt--d .p-visual__body-tag {
	display: inline-block;
	font-size: 1.3rem;
	font-weight: bold;
	color: #FFFFFF;
	padding: 3px 15px;
	background-color: #0B7CE0;
	border-radius: 4px 4px;
	margin-bottom: 20px;
}
.p-visual.lyt--d .p-visual__body-title {
	font-size: 4.2rem;
	font-weight: bold;
	line-height: 1.3;
}
.p-visual.lyt--d .p-visual__image {
	width: 320px;
	margin-left: 40px;
}
.p-visual.lyt--d .p-visual__image-figuer {
	position: relative;
	overflow: hidden;
	border-radius: 8px 8px;
}
/* ancher-nav */
.p-ancher-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -30px -15px 40px;
}
.p-ancher-nav li {
	width: calc(33.3333333333% - 30px);
	margin: 30px 15px 0;
}
.p-ancher-nav li a {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 2px solid #333333;
	border-radius: 8px 8px;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	line-height: 1.4;
	color: #333333;
	height: calc(100% - 5px);
	padding: 10px 10px 25px;
	margin: 0 5px 5px 0;
	box-shadow: 5px 5px 0 #FFE463;
	transition: margin .1s ease,
				box-shadow .1s ease;
}
.p-ancher-nav li a:after {
	content: "";
	position: absolute;
	bottom: 4px;
	left: calc(50% - 3px);
	border: 6px solid transparent;
	border-top-color: #333333;
}
.p-ancher-nav li a:hover {
	margin: 5px 0 0 5px;
	box-shadow: 0 0 0 #FFE463;
}
/* panel */
.p-panel {
	position: relative;
}
.p-panel .p-panel__box {
	position: relative;
}
.p-panel .p-panel__image-figuer {
	position: relative;
	overflow: hidden;
	border-radius: 8px 8px;
}
.p-panel .p-panel__image-figuer.is-tag {
	border-radius: 8px 8px 8px 0;
}
.p-panel .p-panel__image-figuer.is-link {
	cursor: pointer;
	transition: opacity .2s ease;
}
.p-panel .p-panel__image-figuer.is-over {
	opacity: 0.8;
}
.p-panel .p-panel__image-icon-new {
	position: absolute;
	z-index: 1;
	top: 10px;
	left: 10px;
}

.p-panel .p-panel__image-tag {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #0B7CE0;
    vertical-align: top;
    text-align: center;
    line-height: 1.2;
	padding: 5px 10px;
}
.p-panel .p-panel__image-tag span{
    font-size: 15px;
    font-weight: bold;
}
.p-panel .p-panel__image-tag_recipe {
    display: inline-block;
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #0B7CE0;
    vertical-align: top;
    border-radius: 100%;
    text-align: center;
    line-height: 1.2;
    padding-top: 25px;
    position: absolute;
    top: 15px;
    left: 15px;
}
.p-panel .p-panel__image-tag_recipe span{
    font-size: 17px;
    font-weight: bold;
}

.p-panel .p-panel__body {
	margin-top: 15px;
}
.p-panel .p-panel__body-title {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
}
.p-panel a.p-panel__body-title {
	display: inline-block;
	text-decoration: none;
	color: #333333;
	transition: color .2s ease;
}
.p-panel a.p-panel__body-title:hover {
	color: #0B7CE0;
}
.p-panel .p-panel__body-title.c-icon--link:before {
	top: calc(1em - 8px);
}
.p-panel .p-panel__body-title.c-icon--outside:before {
	top: calc(1em - 12px);
}
.p-panel .p-panel__body-vitamin {
	margin-top: 8px;
	letter-spacing: -0.4em;
	line-height: 1;
}
.p-panel .p-panel__body-vitamin li {
	display: inline-block;
	letter-spacing: 0;
	margin: 5px 10px 0 0;
	font-size: 1.1rem;
	padding: 5px 10px;
	border-radius: 15px 15px;
	vertical-align: top;
}
.p-panel .p-panel__body-vitamin li:last-child {
	margin-right: 0;
}
.p-panel .p-panel__body-vitamin li.k {
	color: #FFFFFF;
	background-color: #00B050;
}
.p-panel .p-panel__body-vitamin li.d {
	color: #FFFFFF;
	background-color: #FFC000;
}
.p-panel .p-panel__body-vitamin li.c {
	background-color: #FFFF00;
}
.p-panel .p-panel__body-text {
	font-size: 1.3rem;
	margin-top: 15px;
}
.p-panel.lyt--b .p-panel__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.p-panel.lyt--b.lyt--r .p-panel__box {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.p-panel.lyt--b .p-panel__image {
	position: relative;
	width: 48%;
}
.p-panel.lyt--b .p-panel__body {
	margin-top: 0;
	width: 48%;
}
/* talk */
.p-talk .l-list--col2 {
	margin-bottom: 0;
}
.p-talk__image {
	margin-bottom: 30px;
}
.p-talk__image img {
	position: relative;
	overflow: hidden;
	border-radius: 8px 8px;
}
.p-talk__list {
	margin-bottom: 40px;
}
.p-talk__list dt {
	position: relative;
	float: left;
	margin-right: 1.0em;
}
.p-talk__list dt:after {
	content: "：";
	display: inline;
	position: absolute;
	top: 0;
	right: -1.0em;
}
.p-talk__list dt.blue {
	border-bottom: 4px solid #0B7CE0;
}
.p-talk__list dt.red {
	border-bottom: 4px solid #F5544D;
}

.p-talk__list dt.yellow {
	border-bottom: 4px solid #FFE463;
}

.p-talk__list dt.gray {
	border-bottom: 4px solid rgb(136, 136, 136);
}

.p-talk__list dt.green {
	border-bottom: 4px solid #467952;
}

.p-talk__list dt.blue_and_yellow {
	position: relative;
	width: auto;
	border-bottom: 3px solid #FFE463;
}

.p-talk__list dt.blue_and_yellow::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 50%;
	height: inherit;
	border-bottom: 3px solid #0B7CE0;
}

.p-talk__list dt.bold {
	font-weight: bold;
	line-height: 1.6;
	background-color: #EFF7FF;
	padding: 0 0 0 30px;
	margin: 6px 0 0 0;
}

.p-talk__list dt.bold:after {
	content: none;
}

.p-talk__list dd.bold {
	font-weight: bold;
	line-height: 1.6;
	padding: 6px 30px 6px 0;
	background-color: #EFF7FF;
}
.p-talk__list dd {
	padding-left: 3.0em;
	margin-bottom: 30px;
}
.p-talk__list dd:after {
	content: "";
	display: table;
	clear: both;
}
.p-talk__title {
	font-weight: bold;
	line-height: 1.6;
	padding: 6px 30px;
	margin-bottom: 30px;
	background-color: #EFF7FF;
	}

/* breadcrumb */
.p-breadcrumb {
	background-color: #EFF7FF;
}
.p-breadcrumb-list {
	padding: 13px 0;
	font-size: 1.4rem;
	letter-spacing: -0.4em;
}
.p-breadcrumb-list li {
	position: relative;
	display: inline-block;
	letter-spacing: 0;
	margin-right: 15px;
}
.p-breadcrumb-list li:last-child {
	margin-right: 0;
}
.p-breadcrumb-list li + li {
	padding-left: 20px;
}
.p-breadcrumb-list li + li:after {
	content: "";
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 5px;
	height: 5px;
	border-top: 2px solid #999999;
	border-left: 2px solid #999999;
	transform: rotate(135deg);
}
.p-breadcrumb-list li:first-child a {
	background-image: url(../img/icon_home.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 19px auto;
	padding-left: 25px;
}
/* pager */
.p-pager {
	position: relative;
	text-align: center;
	letter-spacing: -0.4em;
	margin: 60px 0 40px;
}
.p-pager > * {
	display: inline-block;
	letter-spacing: 0;
	line-height: 50px;
	margin: 0 5px;
}
.p-pager a {
	width: 50px;
	border-radius: 8px 8px;
	border: 1px solid #E3E3E2;
	text-decoration: none;
	color: #333333;
	transition: color .2s ease,
				background-color .2s ease,
				border-color .2s ease;
}
.p-pager a:hover,
.p-pager a.is-active {
	color: #0B7CE0;
	background-color: #EFF7FF;
	border-color: #EFF7FF;
}
.p-pager .text.prev {
	width: 90px;
}
.p-pager .text.prev span {
	position: relative;
	display: inline-block;
	padding-left: 16px;
}
.p-pager .text.prev span:before {
	content: "";
	position: absolute;
	top: 19px;
	left: 0;
	width: 10px;
	height: 10px;
	border-top: 2px solid #0B7CE0;
	border-left: 2px solid #0B7CE0;
	transform: rotate(-45deg);
}
.p-pager .text.next {
	width: 90px;
}
.p-pager .text.next span {
	position: relative;
	display: inline-block;
	padding-right: 16px;
}
.p-pager .text.next span:before {
	content: "";
	position: absolute;
	top: 19px;
	right: 0;
	width: 10px;
	height: 10px;
	border-top: 2px solid #0B7CE0;
	border-left: 2px solid #0B7CE0;
	transform: rotate(135deg);
}
/* modal */
.p-modal {
	background-color: #FFFFFF;
	border: 4px solid #0B7CE0;
	border-radius: 20px 20px;
	padding: 46px 36px 76px;
}
.p-modal__title {
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	padding: 6px 30px;
	border-radius: 8px 8px;
	color: #FFFFFF;
	background-color: #0B7CE0;
	margin-bottom: 40px;
}
.p-modal__body.lyt--col2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.p-modal__body.lyt--col2 .p-modal__body-box {
	width: 52.77777777777778%;
}
.p-modal__body.lyt--col2 .p-modal__body-box > *:last-child {
	margin-bottom: 0;
}
.p-modal__body.lyt--col2 .p-modal__body-image {
	width: 41.66666666666667%;
}
.p-modal__body.lyt--col2 .p-modal__body-image-figuer {
	position: relative;
	overflow: hidden;
	border-radius: 8px 8px;
}
.p-modal .c-button--a {
	width: 300px;
	height: auto;
	position: absolute;
	top: auto !important;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: 1;
	font-size: 1.5rem;
	font-family: "Noto Sans JP", sans-serif;
	cursor: pointer;
}

@media screen and (max-width: 736px) {
/* visual */
.p-visual.lyt--a {
	height: auto;
	padding-bottom: 100px;
	margin-bottom: 70px;
	background-size: 400px auto, 720px auto;
}
.p-visual.lyt--a .p-visual__box {
	display: block;
}
.p-visual.lyt--a .p-visual__body {
	padding-top: 0;
	width: 100%;
}
.p-visual.lyt--a .p-visual__body-title {
	font-size: 3.2rem;
	padding-bottom: 20px;
	margin: 0 0 20px 0;
	text-align: center;
}
.p-visual.lyt--a .p-visual__body-title:before {
	left: calc(50% - 20px);
}
.p-visual.lyt--a .p-visual__body-title:after {
	left: 50%;
}
.p-visual.lyt--a .p-visual__image {
	padding-top: 20px;
	margin: 0 -4.477611940298507% 30px;
}
.p-visual.lyt--a .p-visual__image-figuer {
	margin-right: 0;
}
.p-visual.lyt--b {
	padding-top: 0;
}
.p-visual.lyt--b .p-visual__box {
	padding: 0 0;
}
.p-visual.lyt--b .p-visual__image {
	position: relative;
	left: 0px;
	width: 88.05970149253731%;
	margin: 0 auto;
}
.p-visual.lyt--b .p-visual__body {
	min-height: 0;
	margin-top: -25vw;
	padding: calc(25vw + 10px) 5.970149253731343% 30px;
	background-size: 720px auto;
	display: block;
}
.p-visual.lyt--b .p-visual__body-title {
	font-size: 2.5rem;
	line-height: 1.5;
}
.p-visual.lyt--c {
	padding-top: 0;
	margin-bottom: 60px;
}
.p-visual.lyt--c .p-visual__box:before {
	top: 32vw;
	right: -5.970149253731343%;
	width: 100vw;
	min-width: 0;
	height: calc(100% - 32vw);
	border-radius: 0 0;
	background-position: center top;
	background-size: 20px auto;
}
.p-visual.lyt--c .p-visual__image {
	margin-bottom: 30px;
}
.p-visual.lyt--c .p-visual__body {
	padding-bottom: 40px;
}
.p-visual.lyt--c .p-visual__body-title {
	font-size: 2.5rem;
	line-height: 1.4;
}
.p-visual.lyt--c .p-visual__body-text {
	text-align: left;
}
.p-visual.lyt--d {
	margin-bottom: 60px;
	padding-top: 20px;
}
.p-visual.lyt--d .p-visual__box {
	display: block;
}
.p-visual.lyt--d .p-visual__body {
	margin-bottom: 20px;
}
.p-visual.lyt--d .p-visual__body-tag {
	font-size: 1.3rem;
	margin-bottom: 15px;
}
.p-visual.lyt--d .p-visual__body-title {
	font-size: 2.8rem;
	line-height: 1.4;
}
.p-visual.lyt--d .p-visual__image {
	width: 100%;
	margin-left: 0;
}
/* ancher-nav */
.p-ancher-nav {
	display: block;
	margin: 0 5px 40px 0;
	border: 2px solid #333333;
	border-radius: 8px 8px;
	box-shadow: 5px 5px 0 #FFE463;
}
.p-ancher-nav li {
	width: 100%;
	margin: 0 0;
}
.p-ancher-nav li + li {
	border-top: 1px solid #E3E3E2;
}
.p-ancher-nav li a {
	display: block;
	border: none;
	border-radius: 0 0;
	text-align: left;
	height: auto;
	padding: 20px 30px 20px 20px;
	margin: 0 0;
	box-shadow: none;
}
.p-ancher-nav li a:after {
	bottom: calc(50% - 10px);
	left: calc(100% - 25px);
}
.p-ancher-nav li a:hover {
	margin: 0 0;
	box-shadow: none;
}
.p-ancher-nav li a br {
	display: none;
}
/* panel */
.p-panel .p-panel__image-figuer.is-over {
	opacity: 1;
}
.p-panel a.p-panel__body-title:hover {
	color: #333333;
}
.p-panel.lyt--b .p-panel__box {
	display: block;
}
.p-panel.lyt--b .p-panel__image {
	width: 100%;
}
.p-panel.lyt--b .p-panel__body {
	margin-top: 15px;
	width: 100%;
}
/* scroller */
.p-scroller {
	position: relative;
	padding-top: 40px;
	margin-bottom: 40px;
}
.p-scroller:before {
	content: "SCROLL";
	position: absolute;
	top: 0;
	left: 0;
	line-height: 30px;
	font-size: 1.3rem;
	padding-left: 40px;
	background-image: url(../img/icon_scroll.png);
	background-repeat: no-repeat;
	background-size: 33px 30px;
	background-position: left center;
}
.p-scroller__wrapper {
	position: relative;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 0 -5.970149253731343%;
	padding-bottom: 6px;
}
.p-scroller__inner {
	padding: 0 5.333333333333333%;
}
.p-scroller__inner > *:last-child {
	margin-bottom: 0;
}
/* breadcrumb */
.p-breadcrumb-scroll {
	position: relative;
	overflow: hidden;
	margin: 0 -5.633802816901408%;
}
.p-breadcrumb-list {
	white-space: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding: 13px 5.633802816901408%;
}
/* pager */
.p-pager {
	padding-bottom: 70px;
}
.p-pager.non-nextback {
	padding-bottom: 0;
}
.p-pager a:hover {
	color: #333333;
	background-color: #FFFFFF;
	border-color: #E3E3E2;
}
.p-pager a.is-active {
	color: #0B7CE0;
	background-color: #EFF7FF;
	border-color: #EFF7FF;
}
.p-pager .first,
.p-pager .last {
	display: none;
}
.p-pager .text.prev {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 45%;
	max-width: 150px;
}
.p-pager .text.next {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 45%;
	max-width: 150px;
}
/* modal */
.p-modal {
	padding: 26px 4.776119402985075% 16px;
}
.p-modal__title {
	font-size: 2.4rem;
	margin-bottom: 30px;
}
.p-modal__body.lyt--col2 {
	display: block;
}
.p-modal__body.lyt--col2 .p-modal__body-box {
	width: 100%;
	margin-bottom: 40px;
}
.p-modal__body.lyt--col2 .p-modal__body-image {
	width: 100%;
	margin-bottom: 40px;
}
.p-modal .c-button--a {
	width: 82.08955223880597%;
}
}


/* --------------------------------------------------
		utility
-------------------------------------------------- */
.u-pc {
	display: block !important;
}
.u-sp {
	display: none !important;
}
.u-cfx:after {
	content: "";
	display: table;
	clear: both;
}
.u-bold {
	font-weight: bold;
}
.u-center {
	text-align: center;
}
.u-left {
	text-align: left;
}
.u-right {
	text-align: right;
}
.u-cts,
.u-cts-sub {
	position: relative;
	margin-bottom: 100px;
}
.u-cts__inner {
	position: relative;
	max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto;
}
.u-color--def {
	color: #333333;
}
.u-color--black {
	color: #000000;
}
.u-color--white {
	color: #FFFFFF;
}
.u-color--yellow {
	color: #FFE463;
}
.u-color--blue {
	color: #0B7CE0;
}
.u-color--red {
	color: #E6204F;
}
.u-color--green {
	color: #467952;
}
.u-color--gray {
	color: #999999;
}

@media screen and (max-width: 736px) {
.u-pc {
	display: none !important;
}
.u-sp {
	display: block !important;
}
.u-cts,
.u-cts-sub {
	margin-bottom: 70px;
}
.u-cts__inner {
	max-width: none;
	padding: 0 5.333333333333333%;
}
}


/* --------------------------------------------------
		magnific-popup
-------------------------------------------------- */
.mfp-fade.mfp-bg {
	opacity: 0.7;
	background-color: #FFFFFF;
	transition: all 0.3s ease-out;
}
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
	transition: all 0.3s ease-out;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}
.mfp-container {
	padding: 0 20px;
}

@media screen and (max-width: 736px) {
.mfp-container {
	padding: 0 5.333333333333333%;
}
}


/* --------------------------------------------------
		slick
-------------------------------------------------- */
.slick-dots {
	text-align: center;
	font-size: 0;
	letter-spacing: -0.4em;
	margin-top: 20px;
}
.slick-dots li {
	display: inline-block;
	letter-spacing: 0;
	margin: 0 4px;
}
.slick-dots li button {
	font-size: 0;
	border: none;
	padding: 0 0;
	width: 10px;
	height: 10px;
	background-color: #D8D8D8;
	border-radius: 50% 50%;
	outline: none;
	cursor: pointer;
}
.slick-dots li.slick-active button {
	background-color: #0B7CE0;
}
.slick-arrow {
	position: relative;
	z-index: 2;
	font-size: 0;
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50% 50%;
	background-color: #0B7CE0;
	outline: none;
	cursor: pointer;
}
.slick-arrow:after {
	content: "";
	position: absolute;
	top: 18px;
	width: 12px;
	height: 12px;
	border-top: 2px solid #FFFFFF;
	border-left: 2px solid #FFFFFF;
}
.slick-arrow.slick-prev:after {
	left: 20px;
	transform: rotate(-45deg);
}
.slick-arrow.slick-next:after {
	left: 16px;
	transform: rotate(135deg);
}
/* p-slick-bnrslider */
.p-slick-bnrslider .slick-slide {
	margin: 0 10px;
	width: 320px;
}
.p-slick-bnrslider .slick-prev {
	position: absolute;
	top: 40px;
	left: -25px;
}
.p-slick-bnrslider .slick-next {
	position: absolute;
	top: 40px;
	right: -25px;
}



@media screen and (max-width: 736px) {
.slick-dots {
	margin-top: 20px;
}
.slick-arrow {
	width: 40px;
	height: 40px;
}
.slick-arrow:after {
	top: 14px;
	width: 10px;
	height: 10px;
}
.slick-arrow.slick-prev:after {
	left: 17px;
}
.slick-arrow.slick-next:after {
	left: 13px;
}
/* p-slick-bnrslider */
.p-slick-bnrslider {
	position: relative;
	overflow: hidden;
}
.p-slick-bnrslider .slick-slide {
	margin: 0 10px;
	width: auto;
}
.p-slick-bnrslider .slick-dots {
	padding: 10px 0;
}
.p-slick-bnrslider .slick-prev {
	top: auto;
	bottom: 0;
	left: 0;
}
.p-slick-bnrslider .slick-next {
	top: auto;
	bottom: 0;
	right: 0;
}
.p-slick-bnrslider .slick-list {
	margin: 0 -10px;
}

.hone-content .slick-slide:not(.slick-center) {
    -webkit-filter: opacity(20%);
    -moz-filter: opacity(20%);
    -o-filter: opacity(20%);
    -ms-filter: opacity(20%);
    filter: opacity(20%);
    transition: 0.2s linear;
}
}


/* --------------------------------------------------
		※※※※※
-------------------------------------------------- */

@media screen and (max-width: 736px) {
}


/* 骨を知るメインビジュアル */
.p-visual.lyt--a .p-visual__image {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-top: 85px;
	margin-left: 90px;
}
.p-visual.lyt--a .p-visual__image-figuer img{
	max-width: 70%;
}
@media screen and (max-width: 736px) {
	.p-visual.lyt--a .p-visual__image {
		padding-top: 35px;
		margin-left: 0;
	}
	.p-visual.lyt--a .p-visual__image-figuer img{
		max-width: 100%;
	}
}

.p-visual.lyt--a .p-visual__image-figuer img.fun{
	max-width: 90%;
}

/* レシピ　アドバイス */
.c-box--a .c-box__body__advice {
	width: 100%;
	float:left;
}
.c-box--a .c-box__image__advice {
	width: 39%;
	float:right;
}
.c-box--a .c-text__body__advice {
	margin-bottom: 40px;
	clear: both;
}
@media screen and (max-width: 736px) {
	.c-box--a .c-box__body__advice {
		margin-bottom: 70px;
	}
	.c-box--a .c-box__image__advice {
		float:none;
		width: 90%;
		margin-bottom: 30px;
	}
	.c-box--a .c-text__body__advice {
		float:none;
	}
}
/* 上付きの注釈 */
.p-annotation {
font-size: 0.8em;
vertical-align: top;
}