@charset "UTF-8";

/**
 * セッティング
 */
/*
#overview
らくらくミルクの特徴
*/
@font-face {
	font-family: Lato;
	font-weight: 400;
	src: url(../fonts/Lato-Regular.ttf) format("truetype");
}

@font-face {
	font-family: Lato;
	font-weight: 700;
	src: url(../fonts/Lato-Bold.ttf) format("truetype");
}

@font-face {
	font-family: Lato;
	font-weight: 700;
	font-style: italic;
	src: url(../fonts/Lato-Heavyitalic.ttf) format("truetype");
}

@font-face {
	font-family: "UVN Vung Tay Regular";
	src: url(../fonts/UVNVungTau.ttf) format("truetype");
}

/**--------------------------------------------------
 *
 * Twitter Bootstrap
 *
 --------------------------------------------------*/
/**
 * リセット
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type=checkbox],
input[type=radio] {
	box-sizing: border-box;
	padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	height: auto;
}

input[type=search] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@keyframes bounce {

	from,
	20%,
	53%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translate3d(0, 0, 0);
	}

	40%,
	43% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -30px, 0);
	}

	70% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -15px, 0);
	}

	90% {
		transform: translate3d(0, -4px, 0);
	}
}

.bounce {
	animation-name: bounce;
	transform-origin: center bottom;
}

@keyframes flash {

	from,
	50%,
	to {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0;
	}
}

.flash {
	animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
	from {
		transform: scale3d(1, 1, 1);
	}

	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}

	to {
		transform: scale3d(1, 1, 1);
	}
}

.pulse {
	animation-name: pulse;
}

@keyframes rubberBand {
	from {
		transform: scale3d(1, 1, 1);
	}

	30% {
		transform: scale3d(1.25, 0.75, 1);
	}

	40% {
		transform: scale3d(0.75, 1.25, 1);
	}

	50% {
		transform: scale3d(1.15, 0.85, 1);
	}

	65% {
		transform: scale3d(0.95, 1.05, 1);
	}

	75% {
		transform: scale3d(1.05, 0.95, 1);
	}

	to {
		transform: scale3d(1, 1, 1);
	}
}

.rubberBand {
	animation-name: rubberBand;
}

@keyframes shake {

	from,
	to {
		transform: translate3d(0, 0, 0);
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(-10px, 0, 0);
	}

	20%,
	40%,
	60%,
	80% {
		transform: translate3d(10px, 0, 0);
	}
}

.shake {
	animation-name: shake;
}

@keyframes headShake {
	0% {
		transform: translateX(0);
	}

	6.5% {
		transform: translateX(-6px) rotateY(-9deg);
	}

	18.5% {
		transform: translateX(5px) rotateY(7deg);
	}

	31.5% {
		transform: translateX(-3px) rotateY(-5deg);
	}

	43.5% {
		transform: translateX(2px) rotateY(3deg);
	}

	50% {
		transform: translateX(0);
	}
}

.headShake {
	animation-timing-function: ease-in-out;
	animation-name: headShake;
}

@keyframes swing {
	20% {
		transform: rotate3d(0, 0, 1, 15deg);
	}

	40% {
		transform: rotate3d(0, 0, 1, -10deg);
	}

	60% {
		transform: rotate3d(0, 0, 1, 5deg);
	}

	80% {
		transform: rotate3d(0, 0, 1, -5deg);
	}

	to {
		transform: rotate3d(0, 0, 1, 0deg);
	}
}

.swing {
	transform-origin: top center;
	animation-name: swing;
}

@keyframes tada {
	from {
		transform: scale3d(1, 1, 1);
	}

	10%,
	20% {
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}

	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}

	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}

	to {
		transform: scale3d(1, 1, 1);
	}
}

.tada {
	animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
	from {
		transform: translate3d(0, 0, 0);
	}

	15% {
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}

	30% {
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}

	45% {
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}

	60% {
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}

	75% {
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.wobble {
	animation-name: wobble;
}

@keyframes jello {

	from,
	11.1%,
	to {
		transform: translate3d(0, 0, 0);
	}

	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}

	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg);
	}

	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}

	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}

	66.6% {
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}

	77.7% {
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}

	88.8% {
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}

.jello {
	animation-name: jello;
	transform-origin: center;
}

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

	14% {
		transform: scale(1.3);
	}

	28% {
		transform: scale(1);
	}

	42% {
		transform: scale(1.3);
	}

	70% {
		transform: scale(1);
	}
}

.heartBeat {
	animation-name: heartBeat;
	animation-duration: 1.3s;
	animation-timing-function: ease-in-out;
}

@keyframes bounceIn {

	from,
	20%,
	40%,
	60%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}

	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}

	40% {
		transform: scale3d(0.9, 0.9, 0.9);
	}

	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}

	80% {
		transform: scale3d(0.97, 0.97, 0.97);
	}

	to {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}

.bounceIn {
	animation-duration: 0.75s;
	animation-name: bounceIn;
}

@keyframes bounceInDown {

	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}

	75% {
		transform: translate3d(0, -10px, 0);
	}

	90% {
		transform: translate3d(0, 5px, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.bounceInDown {
	animation-name: bounceInDown;
}

@keyframes bounceInLeft {

	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0);
	}

	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0);
	}

	75% {
		transform: translate3d(-10px, 0, 0);
	}

	90% {
		transform: translate3d(5px, 0, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.bounceInLeft {
	animation-name: bounceInLeft;
}

@keyframes bounceInRight {

	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	from {
		opacity: 0;
		transform: translate3d(3000px, 0, 0);
	}

	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0);
	}

	75% {
		transform: translate3d(10px, 0, 0);
	}

	90% {
		transform: translate3d(-5px, 0, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.bounceInRight {
	animation-name: bounceInRight;
}

@keyframes bounceInUp {

	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	from {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}

	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}

	75% {
		transform: translate3d(0, 10px, 0);
	}

	90% {
		transform: translate3d(0, -5px, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.bounceInUp {
	animation-name: bounceInUp;
}

@keyframes bounceOut {
	20% {
		transform: scale3d(0.9, 0.9, 0.9);
	}

	50%,
	55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1);
	}

	to {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
}

.bounceOut {
	animation-duration: 0.75s;
	animation-name: bounceOut;
}

@keyframes bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0);
	}

	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}

	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}

.bounceOutDown {
	animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0);
	}

	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}

.bounceOutLeft {
	animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0);
	}

	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}

.bounceOutRight {
	animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0);
	}

	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0);
	}

	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}

.bounceOutUp {
	animation-name: bounceOutUp;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fadeIn {
	animation-name: fadeIn;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.fadeInDown {
	animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
	from {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.fadeInDownBig {
	animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.fadeInLeft {
	animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
	from {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.fadeInLeftBig {
	animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.fadeInRight {
	animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
	from {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.fadeInRightBig {
	animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.fadeInUp {
	animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
	from {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.fadeInUpBig {
	animation-name: fadeInUpBig;
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.fadeOut {
	animation-name: fadeOut;
}

@keyframes fadeOutDown {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
}

.fadeOutDown {
	animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}

.fadeOutDownBig {
	animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
}

.fadeOutLeft {
	animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}

.fadeOutLeftBig {
	animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
}

.fadeOutRight {
	animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}

.fadeOutRightBig {
	animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
}

.fadeOutUp {
	animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}

.fadeOutUpBig {
	animation-name: fadeOutUpBig;
}

@keyframes flip {
	from {
		transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
		animation-timing-function: ease-out;
	}

	40% {
		transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		animation-timing-function: ease-out;
	}

	50% {
		transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		animation-timing-function: ease-in;
	}

	80% {
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
		animation-timing-function: ease-in;
	}

	to {
		transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
		animation-timing-function: ease-in;
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	animation-name: flip;
}

@keyframes flipInX {
	from {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		animation-timing-function: ease-in;
	}

	60% {
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}

	80% {
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}

	to {
		transform: perspective(400px);
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInX;
}

@keyframes flipInY {
	from {
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		animation-timing-function: ease-in;
	}

	60% {
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}

	80% {
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}

	to {
		transform: perspective(400px);
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInY;
}

@keyframes flipOutX {
	from {
		transform: perspective(400px);
	}

	30% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1;
	}

	to {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}

.flipOutX {
	animation-duration: 0.75s;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@keyframes flipOutY {
	from {
		transform: perspective(400px);
	}

	30% {
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}

	to {
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}

.flipOutY {
	animation-duration: 0.75s;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipOutY;
}

@keyframes lightSpeedIn {
	from {
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}

	60% {
		transform: skewX(20deg);
		opacity: 1;
	}

	80% {
		transform: skewX(-5deg);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.lightSpeedIn {
	animation-name: lightSpeedIn;
	animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
	from {
		opacity: 1;
	}

	to {
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}

.lightSpeedOut {
	animation-name: lightSpeedOut;
	animation-timing-function: ease-in;
}

@keyframes rotateIn {
	from {
		transform-origin: center;
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}

	to {
		transform-origin: center;
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

.rotateIn {
	animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
	from {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}

	to {
		transform-origin: left bottom;
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

.rotateInDownLeft {
	animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
	from {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}

	to {
		transform-origin: right bottom;
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

.rotateInDownRight {
	animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
	from {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}

	to {
		transform-origin: left bottom;
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

.rotateInUpLeft {
	animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
	from {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}

	to {
		transform-origin: right bottom;
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

.rotateInUpRight {
	animation-name: rotateInUpRight;
}

@keyframes rotateOut {
	from {
		transform-origin: center;
		opacity: 1;
	}

	to {
		transform-origin: center;
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0;
	}
}

.rotateOut {
	animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
	from {
		transform-origin: left bottom;
		opacity: 1;
	}

	to {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
}

.rotateOutDownLeft {
	animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
	from {
		transform-origin: right bottom;
		opacity: 1;
	}

	to {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}

.rotateOutDownRight {
	animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
	from {
		transform-origin: left bottom;
		opacity: 1;
	}

	to {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}

.rotateOutUpLeft {
	animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
	from {
		transform-origin: right bottom;
		opacity: 1;
	}

	to {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0;
	}
}

.rotateOutUpRight {
	animation-name: rotateOutUpRight;
}

@keyframes hinge {
	0% {
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}

	20%,
	60% {
		transform: rotate3d(0, 0, 1, 80deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}

	40%,
	80% {
		transform: rotate3d(0, 0, 1, 60deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}

	to {
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}

.hinge {
	animation-duration: 2s;
	animation-name: hinge;
}

@keyframes jackInTheBox {
	from {
		opacity: 0;
		transform: scale(0.1) rotate(30deg);
		transform-origin: center bottom;
	}

	50% {
		transform: rotate(-10deg);
	}

	70% {
		transform: rotate(3deg);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.jackInTheBox {
	animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.rollIn {
	animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}

.rollOut {
	animation-name: rollOut;
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}
}

.zoomIn {
	animation-name: zoomIn;
}

@keyframes zoomInDown {
	from {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomInDown {
	animation-name: zoomInDown;
}

@keyframes zoomInLeft {
	from {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomInLeft {
	animation-name: zoomInLeft;
}

@keyframes zoomInRight {
	from {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomInRight {
	animation-name: zoomInRight;
}

@keyframes zoomInUp {
	from {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomInUp {
	animation-name: zoomInUp;
}

@keyframes zoomOut {
	from {
		opacity: 1;
	}

	50% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}

	to {
		opacity: 0;
	}
}

.zoomOut {
	animation-name: zoomOut;
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	to {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomOutDown {
	animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}

	to {
		opacity: 0;
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform-origin: left center;
	}
}

.zoomOutLeft {
	animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}

	to {
		opacity: 0;
		transform: scale(0.1) translate3d(2000px, 0, 0);
		transform-origin: right center;
	}
}

.zoomOutRight {
	animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	to {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomOutUp {
	animation-name: zoomOutUp;
}

@keyframes slideInDown {
	from {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.slideInDown {
	animation-name: slideInDown;
}

@keyframes slideInLeft {
	from {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.slideInLeft {
	animation-name: slideInLeft;
}

@keyframes slideInRight {
	from {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.slideInRight {
	animation-name: slideInRight;
}

@keyframes slideInUp {
	from {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.slideInUp {
	animation-name: slideInUp;
}

@keyframes slideOutDown {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		transform: translate3d(0, 100%, 0);
	}
}

.slideOutDown {
	animation-name: slideOutDown;
}

@keyframes slideOutLeft {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		transform: translate3d(-100%, 0, 0);
	}
}

.slideOutLeft {
	animation-name: slideOutLeft;
}

@keyframes slideOutRight {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		transform: translate3d(100%, 0, 0);
	}
}

.slideOutRight {
	animation-name: slideOutRight;
}

@keyframes slideOutUp {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		transform: translate3d(0, -100%, 0);
	}
}

.slideOutUp {
	animation-name: slideOutUp;
}

.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.animated.infinite {
	animation-iteration-count: infinite;
}

.animated.delay-1s {
	animation-delay: 1s;
}

.animated.delay-2s {
	animation-delay: 2s;
}

.animated.delay-3s {
	animation-delay: 3s;
}

.animated.delay-4s {
	animation-delay: 4s;
}

.animated.delay-5s {
	animation-delay: 5s;
}

.animated.fast {
	animation-duration: 800ms;
}

.animated.faster {
	animation-duration: 500ms;
}

.animated.slow {
	animation-duration: 2s;
}

.animated.slower {
	animation-duration: 3s;
}

/**
 * JSライブラリ用スタイル
 */
/* Magnific Popup CSS */
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
}

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	box-sizing: border-box;
}

.mfp-container:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
	display: none;
}

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}

.mfp-ajax-cur {
	cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: zoom-out;
}

.mfp-zoom {
	cursor: pointer;
	cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
	cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
	-webkit-user-select: none;
	user-select: none;
}

.mfp-loading.mfp-figure {
	display: none;
}

.mfp-hide {
	display: none !important;
}

.mfp-preloader {
	color: #CCC;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}

.mfp-preloader a {
	color: #CCC;
}

.mfp-preloader a:hover {
	color: #FFF;
}

.mfp-s-ready .mfp-preloader {
	display: none;
}

.mfp-s-error .mfp-content {
	display: none;
}

button.mfp-close,
button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
	touch-action: manipulation;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	padding: 0 0 18px 10px;
	color: #FFF;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
	opacity: 1;
}

.mfp-close:active {
	top: 1px;
}

.mfp-close-btn-in .mfp-close {
	color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #FFF;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #CCC;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}

.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
	margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
	opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}

.mfp-arrow:after {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}

.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}

.mfp-arrow-left {
	left: 0;
}

.mfp-arrow-left:after {
	border-right: 17px solid #FFF;
	margin-left: 31px;
}

.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
	right: 0;
}

.mfp-arrow-right:after {
	border-left: 17px solid #FFF;
	margin-left: 39px;
}

.mfp-arrow-right:before {
	border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
	top: -40px;
}

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}

/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
	line-height: 0;
}

.mfp-figure:after {
	content: "";
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #444;
}

.mfp-figure small {
	color: #BDBDBD;
	display: block;
	font-size: 12px;
	line-height: 14px;
}

.mfp-figure figure {
	margin: 0;
}

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #F3F3F3;
	word-wrap: break-word;
	padding-right: 36px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}

/*
====== Zoom effect ======
*/
.mfp-zoom-in {
	/* start state */
}

.mfp-zoom-in .mfp-with-anim {
	opacity: 0;
	transition: all 0.2s ease-in-out;
	transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
	opacity: 0;
	transition: all 0.3s ease-out;
}

.mfp-zoom-in {
	/* animate in */
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
	opacity: 1;
	transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.mfp-zoom-in {
	/* animate out */
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
	transform: scale(0.8);
	opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	/* Fix of Webkit flickering */
	z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
	float: left;
}

.swiper-container-vertical>.swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
	transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
	flex-wrap: wrap;
}

.swiper-container-free-mode>.swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto;
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
	height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
	perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
	transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal>.swiper-wrapper {
	touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical>.swiper-wrapper {
	touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: 50%;
	width: 27px;
	height: 44px;
	margin-top: -22px;
	z-index: 10;
	cursor: pointer;
	background-size: 27px 44px;
	background-position: center;
	background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
	left: 10px;
	right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
	right: 10px;
	left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
	display: none;
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	transition: 300ms opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
	bottom: 10px;
	left: 0;
	width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(0.33);
	position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(0.33);
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	opacity: 0.2;
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #007aff;
}

.swiper-container-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, 0.25);
	position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #007aff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}

.swiper-container-vertical>.swiper-pagination-progressbar,
.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
	background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
	background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
	background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
	background: #000000;
}

.swiper-pagination-lock {
	display: none;
}

/* Scrollbar */
.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	left: 0;
	top: 0;
}

.swiper-scrollbar-cursor-drag {
	cursor: move;
}

.swiper-scrollbar-lock {
	display: none;
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.swiper-zoom-container>img,
.swiper-zoom-container>svg,
.swiper-zoom-container>canvas {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.swiper-slide-zoomed {
	cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@keyframes swiper-preloader-spin {
	100% {
		transform: rotate(360deg);
	}
}

/* a11y */
.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-cube {
	overflow: visible;
}

.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	transform-origin: 0 0;
	width: 100%;
	height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next+.swiper-slide {
	pointer-events: auto;
	visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.6;
	filter: blur(50px);
	z-index: 0;
}

.swiper-container-flip {
	overflow: visible;
}

.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
	/* Windows 8 IE 10 fix */
	-ms-perspective: 1200px;
}

.animate_op_0 {
	opacity: 0;
}

.animate_delay_3 {
	animation-delay: 0.3s;
}

.animate_delay_6 {
	animation-delay: 0.6s;
}

.animate_delay_12 {
	animation-delay: 1.2s;
}

.inView {
	animation-duration: 2s;
	animation-fill-mode: both;
}

.ani-fadeIn {
	opacity: 0;
	animation-delay: 0.2s;
	animation-name: fadeIn;
}

.animate-run {
	animation-play-state: running;
}

.animate-run.fast {
	animation-duration: 1s;
}

.animate-run.delay-0s5 {
	animation-delay: 0.5s;
}

.animate-run.delay-1s {
	animation-delay: 1s;
}

.animate-run.delay-1s5 {
	animation-delay: 1.5s;
}

.animate-run.delay-2s {
	animation-delay: 2s;
}

.animate-run.delay-3s {
	animation-delay: 3s;
}

.animate-run.delay-4s {
	animation-delay: 4s;
}

.animate-run.delay-5s {
	animation-delay: 5s;
}

.animate-pause {
	-webkit-animation: none !important;
}

@keyframes bounceInWeak {
	0% {
		opacity: 0;
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translate3d(0, 0, 0);
	}

	20% {
		opacity: 0.5;
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translate3d(0, 0, 0);
	}

	53%,
	80%,
	100% {
		opacity: 1;
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translate3d(0, 0, 0);
	}

	40%,
	43% {
		opacity: 1;
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -30px, 0);
	}

	70% {
		opacity: 1;
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -15px, 0);
	}

	90% {
		opacity: 1;
		transform: translate3d(0, -4px, 0);
	}
}

.bounceInWeak {
	animation-name: bounceInWeak;
	transform-origin: center bottom;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
	filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
	background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
	animation-duration: 0.3s;
	animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
	animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
	animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
	padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 10px;
	padding: 35px;
	transform: translate3d(0, 0, 0);
	color: #2b2e38;
	background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
	animation-duration: 0.3s;
	animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
	animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
	animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper::after {
	vertical-align: middle;
}

/* Close button */
.remodal-close {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	overflow: visible;
	width: 35px;
	height: 35px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	transition: color 0.2s;
	text-decoration: none;
	color: #95979c;
	border: 0;
	outline: 0;
	background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
	color: #2b2e38;
}

.remodal-close::before {
	font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
	font-size: 25px;
	line-height: 35px;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 35px;
	content: "×";
	text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
	font: inherit;
	display: inline-block;
	overflow: visible;
	min-width: 110px;
	margin: 0;
	padding: 12px 0;
	cursor: pointer;
	transition: background 0.2s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	border: 0;
	outline: 0;
}

.remodal-confirm {
	color: #fff;
	background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
	background: #66bb6a;
}

.remodal-cancel {
	color: #fff;
	background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
	background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
	padding: 0;
	border: 0;
}

/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
	from {
		transform: scale(1.05);
		opacity: 0;
	}

	to {
		transform: none;
		opacity: 1;
		filter: blur(0);
	}
}

@keyframes remodal-closing-keyframes {
	from {
		transform: scale(1);
		opacity: 1;
	}

	to {
		transform: scale(0.95);
		opacity: 0;
		filter: blur(0);
	}
}

@keyframes remodal-overlay-opening-keyframes {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes remodal-overlay-closing-keyframes {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

/* Media queries
   ========================================================================== */
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
	background: #2b2e38;
}

.lt-ie9 .remodal {
	width: 700px;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
	overflow: hidden;
	touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
	display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
	position: fixed;
	z-index: 9999;
	top: -5000px;
	right: -5000px;
	bottom: -5000px;
	left: -5000px;
	display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
	position: fixed;
	z-index: 10000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	overflow: auto;
	text-align: center;
	-webkit-overflow-scrolling: touch;
}

.remodal-wrapper::after {
	display: inline-block;
	height: 100%;
	margin-left: -0.05em;
	content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
	position: relative;
	outline: none;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

.remodal-is-initialized {
	/* Disable Anti-FOUC */
	display: inline-block;
}

/**
 * Mixin
 */
/**
 * セッティング
 */
/**
 * 基本スタイル
 */
* {
	box-sizing: border-box;
}

*:before,
*:after {
	box-sizing: border-box;
}

html {
	font-size: 10px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.428571429;
	color: #333333;
	background-color: #fff;
}

input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

a {
	color: rgb(51.4340909091, 122.2772727273, 183.4159090909);
	text-decoration: none;
}

a:hover,
a:focus {
	color: rgb(34.6799586777, 82.4466942149, 123.6700413223);
	text-decoration: underline;
}

a:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

figure {
	margin: 0;
}

img {
	vertical-align: middle;
}

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}

.img-rounded {
	border-radius: 6px;
}

.img-thumbnail {
	padding: 4px;
	line-height: 1.428571429;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	transition: all 0.2s ease-in-out;
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.img-circle {
	border-radius: 50%;
}

hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top: 1px solid rgb(238.425, 238.425, 238.425);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}

[role=button] {
	cursor: pointer;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.center-block {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.pull-right {
	float: right !important;
}

.pull-left {
	float: left !important;
}

.hide {
	display: none !important;
}

.show {
	display: block !important;
}

.invisible {
	visibility: hidden;
}

.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.hidden {
	display: none !important;
}

.affix {
	position: fixed;
}

.visible-xs {
	display: none !important;
}

.visible-sm {
	display: none !important;
}

.visible-md {
	display: none !important;
}

.visible-lg {
	display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
	display: none !important;
}

.visible-print {
	display: none !important;
}

.visible-print-block {
	display: none !important;
}

.visible-print-inline {
	display: none !important;
}

.visible-print-inline-block {
	display: none !important;
}

:root {
	-ms-overflow-style: auto;
}

html {
	font-size: 62.5%;
}

body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: auto;
	font-size: 1.4em;
	line-height: 1.5;
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #333;
	background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

span,
p,
a,
small,
strong,
sub,
sup {
	margin-bottom: 0;
}

a {
	transition: opacity 0.75s ease 0s;
	outline: none;
}

a:hover {
	opacity: 0.7;
}

*:focus {
	outline: none !important;
}

p {
	margin-top: 1.5rem;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

ul li,
ol li {
	list-style: none;
	margin: 0;
	padding: 0;
}

dl {
	margin: 0;
}

dl dd {
	margin: 0;
}

div:after,
dl:after,
ul:after {
	content: normal;
	height: auto;
	clear: none;
	display: inline;
	visibility: visible;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
レイアウト
*/
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.container2 {
	position: relative;
	padding-bottom: 100px;
}

section {
	position: relative;
	min-width: 980px;
}

.wave-box {
	position: relative;
	height: 22px;
	overflow: hidden;
	z-index: 1;
	background-color: #fff;
	background-repeat: repeat-x;
	padding-bottom: 0;
}

.wave-box .bg-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: initial;
	max-width: auto;
}

@keyframes anime_wave01_pc {
	0% {
		background-position: 0 bottom;
		background-size: 1900px 22px;
	}

	25% {
		background-position: 475px bottom;
		background-size: 1900px 22px;
	}

	50% {
		background-position: 950px bottom;
		background-size: 1900px 22px;
	}

	75% {
		background-position: 1425px bottom;
		background-size: 1900px 22px;
	}

	100% {
		background-position: 1900px bottom;
		background-size: 1900px 22px;
	}
}

@keyframes anime_wave02_pc {
	0% {
		background-position: 0 top;
		background-size: 1900px 22px;
	}

	25% {
		background-position: 475px top;
		background-size: 1900px 22px;
	}

	50% {
		background-position: 950px top;
		background-size: 1900px 22px;
	}

	75% {
		background-position: 1425px top;
		background-size: 1900px 22px;
	}

	100% {
		background-position: 1900px top;
		background-size: 1900px 22px;
	}
}

@keyframes anime_wave01_sp {
	0% {
		background-position: 0 bottom;
		background-size: 950px 22px;
	}

	25% {
		background-position: 475px bottom;
		background-size: 950px 22px;
	}

	50% {
		background-position: 950px bottom;
		background-size: 950px 22px;
	}

	75% {
		background-position: 1425px bottom;
		background-size: 950px 22px;
	}

	100% {
		background-position: 1900px bottom;
		background-size: 950px 22px;
	}
}

@keyframes anime_wave02_sp {
	0% {
		background-position: 0 top;
		background-size: 950px 22px;
	}

	25% {
		background-position: 475px top;
		background-size: 950px 22px;
	}

	50% {
		background-position: 950px top;
		background-size: 950px 22px;
	}

	75% {
		background-position: 1425px top;
		background-size: 950px 22px;
	}

	100% {
		background-position: 1900px top;
		background-size: 950px 22px;
	}
}

.wave-sep {
	position: absolute;
	z-index: 0;
	width: 100%;
	background-repeat: repeat-x;
}

.wave-sep.upper {
	left: 0;
	top: -0.1px;
}

.wave-sep.lower {
	left: 0;
	bottom: -0.1px;
	rotate: 180deg;
}

@keyframes waveSepPC {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 1500px 0;
	}
}

@keyframes waveSepSP {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 100vw 0;
	}
}

.bg-ivory-01 {
	background-color: #fff1d2;
}

.sec-inner {
	position: relative;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 50px 0;
	z-index: 1;
}

.sec-inner.narrow {
	max-width: 470px;
}

.sec-inner.wide {
	max-width: 100%;
}

.sec-inner.last {
	padding-bottom: 110px;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
ユーティリティースタイル
*/
.visible-xxs {
	display: none !important;
}

.visible-xs-flex {
	display: none !important;
}

.text-nowrap {
	white-space: nowrap;
}

.nowrap {
	white-space: nowrap;
}

.nowp {
	white-space: nowrap;
}

.rsp {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

/*
#styleguide
SP電話番号リンク

* 通常の <a href="tel:0120-123-4567">0120-123-4567</a> で記述する。
* PCの時は動作しない。
```
<a href="tel:0120-123-4567">0120-123-4567</a>
```
*/
/*
#styleguide
.wfull

* 幅を100%に
```
<img src="/assets/img/sample/img_02.jpg" alt="" class="wfull">
```
*/
.wfull {
	width: 100%;
}

/*
#styleguide
.wsm-full

* PC幅を780pxに
* SPでは幅100％
```
<img src="/assets/img/sample/img_02.jpg" alt="" class="wsm-full">
```
*/
.wsm-full {
	width: 780px;
}

/*
#styleguide
.fwb

* ウェイトをボールド
```
<p class="fwb">テキスト</p>
```
*/
.fwb {
	font-weight: bold !important;
}

/*
#styleguide
.fwn

* ウェイトを通常に戻す
```
<p class="fwb">テキスト<span class="fwn">テキスト</span></p>
```
*/
.fwn {
	font-weight: normal !important;
}

/*
#styleguide
.tac

* テキスト中央寄せ
```
<p class="tac">テキスト</p>
```
*/
.tac {
	text-align: center !important;
}

/*
#styleguide
.tal

* テキスト左寄せ
```
<div class="tac">
	<p>テキスト</p>
	<p class="tal">テキスト</p>
</div>
```
*/
.tal {
	text-align: left !important;
}

/*
#styleguide
.tar

* テキスト右寄せ
```
<p class="tar">テキスト</p>
```
*/
.tar {
	text-align: right !important;
}

/*
#styleguide
.tac-tar

* テキスト PC中央、SP右寄せ
```
<p class="tac-tar">テキスト</p>
```
*/
.tac-tar {
	text-align: center;
}

/*
#styleguide
.tac-tal

* テキスト PC中央、SP左寄せ
```
<p class="tac-tal">テキスト</p>
```
*/
.tac-tal {
	text-align: center;
}

/*
#styleguide
.tar-tac

* テキスト PC右寄せ、SP中央
```
<p class="tar-tac">テキスト</p>
```
*/
.tar-tac {
	text-align: right;
}

/*
#styleguide
.tal-tac

* テキスト PC右寄せ、SP中央
```
<p class="tal-tac">テキスト</p>
```
*/
.tal-tac {
	text-align: left;
}

/*
#styleguide
.sp-tar

* SP時、テキスト右寄せ（強制）
```
<p class="sp-tar">テキスト</p>
```
*/

/*
#styleguide
.sp-tal

* SP時、テキスト左寄せ（強制）
```
<p class="sp-tal">テキスト</p>
```
*/

/*
#styleguide
.sp-tac

* SP時、テキスト中央寄せ（強制）
```
<p class="sp-tac">テキスト</p>
```
*/

/*
#styleguide
.vam

* テキスト縦揃え中央
```
<p class="vam">テキスト</p>
```
*/
.vam {
	vertical-align: middle;
}

/*
#styleguide
.lh??

* line-height を ?.? に
* ?? は半角数字で、10～20 まで 1 刻み。
```
<p class="lh20">テキスト</p>
```
*/
/*
#styleguide
.mg0、.mgt0、.mgb0、.mgtb0

* マージンを強制的に 0 に。
```
<p class="mgt0">テキスト</p>
```
*/
/*
#styleguide
.mg5、.mgt5、.mgb5、.mgtb5

* マージンを強制的に 5px に。
```
<p class="mgt5">テキスト</p>
```
*/
/*
#styleguide
.mgt??-!!

* PC：上マージンを強制的に ??px に。
* SP：上マージンを強制的に !!px に。
* ?? は半角数字で、10～125 まで 5刻み。
* !! は半角数字で、5～65 まで 5刻み。
* 例）mgt30-15 は、PC：30px、SP：15px
```
<p class="mgt30-15">テキスト</p>
```
*/
.mgt10 {
	margin-top: 10px !important;
}

.mgt10-5 {
	margin-top: 10px !important;
}

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

.mgt10-15 {
	margin-top: 10px !important;
}

.mgt10-20 {
	margin-top: 10px !important;
}

.mgt10-25 {
	margin-top: 10px !important;
}

.mgt10-30 {
	margin-top: 10px !important;
}

.mgt10-35 {
	margin-top: 10px !important;
}

.mgt10-40 {
	margin-top: 10px !important;
}

.mgt10-45 {
	margin-top: 10px !important;
}

.mgt10-50 {
	margin-top: 10px !important;
}

.mgt10-55 {
	margin-top: 10px !important;
}

.mgt10-60 {
	margin-top: 10px !important;
}

.mgt10-65 {
	margin-top: 10px !important;
}

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

.mgt15-5 {
	margin-top: 15px !important;
}

.mgt15-10 {
	margin-top: 15px !important;
}

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

.mgt15-20 {
	margin-top: 15px !important;
}

.mgt15-25 {
	margin-top: 15px !important;
}

.mgt15-30 {
	margin-top: 15px !important;
}

.mgt15-35 {
	margin-top: 15px !important;
}

.mgt15-40 {
	margin-top: 15px !important;
}

.mgt15-45 {
	margin-top: 15px !important;
}

.mgt15-50 {
	margin-top: 15px !important;
}

.mgt15-55 {
	margin-top: 15px !important;
}

.mgt15-60 {
	margin-top: 15px !important;
}

.mgt15-65 {
	margin-top: 15px !important;
}

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

.mgt20-5 {
	margin-top: 20px !important;
}

.mgt20-10 {
	margin-top: 20px !important;
}

.mgt20-15 {
	margin-top: 20px !important;
}

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

.mgt20-25 {
	margin-top: 20px !important;
}

.mgt20-30 {
	margin-top: 20px !important;
}

.mgt20-35 {
	margin-top: 20px !important;
}

.mgt20-40 {
	margin-top: 20px !important;
}

.mgt20-45 {
	margin-top: 20px !important;
}

.mgt20-50 {
	margin-top: 20px !important;
}

.mgt20-55 {
	margin-top: 20px !important;
}

.mgt20-60 {
	margin-top: 20px !important;
}

.mgt20-65 {
	margin-top: 20px !important;
}

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

.mgt25-5 {
	margin-top: 25px !important;
}

.mgt25-10 {
	margin-top: 25px !important;
}

.mgt25-15 {
	margin-top: 25px !important;
}

.mgt25-20 {
	margin-top: 25px !important;
}

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

.mgt25-30 {
	margin-top: 25px !important;
}

.mgt25-35 {
	margin-top: 25px !important;
}

.mgt25-40 {
	margin-top: 25px !important;
}

.mgt25-45 {
	margin-top: 25px !important;
}

.mgt25-50 {
	margin-top: 25px !important;
}

.mgt25-55 {
	margin-top: 25px !important;
}

.mgt25-60 {
	margin-top: 25px !important;
}

.mgt25-65 {
	margin-top: 25px !important;
}

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

.mgt30-5 {
	margin-top: 30px !important;
}

.mgt30-10 {
	margin-top: 30px !important;
}

.mgt30-15 {
	margin-top: 30px !important;
}

.mgt30-20 {
	margin-top: 30px !important;
}

.mgt30-25 {
	margin-top: 30px !important;
}

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

.mgt30-35 {
	margin-top: 30px !important;
}

.mgt30-40 {
	margin-top: 30px !important;
}

.mgt30-45 {
	margin-top: 30px !important;
}

.mgt30-50 {
	margin-top: 30px !important;
}

.mgt30-55 {
	margin-top: 30px !important;
}

.mgt30-60 {
	margin-top: 30px !important;
}

.mgt30-65 {
	margin-top: 30px !important;
}

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

.mgt35-5 {
	margin-top: 35px !important;
}

.mgt35-10 {
	margin-top: 35px !important;
}

.mgt35-15 {
	margin-top: 35px !important;
}

.mgt35-20 {
	margin-top: 35px !important;
}

.mgt35-25 {
	margin-top: 35px !important;
}

.mgt35-30 {
	margin-top: 35px !important;
}

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

.mgt35-40 {
	margin-top: 35px !important;
}

.mgt35-45 {
	margin-top: 35px !important;
}

.mgt35-50 {
	margin-top: 35px !important;
}

.mgt35-55 {
	margin-top: 35px !important;
}

.mgt35-60 {
	margin-top: 35px !important;
}

.mgt35-65 {
	margin-top: 35px !important;
}

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

.mgt40-5 {
	margin-top: 40px !important;
}

.mgt40-10 {
	margin-top: 40px !important;
}

.mgt40-15 {
	margin-top: 40px !important;
}

.mgt40-20 {
	margin-top: 40px !important;
}

.mgt40-25 {
	margin-top: 40px !important;
}

.mgt40-30 {
	margin-top: 40px !important;
}

.mgt40-35 {
	margin-top: 40px !important;
}

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

.mgt40-45 {
	margin-top: 40px !important;
}

.mgt40-50 {
	margin-top: 40px !important;
}

.mgt40-55 {
	margin-top: 40px !important;
}

.mgt40-60 {
	margin-top: 40px !important;
}

.mgt40-65 {
	margin-top: 40px !important;
}

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

.mgt45-5 {
	margin-top: 45px !important;
}

.mgt45-10 {
	margin-top: 45px !important;
}

.mgt45-15 {
	margin-top: 45px !important;
}

.mgt45-20 {
	margin-top: 45px !important;
}

.mgt45-25 {
	margin-top: 45px !important;
}

.mgt45-30 {
	margin-top: 45px !important;
}

.mgt45-35 {
	margin-top: 45px !important;
}

.mgt45-40 {
	margin-top: 45px !important;
}

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

.mgt45-50 {
	margin-top: 45px !important;
}

.mgt45-55 {
	margin-top: 45px !important;
}

.mgt45-60 {
	margin-top: 45px !important;
}

.mgt45-65 {
	margin-top: 45px !important;
}

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

.mgt50-5 {
	margin-top: 50px !important;
}

.mgt50-10 {
	margin-top: 50px !important;
}

.mgt50-15 {
	margin-top: 50px !important;
}

.mgt50-20 {
	margin-top: 50px !important;
}

.mgt50-25 {
	margin-top: 50px !important;
}

.mgt50-30 {
	margin-top: 50px !important;
}

.mgt50-35 {
	margin-top: 50px !important;
}

.mgt50-40 {
	margin-top: 50px !important;
}

.mgt50-45 {
	margin-top: 50px !important;
}

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

.mgt50-55 {
	margin-top: 50px !important;
}

.mgt50-60 {
	margin-top: 50px !important;
}

.mgt50-65 {
	margin-top: 50px !important;
}

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

.mgt55-5 {
	margin-top: 55px !important;
}

.mgt55-10 {
	margin-top: 55px !important;
}

.mgt55-15 {
	margin-top: 55px !important;
}

.mgt55-20 {
	margin-top: 55px !important;
}

.mgt55-25 {
	margin-top: 55px !important;
}

.mgt55-30 {
	margin-top: 55px !important;
}

.mgt55-35 {
	margin-top: 55px !important;
}

.mgt55-40 {
	margin-top: 55px !important;
}

.mgt55-45 {
	margin-top: 55px !important;
}

.mgt55-50 {
	margin-top: 55px !important;
}

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

.mgt55-60 {
	margin-top: 55px !important;
}

.mgt55-65 {
	margin-top: 55px !important;
}

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

.mgt60-5 {
	margin-top: 60px !important;
}

.mgt60-10 {
	margin-top: 60px !important;
}

.mgt60-15 {
	margin-top: 60px !important;
}

.mgt60-20 {
	margin-top: 60px !important;
}

.mgt60-25 {
	margin-top: 60px !important;
}

.mgt60-30 {
	margin-top: 60px !important;
}

.mgt60-35 {
	margin-top: 60px !important;
}

.mgt60-40 {
	margin-top: 60px !important;
}

.mgt60-45 {
	margin-top: 60px !important;
}

.mgt60-50 {
	margin-top: 60px !important;
}

.mgt60-55 {
	margin-top: 60px !important;
}

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

.mgt60-65 {
	margin-top: 60px !important;
}

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

.mgt65-5 {
	margin-top: 65px !important;
}

.mgt65-10 {
	margin-top: 65px !important;
}

.mgt65-15 {
	margin-top: 65px !important;
}

.mgt65-20 {
	margin-top: 65px !important;
}

.mgt65-25 {
	margin-top: 65px !important;
}

.mgt65-30 {
	margin-top: 65px !important;
}

.mgt65-35 {
	margin-top: 65px !important;
}

.mgt65-40 {
	margin-top: 65px !important;
}

.mgt65-45 {
	margin-top: 65px !important;
}

.mgt65-50 {
	margin-top: 65px !important;
}

.mgt65-55 {
	margin-top: 65px !important;
}

.mgt65-60 {
	margin-top: 65px !important;
}

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

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

.mgt70-5 {
	margin-top: 70px !important;
}

.mgt70-10 {
	margin-top: 70px !important;
}

.mgt70-15 {
	margin-top: 70px !important;
}

.mgt70-20 {
	margin-top: 70px !important;
}

.mgt70-25 {
	margin-top: 70px !important;
}

.mgt70-30 {
	margin-top: 70px !important;
}

.mgt70-35 {
	margin-top: 70px !important;
}

.mgt70-40 {
	margin-top: 70px !important;
}

.mgt70-45 {
	margin-top: 70px !important;
}

.mgt70-50 {
	margin-top: 70px !important;
}

.mgt70-55 {
	margin-top: 70px !important;
}

.mgt70-60 {
	margin-top: 70px !important;
}

.mgt70-65 {
	margin-top: 70px !important;
}

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

.mgt75-5 {
	margin-top: 75px !important;
}

.mgt75-10 {
	margin-top: 75px !important;
}

.mgt75-15 {
	margin-top: 75px !important;
}

.mgt75-20 {
	margin-top: 75px !important;
}

.mgt75-25 {
	margin-top: 75px !important;
}

.mgt75-30 {
	margin-top: 75px !important;
}

.mgt75-35 {
	margin-top: 75px !important;
}

.mgt75-40 {
	margin-top: 75px !important;
}

.mgt75-45 {
	margin-top: 75px !important;
}

.mgt75-50 {
	margin-top: 75px !important;
}

.mgt75-55 {
	margin-top: 75px !important;
}

.mgt75-60 {
	margin-top: 75px !important;
}

.mgt75-65 {
	margin-top: 75px !important;
}

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

.mgt80-5 {
	margin-top: 80px !important;
}

.mgt80-10 {
	margin-top: 80px !important;
}

.mgt80-15 {
	margin-top: 80px !important;
}

.mgt80-20 {
	margin-top: 80px !important;
}

.mgt80-25 {
	margin-top: 80px !important;
}

.mgt80-30 {
	margin-top: 80px !important;
}

.mgt80-35 {
	margin-top: 80px !important;
}

.mgt80-40 {
	margin-top: 80px !important;
}

.mgt80-45 {
	margin-top: 80px !important;
}

.mgt80-50 {
	margin-top: 80px !important;
}

.mgt80-55 {
	margin-top: 80px !important;
}

.mgt80-60 {
	margin-top: 80px !important;
}

.mgt80-65 {
	margin-top: 80px !important;
}

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

.mgt85-5 {
	margin-top: 85px !important;
}

.mgt85-10 {
	margin-top: 85px !important;
}

.mgt85-15 {
	margin-top: 85px !important;
}

.mgt85-20 {
	margin-top: 85px !important;
}

.mgt85-25 {
	margin-top: 85px !important;
}

.mgt85-30 {
	margin-top: 85px !important;
}

.mgt85-35 {
	margin-top: 85px !important;
}

.mgt85-40 {
	margin-top: 85px !important;
}

.mgt85-45 {
	margin-top: 85px !important;
}

.mgt85-50 {
	margin-top: 85px !important;
}

.mgt85-55 {
	margin-top: 85px !important;
}

.mgt85-60 {
	margin-top: 85px !important;
}

.mgt85-65 {
	margin-top: 85px !important;
}

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

.mgt90-5 {
	margin-top: 90px !important;
}

.mgt90-10 {
	margin-top: 90px !important;
}

.mgt90-15 {
	margin-top: 90px !important;
}

.mgt90-20 {
	margin-top: 90px !important;
}

.mgt90-25 {
	margin-top: 90px !important;
}

.mgt90-30 {
	margin-top: 90px !important;
}

.mgt90-35 {
	margin-top: 90px !important;
}

.mgt90-40 {
	margin-top: 90px !important;
}

.mgt90-45 {
	margin-top: 90px !important;
}

.mgt90-50 {
	margin-top: 90px !important;
}

.mgt90-55 {
	margin-top: 90px !important;
}

.mgt90-60 {
	margin-top: 90px !important;
}

.mgt90-65 {
	margin-top: 90px !important;
}

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

.mgt95-5 {
	margin-top: 95px !important;
}

.mgt95-10 {
	margin-top: 95px !important;
}

.mgt95-15 {
	margin-top: 95px !important;
}

.mgt95-20 {
	margin-top: 95px !important;
}

.mgt95-25 {
	margin-top: 95px !important;
}

.mgt95-30 {
	margin-top: 95px !important;
}

.mgt95-35 {
	margin-top: 95px !important;
}

.mgt95-40 {
	margin-top: 95px !important;
}

.mgt95-45 {
	margin-top: 95px !important;
}

.mgt95-50 {
	margin-top: 95px !important;
}

.mgt95-55 {
	margin-top: 95px !important;
}

.mgt95-60 {
	margin-top: 95px !important;
}

.mgt95-65 {
	margin-top: 95px !important;
}

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

.mgt100-5 {
	margin-top: 100px !important;
}

.mgt100-10 {
	margin-top: 100px !important;
}

.mgt100-15 {
	margin-top: 100px !important;
}

.mgt100-20 {
	margin-top: 100px !important;
}

.mgt100-25 {
	margin-top: 100px !important;
}

.mgt100-30 {
	margin-top: 100px !important;
}

.mgt100-35 {
	margin-top: 100px !important;
}

.mgt100-40 {
	margin-top: 100px !important;
}

.mgt100-45 {
	margin-top: 100px !important;
}

.mgt100-50 {
	margin-top: 100px !important;
}

.mgt100-55 {
	margin-top: 100px !important;
}

.mgt100-60 {
	margin-top: 100px !important;
}

.mgt100-65 {
	margin-top: 100px !important;
}

.mgt105 {
	margin-top: 105px !important;
}

.mgt105-5 {
	margin-top: 105px !important;
}

.mgt105-10 {
	margin-top: 105px !important;
}

.mgt105-15 {
	margin-top: 105px !important;
}

.mgt105-20 {
	margin-top: 105px !important;
}

.mgt105-25 {
	margin-top: 105px !important;
}

.mgt105-30 {
	margin-top: 105px !important;
}

.mgt105-35 {
	margin-top: 105px !important;
}

.mgt105-40 {
	margin-top: 105px !important;
}

.mgt105-45 {
	margin-top: 105px !important;
}

.mgt105-50 {
	margin-top: 105px !important;
}

.mgt105-55 {
	margin-top: 105px !important;
}

.mgt105-60 {
	margin-top: 105px !important;
}

.mgt105-65 {
	margin-top: 105px !important;
}

.mgt110 {
	margin-top: 110px !important;
}

.mgt110-5 {
	margin-top: 110px !important;
}

.mgt110-10 {
	margin-top: 110px !important;
}

.mgt110-15 {
	margin-top: 110px !important;
}

.mgt110-20 {
	margin-top: 110px !important;
}

.mgt110-25 {
	margin-top: 110px !important;
}

.mgt110-30 {
	margin-top: 110px !important;
}

.mgt110-35 {
	margin-top: 110px !important;
}

.mgt110-40 {
	margin-top: 110px !important;
}

.mgt110-45 {
	margin-top: 110px !important;
}

.mgt110-50 {
	margin-top: 110px !important;
}

.mgt110-55 {
	margin-top: 110px !important;
}

.mgt110-60 {
	margin-top: 110px !important;
}

.mgt110-65 {
	margin-top: 110px !important;
}

.mgt115 {
	margin-top: 115px !important;
}

.mgt115-5 {
	margin-top: 115px !important;
}

.mgt115-10 {
	margin-top: 115px !important;
}

.mgt115-15 {
	margin-top: 115px !important;
}

.mgt115-20 {
	margin-top: 115px !important;
}

.mgt115-25 {
	margin-top: 115px !important;
}

.mgt115-30 {
	margin-top: 115px !important;
}

.mgt115-35 {
	margin-top: 115px !important;
}

.mgt115-40 {
	margin-top: 115px !important;
}

.mgt115-45 {
	margin-top: 115px !important;
}

.mgt115-50 {
	margin-top: 115px !important;
}

.mgt115-55 {
	margin-top: 115px !important;
}

.mgt115-60 {
	margin-top: 115px !important;
}

.mgt115-65 {
	margin-top: 115px !important;
}

.mgt120 {
	margin-top: 120px !important;
}

.mgt120-5 {
	margin-top: 120px !important;
}

.mgt120-10 {
	margin-top: 120px !important;
}

.mgt120-15 {
	margin-top: 120px !important;
}

.mgt120-20 {
	margin-top: 120px !important;
}

.mgt120-25 {
	margin-top: 120px !important;
}

.mgt120-30 {
	margin-top: 120px !important;
}

.mgt120-35 {
	margin-top: 120px !important;
}

.mgt120-40 {
	margin-top: 120px !important;
}

.mgt120-45 {
	margin-top: 120px !important;
}

.mgt120-50 {
	margin-top: 120px !important;
}

.mgt120-55 {
	margin-top: 120px !important;
}

.mgt120-60 {
	margin-top: 120px !important;
}

.mgt120-65 {
	margin-top: 120px !important;
}

.mgt125 {
	margin-top: 125px !important;
}

.mgt125-5 {
	margin-top: 125px !important;
}

.mgt125-10 {
	margin-top: 125px !important;
}

.mgt125-15 {
	margin-top: 125px !important;
}

.mgt125-20 {
	margin-top: 125px !important;
}

.mgt125-25 {
	margin-top: 125px !important;
}

.mgt125-30 {
	margin-top: 125px !important;
}

.mgt125-35 {
	margin-top: 125px !important;
}

.mgt125-40 {
	margin-top: 125px !important;
}

.mgt125-45 {
	margin-top: 125px !important;
}

.mgt125-50 {
	margin-top: 125px !important;
}

.mgt125-55 {
	margin-top: 125px !important;
}

.mgt125-60 {
	margin-top: 125px !important;
}

.mgt125-65 {
	margin-top: 125px !important;
}

/*
#styleguide
.fs??-!!

* PC：フォントサイズを強制的に ?.?rem に。
* SP：フォントサイズを強制的に !.!rem に。
* ?? は半角数字で、10～30 まで。
* !! は半角数字で、10～30 まで。
* !! は ?? 以下の数字のみ。
* 例）fs20-10 は、PC：2.0rem、SP：1.0rem
```
<p class="mgt30-15">テキスト</p>
```
*/
.fs10-10 {
	font-size: 1rem !important;
}

.fs11-10 {
	font-size: 1.1rem !important;
}

.fs11-11 {
	font-size: 1.1rem !important;
}

.fs12-10 {
	font-size: 1.2rem !important;
}

.fs12-11 {
	font-size: 1.2rem !important;
}

.fs12-12 {
	font-size: 1.2rem !important;
}

.fs13-10 {
	font-size: 1.3rem !important;
}

.fs13-11 {
	font-size: 1.3rem !important;
}

.fs13-12 {
	font-size: 1.3rem !important;
}

.fs13-13 {
	font-size: 1.3rem !important;
}

.fs14-10 {
	font-size: 1.4rem !important;
}

.fs14-11 {
	font-size: 1.4rem !important;
}

.fs14-12 {
	font-size: 1.4rem !important;
}

.fs14-13 {
	font-size: 1.4rem !important;
}

.fs14-14 {
	font-size: 1.4rem !important;
}

.fs15-10 {
	font-size: 1.5rem !important;
}

.fs15-11 {
	font-size: 1.5rem !important;
}

.fs15-12 {
	font-size: 1.5rem !important;
}

.fs15-13 {
	font-size: 1.5rem !important;
}

.fs15-14 {
	font-size: 1.5rem !important;
}

.fs15-15 {
	font-size: 1.5rem !important;
}

.fs16-10 {
	font-size: 1.6rem !important;
}

.fs16-11 {
	font-size: 1.6rem !important;
}

.fs16-12 {
	font-size: 1.6rem !important;
}

.fs16-13 {
	font-size: 1.6rem !important;
}

.fs16-14 {
	font-size: 1.6rem !important;
}

.fs16-15 {
	font-size: 1.6rem !important;
}

.fs16-16 {
	font-size: 1.6rem !important;
}

.fs17-10 {
	font-size: 1.7rem !important;
}

.fs17-11 {
	font-size: 1.7rem !important;
}

.fs17-12 {
	font-size: 1.7rem !important;
}

.fs17-13 {
	font-size: 1.7rem !important;
}

.fs17-14 {
	font-size: 1.7rem !important;
}

.fs17-15 {
	font-size: 1.7rem !important;
}

.fs17-16 {
	font-size: 1.7rem !important;
}

.fs17-17 {
	font-size: 1.7rem !important;
}

.fs18-10 {
	font-size: 1.8rem !important;
}

.fs18-11 {
	font-size: 1.8rem !important;
}

.fs18-12 {
	font-size: 1.8rem !important;
}

.fs18-13 {
	font-size: 1.8rem !important;
}

.fs18-14 {
	font-size: 1.8rem !important;
}

.fs18-15 {
	font-size: 1.8rem !important;
}

.fs18-16 {
	font-size: 1.8rem !important;
}

.fs18-17 {
	font-size: 1.8rem !important;
}

.fs18-18 {
	font-size: 1.8rem !important;
}

.fs19-10 {
	font-size: 1.9rem !important;
}

.fs19-11 {
	font-size: 1.9rem !important;
}

.fs19-12 {
	font-size: 1.9rem !important;
}

.fs19-13 {
	font-size: 1.9rem !important;
}

.fs19-14 {
	font-size: 1.9rem !important;
}

.fs19-15 {
	font-size: 1.9rem !important;
}

.fs19-16 {
	font-size: 1.9rem !important;
}

.fs19-17 {
	font-size: 1.9rem !important;
}

.fs19-18 {
	font-size: 1.9rem !important;
}

.fs19-19 {
	font-size: 1.9rem !important;
}

.fs20-10 {
	font-size: 2rem !important;
}

.fs20-11 {
	font-size: 2rem !important;
}

.fs20-12 {
	font-size: 2rem !important;
}

.fs20-13 {
	font-size: 2rem !important;
}

.fs20-14 {
	font-size: 2rem !important;
}

.fs20-15 {
	font-size: 2rem !important;
}

.fs20-16 {
	font-size: 2rem !important;
}

.fs20-17 {
	font-size: 2rem !important;
}

.fs20-18 {
	font-size: 2rem !important;
}

.fs20-19 {
	font-size: 2rem !important;
}

.fs20-20 {
	font-size: 2rem !important;
}

.fs21-10 {
	font-size: 2.1rem !important;
}

.fs21-11 {
	font-size: 2.1rem !important;
}

.fs21-12 {
	font-size: 2.1rem !important;
}

.fs21-13 {
	font-size: 2.1rem !important;
}

.fs21-14 {
	font-size: 2.1rem !important;
}

.fs21-15 {
	font-size: 2.1rem !important;
}

.fs21-16 {
	font-size: 2.1rem !important;
}

.fs21-17 {
	font-size: 2.1rem !important;
}

.fs21-18 {
	font-size: 2.1rem !important;
}

.fs21-19 {
	font-size: 2.1rem !important;
}

.fs21-20 {
	font-size: 2.1rem !important;
}

.fs21-21 {
	font-size: 2.1rem !important;
}

.fs22-10 {
	font-size: 2.2rem !important;
}

.fs22-11 {
	font-size: 2.2rem !important;
}

.fs22-12 {
	font-size: 2.2rem !important;
}

.fs22-13 {
	font-size: 2.2rem !important;
}

.fs22-14 {
	font-size: 2.2rem !important;
}

.fs22-15 {
	font-size: 2.2rem !important;
}

.fs22-16 {
	font-size: 2.2rem !important;
}

.fs22-17 {
	font-size: 2.2rem !important;
}

.fs22-18 {
	font-size: 2.2rem !important;
}

.fs22-19 {
	font-size: 2.2rem !important;
}

.fs22-20 {
	font-size: 2.2rem !important;
}

.fs22-21 {
	font-size: 2.2rem !important;
}

.fs22-22 {
	font-size: 2.2rem !important;
}

.fs23-10 {
	font-size: 2.3rem !important;
}

.fs23-11 {
	font-size: 2.3rem !important;
}

.fs23-12 {
	font-size: 2.3rem !important;
}

.fs23-13 {
	font-size: 2.3rem !important;
}

.fs23-14 {
	font-size: 2.3rem !important;
}

.fs23-15 {
	font-size: 2.3rem !important;
}

.fs23-16 {
	font-size: 2.3rem !important;
}

.fs23-17 {
	font-size: 2.3rem !important;
}

.fs23-18 {
	font-size: 2.3rem !important;
}

.fs23-19 {
	font-size: 2.3rem !important;
}

.fs23-20 {
	font-size: 2.3rem !important;
}

.fs23-21 {
	font-size: 2.3rem !important;
}

.fs23-22 {
	font-size: 2.3rem !important;
}

.fs23-23 {
	font-size: 2.3rem !important;
}

.fs24-10 {
	font-size: 2.4rem !important;
}

.fs24-11 {
	font-size: 2.4rem !important;
}

.fs24-12 {
	font-size: 2.4rem !important;
}

.fs24-13 {
	font-size: 2.4rem !important;
}

.fs24-14 {
	font-size: 2.4rem !important;
}

.fs24-15 {
	font-size: 2.4rem !important;
}

.fs24-16 {
	font-size: 2.4rem !important;
}

.fs24-17 {
	font-size: 2.4rem !important;
}

.fs24-18 {
	font-size: 2.4rem !important;
}

.fs24-19 {
	font-size: 2.4rem !important;
}

.fs24-20 {
	font-size: 2.4rem !important;
}

.fs24-21 {
	font-size: 2.4rem !important;
}

.fs24-22 {
	font-size: 2.4rem !important;
}

.fs24-23 {
	font-size: 2.4rem !important;
}

.fs24-24 {
	font-size: 2.4rem !important;
}

.fs25-10 {
	font-size: 2.5rem !important;
}

.fs25-11 {
	font-size: 2.5rem !important;
}

.fs25-12 {
	font-size: 2.5rem !important;
}

.fs25-13 {
	font-size: 2.5rem !important;
}

.fs25-14 {
	font-size: 2.5rem !important;
}

.fs25-15 {
	font-size: 2.5rem !important;
}

.fs25-16 {
	font-size: 2.5rem !important;
}

.fs25-17 {
	font-size: 2.5rem !important;
}

.fs25-18 {
	font-size: 2.5rem !important;
}

.fs25-19 {
	font-size: 2.5rem !important;
}

.fs25-20 {
	font-size: 2.5rem !important;
}

.fs25-21 {
	font-size: 2.5rem !important;
}

.fs25-22 {
	font-size: 2.5rem !important;
}

.fs25-23 {
	font-size: 2.5rem !important;
}

.fs25-24 {
	font-size: 2.5rem !important;
}

.fs25-25 {
	font-size: 2.5rem !important;
}

.fs26-10 {
	font-size: 2.6rem !important;
}

.fs26-11 {
	font-size: 2.6rem !important;
}

.fs26-12 {
	font-size: 2.6rem !important;
}

.fs26-13 {
	font-size: 2.6rem !important;
}

.fs26-14 {
	font-size: 2.6rem !important;
}

.fs26-15 {
	font-size: 2.6rem !important;
}

.fs26-16 {
	font-size: 2.6rem !important;
}

.fs26-17 {
	font-size: 2.6rem !important;
}

.fs26-18 {
	font-size: 2.6rem !important;
}

.fs26-19 {
	font-size: 2.6rem !important;
}

.fs26-20 {
	font-size: 2.6rem !important;
}

.fs26-21 {
	font-size: 2.6rem !important;
}

.fs26-22 {
	font-size: 2.6rem !important;
}

.fs26-23 {
	font-size: 2.6rem !important;
}

.fs26-24 {
	font-size: 2.6rem !important;
}

.fs26-25 {
	font-size: 2.6rem !important;
}

.fs26-26 {
	font-size: 2.6rem !important;
}

.fs27-10 {
	font-size: 2.7rem !important;
}

.fs27-11 {
	font-size: 2.7rem !important;
}

.fs27-12 {
	font-size: 2.7rem !important;
}

.fs27-13 {
	font-size: 2.7rem !important;
}

.fs27-14 {
	font-size: 2.7rem !important;
}

.fs27-15 {
	font-size: 2.7rem !important;
}

.fs27-16 {
	font-size: 2.7rem !important;
}

.fs27-17 {
	font-size: 2.7rem !important;
}

.fs27-18 {
	font-size: 2.7rem !important;
}

.fs27-19 {
	font-size: 2.7rem !important;
}

.fs27-20 {
	font-size: 2.7rem !important;
}

.fs27-21 {
	font-size: 2.7rem !important;
}

.fs27-22 {
	font-size: 2.7rem !important;
}

.fs27-23 {
	font-size: 2.7rem !important;
}

.fs27-24 {
	font-size: 2.7rem !important;
}

.fs27-25 {
	font-size: 2.7rem !important;
}

.fs27-26 {
	font-size: 2.7rem !important;
}

.fs27-27 {
	font-size: 2.7rem !important;
}

.fs28-10 {
	font-size: 2.8rem !important;
}

.fs28-11 {
	font-size: 2.8rem !important;
}

.fs28-12 {
	font-size: 2.8rem !important;
}

.fs28-13 {
	font-size: 2.8rem !important;
}

.fs28-14 {
	font-size: 2.8rem !important;
}

.fs28-15 {
	font-size: 2.8rem !important;
}

.fs28-16 {
	font-size: 2.8rem !important;
}

.fs28-17 {
	font-size: 2.8rem !important;
}

.fs28-18 {
	font-size: 2.8rem !important;
}

.fs28-19 {
	font-size: 2.8rem !important;
}

.fs28-20 {
	font-size: 2.8rem !important;
}

.fs28-21 {
	font-size: 2.8rem !important;
}

.fs28-22 {
	font-size: 2.8rem !important;
}

.fs28-23 {
	font-size: 2.8rem !important;
}

.fs28-24 {
	font-size: 2.8rem !important;
}

.fs28-25 {
	font-size: 2.8rem !important;
}

.fs28-26 {
	font-size: 2.8rem !important;
}

.fs28-27 {
	font-size: 2.8rem !important;
}

.fs28-28 {
	font-size: 2.8rem !important;
}

.fs29-10 {
	font-size: 2.9rem !important;
}

.fs29-11 {
	font-size: 2.9rem !important;
}

.fs29-12 {
	font-size: 2.9rem !important;
}

.fs29-13 {
	font-size: 2.9rem !important;
}

.fs29-14 {
	font-size: 2.9rem !important;
}

.fs29-15 {
	font-size: 2.9rem !important;
}

.fs29-16 {
	font-size: 2.9rem !important;
}

.fs29-17 {
	font-size: 2.9rem !important;
}

.fs29-18 {
	font-size: 2.9rem !important;
}

.fs29-19 {
	font-size: 2.9rem !important;
}

.fs29-20 {
	font-size: 2.9rem !important;
}

.fs29-21 {
	font-size: 2.9rem !important;
}

.fs29-22 {
	font-size: 2.9rem !important;
}

.fs29-23 {
	font-size: 2.9rem !important;
}

.fs29-24 {
	font-size: 2.9rem !important;
}

.fs29-25 {
	font-size: 2.9rem !important;
}

.fs29-26 {
	font-size: 2.9rem !important;
}

.fs29-27 {
	font-size: 2.9rem !important;
}

.fs29-28 {
	font-size: 2.9rem !important;
}

.fs29-29 {
	font-size: 2.9rem !important;
}

.fs30-10 {
	font-size: 3rem !important;
}

.fs30-11 {
	font-size: 3rem !important;
}

.fs30-12 {
	font-size: 3rem !important;
}

.fs30-13 {
	font-size: 3rem !important;
}

.fs30-14 {
	font-size: 3rem !important;
}

.fs30-15 {
	font-size: 3rem !important;
}

.fs30-16 {
	font-size: 3rem !important;
}

.fs30-17 {
	font-size: 3rem !important;
}

.fs30-18 {
	font-size: 3rem !important;
}

.fs30-19 {
	font-size: 3rem !important;
}

.fs30-20 {
	font-size: 3rem !important;
}

.fs30-21 {
	font-size: 3rem !important;
}

.fs30-22 {
	font-size: 3rem !important;
}

.fs30-23 {
	font-size: 3rem !important;
}

.fs30-24 {
	font-size: 3rem !important;
}

.fs30-25 {
	font-size: 3rem !important;
}

.fs30-26 {
	font-size: 3rem !important;
}

.fs30-27 {
	font-size: 3rem !important;
}

.fs30-28 {
	font-size: 3rem !important;
}

.fs30-29 {
	font-size: 3rem !important;
}

.fs30-30 {
	font-size: 3rem !important;
}

.fs31-10 {
	font-size: 3.1rem !important;
}

.fs31-11 {
	font-size: 3.1rem !important;
}

.fs31-12 {
	font-size: 3.1rem !important;
}

.fs31-13 {
	font-size: 3.1rem !important;
}

.fs31-14 {
	font-size: 3.1rem !important;
}

.fs31-15 {
	font-size: 3.1rem !important;
}

.fs31-16 {
	font-size: 3.1rem !important;
}

.fs31-17 {
	font-size: 3.1rem !important;
}

.fs31-18 {
	font-size: 3.1rem !important;
}

.fs31-19 {
	font-size: 3.1rem !important;
}

.fs31-20 {
	font-size: 3.1rem !important;
}

.fs31-21 {
	font-size: 3.1rem !important;
}

.fs31-22 {
	font-size: 3.1rem !important;
}

.fs31-23 {
	font-size: 3.1rem !important;
}

.fs31-24 {
	font-size: 3.1rem !important;
}

.fs31-25 {
	font-size: 3.1rem !important;
}

.fs31-26 {
	font-size: 3.1rem !important;
}

.fs31-27 {
	font-size: 3.1rem !important;
}

.fs31-28 {
	font-size: 3.1rem !important;
}

.fs31-29 {
	font-size: 3.1rem !important;
}

.fs31-30 {
	font-size: 3.1rem !important;
}

.fs31-31 {
	font-size: 3.1rem !important;
}

.fs32-10 {
	font-size: 3.2rem !important;
}

.fs32-11 {
	font-size: 3.2rem !important;
}

.fs32-12 {
	font-size: 3.2rem !important;
}

.fs32-13 {
	font-size: 3.2rem !important;
}

.fs32-14 {
	font-size: 3.2rem !important;
}

.fs32-15 {
	font-size: 3.2rem !important;
}

.fs32-16 {
	font-size: 3.2rem !important;
}

.fs32-17 {
	font-size: 3.2rem !important;
}

.fs32-18 {
	font-size: 3.2rem !important;
}

.fs32-19 {
	font-size: 3.2rem !important;
}

.fs32-20 {
	font-size: 3.2rem !important;
}

.fs32-21 {
	font-size: 3.2rem !important;
}

.fs32-22 {
	font-size: 3.2rem !important;
}

.fs32-23 {
	font-size: 3.2rem !important;
}

.fs32-24 {
	font-size: 3.2rem !important;
}

.fs32-25 {
	font-size: 3.2rem !important;
}

.fs32-26 {
	font-size: 3.2rem !important;
}

.fs32-27 {
	font-size: 3.2rem !important;
}

.fs32-28 {
	font-size: 3.2rem !important;
}

.fs32-29 {
	font-size: 3.2rem !important;
}

.fs32-30 {
	font-size: 3.2rem !important;
}

.fs32-31 {
	font-size: 3.2rem !important;
}

.fs32-32 {
	font-size: 3.2rem !important;
}

.fs33-10 {
	font-size: 3.3rem !important;
}

.fs33-11 {
	font-size: 3.3rem !important;
}

.fs33-12 {
	font-size: 3.3rem !important;
}

.fs33-13 {
	font-size: 3.3rem !important;
}

.fs33-14 {
	font-size: 3.3rem !important;
}

.fs33-15 {
	font-size: 3.3rem !important;
}

.fs33-16 {
	font-size: 3.3rem !important;
}

.fs33-17 {
	font-size: 3.3rem !important;
}

.fs33-18 {
	font-size: 3.3rem !important;
}

.fs33-19 {
	font-size: 3.3rem !important;
}

.fs33-20 {
	font-size: 3.3rem !important;
}

.fs33-21 {
	font-size: 3.3rem !important;
}

.fs33-22 {
	font-size: 3.3rem !important;
}

.fs33-23 {
	font-size: 3.3rem !important;
}

.fs33-24 {
	font-size: 3.3rem !important;
}

.fs33-25 {
	font-size: 3.3rem !important;
}

.fs33-26 {
	font-size: 3.3rem !important;
}

.fs33-27 {
	font-size: 3.3rem !important;
}

.fs33-28 {
	font-size: 3.3rem !important;
}

.fs33-29 {
	font-size: 3.3rem !important;
}

.fs33-30 {
	font-size: 3.3rem !important;
}

.fs33-31 {
	font-size: 3.3rem !important;
}

.fs33-32 {
	font-size: 3.3rem !important;
}

.fs33-33 {
	font-size: 3.3rem !important;
}

.fs34-10 {
	font-size: 3.4rem !important;
}

.fs34-11 {
	font-size: 3.4rem !important;
}

.fs34-12 {
	font-size: 3.4rem !important;
}

.fs34-13 {
	font-size: 3.4rem !important;
}

.fs34-14 {
	font-size: 3.4rem !important;
}

.fs34-15 {
	font-size: 3.4rem !important;
}

.fs34-16 {
	font-size: 3.4rem !important;
}

.fs34-17 {
	font-size: 3.4rem !important;
}

.fs34-18 {
	font-size: 3.4rem !important;
}

.fs34-19 {
	font-size: 3.4rem !important;
}

.fs34-20 {
	font-size: 3.4rem !important;
}

.fs34-21 {
	font-size: 3.4rem !important;
}

.fs34-22 {
	font-size: 3.4rem !important;
}

.fs34-23 {
	font-size: 3.4rem !important;
}

.fs34-24 {
	font-size: 3.4rem !important;
}

.fs34-25 {
	font-size: 3.4rem !important;
}

.fs34-26 {
	font-size: 3.4rem !important;
}

.fs34-27 {
	font-size: 3.4rem !important;
}

.fs34-28 {
	font-size: 3.4rem !important;
}

.fs34-29 {
	font-size: 3.4rem !important;
}

.fs34-30 {
	font-size: 3.4rem !important;
}

.fs34-31 {
	font-size: 3.4rem !important;
}

.fs34-32 {
	font-size: 3.4rem !important;
}

.fs34-33 {
	font-size: 3.4rem !important;
}

.fs34-34 {
	font-size: 3.4rem !important;
}

.fs35-10 {
	font-size: 3.5rem !important;
}

.fs35-11 {
	font-size: 3.5rem !important;
}

.fs35-12 {
	font-size: 3.5rem !important;
}

.fs35-13 {
	font-size: 3.5rem !important;
}

.fs35-14 {
	font-size: 3.5rem !important;
}

.fs35-15 {
	font-size: 3.5rem !important;
}

.fs35-16 {
	font-size: 3.5rem !important;
}

.fs35-17 {
	font-size: 3.5rem !important;
}

.fs35-18 {
	font-size: 3.5rem !important;
}

.fs35-19 {
	font-size: 3.5rem !important;
}

.fs35-20 {
	font-size: 3.5rem !important;
}

.fs35-21 {
	font-size: 3.5rem !important;
}

.fs35-22 {
	font-size: 3.5rem !important;
}

.fs35-23 {
	font-size: 3.5rem !important;
}

.fs35-24 {
	font-size: 3.5rem !important;
}

.fs35-25 {
	font-size: 3.5rem !important;
}

.fs35-26 {
	font-size: 3.5rem !important;
}

.fs35-27 {
	font-size: 3.5rem !important;
}

.fs35-28 {
	font-size: 3.5rem !important;
}

.fs35-29 {
	font-size: 3.5rem !important;
}

.fs35-30 {
	font-size: 3.5rem !important;
}

.fs35-31 {
	font-size: 3.5rem !important;
}

.fs35-32 {
	font-size: 3.5rem !important;
}

.fs35-33 {
	font-size: 3.5rem !important;
}

.fs35-34 {
	font-size: 3.5rem !important;
}

.fs35-35 {
	font-size: 3.5rem !important;
}

.lh10 {
	line-height: 1 !important;
}

.lh10-10 {
	line-height: 1 !important;
}

.lh11 {
	line-height: 1.1 !important;
}

.lh11-10 {
	line-height: 1.1 !important;
}

.lh11-11 {
	line-height: 1.1 !important;
}

.lh12 {
	line-height: 1.2 !important;
}

.lh12-10 {
	line-height: 1.2 !important;
}

.lh12-11 {
	line-height: 1.2 !important;
}

.lh12-12 {
	line-height: 1.2 !important;
}

.lh13 {
	line-height: 1.3 !important;
}

.lh13-10 {
	line-height: 1.3 !important;
}

.lh13-11 {
	line-height: 1.3 !important;
}

.lh13-12 {
	line-height: 1.3 !important;
}

.lh13-13 {
	line-height: 1.3 !important;
}

.lh14 {
	line-height: 1.4 !important;
}

.lh14-10 {
	line-height: 1.4 !important;
}

.lh14-11 {
	line-height: 1.4 !important;
}

.lh14-12 {
	line-height: 1.4 !important;
}

.lh14-13 {
	line-height: 1.4 !important;
}

.lh14-14 {
	line-height: 1.4 !important;
}

.lh15 {
	line-height: 1.5 !important;
}

.lh15-10 {
	line-height: 1.5 !important;
}

.lh15-11 {
	line-height: 1.5 !important;
}

.lh15-12 {
	line-height: 1.5 !important;
}

.lh15-13 {
	line-height: 1.5 !important;
}

.lh15-14 {
	line-height: 1.5 !important;
}

.lh15-15 {
	line-height: 1.5 !important;
}

.lh16 {
	line-height: 1.6 !important;
}

.lh16-10 {
	line-height: 1.6 !important;
}

.lh16-11 {
	line-height: 1.6 !important;
}

.lh16-12 {
	line-height: 1.6 !important;
}

.lh16-13 {
	line-height: 1.6 !important;
}

.lh16-14 {
	line-height: 1.6 !important;
}

.lh16-15 {
	line-height: 1.6 !important;
}

.lh16-16 {
	line-height: 1.6 !important;
}

.lh17 {
	line-height: 1.7 !important;
}

.lh17-10 {
	line-height: 1.7 !important;
}

.lh17-11 {
	line-height: 1.7 !important;
}

.lh17-12 {
	line-height: 1.7 !important;
}

.lh17-13 {
	line-height: 1.7 !important;
}

.lh17-14 {
	line-height: 1.7 !important;
}

.lh17-15 {
	line-height: 1.7 !important;
}

.lh17-16 {
	line-height: 1.7 !important;
}

.lh17-17 {
	line-height: 1.7 !important;
}

.lh18 {
	line-height: 1.8 !important;
}

.lh18-10 {
	line-height: 1.8 !important;
}

.lh18-11 {
	line-height: 1.8 !important;
}

.lh18-12 {
	line-height: 1.8 !important;
}

.lh18-13 {
	line-height: 1.8 !important;
}

.lh18-14 {
	line-height: 1.8 !important;
}

.lh18-15 {
	line-height: 1.8 !important;
}

.lh18-16 {
	line-height: 1.8 !important;
}

.lh18-17 {
	line-height: 1.8 !important;
}

.lh18-18 {
	line-height: 1.8 !important;
}

.lh19 {
	line-height: 1.9 !important;
}

.lh19-10 {
	line-height: 1.9 !important;
}

.lh19-11 {
	line-height: 1.9 !important;
}

.lh19-12 {
	line-height: 1.9 !important;
}

.lh19-13 {
	line-height: 1.9 !important;
}

.lh19-14 {
	line-height: 1.9 !important;
}

.lh19-15 {
	line-height: 1.9 !important;
}

.lh19-16 {
	line-height: 1.9 !important;
}

.lh19-17 {
	line-height: 1.9 !important;
}

.lh19-18 {
	line-height: 1.9 !important;
}

.lh19-19 {
	line-height: 1.9 !important;
}

.lh20 {
	line-height: 2 !important;
}

.lh20-10 {
	line-height: 2 !important;
}

.lh20-11 {
	line-height: 2 !important;
}

.lh20-12 {
	line-height: 2 !important;
}

.lh20-13 {
	line-height: 2 !important;
}

.lh20-14 {
	line-height: 2 !important;
}

.lh20-15 {
	line-height: 2 !important;
}

.lh20-16 {
	line-height: 2 !important;
}

.lh20-17 {
	line-height: 2 !important;
}

.lh20-18 {
	line-height: 2 !important;
}

.lh20-19 {
	line-height: 2 !important;
}

.lh20-20 {
	line-height: 2 !important;
}

/**
 * 共通パーツスタイル
 */
/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
P01 パーツ 見出し パート1
*/
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1 {
	margin: 0;
	line-height: 1;
}

h2,
.title,
.title-s,
.title-m {
	position: relative;
	margin: 0;
	font-size: 2.1rem;
	line-height: 1.4;
	color: #ff8583;
	text-align: center;
	font-weight: bold;
}

h2.line-img,
.title.line-img,
.title-s.line-img,
.title-m.line-img {
	padding: 0 0 3px;
}

h2.lh-h,
.title.lh-h,
.title-s.lh-h,
.title-m.lh-h {
	letter-spacing: 1px;
	line-height: 1.95;
}

h2.lh-h.line-img,
.title.lh-h.line-img,
.title-s.lh-h.line-img,
.title-m.lh-h.line-img {
	padding: 0;
}

h2.large,
.title.large,
.title-s.large,
.title-m.large {
	font-size: 2.4rem;
}

h2.large.line-img,
.title.large.line-img,
.title-s.large.line-img,
.title-m.large.line-img {
	padding: 0 0 5px;
}

.title-s {
	font-size: 1.7rem;
}

.title-m {
	font-size: 1.8rem;
}

h3 {
	margin: 0;
	margin-top: 30px;
	line-height: 1.4;
	color: #ff8583;
}

h3.title {
	margin-top: 30px;
}

h1.u-line,
h1.u-line-b,
h1.u-line-w,
h1.u-line-w-l,
.hero-wrap .title-wrap h1,
h1.u-line-br,
h1.u-line-gr,
h2.u-line,
h2.u-line-b,
h2.u-line-w,
h2.u-line-w-l,
h2.u-line-br,
h2.u-line-gr,
h3.u-line,
h3.u-line-b,
h3.u-line-w,
h3.u-line-w-l,
h3.u-line-br,
h3.u-line-gr,
h4.u-line,
h4.u-line-b,
h4.u-line-w,
h4.u-line-w-l,
h4.u-line-br,
h4.u-line-gr,
h5.u-line,
h5.u-line-b,
h5.u-line-w,
h5.u-line-w-l,
h5.u-line-br,
h5.u-line-gr {
	text-align: center;
	line-height: 1.75;
}

h1.u-line span,
h1.u-line-b span,
h1.u-line-w span,
h1.u-line-w-l span,
.hero-wrap .title-wrap h1 span,
h1.u-line-br span,
h1.u-line-gr span,
h2.u-line span,
h2.u-line-b span,
h2.u-line-w span,
h2.u-line-w-l span,
h2.u-line-br span,
h2.u-line-gr span,
h3.u-line span,
h3.u-line-b span,
h3.u-line-w span,
h3.u-line-w-l span,
h3.u-line-br span,
h3.u-line-gr span,
h4.u-line span,
h4.u-line-b span,
h4.u-line-w span,
h4.u-line-w-l span,
h4.u-line-br span,
h4.u-line-gr span,
h5.u-line span,
h5.u-line-b span,
h5.u-line-w span,
h5.u-line-w-l span,
h5.u-line-br span,
h5.u-line-gr span {
	padding: 0 0 3px;
	background: url("../img/common/title_line.png") center bottom repeat-x;
}

h1.u-line-b span,
h2.u-line-b span,
h3.u-line-b span,
h4.u-line-b span,
h5.u-line-b span {
	background-image: url("../img/common/title_line_blue.png");
}

h1.u-line-w span,
h2.u-line-w span,
h3.u-line-w span,
h4.u-line-w span,
h5.u-line-w span {
	background-image: url("../img/common/title_line_white.png");
}

h1.u-line-w-l span,
.hero-wrap .title-wrap h1 span,
h2.u-line-w-l span,
h3.u-line-w-l span,
h4.u-line-w-l span,
h5.u-line-w-l span {
	padding: 0 0 10px;
	background-image: url("../img/common/title_line_white_l.png");
}

h1.u-line-br span,
h2.u-line-br span,
h3.u-line-br span,
h4.u-line-br span,
h5.u-line-br span {
	background-image: url("../img/common/title_line_brown.png");
}

h1.u-line-gr span,
h2.u-line-gr span,
h3.u-line-gr span,
h4.u-line-gr span,
h5.u-line-gr span {
	background-image: url("../img/common/title_line_green.png");
}

.head-point {
	width: 132px;
}

.head-info {
	width: 135px;
}

.head-step {
	width: 135px;
}

.head-step+p {
	margin: 15px 0 5px;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
P02 パーツ テキスト関連
*/
section {
	font-size: 1.3rem;
}

section p,
section span,
section h1,
section h2,
section h3,
section h4,
section h5,
section h6,
section a,
section li,
section caption,
section td,
section th,
section dt,
section dd,
section input,
section textarea,
section select,
section address {
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

section p.small {
	font-size: 1rem;
}

section p.blue,
section span.blue,
section h1.blue,
section h2.blue,
section h3.blue,
section h4.blue,
section h5.blue,
section h6.blue,
section a.blue,
section li.blue,
section caption.blue,
section td.blue,
section th.blue,
section dt.blue,
section dd.blue,
section input.blue,
section textarea.blue,
section select.blue,
section address.blue {
	color: #67c3c7;
}

section p.white,
section span.white,
section h1.white,
section h2.white,
section h3.white,
section h4.white,
section h5.white,
section h6.white,
section a.white,
section li.white,
section caption.white,
section td.white,
section th.white,
section dt.white,
section dd.white,
section input.white,
section textarea.white,
section select.white,
section address.white {
	color: #fff;
}

section p.brown,
section span.brown,
section h1.brown,
section h2.brown,
section h3.brown,
section h4.brown,
section h5.brown,
section h6.brown,
section a.brown,
section li.brown,
section caption.brown,
section td.brown,
section th.brown,
section dt.brown,
section dd.brown,
section input.brown,
section textarea.brown,
section select.brown,
section address.brown {
	color: #cb862d;
}

section p.green,
section span.green,
section h1.green,
section h2.green,
section h3.green,
section h4.green,
section h5.green,
section h6.green,
section a.green,
section li.green,
section caption.green,
section td.green,
section th.green,
section dt.green,
section dd.green,
section input.green,
section textarea.green,
section select.green,
section address.green {
	color: #82b848;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
P03 パーツ ボタン
*/
.btn-link {
	display: block;
	width: 280px;
	margin: 34px auto 0;
}

.btn-text {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 272px;
	height: 55px;
	margin: 34px auto 0;
	background: url("../img/common/btn_icon_arrow_r.png") right 23px center no-repeat #ff8583;
	background-size: 12px auto;
	border-radius: 8px;
	color: #fff;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.2;
	letter-spacing: -0.05em;
}

.btn-text:active {
	color: #fff;
}

.btn-text.blue {
	background-color: #67c3c7;
	color: #fff;
}

.btn-text.red {
	background-color: #ff2e44;
	color: #fff;
}

.btn-text.down {
	background-image: url("../img/common/btn_icon_arrow_d.png");
	background-size: auto 10px;
}

.btn-text.blank {
	background-image: url("../img/common/btn_icon_blank.png");
	background-size: 23px auto;
}

.btn-text.narrow {
	width: 155px;
	height: 55px;
}

.btn-text.high {
	height: 77px;
}

.btn-text:hover,
.btn-text:focus {
	color: #fff;
}

.btn-text.btn-map {
	background-color: #ffffff;
	background-image: none;
	border-style: solid;
	border-color: #ff0000;
	color: #000000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn-text.btn-map:before {
	content: "";
}

.btn-text.btn-map:after {
	content: "";
}

.sec-bottom .btn-link,
.sec-bottom .btn-text {
	margin: 20px auto 0;
}

.btn-top {
	position: absolute;
	bottom: 10px;
	right: 0;
	left: 0;
	display: block;
	width: 80px;
	height: 80px;
	margin: auto;
	z-index: 3;
}

.btn-movie {
	display: block;
}

.btn-movie img {
	box-shadow: 0px 0px 8px 1px rgba(122, 122, 122, 0.5);
}

.btn-image {
	display: block;
}

.btn-image:hover {
	opacity: 0.6;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
P04 パーツ アイコン
*/
@keyframes anim-icon {
	0% {
		transform: rotate(45deg);
	}

	100% {
		transform: rotate(-45deg);
	}
}

@keyframes anim-icon-sp {
	0% {
		transform: rotate(45deg) scale(0.9);
	}

	100% {
		transform: rotate(-45deg) scale(0.9);
	}
}

@keyframes anim-icon-r {
	0% {
		transform: rotate(-30deg);
	}

	100% {
		transform: rotate(30deg);
	}
}

@keyframes anim-icon-r-sp {
	0% {
		transform: rotate(-30deg) scale(0.9);
	}

	100% {
		transform: rotate(30deg) scale(0.9);
	}
}

@keyframes anim-icon-s {
	0% {
		transform: rotate(22deg);
	}

	100% {
		transform: rotate(-22deg);
	}
}

@keyframes anim-icon-s-sp {
	0% {
		transform: rotate(22deg) scale(0.9);
	}

	100% {
		transform: rotate(-22deg) scale(0.9);
	}
}

@keyframes anim-icon-s-r {
	0% {
		transform: rotate(-15deg);
	}

	100% {
		transform: rotate(15deg);
	}
}

@keyframes anim-icon-s-r-sp {
	0% {
		transform: rotate(-15deg) scale(0.9);
	}

	100% {
		transform: rotate(15deg) scale(0.9);
	}
}

.anim-icon {
	animation-fill-mode: both;
	animation-iteration-count: infinite;
	animation-timing-function: steps(2, start);
	animation-duration: 1.5s;
	animation-name: anim-icon;
}

.anim-icon.weak {
	animation-duration: 1.75s;
	animation-name: anim-icon-s;
}

.anim-icon-r {
	animation-fill-mode: both;
	animation-iteration-count: infinite;
	animation-timing-function: steps(2, start);
	animation-duration: 2s;
	animation-name: anim-icon-r;
}

.anim-icon-r.weak {
	animation-duration: 1.75s;
	animation-name: anim-icon-s-r;
}

.anim-icon.dl,
.anim-icon-r.dl {
	animation-delay: 0.25s;
}

.bg-icon {
	position: absolute;
	z-index: 1;
}

.bg-icon.ic-01 {
	width: 88px;
}

.bg-icon.ic-02 {
	width: 83px;
}

.bg-icon.ic-03 {
	width: 65px;
}

.bg-icon.ic-04 {
	width: 67px;
}

.bg-icon.ic-05 {
	width: 69px;
}

.bg-icon.ic-06 {
	width: 96px;
}

.chara-icon {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
P06 パーツ テーブル
*/
table {
	margin-left: auto;
	margin-right: auto;
	border-collapse: collapse;
	border-spacing: 0;
}

table th,
table td {
	padding: 10px;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
P07 パーツ リスト関連
*/
.list-01 li {
	position: relative;
	padding: 0 0 0 1.75rem;
}

.list-01 li:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "●";
	color: #ff8583;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
P08 パーツ 画像関連
*/
img.b-shadow {
	box-shadow: 0px 0px 8px 1px rgba(122, 122, 122, 0.5);
}

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
P08 パーツ 背景液体
*/
@keyframes anim-liq {
	from {
		transform: scale3d(1, 1, 1) rotate(0deg);
	}

	50% {
		transform: scale3d(1.5, 0.75, 1.5) rotate(180deg);
	}

	to {
		transform: scale3d(1, 1, 1) rotate(360deg);
	}
}

@keyframes anim-liq-l {
	from {
		transform: scale3d(1, 1, 1) rotate(0deg);
	}

	50% {
		transform: scale3d(1.5, 0.75, 1.5) rotate(-180deg);
	}

	to {
		transform: scale3d(1, 1, 1) rotate(-360deg);
	}
}

@keyframes anim-liq-v {
	from {
		transform: scale3d(1, 1, 1);
	}

	50% {
		transform: scale3d(1, 0.75, 1);
	}

	to {
		transform: scale3d(1, 1, 1);
	}
}

.anim-liq {
	animation-fill-mode: both;
	animation-iteration-count: infinite;
	animation-duration: 120s;
	transform-origin: 48% 52% 0;
	animation-name: anim-liq;
}

.anim-liq-l {
	animation-fill-mode: both;
	animation-iteration-count: infinite;
	animation-duration: 115s;
	transform-origin: 49% 48% 0;
	animation-name: anim-liq-l;
}

.liquid-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.liquid-box {
	position: absolute;
	overflow: hidden;
	z-index: 1;
}

.liquid-box.dur-30 {
	animation-duration: 30s !important;
}

.liquid-box.dur-60 {
	animation-duration: 60s !important;
}

.liquid-box.dur-90 {
	animation-duration: 90s !important;
}

.liquid-box.dur-120 {
	animation-duration: 120s !important;
}

.board-title-wrap-02 img {
	width: 1100px;
	height: 438px;
	max-width: initial;
	max-width: auto;
}

.hero-wrap {
	position: relative;
	margin: 0 auto;
}

.hero-wrap .title-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 95%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.hero-wrap .title-wrap .img-point {
	width: 147px;
}

.hero-wrap .title-wrap h1 {
	color: #fff;
	font-size: 4.8rem;
	white-space: pre-wrap;
	position: relative;
	top: -0.5em;
}

.hero-wrap.prod-hero .title-wrap h1 {
	color: #ff8583;
	line-height: 1.5;
}

.hero-wrap.prod-hero .title-wrap h1 span {
	background-image: none;
	padding-bottom: 0;
}

.hero-wrap.prod-hero .title-wrap h1 small {
	font-size: 3.6rem;
}

.hero-wrap.prod-hero .title-wrap .lead {
	color: #ff8583;
	font-size: 2.1rem;
	text-align: center;
	font-weight: bold;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
M04 モジュール モーダル
*/
.modal-wrap {
	display: none;
	background-color: rgba(0, 0, 0, 0.8);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999999;
}

.modal-inner {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	max-width: 1100px;
	margin: auto;
	height: 80%;
}

.modal-inner .close-wrap {
	text-align: right;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.modal-inner .close-wrap .close {
	font-size: 50px;
	color: #fff;
	cursor: pointer;
}

.modal-inner .movie-wrap {
	position: relative;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}

.modal-inner .movie-wrap iframe {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 80%;
	height: 80%;
	margin-right: auto;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
.slide-wrap {
	position: relative;
	margin: 70px -10px;
}

.slide-main {
	position: relative;
}

.swiper-slide {
	padding: 10px;
}

.slide-img {
	box-shadow: 0px 0px 8px 1px rgba(122, 122, 122, 0.5);
	border-radius: 10px;
}

.swiper-pagination-wrap {
	margin-top: 0px;
}

.swiper-pagination {
	position: relative;
	right: auto;
	left: auto;
	margin: 0 auto;
	line-height: 0;
}

.swiper-pagination-bullet {
	width: 46px;
	height: 46px;
	margin: 0 6px;
	background: url("../img/common/slide_page_01.png") center center no-repeat;
	background-size: contain;
	opacity: 1;
	vertical-align: middle;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-image: url("../img/common/slide_page_01_on.png");
}

.swiper-pagination-bullet:nth-of-type(1) {
	background-image: url("../img/common/slide_page_01.png");
}

.swiper-pagination-bullet:nth-of-type(1).swiper-pagination-bullet-active {
	background-image: url("../img/common/slide_page_01_on.png");
}

.swiper-pagination-bullet:nth-of-type(2) {
	background-image: url("../img/common/slide_page_02.png");
}

.swiper-pagination-bullet:nth-of-type(2).swiper-pagination-bullet-active {
	background-image: url("../img/common/slide_page_02_on.png");
}

.swiper-pagination-bullet:nth-of-type(3) {
	background-image: url("../img/common/slide_page_03.png");
}

.swiper-pagination-bullet:nth-of-type(3).swiper-pagination-bullet-active {
	background-image: url("../img/common/slide_page_03_on.png");
}

.swiper-pagination-bullet:nth-of-type(4) {
	background-image: url("../img/common/slide_page_04.png");
}

.swiper-pagination-bullet:nth-of-type(4).swiper-pagination-bullet-active {
	background-image: url("../img/common/slide_page_04_on.png");
}

.swiper-pagination-bullet:nth-of-type(5) {
	background-image: url("../img/common/slide_page_05.png");
}

.swiper-pagination-bullet:nth-of-type(5).swiper-pagination-bullet-active {
	background-image: url("../img/common/slide_page_05_on.png");
}

.swiper-pagination-bullet:nth-of-type(6) {
	background-image: url("../img/common/slide_page_06.png");
}

.swiper-pagination-bullet:nth-of-type(6).swiper-pagination-bullet-active {
	background-image: url("../img/common/slide_page_06_on.png");
}

.swiper-pagination-bullet:nth-of-type(7) {
	background-image: url("../img/common/slide_page_07.png");
}

.swiper-pagination-bullet:nth-of-type(7).swiper-pagination-bullet-active {
	background-image: url("../img/common/slide_page_07_on.png");
}

.swiper-pagination-bullet:nth-of-type(8) {
	background-image: url("../img/common/slide_page_08.png");
}

.swiper-pagination-bullet:nth-of-type(8).swiper-pagination-bullet-active {
	background-image: url("../img/common/slide_page_08_on.png");
}

.sw-page-dot,
.page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet:nth-of-type(3),
.page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet:nth-of-type(4),
.page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet:nth-of-type(5),
.page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet:nth-of-type(7),
.page-rakurakumilk-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet:nth-of-type(3),
.sw-page-dot-w,
.page-rakurakumilk-usage .sec-02 #pagination-slide-02 .swiper-pagination-bullet:nth-of-type(3),
.page-rakurakumilk-usage .sec-02 #pagination-slide-02 .swiper-pagination-bullet:nth-of-type(4) {
	background: none;
	width: 12px;
	height: 12px;
	display: inline-block;
	border-radius: 100%;
	background-color: #fff1d2;
	opacity: 1;
}

.sw-page-dot.swiper-pagination-bullet-active,
.page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(3),
.page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(4),
.page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(5),
.page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(7),
.page-rakurakumilk-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(3),
.sw-page-dot-w.swiper-pagination-bullet-active,
.page-rakurakumilk-usage .sec-02 #pagination-slide-02 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(3),
.page-rakurakumilk-usage .sec-02 #pagination-slide-02 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(4) {
	background-color: #ff8583;
}

.sw-page-dot-w,
.page-rakurakumilk-usage .sec-02 #pagination-slide-02 .swiper-pagination-bullet:nth-of-type(3),
.page-rakurakumilk-usage .sec-02 #pagination-slide-02 .swiper-pagination-bullet:nth-of-type(4) {
	background-color: #fff;
}

.sw-page-dot-w.swiper-pagination-bullet-active,
.page-rakurakumilk-usage .sec-02 #pagination-slide-02 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(3),
.page-rakurakumilk-usage .sec-02 #pagination-slide-02 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(4) {
	background-color: #ff8583;
}

#menu.no-scroll {
	padding-top: 180px;
}

.step-button-wrapper {
	position: fixed;
	z-index: 100;
	top: 100px;
	right: 0;
	width: 50px;
	height: 212.5px;
	transition: all 1s ease 0s;
}

.step-button-wrapper a {
	display: block;
}

.step-button-wrapper a .button {
	position: relative;
	z-index: 2;
}

.step-button-wrapper a .banner {
	max-width: 99999px;
	max-height: 99999px;
	width: 293px;
	height: 103px;
	position: absolute;
	z-index: 1;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: transform 0.8s, opacity 0.8s;
}

.step-button-wrapper.no-scroll {
	top: 200px;
}

.store-button-wrapper {
	position: fixed;
	z-index: 100;
	transition: all 1s ease 0s;
	border-radius: 50%;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
M06 言語メニュー
*/

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
M07 モジュール ボックス
*/
.box-dash,
.box-dash-thin {
	position: relative;
	padding: 4px;
}

.box-dash:before,
.box-dash:after,
.box-dash-thin:before,
.box-dash-thin:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	content: "";
	background-color: transparent;
	background: url("../img/common/box_horizon.png") center center repeat-x;
	width: 97%;
	height: 4px;
}

.box-dash:before,
.box-dash-thin:before {
	bottom: auto;
}

.box-dash:after,
.box-dash-thin:after {
	top: auto;
}

.box-dash-inner,
.box-dash-thin-inner {
	position: relative;
	margin-left: -4px;
	margin-right: -4px;
	padding: 15px 25px;
}

.box-dash-inner:before,
.box-dash-inner:after,
.box-dash-thin-inner:before,
.box-dash-thin-inner:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	content: "";
	background-color: transparent;
	background: url("../img/common/box_vartical.png") center center repeat-y;
	width: 4px;
	height: 97%;
}

.box-dash-inner:before,
.box-dash-thin-inner:before {
	right: auto;
}

.box-dash-inner:after,
.box-dash-thin-inner:after {
	left: auto;
}

.box-dash-corner-t,
.box-dash-corner-b,
.box-dash-thin-corner-t,
.box-dash-thin-corner-b {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 7px;
}

.box-dash-corner-t:before,
.box-dash-corner-t:after,
.box-dash-corner-b:before,
.box-dash-corner-b:after,
.box-dash-thin-corner-t:before,
.box-dash-thin-corner-t:after,
.box-dash-thin-corner-b:before,
.box-dash-thin-corner-b:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	content: "";
	background-color: transparent;
	width: 7px;
	height: 7px;
	background: url("../img/common/box_tl.png") center center repeat-y;
}

.box-dash-corner-t:before,
.box-dash-corner-b:before,
.box-dash-thin-corner-t:before,
.box-dash-thin-corner-b:before {
	right: auto;
}

.box-dash-corner-t:after,
.box-dash-corner-b:after,
.box-dash-thin-corner-t:after,
.box-dash-thin-corner-b:after {
	left: auto;
	background-image: url("../img/common/box_tr.png");
}

.box-dash-corner-b,
.box-dash-thin-corner-b {
	top: auto;
	bottom: 0;
}

.box-dash-corner-b:before,
.box-dash-thin-corner-b:before {
	background-image: url("../img/common/box_bl.png");
}

.box-dash-corner-b:after,
.box-dash-thin-corner-b:after {
	background-image: url("../img/common/box_br.png");
}

.box-dash .text-wrap .circle,
.box-dash-thin .text-wrap .circle {
	float: left;
	display: block;
	width: 54px;
	height: 54px;
	line-height: 54px;
	background-color: #ff8583;
	text-align: center;
	margin: auto;
	border-radius: 50%;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	margin-right: 10px;
}

.box-dash .text-wrap .circle+.text,
.box-dash-thin .text-wrap .circle+.text {
	margin: 3px 0 0 0;
}

.box-dash .text-wrap .item,
.box-dash-thin .text-wrap .item {
	float: left;
	margin-top: 0;
}

.box-dash .text-wrap .item+.text,
.box-dash-thin .text-wrap .item+.text {
	float: right;
	margin-top: 0;
}

.box-dash-thin {
	padding: 3px;
	background-color: #fff;
	border-radius: 22px;
}

.box-dash-thin:before,
.box-dash-thin:after {
	background-image: url("../img/common/box2_horizon.png");
	width: 93%;
	height: 3px;
}

.box-dash-thin:before {
	background-position: center top;
}

.box-dash-thin:after {
	background-position: center bottom -1px;
}

.box-dash-thin-inner {
	margin-left: -3px;
	margin-right: -3px;
	padding: 15px 20px;
}

.box-dash-thin-inner:before,
.box-dash-thin-inner:after {
	background-image: url("../img/common/box2_vartical.png");
	width: 3px;
	height: 90%;
}

.box-dash-thin-inner:before {
	background-position: left center;
}

.box-dash-thin-inner:after {
	background-position: right center;
}

.box-dash-thin-corner-t,
.box-dash-thin-corner-b {
	width: 100%;
	height: 17px;
}

.box-dash-thin-corner-t:before,
.box-dash-thin-corner-t:after,
.box-dash-thin-corner-b:before,
.box-dash-thin-corner-b:after {
	width: 17px;
	height: 17px;
	background-image: url("../img/common/box2_tl.png");
}

.box-dash-thin-corner-t:after,
.box-dash-thin-corner-b:after {
	background-image: url("../img/common/box2_tr.png");
}

.box-dash-thin-corner-b:before {
	background-image: url("../img/common/box2_bl.png");
}

.box-dash-thin-corner-b:after {
	background-image: url("../img/common/box2_br.png");
}

.box-dash-thin .numtext-wrap {
	display: flex;
	align-items: center;
}

.box-dash-thin .numtext-wrap+.numtext-wrap {
	margin-top: 1rem;
}

.box-dash-thin .numtext-wrap .num-img {
	width: 28px;
	height: 28px;
	margin-right: 10px;
}

.box-dash-thin .numtext-wrap .num-img+.text {
	width: 100%;
	margin: 0;
}

.fukidashi {
	position: relative;
	padding: 15px 25px;
	background-color: #81bb3f;
	border-radius: 18px;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.5;
}

.fukidashi:after {
	position: absolute;
	top: auto;
	right: auto;
	bottom: -20px;
	left: 12%;
	width: 29px;
	height: 21px;
	margin: auto;
	content: "";
	background-color: transparent;
	background: url("../img/common/fukidashi.png") center center no-repeat;
	background-size: 29px auto;
}

.lang-en .text-wrap .circle,
.lang-cn .text-wrap .circle,
.lang-tw .text-wrap .circle,
.lang-kr .text-wrap .circle,
.lang-pt .text-wrap .circle,
.lang-vn .text-wrap .circle,
.lang-th .text-wrap .circle {
	float: none;
	width: auto;
	height: auto;
	background-color: #ff8583;
	text-align: center;
	margin: auto;
	border-radius: 5px;
	color: #ffffff;
	font-size: 15px;
	line-height: 1;
	font-weight: bold;
	margin-right: 0;
	padding: 9px 0;
}

.lang-en .text-wrap .circle+.text,
.lang-cn .text-wrap .circle+.text,
.lang-tw .text-wrap .circle+.text,
.lang-kr .text-wrap .circle+.text,
.lang-pt .text-wrap .circle+.text,
.lang-vn .text-wrap .circle+.text,
.lang-th .text-wrap .circle+.text {
	margin: 5px 0 0 0;
	font-size: 13px;
	line-height: 20px;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
M08 モジュール 商品情報
*/
.class-product-info .sec-inner,
.page-product .sec-01 .sec-inner {
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}

.class-product-info .sec-inner.sec-inner-01,
.page-product .sec-01 .sec-inner.sec-inner-01 {
	padding-bottom: 0px;
}

.class-product-info .sec-inner.wide:nth-last-of-type(1),
.page-product .sec-01 .sec-inner.wide:nth-last-of-type(1) {
	padding-bottom: 100px;
}

.class-product-info h4+p,
.page-product .sec-01 h4+p {
	margin-left: auto;
	margin-right: auto;
}

.class-product-info h5,
.page-product .sec-01 h5 {
	margin-top: 5px;
	font-size: 1.5rem;
	line-height: 1.5;
}

.class-product-info h5 span,
.page-product .sec-01 h5 span {
	font-size: 2rem;
}

.class-product-info .btn-text,
.page-product .sec-01 .btn-text {
	margin-top: 15px;
}

.class-product-info .swiper-container,
.page-product .sec-01 .swiper-container {
	margin-top: 20px;
}

.class-product-info .slide-inner,
.page-product .sec-01 .slide-inner {
	width: 100%;
	height: 100%;
}

.class-product-info,
.page-product .sec-01 {
	/* --------------------------------------
	 *
	 * らくらくキューブ
	 *
	 ----------------------------------------*/
}

.class-product-info h4 .title-01,
.page-product .sec-01 h4 .title-01 {
	width: 194px;
}

.class-product-info #slide-02,
.page-product .sec-01 #slide-02 {
	width: 1000px;
}

.class-product-info #slide-02 .swiper-slide.slide-03 .slide-inner,
.page-product .sec-01 #slide-02 .swiper-slide.slide-03 .slide-inner {
	padding-top: 38px;
}

.class-product-info .img-01-01,
.page-product .sec-01 .img-01-01 {
	width: auto;
	height: 221px;
	max-width: initial;
	max-width: auto;
}

.class-product-info .img-01-02,
.page-product .sec-01 .img-01-02 {
	width: auto;
	height: 221px;
	max-width: initial;
	max-width: auto;
}

.class-product-info .img-01-03,
.page-product .sec-01 .img-01-03 {
	width: auto;
	height: 193px;
	max-width: initial;
	max-width: auto;
}

.class-product-info .img-01-04,
.page-product .sec-01 .img-01-04 {
	width: auto;
	height: 221px;
	max-width: initial;
	max-width: auto;
}

.class-product-info #slide-02-2,
.page-product .sec-01 #slide-02-2 {
	width: 1080px;
	max-width: 1080px;
}

.class-product-info #slide-04,
.page-product .sec-01 #slide-04 {
	max-width: 1080px;
	width: 1080px;
}

.class-product-info #slide-04 .swiper-slide,
.page-product .sec-01 #slide-04 .swiper-slide {
	padding-left: 0;
	padding-right: 0;
}

.class-product-info #slide-04 .subname,
.page-product .sec-01 #slide-04 .subname {
	font-weight: 700;
}

.class-product-info,
.page-product .sec-01 {
	/* --------------------------------------
	 *
	 * らくらくミルク
	 *
	 ----------------------------------------*/
}

.class-product-info h4 .title-02,
.page-product .sec-01 h4 .title-02 {
	width: 183px;
}

.class-product-info .img-02,
.page-product .sec-01 .img-02 {
	width: 176px;
	margin-top: 20px;
}

.class-product-info .img-02-02,
.page-product .sec-01 .img-02-02 {
	width: 250px;
	margin-top: 40px;
	margin-bottom: 33px;
}

.class-product-info,
.page-product .sec-01 {
	/* --------------------------------------
	 *
	 * ほほえみ
	 *
	 ----------------------------------------*/
}

.class-product-info h4 .title-03,
.page-product .sec-01 h4 .title-03 {
	width: 181px;
}

.class-product-info #slide-03,
.page-product .sec-01 #slide-03 {
	width: 700px;
}

.class-product-info #slide-03 .swiper-slide,
.page-product .sec-01 #slide-03 .swiper-slide {
	padding-left: 0;
	padding-right: 0;
}

.class-product-info #slide-03 .swiper-slide.slide-02 .slide-inner,
.page-product .sec-01 #slide-03 .swiper-slide.slide-02 .slide-inner {
	padding-top: 50px;
}

.class-product-info .img-03-01,
.page-product .sec-01 .img-03-01 {
	width: 220px;
}

.class-product-info .img-03-02,
.page-product .sec-01 .img-03-02 {
	width: 350px;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
M09 モジュール ローディング表示
*/
.loading-wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 99999;
}


@keyframes cloud {
	0% {
		rotate: 0;
	}

	100% {
		rotate: 360deg;
	}
}

@keyframes wave99PC {
	0% {
		background-position: 0 top;
	}

	100% {
		background-position: 1500px top;
	}
}

@keyframes wave99SP {
	0% {
		background-position: 0 top;
	}

	100% {
		background-position: 160vw top;
	}
}

@keyframes scroll {
	0% {
		transform: translate(0, 0);
	}

	20% {
		transform: translate(0, 10px);
	}

	40% {
		transform: translate(0, 0);
	}
}

/**
 * セッティング
 */
/**
 * Mixin
 */
body.page-process .wave-box-upper {
	background-image: url("../img/process/wave_01.png");
	animation: anime_wave01_pc 25s linear 0s infinite normal;
}

body.page-process .wave-box-lower {
	background-image: url("../img/process/wave_02.png");
	animation: anime_wave02_pc 25s linear 0s infinite normal;
}

body.page-process .bg-icon {
	z-index: 50;
}

body.page-process .board-title-wrap {
	background: url("../img/process/head_title_bg.png") left top repeat-x;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
body.page-process .sec-movie {
	position: relative;
	z-index: 10;
}

body.page-process .sec-movie .title {
	margin: auto;
}

body.page-process .sec-movie .video {
	position: relative;
}

body.page-process .sec-movie .video a {
	display: block;
}

body.page-process .sec-movie .video a::after {
	content: "";
	position: absolute;
	background-image: url("../img/common/slide_btn_r_on.png");
	background-size: contain;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

body.page-process .sec-movie .liquid-wrap {
	overflow: visible;
	margin: auto;
	z-index: 0;
	right: 0;
	left: 0;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
body.page-process .sec-management {
	position: relative;
	z-index: 10;
	background-color: #fff5e5;
}

body.page-process .sec-management .sec-inner .title h2 {
	text-align: center;
}

body.page-process .sec-management__list {
	padding: 0;
	margin: auto;
}

body.page-process .sec-management__item {
	text-align: center;
}

body.page-process .sec-management__item figure img {
	width: 100%;
	position: relative;
}

body.page-process .sec-management__item figure figcaption {
	line-height: 1.6em;
	text-align: justify;
	text-align-last: center;
}

body.page-process .sec-management .liquid-wrap {
	overflow: visible;
	margin: auto;
	z-index: 0;
	right: 0;
	left: 0;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
body.page-process .sec-process {
	position: relative;
	z-index: 10;
}

body.page-process .sec-process .sec-inner {
	margin: auto;
}

body.page-process .sec-process .sec-inner .title h2 {
	text-align: center;
}

body.page-process .sec-process__nav {
	display: flex;
	justify-content: center;
}

body.page-process .sec-process__nav-item {
	background: #FFF1D2;
	min-height: 86px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 12px 2%;
	gap: 8px;
	position: relative;
	color: #ff8583;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.2;
	text-align: center;
}

body.page-process .sec-process__nav-item .nav-item-label {
	font-family: 'UVN Vung Tay Regular', sans-serif;
	font-size: 12px;
	line-height: 1.2;
	padding: 4px 8px;
	border-radius: 8px;
	background: #ff8583;
	color: #fff1d2;
}

body.page-process .sec-process__nav-item picture {
	display: none !important;
}

body.page-process .sec-process__nav-item:first-child {
	clip-path: polygon(84.82% 100%, 3.672% 100%, 3.672% 100%, 3.381% 99.975%, 3.094% 99.9%, 2.812% 99.777%, 2.536% 99.606%, 2.267% 99.389%, 2.007% 99.127%, 1.756% 98.82%, 1.517% 98.471%, 1.289% 98.08%, 1.076% 97.648%, 1.076% 97.648%, 0.878% 97.181%, 0.699% 96.684%, 0.54% 96.16%, 0.399% 95.613%, 0.28% 95.044%, 0.18% 94.456%, 0.102% 93.852%, 0.046% 93.235%, 0.012% 92.607%, 0% 91.971%, 0% 8.029%, 0% 8.029%, 0.012% 7.393%, 0.046% 6.765%, 0.102% 6.148%, 0.18% 5.544%, 0.28% 4.956%, 0.399% 4.387%, 0.54% 3.84%, 0.699% 3.316%, 0.878% 2.819%, 1.076% 2.352%, 1.076% 2.352%, 1.289% 1.92%, 1.517% 1.529%, 1.756% 1.18%, 2.007% 0.873%, 2.267% 0.611%, 2.536% 0.394%, 2.812% 0.223%, 3.094% 0.1%, 3.381% 0.025%, 3.672% 0%, 84.838% 0%, 84.838% 0%, 85.027% 0.014%, 85.214% 0.049%, 85.401% 0.105%, 85.585% 0.181%, 85.767% 0.278%, 85.947% 0.395%, 86.123% 0.533%, 86.297% 0.689%, 86.467% 0.866%, 86.633% 1.062%, 86.633% 1.062%, 86.794% 1.276%, 86.95% 1.507%, 87.1% 1.755%, 87.243% 2.019%, 87.38% 2.299%, 87.511% 2.593%, 87.634% 2.902%, 87.75% 3.225%, 87.859% 3.56%, 87.96% 3.909%, 99.477% 45.876%, 99.477% 45.876%, 99.575% 46.256%, 99.663% 46.645%, 99.741% 47.044%, 99.809% 47.451%, 99.867% 47.864%, 99.914% 48.284%, 99.952% 48.709%, 99.978% 49.139%, 99.995% 49.572%, 100% 50.008%, 100% 50.008%, 99.995% 50.443%, 99.978% 50.877%, 99.952% 51.306%, 99.914% 51.731%, 99.867% 52.151%, 99.809% 52.565%, 99.741% 52.972%, 99.663% 53.37%, 99.575% 53.76%, 99.477% 54.14%, 87.96% 96.107%, 87.96% 96.107%, 87.858% 96.456%, 87.748% 96.792%, 87.631% 97.115%, 87.507% 97.424%, 87.376% 97.719%, 87.238% 97.998%, 87.093% 98.262%, 86.942% 98.509%, 86.786% 98.74%, 86.624% 98.954%, 86.624% 98.954%, 86.457% 99.149%, 86.286% 99.324%, 86.111% 99.48%, 85.933% 99.616%, 85.753% 99.731%, 85.57% 99.826%, 85.385% 99.901%, 85.198% 99.955%, 85.01% 99.988%, 84.82% 100%);
	padding-left: 0;
}

body.page-process .sec-process__nav-item:not(:first-child) {
	clip-path: polygon(85.092% 100%, 3.54% 100%, 3.54% 100%, 3.352% 99.988%, 3.166% 99.954%, 2.981% 99.898%, 2.798% 99.82%, 2.617% 99.722%, 2.438% 99.602%, 2.263% 99.462%, 2.091% 99.301%, 1.922% 99.12%, 1.758% 98.918%, 1.758% 98.918%, 1.598% 98.698%, 1.445% 98.46%, 1.297% 98.205%, 1.156% 97.933%, 1.022% 97.645%, 0.895% 97.342%, 0.775% 97.024%, 0.662% 96.692%, 0.558% 96.347%, 0.461% 95.989%, 0.461% 95.989%, 0.373% 95.62%, 0.294% 95.243%, 0.224% 94.857%, 0.163% 94.464%, 0.112% 94.065%, 0.07% 93.661%, 0.038% 93.252%, 0.016% 92.839%, 0.003% 92.424%, 0% 92.006%, 0% 92.006%, 0.007% 91.588%, 0.024% 91.173%, 0.051% 90.762%, 0.087% 90.355%, 0.133% 89.953%, 0.188% 89.556%, 0.252% 89.167%, 0.326% 88.785%, 0.409% 88.411%, 0.501% 88.046%, 9.657% 54.052%, 9.657% 54.052%, 9.752% 53.679%, 9.836% 53.296%, 9.912% 52.904%, 9.977% 52.504%, 10.033% 52.098%, 10.079% 51.685%, 10.115% 51.268%, 10.141% 50.846%, 10.156% 50.42%, 10.161% 49.992%, 10.161% 49.992%, 10.156% 49.564%, 10.141% 49.139%, 10.115% 48.717%, 10.079% 48.299%, 10.033% 47.886%, 9.977% 47.48%, 9.912% 47.08%, 9.836% 46.689%, 9.752% 46.306%, 9.657% 45.932%, 0.501% 11.938%, 0.501% 11.938%, 0.409% 11.573%, 0.327% 11.2%, 0.254% 10.818%, 0.19% 10.429%, 0.135% 10.033%, 0.09% 9.631%, 0.054% 9.225%, 0.028% 8.814%, 0.011% 8.4%, 0.004% 7.983%, 0.004% 7.983%, 0.007% 7.566%, 0.02% 7.151%, 0.043% 6.739%, 0.075% 6.331%, 0.117% 5.927%, 0.168% 5.529%, 0.229% 5.137%, 0.299% 4.752%, 0.378% 4.375%, 0.466% 4.007%, 0.466% 4.007%, 0.563% 3.65%, 0.667% 3.305%, 0.78% 2.974%, 0.9% 2.657%, 1.027% 2.354%, 1.161% 2.067%, 1.302% 1.796%, 1.449% 1.541%, 1.602% 1.303%, 1.761% 1.083%, 1.761% 1.083%, 1.925% 0.882%, 2.093% 0.701%, 2.265% 0.54%, 2.44% 0.4%, 2.618% 0.28%, 2.799% 0.181%, 2.982% 0.104%, 3.167% 0.047%, 3.353% 0.013%, 3.54% 0%, 85.092% 0%, 85.092% 0%, 85.275% 0.011%, 85.458% 0.042%, 85.639% 0.095%, 85.818% 0.168%, 85.996% 0.261%, 86.171% 0.374%, 86.343% 0.508%, 86.512% 0.661%, 86.678% 0.833%, 86.84% 1.025%, 86.84% 1.025%, 86.997% 1.236%, 87.149% 1.463%, 87.295% 1.707%, 87.435% 1.968%, 87.569% 2.243%, 87.696% 2.534%, 87.817% 2.839%, 87.93% 3.158%, 88.036% 3.49%, 88.135% 3.834%, 99.496% 45.94%, 99.496% 45.94%, 99.59% 46.314%, 99.675% 46.696%, 99.75% 47.088%, 99.816% 47.488%, 99.872% 47.894%, 99.918% 48.307%, 99.954% 48.724%, 99.979% 49.147%, 99.995% 49.572%, 100% 50%, 100% 50%, 99.995% 50.428%, 99.979% 50.853%, 99.954% 51.276%, 99.918% 51.693%, 99.872% 52.106%, 99.816% 52.512%, 99.75% 52.912%, 99.675% 53.304%, 99.59% 53.686%, 99.496% 54.06%, 88.135% 96.174%, 88.135% 96.174%, 88.036% 96.518%, 87.93% 96.849%, 87.816% 97.168%, 87.696% 97.472%, 87.568% 97.762%, 87.435% 98.037%, 87.295% 98.297%, 87.148% 98.541%, 86.997% 98.768%, 86.839% 98.978%, 86.839% 98.978%, 86.677% 99.169%, 86.512% 99.342%, 86.342% 99.494%, 86.17% 99.627%, 85.995% 99.741%, 85.818% 99.834%, 85.639% 99.906%, 85.457% 99.958%, 85.275% 99.99%, 85.092% 100%);
	background: #FFF1D2;
}

body.page-process .sec-process__nav-item.is-active {
	background: #FF8583;
	color: #fff1d2;
}

body.page-process .sec-process__nav-item.is-active .nav-item-label {
	background: #fff1d2;
	color: #FF8583;
}

body.page-process .sec-process__nav-item:not(.is-active) picture.active {
	display: none;
}

body.page-process .sec-process__nav-item.is-active picture:not(.active) {
	display: none;
}

body.page-process .sec-process__nav img {
	width: 100%;
}

body.page-process .sec-process__list {
	padding: 0;
	margin: auto;
}

body.page-process .sec-process__item {
	text-align: center;
}

body.page-process .sec-process__item-title {
	color: #ff8583;
	font-weight: 700;
	line-height: 2em;
}

body.page-process .sec-process__item figure {
	display: block;
	padding: 0;
	margin: auto;
}

body.page-process .sec-process__item figure figcaption {
	line-height: 1.6em;
	text-align: justify;
	text-align-last: center;
}

body.page-process .sec-process__type-item {
	text-align: center;
	position: relative;
	overflow: visible;
}

body.page-process .sec-process__type-item:nth-child(1)::after,
body.page-process .sec-process__type-item:nth-child(3)::after {
	content: "";
	display: block;
	position: absolute;
	background-image: url("../img/process/arrow01-pink.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

body.page-process .sec-process__type-item:nth-child(2)::after {
	content: "";
	display: block;
	position: absolute;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

body.page-process .sec-process__type-item-title {
	margin: auto;
}

body.page-process .sec-process__type-item figure figcaption {
	line-height: 1.6;
}

body.page-process .sec-process__type-item img {
	width: 100%;
}

body.page-process .sec-process .liquid-wrap {
	overflow: visible;
	margin: auto;
	z-index: 0;
	right: 0;
	left: 0;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
body.page-process .sec-links {
	position: relative;
}

body.page-process .sec-links .liquid-wrap {
	overflow: visible;
	margin: auto;
	z-index: 0;
	right: 0;
	left: 0;
}

/**
 * セッティング
 */
/**
 * Mixin
 */
/*
#overview
ビフィズス菌ページ タイトル
*/
.page-bifidobacteria .sec-title {
	position: relative;
}

.page-bifidobacteria .sec-title .list-note {
	counter-reset: note-number;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
}

.page-bifidobacteria .sec-title .list-note li {
	counter-increment: note-number;
	font-size: 12px;
	font-weight: 300;
}

.page-bifidobacteria .sec-title .list-note li::before {
	content: "※" counter(note-number) " ";
}

.sec-inner.inner-bifidobacteria {
	max-width: 590px;
	padding-top: 0;
}

.sec-inner.inner-bifidobacteria .title {
	letter-spacing: 0.05em;
}

.sec-inner.inner-bifidobacteria .title span {
	background: url("../img/common/title_line.png") center bottom repeat-x;
	padding-bottom: 5px;
}

.sec-inner.inner-bifidobacteria .max-473 {
	max-width: 473px;
	margin-inline: auto;
	margin-top: 23px;
	letter-spacing: 0.01em;
}

.sec-01 .inner-bifidobacteria {
	padding-bottom: 341px;
	padding-top: 0;
}

.sec-02 .inner-bifidobacteria {
	padding-bottom: 100px;
}

@media (print),
(prefers-reduced-motion) {
	.animated {
		animation: unset !important;
		transition: none !important;
	}
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

	/**
	 * Remove all paddings around the image on small screen
	 */
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}

	.mfp-img-mobile img.mfp-img {
		padding: 0;
	}

	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}

	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}

	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		box-sizing: border-box;
	}

	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0;
	}

	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}

	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media all and (max-width: 900px) {
	.mfp-arrow {
		transform: scale(0.75);
	}

	.mfp-arrow-left {
		transform-origin: 0;
	}

	.mfp-arrow-right {
		transform-origin: 100%;
	}

	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}

@media only screen and (min-width: 641px) {
	.remodal {
		max-width: 700px;
	}
}

@media (max-width: 767px) {
	.visible-xs {
		display: block !important;
	}

	table.visible-xs {
		display: table !important;
	}

	tr.visible-xs {
		display: table-row !important;
	}

	th.visible-xs,
	td.visible-xs {
		display: table-cell !important;
	}

	.visible-xs-block {
		display: block !important;
	}

	.visible-xs-inline {
		display: inline !important;
	}

	.visible-xs-inline-block {
		display: inline-block !important;
	}

	.hidden-xs {
		display: none !important;
	}

	body {
		min-width: 100%;
	}

	body.no-scroll {
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		right: 0;
		z-index: -1;
	}

	.container2 {
		padding-bottom: 140px;
		padding-top: 50px;
	}

	section {
		min-width: initial;
		min-width: auto;
	}

	.wave-box {
		padding-top: 3.7333333333%;
		height: 0;
	}

	.wave-box-upper {
		animation: anime_wave01_sp 50s linear 0s infinite normal;
	}

	.wave-box-lower {
		animation: anime_wave02_sp 50s linear 0s infinite normal;
	}

	.sec-inner {
		max-width: 100%;
		padding: 30px 25px;
	}

	.sec-inner.wide {
		max-width: 100%;
		padding: 30px 0;
	}

	.sec-inner.last {
		padding-top: 60px;
		padding-bottom: 20%;
	}

	.visible-xs-flex {
		display: flex !important;
	}

	.wsm-full {
		width: 100%;
	}

	.tac-tar {
		text-align: right;
	}

	.tac-tal {
		text-align: left;
	}

	.tar-tac {
		text-align: center;
	}

	.tal-tac {
		text-align: center;
	}

	.sp-tar {
		text-align: right !important;
	}

	.sp-tal {
		text-align: left !important;
	}

	.sp-tac {
		text-align: center !important;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.fs10-10 {
		font-size: 1rem !important;
	}

	.fs11-10 {
		font-size: 1rem !important;
	}

	.fs11-11 {
		font-size: 1.1rem !important;
	}

	.fs12-10 {
		font-size: 1rem !important;
	}

	.fs12-11 {
		font-size: 1.1rem !important;
	}

	.fs12-12 {
		font-size: 1.2rem !important;
	}

	.fs13-10 {
		font-size: 1rem !important;
	}

	.fs13-11 {
		font-size: 1.1rem !important;
	}

	.fs13-12 {
		font-size: 1.2rem !important;
	}

	.fs13-13 {
		font-size: 1.3rem !important;
	}

	.fs14-10 {
		font-size: 1rem !important;
	}

	.fs14-11 {
		font-size: 1.1rem !important;
	}

	.fs14-12 {
		font-size: 1.2rem !important;
	}

	.fs14-13 {
		font-size: 1.3rem !important;
	}

	.fs14-14 {
		font-size: 1.4rem !important;
	}

	.fs15-10 {
		font-size: 1rem !important;
	}

	.fs15-11 {
		font-size: 1.1rem !important;
	}

	.fs15-12 {
		font-size: 1.2rem !important;
	}

	.fs15-13 {
		font-size: 1.3rem !important;
	}

	.fs15-14 {
		font-size: 1.4rem !important;
	}

	.fs15-15 {
		font-size: 1.5rem !important;
	}

	.fs16-10 {
		font-size: 1rem !important;
	}

	.fs16-11 {
		font-size: 1.1rem !important;
	}

	.fs16-12 {
		font-size: 1.2rem !important;
	}

	.fs16-13 {
		font-size: 1.3rem !important;
	}

	.fs16-14 {
		font-size: 1.4rem !important;
	}

	.fs16-15 {
		font-size: 1.5rem !important;
	}

	.fs16-16 {
		font-size: 1.6rem !important;
	}

	.fs17-10 {
		font-size: 1rem !important;
	}

	.fs17-11 {
		font-size: 1.1rem !important;
	}

	.fs17-12 {
		font-size: 1.2rem !important;
	}

	.fs17-13 {
		font-size: 1.3rem !important;
	}

	.fs17-14 {
		font-size: 1.4rem !important;
	}

	.fs17-15 {
		font-size: 1.5rem !important;
	}

	.fs17-16 {
		font-size: 1.6rem !important;
	}

	.fs17-17 {
		font-size: 1.7rem !important;
	}

	.fs18-10 {
		font-size: 1rem !important;
	}

	.fs18-11 {
		font-size: 1.1rem !important;
	}

	.fs18-12 {
		font-size: 1.2rem !important;
	}

	.fs18-13 {
		font-size: 1.3rem !important;
	}

	.fs18-14 {
		font-size: 1.4rem !important;
	}

	.fs18-15 {
		font-size: 1.5rem !important;
	}

	.fs18-16 {
		font-size: 1.6rem !important;
	}

	.fs18-17 {
		font-size: 1.7rem !important;
	}

	.fs18-18 {
		font-size: 1.8rem !important;
	}

	.fs19-10 {
		font-size: 1rem !important;
	}

	.fs19-11 {
		font-size: 1.1rem !important;
	}

	.fs19-12 {
		font-size: 1.2rem !important;
	}

	.fs19-13 {
		font-size: 1.3rem !important;
	}

	.fs19-14 {
		font-size: 1.4rem !important;
	}

	.fs19-15 {
		font-size: 1.5rem !important;
	}

	.fs19-16 {
		font-size: 1.6rem !important;
	}

	.fs19-17 {
		font-size: 1.7rem !important;
	}

	.fs19-18 {
		font-size: 1.8rem !important;
	}

	.fs19-19 {
		font-size: 1.9rem !important;
	}

	.fs20-10 {
		font-size: 1rem !important;
	}

	.fs20-11 {
		font-size: 1.1rem !important;
	}

	.fs20-12 {
		font-size: 1.2rem !important;
	}

	.fs20-13 {
		font-size: 1.3rem !important;
	}

	.fs20-14 {
		font-size: 1.4rem !important;
	}

	.fs20-15 {
		font-size: 1.5rem !important;
	}

	.fs20-16 {
		font-size: 1.6rem !important;
	}

	.fs20-17 {
		font-size: 1.7rem !important;
	}

	.fs20-18 {
		font-size: 1.8rem !important;
	}

	.fs20-19 {
		font-size: 1.9rem !important;
	}

	.fs20-20 {
		font-size: 2rem !important;
	}

	.fs21-10 {
		font-size: 1rem !important;
	}

	.fs21-11 {
		font-size: 1.1rem !important;
	}

	.fs21-12 {
		font-size: 1.2rem !important;
	}

	.fs21-13 {
		font-size: 1.3rem !important;
	}

	.fs21-14 {
		font-size: 1.4rem !important;
	}

	.fs21-15 {
		font-size: 1.5rem !important;
	}

	.fs21-16 {
		font-size: 1.6rem !important;
	}

	.fs21-17 {
		font-size: 1.7rem !important;
	}

	.fs21-18 {
		font-size: 1.8rem !important;
	}

	.fs21-19 {
		font-size: 1.9rem !important;
	}

	.fs21-20 {
		font-size: 2rem !important;
	}

	.fs21-21 {
		font-size: 2.1rem !important;
	}

	.fs22-10 {
		font-size: 1rem !important;
	}

	.fs22-11 {
		font-size: 1.1rem !important;
	}

	.fs22-12 {
		font-size: 1.2rem !important;
	}

	.fs22-13 {
		font-size: 1.3rem !important;
	}

	.fs22-14 {
		font-size: 1.4rem !important;
	}

	.fs22-15 {
		font-size: 1.5rem !important;
	}

	.fs22-16 {
		font-size: 1.6rem !important;
	}

	.fs22-17 {
		font-size: 1.7rem !important;
	}

	.fs22-18 {
		font-size: 1.8rem !important;
	}

	.fs22-19 {
		font-size: 1.9rem !important;
	}

	.fs22-20 {
		font-size: 2rem !important;
	}

	.fs22-21 {
		font-size: 2.1rem !important;
	}

	.fs22-22 {
		font-size: 2.2rem !important;
	}

	.fs23-10 {
		font-size: 1rem !important;
	}

	.fs23-11 {
		font-size: 1.1rem !important;
	}

	.fs23-12 {
		font-size: 1.2rem !important;
	}

	.fs23-13 {
		font-size: 1.3rem !important;
	}

	.fs23-14 {
		font-size: 1.4rem !important;
	}

	.fs23-15 {
		font-size: 1.5rem !important;
	}

	.fs23-16 {
		font-size: 1.6rem !important;
	}

	.fs23-17 {
		font-size: 1.7rem !important;
	}

	.fs23-18 {
		font-size: 1.8rem !important;
	}

	.fs23-19 {
		font-size: 1.9rem !important;
	}

	.fs23-20 {
		font-size: 2rem !important;
	}

	.fs23-21 {
		font-size: 2.1rem !important;
	}

	.fs23-22 {
		font-size: 2.2rem !important;
	}

	.fs23-23 {
		font-size: 2.3rem !important;
	}

	.fs24-10 {
		font-size: 1rem !important;
	}

	.fs24-11 {
		font-size: 1.1rem !important;
	}

	.fs24-12 {
		font-size: 1.2rem !important;
	}

	.fs24-13 {
		font-size: 1.3rem !important;
	}

	.fs24-14 {
		font-size: 1.4rem !important;
	}

	.fs24-15 {
		font-size: 1.5rem !important;
	}

	.fs24-16 {
		font-size: 1.6rem !important;
	}

	.fs24-17 {
		font-size: 1.7rem !important;
	}

	.fs24-18 {
		font-size: 1.8rem !important;
	}

	.fs24-19 {
		font-size: 1.9rem !important;
	}

	.fs24-20 {
		font-size: 2rem !important;
	}

	.fs24-21 {
		font-size: 2.1rem !important;
	}

	.fs24-22 {
		font-size: 2.2rem !important;
	}

	.fs24-23 {
		font-size: 2.3rem !important;
	}

	.fs24-24 {
		font-size: 2.4rem !important;
	}

	.fs25-10 {
		font-size: 1rem !important;
	}

	.fs25-11 {
		font-size: 1.1rem !important;
	}

	.fs25-12 {
		font-size: 1.2rem !important;
	}

	.fs25-13 {
		font-size: 1.3rem !important;
	}

	.fs25-14 {
		font-size: 1.4rem !important;
	}

	.fs25-15 {
		font-size: 1.5rem !important;
	}

	.fs25-16 {
		font-size: 1.6rem !important;
	}

	.fs25-17 {
		font-size: 1.7rem !important;
	}

	.fs25-18 {
		font-size: 1.8rem !important;
	}

	.fs25-19 {
		font-size: 1.9rem !important;
	}

	.fs25-20 {
		font-size: 2rem !important;
	}

	.fs25-21 {
		font-size: 2.1rem !important;
	}

	.fs25-22 {
		font-size: 2.2rem !important;
	}

	.fs25-23 {
		font-size: 2.3rem !important;
	}

	.fs25-24 {
		font-size: 2.4rem !important;
	}

	.fs25-25 {
		font-size: 2.5rem !important;
	}

	.fs26-10 {
		font-size: 1rem !important;
	}

	.fs26-11 {
		font-size: 1.1rem !important;
	}

	.fs26-12 {
		font-size: 1.2rem !important;
	}

	.fs26-13 {
		font-size: 1.3rem !important;
	}

	.fs26-14 {
		font-size: 1.4rem !important;
	}

	.fs26-15 {
		font-size: 1.5rem !important;
	}

	.fs26-16 {
		font-size: 1.6rem !important;
	}

	.fs26-17 {
		font-size: 1.7rem !important;
	}

	.fs26-18 {
		font-size: 1.8rem !important;
	}

	.fs26-19 {
		font-size: 1.9rem !important;
	}

	.fs26-20 {
		font-size: 2rem !important;
	}

	.fs26-21 {
		font-size: 2.1rem !important;
	}

	.fs26-22 {
		font-size: 2.2rem !important;
	}

	.fs26-23 {
		font-size: 2.3rem !important;
	}

	.fs26-24 {
		font-size: 2.4rem !important;
	}

	.fs26-25 {
		font-size: 2.5rem !important;
	}

	.fs26-26 {
		font-size: 2.6rem !important;
	}

	.fs27-10 {
		font-size: 1rem !important;
	}

	.fs27-11 {
		font-size: 1.1rem !important;
	}

	.fs27-12 {
		font-size: 1.2rem !important;
	}

	.fs27-13 {
		font-size: 1.3rem !important;
	}

	.fs27-14 {
		font-size: 1.4rem !important;
	}

	.fs27-15 {
		font-size: 1.5rem !important;
	}

	.fs27-16 {
		font-size: 1.6rem !important;
	}

	.fs27-17 {
		font-size: 1.7rem !important;
	}

	.fs27-18 {
		font-size: 1.8rem !important;
	}

	.fs27-19 {
		font-size: 1.9rem !important;
	}

	.fs27-20 {
		font-size: 2rem !important;
	}

	.fs27-21 {
		font-size: 2.1rem !important;
	}

	.fs27-22 {
		font-size: 2.2rem !important;
	}

	.fs27-23 {
		font-size: 2.3rem !important;
	}

	.fs27-24 {
		font-size: 2.4rem !important;
	}

	.fs27-25 {
		font-size: 2.5rem !important;
	}

	.fs27-26 {
		font-size: 2.6rem !important;
	}

	.fs27-27 {
		font-size: 2.7rem !important;
	}

	.fs28-10 {
		font-size: 1rem !important;
	}

	.fs28-11 {
		font-size: 1.1rem !important;
	}

	.fs28-12 {
		font-size: 1.2rem !important;
	}

	.fs28-13 {
		font-size: 1.3rem !important;
	}

	.fs28-14 {
		font-size: 1.4rem !important;
	}

	.fs28-15 {
		font-size: 1.5rem !important;
	}

	.fs28-16 {
		font-size: 1.6rem !important;
	}

	.fs28-17 {
		font-size: 1.7rem !important;
	}

	.fs28-18 {
		font-size: 1.8rem !important;
	}

	.fs28-19 {
		font-size: 1.9rem !important;
	}

	.fs28-20 {
		font-size: 2rem !important;
	}

	.fs28-21 {
		font-size: 2.1rem !important;
	}

	.fs28-22 {
		font-size: 2.2rem !important;
	}

	.fs28-23 {
		font-size: 2.3rem !important;
	}

	.fs28-24 {
		font-size: 2.4rem !important;
	}

	.fs28-25 {
		font-size: 2.5rem !important;
	}

	.fs28-26 {
		font-size: 2.6rem !important;
	}

	.fs28-27 {
		font-size: 2.7rem !important;
	}

	.fs28-28 {
		font-size: 2.8rem !important;
	}

	.fs29-10 {
		font-size: 1rem !important;
	}

	.fs29-11 {
		font-size: 1.1rem !important;
	}

	.fs29-12 {
		font-size: 1.2rem !important;
	}

	.fs29-13 {
		font-size: 1.3rem !important;
	}

	.fs29-14 {
		font-size: 1.4rem !important;
	}

	.fs29-15 {
		font-size: 1.5rem !important;
	}

	.fs29-16 {
		font-size: 1.6rem !important;
	}

	.fs29-17 {
		font-size: 1.7rem !important;
	}

	.fs29-18 {
		font-size: 1.8rem !important;
	}

	.fs29-19 {
		font-size: 1.9rem !important;
	}

	.fs29-20 {
		font-size: 2rem !important;
	}

	.fs29-21 {
		font-size: 2.1rem !important;
	}

	.fs29-22 {
		font-size: 2.2rem !important;
	}

	.fs29-23 {
		font-size: 2.3rem !important;
	}

	.fs29-24 {
		font-size: 2.4rem !important;
	}

	.fs29-25 {
		font-size: 2.5rem !important;
	}

	.fs29-26 {
		font-size: 2.6rem !important;
	}

	.fs29-27 {
		font-size: 2.7rem !important;
	}

	.fs29-28 {
		font-size: 2.8rem !important;
	}

	.fs29-29 {
		font-size: 2.9rem !important;
	}

	.fs30-10 {
		font-size: 1rem !important;
	}

	.fs30-11 {
		font-size: 1.1rem !important;
	}

	.fs30-12 {
		font-size: 1.2rem !important;
	}

	.fs30-13 {
		font-size: 1.3rem !important;
	}

	.fs30-14 {
		font-size: 1.4rem !important;
	}

	.fs30-15 {
		font-size: 1.5rem !important;
	}

	.fs30-16 {
		font-size: 1.6rem !important;
	}

	.fs30-17 {
		font-size: 1.7rem !important;
	}

	.fs30-18 {
		font-size: 1.8rem !important;
	}

	.fs30-19 {
		font-size: 1.9rem !important;
	}

	.fs30-20 {
		font-size: 2rem !important;
	}

	.fs30-21 {
		font-size: 2.1rem !important;
	}

	.fs30-22 {
		font-size: 2.2rem !important;
	}

	.fs30-23 {
		font-size: 2.3rem !important;
	}

	.fs30-24 {
		font-size: 2.4rem !important;
	}

	.fs30-25 {
		font-size: 2.5rem !important;
	}

	.fs30-26 {
		font-size: 2.6rem !important;
	}

	.fs30-27 {
		font-size: 2.7rem !important;
	}

	.fs30-28 {
		font-size: 2.8rem !important;
	}

	.fs30-29 {
		font-size: 2.9rem !important;
	}

	.fs30-30 {
		font-size: 3rem !important;
	}

	.fs31-10 {
		font-size: 1rem !important;
	}

	.fs31-11 {
		font-size: 1.1rem !important;
	}

	.fs31-12 {
		font-size: 1.2rem !important;
	}

	.fs31-13 {
		font-size: 1.3rem !important;
	}

	.fs31-14 {
		font-size: 1.4rem !important;
	}

	.fs31-15 {
		font-size: 1.5rem !important;
	}

	.fs31-16 {
		font-size: 1.6rem !important;
	}

	.fs31-17 {
		font-size: 1.7rem !important;
	}

	.fs31-18 {
		font-size: 1.8rem !important;
	}

	.fs31-19 {
		font-size: 1.9rem !important;
	}

	.fs31-20 {
		font-size: 2rem !important;
	}

	.fs31-21 {
		font-size: 2.1rem !important;
	}

	.fs31-22 {
		font-size: 2.2rem !important;
	}

	.fs31-23 {
		font-size: 2.3rem !important;
	}

	.fs31-24 {
		font-size: 2.4rem !important;
	}

	.fs31-25 {
		font-size: 2.5rem !important;
	}

	.fs31-26 {
		font-size: 2.6rem !important;
	}

	.fs31-27 {
		font-size: 2.7rem !important;
	}

	.fs31-28 {
		font-size: 2.8rem !important;
	}

	.fs31-29 {
		font-size: 2.9rem !important;
	}

	.fs31-30 {
		font-size: 3rem !important;
	}

	.fs31-31 {
		font-size: 3.1rem !important;
	}

	.fs32-10 {
		font-size: 1rem !important;
	}

	.fs32-11 {
		font-size: 1.1rem !important;
	}

	.fs32-12 {
		font-size: 1.2rem !important;
	}

	.fs32-13 {
		font-size: 1.3rem !important;
	}

	.fs32-14 {
		font-size: 1.4rem !important;
	}

	.fs32-15 {
		font-size: 1.5rem !important;
	}

	.fs32-16 {
		font-size: 1.6rem !important;
	}

	.fs32-17 {
		font-size: 1.7rem !important;
	}

	.fs32-18 {
		font-size: 1.8rem !important;
	}

	.fs32-19 {
		font-size: 1.9rem !important;
	}

	.fs32-20 {
		font-size: 2rem !important;
	}

	.fs32-21 {
		font-size: 2.1rem !important;
	}

	.fs32-22 {
		font-size: 2.2rem !important;
	}

	.fs32-23 {
		font-size: 2.3rem !important;
	}

	.fs32-24 {
		font-size: 2.4rem !important;
	}

	.fs32-25 {
		font-size: 2.5rem !important;
	}

	.fs32-26 {
		font-size: 2.6rem !important;
	}

	.fs32-27 {
		font-size: 2.7rem !important;
	}

	.fs32-28 {
		font-size: 2.8rem !important;
	}

	.fs32-29 {
		font-size: 2.9rem !important;
	}

	.fs32-30 {
		font-size: 3rem !important;
	}

	.fs32-31 {
		font-size: 3.1rem !important;
	}

	.fs32-32 {
		font-size: 3.2rem !important;
	}

	.fs33-10 {
		font-size: 1rem !important;
	}

	.fs33-11 {
		font-size: 1.1rem !important;
	}

	.fs33-12 {
		font-size: 1.2rem !important;
	}

	.fs33-13 {
		font-size: 1.3rem !important;
	}

	.fs33-14 {
		font-size: 1.4rem !important;
	}

	.fs33-15 {
		font-size: 1.5rem !important;
	}

	.fs33-16 {
		font-size: 1.6rem !important;
	}

	.fs33-17 {
		font-size: 1.7rem !important;
	}

	.fs33-18 {
		font-size: 1.8rem !important;
	}

	.fs33-19 {
		font-size: 1.9rem !important;
	}

	.fs33-20 {
		font-size: 2rem !important;
	}

	.fs33-21 {
		font-size: 2.1rem !important;
	}

	.fs33-22 {
		font-size: 2.2rem !important;
	}

	.fs33-23 {
		font-size: 2.3rem !important;
	}

	.fs33-24 {
		font-size: 2.4rem !important;
	}

	.fs33-25 {
		font-size: 2.5rem !important;
	}

	.fs33-26 {
		font-size: 2.6rem !important;
	}

	.fs33-27 {
		font-size: 2.7rem !important;
	}

	.fs33-28 {
		font-size: 2.8rem !important;
	}

	.fs33-29 {
		font-size: 2.9rem !important;
	}

	.fs33-30 {
		font-size: 3rem !important;
	}

	.fs33-31 {
		font-size: 3.1rem !important;
	}

	.fs33-32 {
		font-size: 3.2rem !important;
	}

	.fs33-33 {
		font-size: 3.3rem !important;
	}

	.fs34-10 {
		font-size: 1rem !important;
	}

	.fs34-11 {
		font-size: 1.1rem !important;
	}

	.fs34-12 {
		font-size: 1.2rem !important;
	}

	.fs34-13 {
		font-size: 1.3rem !important;
	}

	.fs34-14 {
		font-size: 1.4rem !important;
	}

	.fs34-15 {
		font-size: 1.5rem !important;
	}

	.fs34-16 {
		font-size: 1.6rem !important;
	}

	.fs34-17 {
		font-size: 1.7rem !important;
	}

	.fs34-18 {
		font-size: 1.8rem !important;
	}

	.fs34-19 {
		font-size: 1.9rem !important;
	}

	.fs34-20 {
		font-size: 2rem !important;
	}

	.fs34-21 {
		font-size: 2.1rem !important;
	}

	.fs34-22 {
		font-size: 2.2rem !important;
	}

	.fs34-23 {
		font-size: 2.3rem !important;
	}

	.fs34-24 {
		font-size: 2.4rem !important;
	}

	.fs34-25 {
		font-size: 2.5rem !important;
	}

	.fs34-26 {
		font-size: 2.6rem !important;
	}

	.fs34-27 {
		font-size: 2.7rem !important;
	}

	.fs34-28 {
		font-size: 2.8rem !important;
	}

	.fs34-29 {
		font-size: 2.9rem !important;
	}

	.fs34-30 {
		font-size: 3rem !important;
	}

	.fs34-31 {
		font-size: 3.1rem !important;
	}

	.fs34-32 {
		font-size: 3.2rem !important;
	}

	.fs34-33 {
		font-size: 3.3rem !important;
	}

	.fs34-34 {
		font-size: 3.4rem !important;
	}

	.fs35-10 {
		font-size: 1rem !important;
	}

	.fs35-11 {
		font-size: 1.1rem !important;
	}

	.fs35-12 {
		font-size: 1.2rem !important;
	}

	.fs35-13 {
		font-size: 1.3rem !important;
	}

	.fs35-14 {
		font-size: 1.4rem !important;
	}

	.fs35-15 {
		font-size: 1.5rem !important;
	}

	.fs35-16 {
		font-size: 1.6rem !important;
	}

	.fs35-17 {
		font-size: 1.7rem !important;
	}

	.fs35-18 {
		font-size: 1.8rem !important;
	}

	.fs35-19 {
		font-size: 1.9rem !important;
	}

	.fs35-20 {
		font-size: 2rem !important;
	}

	.fs35-21 {
		font-size: 2.1rem !important;
	}

	.fs35-22 {
		font-size: 2.2rem !important;
	}

	.fs35-23 {
		font-size: 2.3rem !important;
	}

	.fs35-24 {
		font-size: 2.4rem !important;
	}

	.fs35-25 {
		font-size: 2.5rem !important;
	}

	.fs35-26 {
		font-size: 2.6rem !important;
	}

	.fs35-27 {
		font-size: 2.7rem !important;
	}

	.fs35-28 {
		font-size: 2.8rem !important;
	}

	.fs35-29 {
		font-size: 2.9rem !important;
	}

	.fs35-30 {
		font-size: 3rem !important;
	}

	.fs35-31 {
		font-size: 3.1rem !important;
	}

	.fs35-32 {
		font-size: 3.2rem !important;
	}

	.fs35-33 {
		font-size: 3.3rem !important;
	}

	.fs35-34 {
		font-size: 3.4rem !important;
	}

	.fs35-35 {
		font-size: 3.5rem !important;
	}

	.lh10-10 {
		line-height: 1 !important;
	}

	.lh11-10 {
		line-height: 1 !important;
	}

	.lh11-11 {
		line-height: 1.1 !important;
	}

	.lh12-10 {
		line-height: 1 !important;
	}

	.lh12-11 {
		line-height: 1.1 !important;
	}

	.lh12-12 {
		line-height: 1.2 !important;
	}

	.lh13-10 {
		line-height: 1 !important;
	}

	.lh13-11 {
		line-height: 1.1 !important;
	}

	.lh13-12 {
		line-height: 1.2 !important;
	}

	.lh13-13 {
		line-height: 1.3 !important;
	}

	.lh14-10 {
		line-height: 1 !important;
	}

	.lh14-11 {
		line-height: 1.1 !important;
	}

	.lh14-12 {
		line-height: 1.2 !important;
	}

	.lh14-13 {
		line-height: 1.3 !important;
	}

	.lh14-14 {
		line-height: 1.4 !important;
	}

	.lh15-10 {
		line-height: 1 !important;
	}

	.lh15-11 {
		line-height: 1.1 !important;
	}

	.lh15-12 {
		line-height: 1.2 !important;
	}

	.lh15-13 {
		line-height: 1.3 !important;
	}

	.lh15-14 {
		line-height: 1.4 !important;
	}

	.lh15-15 {
		line-height: 1.5 !important;
	}

	.lh16-10 {
		line-height: 1 !important;
	}

	.lh16-11 {
		line-height: 1.1 !important;
	}

	.lh16-12 {
		line-height: 1.2 !important;
	}

	.lh16-13 {
		line-height: 1.3 !important;
	}

	.lh16-14 {
		line-height: 1.4 !important;
	}

	.lh16-15 {
		line-height: 1.5 !important;
	}

	.lh16-16 {
		line-height: 1.6 !important;
	}

	.lh17-10 {
		line-height: 1 !important;
	}

	.lh17-11 {
		line-height: 1.1 !important;
	}

	.lh17-12 {
		line-height: 1.2 !important;
	}

	.lh17-13 {
		line-height: 1.3 !important;
	}

	.lh17-14 {
		line-height: 1.4 !important;
	}

	.lh17-15 {
		line-height: 1.5 !important;
	}

	.lh17-16 {
		line-height: 1.6 !important;
	}

	.lh17-17 {
		line-height: 1.7 !important;
	}

	.lh18-10 {
		line-height: 1 !important;
	}

	.lh18-11 {
		line-height: 1.1 !important;
	}

	.lh18-12 {
		line-height: 1.2 !important;
	}

	.lh18-13 {
		line-height: 1.3 !important;
	}

	.lh18-14 {
		line-height: 1.4 !important;
	}

	.lh18-15 {
		line-height: 1.5 !important;
	}

	.lh18-16 {
		line-height: 1.6 !important;
	}

	.lh18-17 {
		line-height: 1.7 !important;
	}

	.lh18-18 {
		line-height: 1.8 !important;
	}

	.lh19-10 {
		line-height: 1 !important;
	}

	.lh19-11 {
		line-height: 1.1 !important;
	}

	.lh19-12 {
		line-height: 1.2 !important;
	}

	.lh19-13 {
		line-height: 1.3 !important;
	}

	.lh19-14 {
		line-height: 1.4 !important;
	}

	.lh19-15 {
		line-height: 1.5 !important;
	}

	.lh19-16 {
		line-height: 1.6 !important;
	}

	.lh19-17 {
		line-height: 1.7 !important;
	}

	.lh19-18 {
		line-height: 1.8 !important;
	}

	.lh19-19 {
		line-height: 1.9 !important;
	}

	.lh20-10 {
		line-height: 1 !important;
	}

	.lh20-11 {
		line-height: 1.1 !important;
	}

	.lh20-12 {
		line-height: 1.2 !important;
	}

	.lh20-13 {
		line-height: 1.3 !important;
	}

	.lh20-14 {
		line-height: 1.4 !important;
	}

	.lh20-15 {
		line-height: 1.5 !important;
	}

	.lh20-16 {
		line-height: 1.6 !important;
	}

	.lh20-17 {
		line-height: 1.7 !important;
	}

	.lh20-18 {
		line-height: 1.8 !important;
	}

	.lh20-19 {
		line-height: 1.9 !important;
	}

	.lh20-20 {
		line-height: 2 !important;
	}

	h2,
	.title,
	.title-s,
	.title-m {
		font-size: 1.8rem;
		letter-spacing: 2px;
	}

	h2.line-img,
	.title.line-img,
	.title-s.line-img,
	.title-m.line-img {
		padding: 0 0 3px;
	}

	h2.lh-h,
	.title.lh-h,
	.title-s.lh-h,
	.title-m.lh-h {
		letter-spacing: 1px;
		line-height: 1.5;
	}

	h2.lh-h.line-img,
	.title.lh-h.line-img,
	.title-s.lh-h.line-img,
	.title-m.lh-h.line-img {
		padding: 0;
	}

	.title-s {
		font-size: 1.5rem;
	}

	.title-m {
		font-size: 1.6rem;
	}

	h3.title {
		margin-top: 20px;
	}

	h1.u-line,
	h1.u-line-b,
	h1.u-line-w,
	h1.u-line-w-l,
	.hero-wrap .title-wrap h1,
	h1.u-line-br,
	h1.u-line-gr,
	h2.u-line,
	h2.u-line-b,
	h2.u-line-w,
	h2.u-line-w-l,
	h2.u-line-br,
	h2.u-line-gr,
	h3.u-line,
	h3.u-line-b,
	h3.u-line-w,
	h3.u-line-w-l,
	h3.u-line-br,
	h3.u-line-gr,
	h4.u-line,
	h4.u-line-b,
	h4.u-line-w,
	h4.u-line-w-l,
	h4.u-line-br,
	h4.u-line-gr,
	h5.u-line,
	h5.u-line-b,
	h5.u-line-w,
	h5.u-line-w-l,
	h5.u-line-br,
	h5.u-line-gr {
		text-align: center;
		line-height: 1.75;
	}

	.head-point {
		width: 28.4615384615%;
	}

	.head-info {
		width: 41.3846153846%;
	}

	.head-step {
		width: 28.3076923077%;
	}

	.head-step+p {
		margin: 10px 0 0px;
		font-size: 2rem;
	}

	section {
		font-size: 1.3rem;
	}

	.btn-link {
		width: 80%;
		margin-top: 15px;
	}

	.btn-text {
		width: 80%;
		height: 59px;
		font-size: 1.4rem;
		margin-top: 15px;
		border-radius: 6px;
	}

	.btn-text.narrow {
		width: 47.6923076923%;
	}

	.btn-text.high {
		height: 75px;
	}

	.sec-bottom .btn-link,
	.sec-bottom .btn-text {
		margin-top: 15px;
	}

	.btn-top {
		bottom: 30px;
		background-color: #FFF;
		border-radius: 50%;
		width: 24.6153846154%;
		height: auto;
		max-width: 80px;
	}

	.anim-icon {
		animation-name: anim-icon-sp;
	}

	.anim-icon.weak {
		animation-name: anim-icon-s-sp;
	}

	.anim-icon-r {
		animation-name: anim-icon-r-sp;
	}

	.anim-icon-r.weak {
		animation-name: anim-icon-s-r-sp;
	}

	.bg-icon {
		transform: scale(0.1);
	}

	.bg-icon.ic-01 {
		width: 22.4%;
	}

	.bg-icon.ic-02 {
		width: 22.1333333333%;
	}

	.bg-icon.ic-03 {
		width: 17.3333333333%;
	}

	.bg-icon.ic-04 {
		width: 17.8666666667%;
	}

	.bg-icon.ic-05 {
		width: 18.5333333333%;
	}

	.bg-icon.ic-06 {
		width: 14.9333333333%;
	}

	table th,
	table td {
		padding: 5px;
	}

	img.b-shadow {
		box-shadow: 0px 0px 4px 1px rgba(122, 122, 122, 0.5);
	}

	.anim-liq-v {
		animation-fill-mode: both;
		animation-iteration-count: infinite;
		animation-duration: 15s;
		transform-origin: 50% 50% 0;
		animation-name: anim-liq-v;
	}

	.board-title-wrap {
		background: none;
	}

	.board-title-wrap img {
		width: 100%;
		height: auto;
		min-height: initial;
		min-height: auto;
	}

	.board-title-wrap-02 {
		background: none;
		padding-top: 30px;
	}

	.board-title-wrap-02 img {
		width: 100%;
		height: auto;
		min-height: initial;
		min-height: auto;
	}

	.hero-wrap {
		padding: 0 15px;
	}

	.hero-wrap .title-wrap {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 95%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.hero-wrap .title-wrap .img-point {
		width: 25.5555555556%;
	}

	.hero-wrap .title-wrap h1 {
		font-size: 2.5rem;
		position: relative;
		top: 0;
	}

	.hero-wrap.prod-hero .title-wrap h1 {
		font-size: 2.6rem;
		letter-spacing: -0.2rem;
	}

	.hero-wrap.prod-hero .title-wrap h1 small {
		font-size: 2.2rem;
		letter-spacing: 0rem;
	}

	.hero-wrap.prod-hero .title-wrap .lead {
		font-size: 1.5rem;
	}

	.modal-inner {
		width: 90%;
	}

	.modal-inner .close-wrap {
		width: 100%;
	}

	.modal-inner .movie-wrap iframe {
		width: 100%;
		height: 100%;
	}


	#menu.no-scroll {
		padding-top: 45px;
	}

	.step-button-wrapper {
		top: 75px;
		width: 10.6666666667vw;
		height: 45.3333333333vw;
	}

	.step-button-wrapper.no-scroll {
		top: 149px;
	}


	.box-dash .text-wrap .circle,
	.box-dash-thin .text-wrap .circle {
		width: 46px;
		height: 46px;
		line-height: 46px;
		font-size: 1.6rem;
	}

	.box-dash .text-wrap .circle+.text,
	.box-dash-thin .text-wrap .circle+.text {
		padding-left: 56px;
		font-size: 1.2rem;
	}

	.box-dash-thin {
		border-radius: 6px;
	}

	.box-dash-thin-corner-t,
	.box-dash-thin-corner-b {
		height: 6px;
	}

	.box-dash-thin .numtext-wrap {
		align-items: flex-start;
	}

	.box-dash-thin .numtext-wrap .num-img {
		width: 25px;
		height: 25px;
	}

	.fukidashi {
		padding: 7px 17px;
		border-radius: 8px;
		font-size: 1.3rem;
	}

	.fukidashi:after {
		position: absolute;
		top: auto;
		right: auto;
		bottom: -17px;
		left: 12%;
		width: 25px;
		height: 17px;
		margin: auto;
		content: "";
		background-color: transparent;
		background: url("../img/common/fukidashi.png") center center no-repeat;
		background-size: 25px auto;
	}

	.lang-en .text-wrap .circle,
	.lang-cn .text-wrap .circle,
	.lang-tw .text-wrap .circle,
	.lang-kr .text-wrap .circle,
	.lang-pt .text-wrap .circle,
	.lang-vn .text-wrap .circle,
	.lang-th .text-wrap .circle {
		width: auto;
		height: auto;
		line-height: 1;
		font-size: 3.4666666667vw;
		border-radius: 0.6666666667vw;
		padding: 1.8666666667vw 0;
	}

	.lang-en .text-wrap .circle+.text,
	.lang-cn .text-wrap .circle+.text,
	.lang-tw .text-wrap .circle+.text,
	.lang-kr .text-wrap .circle+.text,
	.lang-pt .text-wrap .circle+.text,
	.lang-vn .text-wrap .circle+.text,
	.lang-th .text-wrap .circle+.text {
		margin: 0.9333333333vw 0 0 0;
		padding-left: 0;
		font-size: 3.2vw;
		line-height: 5.8666666667vw;
	}

	.class-product-info .sec-inner.sec-inner-01,
	.page-product .sec-01 .sec-inner.sec-inner-01 {
		padding-bottom: 30px;
	}

	.class-product-info .sec-inner.wide,
	.page-product .sec-01 .sec-inner.wide {
		padding-top: 45px;
		padding-bottom: 45px;
	}

	.class-product-info .sec-inner.wide:nth-last-of-type(1),
	.page-product .sec-01 .sec-inner.wide:nth-last-of-type(1) {
		padding-bottom: 60px;
	}

	.class-product-info h4+p,
	.page-product .sec-01 h4+p {
		width: 100%;
		padding-left: 25px;
		padding-right: 25px;
	}

	.class-product-info .swiper-slide,
	.page-product .sec-01 .swiper-slide {
		transition: all 0.75s ease 0s;
		opacity: 0.5;
		padding-left: 0;
		padding-right: 0;
	}

	.class-product-info .swiper-slide .slide-inner p,
	.page-product .sec-01 .swiper-slide .slide-inner p,
	.class-product-info .swiper-slide .slide-inner h5,
	.page-product .sec-01 .swiper-slide .slide-inner h5 {
		transition: all 0.75s ease 0s;
		opacity: 0;
	}

	.class-product-info .swiper-slide-active,
	.page-product .sec-01 .swiper-slide-active {
		opacity: 1;
	}

	.class-product-info .swiper-slide-active .slide-inner p,
	.page-product .sec-01 .swiper-slide-active .slide-inner p,
	.class-product-info .swiper-slide-active .slide-inner h5,
	.page-product .sec-01 .swiper-slide-active .slide-inner h5 {
		opacity: 1;
	}

	.class-product-info h4 .title-01,
	.page-product .sec-01 h4 .title-01 {
		width: 51.6%;
	}

	.class-product-info #slide-02,
	.page-product .sec-01 #slide-02 {
		width: auto;
	}

	.class-product-info #slide-02 .swiper-slide.slide-03 .slide-inner,
	.page-product .sec-01 #slide-02 .swiper-slide.slide-03 .slide-inner {
		padding-top: 7.6923076923%;
	}

	.class-product-info #slide-02-2,
	.page-product .sec-01 #slide-02-2 {
		width: auto;
	}

	.class-product-info .img-01-01,
	.page-product .sec-01 .img-01-01 {
		width: 113.4615384615%;
		height: auto;
		margin-left: -8%;
	}

	.class-product-info .img-01-02,
	.page-product .sec-01 .img-01-02 {
		width: 64.6153846154%;
		height: auto;
	}

	.class-product-info .img-01-03,
	.page-product .sec-01 .img-01-03 {
		width: 52.6923076923%;
		height: auto;
	}

	.class-product-info .img-01-04,
	.page-product .sec-01 .img-01-04 {
		width: 64.6153846154%;
		height: auto;
	}

	.class-product-info #slide-04,
	.page-product .sec-01 #slide-04 {
		width: auto;
	}

	.class-product-info h4 .title-02,
	.page-product .sec-01 h4 .title-02 {
		width: 48.8%;
	}

	.class-product-info .img-02,
	.page-product .sec-01 .img-02 {
		width: 47.4666666667%;
		margin-top: 15px;
	}

	.class-product-info .img-02-02,
	.page-product .sec-01 .img-02-02 {
		width: 72%;
		margin-top: 15px;
	}

	.class-product-info h4 .title-03,
	.page-product .sec-01 h4 .title-03 {
		width: 49.4666666667%;
	}

	.class-product-info #slide-03 .swiper-slide.slide-02 .slide-inner,
	.page-product .sec-01 #slide-03 .swiper-slide.slide-02 .slide-inner {
		padding-top: 17.3076923077%;
	}

	.class-product-info #slide-03,
	.page-product .sec-01 #slide-03 {
		width: 100%;
	}

	.class-product-info .img-03-01,
	.page-product .sec-01 .img-03-01 {
		width: 65.3846153846%;
	}

	.class-product-info .img-03-02,
	.page-product .sec-01 .img-03-02 {
		width: 100%;
	}


	.page-science .sec-01 .liq-01 {
		top: 40px;
		left: -50px;
		width: 297px;
	}

	.page-science .sec-01 .liq-02 {
		right: -100px;
		bottom: 60px;
		width: 221px;
	}

	.page-science .sec-01 .ic-01 {
		display: block;
		top: -7.5%;
		left: auto;
		right: 35px;
		width: 22.4%;
	}

	.page-science .sec-01 .ic-05 {
		display: none;
	}

	.page-science .sec-01 .sec-inner {
		padding-bottom: 50px;
	}

	.page-science .sec-02 .liq-01 {
		top: 60px;
		right: -30px;
		width: 195.5px;
	}

	.page-science .sec-02 .liq-02 {
		top: 45%;
		left: -50px;
		width: 265.5px;
	}

	.page-science .sec-02 .liq-03 {
		right: -200px;
		width: 301px;
	}

	.page-science .sec-02 .ic-02 {
		top: -20px;
		left: 40px;
		width: 18.1333333333%;
	}

	.page-science .sec-02 .ic-03 {
		bottom: 40%;
		right: 20px;
		width: 14.5333333333%;
	}

	.page-science .sec-02 .ic-06 {
		display: none;
	}

	.page-science .sec-02 .sec-inner {
		padding-bottom: 50px;
	}

	.page-science .sec-02 .head-feature {
		width: 28.6153846154%;
	}

	.page-science .sec-02 .head-img {
		width: 11.6923076923%;
	}

	.page-science .sec-02 .sec-img-01 {
		width: 84.3076923077%;
	}

	.page-science .sec-02 .small {
		width: 84.3076923077%;
	}

	.page-science .sec-03 .liq-01 {
		left: -50px;
		width: 155.5px;
	}

	.page-science .sec-03 .ic-04 {
		top: -30px;
		left: auto;
		right: 20px;
		width: 15.4666666667%;
	}

	.page-nutrition .sec-inner {
		padding-bottom: 50px;
	}

	.page-nutrition .sec-01 .liq-01 {
		top: 60px;
		right: -100px;
		width: 221px;
	}

	.page-nutrition .sec-01 .ic-01 {
		display: block;
		bottom: -7.5%;
		left: auto;
		right: 35px;
		width: 16%;
	}

	.page-nutrition .sec-01 .btn-wrap {
		margin-top: 20px;
	}

	.page-nutrition .sec-02 .liq-01 {
		top: 75px;
		right: -100px;
		width: 265.5px;
	}

	.page-nutrition .sec-02 .liq-02 {
		bottom: 150px;
		left: -100px;
		width: 265px;
	}

	.page-nutrition .sec-02 .ic-02 {
		display: none;
	}

	.page-nutrition .sec-02 .ic-03 {
		display: none;
	}

	.page-nutrition .sec-02 .ic-04 {
		bottom: -40px;
		right: 30px;
		width: 25.7333333333%;
	}

	.page-nutrition .sec-03 .liq-01 {
		top: 130px;
		right: -100px;
		width: 195.5px;
	}

	.page-nutrition .sec-03 .liq-02 {
		display: none;
	}

	.page-nutrition .sec-03 .ic-05 {
		display: none;
	}

	.page-nutrition .sec-03 .ic-06 {
		right: 34px;
		width: 22.2666666667%;
	}

	.page-nutrition .sec-04 .liq-01 {
		display: none;
	}

	.page-nutrition .sec-04 .ic-07 {
		bottom: -40px;
		left: 40px;
		width: 17.3333333333%;
	}

	.page-nutrition .sec-06 .liq-01 {
		display: none;
	}

	.page-nutrition .sec-06 .liq-02 {
		display: none;
	}

	.page-nutrition .sec-06 .ic-07 {
		bottom: -40px;
		left: 40px;
		width: 17.3333333333%;
	}

	.page-nutrition .sec-07 .liq-01 {
		display: none;
	}

	.page-nutrition .sec-07 .ic-03 {
		bottom: -40px;
		left: 40px;
		width: 17.3333333333%;
	}

	.page-nutrition .sec-08 .liq-01 {
		display: none;
	}

	.page-nutrition .sec-08 .liq-02 {
		display: none;
	}

	.page-nutrition .sec-08 .ic-07 {
		bottom: -40px;
		left: 40px;
		width: 17.3333333333%;
	}

	.page-rakurakucube-index .sec-inner {
		padding-bottom: 50px;
	}

	.page-rakurakucube-index .sec-inner .sec-img {
		margin-top: 10px;
		border-radius: 12px;
	}

	.page-rakurakucube-index .sec-inner .btn-movie {
		margin-top: 10px;
		border-radius: 12px;
		box-shadow: 0px 0px 4px 1px rgba(122, 122, 122, 0.5);
	}

	.page-rakurakucube-index .sec-inner .btn-movie .sec-img {
		margin-top: 0;
	}

	.page-rakurakucube-index .sec-00 .hero-wrap .img-01 {
		right: auto;
		left: 27px;
		bottom: -26.6666666667vw;
		width: 88.4%;
	}

	.page-rakurakucube-index .sec-00 {
		padding-bottom: 27.6923076923%;
	}

	.page-rakurakucube-index .sec-01 .liq-01 {
		top: 20px;
		right: -50px;
		width: 184px;
	}

	.page-rakurakucube-index .sec-01 .ic-01 {
		right: 30px;
		width: 22.2666666667%;
	}

	.page-rakurakucube-index .sec-02 .liq-01 {
		top: 250px;
		left: -100px;
		width: 297px;
	}

	.page-rakurakucube-index .sec-02 .liq-02 {
		top: 45%;
		right: -20px;
		width: 162.5px;
	}

	.page-rakurakucube-index .sec-02 .liq-03 {
		bottom: 250px;
		left: -100px;
		width: 279.5px;
	}

	.page-rakurakucube-index .sec-02 .ic-02 {
		top: 50%;
		left: 20px;
		width: 18.5333333333%;
	}

	.page-rakurakucube-index .sec-02 .ic-03 {
		display: none;
	}

	.page-rakurakucube-index .sec-02 .ic-04 {
		top: 75%;
		left: auto;
		right: 20px;
		width: 17.0666666667%;
	}

	.page-rakurakucube-index .sec-02 .ic-05 {
		display: none;
	}

	.page-rakurakucube-index .sec-03 .liq-01 {
		top: 40%;
		right: 10px;
		width: 221px;
	}

	.page-rakurakucube-index .sec-03 .ic-06 {
		top: -30px;
		left: 30px;
		width: 18.6666666667%;
	}

	.page-rakurakucube-usage .btn-movie {
		margin-top: 15px;
	}

	.page-rakurakucube-usage .sec-01 .liq-01 {
		top: 0px;
		left: -50px;
		width: 158px;
	}

	.page-rakurakucube-usage .sec-01 .liq-02 {
		right: -50px;
		width: 279.5px;
	}

	.page-rakurakucube-usage .sec-01 .ic-01 {
		display: none;
	}

	.page-rakurakucube-usage .sec-01 .ic-02 {
		top: 48%;
		right: 25px;
		width: 18.5333333333%;
	}

	.page-rakurakucube-usage .sec-01 .sec-inner {
		padding-bottom: 40px;
	}

	.page-rakurakucube-usage .sec-01 .swiper-btn-wrap {
		top: 30%;
	}

	.page-rakurakucube-usage .sec-01 .box-dash-inner .text-wrap {
		margin-top: 10px;
	}

	.page-rakurakucube-usage .sec-02 .liq-01 {
		right: -80px;
		width: 160px;
	}

	.page-rakurakucube-usage .sec-02 .ic-03 {
		top: -20px;
		right: auto;
		left: 30px;
		width: 17.2%;
	}

	.page-rakurakucube-usage .sec-03 .liq-01 {
		left: -100px;
		width: 265.5px;
	}

	.page-rakurakucube-usage .sec-03 .ic-04 {
		top: -20px;
		left: auto;
		right: 20px;
		width: 25.7333333333%;
	}

	.page-rakurakucube-usage .sec-03 .sec-inner {
		padding-top: 60px;
	}

	.page-product .sec-01 .liq-01 {
		top: 150px;
		left: -100px;
		width: 297px;
	}

	.page-product .sec-01 .liq-02 {
		top: 22%;
		right: -100px;
		width: 195.5px;
	}

	.page-product .sec-01 .liq-03 {
		top: 35%;
		left: -50px;
		width: 221px;
	}

	.page-product .sec-01 .liq-04 {
		top: 48%;
		right: 30px;
		width: 81.5px;
	}

	.page-product .sec-01 .liq-04-02 {
		top: 57%;
		right: -50px;
		width: 232px;
	}

	.page-product .sec-01 .liq-05 {
		top: auto;
		bottom: 20%;
		left: -50px;
		width: 279.5px;
	}

	.page-product .sec-01 .liq-06 {
		bottom: 5%;
		right: -30px;
		width: 195.5px;
	}

	.page-product .sec-01 .ic-01 {
		top: 12%;
		right: auto;
		left: 20px;
		width: 15.4666666667%;
	}

	.page-product .sec-01 .ic-02 {
		display: block;
		top: 35%;
		left: auto;
		right: 30px;
		width: 17.7333333333%;
	}

	.page-product .sec-01 .ic-03 {
		top: 48%;
		left: 20px;
		width: 17.2%;
	}

	.page-product .sec-01 .ic-04 {
		top: auto;
		bottom: -50px;
		left: 20px;
		width: 25.7333333333%;
	}

	.page-product .sec-01 .header-line {
		background-size: auto 6px;
	}

	.page-product .sec-01 .sec-inner-01 {
		padding-top: 25px;
	}

	.page-product .sec-01 .head-img {
		width: 41.5384615385%;
	}

	.page-product .sec-01 #slide-02 .swiper-wrapper,
	.page-product .sec-01 #slide-02-2 .swiper-wrapper,
	.page-product .sec-01 #slide-03 .swiper-wrapper,
	.page-product .sec-01 #slide-04 .swiper-wrapper {
		display: block;
	}

	.page-product .sec-01 #slide-02 .swiper-slide,
	.page-product .sec-01 #slide-02-2 .swiper-slide,
	.page-product .sec-01 #slide-03 .swiper-slide,
	.page-product .sec-01 #slide-04 .swiper-slide {
		width: 80%;
		opacity: 1;
		padding-left: 0;
		padding-right: 0;
		margin-left: auto;
		margin-right: auto;
	}

	.page-product .sec-01 #slide-02 .swiper-slide .slide-inner p,
	.page-product .sec-01 #slide-02 .swiper-slide .slide-inner h5,
	.page-product .sec-01 #slide-02-2 .swiper-slide .slide-inner p,
	.page-product .sec-01 #slide-02-2 .swiper-slide .slide-inner h5,
	.page-product .sec-01 #slide-03 .swiper-slide .slide-inner p,
	.page-product .sec-01 #slide-03 .swiper-slide .slide-inner h5,
	.page-product .sec-01 #slide-04 .swiper-slide .slide-inner p,
	.page-product .sec-01 #slide-04 .swiper-slide .slide-inner h5 {
		opacity: 1;
	}

	.page-product .sec-01 #slide-02-2 .swiper-slide:nth-of-type(2) {
		margin-top: 40px;
	}

	.page-product .sec-01 #slide-02-2 .swiper-slide:nth-of-type(2) .slide-inner {
		padding-top: 0;
	}

	.page-product .sec-01 #slide-03 .swiper-slide:nth-of-type(2) {
		margin-top: 40px;
	}

	.page-product .sec-01 #slide-03 .swiper-slide:nth-of-type(2) .slide-inner {
		padding-top: 0;
	}

	.page-product .sec-01 .consul {
		padding-top: 60px;
		padding-bottom: 20%;
	}

	.page-mixed-feeding .sec-01 .liq-01 {
		top: 55px;
		left: -20px;
		width: 155px;
	}

	.page-mixed-feeding .sec-01 .liq-02 {
		top: 210px;
		right: -100px;
		width: 265.5px;
	}

	.page-mixed-feeding .sec-01 .liq-03 {
		left: -20px;
		width: 221px;
	}

	.page-mixed-feeding .sec-01 .liq-04 {
		top: 220px;
		right: -200px;
		width: 265.5px;
	}

	.page-mixed-feeding .sec-01 .liq-05 {
		left: -20px;
		width: 221px;
	}

	.page-mixed-feeding .sec-01 .liq-06 {
		top: 220px;
		right: -200px;
		width: 265.5px;
	}

	.page-mixed-feeding .sec-01 .ic-01 {
		display: none;
	}

	.page-mixed-feeding .sec-01 .sec-inner.narrow {
		padding-bottom: 20px;
	}

	.page-mixed-feeding .sec-01 .num-title .num-img {
		width: 31px;
		margin-right: 0.5rem;
		vertical-align: -9px;
	}

	.page-mixed-feeding .sec-02 .ic-02 {
		right: auto;
		bottom: -80px;
		left: 30px;
		width: 25.7333333333%;
	}

	.page-mixed-feeding .sec-02 .consul {
		padding-top: 60px;
		padding-bottom: 20%;
	}

	.page-powder-index .sec-inner {
		padding-bottom: 50px;
	}

	.page-powder-index .sec-inner .sec-img {
		margin-top: 10px;
		border-radius: 18px;
	}

	.page-powder-index .sec-00 .hero-wrap .title-wrap {
		padding-top: 9.2307692308%;
	}

	.page-powder-index .sec-00 .hero-wrap .title-wrap h1 {
		font-size: 3rem;
		top: 0;
	}

	.page-powder-index .sec-00 .hero-wrap .title-wrap .lead {
		top: 0;
	}

	.page-powder-index .sec-00 .hero-wrap .img-01 {
		left: 30px;
		right: auto;
		bottom: -17.4285714286%;
		width: 32.5333333333%;
	}

	.page-powder-index .sec-00 {
		padding-bottom: 20%;
	}

	.page-powder-index .sec-01 .liq-01 {
		top: 0;
		right: -70px;
		width: 184px;
	}

	.page-powder-index .sec-01 .sec-inner {
		padding-top: 0;
	}

	.page-powder-index .sec-02 .liq-01 {
		top: 15%;
		width: 297px;
	}

	.page-powder-index .sec-02 .liq-02 {
		top: 53%;
		right: auto;
		left: 60px;
		width: 162.5px;
	}

	.page-powder-index .sec-02 .liq-03 {
		display: none;
	}

	.page-powder-index .sec-02 .ic-01 {
		display: none;
	}

	.page-powder-index .sec-02 .ic-02 {
		display: none;
	}

	.page-powder-index .sec-02 .ic-03 {
		display: none;
	}

	.page-powder-index .sec-02 .ic-04 {
		display: none;
	}

	.page-powder-index .sec-02 .ic-05 {
		display: none;
	}

	.page-powder-usage .sec-01 .liq-01 {
		top: 100px;
		right: auto;
		left: 10px;
		width: 158px;
	}

	.page-powder-usage .sec-01 .liq-02 {
		top: 60%;
		left: auto;
		right: -50px;
		width: 279.5px;
	}

	.page-powder-usage .sec-01 .ic-01 {
		top: auto;
		bottom: -30px;
		left: 5px;
		width: 17.2%;
	}

	.page-powder-usage .sec-01 .ic-02 {
		display: none;
	}

	.page-powder-usage .sec-01 .ic-03 {
		display: block;
		top: 37%;
		left: auto;
		right: 15px;
		width: 25.7333333333%;
	}

	.page-powder-usage .sec-01 .box-dash-inner .text-wrap {
		margin-top: 10px;
	}

	.page-powder-usage .sec-01 .swiper-btn-wrap {
		top: 27%;
	}

	.page-powder-usage .sec-02 .liq-01 {
		top: 0px;
		left: -50px;
		width: 158px;
	}

	.page-powder-usage .sec-02 .ic-03 {
		display: none;
	}

}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm {
		display: block !important;
	}

	table.visible-sm {
		display: table !important;
	}

	tr.visible-sm {
		display: table-row !important;
	}

	th.visible-sm,
	td.visible-sm {
		display: table-cell !important;
	}

	.visible-sm-block {
		display: block !important;
	}

	.visible-sm-inline {
		display: inline !important;
	}

	.visible-sm-inline-block {
		display: inline-block !important;
	}

	.hidden-sm {
		display: none !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md {
		display: block !important;
	}

	table.visible-md {
		display: table !important;
	}

	tr.visible-md {
		display: table-row !important;
	}

	th.visible-md,
	td.visible-md {
		display: table-cell !important;
	}

	.visible-md-block {
		display: block !important;
	}

	.visible-md-inline {
		display: inline !important;
	}

	.visible-md-inline-block {
		display: inline-block !important;
	}

	.hidden-md {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg {
		display: block !important;
	}

	table.visible-lg {
		display: table !important;
	}

	tr.visible-lg {
		display: table-row !important;
	}

	th.visible-lg,
	td.visible-lg {
		display: table-cell !important;
	}

	.visible-lg-block {
		display: block !important;
	}

	.visible-lg-inline {
		display: inline !important;
	}

	.visible-lg-inline-block {
		display: inline-block !important;
	}

	.hidden-lg {
		display: none !important;
	}
}

@media print {
	.visible-print {
		display: block !important;
	}

	table.visible-print {
		display: table !important;
	}

	tr.visible-print {
		display: table-row !important;
	}

	th.visible-print,
	td.visible-print {
		display: table-cell !important;
	}

	.visible-print-block {
		display: block !important;
	}

	.visible-print-inline {
		display: inline !important;
	}

	.visible-print-inline-block {
		display: inline-block !important;
	}

	.hidden-print {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {

	img.pc,
	br.pc {
		display: none;
	}

	.wave-sep {
		height: 3.8666666667vw;
		background-size: 100vw 3.8666666667vw;
		animation: waveSepSP 50s linear infinite;
	}

	.wave-sep.w90 {
		background-image: url("../img/common/wav_90_sp.png");
	}

	.wave-sep.w91 {
		background-image: url("../img/common/wav_91_sp.png");
	}

	.btn-text {
		padding-right: 8vw;
		padding-left: 1.3333333333vw;
	}

	.btn-text.blank {
		padding-right: 10.6666666667vw;
	}

	.btn-text.btn-map {
		border-width: 0.5333333333vw;
		padding: 0;
		column-gap: 2.4vw;
	}

	.btn-text.btn-map:before {
		display: block;
		padding: 12.8vw 0 0 0;
		width: 14.9333333333vw;
		height: 0;
		overflow: hidden;
		background: url("../img/common/icon_mapbutton.svg") no-repeat;
		background-size: 14.9333333333vw 12.8vw;
		text-indent: -5000px;
	}

	.btn-text.btn-map:after {
		display: block;
		padding: 3.2vw 0 0 0;
		width: 3.2vw;
		height: 0;
		overflow: hidden;
		background: url("../img/common/icon_blank_g.svg") no-repeat;
		background-size: 3.2vw 3.2vw;
		text-indent: -5000px;
	}

	.store-button-wrapper {
		right: 3.3333333333vw;
		bottom: 22vw;
		width: 14.6666666667vw;
		height: 14.6666666667vw;
		box-shadow: 0 0 1.3333333333vw rgba(51, 51, 51, 0.25);
	}

	.store-button-wrapper.is_bottom {
		position: absolute;
		bottom: 22vw;
	}

	.class-product-info .img-02-02-01,
	.page-product .sec-01 .img-02-02-01 {
		width: 35.0277227723vw;
		height: 48.1333333333vw;
		margin-top: 2.8vw;
	}

	.class-product-info .img-02-02-02,
	.page-product .sec-01 .img-02-02-02 {
		width: 82.4vw;
		height: auto;
		margin-top: 6.4vw;
	}

	.class-product-info .img-02-02-03,
	.page-product .sec-01 .img-02-02-03 {
		margin-top: 10.9333333333vw;
	}

	.class-product-info .img-02-02-04,
	.page-product .sec-01 .img-02-02-04 {
		width: 60.8386768448vw;
		height: 32.9333333333vw;
		margin-top: 18vw;
	}

	.class-product-info #slide-04 .swiper-slide .subname,
	.page-product .sec-01 #slide-04 .swiper-slide .subname,
	.class-product-info #slide-04 .swiper-slide .u-line,
	.page-product .sec-01 #slide-04 .swiper-slide .u-line,
	.class-product-info #slide-04 .swiper-slide .fs12-12,
	.page-product .sec-01 #slide-04 .swiper-slide .fs12-12 {
		opacity: 0;
		transition: opacity 0.5s;
	}

	.class-product-info #slide-04 .swiper-slide-active .subname,
	.page-product .sec-01 #slide-04 .swiper-slide-active .subname,
	.class-product-info #slide-04 .swiper-slide-active .u-line,
	.page-product .sec-01 #slide-04 .swiper-slide-active .u-line,
	.class-product-info #slide-04 .swiper-slide-active .fs12-12,
	.page-product .sec-01 #slide-04 .swiper-slide-active .fs12-12 {
		opacity: 1;
	}

	.class-product-info #slide-04 .img-04-01,
	.page-product .sec-01 #slide-04 .img-04-01 {
		width: 55.3333333333vw;
		height: 46.4086021505vw;
		margin-top: 0vw;
	}

	.class-product-info #slide-04 .img-04-02,
	.page-product .sec-01 #slide-04 .img-04-02 {
		width: 65.1505376344vw;
		height: 42.1693548387vw;
		margin-top: 4.2392473118vw;
	}

	.class-product-info #slide-04 .img-04-03,
	.page-product .sec-01 #slide-04 .img-04-03 {
		width: 48.1935483871vw;
		height: 43.2849462366vw;
		margin-top: 3.123655914vw;
	}

	.class-product-info #slide-04 .img-04-04,
	.page-product .sec-01 #slide-04 .img-04-04 {
		width: 34.8064516129vw;
		height: 44.1774193548vw;
		margin-top: 2.2311827957vw;
	}


	br.pc {
		display: none;
	}

	br.sp {
		display: inline;
	}

	body.page-process .only-pc {
		display: none !important;
	}

	body.page-process .sec-movie .sec-inner {
		padding: 13.3333333333vw 6.6666666667vw;
	}

	body.page-process .sec-movie .title {
		width: 69.4666666667vw;
	}

	body.page-process .sec-movie .video {
		margin: 5.3333333333vw auto auto;
	}

	body.page-process .sec-movie .video a::after {
		width: 14.1333333333vw;
		height: 14.1333333333vw;
	}

	body.page-process .sec-management .sec-inner {
		padding: 10.6666666667vw 6.6666666667vw 16vw;
	}

	body.page-process .sec-management .sec-inner .title h2 img {
		width: 61.3333333333vw;
	}

	body.page-process .sec-management__list {
		margin-top: 8vw;
	}

	body.page-process .sec-management__item-title img {
		width: 24.6666666667vw;
	}

	body.page-process .sec-management__item figure {
		margin-top: 3.7333333333vw;
	}

	body.page-process .sec-management__item figure img {
		border-radius: 1.0666666667vw;
	}

	body.page-process .sec-management__item figure figcaption {
		font-size: 3.4666666667vw;
		margin-top: 3.2vw;
	}

	body.page-process .sec-management__item:not(:first-child) {
		margin-top: 8.5333333333vw;
	}

	body.page-process .sec-management .liquid-wrap .liq-01 {
		top: 10.6666666667vw;
		right: 8vw;
		width: 26.6666666667vw;
	}

	body.page-process .sec-management .liquid-wrap .liq-02 {
		bottom: 5.3333333333vw;
		left: 6.6666666667vw;
		width: 26.6666666667vw;
	}

	body.page-process .sec-management .liquid-wrap .ic-02 {
		top: -12vw;
		right: 10.6666666667vw;
		width: 20vw;
	}

	body.page-process .sec-process .sec-inner {
		padding: 13.3333333333vw 4vw 16vw;
	}

	body.page-process .sec-process .sec-inner .title h2 img {
		width: 83.3333333333vw;
	}

	body.page-process .sec-process__nav {
		flex-wrap: wrap;
		row-gap: 3.2vw;
		margin-top: 12vw;
	}

	body.page-process .sec-process__nav-item {
		flex: 0 0 30.8vw;
	}

	body.page-process .sec-process__nav-item:not(:first-child) {
		margin-left: -0.2666666667vw;
	}

	body.page-process .sec-process__list {
		width: 86.6666666667vw;
		margin-top: 10.6666666667vw;
	}

	body.page-process .sec-process__item:not(:first-child) {
		padding-top: 5.3333333333vw;
	}

	body.page-process .sec-process__item-title {
		font-size: 4.8vw;
	}

	body.page-process .sec-process__item-title img {
		width: 26vw;
		margin-bottom: 2.6666666667vw;
	}

	body.page-process .sec-process__item figure {
		margin-top: 3.7333333333vw;
	}

	body.page-process .sec-process__item figure img {
		width: 100%;
		border: 0.2666666667vw solid #ff8583;
		border-radius: 2.1333333333vw;
	}

	body.page-process .sec-process__item figure figcaption {
		font-size: 3.4666666667vw;
		margin-top: 3.2vw;
	}

	body.page-process .sec-process__type {
		margin-top: 12vw;
	}

	body.page-process .sec-process__type-can,
	body.page-process .sec-process__type-cube {
		overflow: hidden;
		border-radius: 1.3333333333vw;
	}

	body.page-process .sec-process__type-cube {
		margin-top: 6.6666666667vw;
	}

	body.page-process .sec-process__type-button,
	body.page-process .sec-process__type-button-close {
		background-size: 5.3333333333vw;
		background-position: right 4vw center;
		background-repeat: no-repeat;
		background-color: #ff8583;
		display: flex;
		align-items: center;
		padding: 1em 1.5em;
		font-size: 4vw;
		color: #fff;
	}

	body.page-process .sec-process__type-button {
		background-image: url("../img/process/icon-plus.png");
	}

	body.page-process .sec-process__type-button.is-open {
		background-image: url("../img/process/icon-minus.png");
	}

	body.page-process .sec-process__type-button-close {
		background-image: url("../img/process/icon-minus.png");
	}

	body.page-process .sec-process__type-list {
		background-color: #FFF1D2;
		padding: 6.4vw 4vw 9.6vw;
	}

	body.page-process .sec-process__type-item:not(:first-child) {
		margin-top: 16vw;
	}

	body.page-process .sec-process__type-item:not(:first-child)::after {
		content: "";
		margin: auto;
		display: block;
		position: absolute;
		background-image: url("../img/process/arrow01-pink.png");
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		width: 3.3333333333vw;
		height: 2.6666666667vw;
		right: 0;
		left: 0;
		top: -9.3333333333vw;
	}

	body.page-process .sec-process__type-item-title {
		width: 25.3333333333vw;
	}

	body.page-process .sec-process__type-item figure {
		margin-top: 3.7333333333vw;
	}

	body.page-process .sec-process__type-item figure figcaption {
		margin-top: 2.6666666667vw;
		font-size: 3.4666666667vw;
	}

	body.page-process .sec-process .liquid-wrap .liq-01 {
		top: 109.3333333333vw;
		right: 8vw;
		width: 26.6666666667vw;
	}

	body.page-process .sec-process .liquid-wrap .liq-02 {
		top: 306.6666666667vw;
		left: 6.6666666667vw;
		width: 24vw;
		height: 24vw;
	}

	body.page-process .sec-process .liquid-wrap .liq-03 {
		top: 440vw;
		right: 8vw;
		width: 29.3333333333vw;
	}

	body.page-process .sec-process .liquid-wrap .liq-04 {
		top: 640vw;
		left: 6.6666666667vw;
		width: 24vw;
		height: 24vw;
	}

	body.page-process .sec-process .liquid-wrap .ic-01 {
		top: -17.3333333333vw;
		left: 6.6666666667vw;
		width: 14.6666666667vw;
	}

	body.page-process .sec-process .liquid-wrap .ic-02 {
		top: 326.6666666667vw;
		left: 4vw;
		width: 13.3333333333vw;
	}

	body.page-process .sec-process .liquid-wrap .ic-04 {
		top: 433.3333333333vw;
		right: 4vw;
		width: 14.6666666667vw;
	}

	body.page-process .sec-process .liquid-wrap .ic-05 {
		top: 97.3333333333vw;
		right: 4vw;
		width: 14.6666666667vw;
	}

	body.page-process .sec-process .liquid-wrap .ic-06 {
		top: 694.6666666667vw;
		left: 5.3333333333vw;
		width: 18.6666666667vw;
	}

	body.page-process .sec-links .liquid-wrap .liq-01 {
		top: -20vw;
		right: 6.6666666667vw;
		width: 29.3333333333vw;
	}

	body.page-process .sec-links .liquid-wrap .liq-02 {
		bottom: -46.6666666667vw;
		left: 6.6666666667vw;
		width: 26.6666666667vw;
	}

	body.page-process .sec-links .liquid-wrap .ic-03 {
		top: -10.6666666667vw;
		right: 9.3333333333vw;
		width: 16vw;
	}

	body.page-process .sec-links .liquid-wrap .ic-04 {
		bottom: -32vw;
		left: 6.6666666667vw;
		width: 20vw;
	}

	.sec-inner.inner-bifidobacteria {
		max-width: 100%;
	}

	.sec-inner.inner-bifidobacteria .title {
		letter-spacing: 0.015em;
	}

	.sec-inner.inner-bifidobacteria .title span {
		display: inline-block;
		padding-bottom: 1.6vw;
	}

	.sec-inner.inner-bifidobacteria .max-473 {
		font-size: 3.4666666667vw;
		max-width: 100%;
		margin-top: 1.6vw;
		line-height: 1.9230769231;
	}

	.sec-01 .inner-bifidobacteria {
		padding-bottom: 65.3333333333vw;
	}

	.sec-02 .inner-bifidobacteria {
		padding-bottom: 13.3333333333vw;
	}

}

@media screen and (min-width: 769px) {

	img.sp,
	br.sp {
		display: none;
	}

	.wave-sep {
		height: 29px;
		background-size: 1500px 29px;
		animation: waveSepPC 25s linear infinite;
	}

	.wave-sep.w90 {
		background-image: url("../img/common/wav_90_pc.png");
	}

	.wave-sep.w91 {
		background-image: url("../img/common/wav_91_pc.png");
	}

	.btn-text {
		padding-right: 40px;
		padding-left: 5px;
	}

	.btn-text.blank {
		padding-right: 45px;
	}

	.btn-text.btn-map {
		border-width: 2px;
		padding: 0;
		column-gap: 9px;
	}

	.btn-text.btn-map:before {
		display: block;
		padding: 48px 0 0 0;
		width: 56px;
		height: 0;
		overflow: hidden;
		background: url("../img/common/icon_mapbutton.svg") no-repeat;
		background-size: 56px 48px;
		text-indent: -5000px;
	}

	.btn-text.btn-map:after {
		display: block;
		padding: 12px 0 0 0;
		width: 12px;
		height: 0;
		overflow: hidden;
		background: url("../img/common/icon_blank_g.svg") no-repeat;
		background-size: 12px 12px;
		text-indent: -5000px;
	}

	.store-button-wrapper {
		right: 95px;
		top: 20px;
		width: 55px;
		height: 55px;
		box-shadow: 0 0 10px rgba(51, 51, 51, 0.25);
	}

	.store-button-wrapper.no-scroll {
		top: 120px;
	}

	.class-product-info #product-02,
	.page-product .sec-01 #product-02 {
		width: 1200px;
		max-width: 1200px;
	}

	.class-product-info .img-02-02-01,
	.page-product .sec-01 .img-02-02-01 {
		width: 94.603960396px;
		height: 130px;
		margin-top: 45px;
	}

	.class-product-info .img-02-02-02,
	.page-product .sec-01 .img-02-02-02 {
		width: auto;
		height: 130px;
		margin-top: 55px;
	}

	.class-product-info .img-02-02-02+p,
	.page-product .sec-01 .img-02-02-02+p {
		margin-top: 0.5rem;
	}

	.class-product-info .img-02-02-03,
	.page-product .sec-01 .img-02-02-03 {
		width: initial;
		height: 170px;
		margin-top: 5px;
	}

	.class-product-info .img-02-02-04,
	.page-product .sec-01 .img-02-02-04 {
		width: 242px;
		height: 131px;
		margin-top: -1px;
	}

	.class-product-info #slide-04 .subname,
	.page-product .sec-01 #slide-04 .subname {
		font-size: 16px;
	}

	.class-product-info #slide-04 .img-04-01,
	.page-product .sec-01 #slide-04 .img-04-01 {
		width: 248px;
		height: 208px;
		margin-top: 0px;
	}

	.class-product-info #slide-04 .img-04-02,
	.page-product .sec-01 #slide-04 .img-04-02 {
		width: 292px;
		height: 189px;
		margin-top: 19px;
	}

	.class-product-info #slide-04 .img-04-03,
	.page-product .sec-01 #slide-04 .img-04-03 {
		width: 216px;
		height: 194px;
		margin-top: 14px;
	}

	.class-product-info #slide-04 .img-04-04,
	.page-product .sec-01 #slide-04 .img-04-04 {
		width: 156px;
		height: 198px;
		margin-top: 10px;
	}

	br.pc {
		display: inline;
	}

	br.sp {
		display: none;
	}

	body.page-process .only-sp {
		display: none !important;
	}

	body.page-process .board-title-wrap img {
		width: 765px;
		height: 629px;
	}

	body.page-process .sec-movie .sec-inner {
		padding: 130px 0;
	}

	body.page-process .sec-movie .video {
		margin: 40px auto auto;
		width: 500px;
	}

	body.page-process .sec-movie .video a::after {
		width: 74px;
		height: 74px;
	}

	body.page-process .sec-movie .video a img {
		border-radius: 8px;
	}

	body.page-process .sec-movie .liquid-wrap {
		width: 1100px;
	}

	body.page-process .sec-movie .liquid-wrap .liq-01 {
		top: 64px;
		right: 0;
	}

	body.page-process .sec-movie .liquid-wrap .liq-02 {
		bottom: 40px;
	}

	body.page-process .sec-movie .liquid-wrap .ic-01 {
		top: 120px;
	}

	body.page-process .sec-movie .liquid-wrap .ic-02 {
		width: 120px;
		top: 50%;
		right: 0;
	}

	body.page-process .sec-management .sec-inner {
		padding: 70px 0 100px;
	}

	body.page-process .sec-management__list {
		display: flex;
		justify-content: space-between;
		margin-top: 48px;
	}

	body.page-process .sec-management__item {
		flex: 0 0 320px;
	}

	body.page-process .sec-management__item-title img {
		width: 130px;
	}

	body.page-process .sec-management__item figure {
		margin-top: 26px;
	}

	body.page-process .sec-management__item figure img {
		border-radius: 8px;
	}

	body.page-process .sec-management__item figure figcaption {
		font-size: 16px;
		margin-top: 20px;
	}

	body.page-process .sec-management .liquid-wrap {
		width: 1100px;
	}

	body.page-process .sec-management .liquid-wrap .liq-01 {
		top: 128px;
		right: 64px;
		width: 220px;
	}

	body.page-process .sec-management .liquid-wrap .liq-02 {
		left: 64px;
		bottom: 100px;
		width: 180px;
		height: 180px;
	}

	body.page-process .sec-management .liquid-wrap .ic-01 {
		top: -60px;
		left: 80px;
		width: 80px;
	}

	body.page-process .sec-process .sec-inner {
		padding: 100px 10px 120px;
	}

	body.page-process .sec-process__nav {
		margin: 60px auto 0;
	}

	body.page-process .sec-process__nav-item {
		flex: 0 0 219px;
		min-height: 127px;
		font-size: 20px;
		padding: 16px 10px;
	}

	body.page-process .sec-process__nav-item:not(:first-child) {
		margin-left: -8px;
	}

	body.page-process .sec-process__nav-item .nav-item-label {
		font-size: 16px;
	}

	body.page-process .sec-process__list {
		margin-top: 80px;
	}

	body.page-process .sec-process__item {
		flex: 0 0 318px;
	}

	body.page-process .sec-process__item:not(:first-child) {
		margin-top: 40px;
		padding-top: 40px;
	}

	body.page-process .sec-process__item-title {
		font-size: 24px;
	}

	body.page-process .sec-process__item-title img {
		width: 135px;
	}

	body.page-process .sec-process__item figure {
		margin-top: 26px;
	}

	body.page-process .sec-process__item figure img {
		width: 700px;
		border: 2px solid #ff8583;
		border-radius: 8px;
	}

	body.page-process .sec-process__item figure figcaption {
		font-size: 16px;
		margin-top: 20px;
	}

	body.page-process .sec-process__type {
		margin-top: 120px;
	}

	body.page-process .sec-process__type-tabs {
		display: flex;
		justify-content: space-between;
	}

	body.page-process .sec-process__type-tab-item {
		flex: 0 0 530px;
		text-align: center;
		font-size: 24px;
		background-image: url("../img/process/arrow01-white.png");
		background-color: #ff8583;
		background-position: center bottom 8px;
		background-repeat: no-repeat;
		background-size: 15px auto;
		height: 80px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		border-radius: 8px 8px 0 0;
		cursor: pointer;
	}

	body.page-process .sec-process__type-tab-item.is-active {
		background-image: url("../img/process/arrow01-pink.png");
		background-color: #FFF1D2;
		color: #ff8583;
	}

	body.page-process .sec-process__type-list-wrap {
		display: block !important;
	}

	body.page-process .sec-process__type-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		background-color: #FFF1D2;
		padding: 80px 70px;
		row-gap: 100px;
	}

	body.page-process .sec-process__type-item {
		flex: 0 0 450px;
	}

	body.page-process .sec-process__type-item:nth-child(1)::after,
	body.page-process .sec-process__type-item:nth-child(3)::after {
		width: 15px;
		height: 12px;
		transform: rotate(-90deg);
		top: 244px;
		right: -28px;
	}

	body.page-process .sec-process__type-item:nth-child(2)::after {
		background-image: url("../img/process/arrow02.png");
		width: 480px;
		height: 50px;
		bottom: -80px;
		left: -264px;
	}

	body.page-process .sec-process__type-item-title {
		width: 135px;
	}

	body.page-process .sec-process__type-item figure {
		margin-top: 16px;
	}

	body.page-process .sec-process__type-item figure img {
		border-radius: 8px;
	}

	body.page-process .sec-process__type-item figure figcaption {
		font-size: 16px;
		margin-top: 24px;
	}

	body.page-process .sec-process .liquid-wrap {
		width: 1100px;
	}

	body.page-process .sec-process .liquid-wrap .liq-01 {
		top: 460px;
		right: 24px;
		width: 220px;
	}

	body.page-process .sec-process .liquid-wrap .liq-02 {
		left: 24px;
		top: 1170px;
		width: 180px;
	}

	body.page-process .sec-process .liquid-wrap .liq-03 {
		top: 2700px;
		right: 64px;
		width: 220px;
	}

	body.page-process .sec-process .liquid-wrap .liq-04 {
		left: 24px;
		top: 3400px;
		width: 180px;
		height: 180px;
	}

	body.page-process .sec-process .liquid-wrap .ic-02 {
		top: 450px;
		right: 80px;
		width: 80px;
	}

	body.page-process .sec-process .liquid-wrap .ic-03 {
		top: 1200px;
		left: 50px;
		width: 100px;
	}

	body.page-process .sec-process .liquid-wrap .ic-04 {
		top: 1980px;
		right: 60px;
		width: 88px;
	}

	body.page-process .sec-process .liquid-wrap .ic-05 {
		top: 2700px;
		left: 60px;
		width: 80px;
	}

	body.page-process .sec-process .liquid-wrap .ic-06 {
		top: 3500px;
		right: 140px;
		width: 80px;
	}

	body.page-process .sec-links .sec-inner {
		padding-top: 0;
	}

	body.page-process .sec-links .liquid-wrap {
		width: 1100px;
	}

	body.page-process .sec-links .liquid-wrap .liq-01 {
		top: -50px;
		right: 50px;
		width: 220px;
	}

	body.page-process .sec-links .liquid-wrap .ic-01 {
		top: 90px;
		left: 130px;
		width: 80px;
	}

	body.page-process .sec-links .liquid-wrap .ic-02 {
		top: 80px;
		right: 120px;
		width: 100px;
	}
}

@media (max-width: 320px) {
	.visible-xxs {
		display: block !important;
	}

	.swiper-pagination-bullet {
		width: 28px;
		height: 28px;
		margin: 0 4px;
	}

	.box-dash .text-wrap .circle+.text,
	.box-dash-thin .text-wrap .circle+.text {
		font-size: 1rem;
	}

	.lang-en .text-wrap .circle+.text,
	.lang-cn .text-wrap .circle+.text,
	.lang-tw .text-wrap .circle+.text,
	.lang-kr .text-wrap .circle+.text,
	.lang-pt .text-wrap .circle+.text,
	.lang-vn .text-wrap .circle+.text,
	.lang-th .text-wrap .circle+.text {
		font-size: 3.2vw;
		line-height: 5.8666666667vw;
	}

}

@media (min-width: 768px) {
	.btn-text {
		font-weight: bold;
	}

	section.hero-bg {
		padding: 0 10px;
	}

	section.hero-bg .hero-bg-inner {
		position: relative;
		min-width: 1100px;
		max-width: 1450px;
		margin: 0 auto;
		border-radius: 8px;
		background-size: cover;
	}

	section.hero-bg .hero-bg-inner .hero-wrap {
		height: 520px;
	}

	.step-button-wrapper a:hover {
		opacity: 1;
	}

	.step-button-wrapper a:hover .banner {
		transform: translate3d(-303px, 0, 0);
		opacity: 1;
	}

	.class-product-info .sec-inner.wide,
	.page-product .sec-01 .sec-inner.wide {
		max-width: 1200px;
	}

}

body.page-process .sec-movie .title h2,
body.page-process .sec-management .sec-inner .title h2,
body.page-process .sec-process .sec-inner .title h2 {
	position: relative;
	text-align: center;
	display: inline-block;
}

/* decor trái */
body.page-process .sec-movie .title h2::before,
body.page-process .sec-movie .title h2::after,
body.page-process .sec-management .sec-inner .title h2::before,
body.page-process .sec-management .sec-inner .title h2::after,
body.page-process .sec-process .sec-inner .title h2::before,
body.page-process .sec-process .sec-inner .title h2::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 50px;
	height: 12px;
	background-color: #ff8c8c;
	mask: radial-gradient(circle, #000 45%, transparent 46%) 0 0/8px 8px repeat-x;
	-webkit-mask: radial-gradient(circle, #000 45%, transparent 46%) 0 0/8px 8px repeat-x;
}

body.page-process .sec-movie .title h2::before,
body.page-process .sec-management .sec-inner .title h2::before,
body.page-process .sec-process .sec-inner .title h2::before {
	left: -70px;
	transform: translateY(-50%) rotate(60deg);
}

body.page-process .sec-movie .title h2::after,
body.page-process .sec-management .sec-inner .title h2::after,
body.page-process .sec-process .sec-inner .title h2::after {
	right: -70px;
	transform: translateY(-50%) rotate(-60deg);
}

@media (max-width: 767px) {

	body.page-process .sec-movie .title,
	body.page-process .sec-management .sec-inner .title,
	body.page-process .sec-process .sec-inner .title {
		width: 100%;
		overflow: hidden;
	}

	body.page-process .sec-movie .title h2::before,
	body.page-process .sec-management .sec-inner .title h2::before,
	body.page-process .sec-process .sec-inner .title h2::before {
		left: -40px;
		transform: translateY(-50%) rotate(60deg);
	}

	body.page-process .sec-movie .title h2::after,
	body.page-process .sec-management .sec-inner .title h2::after,
	body.page-process .sec-process .sec-inner .title h2::after {
		right: -40px;
		transform: translateY(-50%) rotate(-60deg);
	}
}

#sub-menu2>li:last-child a {
	border-bottom: 1px solid transparent;
}

/* Ẩn submenu mặc định */
#sub-menu,
#sub-menu2 {
	display: none;
	position: absolute;
	top: 100%;
	width: 245px;
	left: 0;
	list-style: none;
	padding: 0;
	margin: 0;
	background: #fff;
	border-radius: 5px;
	margin-top: 5px;
	box-shadow: 0px 2px 5px #00000054;
}

#sub-menu2 {
	right: -270px;
	left: auto;
	top: 5px;
	box-shadow: none;
}

/* Hiển thị mũi tên khi có submenu */
.menu-item-has-children2>a::after {
	content: '▼';
	/* Ký tự mũi tên */
	font-size: 12px;
	margin-left: 5px;
	display: inline-block;
	transition: transform 0.3s ease;
}

.menu-item-has-children2>a::after {
	transform: rotate(-90deg);
}

/* Hiển thị submenu khi hover vào mục cha */
.menu-item-has-children2:hover>#sub-menu2 {
	display: block;
}

/* CSS cho biểu tượng mũi tên */
.menu-item-has-children2>a::after {
	content: '▼';
	font-size: 12px;
	margin-left: 5px;
	display: inline-block;
	transition: transform 0.3s ease;
}

#sub-menu2 {
	z-index: 999;
	position: absolute;
	width: 270px;
	max-width: none;
	padding: 0;
	border: 0;
	background: rgba(236, 28, 36, 0.598);
	border-radius: 0;
	margin: 0px;
}

ul#sub-menu2 li {
	height: 35px;
}

ul#sub-menu2 li a {
	display: block;
	background: #fff;
	color: #ec1c24;
	font-family: "Montserrat-Bold";
	font-size: 14px;
	font-weight: 400;
	padding: 0 10px;
	line-height: 35px;
	height: 35px;
	border: 0px;
	text-align: left;
	text-decoration: none;
	text-transform: none;
	vertical-align: baseline;
}

ul#sub-menu2 li a:hover {
	background: rgba(236, 28, 36, 0.598);
	font-weight: 400;
	text-decoration: none;
	color: #fff;
}