@charset "UTF-8";
/* setting
---------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@700&display=swap");
/* setting
---------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@700&display=swap");
/**--------------------------------------------------
 *
 * 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;
}
/* 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;
	-ms-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 */
	/* animate in */
	/* animate out */
}
.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.mfp-ready .mfp-with-anim {
	opacity: 1;
	transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}
.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;
}

* {
	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: #337ab7;
	text-decoration: none;
}
a:hover, a:focus {
	color: #23527c;
	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 #eeeeee;
}

.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;
}

@-ms-viewport {
	width: device-width;
}
.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;
}
@-ms-viewport {
	width: auto;
}
:root {
	-ms-overflow-style: auto;
}

/*
overview
ベーススタイル
*/
@font-face {
	font-family: "Noto Sans CJK JP";
	font-weight: 400;
	src: local("Noto Sans Japanese Regular"), local("NotoSansJapanese-Regular"), url("../font/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../font/NotoSansCJKjp-Regular.woff") format("woff"), url("../font/NotoSansCJKjp-Regular.ttf") format("truetype");
}
@font-face {
	font-family: "Noto Sans CJK JP";
	font-weight: 700;
	src: local("Noto Sans Japanese Bold"), local("NotoSansJapanese-Bold"), url("../font/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../font/NotoSansCJKjp-Bold.woff") format("woff"), url("../font/NotoSansCJKjp-Bold.ttf") format("truetype");
}
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.85;
	font-family: "Noto Sans CJK JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "MS Gothic", "ＭＳ ゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif, "Microsoft YaHei", "SimHei";
	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;
}

.cn p,
.pt p,
.vn p {
	font-weight: 500;
}

/*
#overview
レイアウト
*/
.clearfix {
	*zoom: 1;
}
.clearfix:before, .clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}

.container {
	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-box-upper {
	background-image: url("../img/rakurakumilk/common/wave_01.png");
	animation: anime_wave01_pc 25s linear 0s infinite normal;
}

.wave-box-lower {
	background-image: url("/baby/hohoemi/assets/img/rakurakumilk/common/wave_02.png");
	animation: anime_wave02_pc 25s linear 0s infinite normal;
}

.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;
}

/*
#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;
}

/*
#overview
P01 パーツ 見出し パート1
*/
h1, h2, h3, h4, h5, h6 {
	font-family: "Noto Sans CJK JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "MS Gothic", "ＭＳ ゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif, "Microsoft YaHei", "SimHei";
}

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,
h2.u-line,
h2.u-line-b,
h2.u-line-w,
h2.u-line-w-l,
h2.u-line-br,
h3.u-line,
h3.u-line-b,
h3.u-line-w,
h3.u-line-w-l,
h3.u-line-br,
h4.u-line,
h4.u-line-b,
h4.u-line-w,
h4.u-line-w-l,
h4.u-line-br,
h5.u-line,
h5.u-line-b,
h5.u-line-w,
h5.u-line-w-l,
h5.u-line-br {
	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,
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,
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,
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,
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 {
	padding: 0 0 3px;
	background: url("/baby/hohoemi/assets/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("/baby/hohoemi/assets/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("/baby/hohoemi/assets/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("/baby/hohoemi/assets/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("/baby/hohoemi/assets/img/common/title_line_brown.png");
}

.head-point {
	width: 132px;
}

.head-info {
	width: 135px;
}

.head-step {
	width: 135px;
}
.head-step + p {
	margin: 15px 0 5px;
}

/*
#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: "Noto Sans CJK JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "MS Gothic", "ＭＳ ゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif, "Microsoft YaHei", "SimHei";
}
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;
}

/*
#overview
P03 パーツ ボタン
*/
.btn-link {
	display: block;
	width: 280px;
	margin: 34px auto 0;
}

.btn-text {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 280px;
	height: 65px;
	margin: 34px auto 0;
	background: url("/baby/hohoemi/assets/img/common/btn_icon_arrow_r.png") right 15px center no-repeat #ff8583;
	background-size: 10px auto;
	border-radius: 8px;
	color: #fff;
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.2;
}
.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("/baby/hohoemi/assets/img/common/btn_icon_arrow_d.png");
	background-size: auto 10px;
}
.btn-text.blank {
	background-image: url("/baby/hohoemi/assets/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: 30px;
	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;
}

/*
#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;
}

/*
#overview
P06 パーツ テーブル
*/
table {
	margin-left: auto;
	margin-right: auto;
	border-collapse: collapse;
	border-spacing: 0;
}
table th,
table td {
	padding: 10px;
}

/*
#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;
}

/*
#overview
P08 パーツ 画像関連
*/
img.b-shadow {
	box-shadow: 0px 0px 8px 1px rgba(122, 122, 122, 0.5);
}

/*
#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;
}
/*
overview
ヘッダースタイル
*/
.header {
	display: none;
}
.header .header-inner {
	width: 1100px;
	height: 50px;
	margin: 0 auto;
	padding: 0 10px;
}
.header .header-inner .link-logo {
	display: inline-block;
	padding: 13px 2px;
}
.header .header-inner .link-logo img {
	width: 151px;
}

/*
overview
フッタースタイル
*/
/*
#overview
M03 モジュール メインビジュアル
*/
.board-title-wrap {
	background: url("/baby/hohoemi/assets/img/rakurakumilk/common/sec_01_head_title_bg.png") left top repeat-x;
}
.board-title-wrap img {
	width: 1100px;
	height: 565px;
	max-width: initial;
	max-width: auto;
}

.board-title-wrap-02 {
	padding-top: 100px;
	background: url("/baby/hohoemi/assets/img/rakurakumilk/common/sec_02_head_title_bg.png") left bottom 30px repeat-x;
}
.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: 5rem;
	white-space: pre-wrap;
}
.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;
}

/*
#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;
}

.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("/baby/hohoemi/assets/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("/baby/hohoemi/assets/img/common/slide_page_01_on.png");
}
.swiper-pagination-bullet:nth-of-type(1) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_01.png");
}
.swiper-pagination-bullet:nth-of-type(1).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_01_on.png");
}
.swiper-pagination-bullet:nth-of-type(2) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_02.png");
}
.swiper-pagination-bullet:nth-of-type(2).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_02_on.png");
}
.swiper-pagination-bullet:nth-of-type(3) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_03.png");
}
.swiper-pagination-bullet:nth-of-type(3).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_03_on.png");
}
.swiper-pagination-bullet:nth-of-type(4) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_04.png");
}
.swiper-pagination-bullet:nth-of-type(4).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_04_on.png");
}
.swiper-pagination-bullet:nth-of-type(5) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_05.png");
}
.swiper-pagination-bullet:nth-of-type(5).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_05_on.png");
}
.swiper-pagination-bullet:nth-of-type(6) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_06.png");
}
.swiper-pagination-bullet:nth-of-type(6).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_06_on.png");
}
.swiper-pagination-bullet:nth-of-type(7) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_07.png");
}
.swiper-pagination-bullet:nth-of-type(7).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_07_on.png");
}
.swiper-pagination-bullet:nth-of-type(8) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_08.png");
}
.swiper-pagination-bullet:nth-of-type(8).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/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(5), .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet:nth-of-type(6), .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet:nth-of-type(10),
.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(5), .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(6), .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(10),
.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;
}

.sw-page-1 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_01.png");
}
.sw-page-1.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_01_on.png");
}

.sw-page-1-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_01_w.png");
}
.sw-page-1-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_01_on.png");
}

.sw-page-2 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_02.png");
}
.sw-page-2.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_02_on.png");
}

.sw-page-2-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_02_w.png");
}
.sw-page-2-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_02_on.png");
}

.sw-page-3, .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet:nth-of-type(4) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_03.png");
}
.sw-page-3.swiper-pagination-bullet-active, .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(4) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_03_on.png");
}

.sw-page-3-w, .page-rakurakumilk-usage .sec-02 #pagination-slide-02 .swiper-pagination-bullet:nth-of-type(5) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_03_w.png");
}
.sw-page-3-w.swiper-pagination-bullet-active, .page-rakurakumilk-usage .sec-02 #pagination-slide-02 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(5) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_03_on.png");
}

.sw-page-4, .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet:nth-of-type(7) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_04.png");
}
.sw-page-4.swiper-pagination-bullet-active, .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(7) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_04_on.png");
}

.sw-page-4-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_04_w.png");
}
.sw-page-4-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_04_on.png");
}

.sw-page-5, .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet:nth-of-type(8) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_05.png");
}
.sw-page-5.swiper-pagination-bullet-active, .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(8) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_05_on.png");
}

.sw-page-5-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_05_w.png");
}
.sw-page-5-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_05_on.png");
}

.sw-page-6, .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet:nth-of-type(9) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_06.png");
}
.sw-page-6.swiper-pagination-bullet-active, .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(9) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_06_on.png");
}

.sw-page-6-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_06_w.png");
}
.sw-page-6-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_06_on.png");
}

.sw-page-7, .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet:nth-of-type(10) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_07.png");
}
.sw-page-7.swiper-pagination-bullet-active, .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(10) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_07_on.png");
}

.sw-page-7-w, .page-rakurakumilk-attachment .sec-04 .swiper-pagination-bullet:nth-of-type(7) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_07_w.png");
}
.sw-page-7-w.swiper-pagination-bullet-active, .page-rakurakumilk-attachment .sec-04 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(7) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_07_on.png");
}

.sw-page-8 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_08.png");
}
.sw-page-8.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_08_on.png");
}

.sw-page-8-w, .page-rakurakumilk-attachment .sec-04 .swiper-pagination-bullet:nth-of-type(8) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_08_w.png");
}
.sw-page-8-w.swiper-pagination-bullet-active, .page-rakurakumilk-attachment .sec-04 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(8) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_08_on.png");
}

.sw-page-9 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_09.png");
}
.sw-page-9.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_09_on.png");
}

.sw-page-9-w, .page-rakurakumilk-attachment .sec-04 .swiper-pagination-bullet:nth-of-type(9) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_09_w.png");
}
.sw-page-9-w.swiper-pagination-bullet-active, .page-rakurakumilk-attachment .sec-04 .swiper-pagination-bullet-active.swiper-pagination-bullet:nth-of-type(9) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_09_on.png");
}

.sw-page-10 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_10.png");
}
.sw-page-10.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_10_on.png");
}

.sw-page-10-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_10_w.png");
}
.sw-page-10-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_10_on.png");
}

.sw-page-11 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_11.png");
}
.sw-page-11.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_11_on.png");
}

.sw-page-11-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_11_w.png");
}
.sw-page-11-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_11_on.png");
}

.sw-page-12 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_12.png");
}
.sw-page-12.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_12_on.png");
}

.sw-page-12-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_12_w.png");
}
.sw-page-12-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_12_on.png");
}

.sw-page-13 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_13.png");
}
.sw-page-13.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_13_on.png");
}

.sw-page-13-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_13_w.png");
}
.sw-page-13-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_13_on.png");
}

.sw-page-14 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_14.png");
}
.sw-page-14.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_14_on.png");
}

.sw-page-14-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_14_w.png");
}
.sw-page-14-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_14_on.png");
}

.sw-page-15 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_15.png");
}
.sw-page-15.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_15_on.png");
}

.sw-page-15-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_15_w.png");
}
.sw-page-15-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_15_on.png");
}

.sw-page-16 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_16.png");
}
.sw-page-16.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_16_on.png");
}

.sw-page-16-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_16_w.png");
}
.sw-page-16-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_16_on.png");
}

.sw-page-17 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_17.png");
}
.sw-page-17.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_17_on.png");
}

.sw-page-17-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_17_w.png");
}
.sw-page-17-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_17_on.png");
}

.sw-page-18 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_18.png");
}
.sw-page-18.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_18_on.png");
}

.sw-page-18-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_18_w.png");
}
.sw-page-18-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_18_on.png");
}

.sw-page-19 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_19.png");
}
.sw-page-19.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_19_on.png");
}

.sw-page-19-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_19_w.png");
}
.sw-page-19-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_19_on.png");
}

.sw-page-20 {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_20.png");
}
.sw-page-20.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_20_on.png");
}

.sw-page-20-w {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_20_w.png");
}
.sw-page-20-w.swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_20_on.png");
}

.bg-white .swiper-pagination-bullet:nth-of-type(1) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_01_w.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(1).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_01_on.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(2) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_02_w.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(2).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_02_on.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(3) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_03_w.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(3).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_03_on.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(4) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_04_w.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(4).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_04_on.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(5) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_05_w.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(5).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_05_on.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(6) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_06_w.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(6).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_06_on.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(7) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_07_w.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(7).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_07_on.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(8) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_08_w.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(8).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_08_on.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(9) {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_09_w.png");
}
.bg-white .swiper-pagination-bullet:nth-of-type(9).swiper-pagination-bullet-active {
	background-image: url("/baby/hohoemi/assets/img/common/slide_page_09_on.png");
}

.swiper-btn-wrap {
	position: absolute;
	top: 152px;
	width: 100%;
	margin: auto;
}

.swiper-button-prev, .swiper-button-next {
	width: 87px;
	height: 86px;
	top: 0;
	bottom: 0;
	margin: auto;
	background: url("/baby/hohoemi/assets/img/common/slide_btn_l.png") center center no-repeat;
	background-size: contain;
}

.swiper-button-prev {
	left: -120px;
	background-image: url("/baby/hohoemi/assets/img/common/slide_btn_l_on.png");
}

.swiper-button-next {
	right: -120px;
	background-image: url("/baby/hohoemi/assets/img/common/slide_btn_r_on.png");
}

.swiper-button-prev.swiper-button-disabled {
	opacity: 1;
	background-image: url("/baby/hohoemi/assets/img/common/slide_btn_l.png");
}

.swiper-button-next.swiper-button-disabled {
	opacity: 1;
	background-image: url("/baby/hohoemi/assets/img/common/slide_btn_r.png");
	pointer-events: auto;
	cursor: pointer;
}
.menu {
	display: none;
}

.menu.active {
	display: block;
}

.menu--btn-wrapper {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	z-index: 110;
	transition: all 1s ease 0s;
}
.menu--btn-wrapper .close,
.menu--btn-wrapper .open {
	display: none;
}
.menu--btn-wrapper .active {
	display: block;
}

.menu--btn-wrapper.no-scroll {
	top: 120px;
}

.menu {
	background: #FC8584;
	color: #FFFFFF;
	display: none;
	width: 310px;
	height: 100vh;
	padding: 80px 30px 0 25px;
	position: fixed;
	right: -310px;
	top: 0;
	z-index: 100;
	overflow-y: auto;
	transition: all 0.75s ease 0s;
}
.menu.active {
	right: 0;
}
.menu .memu--logo {
	width: 140px;
	height: auto;
	margin-left: 0;
}
.menu .menu--ul {
	padding-top: 20px;
}
.menu .menu--ul li {
	position: relative;
}
.menu .menu--ul a {
	display: block;
	width: 100%;
	padding: 12px 20px 12px 0;
	color: #FFFFFF;
	font-family: "Noto Sans CJK JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "MS Gothic", "ＭＳ ゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif, "Microsoft YaHei", "SimHei";
	font-size: 1.2rem;
	font-weight: 600;
}
.menu .menu--ul a:active, .menu .menu--ul a:focus, .menu .menu--ul a:hover, .menu .menu--ul a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
.menu .menu--ul a:after {
	content: "";
	background: url("/baby/hohoemi/assets/img/common/menu_icon_right.png") center center no-repeat;
	background-size: contain;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}
.menu .menu--ul a.blank:after {
	content: "";
	width: 15px;
	background: url("/baby/hohoemi/assets/img/common/btn_icon_blank.png") center center no-repeat;
	background-size: contain;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}
.menu .menu--ul a.close:after, .menu .menu--ul a.close:before,
.menu .menu--ul a.open:after,
.menu .menu--ul a.open:before {
	content: "";
	background: url("/baby/hohoemi/assets/img/common/menu_icon_close.png") center center no-repeat;
	background-size: contain;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	transition: all 0.5s ease 0s;
}
.menu .menu--ul a.close:before,
.menu .menu--ul a.open:before {
	transform: rotate(90deg);
}
.menu .menu--ul a.open:before {
	transform: rotate(0deg);
}
.menu .menu--ul .menu--inner-ul-wrapper {
	padding-left: 30px;
	margin-bottom: 0;
	display: none;
}
.menu .menu--ul .menu--inner-ul-wrapper:after {
	content: "";
}
.menu .menu--ul .menu--inner-ul-wrapper a {
	display: block;
	width: 100%;
}

#menu.no-scroll {
	padding-top: 180px;
}

.step-button-wrapper {
	position: fixed;
	z-index: 2;
	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;
}

/*
#overview
M06 言語メニュー
*/
.menu-lang-wrap {
	position: fixed;
	top: 35px;
	right: 95px;
	width: 115px;
	font-size: 1rem;
	line-height: 1;
	z-index: 99;
	background-color: #fff;
	border-radius: 10px;
	transition: all 1s ease 0s;
}
.menu-lang-wrap .menu-lang-btn-wrap {
	position: relative;
	z-index: 1;
}
.menu-lang-wrap .menu-lang-btn-wrap a {
	display: block;
	padding: 10px 15px;
	color: #ff8583;
	transition: all 0.5s ease 0s;
	font-weight: bold;
}
.menu-lang-wrap .menu-lang-btn-wrap a:after {
	content: "";
	background: url("/baby/hohoemi/assets/img/common/btn_icon_arrow_d_pink.png") center center no-repeat;
	background-size: contain;
	width: 13px;
	height: 9px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
}
.menu-lang-wrap .menu-lang-btn-wrap a.active {
	color: #fff;
}
.menu-lang-wrap .menu-lang-btn-wrap a.active:after {
	background-image: url("/baby/hohoemi/assets/img/common/btn_icon_arrow_u_white.png");
}
.menu-lang-wrap .menu-lang-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 0 5px;
	border-radius: 10px;
	background-color: #ff8583;
	display: none;
}
.menu-lang-wrap .menu-lang li a {
	display: block;
	padding: 10px 15px;
	color: #fff;
}

.menu-lang-wrap.no-scroll {
	top: 135px;
}

/*
#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("/baby/hohoemi/assets/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("/baby/hohoemi/assets/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("/baby/hohoemi/assets/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("/baby/hohoemi/assets/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("/baby/hohoemi/assets/img/common/box_bl.png");
}
.box-dash-corner-b:after,
.box-dash-thin-corner-b:after {
	background-image: url("/baby/hohoemi/assets/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("/baby/hohoemi/assets/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("/baby/hohoemi/assets/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("/baby/hohoemi/assets/img/common/box2_tl.png");
}
.box-dash-thin-corner-t:after, .box-dash-thin-corner-b:after {
	background-image: url("/baby/hohoemi/assets/img/common/box2_tr.png");
}
.box-dash-thin-corner-b:before {
	background-image: url("/baby/hohoemi/assets/img/common/box2_bl.png");
}
.box-dash-thin-corner-b:after {
	background-image: url("/baby/hohoemi/assets/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("/baby/hohoemi/assets/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;
}

/*
#overview
M08 モジュール 商品情報
*/
.class-product-info, .page-product .sec-01, .page-index .sec-05b {
	/* --------------------------------------
	 *
	 * らくらくキューブ
	 *
	 ----------------------------------------*/
	/* --------------------------------------
	 *
	 * らくらくミルク
	 *
	 ----------------------------------------*/
	/* --------------------------------------
	 *
	 * ほほえみ
	 *
	 ----------------------------------------*/
}
.class-product-info .sec-inner, .page-product .sec-01 .sec-inner, .page-index .sec-05b .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, .page-index .sec-05b .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), .page-index .sec-05b .sec-inner.wide:nth-last-of-type(1) {
	padding-bottom: 100px;
}
.class-product-info h4 + p, .page-product .sec-01 h4 + p, .page-index .sec-05b h4 + p {
	margin-left: auto;
	margin-right: auto;
}
.class-product-info h5, .page-product .sec-01 h5, .page-index .sec-05b h5 {
	margin-top: 5px;
	font-size: 1.6rem;
	line-height: 1.5;
}
.class-product-info h5 span, .page-product .sec-01 h5 span, .page-index .sec-05b h5 span {
	font-size: 2rem;
}
.class-product-info .btn-text, .page-product .sec-01 .btn-text, .page-index .sec-05b .btn-text {
	margin-top: 15px;
}
.class-product-info .swiper-container, .page-product .sec-01 .swiper-container, .page-index .sec-05b .swiper-container {
	margin-top: 20px;
}
.class-product-info .slide-inner, .page-product .sec-01 .slide-inner, .page-index .sec-05b .slide-inner {
	width: 100%;
	height: 100%;
}
.class-product-info h4 .title-01, .page-product .sec-01 h4 .title-01, .page-index .sec-05b h4 .title-01 {
	width: 194px;
}
.class-product-info #slide-02, .page-product .sec-01 #slide-02, .page-index .sec-05b #slide-02 {
	width: 1000px;
}
.class-product-info #slide-02-2, .page-product .sec-01 #slide-02-2, .page-index .sec-05b #slide-02-2 {
	width: 1080px;
}
.class-product-info #slide-02 .swiper-slide.slide-03 .slide-inner, .page-product .sec-01 #slide-02 .swiper-slide.slide-03 .slide-inner, .page-index .sec-05b #slide-02 .swiper-slide.slide-03 .slide-inner {
	padding-top: 38px;
}
.class-product-info .img-01-01, .page-product .sec-01 .img-01-01, .page-index .sec-05b .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, .page-index .sec-05b .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, .page-index .sec-05b .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, .page-index .sec-05b .img-01-04 {
	width: auto;
	height: 221px;
	max-width: initial;
	max-width: auto;
}
.class-product-info #slide-04, .page-product .sec-01 #slide-04, .page-index .sec-05b #slide-04 {
	max-width: 1080px;
	width: 1080px;
}
.class-product-info #slide-04 .swiper-slide, .page-product .sec-01 #slide-04 .swiper-slide, .page-index .sec-05b #slide-04 .swiper-slide {
	padding-left: 0;
	padding-right: 0;
}
.class-product-info #slide-04 .swiper-slide .slider-inner .subname, .page-product .sec-01 #slide-04 .swiper-slide .slider-inner .subname, .page-index .sec-05b #slide-04 .swiper-slide .slider-inner .subname {
	font-weight: 700;
}
.class-product-info h4 .title-02, .page-product .sec-01 h4 .title-02, .page-index .sec-05b h4 .title-02 {
	width: 183px;
}
.class-product-info .img-02, .page-product .sec-01 .img-02, .page-index .sec-05b .img-02 {
	width: 176px;
	margin-top: 20px;
}
.class-product-info .img-02-02, .page-product .sec-01 .img-02-02, .page-index .sec-05b .img-02-02 {
	width: 250px;
	margin-top: 40px;
	margin-bottom: 33px;
}
.class-product-info h4 .title-03, .page-product .sec-01 h4 .title-03, .page-index .sec-05b h4 .title-03 {
	width: 181px;
}
.class-product-info #slide-03, .page-product .sec-01 #slide-03, .page-index .sec-05b #slide-03 {
	width: 700px;
}
.class-product-info #slide-03 .swiper-slide, .page-product .sec-01 #slide-03 .swiper-slide, .page-index .sec-05b #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, .page-index .sec-05b #slide-03 .swiper-slide.slide-02 .slide-inner {
	padding-top: 50px;
}
.class-product-info .img-03-01, .page-product .sec-01 .img-03-01, .page-index .sec-05b .img-03-01 {
	width: 220px;
}
.class-product-info .img-03-02, .page-product .sec-01 .img-03-02, .page-index .sec-05b .img-03-02 {
	width: 350px;
}
.rakuraku-cube-slide.product .wrap .item .slide-inner p,
.rakuraku-cube-slide.product .wrap .item .slide-inner h5,
.rakuraku-cube-slide-multilang.product .wrap .item .slide-inner p,
.rakuraku-cube-slide-multilang.product .wrap .item .slide-inner h5 {
	opacity: 1;
}
/*
#overview
M09 モジュール ローディング表示
*/
.loading-wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 99999;
}

/*
#overview
トップ
*/
.page-index .head-img {
	width: 135px;
}
.page-index .header {
	display: none;
}
.page-index .sec-00b .frame .wrap {
	position: relative;
	background-color: #fff5e5;
	height: 100%;
	margin: 0 auto;
}
.page-index .sec-00b .frame .wrap .item {
	position: absolute;
}
.page-index .sec-00b .frame .wrap .item.i1 {
	z-index: 1;
}
.page-index .sec-00b .frame .wrap .item.i2 {
	z-index: 1;
}
.page-index .sec-00b .frame .wrap .item.i3 {
	z-index: 1;
}
.page-index .sec-00b .frame .wrap .item.i4 {
	z-index: 1;
}
.page-index .sec-00b .frame .wrap .item.i5a {
	z-index: 1;
}
.page-index .sec-00b .frame .wrap .item.i5b {
	z-index: 0;
}
.page-index .sec-00b .frame .wrap .item.i6a {
	z-index: 1;
}
.page-index .sec-00b .frame .wrap .item.i7a {
	z-index: 1;
}
.page-index .sec-00b .frame .wrap .item.i7b {
	z-index: 0;
}
.page-index .sec-00b .frame .wrap .item.i8a {
	z-index: 1;
}
.page-index .sec-00b .frame .wrap .item.i8b {
	z-index: 0;
}
.page-index .sec-00b .frame .wrap .item.i9 {
	z-index: 1;
}
.page-index .sec-00b .frame .wrap .note {
	position: absolute;
	width: 100%;
	display: flex;
}
.page-index .sec-00b .frame .wrap .note dl {
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: auto;
	-ms-grid-columns: 2em 1fr;
	grid-template: auto/2em 1fr;
}
.page-index .sec-00b .frame .wrap .note dl dt {
	-ms-grid-column: 1;
	grid-column: 1;
}
.page-index .sec-00b .frame .wrap .note dl dd {
	-ms-grid-column: 2;
	grid-column: 2;
}

@keyframes scroll {
	0% {
		transform: translate(0, 0);
	}
	20% {
		transform: translate(0, 10px);
	}
	40% {
		transform: translate(0, 0);
	}
}
.en .page-index .sec-00,
.vn .page-index .sec-00,
.kr .page-index .sec-00,
.cn .page-index .sec-00,
.tw .page-index .sec-00,
.th .page-index .sec-00,
.pt .page-index .sec-00 {
	position: relative;
	padding: 0 10px 5px;
	margin: 0 auto;
}
.en .page-index .sec-00 .mv-wrap,
.vn .page-index .sec-00 .mv-wrap,
.kr .page-index .sec-00 .mv-wrap,
.cn .page-index .sec-00 .mv-wrap,
.tw .page-index .sec-00 .mv-wrap,
.th .page-index .sec-00 .mv-wrap,
.pt .page-index .sec-00 .mv-wrap {
	position: relative;
	width: 100%;
	margin-top: 10px;
	z-index: -1;
}
.en .page-index .sec-00 .mv-wrap h1,
.vn .page-index .sec-00 .mv-wrap h1,
.kr .page-index .sec-00 .mv-wrap h1,
.cn .page-index .sec-00 .mv-wrap h1,
.tw .page-index .sec-00 .mv-wrap h1,
.th .page-index .sec-00 .mv-wrap h1,
.pt .page-index .sec-00 .mv-wrap h1 {
	position: absolute;
	right: 0;
	left: 0;
}
.en .page-index .sec-00 .mv-wrap .copy,
.vn .page-index .sec-00 .mv-wrap .copy,
.kr .page-index .sec-00 .mv-wrap .copy,
.cn .page-index .sec-00 .mv-wrap .copy,
.tw .page-index .sec-00 .mv-wrap .copy,
.th .page-index .sec-00 .mv-wrap .copy,
.pt .page-index .sec-00 .mv-wrap .copy {
	position: absolute;
	top: 157px;
	right: 0;
	left: 0;
	color: #ed1c24;
	font-size: 14px;
	font-weight: bold;
	line-height: 24px;
	margin: 0 0 0 0;
	text-align: center;
	letter-spacing: 0;
	padding: 0 0 0 100px;
}
.en .page-index .sec-00 .mv-wrap .img-scroll,
.vn .page-index .sec-00 .mv-wrap .img-scroll,
.kr .page-index .sec-00 .mv-wrap .img-scroll,
.cn .page-index .sec-00 .mv-wrap .img-scroll,
.tw .page-index .sec-00 .mv-wrap .img-scroll,
.th .page-index .sec-00 .mv-wrap .img-scroll,
.pt .page-index .sec-00 .mv-wrap .img-scroll {
	position: absolute;
	bottom: 17px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 52px;
	animation: scroll 2s infinite;
}
.en .page-index .sec-00 .mv-btm,
.vn .page-index .sec-00 .mv-btm,
.kr .page-index .sec-00 .mv-btm,
.cn .page-index .sec-00 .mv-btm,
.tw .page-index .sec-00 .mv-btm,
.th .page-index .sec-00 .mv-btm,
.pt .page-index .sec-00 .mv-btm {
	position: absolute;
	right: 10px;
	bottom: 0;
	padding: 0px 0px 10px;
}
.en .page-index .sec-00 .mv-btm .img-hohoemi,
.vn .page-index .sec-00 .mv-btm .img-hohoemi,
.kr .page-index .sec-00 .mv-btm .img-hohoemi,
.cn .page-index .sec-00 .mv-btm .img-hohoemi,
.tw .page-index .sec-00 .mv-btm .img-hohoemi,
.th .page-index .sec-00 .mv-btm .img-hohoemi,
.pt .page-index .sec-00 .mv-btm .img-hohoemi {
	width: 153px;
	margin-right: 34px;
}
.en .page-index .sec-00 .mv-banner,
.vn .page-index .sec-00 .mv-banner,
.kr .page-index .sec-00 .mv-banner,
.cn .page-index .sec-00 .mv-banner,
.tw .page-index .sec-00 .mv-banner,
.th .page-index .sec-00 .mv-banner,
.pt .page-index .sec-00 .mv-banner {
	position: absolute;
	left: 25px;
	bottom: 20px;
	width: 323px;
}
.en .page-index .sec-00 .mv-banner a,
.vn .page-index .sec-00 .mv-banner a,
.kr .page-index .sec-00 .mv-banner a,
.cn .page-index .sec-00 .mv-banner a,
.tw .page-index .sec-00 .mv-banner a,
.th .page-index .sec-00 .mv-banner a,
.pt .page-index .sec-00 .mv-banner a {
	display: block;
}
.en .page-index .sec-00 .mv-banner a + a,
.vn .page-index .sec-00 .mv-banner a + a,
.kr .page-index .sec-00 .mv-banner a + a,
.cn .page-index .sec-00 .mv-banner a + a,
.tw .page-index .sec-00 .mv-banner a + a,
.th .page-index .sec-00 .mv-banner a + a,
.pt .page-index .sec-00 .mv-banner a + a {
	margin-top: 10px;
}
.en .page-index .sec-00 .mv-banner_upper,
.vn .page-index .sec-00 .mv-banner_upper,
.kr .page-index .sec-00 .mv-banner_upper,
.cn .page-index .sec-00 .mv-banner_upper,
.tw .page-index .sec-00 .mv-banner_upper,
.th .page-index .sec-00 .mv-banner_upper,
.pt .page-index .sec-00 .mv-banner_upper {
	position: absolute;
	right: 25px;
	bottom: 120px;
	width: 410px;
}

/*
#overview
トップ
*/
.page-index .sec-01 {
	position: relative;
}
.page-index .sec-01 .liq-01 {
	top: 80px;
	right: 50px;
}
.page-index .sec-01 .liq-02 {
	left: 145px;
	bottom: 77px;
}
.page-index .sec-01 .ic-01 {
	top: 61px;
	left: 132px;
	right: auto;
	width: 83px;
}
.page-index .sec-01 .ic-02 {
	top: auto;
	bottom: -50px;
	right: 190px;
	width: 64px;
	z-index: 2;
}
.page-index .sec-01 .sec-inner {
	padding-top: 55px;
	padding-bottom: 80px;
}
.page-index .sec-01 h2 {
	font-weight: normal;
	max-width: 720px;
	margin: 0 auto;
}
.page-index .sec-01 .sec-img {
	width: 719px;
	margin-top: 25px;
}
.page-index .sec-01 p {
	width: 679px;
	margin: 25px auto 0;
}
.page-index .sec-01 p.ext-text {
	text-align: center;
}

/*
#overview
トップ
*/
.page-index .sec-02 {
	position: relative;
}
.page-index .sec-02 .liq-01 {
	top: 35%;
	right: 50px;
}
.page-index .sec-02 .liq-02 {
	left: 145px;
	bottom: 130px;
}
.page-index .sec-02 .ic-03 {
	top: 140px;
	left: 164px;
	right: auto;
	width: 88px;
}
.page-index .sec-02 .ic-04 {
	display: none;
}
.page-index .sec-02 .ic-05 {
	top: auto;
	bottom: 30%;
	left: auto;
	right: 190px;
	width: 67px;
}
.page-index .sec-02 .ic-06 {
	top: auto;
	bottom: -50px;
	left: 210px;
	right: auto;
	width: 70px;
	z-index: 2;
}
.page-index .sec-02 .kodawari-wrap {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 800px;
	margin: 25px auto 0;
}
.page-index .sec-02 .kodawari-wrap .item {
	position: relative;
	width: 300px;
	margin-right: 60px;
}
.page-index .sec-02 .kodawari-wrap .item .img-wrap {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 100%;
	background: url("/baby/hohoemi/assets/img/top/sec_02_img_01.png") center center no-repeat;
	background-size: contain;
}
.page-index .sec-02 .kodawari-wrap .item:nth-of-type(2) {
	margin-right: 0;
	margin-left: 60px;
}
.page-index .sec-02 .kodawari-wrap .item:nth-of-type(2) .img-wrap {
	background-image: url("/baby/hohoemi/assets/img/top/sec_02_img_02.png");
}
.page-index .sec-02 .kodawari-wrap .item:nth-of-type(3) {
	margin: 0;
}
.page-index .sec-02 .kodawari-wrap .item .text-box {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.page-index .sec-02 .kodawari-wrap .item .text-box h3 {
	margin: 0;
}
.page-index .sec-02 .kodawari-wrap .item .text-box .head-point,
.page-index .sec-02 .kodawari-wrap .item .head-wrap .head-point {
	width: 92px;
}
.page-index .sec-02 .kodawari-wrap .item p {
	width: 280px;
	margin-left: auto;
	margin-right: auto;
}
.page-index .sec-02 .kodawari-wrap .item.item-03 {
	text-align: center;
}
.page-index .sec-02 .kodawari-wrap .item.item-03 p {
	width: auto;
}
.page-index .sec-02 .kodawari-wrap .item.item-03 .prod-wrap {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}
.page-index .sec-02 .kodawari-wrap .item.item-03 .prod .image {
	position: relative;
}
.page-index .sec-02 .kodawari-wrap .item.item-03 .prod .image img {
	max-width: 99999px;
	position: absolute;
}

/*
#overview
トップ
*/
.page-index .sec-03 .liq-01 {
	top: 110px;
	left: 160px;
}
.page-index .sec-03 .ic-07 {
	top: 75px;
	left: auto;
	right: 235px;
	width: 77px;
}
.page-index .sec-03 .sec-inner {
	padding-top: 70px;
	padding-bottom: 80px;
}
.page-index .sec-03 .movie-wrap {
	display: flex;
	justify-content: space-between;
	width: 760px;
	margin: 0 auto;
}
.page-index .sec-03 .movie-wrap .movie {
	width: 320px;
}
.page-index .sec-03 .btn-text {
	background-color: #cb862d;
}

/*
#overview
トップ
*/
.page-index .sec-04 .liq-01 {
	top: 100px;
	right: 60px;
}
.page-index .sec-04 .ic-12 {
	top: auto;
	bottom: -50px;
	left: auto;
	right: 160px;
	width: 97px;
	z-index: 2;
}
.page-index .sec-04 .sec-inner.sec-inner-01 {
	padding-bottom: 30px;
}
.page-index .sec-04 .sec-inner.wide {
	padding-top: 0;
}
.page-index .sec-04 .sec-inner .movie_container {
	width: 720px;
	height: 405px;
	margin: 20px auto 20px auto;
}
.page-index .sec-04 .sec-inner .movie_container video {
	width: 720px;
	height: 405px;
}
.page-index .sec-04 .sec-inner .movie_container .movie_title {
	text-align: center;
}
.page-index .sec-04 .sec-inner .movie-list article a {
	display: block;
	color: #333333;
}
.page-index .sec-04 .sec-inner .movie-list article a figure figcaption p {
	font-feature-settings: "palt" 1;
	text-align: center;
}
.page-index .sec-04 .swiper-slide {
	margin: 30px 0;
	transition: all 0.75s ease 0s;
	transform: scale(0.9);
}
.page-index .sec-04 .swiper-slide .fukidashi {
	margin-top: 20px;
}
.page-index .sec-04 .swiper-slide img {
	width: 85%;
	margin-top: 30px;
	margin-bottom: 30px;
	border: 6px solid #fff;
	border-radius: 100%;
	box-shadow: 0px 3px 10px 3px rgba(130, 130, 130, 0.35);
}
.page-index .sec-04 .swiper-slide-active {
	transform: scale(1.2);
}

/*
#overview
トップ、商品情報
*/
.page-index .sec-05b .liq-01 {
	top: 200px;
	left: 80px;
}
.page-index .sec-05b .liq-02 {
	top: 35%;
	right: 80px;
}
.page-index .sec-05b .liq-03 {
	top: 55%;
	left: 90px;
}
.page-index .sec-05b .liq-04 {
	bottom: 20%;
	right: 180px;
}
.page-index .sec-05b .ic-08 {
	top: 100px;
	left: 200px;
	right: auto;
	width: 88px;
}
.page-index .sec-05b .ic-09 {
	display: none;
}
.page-index .sec-05b .ic-10 {
	top: auto;
	bottom: -30px;
	left: 180px;
	width: 69px;
	z-index: 2;
}
.page-index .sec-05b .ic-13 {
	top: 50%;
	left: auto;
	right: 200px;
	width: 96px;
}
.page-index .sec-05b .ic-14 {
	top: 70%;
	left: 180px;
	width: 83px;
}
.page-index .sec-05b #slide-02 .swiper-wrapper {
	justify-content: center;
}
.page-index .sec-05b .consul .title span {
	background: url(/baby/hohoemi/assets/img/common/title_line.png) center bottom repeat-x;
}
.page-index .sec-05b .consul .lead {
	margin: 0 auto;
}
.page-index .sec-05b .consul .bnr {
	margin-top: 15px;
}
.page-index .sec-05b #product-03 {
	margin-bottom: 0;
	padding-bottom: 0;
}
.page-index .sec-05b .product-banner {
	margin: 44px auto 0;
	width: 440px;
	text-align: center;
}
.page-index .sec-05b .product-banner__link {
	position: relative;
	display: block;
}
.page-index .sec-05b .product-banner__text {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	bottom: 105px;
	font-weight: bold;
	width: 100%;
	font-size: 26px;
	line-height: 1.1;
	color: #38b47b;
}
/*
#overview
トップ
*/
.page-index .sec-06 .liq-01 {
	top: 80px;
	left: 90px;
}
.page-index .sec-06 .ic-11 {
	top: auto;
	bottom: -50px;
	left: auto;
	right: 230px;
	width: 67px;
	z-index: 2;
}
.page-index .sec-06 .sec-inner.sec-inner-01 {
	padding-bottom: 30px;
}
.page-index .sec-06 .sec-inner.wide {
	width: 940px;
	padding-top: 0;
}
.page-index .sec-06 .sec-inner h2 {
	margin-bottom: 20px;
}
.page-index .sec-06 .banner-wrap {
	display: flex;
	flex-wrap: wrap;
}
.page-index .sec-06 .banner-wrap a {
	display: block;
	overflow: hidden;
	box-shadow: 0px 0px 8px 1px rgba(122, 122, 122, 0.5);
}
.page-index .sec-06 .banner-wrap a img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/*
#overview
トップ
*/
.page-index .sec-07 .sec-inner {
	padding-bottom: 110px;
}
.page-index .sec-07 .sns-wrap {
	margin-top: 25px;
	display: flex;
	justify-content: center;
}
.page-index .sec-07 .sns-wrap a {
	display: block;
	width: 57px;
	margin: 0 10px;
}

/*
#overview
トップ
*/
.page-index .sec-08 .sec-inner .title span {
	background: url(/baby/hohoemi/assets/img/common/title_line.png) center bottom repeat-x;
}

/*
#overview
トップ
*/

.page-index > .wrap {
	position: relative;
}
.page-index .sec-09 .title:before {
	content: "";
}
.page-index .sec-09 .chara {
	position: absolute;
}
.page-index .sec-09 .comingsoon {
	display: flex;
	justify-content: center;
	align-items: center;
}

/*
#overview
トップ
*/

/*
#overview
トップ
*/
.page-index .sec-11 .sec-inner {
	margin-top: 0;
	padding-top: 0;
}
.page-index .sec-11 .sec-inner .consul .title span {
	background: url(/baby/hohoemi/assets/img/common/title_line.png) center bottom repeat-x;
}
.page-index .sec-11 .sec-inner .consul .lead {
	margin: 0 auto;
}
.page-index .sec-11 .sec-inner .consul .bnr {
	margin-top: 15px;
}
.page-index .sec-11 .sec-inner .bnr {
	margin-top: 15px;
}

/*
#overview
トップ
*/
.page-index .sec-12 {
	overflow: hidden;
}
.page-index .sec-12 .section-body .list .container {
	overflow: visible;
}
.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure {
	height: 100%;
}
.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure .image img {
	width: 100%;
	height: 100%;
}
.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption {
	position: relative;
}
.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption .title {
	margin: 0;
	font-weight: 700;
}
.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption .lead {
	letter-spacing: 0.08em;
}
.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption .lead p {
	margin: 0;
	padding: 0;
}
.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption .lead dl {
	margin: 0;
	padding: 0;
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: auto;
	-ms-grid-columns: 10ch 1fr;
	grid-template: auto/10ch 1fr;
}
.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption .lead dl dt {
	-ms-grid-column: 1;
	grid-column: 1;
}
.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption .lead dl dd {
	-ms-grid-column: 2;
	grid-column: 2;
}
.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption .link .btn-text {
	margin-top: 0;
}
.page-index .sec-12 .section-body .list .container nav .button-prev.swiper-button-disabled {
	opacity: 0.3;
}
.page-index .sec-12 .section-body .list .container nav .button-next.swiper-button-disabled {
	opacity: 0.3;
}

/*
#overview
トップ
*/
.page-index .sec-13 .section-title .title {
	margin: 0 auto;
}
.page-index .sec-13 .section-body .image {
	margin: 0 auto;
}
.page-index .sec-13 .section-body .lead p {
	margin: 0;
	text-align: center;
	color: #ff8583;
	letter-spacing: 0.08em;
	font-weight: 700;
}
.page-index .sec-13 .section-body .link .btn-text {
	margin-top: 0;
}

/*
#overview
トップ
*/
.page-index .sec-14 .liq-01 {
	top: 110px;
	right: 160px;
}
.page-index .sec-14 .ic-07 {
	top: 75px;
	left: auto;
	right: 235px;
	width: 67px;
	height: 120px;
}
.page-index .sec-14 .sec-inner {
	padding-top: 70px;
	padding-bottom: 80px;
}
.page-index .sec-14 .sec-inner h2 {
	letter-spacing: 0;
}
.page-index .sec-14 .movie-wrap {
	display: flex;
	justify-content: space-between;
	width: 1080px;
	margin: 0 auto;
}
.page-index .sec-14 .movie-wrap .movie {
	width: 320px;
}
.page-index .sec-14 .movie-wrap .movie .btn-text {
	background-color: #cb862d;
}

/*
#overview
らくらくミルクの特徴
*/
.page-rakurakumilk-index .release-date {
	position: absolute;
	top: 15px;
	left: 10px;
}
.page-rakurakumilk-index .release-date img {
	width: 160px;
	height: auto;
	margin: 0;
}
.page-rakurakumilk-index .sec-00 {
	position: relative;
	width: 100%;
	padding: 0 10px 109px;
	margin: 0 auto;
}
.page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc {
	position: absolute;
	left: 25px;
	bottom: 80px;
	width: 410px;
}
.page-rakurakumilk-index .sec-00 .mv-wrap {
	position: relative;
	width: 100%;
	z-index: -1;
}
.page-rakurakumilk-index .sec-00 .mv-wrap h1 {
	position: absolute;
	margin: auto;
}
.page-rakurakumilk-index .sec-00 .mv-under2 .title-box .title {
	text-align: left;
}
.page-rakurakumilk-index .sec-00 .mv-under2 .lead p {
	margin: 0;
}
.page-rakurakumilk-index .sec-00 .mv-banner {
	position: absolute;
	left: 25px;
	bottom: 20px;
	width: 323px;
}
.page-rakurakumilk-index .sec-00 .mv-banner a {
	display: block;
}
.page-rakurakumilk-index .sec-00 .mv-banner a + a {
	margin-top: 10px;
}
.page-rakurakumilk-index .sec-00 .mv-banner_upper {
	position: absolute;
	right: 25px;
	bottom: 120px;
	width: 410px;
}
.page-rakurakumilk-index .sec-00 .liquid-box {
	bottom: 236px;
	left: 66px;
	width: 321px;
	height: 196px;
	z-index: -1;
}

.en .page-rakurakumilk-index .sec-00,
.vn .page-rakurakumilk-index .sec-00,
.kr .page-rakurakumilk-index .sec-00,
.cn .page-rakurakumilk-index .sec-00,
.tw .page-rakurakumilk-index .sec-00,
.th .page-rakurakumilk-index .sec-00,
.pt .page-rakurakumilk-index .sec-00 {
	position: relative;
	width: 100%;
	padding: 0 10px 109px;
	margin: 0 auto;
}
.en .page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc,
.vn .page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc,
.kr .page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc,
.cn .page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc,
.tw .page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc,
.th .page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc,
.pt .page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc {
	position: absolute;
	left: 25px;
	bottom: 80px;
	width: 410px;
}
.en .page-rakurakumilk-index .sec-00 .mv-wrap,
.vn .page-rakurakumilk-index .sec-00 .mv-wrap,
.kr .page-rakurakumilk-index .sec-00 .mv-wrap,
.cn .page-rakurakumilk-index .sec-00 .mv-wrap,
.tw .page-rakurakumilk-index .sec-00 .mv-wrap,
.th .page-rakurakumilk-index .sec-00 .mv-wrap,
.pt .page-rakurakumilk-index .sec-00 .mv-wrap {
	position: relative;
	width: 100%;
	z-index: -1;
}
.en .page-rakurakumilk-index .sec-00 .mv-wrap h1,
.vn .page-rakurakumilk-index .sec-00 .mv-wrap h1,
.kr .page-rakurakumilk-index .sec-00 .mv-wrap h1,
.cn .page-rakurakumilk-index .sec-00 .mv-wrap h1,
.tw .page-rakurakumilk-index .sec-00 .mv-wrap h1,
.th .page-rakurakumilk-index .sec-00 .mv-wrap h1,
.pt .page-rakurakumilk-index .sec-00 .mv-wrap h1 {
	position: absolute;
	margin: auto;
	height: auto;
}
.en .page-rakurakumilk-index .sec-00 .mv-btm,
.vn .page-rakurakumilk-index .sec-00 .mv-btm,
.kr .page-rakurakumilk-index .sec-00 .mv-btm,
.cn .page-rakurakumilk-index .sec-00 .mv-btm,
.tw .page-rakurakumilk-index .sec-00 .mv-btm,
.th .page-rakurakumilk-index .sec-00 .mv-btm,
.pt .page-rakurakumilk-index .sec-00 .mv-btm {
	position: relative;
	display: flex;
	align-items: flex-start;
	width: 800px;
	margin: 20px auto 0 auto;
	padding: 0 10px;
	z-index: 1;
}
.en .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
.vn .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
.kr .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
.cn .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
.tw .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
.th .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
.pt .page-rakurakumilk-index .sec-00 .mv-btm .img-01 {
	width: 185px;
}
.en .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap,
.vn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap,
.kr .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap,
.cn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap,
.tw .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap,
.th .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap,
.pt .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap {
	flex: 1;
	position: relative;
	padding-top: 130px;
}
.en .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2,
.vn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2,
.kr .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2,
.cn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2,
.tw .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2,
.th .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2,
.pt .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2 {
	text-align: left;
}
.en .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2 span,
.vn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2 span,
.kr .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2 span,
.cn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2 span,
.tw .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2 span,
.th .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2 span,
.pt .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2 span {
	background: url("/baby/hohoemi/assets/img/common/title_line.png") center bottom repeat-x;
}
.en .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
.vn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
.kr .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
.cn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
.tw .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
.th .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
.pt .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02 {
	float: right;
	width: 156px;
	margin-top: -18px;
	margin-left: 25px;
}
.en .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .note,
.vn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .note,
.kr .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .note,
.cn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .note,
.tw .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .note,
.th .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .note,
.pt .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .note {
	font-size: 1rem;
}
.en .page-rakurakumilk-index .sec-00 .mv-btm .mv-banner_line_sp,
.vn .page-rakurakumilk-index .sec-00 .mv-btm .mv-banner_line_sp,
.kr .page-rakurakumilk-index .sec-00 .mv-btm .mv-banner_line_sp,
.cn .page-rakurakumilk-index .sec-00 .mv-btm .mv-banner_line_sp,
.tw .page-rakurakumilk-index .sec-00 .mv-btm .mv-banner_line_sp,
.th .page-rakurakumilk-index .sec-00 .mv-btm .mv-banner_line_sp,
.pt .page-rakurakumilk-index .sec-00 .mv-btm .mv-banner_line_sp {
	position: relative;
	right: auto;
	bottom: auto;
	display: block;
	width: 100%;
	margin-top: 15px;
	margin-bottom: 50px;
}
.en .page-rakurakumilk-index .sec-00 .mv-banner,
.vn .page-rakurakumilk-index .sec-00 .mv-banner,
.kr .page-rakurakumilk-index .sec-00 .mv-banner,
.cn .page-rakurakumilk-index .sec-00 .mv-banner,
.tw .page-rakurakumilk-index .sec-00 .mv-banner,
.th .page-rakurakumilk-index .sec-00 .mv-banner,
.pt .page-rakurakumilk-index .sec-00 .mv-banner {
	position: absolute;
	left: 25px;
	bottom: 20px;
	width: 323px;
}
.en .page-rakurakumilk-index .sec-00 .mv-banner a,
.vn .page-rakurakumilk-index .sec-00 .mv-banner a,
.kr .page-rakurakumilk-index .sec-00 .mv-banner a,
.cn .page-rakurakumilk-index .sec-00 .mv-banner a,
.tw .page-rakurakumilk-index .sec-00 .mv-banner a,
.th .page-rakurakumilk-index .sec-00 .mv-banner a,
.pt .page-rakurakumilk-index .sec-00 .mv-banner a {
	display: block;
}
.en .page-rakurakumilk-index .sec-00 .mv-banner a + a,
.vn .page-rakurakumilk-index .sec-00 .mv-banner a + a,
.kr .page-rakurakumilk-index .sec-00 .mv-banner a + a,
.cn .page-rakurakumilk-index .sec-00 .mv-banner a + a,
.tw .page-rakurakumilk-index .sec-00 .mv-banner a + a,
.th .page-rakurakumilk-index .sec-00 .mv-banner a + a,
.pt .page-rakurakumilk-index .sec-00 .mv-banner a + a {
	margin-top: 10px;
}
.en .page-rakurakumilk-index .sec-00 .mv-banner_upper,
.vn .page-rakurakumilk-index .sec-00 .mv-banner_upper,
.kr .page-rakurakumilk-index .sec-00 .mv-banner_upper,
.cn .page-rakurakumilk-index .sec-00 .mv-banner_upper,
.tw .page-rakurakumilk-index .sec-00 .mv-banner_upper,
.th .page-rakurakumilk-index .sec-00 .mv-banner_upper,
.pt .page-rakurakumilk-index .sec-00 .mv-banner_upper {
	position: absolute;
	right: 25px;
	bottom: 120px;
	width: 410px;
}
.en .page-rakurakumilk-index .sec-00 .liquid-box,
.vn .page-rakurakumilk-index .sec-00 .liquid-box,
.kr .page-rakurakumilk-index .sec-00 .liquid-box,
.cn .page-rakurakumilk-index .sec-00 .liquid-box,
.tw .page-rakurakumilk-index .sec-00 .liquid-box,
.th .page-rakurakumilk-index .sec-00 .liquid-box,
.pt .page-rakurakumilk-index .sec-00 .liquid-box {
	bottom: 236px;
	left: 66px;
	width: 321px;
	height: 196px;
	z-index: -1;
}

/*
#overview
らくらくミルクトップ
*/
.page-rakurakumilk-index .sec-01 {
	position: relative;
}
.page-rakurakumilk-index .sec-01 .wave-box {
	top: -22px;
	bottom: 0;
	left: 0;
	position: relative;
	top: auto;
	background-color: #fff;
}
.page-rakurakumilk-index .sec-01 .liquid-box {
	top: 173px;
	right: 0px;
	width: 368px;
	height: 402px;
}
.page-rakurakumilk-index .sec-01 .bg-icon {
	top: -20px;
	left: 117px;
}
.page-rakurakumilk-index .sec-01 .sec-inner {
	position: relative;
	z-index: 2;
}
.page-rakurakumilk-index .sec-01 .head-wrap {
	position: relative;
	z-index: 1;
}
.page-rakurakumilk-index .sec-01 .head-wrap h2 {
	white-space: nowrap;
}
.page-rakurakumilk-index .sec-01 .lead p {
	margin: 0;
}
.page-rakurakumilk-index .sec-01 .link {
	position: relative;
	z-index: 2;
}

/*
#overview
らくらくミルクトップ
*/
.page-rakurakumilk-index .sec-02b .section-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
}
.page-rakurakumilk-index .sec-02b .section-title .sub img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.page-rakurakumilk-index .sec-02b .section-body {
	position: relative;
}
.page-rakurakumilk-index .sec-02b .section-body .flow {
	position: absolute;
	z-index: 1;
}
.page-rakurakumilk-index .sec-02b .section-body .bg-icon-box {
	position: absolute;
	z-index: 1;
}
.page-rakurakumilk-index .sec-02b .section-body .ill {
	position: absolute;
	z-index: 1;
}
.page-rakurakumilk-index .sec-02b .section-body .layout {
	position: relative;
	z-index: 2;
}
.page-rakurakumilk-index .sec-02b .section-body .layout .image {
	position: relative;
}
.page-rakurakumilk-index .sec-02b .section-body .layout .image img {
	position: relative;
	margin: 0;
}
.page-rakurakumilk-index .sec-02b .section-body .layout .lead p {
	margin: 0;
}
.page-rakurakumilk-index .sec-02b .section-body .layout .link p {
	margin: 0;
}
.page-rakurakumilk-index .sec-02b .section-body .layout .link p a {
	margin: 0 auto;
}

.en .page-rakurakumilk-index .sec-02 .bg-icon,
.vn .page-rakurakumilk-index .sec-02 .bg-icon,
.kr .page-rakurakumilk-index .sec-02 .bg-icon,
.cn .page-rakurakumilk-index .sec-02 .bg-icon,
.tw .page-rakurakumilk-index .sec-02 .bg-icon,
.th .page-rakurakumilk-index .sec-02 .bg-icon,
.pt .page-rakurakumilk-index .sec-02 .bg-icon {
	top: -95px;
	left: auto;
	right: 138px;
}
.en .page-rakurakumilk-index .sec-02 .ic-03,
.vn .page-rakurakumilk-index .sec-02 .ic-03,
.kr .page-rakurakumilk-index .sec-02 .ic-03,
.cn .page-rakurakumilk-index .sec-02 .ic-03,
.tw .page-rakurakumilk-index .sec-02 .ic-03,
.th .page-rakurakumilk-index .sec-02 .ic-03,
.pt .page-rakurakumilk-index .sec-02 .ic-03 {
	top: 52%;
	left: 160px;
	right: auto;
}
.en .page-rakurakumilk-index .sec-02 .nutrition-wrap,
.vn .page-rakurakumilk-index .sec-02 .nutrition-wrap,
.kr .page-rakurakumilk-index .sec-02 .nutrition-wrap,
.cn .page-rakurakumilk-index .sec-02 .nutrition-wrap,
.tw .page-rakurakumilk-index .sec-02 .nutrition-wrap,
.th .page-rakurakumilk-index .sec-02 .nutrition-wrap,
.pt .page-rakurakumilk-index .sec-02 .nutrition-wrap {
	margin-top: 10px;
}
.en .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition_chart,
.vn .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition_chart,
.kr .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition_chart,
.cn .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition_chart,
.tw .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition_chart,
.th .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition_chart,
.pt .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition_chart {
	display: block;
	width: 100%;
	height: auto;
}
.en .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-wrap,
.vn .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-wrap,
.kr .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-wrap,
.cn .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-wrap,
.tw .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-wrap,
.th .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-wrap,
.pt .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-wrap {
	display: flex;
}
.en .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body,
.vn .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body,
.kr .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body,
.cn .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body,
.tw .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body,
.th .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body,
.pt .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body {
	overflow-x: scroll;
}
.en .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table,
.vn .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table,
.kr .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table,
.cn .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table,
.tw .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table,
.th .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table,
.pt .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table {
	margin-left: -4px;
}
.en .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table .w0,
.vn .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table .w0,
.kr .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table .w0,
.cn .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table .w0,
.tw .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table .w0,
.th .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table .w0,
.pt .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table .w0 {
	width: 0;
	padding-left: 0;
	padding-right: 0;
	min-width: inherit;
}
.en .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table td,
.vn .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table td,
.kr .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table td,
.cn .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table td,
.tw .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table td,
.th .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table td,
.pt .page-rakurakumilk-index .sec-02 .nutrition-wrap .table-body .nutrition-table td {
	min-width: 100px;
	text-align: right;
}
.en .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table th,
.en .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table td,
.vn .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table th,
.vn .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table td,
.kr .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table th,
.kr .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table td,
.cn .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table th,
.cn .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table td,
.tw .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table th,
.tw .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table td,
.th .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table th,
.th .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table td,
.pt .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table th,
.pt .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table td {
	border: 2px solid #ff8583;
	white-space: nowrap;
	background-color: #fff;
}
.en .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table td.strong,
.vn .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table td.strong,
.kr .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table td.strong,
.cn .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table td.strong,
.tw .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table td.strong,
.th .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table td.strong,
.pt .page-rakurakumilk-index .sec-02 .nutrition-wrap .nutrition-table td.strong {
	color: #ff8583;
}

/*
#overview
らくらくミルクトップ
*/
.page-rakurakumilk-index .sec-03b .section-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
}
.page-rakurakumilk-index .sec-03b .section-title .sub img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.page-rakurakumilk-index .sec-03b .section-body {
	position: relative;
}
.page-rakurakumilk-index .sec-03b .section-body .bg-icon-box {
	position: absolute;
	z-index: 1;
}
.page-rakurakumilk-index .sec-03b .section-body .flow {
	position: absolute;
	z-index: 1;
}
.page-rakurakumilk-index .sec-03b .section-body .ill {
	position: absolute;
	z-index: 1;
}
.page-rakurakumilk-index .sec-03b .section-body .layout {
	position: relative;
	z-index: 2;
}
.page-rakurakumilk-index .sec-03b .section-body .layout .image img {
	margin: 0;
}
.page-rakurakumilk-index .sec-03b .section-body .layout .lead p {
	margin: 0;
}
.page-rakurakumilk-index .sec-03b .section-body .layout .lead p.note {
	padding-left: 2ch;
	position: relative;
}
.page-rakurakumilk-index .sec-03b .section-body .layout .lead p.note:before {
	content: "※";
	position: absolute;
	left: 0;
	top: 0;
}
.page-rakurakumilk-index .sec-03b .section-body .layout .link p {
	margin: 0;
}
.page-rakurakumilk-index .sec-03b .section-body .layout .link p a {
	margin: 0 auto;
}

.en .page-rakurakumilk-index .sec-03 .bg-icon.ic-04,
.vn .page-rakurakumilk-index .sec-03 .bg-icon.ic-04,
.kr .page-rakurakumilk-index .sec-03 .bg-icon.ic-04,
.cn .page-rakurakumilk-index .sec-03 .bg-icon.ic-04,
.tw .page-rakurakumilk-index .sec-03 .bg-icon.ic-04,
.th .page-rakurakumilk-index .sec-03 .bg-icon.ic-04,
.pt .page-rakurakumilk-index .sec-03 .bg-icon.ic-04 {
	top: 300px;
	right: 104px;
	left: auto;
}
.en .page-rakurakumilk-index .sec-03 .head-wrap,
.vn .page-rakurakumilk-index .sec-03 .head-wrap,
.kr .page-rakurakumilk-index .sec-03 .head-wrap,
.cn .page-rakurakumilk-index .sec-03 .head-wrap,
.tw .page-rakurakumilk-index .sec-03 .head-wrap,
.th .page-rakurakumilk-index .sec-03 .head-wrap,
.pt .page-rakurakumilk-index .sec-03 .head-wrap {
	position: relative;
}
.en .page-rakurakumilk-index .sec-03 .head-wrap .head-img,
.vn .page-rakurakumilk-index .sec-03 .head-wrap .head-img,
.kr .page-rakurakumilk-index .sec-03 .head-wrap .head-img,
.cn .page-rakurakumilk-index .sec-03 .head-wrap .head-img,
.tw .page-rakurakumilk-index .sec-03 .head-wrap .head-img,
.th .page-rakurakumilk-index .sec-03 .head-wrap .head-img,
.pt .page-rakurakumilk-index .sec-03 .head-wrap .head-img {
	position: absolute;
	top: -120px;
	left: 25px;
	width: 137px;
}
.en .page-rakurakumilk-index .sec-03 .head-wrap h2,
.vn .page-rakurakumilk-index .sec-03 .head-wrap h2,
.kr .page-rakurakumilk-index .sec-03 .head-wrap h2,
.cn .page-rakurakumilk-index .sec-03 .head-wrap h2,
.tw .page-rakurakumilk-index .sec-03 .head-wrap h2,
.th .page-rakurakumilk-index .sec-03 .head-wrap h2,
.pt .page-rakurakumilk-index .sec-03 .head-wrap h2 {
	margin-top: 20px;
	padding-left: 60px;
}
.en .page-rakurakumilk-index .sec-03 .point4-images-wrap,
.vn .page-rakurakumilk-index .sec-03 .point4-images-wrap,
.kr .page-rakurakumilk-index .sec-03 .point4-images-wrap,
.cn .page-rakurakumilk-index .sec-03 .point4-images-wrap,
.tw .page-rakurakumilk-index .sec-03 .point4-images-wrap,
.th .page-rakurakumilk-index .sec-03 .point4-images-wrap,
.pt .page-rakurakumilk-index .sec-03 .point4-images-wrap {
	margin-top: 60px;
	width: auto;
	display: flex;
}

.lang-en.page-rakurakumilk-index .sec-03b .section-body .layout .lead p.note,
.lang-pt.page-rakurakumilk-index .sec-03b .section-body .layout .lead p.note,
.lang-vn.page-rakurakumilk-index .sec-03b .section-body .layout .lead p.note,
.lang-th.page-rakurakumilk-index .sec-03b .section-body .layout .lead p.note {
	padding-left: 1ch;
}
.lang-en.page-rakurakumilk-index .sec-03b .section-body .layout .lead p.note:before,
.lang-pt.page-rakurakumilk-index .sec-03b .section-body .layout .lead p.note:before,
.lang-vn.page-rakurakumilk-index .sec-03b .section-body .layout .lead p.note:before,
.lang-th.page-rakurakumilk-index .sec-03b .section-body .layout .lead p.note:before {
	content: "*";
}

/*
#overview
らくらくミルクトップ
*/
.page-rakurakumilk-index .sec-04b {
	position: relative;
	z-index: 0;
}
.page-rakurakumilk-index .sec-04b .section-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
}
.page-rakurakumilk-index .sec-04b .section-title .sub img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.page-rakurakumilk-index .sec-04b .section-body {
	position: relative;
}
.page-rakurakumilk-index .sec-04b .section-body .bg-icon-box {
	position: absolute;
	z-index: 1;
}
.page-rakurakumilk-index .sec-04b .section-body .link p {
	margin: 0;
}
.page-rakurakumilk-index .sec-04b .section-body .link p a {
	margin: 0 auto;
}

.en .page-rakurakumilk-index .sec-04 .liquid-box,
.vn .page-rakurakumilk-index .sec-04 .liquid-box,
.kr .page-rakurakumilk-index .sec-04 .liquid-box,
.cn .page-rakurakumilk-index .sec-04 .liquid-box,
.tw .page-rakurakumilk-index .sec-04 .liquid-box,
.th .page-rakurakumilk-index .sec-04 .liquid-box,
.pt .page-rakurakumilk-index .sec-04 .liquid-box {
	top: 100px;
	right: 0;
	width: 326px;
	height: 327px;
}
.en .page-rakurakumilk-index .sec-04 .liquid-box.liq-02,
.vn .page-rakurakumilk-index .sec-04 .liquid-box.liq-02,
.kr .page-rakurakumilk-index .sec-04 .liquid-box.liq-02,
.cn .page-rakurakumilk-index .sec-04 .liquid-box.liq-02,
.tw .page-rakurakumilk-index .sec-04 .liquid-box.liq-02,
.th .page-rakurakumilk-index .sec-04 .liquid-box.liq-02,
.pt .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 {
	top: 40%;
	left: 91px;
	width: 250px;
	height: 197px;
}
.en .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 img,
.vn .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 img,
.kr .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 img,
.cn .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 img,
.tw .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 img,
.th .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 img,
.pt .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 img {
	left: auto;
	right: 0;
}
.en .page-rakurakumilk-index .sec-04 .bg-icon,
.vn .page-rakurakumilk-index .sec-04 .bg-icon,
.kr .page-rakurakumilk-index .sec-04 .bg-icon,
.cn .page-rakurakumilk-index .sec-04 .bg-icon,
.tw .page-rakurakumilk-index .sec-04 .bg-icon,
.th .page-rakurakumilk-index .sec-04 .bg-icon,
.pt .page-rakurakumilk-index .sec-04 .bg-icon {
	top: -20px;
	right: 210px;
	left: auto;
}
.en .page-rakurakumilk-index .sec-04 .ic-06,
.vn .page-rakurakumilk-index .sec-04 .ic-06,
.kr .page-rakurakumilk-index .sec-04 .ic-06,
.cn .page-rakurakumilk-index .sec-04 .ic-06,
.tw .page-rakurakumilk-index .sec-04 .ic-06,
.th .page-rakurakumilk-index .sec-04 .ic-06,
.pt .page-rakurakumilk-index .sec-04 .ic-06 {
	top: 68%;
	left: 166px;
	right: auto;
}

/*
#overview
らくらくミルクトップ
*/
.page-rakurakumilk-index .sec-05 .sec-inner {
	padding-top: 70px;
}
.page-rakurakumilk-index .sec-05 .liquid-box {
	top: 100px;
	right: 0;
	width: 326px;
	height: 327px;
}
.page-rakurakumilk-index .sec-05 .liquid-box.liq-02 {
	top: 40%;
	left: 91px;
	width: 250px;
	height: 197px;
}
.page-rakurakumilk-index .sec-05 .liquid-box.liq-02 img {
	left: auto;
	right: 0;
}
.page-rakurakumilk-index .sec-05 .bg-icon {
	top: -20px;
	right: 210px;
	left: auto;
}
.page-rakurakumilk-index .sec-05 .ic-06 {
	top: 68%;
	left: 166px;
	right: auto;
}
.page-rakurakumilk-index .sec-05 h2 {
	margin-top: 10px;
}
.page-rakurakumilk-index .sec-05 .prod-img {
	width: 228px;
	margin-left: 143px;
	margin-right: auto;
}
.page-rakurakumilk-index .sec-05 .prod-title-img {
	margin-top: 20px;
}
.page-rakurakumilk-index .sec-05 p {
	text-align: center;
}
.page-rakurakumilk-index .sec-05 p + .btn-text {
	margin-top: 60px;
}

/*
#overview
らくらくミルクトップ
*/
.page-rakurakumilk-index .sec-06 .section-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
}
.page-rakurakumilk-index .sec-06 .section-title .sub img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.page-rakurakumilk-index .sec-06 .section-title .title {
	color: #6bc2c5;
}
.page-rakurakumilk-index .sec-06 .section-body .list {
	margin: 0 auto;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-title {
	background-color: #67c3c7;
	overflow: hidden;
	transition: all 0.5s;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title {
	margin: 0;
	text-align: left;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title a {
	position: relative;
	display: flex;
	align-items: center;
	color: #ffffff;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title a:hover {
	opacity: 1;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title a i.q {
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title a i.sign {
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title a i.sign .bar {
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: block;
	background-color: #ffffff;
	transition: all 0.5s;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title a i.sign .bar.b2 {
	transform: rotate(90deg);
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body {
	--height: 0;
	background-color: #fff1d2;
	overflow: hidden;
	transition: height 0.5s;
	height: var(--height);
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout {
	display: flex;
	align-items: center;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout i.icon {
	flex-shrink: 0;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content {
	flex-grow: 1;
	font-weight: 600;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content a {
	color: #ff8583;
	text-decoration: underline;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content p {
	margin: 0;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ul {
	margin: 0;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ul.dot li {
	padding-left: 1.1em;
	position: relative;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ul.dot li:before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ul.note li {
	padding-left: 1.1em;
	position: relative;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ul.note li:before {
	content: "※";
	position: absolute;
	left: 0;
	top: 0;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ol.circle-number > li {
	position: relative;
	padding-left: 1.1em;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ol.circle-number > li:before {
	position: absolute;
	left: 0;
	top: 0;
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ol.circle-number > li:nth-child(1):before {
	content: "①";
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ol.circle-number > li:nth-child(2):before {
	content: "②";
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ol.circle-number > li:nth-child(3):before {
	content: "③";
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ol.circle-number > li:nth-child(4):before {
	content: "④";
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ol.circle-number > li:nth-child(5):before {
	content: "⑤";
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ol.circle-number > li:nth-child(6):before {
	content: "⑥";
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ol.circle-number > li:nth-child(7):before {
	content: "⑦";
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ol.circle-number > li:nth-child(8):before {
	content: "⑧";
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ol.circle-number > li:nth-child(9):before {
	content: "⑨";
}
.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content ol.circle-number > li:nth-child(10):before {
	content: "⑩";
}
.page-rakurakumilk-index .sec-06 .section-body .list article.active .article-title h3.title a i.sign .bar.b2 {
	width: 0;
}

/*
#overview
らくらくミルク使い方
*/
.page-rakurakumilk-usage .btn-movie {
	margin-top: 30px;
}
.page-rakurakumilk-usage .sec-01 {
	position: relative;
}
.page-rakurakumilk-usage .sec-01 .liquid-box {
	top: 160px;
	left: 91px;
	width: 348px;
	height: 212px;
}
.page-rakurakumilk-usage .sec-01 .liquid-box.liq-02 {
	top: 43%;
	left: auto;
	right: 145px;
	width: 251px;
	height: 198px;
}
.page-rakurakumilk-usage .sec-01 .liquid-box.liq-03 {
	top: 50%;
	left: 0;
	right: auto;
	width: 272px;
	height: 314px;
}
.page-rakurakumilk-usage .sec-01 .liquid-box.liq-03 img {
	left: auto;
	right: 0;
}
.page-rakurakumilk-usage .sec-01 .ic-01 {
	top: 170px;
	right: 113px;
	left: auto;
	width: auto;
}
.page-rakurakumilk-usage .sec-01 .ic-02 {
	top: 45%;
	right: auto;
	left: 115px;
	width: auto;
}
.page-rakurakumilk-usage .sec-01 .ic-03 {
	top: auto;
	bottom: 100px;
	right: 175px;
	left: auto;
	width: auto;
}
.page-rakurakumilk-usage .sec-01 .title {
	letter-spacing: -1px;
}
.page-rakurakumilk-usage .sec-01 .title span {
	background: url("/baby/hohoemi/assets/img/common/title_line.png") center bottom repeat-x;
}
.page-rakurakumilk-usage .sec-01 #step-01 .swiper-slide:nth-of-type(4) {
	padding: 8px 10px 0px 10px;
}
.page-rakurakumilk-usage .sec-01 #step-01 .swiper-slide:nth-of-type(4) .title {
	margin-top: 10px;
	line-height: 1.2;
}
.page-rakurakumilk-usage .sec-01 .box-dash {
	margin: 50px auto 0;
}
.page-rakurakumilk-usage .sec-01 .box-dash-inner .text-wrap {
	margin-top: 15px;
}
.page-rakurakumilk-usage .sec-01 .box-dash-inner .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;
}
.page-rakurakumilk-usage .sec-01 .box-dash-inner .text-wrap .text {
	margin: 3px 0 0 0;
}
.page-rakurakumilk-usage .sec-01 ul.list li {
	position: relative;
}
.page-rakurakumilk-usage .sec-01 ul.list.dot li:before {
	content: "";
	background-color: #ff8583;
	position: absolute;
	left: 0;
	display: block;
	border-radius: 50%;
}
.page-rakurakumilk-usage .sec-01 ul.list.caution li:before {
	content: "";
	position: absolute;
	left: 0;
}
.page-rakurakumilk-usage .readme {
	background-color: #ff8583;
}
.page-rakurakumilk-usage .readme .head {
	display: flex;
	justify-content: center;
	align-items: center;
}
.page-rakurakumilk-usage .readme .head i.icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-rakurakumilk-usage .readme .head .text {
	color: #ffffff;
	font-weight: 700;
	line-height: 1.1;
}
.page-rakurakumilk-usage .readme .body {
	background-color: #ffffff;
}
.page-rakurakumilk-usage .readme .body p {
	margin: 0;
	color: #ff8583;
	font-weight: 700;
}

/*
#overview
らくらくミルク使い方
*/
.page-rakurakumilk-usage .sec-02 {
	position: relative;
}
.page-rakurakumilk-usage .sec-02 .liquid-box {
	top: 130px;
	right: 91px;
	width: 315px;
	height: 314px;
}
.page-rakurakumilk-usage .sec-02 .liquid-box.liq-02 {
	top: 35%;
	left: 59px;
	right: auto;
	width: 319px;
	height: 303px;
}
.page-rakurakumilk-usage .sec-02 .liquid-box.liq-03 {
	top: auto;
	bottom: 10px;
	left: auto;
	right: 106px;
	width: 250px;
	height: 198px;
}
.page-rakurakumilk-usage .sec-02 .ic-04 {
	top: 230px;
	right: auto;
	left: 150px;
	width: auto;
}
.page-rakurakumilk-usage .sec-02 .ic-05 {
	top: 35%;
	left: auto;
	right: 127px;
	width: auto;
}
.page-rakurakumilk-usage .sec-02 .ic-06 {
	right: auto;
	left: 138px;
	top: auto;
	bottom: 200px;
	width: auto;
}
.page-rakurakumilk-usage .sec-02 .sec-inner {
	padding-top: 10px;
}
.page-rakurakumilk-usage .sec-02 .title {
	letter-spacing: -1px;
}
.page-rakurakumilk-usage .sec-02 .title.line-img {
	background: url("/baby/hohoemi/assets/img/rakurakumilk/usage/sec_01_title_line.png") center bottom no-repeat;
}
.page-rakurakumilk-usage .sec-02 .box-dash {
	margin: 50px auto 0;
}
.page-rakurakumilk-usage .sec-02 .box-dash-inner {
	padding-left: 70px;
	padding-right: 70px;
}
.page-rakurakumilk-usage .sec-02 .box-dash-inner .text-wrap {
	margin-top: 5px;
}
.page-rakurakumilk-usage .sec-02 .box-dash-inner .text-wrap .icon-ng {
	display: inline-block;
	width: 36px;
	height: 36px;
	margin: auto;
	margin-right: 10px;
}
.page-rakurakumilk-usage .sec-02 .box-dash-inner .text-wrap .text {
	font-size: 1.5rem;
	display: inline;
	margin: 0 0 0 0;
}
/*
#overview
らくらくミルク使い方
*/
.page-rakurakumilk-usage .sec-03 .sec-inner {
	z-index: 3;
}
.page-rakurakumilk-usage .sec-03 .liquid-box {
	top: auto;
	bottom: 30px;
	right: 45px;
	width: 185px;
	height: 179px;
}
.page-rakurakumilk-usage .sec-03 .ic-07 {
	top: auto;
	bottom: 30px;
	right: auto;
	left: 206px;
	width: auto;
}
.page-rakurakumilk-usage .sec-03 .chara-icon {
	left: auto;
	right: 210px;
	top: -50px;
	width: 160px;
}
.page-rakurakumilk-usage .sec-03 .sec-inner .bnr {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.page-rakurakumilk-usage .sec-03 .sec-inner .bnr a {
	display: block;
}

/*
#overview
らくらくミルク災害時に備えて
*/

/*
#overview
らくらくミルク災害時に備えて
*/
.page-rakurakumilk-disaster .btn-movie {
	margin-top: 30px;
}
.page-rakurakumilk-disaster .sec-01 {
	position: relative;
}
.page-rakurakumilk-disaster .sec-01 .liquid-box {
	top: 110px;
	left: auto;
	right: 67px;
}
.page-rakurakumilk-disaster .sec-01 .liquid-box.liq-02 {
	top: auto;
	bottom: 100px;
	right: auto;
	left: 168px;
}
.page-rakurakumilk-disaster .sec-01 .liquid-box.liq-02 img {
	left: auto;
	right: 0;
}
.page-rakurakumilk-disaster .sec-01 .ic-01 {
	top: 158px;
	left: 173px;
	width: auto;
}
.page-rakurakumilk-disaster .sec-01 .ic-02 {
	top: auto;
	left: auto;
	right: 143px;
	bottom: 47px;
	width: auto;
}
.page-rakurakumilk-disaster .sec-01 .sec-inner {
	padding-top: 20px;
	padding-bottom: 70px;
}
.page-rakurakumilk-disaster .sec-01 .title-m {
	line-height: 2;
}
.page-rakurakumilk-disaster .sec-01 .title-m + .title {
	margin-top: 50px;
}
.page-rakurakumilk-disaster .sec-01 .title {
	letter-spacing: -1px;
}
.page-rakurakumilk-disaster .sec-01 .title.line-img {
	background: url("/baby/hohoemi/assets/img/rakurakumilk/disaster/sec_01_title_line.png") center bottom no-repeat;
}
.page-rakurakumilk-disaster .sec-01 #step-01 .swiper-slide:nth-of-type(4) {
	padding: 8px 10px 0px 10px;
}
.page-rakurakumilk-disaster .sec-01 #step-01 .swiper-slide:nth-of-type(4) .title {
	margin-top: 10px;
	line-height: 1.2;
}
.page-rakurakumilk-disaster .sec-01 .before-wrap {
	width: 470px;
	height: 216px;
	margin: 50px auto 0;
	padding: 25px 25px 0;
	background: url("/baby/hohoemi/assets/img/rakurakumilk/disaster/sec_01_box.png") top center no-repeat;
}
.page-rakurakumilk-disaster .sec-01 .before-wrap .text-wrap {
	margin-top: 15px;
}
.page-rakurakumilk-disaster .sec-01 .before-wrap .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;
}
.page-rakurakumilk-disaster .sec-01 .before-wrap .text-wrap .text {
	margin: 3px 0 0 0;
}
.page-rakurakumilk-disaster .sec-01 .sec-inner .movie .btn-movie {
	border-radius: 10px;
}
.page-rakurakumilk-disaster .sec-01 .sec-inner .movie .btn-movie img {
	border-radius: 10px;
}
/*
#overview
らくらくミルク災害時に備えて
*/
.page-rakurakumilk-disaster .sec-02 {
	position: relative;
}
.page-rakurakumilk-disaster .sec-02 .liquid-box {
	top: 320px;
	left: auto;
	right: 0px;
}
.page-rakurakumilk-disaster .sec-02 .liquid-box.liq-02 {
	top: 44%;
	right: auto;
	left: 29px;
}
.page-rakurakumilk-disaster .sec-02 .liquid-box.liq-03 {
	top: auto;
	bottom: 400px;
	left: auto;
	right: 0;
	width: 314px;
	height: 327px;
}
.page-rakurakumilk-disaster .sec-02 .ic-03 {
	top: 450px;
	left: 136px;
	width: auto;
}
.page-rakurakumilk-disaster .sec-02 .ic-04 {
	top: auto;
	left: auto;
	right: 216px;
	bottom: 370px;
	width: auto;
}
.page-rakurakumilk-disaster .sec-02 .sec-inner {
	padding-top: 10px;
	padding-bottom: 80px;
}
.page-rakurakumilk-disaster .sec-02 .title-01 {
	background: url("/baby/hohoemi/assets/img/rakurakumilk/disaster/sec_02_title_line_01.png") center bottom no-repeat;
}
.page-rakurakumilk-disaster .sec-02 .title-02 {
	background: url("/baby/hohoemi/assets/img/rakurakumilk/disaster/sec_02_title_line_02.png") center bottom no-repeat;
}
.page-rakurakumilk-disaster .sec-02 .title-03 {
	margin-top: 100px;
}
.page-rakurakumilk-disaster .sec-02 .title-03 + .title-s {
	margin-top: 30px;
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 2;
}
.page-rakurakumilk-disaster .sec-02 strong {
	display: block;
	text-align: center;
	margin-top: 30px;
	font-size: 2rem;
}
.page-rakurakumilk-disaster .sec-02 strong + .title {
	margin-top: 90px;
}
.page-rakurakumilk-disaster .sec-02 .img-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 45px -34px 0;
}
.page-rakurakumilk-disaster .sec-02 .img-wrap:after {
	display: none;
}
.page-rakurakumilk-disaster .sec-02 .img-wrap img {
	margin: 0;
	width: 154px;
}
.page-rakurakumilk-disaster .sec-02 .img-wrap + p {
	margin-top: 25px;
}
.page-rakurakumilk-disaster .sec-02 .img-wrap.btn-list {
	margin-top: 15px;
	margin-left: -67.5px;
	margin-right: -67.5px;
}
.page-rakurakumilk-disaster .sec-02 .img-wrap.btn-list a {
	display: block;
}
.page-rakurakumilk-disaster .sec-02 .img-wrap.btn-list img {
	margin: 0;
	margin-top: 14px;
	width: 293px;
}
.page-rakurakumilk-disaster .sec-02 .img-stock {
	width: 395px;
	margin-top: 45px;
}
.page-rakurakumilk-disaster .sec-02 .img-stock + p {
	margin-top: 50px;
}
.page-rakurakumilk-disaster .sec-02 .attachment .title {
	display: flex;
	justify-content: center;
}
.page-rakurakumilk-disaster .sec-02 .attachment .title span {
	display: block;
	position: relative;
	padding: 0 0.5em;
}
.page-rakurakumilk-disaster .sec-02 .attachment .title span:before {
	content: "";
	position: absolute;
	margin: auto;
	left: 0;
	top: -2em;
	bottom: -2em;
	width: 2px;
	height: 1.4em;
	background: #ff8583;
	transform: rotate(-30deg);
}
.page-rakurakumilk-disaster .sec-02 .attachment .title span:after {
	content: "";
	position: absolute;
	margin: auto;
	right: 0;
	top: -2em;
	bottom: -2em;
	width: 2px;
	height: 1.4em;
	background: #ff8583;
	transform: rotate(30deg);
}
.page-rakurakumilk-disaster .sec-02 .attachment .bnr {
	margin-top: 1em;
}

/*
#overview
らくらくミルク災害時に備えて
*/
.page-rakurakumilk-disaster .sec-03 {
	position: relative;
}
.page-rakurakumilk-disaster .sec-03 .liquid-box {
	top: 173px;
	left: 0;
	width: 347px;
	height: 276px;
}
.page-rakurakumilk-disaster .sec-03 .liquid-box img {
	left: auto;
	right: 0;
}
.page-rakurakumilk-disaster .sec-03 .ic-05 {
	top: -30px;
	left: 157px;
	width: auto;
}
.page-rakurakumilk-disaster .sec-03 .ic-06 {
	top: 300px;
	left: auto;
	right: 157px;
	width: auto;
	z-index: 3;
}
.page-rakurakumilk-disaster .sec-03 .ic-07 {
	top: auto;
	bottom: 450px;
	left: 127px;
	width: auto;
}
.page-rakurakumilk-disaster .sec-03 .ic-08 {
	top: auto;
	left: auto;
	right: 143px;
	bottom: 100px;
	width: auto;
}
.page-rakurakumilk-disaster .sec-03 .sec-inner {
	padding-top: 70px;
	z-index: 3;
}
.page-rakurakumilk-disaster .sec-03 .title {
	letter-spacing: -1px;
}
.page-rakurakumilk-disaster .sec-03 .title.line-img span {
	background: url("/baby/hohoemi/assets/img/common/title_line.png") center bottom repeat-x;
}
.page-rakurakumilk-disaster .sec-03 .ng-wrap {
	width: 468px;
	height: 241px;
	margin: 50px auto 0;
	padding: 25px 70px 0;
	background: url("/baby/hohoemi/assets/img/rakurakumilk/usage/sec_02_box.png") center center no-repeat;
}
.page-rakurakumilk-disaster .sec-03 .ng-wrap .text-wrap {
	margin-top: 5px;
}
.page-rakurakumilk-disaster .sec-03 .ng-wrap .text-wrap .icon-ng {
	display: inline-block;
	width: 36px;
	height: 36px;
	margin: auto;
	margin-right: 10px;
}
.page-rakurakumilk-disaster .sec-03 .ng-wrap .text-wrap .text {
	font-size: 1.5rem;
	display: inline-block;
	margin: 0 0 0 0;
}
.page-rakurakumilk-disaster .sec-03 .slide-wrap {
	margin-bottom: 38px;
}
.page-rakurakumilk-disaster .sec-03 .sec-inner .bnr {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.page-rakurakumilk-disaster .sec-03 .sec-inner .bnr a {
	display: block;
}

/*
#overview
らくらくミルク災害時に備えて
*/
.page-rakurakumilk-disaster .sec-04 {
	position: relative;
}
.page-rakurakumilk-disaster .sec-04 .liquid-box {
	top: 0px;
	right: 14px;
}
.page-rakurakumilk-disaster .sec-04 .sec-inner {
	padding-top: 10px;
}
.page-rakurakumilk-disaster .sec-04 .title {
	letter-spacing: -1px;
}
.page-rakurakumilk-disaster .sec-04 .title.line-img {
	background: url("/baby/hohoemi/assets/img/rakurakumilk/usage/sec_01_title_line.png") center bottom no-repeat;
}
.page-rakurakumilk-disaster .sec-04 .ng-wrap {
	width: 468px;
	height: 241px;
	margin: 50px auto 0;
	padding: 25px 70px 0;
	background: url("/baby/hohoemi/assets/img/rakurakumilk/usage/sec_02_box.png") center center no-repeat;
}
.page-rakurakumilk-disaster .sec-04 .ng-wrap .text-wrap {
	margin-top: 5px;
}
.page-rakurakumilk-disaster .sec-04 .ng-wrap .text-wrap .icon-ng {
	display: inline-block;
	width: 36px;
	height: 36px;
	margin: auto;
	margin-right: 10px;
}
.page-rakurakumilk-disaster .sec-04 .ng-wrap .text-wrap .text {
	font-size: 1.5rem;
	display: inline-block;
	margin: 0 0 0 0;
}
.page-rakurakumilk-disaster .sec-04.sec-bottom {
	margin-top: 80px;
}

/*
#overview
アレンジレシピ
*/
.page-rakurakumilk-recipe .sec-inner .sec-img {
	max-width: 510px;
	margin-top: 20px;
	margin-left: -20px;
	margin-right: -20px;
}
.page-rakurakumilk-recipe .sec-00 .img-wrap {
	position: absolute;
	bottom: -310px;
	left: 0;
	right: 0;
	width: 430px;
	height: 380px;
	margin: auto;
}

/*
#overview
アレンジレシピ
*/
.page-rakurakumilk-recipe .sec-01 .liq-01 {
	top: 120px;
	right: 180px;
}
.page-rakurakumilk-recipe .sec-01 .ic-01 {
	top: auto;
	bottom: -40px;
	left: auto;
	right: 150px;
	z-index: 2;
	width: 88px;
}
.page-rakurakumilk-recipe .sec-01 .wave-box {
	background-color: transparent;
	position: relative;
	top: 1px;
}

/*
#overview
アレンジレシピ
*/
.page-rakurakumilk-recipe .sec-02 .liq-01 {
	top: 30%;
	left: 130px;
}
.page-rakurakumilk-recipe .sec-02 .liq-02 {
	bottom: 25%;
	right: 100px;
}
.page-rakurakumilk-recipe .sec-02 .ic-01 {
	top: -130px;
	left: 165px;
	width: 69px;
}
.page-rakurakumilk-recipe .sec-02 .ic-02 {
	top: -50px;
	left: auto;
	right: 120px;
	width: 88px;
}
.page-rakurakumilk-recipe .sec-02 .ic-03 {
	bottom: -50px;
	left: 180px;
	width: 83px;
	z-index: 10;
}
.page-rakurakumilk-recipe .sec-02 .ic-04 {
	top: auto;
	bottom: -200px;
	left: auto;
	right: 160px;
	width: 65px;
	z-index: 10;
}
.page-rakurakumilk-recipe .sec-02 .ic-05 {
	top: auto;
	left: auto;
	bottom: 210px;
	right: 136px;
	width: 96px;
}
.page-rakurakumilk-recipe .sec-02 .recipe-sorter {
	display: flex;
	flex-wrap: wrap;
	margin: 50px auto;
}
.page-rakurakumilk-recipe .sec-02 .recipe-sorter a {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #ff8583;
	color: #ffffff;
	font-weight: bold;
	background-color: #ff8583;
	text-align: center;
}
.page-rakurakumilk-recipe .sec-02 .recipe-sorter a.active {
	background: #ffffff;
	color: #ff8583;
}
.page-rakurakumilk-recipe .sec-02 .recipe-list {
	display: flex;
	flex-wrap: wrap;
}
.page-rakurakumilk-recipe .sec-02 .bnr {
	padding: 0 0 50px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.page-rakurakumilk-recipe .sec-02 .bnr a {
	display: block;
}
.page-rakurakumilk-recipe .recipe-modal-test {
	background: rgba(0, 0, 0, 0.7);
}
.page-rakurakumilk-recipe .recipe-modal {
	background: #fff1d2;
	margin: 0 auto;
}
.page-rakurakumilk-recipe .mfp-content {
	margin-left: auto;
	margin-right: auto;
}

/*
#overview
アレンジレシピ
*/
.page-rakurakumilk-recipe .sec-03 .liq-01 {
	top: 230px;
	left: 230px;
}
.page-rakurakumilk-recipe .sec-03 .bnr {
	padding: 50px 0 0 0;
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.page-rakurakumilk-recipe .sec-03 .bnr a {
	display: block;
}

/*
#overview
らくらくミルク取扱店舗
*/
.page-rakurakumilk-mapping .sec-01 {
	position: relative;
}
.page-rakurakumilk-mapping .sec-01 .liquid-box {
	top: 110px;
	left: auto;
	right: 67px;
}
.page-rakurakumilk-mapping .sec-01 .liquid-box.liq-02 {
	top: auto;
	bottom: 100px;
	right: auto;
	left: 168px;
}
.page-rakurakumilk-mapping .sec-01 .liquid-box.liq-02 img {
	left: auto;
	right: 0;
}
.page-rakurakumilk-mapping .sec-01 .sec-inner {
	padding-top: 0;
}
.page-rakurakumilk-mapping .sec-01 .title-m {
	line-height: 2;
}
.page-rakurakumilk-mapping .sec-01 .title-m + .title {
	margin-top: 50px;
}
.page-rakurakumilk-mapping .sec-01 .title {
	letter-spacing: -1px;
	line-height: 2.2em;
}
.page-rakurakumilk-mapping .sec-01 .title.line-img {
	background: url("/baby/hohoemi/assets/img/rakurakumilk/disaster/sec_01_title_line.png") center bottom no-repeat;
}
.page-rakurakumilk-mapping .sec-01 #step-01 .swiper-slide:nth-of-type(4) {
	padding: 8px 10px 0px 10px;
}
.page-rakurakumilk-mapping .sec-01 #step-01 .swiper-slide:nth-of-type(4) .title {
	margin-top: 10px;
	line-height: 1.2;
}
.page-rakurakumilk-mapping .sec-01 .before-wrap {
	width: 470px;
	height: 216px;
	margin: 50px auto 0;
	padding: 25px 25px 0;
	background: url("/baby/hohoemi/assets/img/rakurakumilk/disaster/sec_01_box.png") top center no-repeat;
}
.page-rakurakumilk-mapping .sec-01 .before-wrap .text-wrap {
	margin-top: 15px;
}
.page-rakurakumilk-mapping .sec-01 .before-wrap .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;
}
.page-rakurakumilk-mapping .sec-01 .before-wrap .text-wrap .text {
	margin: 3px 0 0 0;
}
.page-rakurakumilk-mapping .sec-02 {
	position: relative;
}
.page-rakurakumilk-mapping .sec-02 .sec-inner > div + div {
	margin-top: 60px;
}
.page-rakurakumilk-mapping .sec-02 .liquid-box.liq-01 {
	top: 615px;
	left: 116px;
}
.page-rakurakumilk-mapping .sec-02 .liquid-box.liq-02 {
	top: 1467px;
	right: 85px;
}
.page-rakurakumilk-mapping .sec-02 .ic-01 {
	top: -43px;
	right: 164px;
	width: auto;
}
.page-rakurakumilk-mapping .sec-02 .ic-02 {
	top: 541px;
	left: 163px;
	width: auto;
}
.page-rakurakumilk-mapping .sec-02 .ic-03 {
	top: 1195px;
	right: 176px;
	width: auto;
}
.page-rakurakumilk-mapping .sec-02 .ic-04 {
	top: 1730px;
	left: 163px;
	width: auto;
}
.page-rakurakumilk-mapping .sec-02 .ic-05 {
	top: 2113px;
	right: 146px;
	width: auto;
}
.page-rakurakumilk-mapping .sec-02 .sec-inner {
	padding-top: 10px;
	padding-bottom: 80px;
}
.page-rakurakumilk-mapping .sec-02 strong {
	display: block;
	text-align: center;
	margin-top: 30px;
	font-size: 2rem;
}
.page-rakurakumilk-mapping .sec-02 strong + .title {
	margin-top: 90px;
}
.page-rakurakumilk-mapping .sec-02 .box-dash {
	background-color: #FFF;
}
.page-rakurakumilk-mapping .sec-02 .app-download-area .title {
	margin-bottom: 1em;
}
.page-rakurakumilk-mapping .sec-02 .app-download {
	position: relative;
	height: 100px;
	border: 3px solid #ff8583;
	border-radius: 16px;
	background-image: linear-gradient(-45deg, #ffd7dc 25%, #ffe2e6 25%, #ffe2e6 50%, #ffd7dc 50%, #ffd7dc 75%, #ffe2e6 75%, #ffe2e6);
	background-size: 16px 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.page-rakurakumilk-mapping .sec-02 .app-download .icon {
	width: 64px;
	height: 64px;
}
.page-rakurakumilk-mapping .sec-02 .app-download .head {
	margin-left: 8px;
	font-size: 17px;
	font-weight: bold;
	line-height: 1em;
	white-space: nowrap;
}
.page-rakurakumilk-mapping .sec-02 .app-download .head span {
	font-size: 11px;
}
.page-rakurakumilk-mapping .sec-02 .app-download .app-btn-wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-left: 8px;
}
.page-rakurakumilk-mapping .sec-02 .app-download .app-btn-wrapper a {
	display: block;
}
.page-rakurakumilk-mapping .sec-02 .app-download .app-btn-wrapper a + a {
	margin: 0 0 0 8px;
}
.page-rakurakumilk-mapping .sec-02 .app-download .app-btn-wrapper a.btn-app-store {
	width: 113px;
}
.page-rakurakumilk-mapping .sec-02 .app-download .app-btn-wrapper a.btn-google-play {
	width: 118px;
}
.page-rakurakumilk-mapping .sec-02 .box-border {
	border: 3px solid #ff8583;
	border-radius: 16px;
	background-color: #FFF;
	padding: 30px 0;
}
.page-rakurakumilk-mapping .sec-02 .box-dash-inner {
	padding: 40px 35px;
}
.page-rakurakumilk-mapping .sec-02 .box-dash .title, .page-rakurakumilk-mapping .sec-02 .box-border .title {
	margin-top: 0;
	margin-bottom: 1em;
}
.page-rakurakumilk-mapping .sec-02 .app-images > p {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.5em;
	margin-bottom: 2em;
}
.page-rakurakumilk-mapping .sec-02 .app-images ul {
	display: flex;
	justify-content: center;
}
.page-rakurakumilk-mapping .sec-02 .app-images ul li {
	width: 158px;
}
.page-rakurakumilk-mapping .sec-02 .app-images ul li + li {
	margin-left: 38px;
}
.page-rakurakumilk-mapping .sec-02 .app-images ul li .note {
	font-size: 11px;
	margin-top: 0.5em;
}
.page-rakurakumilk-mapping .sec-03 {
	position: relative;
}
.page-rakurakumilk-mapping .sec-03 .liq-01 {
	top: 121px;
	right: 121px;
}
.page-rakurakumilk-mapping .sec-03 .ic-06 {
	top: 361px;
	left: 224px;
	width: auto;
}
.page-rakurakumilk-mapping .sec-03 .sec-inner {
	padding-top: 70px;
	z-index: 3;
}
.page-rakurakumilk-mapping .sec-03 .title {
	letter-spacing: -1px;
}
.page-rakurakumilk-mapping .sec-03 .title.line-img span {
	background: url("/baby/hohoemi/assets/img/common/title_line.png") center bottom repeat-x;
}
.page-rakurakumilk-mapping .sec-03 .ng-wrap {
	width: 468px;
	height: 241px;
	margin: 50px auto 0;
	padding: 25px 70px 0;
	background: url("/baby/hohoemi/assets/img/rakurakumilk/usage/sec_02_box.png") center center no-repeat;
}
.page-rakurakumilk-mapping .sec-03 .ng-wrap .text-wrap {
	margin-top: 5px;
}
.page-rakurakumilk-mapping .sec-03 .ng-wrap .text-wrap .icon-ng {
	display: inline-block;
	width: 36px;
	height: 36px;
	margin: auto;
	margin-right: 10px;
}
.page-rakurakumilk-mapping .sec-03 .ng-wrap .text-wrap .text {
	font-size: 1.5rem;
	display: inline-block;
	margin: 0 0 0 0;
}
.page-rakurakumilk-mapping .sec-03 .slide-wrap {
	margin-bottom: 38px;
}

/*
#overview
らくらくミルクアタッチメントの使い方
*/
.page-rakurakumilk-attachment .sec-00 {
	position: relative;
	width: 100%;
	padding: 0 10px 109px;
	margin: 0 auto;
}
.page-rakurakumilk-attachment .sec-00 .hero-bg-inner .mv-banner_line_pc {
	position: absolute;
	left: 25px;
	bottom: 80px;
	width: 410px;
}
.page-rakurakumilk-attachment .sec-00 .mv-wrap {
	position: relative;
	width: 100%;
	z-index: -1;
}
.page-rakurakumilk-attachment .sec-00 .mv-wrap h1 {
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 5px;
	width: 514px;
	height: 167px;
}

/*
#overview
らくらくミルクアタッチメントの使い方
*/
.page-rakurakumilk-attachment .sec-title .board-title-wrap {
	background: url("/baby/hohoemi/assets/img/rakurakumilk/common/sec_01_head_title_bg2.png") left top repeat-x;
}
.page-rakurakumilk-attachment .btn-movie {
	margin-top: 30px;
}
.page-rakurakumilk-attachment .sec-01 {
	position: relative;
}

/*
#overview
らくらくミルクアタッチメントの使い方
*/
.page-rakurakumilk-attachment .sec-02 .sec-inner.ttl h2.title.large em {
	font-style: normal;
}
.page-rakurakumilk-attachment .sec-02 .sec-inner {
	display: flex;
	justify-content: center;
}
.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap {
	position: relative;
}
.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text {
	display: flex;
	justify-content: center;
}
.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text p {
	position: relative;
	z-index: 10;
}

.lang-en.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text,
.lang-cn.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text,
.lang-tw.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text,
.lang-kr.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text,
.lang-pt.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text,
.lang-vn.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text,
.lang-th.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text {
	margin: 0 auto;
}
/*
#overview
らくらくミルクアタッチメントの使い方
*/
.page-rakurakumilk-attachment .sec-03 {
	position: relative;
}
.page-rakurakumilk-attachment .sec-03 .section-body {
	position: relative;
	z-index: 10;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox {
	margin: 0 auto;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox:before {
	content: "";
	display: block;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-ttl {
	display: flex;
	justify-content: center;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-ttl h3 {
	margin: 0;
	color: #ffffff;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body {
	color: #ffffff;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl {
	display: flex;
	align-items: top;
	flex-wrap: wrap;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dt {
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	color: #ff8583;
	font-weight: bold;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dt:nth-child(1), .page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dt:nth-child(2) {
	margin-top: 0;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd:nth-child(1), .page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd:nth-child(2) {
	margin-top: 0;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd ul {
	margin: 1em 0 0 0;
	width: 100%;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd ul li {
	padding: 0 0 0 1.1em;
	position: relative;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd ul li + li {
	margin: 1em 0 0 0;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd ul li:before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note li {
	padding-left: 1.1em;
	position: relative;
	font-feature-settings: "palt";
	letter-spacing: 0em;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note li:before {
	content: "※";
	position: absolute;
	left: 0;
	top: 0;
}
.page-rakurakumilk-attachment .sec-03 .section-body .bgbox:after {
	content: "";
	display: block;
}

.lang-en.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl,
.lang-cn.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl,
.lang-tw.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl,
.lang-kr.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl,
.lang-pt.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl,
.lang-vn.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl,
.lang-th.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl {
	display: block;
}
.lang-en.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dt,
.lang-cn.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dt,
.lang-tw.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dt,
.lang-kr.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dt,
.lang-pt.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dt,
.lang-vn.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dt,
.lang-th.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dt {
	background: #ffffff;
	border-radius: 5px;
	font-size: 15px;
	line-height: 1;
	font-weight: bold;
	color: #ff8583;
	margin-right: 0;
	padding: 9px 0;
	width: auto;
	height: auto;
}
.lang-en.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
.lang-cn.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
.lang-tw.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
.lang-kr.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
.lang-pt.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
.lang-vn.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
.lang-th.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd {
	display: block;
}
.lang-en.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note,
.lang-cn.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note,
.lang-tw.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note,
.lang-kr.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note,
.lang-pt.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note,
.lang-vn.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note,
.lang-th.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note {
	padding: 0;
}

.lang-en.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note li:before,
.lang-pt.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note li:before,
.lang-vn.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note li:before,
.lang-th.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note li:before {
	content: "*";
}

/*
#overview
らくらくミルクアタッチメントの使い方
*/
.page-rakurakumilk-attachment .sec-04 {
	margin-top: 50px;
}
.page-rakurakumilk-attachment .sec-04 .sec-inner {
	padding-top: 0;
	padding-bottom: 0;
	position: relative;
}
.page-rakurakumilk-attachment .sec-04 .sec-inner .slide-wrap {
	margin-top: 0;
	margin-bottom: 0;
}
/*
#overview
らくらくミルクアタッチメントの使い方
*/
.page-rakurakumilk-attachment .sec-05 {
	display: none;
}
.page-rakurakumilk-attachment .sec-05 .sec-inner {
	padding-top: 0;
	position: relative;
}
.page-rakurakumilk-attachment .sec-05 .sec-inner .button {
	position: relative;
	z-index: 11;
}

/*
#overview
らくらくミルクアタッチメントの使い方
*/
.page-rakurakumilk-attachment .sec-06 .sec-inner {
	padding-top: 0;
	position: relative;
}
.page-rakurakumilk-attachment .sec-06 .sec-inner .button {
	position: relative;
	z-index: 11;
}

/*
#overview
らくらくミルクアタッチメントの使い方
*/
.page-rakurakumilk-attachment .sec-07 .btn-movie {
	border-radius: 10px;
	position: relative;
	z-index: 10;
}
.page-rakurakumilk-attachment .sec-07 .btn-movie img {
	border-radius: 10px;
}

/*
#overview
徹底した母乳研究
*/

/*
#overview
徹底した母乳研究
*/
.page-science .sec-01 .liq-01 {
	top: 80px;
	left: 80px;
}
.page-science .sec-01 .liq-02 {
	bottom: 150px;
	right: 96px;
}
.page-science .sec-01 .ic-01 {
	display: none;
}
.page-science .sec-01 .ic-05 {
	top: auto;
	bottom: -75px;
	left: 220px;
	right: auto;
	width: 68px;
	z-index: 2;
}
.page-science .sec-01 h2 {
	text-align: left;
}
.page-science .sec-01 h2 + p {
	margin-top: 20px;
}
.page-science .sec-01 .sec-img {
	width: 368px;
	margin-top: 20px;
}

/*
#overview
徹底した母乳研究
*/
.page-science .sec-02 .liq-01 {
	top: 226px;
	right: 136px;
}
.page-science .sec-02 .liq-02 {
	top: 50%;
	left: 65px;
}
.page-science .sec-02 .liq-03 {
	bottom: 190px;
	right: 90px;
}
.page-science .sec-02 .ic-02 {
	top: 55%;
	left: 160px;
	width: 77px;
}
.page-science .sec-02 .ic-03 {
	top: auto;
	bottom: 280px;
	left: auto;
	right: 160px;
	width: 65px;
}
.page-science .sec-02 .ic-06 {
	top: 475px;
	left: auto;
	right: 120px;
	width: 97px;
}
.page-science .sec-02 .head-feature {
	width: 133px;
}
.page-science .sec-02 .head-img {
	width: 55px;
}
.page-science .sec-02 .sec-img-01 {
	width: 320px;
	margin-top: 20px;
}
.page-science .sec-02 .small {
	width: 320px;
	margin-left: auto;
	margin-right: auto;
}
.page-science .sec-02 .sec-img-02 {
	margin-top: 20px;
}

/*
#overview
徹底した母乳研究
*/
.page-science .sec-03 .liq-01 {
	top: 25%;
	left: 200px;
}
.page-science .sec-03 .ic-04 {
	top: -50px;
	left: 230px;
	width: 73px;
	z-index: 2;
}

/*
#overview
適切な栄養設計
*/
.page-nutrition .sec-inner img {
	margin-top: 20px;
}
.page-nutrition .sec-inner img + img {
	margin-top: 30px;
}

/*
#overview
適切な栄養設計
*/
.page-nutrition .sec-01 .liq-01 {
	top: 80px;
	right: 150px;
}
.page-nutrition .sec-01 .ic-01 {
	top: auto;
	bottom: -30px;
	left: 180px;
	z-index: 2;
	width: 64px;
}
.page-nutrition .sec-01 .sec-inner.sec-inner-01 {
	padding-bottom: 0;
}
.page-nutrition .sec-01 .sec-inner.sec-inner-02 {
	max-width: 820px;
	padding-top: 0;
}
.page-nutrition .sec-01 h2 {
	text-align: left;
}
.page-nutrition .sec-01 h2 + p {
	margin-top: 20px;
}

/*
#overview
適切な栄養設計
*/
.page-nutrition .sec-02 .liq-01 {
	top: 200px;
	right: -50px;
}
.page-nutrition .sec-02 .liq-02 {
	bottom: 250px;
	left: 125px;
}
.page-nutrition .sec-02 .ic-02 {
	top: 50%;
	left: auto;
	right: 124px;
	width: 97px;
}
.page-nutrition .sec-02 .ic-03 {
	top: auto;
	bottom: 400px;
	left: 115px;
	width: 76px;
}
.page-nutrition .sec-02 .ic-04 {
	top: auto;
	bottom: -30px;
	left: auto;
	right: 160px;
	width: 97px;
	z-index: 2;
}
/*
#overview
適切な栄養設計
*/
.page-nutrition .sec-03 .liq-01 {
	top: 200px;
	right: 130px;
}
.page-nutrition .sec-03 .liq-02 {
	bottom: 200px;
	left: 150px;
}
.page-nutrition .sec-03 .ic-05 {
	top: 50%;
	left: 180px;
	width: 67px;
}
.page-nutrition .sec-03 .ic-06 {
	top: auto;
	left: auto;
	bottom: -30px;
	right: 190px;
	width: 88px;
	z-index: 2;
}

/*
#overview
適切な栄養設計
*/
.page-nutrition .sec-04 .liq-01 {
	top: 200px;
	right: 130px;
}
.page-nutrition .sec-04 .ic-07 {
	top: auto;
	left: 190px;
	bottom: -30px;
	width: 65px;
	z-index: 2;
}

/*
#overview
適切な栄養設計
*/
/*
#overview
適切な栄養設計
*/
.page-nutrition .sec-06 .liq-01 {
	top: 130px;
	right: 165px;
}
.page-nutrition .sec-06 .liq-02 {
	top: 305px;
	left: 137px;
}
.page-nutrition .sec-06 .ic-07 {
	top: auto;
	left: 190px;
	bottom: 60px;
	width: 65px;
	z-index: 2;
}

/*
#overview
適切な栄養設計
*/
.page-nutrition .sec-07 .liq-01 {
	top: 300px;
	right: 165px;
}
.page-nutrition .sec-07 .ic-03 {
	top: auto;
	left: 220px;
	bottom: -20px;
	width: 65px;
	z-index: 2;
}

/*
#overview
適切な栄養設計
*/
.page-nutrition .sec-08 .liq-01 {
	top: 130px;
	right: 165px;
}
.page-nutrition .sec-08 .liq-02 {
	top: 305px;
	left: 137px;
}
.page-nutrition .sec-08 .ic-07 {
	top: auto;
	left: 190px;
	bottom: 60px;
	width: 65px;
	z-index: 2;
}

/*
#overview
らくらくキューブの特徴
*/
.page-rakurakucube-index .sec-inner .sec-img {
	margin-top: 20px;
	border-radius: 18px;
}
.page-rakurakucube-index .sec-inner .btn-movie {
	margin-top: 20px;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0px 0px 8px 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 {
	max-width: 1100px;
}
.page-rakurakucube-index .sec-00 .hero-wrap .img-01 {
	position: absolute;
	bottom: -125px;
	right: 75px;
}

/*
#overview
らくらくキューブの特徴
*/
.page-rakurakucube-index .sec-01 .liq-01 {
	top: 120px;
	right: 180px;
}
.page-rakurakucube-index .sec-01 .ic-01 {
	top: auto;
	bottom: -40px;
	left: auto;
	right: 150px;
	z-index: 2;
	width: 88px;
}

/*
#overview
らくらくキューブの特徴
*/
.page-rakurakucube-index .sec-02 .liq-01 {
	top: 330px;
	left: 100px;
}
.page-rakurakucube-index .sec-02 .liq-02 {
	top: 50%;
	right: 200px;
}
.page-rakurakucube-index .sec-02 .liq-03 {
	bottom: 200px;
	left: 90px;
}
.page-rakurakucube-index .sec-02 .ic-02 {
	top: 30%;
	left: 140px;
	width: 83px;
}
.page-rakurakucube-index .sec-02 .ic-03 {
	top: 40%;
	left: auto;
	right: 141px;
	width: 69px;
}
.page-rakurakucube-index .sec-02 .ic-04 {
	top: 70%;
	left: 150px;
	width: 65px;
}
.page-rakurakucube-index .sec-02 .ic-05 {
	top: auto;
	left: auto;
	bottom: 210px;
	right: 136px;
	width: 96px;
}

/*
#overview
らくらくキューブの特徴
*/
.page-rakurakucube-index .sec-03 .liq-01 {
	top: 70px;
	right: 160px;
}
.page-rakurakucube-index .sec-03 .ic-06 {
	top: 60px;
	left: 200px;
	width: 69px;
}
.page-rakurakucube-index .sec-03 .bnr {
	padding: 50px 0 0 0;
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.page-rakurakucube-index .sec-03 .bnr a {
	display: block;
}

/*
#overview
らくらくキューブの使い方
*/

/*
#overview
らくらくキューブの使い方
*/
.page-rakurakucube-usage .btn-movie {
	margin-top: 30px;
}
.page-rakurakucube-usage .sec-01 .liq-01 {
	top: 100px;
	left: 175px;
}
.page-rakurakucube-usage .sec-01 .liq-02 {
	top: 50%;
	right: 55px;
}
.page-rakurakucube-usage .sec-01 .ic-01 {
	top: 240px;
	left: 110px;
	width: 88px;
}
.page-rakurakucube-usage .sec-01 .ic-02 {
	top: 50%;
	left: auto;
	right: 170px;
}
.page-rakurakucube-usage .sec-01 .box-dash {
	margin: 50px auto 0;
}
.page-rakurakucube-usage .sec-01 .box-dash-inner .text-wrap {
	margin-top: 15px;
}

/*
#overview
らくらくキューブの使い方
*/
.page-rakurakucube-usage .sec-02 .liq-01 {
	bottom: 100px;
	right: 150px;
}
.page-rakurakucube-usage .sec-02 .ic-03 {
	top: -30px;
	left: auto;
	right: 210px;
	width: 64px;
}
.page-rakurakucube-usage .sec-02 .sec-img {
	margin-top: 20px;
	border-radius: 10px;
}

/*
#overview
らくらくキューブの使い方
*/
.page-rakurakucube-usage .sec-03 .liq-01 {
	top: 80px;
	left: 70px;
}
.page-rakurakucube-usage .sec-03 .ic-04 {
	top: -30px;
	left: 180px;
	width: 97px;
}
.page-rakurakucube-usage .sec-03 .sec-inner {
	z-index: 3;
}
.page-rakurakucube-usage .sec-03 .sec-inner .bnr {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.page-rakurakucube-usage .sec-03 .sec-inner .bnr a {
	display: block;
}

/*
#overview
商品情報
*/
.page-product h1 {
	color: #ff8583;
}
.page-product .sec-01 .liq-01 {
	top: 130px;
	left: 140px;
}
.page-product .sec-01 .liq-02 {
	top: 25%;
	right: 90px;
}
.page-product .sec-01 .liq-03 {
	top: 45%;
	left: 30%;
}
.page-product .sec-01 .liq-04 {
	top: 55%;
	right: 200px;
}
.page-product .sec-01 .liq-05 {
	bottom: 20%;
	left: 100px;
}
.page-product .sec-01 .liq-06 {
	bottom: 200px;
	right: 200px;
}
.page-product .sec-01 .ic-01 {
	top: 300px;
	left: auto;
	right: 255px;
	width: 73px;
}
.page-product .sec-01 .ic-02 {
	display: none;
}
.page-product .sec-01 .ic-03 {
	top: 45%;
	left: 210px;
	width: 65px;
}
.page-product .sec-01 .ic-04 {
	top: auto;
	bottom: 60px;
	left: 250px;
	width: 96px;
}
.page-product .sec-01 .header-line {
	height: 9px;
	background: url("/baby/hohoemi/assets/img/rakurakumilk/common/sec_02_head_title_bg.png") left top repeat-x;
}
.page-product .sec-01 .sec-inner-01 {
	padding-top: 50px;
}
.page-product .sec-01 .head-img {
	width: 135px;
}
.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 {
	justify-content: center;
}
.page-product .sec-01 #slide-02-2 .swiper-slide {
	width: 25%;
}
.page-product .sec-01 #slide-03 .swiper-slide {
	width: 50%;
}
.page-product .sec-01 #slide-04 .swiper-slide {
	width: 25%;
}
.page-product .sec-01 .consul .title span {
	background: url(/baby/hohoemi/assets/img/common/title_line.png) center bottom repeat-x;
}
.page-product .sec-01 .consul .lead {
	margin: 0 auto;
}
.page-product .sec-01 .consul .bnr {
	margin-top: 15px;
}
.page-product .sec-01 .product-banner {
	margin: 44px auto 0;
	width: 440px;
	text-align: center;
}
.page-product .sec-01 .product-banner__link {
	position: relative;
	display: block;
}
.page-product .sec-01 .product-banner__text {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	bottom: 105px;
	font-weight: bold;
	width: 100%;
	font-size: 26px;
	line-height: 1.1;
	color: #38b47b;
}

/*
#overview
混合栄養にする時は？
*/

/*
#overview
混合栄養にする時は？
*/
.page-mixed-feeding .sec-01 .liq-01 {
	top: 80px;
	left: 200px;
}
.page-mixed-feeding .sec-01 .liq-02 {
	top: 230px;
	right: 100px;
}
.page-mixed-feeding .sec-01 .liq-03 {
	top: 800px;
	left: 230px;
}
.page-mixed-feeding .sec-01 .liq-04 {
	top: 1200px;
	right: 100px;
}
.page-mixed-feeding .sec-01 .liq-05 {
	top: 1400px;
	left: 230px;
}
.page-mixed-feeding .sec-01 .liq-06 {
	top: 2000px;
	right: 100px;
}
.page-mixed-feeding .sec-01 .ic-01 {
	top: 40px;
	left: 190px;
	width: 83px;
}
.page-mixed-feeding .sec-01 .sec-inner.sec-inner-01 {
	padding-bottom: 0;
}
.page-mixed-feeding .sec-01 .sec-inner.narrow {
	padding-top: 0px;
	padding-bottom: 40px;
}
.page-mixed-feeding .sec-01 .num-title {
	position: relative;
	margin-top: 60px;
	padding: 13px 0;
	background: url("/baby/hohoemi/assets/img/common/title_line.png") center top repeat-x;
	font-size: 2rem;
}
.page-mixed-feeding .sec-01 .num-title:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	content: "";
	background-color: transparent;
	background: url("/baby/hohoemi/assets/img/common/title_line.png") center bottom repeat-x;
}
.page-mixed-feeding .sec-01 .num-title .num-img {
	display: inline-block;
	width: 40px;
	margin-right: 1rem;
	vertical-align: -12px;
}
.page-mixed-feeding .sec-01 .q5table {
	margin: 1em 0 0 0;
	border: 2px solid #ff8583;
	border-radius: 14px;
	padding: 40px 30px;
}
.page-mixed-feeding .sec-01 .q5table > .wrap {
	overflow: auto;
}
.page-mixed-feeding .sec-01 .q5table table {
	margin: 30px 0 0 0;
	width: 100%;
}
.page-mixed-feeding .sec-01 .q5table table th,
.page-mixed-feeding .sec-01 .q5table table td {
	border: 1px solid #bebebe;
	font-size: 12px;
}
.page-mixed-feeding .sec-01 .q5table table td {
	text-align: center;
}
.page-mixed-feeding .sec-01 .q5table table thead th {
	background: #fff2f2;
}
/*
#overview
混合栄養にする時は？
*/
.page-mixed-feeding .sec-02 .ic-02 {
	top: auto;
	left: auto;
	bottom: 60px;
	right: 280px;
	width: 97px;
}
.page-mixed-feeding .sec-02 .consul .title span {
	background: url(/baby/hohoemi/assets/img/common/title_line.png) center bottom repeat-x;
}
.page-mixed-feeding .sec-02 .consul .lead {
	margin: 0 auto;
}
.page-mixed-feeding .sec-02 .consul .bnr {
	margin-top: 15px;
}

/*
#overview
明治ほほえみの特徴
*/
.page-powder-index .sec-inner .sec-img {
	margin-top: 20px;
	border-radius: 22px;
}
.page-powder-index .sec-00 .hero-wrap {
	max-width: 1100px;
}
.page-powder-index .sec-00 .hero-wrap .title-wrap {
	display: block;
	padding-top: 40px;
}
.page-powder-index .sec-00 .hero-wrap .title-wrap h1 {
	font-size: 4.5rem;
}
.page-powder-index .sec-00 .hero-wrap .title-wrap .lead {
	margin-top: 0;
}
.page-powder-index .sec-00 .hero-wrap .img-01 {
	position: absolute;
	bottom: 40px;
	right: 290px;
	width: 116px;
	margin: 0 auto;
}
.page-powder-index .banner {
	position: absolute;
	bottom: 20px;
	right: 30px;
}
.page-powder-index .banner-pc {
	display: block;
}
.page-powder-index .banner-sp {
	display: none;
}
.page-powder-index .banner__link {
	position: relative;
}
.page-powder-index .banner__text {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	bottom: 63px;
	font-weight: bold;
	width: 100%;
	font-size: 19px;
	line-height: 1.1;
	color: #38b47b;
}
.page-powder-index .banner a {
	display: inline-block;
	transition: 0.3s;
}
.page-powder-index .banner a:hover {
	opacity: 0.7;
}
.page-powder-index .banner img {
	display: inline-block;
	width: 280px;
	height: 100px;
	border-radius: 8px;
}

/*
#overview
明治ほほえみの特徴
*/
.page-powder-index .sec-01 .liq-01 {
	top: 130px;
	right: 180px;
}

/*
#overview
明治ほほえみの特徴
*/
.page-powder-index .sec-02 .liq-01 {
	top: 330px;
	left: 100px;
}
.page-powder-index .sec-02 .liq-02 {
	top: 50%;
	right: 200px;
}
.page-powder-index .sec-02 .liq-03 {
	bottom: 200px;
	left: 90px;
}
.page-powder-index .sec-02 .ic-01 {
	top: -30px;
	left: auto;
	right: 150px;
	width: 88px;
}
.page-powder-index .sec-02 .ic-02 {
	top: 30%;
	left: 140px;
	width: 83px;
}
.page-powder-index .sec-02 .ic-03 {
	top: 45%;
	left: auto;
	right: 140px;
	width: 69px;
}
.page-powder-index .sec-02 .ic-04 {
	top: 75%;
	left: 150px;
	width: 65px;
}
.page-powder-index .sec-02 .ic-05 {
	top: auto;
	left: auto;
	bottom: -30px;
	right: 140px;
	width: 96px;
	z-index: 2;
}

/*
#overview
明治ほほえみの特徴
*/
/*
#overview
明治ほほえみの使い方
*/

/*
#overview
明治ほほえみの使い方
*/
.page-powder-usage .sec-01 .liq-01 {
	top: 120px;
	right: 90px;
}
.page-powder-usage .sec-01 .liq-02 {
	top: 50%;
	left: 90px;
}
.page-powder-usage .sec-01 .ic-01 {
	top: 190px;
	left: 160px;
	width: 64px;
}
.page-powder-usage .sec-01 .ic-02 {
	top: 890px;
	left: auto;
	right: 170px;
	width: 69px;
}
.page-powder-usage .sec-01 .ic-03 {
	display: none;
}
.page-powder-usage .sec-01 .box-dash {
	margin: 30px auto 0;
}
.page-powder-usage .sec-01 .box-dash-inner .text-wrap {
	margin-top: 15px;
}

/*
#overview
明治ほほえみの使い方
*/
.page-powder-usage .sec-02 .liq-01 {
	top: 50px;
	right: 240px;
}
.page-powder-usage .sec-02 .ic-03 {
	top: 190px;
	left: 135px;
	width: 97px;
}

/*
#overview
環境に配慮した取り組み
*/
.page-powder-eco .sec-00 {
	margin-top: 0;
}
.page-powder-eco .sec-00 .hero-wrap .title-wrap {
	display: block;
	padding-top: 100px;
}
.page-powder-eco .sec-00 .hero-wrap .title-wrap h1 {
	font-size: 4.8rem;
	color: #38b47b;
}

.pt .sec-00 .hero-wrap .title-wrap {
	padding-top: 50px;
}

/*
#overview
環境に配慮した取り組み
*/
.page-powder-eco .sec-01 {
	position: relative;
	z-index: 2;
}
.page-powder-eco .sec-01 .sec-inner {
	padding: 85px 0;
}
.page-powder-eco .sec-01 .bg {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	height: 100%;
}
.page-powder-eco .sec-01 .bg .item {
	position: absolute;
	z-index: 3;
}
.page-powder-eco .sec-01 .bg .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-powder-eco .sec-01 .bg .item.cloud {
	animation: cloud 120s linear infinite;
}
.page-powder-eco .sec-01 .title {
	display: flex;
	justify-content: center;
	align-items: center;
}
.page-powder-eco .sec-01 .title .text {
	text-align: center;
	color: #ff8583;
	letter-spacing: 0.08em;
	font-weight: 700;
}
.page-powder-eco .sec-01 p {
	text-align: center;
	font-size: 16px;
}
.page-powder-eco .sec-02 {
	z-index: 0;
}

/*
#overview
環境に配慮した取り組み
*/
.page-powder-eco .sec-02 {
	z-index: 1;
}
.page-powder-eco .sec-02 .bg {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	height: 100%;
}
.page-powder-eco .sec-02 .bg .item {
	position: absolute;
	z-index: 3;
}
.page-powder-eco .sec-02 .bg .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-powder-eco .sec-02 .bg .item.cloud {
	animation: cloud 120s linear infinite;
}
.page-powder-eco .sec-02 .sec-inner {
	padding: 100px 0;
}
.page-powder-eco .sec-02__title {
	font-size: 34px;
}
.page-powder-eco .sec-02__wrap {
	margin: 48px 40px 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
}
.page-powder-eco .sec-02__wrap__box {
	width: 48%;
	text-align: center;
}
.page-powder-eco .sec-02__wrap__box__text {
	font-size: 16px;
}
.page-powder-eco .sec-02__wrap__box__text-sm {
	font-size: 13px;
}

/*
#overview
環境に配慮した取り組み
*/
.page-powder-eco .sec-03 {
	z-index: 0;
}
.page-powder-eco .sec-03 .bg {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	height: 100%;
}
.page-powder-eco .sec-03 .bg .item {
	position: absolute;
	z-index: 3;
}
.page-powder-eco .sec-03 .bg .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-powder-eco .sec-03 .bg .item.cloud {
	animation: cloud 120s linear infinite;
}
.page-powder-eco .sec-03 .sec-inner {
	padding: 70px 0;
}
.page-powder-eco .sec-03__title {
	font-size: 34px;
}
.page-powder-eco .sec-03 .a1 {
	margin-top: 78px;
}
.page-powder-eco .sec-03 .a1 .title {
	width: 181px;
	margin: 0 auto;
}
.page-powder-eco .sec-03 .a2 {
	margin-top: 90px;
	margin-bottom: 120px;
}
.page-powder-eco .sec-03 .a2 .title {
	width: 314px;
	margin: 0 auto;
}
.page-powder-eco .sec-03__wrap {
	margin: 58px 40px 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-wrap: wrap;
}
.page-powder-eco .sec-03__wrap__box {
	width: 50%;
	text-align: center;
}
.page-powder-eco .sec-03__wrap__box .image {
	margin: 0 auto;
}
.page-powder-eco .sec-03__wrap__box .image_01 {
	width: 170px;
}
.page-powder-eco .sec-03__wrap__box .image_03 {
	width: 175px;
}
.page-powder-eco .sec-03__wrap__box figure {
	font-size: 21px;
	font-weight: 600;
}
.page-powder-eco .sec-03__wrap__box .text-sm {
	font-size: 12px;
	margin-top: 10px;
	font-weight: 400;
}

/*
#overview
歴史
*/
.page-history .sec-inner .sec-img {
	max-width: 510px;
	margin-top: 20px;
	margin-left: -20px;
	margin-right: -20px;
}
.page-history .sec-00 .img-wrap {
	position: absolute;
	bottom: -310px;
	left: 0;
	right: 0;
	width: 430px;
	height: 380px;
	margin: auto;
}

/*
#overview
歴史
*/
.page-history .sec-01 .sec-inner > .lead p {
	text-align: center;
	font-weight: bold;
	color: #ff8583;
}
.page-history .sec-01 .wave-box {
	background-color: transparent;
	position: relative;
	top: 1px;
}

/*
#overview
アレンジレシピ
*/
.page-history .sec-02 .liq-01 {
	top: 800px;
	right: 100px;
}
.page-history .sec-02 .liq-02 {
	top: 1600px;
	left: 130px;
}
.page-history .sec-02 .liq-03 {
	top: 2400px;
	right: 100px;
}
.page-history .sec-02 .liq-04 {
	top: 3200px;
	left: 130px;
}
.page-history .sec-02 .sec-inner > .lead {
	position: relative;
}
.page-history .sec-02 .sec-inner > .lead .text p {
	text-align: center;
	font-weight: bold;
}
.page-history .sec-02 .sec-inner > .lead .intage p {
	text-align: center;
	font-weight: bold;
}
.page-history .sec-02 .sec-inner .list {
	margin: 30px auto 0 auto;
	overflow: hidden;
}
.page-history .sec-02 .sec-inner .list article {
	background-image: url("/baby/hohoemi/assets/img/history/sec_02_lis_bar_v.png");
	background-repeat: no-repeat;
}
.page-history .sec-02 .sec-inner .list article .year {
	margin: 0;
	background-image: url("/baby/hohoemi/assets/img/history/sec_02_lis_bar_h.png");
	background-repeat: no-repeat;
}
.page-history .sec-02 .sec-inner .list article .year span {
	display: block;
}
.page-history .sec-02 .sec-inner .list article .image {
	margin: 0;
}
.page-history .sec-02 .sec-inner .list article .image > img {
	margin: 0;
}
.page-history .sec-02 .sec-inner .list article .image figcaption .title {
	text-align: center;
}

/*
#overview
アレンジレシピ
*/
.page-history .sec-03 .liq-01 {
	top: 230px;
	left: 230px;
}
.page-history .sec-03 .bnr {
	padding: 50px 0 0 0;
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.page-history .sec-03 .bnr a {
	display: block;
}
.en .page-history .sec-03 .btn-text,
.vn .page-history .sec-03 .btn-text,
.th .page-history .sec-03 .btn-text,
.pt .page-history .sec-03 .btn-text {
	width: 370px;
}

/* page-hohoemi-4months
---------------------------------------------------------------------------- */
.page-hohoemi-4months {
	width: 100%;
	min-width: 1400px;
	color: #222;
	font-feature-settings: "palt";
}
.page-hohoemi-4months * {
	letter-spacing: 0.05em;
}
.page-hohoemi-4months img {
	display: initial;
	vertical-align: bottom;
}
.page-hohoemi-4months em {
	font-style: normal;
}
.page-hohoemi-4months .font-notosans {
	font-family: "Noto Sans JP", sans-serif;
}
.page-hohoemi-4months .font-mplus, .page-hohoemi-4months .sec-reason-heading-balloon, .page-hohoemi-4months .sec-reason-heading-icon > strong {
	font-family: "M PLUS 1p", sans-serif;
}
.page-hohoemi-4months .nopc {
	display: none !important;
}
.page-hohoemi-4months .nosp {
	display: block !important;
}
.page-hohoemi-4months .balloon {
	position: absolute;
	z-index: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 90px;
	background-color: #ff8583;
	border-radius: 50%;
	font-size: 1.8rem;
	line-height: 1.33;
	color: #fff;
	letter-spacing: 0.05em;
	font-weight: 500;
}
.page-hohoemi-4months .balloon::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 5px;
	z-index: -1;
	display: block;
	width: 39px;
	height: 24px;
	background-image: url(../img/4months/balloon_pink.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}
.page-hohoemi-4months .mv {
	position: relative;
	width: 100%;
	height: 1127px;
	background-image: url(../img/4months/mv_bg_pc.jpg);
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center top;
}
.page-hohoemi-4months .mv-inner {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
	max-width: 900px;
	height: 100%;
	margin: 0 auto;
	padding: 70px 0;
}
.page-hohoemi-4months .mv-title {
	width: 382px;
	height: 250px;
	font-size: 6rem;
	line-height: 1.1;
	color: #fb7472;
	font-weight: 700;
	white-space: nowrap;
	text-align: center;
}
.page-hohoemi-4months .mv-title-logo {
	display: block;
	margin-bottom: 30px;
	padding-right: 12px;
}
.page-hohoemi-4months .mv-lead {
	position: relative;
	width: 100%;
	text-align: center;
}
.page-hohoemi-4months .mv-lead-heading {
	position: relative;
	display: inline-block;
	font-size: 4rem;
	text-align: center;
}
.page-hohoemi-4months .mv-lead-heading::after {
	content: "";
	display: block;
	width: 100%;
	height: 10px;
	margin: 10px auto 0;
	background-image: url(../img/4months/title_underline_pink.png);
	background-repeat: repeat-x;
	background-position: center bottom;
	background-size: auto 100%;
}
.page-hohoemi-4months .mv-lead-heading > em {
	position: relative;
	display: inline-block;
}
.page-hohoemi-4months .mv-lead-heading > em::before {
	content: "";
	position: absolute;
	top: -12px;
	left: -5px;
	right: 0;
	display: block;
	width: 9px;
	height: 10px;
	margin: auto;
	background-image: url(../img/4months/title_dot_pink.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.page-hohoemi-4months .mv-lead-heading > em.dot-02::before {
	transform: rotate(45deg);
}
.page-hohoemi-4months .mv-lead-heading > em.dot-03::before {
	transform: rotate(90deg);
}
.page-hohoemi-4months .mv-lead-heading-balloon {
	top: -60px;
	left: -100px;
}
.page-hohoemi-4months .mv-lead-text {
	margin-top: 30px;
	font-size: 1.6rem;
	line-height: 2.375;
	text-align: center;
	font-weight: 500;
}
.page-hohoemi-4months .mv-lead-text > strong {
	font-size: 1.8rem;
}
.page-hohoemi-4months .mv-lead .bg-icon.ic-01 {
	top: -70px;
	right: -50px;
	width: auto;
}
.page-hohoemi-4months .mv-lead .bg-icon.ic-02 {
	top: 150px;
	left: -100px;
	width: auto;
}
.page-hohoemi-4months .mv-lead .bg-icon.ic-03 {
	top: 200px;
	right: -80px;
	width: auto;
}
.page-hohoemi-4months .mv .liquid-wrap .liquid-box.liq-01 {
	top: -100px;
	right: -100px;
}
.page-hohoemi-4months .mv .liquid-wrap .liquid-box.liq-02 {
	top: -30px;
	left: 30px;
}
.page-hohoemi-4months .mv .liquid-wrap .liquid-box.liq-03 {
	top: 500px;
	right: -100px;
}
.page-hohoemi-4months .mv .liquid-wrap .liquid-box.liq-04 {
	top: 800px;
	right: -40px;
}
.page-hohoemi-4months .mv .liquid-wrap .liquid-box.liq-05 {
	top: 800px;
	left: -80px;
}
.page-hohoemi-4months .sec {
	position: relative;
}
.page-hohoemi-4months .sec .wave-box {
	position: absolute;
	z-index: 1;
	top: -21px;
	left: 0;
	width: 100%;
	background-color: transparent;
}
.page-hohoemi-4months .sec .wave-box-bottom {
	top: auto;
	bottom: 0;
}
.page-hohoemi-4months .sec-inner {
	max-width: 980px;
	margin: 0 auto;
}
.page-hohoemi-4months .sec-title {
	font-size: 4rem;
	text-align: center;
}
.page-hohoemi-4months .sec-title > span {
	position: relative;
	display: inline-block;
}
.page-hohoemi-4months .sec-title > span::after {
	content: "";
	display: block;
	width: 100%;
	height: 10px;
	margin: 10px auto 0;
	background-image: url(../img/4months/title_underline_pink.png);
	background-repeat: repeat-x;
	background-position: center bottom;
	background-size: auto 100%;
}
.page-hohoemi-4months .sec-contents {
	position: relative;
	margin-top: 36px;
}
.page-hohoemi-4months .sec-worries {
	background-color: #fff4dc;
	padding-bottom: 215px;
}
.page-hohoemi-4months .sec-worries .wave-box {
	background-image: url(../img/4months/wave_beige.png);
}
.page-hohoemi-4months .sec-worries .wave-box-bottom {
	background-image: url(../img/4months/wave_white.png);
}
.page-hohoemi-4months .sec-worries-inner {
	position: relative;
	z-index: 2;
}
.page-hohoemi-4months .sec-worries-title {
	font-size: 3.4rem;
	color: #82b848;
}
.page-hohoemi-4months .sec-worries-title::after {
	content: none;
}
.page-hohoemi-4months .sec-worries-title > em {
	position: relative;
	display: inline-block;
}
.page-hohoemi-4months .sec-worries-title > em::before {
	content: "";
	position: absolute;
	top: -12px;
	left: -5px;
	right: 0;
	display: block;
	width: 7px;
	height: 8px;
	margin: auto;
	background-image: url(../img/4months/title_dot_green.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.page-hohoemi-4months .sec-worries-title > em.dot-02::before {
	transform: rotate(45deg);
}
.page-hohoemi-4months .sec-worries-title > em.dot-03::before {
	transform: rotate(90deg);
}
.page-hohoemi-4months .sec-worries-contents {
	margin-top: 60px;
}
.page-hohoemi-4months .sec-worries-comments {
	padding-left: 196px;
	margin-bottom: 62px;
}
.page-hohoemi-4months .sec-worries-comments > p {
	position: relative;
	display: inline-block;
	background-color: #82b848;
	margin-left: 146px;
	padding: 29px 36px 29px 46px;
	border-radius: 20px;
	font-size: 1.8rem;
	color: #fff;
	line-height: 1;
	font-weight: 500;
}
.page-hohoemi-4months .sec-worries-comments > p::before {
	content: "";
	position: absolute;
	top: 0;
	left: -20px;
	bottom: 0;
	z-index: -1;
	display: block;
	width: 41px;
	height: 23px;
	margin: auto;
	background-image: url(../img/4months/balloon_green.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}
.page-hohoemi-4months .sec-worries-comments > p::after {
	content: "";
	position: absolute;
	top: 0;
	left: -146px;
	bottom: 0;
	display: block;
	width: 120px;
	height: 120px;
	margin: auto;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	border-radius: 50%;
}
.page-hohoemi-4months .sec-worries-comments > p:nth-child(1) {
	margin-left: 161px;
	margin-bottom: 61px;
}
.page-hohoemi-4months .sec-worries-comments > p:nth-child(1)::after {
	background-image: url(../img/4months/sec01_mama_01.png);
}
.page-hohoemi-4months .sec-worries-comments > p:nth-child(2) {
	margin-left: 0;
	margin-right: 146px;
	margin-bottom: 66px;
}
.page-hohoemi-4months .sec-worries-comments > p:nth-child(2)::before {
	left: auto;
	right: -20px;
	transform: rotateY(180deg);
}
.page-hohoemi-4months .sec-worries-comments > p:nth-child(2)::after {
	left: auto;
	right: -146px;
	background-image: url(../img/4months/sec01_mama_02.png);
}
.page-hohoemi-4months .sec-worries-comments > p:nth-child(3)::after {
	background-image: url(../img/4months/sec01_mama_03.png);
}
.page-hohoemi-4months .sec-worries-text {
	font-size: 1.6rem;
	text-align: center;
	line-height: 2;
}
.page-hohoemi-4months .sec-worries-hohoemi {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 2;
	bottom: -50px;
	width: 507px;
	height: 282px;
	margin: auto;
}
.page-hohoemi-4months .sec-worries .liquid-wrap .liquid-box.liq-01 {
	top: 200px;
	left: 20px;
}
.page-hohoemi-4months .sec-worries .liquid-wrap .liquid-box.liq-02 {
	top: 550px;
	right: -30px;
}
.page-hohoemi-4months .sec-reason {
	position: relative;
	background-color: #fff;
	padding-top: 100px;
}
.page-hohoemi-4months .sec-reason-title {
	margin-bottom: 200px;
	color: #41b2b6;
}
.page-hohoemi-4months .sec-reason-title > span::after {
	background-image: url(../img/4months/title_underline_blue.png);
}
.page-hohoemi-4months .sec-reason-title strong {
	font-size: 5.7rem;
	color: #ff8583;
}
.page-hohoemi-4months .sec-reason-title em {
	font-size: 4.1rem;
	color: #ff8583;
}
.page-hohoemi-4months .sec-reason-contents {
	background-color: #e5f2f3;
}
.page-hohoemi-4months .sec-reason-contents .wave-box {
	background-image: url(../img/4months/wave_blue.png);
}
.page-hohoemi-4months .sec-reason-contents-inner {
	position: relative;
	max-width: 980px;
	margin: 0 auto;
	padding: 116px 0 194px;
}
.page-hohoemi-4months .sec-reason-contents-02 {
	position: relative;
	margin-top: 0;
	background-color: #fff;
}
.page-hohoemi-4months .sec-reason-contents-02 .wave-box {
	background-image: url(../img/4months/wave_white.png);
}
.page-hohoemi-4months .sec-reason-contents-02 .sec-reason-contents-inner {
	padding-bottom: 94px;
}
.page-hohoemi-4months .sec-reason-nav {
	position: absolute;
	top: -85px;
	right: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 550px;
	height: 130px;
	margin-left: auto;
}
.page-hohoemi-4months .sec-reason-nav > li {
	width: 160px;
	height: 160px;
	background-color: #fff;
	border-radius: 50%;
}
.page-hohoemi-4months .sec-reason-nav > li + li {
	margin-left: 40px;
}
.page-hohoemi-4months .sec-reason-nav > li > a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	border: 3px dotted #41b2b6;
	box-shadow: 0 0 0 5px #fff, 10px 10px 15px 5px rgba(97, 97, 97, 0.1);
	border-radius: 50%;
	padding-bottom: 15px;
	color: #41b2b6;
	font-size: 1.8rem;
	line-height: 1.3;
	text-align: center;
	transition: all 0.2s;
}
.page-hohoemi-4months .sec-reason-nav > li > a::before {
	content: "";
	position: absolute;
	right: 5px;
	bottom: 5px;
	display: block;
	width: 28px;
	height: 28px;
	background-color: #41b2b6;
	border-radius: 50%;
}
.page-hohoemi-4months .sec-reason-nav > li > a::after {
	content: "";
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 4px 0 4px;
	border-color: #fff transparent transparent transparent;
}
.page-hohoemi-4months .sec-reason-nav > li > a:hover {
	opacity: 1;
	color: #fff;
	border-color: #fff;
	background-color: #41b2b6;
	box-shadow: 0 0 0 5px #41b2b6, 13px 13px 18px 8px rgba(97, 97, 97, 0.15);
	transform: translate(-3px, -3px);
}
.page-hohoemi-4months .sec-reason-nav > li > a:hover::before {
	background-color: #fff;
}
.page-hohoemi-4months .sec-reason-nav > li > a:hover::after {
	border-color: #41b2b6 transparent transparent transparent;
}
.page-hohoemi-4months .sec-reason-nav > li:nth-child(1) > a {
	background-image: url(../img/4months/sec02_nav_btn_icon_01.png);
	background-position: center 5px;
}
.page-hohoemi-4months .sec-reason-nav > li:nth-child(2) > a {
	background-image: url(../img/4months/sec02_nav_btn_icon_02.png);
	background-position: center 25px;
}
.page-hohoemi-4months .sec-reason-nav > li:nth-child(3) > a {
	background-image: url(../img/4months/sec02_nav_btn_icon_03.png);
	background-position: center 15px;
}
.page-hohoemi-4months .sec-reason-heading {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.page-hohoemi-4months .sec-reason-heading-icon {
	display: inline-block;
	width: 98px;
	height: 90px;
	padding: 20px 0 18px 10px;
	background-image: url(../img/4months/sec02_title_icon.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	text-align: center;
	color: #fff;
	font-weight: 700;
	line-height: 1.25;
}
.page-hohoemi-4months .sec-reason-heading-icon > small {
	font-size: 1.2rem;
}
.page-hohoemi-4months .sec-reason-heading-icon > strong {
	font-size: 3rem;
	letter-spacing: -0.03em;
	line-height: 1;
}
.page-hohoemi-4months .sec-reason-heading h3 {
	margin-top: 0;
	margin-left: 19px;
	font-size: 3.7rem;
	color: #41b2b6;
}
.page-hohoemi-4months .sec-reason-heading-balloon {
	display: block;
	text-align: center;
	letter-spacing: normal;
	font-weight: 700;
}
.page-hohoemi-4months .sec-reason-heading-balloon::after {
	right: auto;
	left: 0;
	transform: rotateY(180deg);
}
.page-hohoemi-4months .sec-reason-heading-balloon > strong {
	font-size: 2.6rem;
}
.page-hohoemi-4months .sec-reason-heading-balloon-01 {
	top: -40px;
	right: -100px;
	padding: 14px 0;
}
.page-hohoemi-4months .sec-reason-heading-balloon-02 {
	right: 0;
	width: 140px;
	height: 140px;
	padding: 43px 0;
	font-size: 1.8rem;
	line-height: 1.1;
}
.page-hohoemi-4months .sec-reason-heading-balloon-02::after {
	left: -17px;
	bottom: 0;
	top: 12px;
	transform: rotateY(180deg) rotateZ(-50deg);
	margin: auto;
}
.page-hohoemi-4months .sec-reason-heading-balloon-02 > strong {
	font-size: 2.8rem;
}
.page-hohoemi-4months .sec-reason-heading-01 {
	position: absolute;
	top: -120px;
	left: 0;
	z-index: 2;
}
.page-hohoemi-4months .sec-reason-heading-02 {
	align-items: flex-start;
	max-width: 748px;
	margin: 0 auto 56px;
}
.page-hohoemi-4months .sec-reason-heading-02 .sec-reason-heading-inner {
	margin-left: 29px;
}
.page-hohoemi-4months .sec-reason-heading-02 .sec-reason-heading-inner > h3 {
	margin-left: 0;
}
.page-hohoemi-4months .sec-reason-text {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 2;
}
.page-hohoemi-4months .sec-reason-text-01 {
	position: absolute;
	top: -40px;
	left: 0;
	z-index: 2;
	margin-top: 23px;
	padding-left: 20px;
}
.page-hohoemi-4months .sec-reason-text-02 {
	margin-top: 15px;
	line-height: 1.77;
}
.page-hohoemi-4months .sec-reason-container {
	position: relative;
	z-index: 2;
	background-color: #fff;
	border: 3px dotted #41b2b6;
	border-radius: 30px;
	margin-bottom: 80px;
	padding: 60px 88px 65px;
}
.page-hohoemi-4months .sec-reason-container:last-child {
	margin-bottom: 0;
}
.page-hohoemi-4months .sec-reason-container-heading {
	position: relative;
	padding-left: 220px;
}
.page-hohoemi-4months .sec-reason-container-heading h4 {
	font-size: 3rem;
	color: #41b2b6;
}
.page-hohoemi-4months .sec-reason-container-heading-text {
	font-size: 1.8rem;
}
.page-hohoemi-4months .sec-reason-container-heading::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	display: block;
	width: 108px;
	height: 172px;
	margin: auto;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}
.page-hohoemi-4months .sec-reason-container-heading-01::before {
	top: 20px;
	background-image: url(../img/4months/sec02_illust_baby.png);
}
.page-hohoemi-4months .sec-reason-container-heading-02 {
	padding-left: 230px;
}
.page-hohoemi-4months .sec-reason-container-heading-02::before {
	left: 30px;
	width: 117px;
	height: 107px;
	background-image: url(../img/4months/sec02_illust_diaper.png);
}
.page-hohoemi-4months .sec-reason-container-heading-03 {
	padding-left: 208px;
}
.page-hohoemi-4months .sec-reason-container-heading-03::before {
	width: 143px;
	height: 126px;
	background-image: url(../img/4months/sec02_illust_thermometer.png);
}
.page-hohoemi-4months .sec-reason-container-heading-04 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-left: 0;
}
.page-hohoemi-4months .sec-reason-container-heading-04 .sec-reason-container-heading-inner {
	width: 435px;
}
.page-hohoemi-4months .sec-reason-container-heading-04 .sec-reason-container-heading-img {
	width: 340px;
	margin-top: 10px;
}
.page-hohoemi-4months .sec-reason-container-heading-04 .sec-reason-container-heading-img > figcaption {
	width: 300px;
	margin: 21px auto 0;
	background-color: #41b2b6;
	border-radius: 15px;
	font-size: 1.6rem;
	color: #fff;
	font-weight: 700;
	text-align: center;
}
.page-hohoemi-4months .sec-reason-container-graf {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 56px 0;
}
.page-hohoemi-4months .sec-reason-container-graf + .sec-reason-container-graf {
	border-top: 3px dotted #bebebe;
	padding-bottom: 0;
}
.page-hohoemi-4months .sec-reason-container-graf-head {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-right: 62px;
}
.page-hohoemi-4months .sec-reason-container-graf-heading {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 120px;
	margin-bottom: 34px;
	border-radius: 50%;
	border: 3px dotted #41b2b6;
	font-size: 2rem;
	font-weight: 700;
	color: #41b2b6;
}
.page-hohoemi-4months .sec-reason-container-graf-body > img {
	display: inline-block;
}
.page-hohoemi-4months .sec-reason-container-graf-body > img + img {
	margin-left: 90px;
}
.page-hohoemi-4months .sec-reason-container-table {
	margin-top: 42px;
}
.page-hohoemi-4months .sec-reason-container-table-header {
	padding-bottom: 12px;
}
.page-hohoemi-4months .sec-reason-container-table-header > dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.page-hohoemi-4months .sec-reason-container-table-header-box {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 180px;
	height: 160px;
	background-color: #41b2b6;
	border-radius: 10px;
	font-size: 2rem;
	color: #fff;
	line-height: 1.85;
	text-align: center;
}
.page-hohoemi-4months .sec-reason-container-table-header-box small {
	font-size: 1.6rem;
}
.page-hohoemi-4months .sec-reason-container-table-header-box small.small-xs {
	font-size: 1.4rem;
}
.page-hohoemi-4months .sec-reason-container-table-header-box-03 {
	height: 180px;
	margin-right: 44px;
	line-height: 1.4;
}
.page-hohoemi-4months .sec-reason-container-table-header-list {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.page-hohoemi-4months .sec-reason-container-table-header-list-item > span {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}
.page-hohoemi-4months .sec-reason-container-table-header-list-item + .sec-reason-container-table-header-list-item {
	margin-left: 56px;
}
.page-hohoemi-4months .sec-reason-container-table-body {
	padding: 12px 0;
}
.page-hohoemi-4months .sec-reason-container-table-body > dl {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	background-color: #ffefef;
	padding: 10px;
	border-radius: 15px;
	font-size: 1.8rem;
	font-weight: 700;
}
.page-hohoemi-4months .sec-reason-container-table-body > dl > dt {
	width: 166px;
	margin-right: 110px;
	font-size: 2rem;
	text-align: center;
	letter-spacing: normal;
	white-space: nowrap;
}
.page-hohoemi-4months .sec-reason-container-table-body:nth-child(2) {
	border-top: 3px dotted #bebebe;
}
.page-hohoemi-4months .sec-reason-container-table-body:nth-child(2) > dl > dt {
	color: #f56664;
}
.page-hohoemi-4months .sec-reason-container-table-body:nth-child(3) {
	border-top: 3px dotted #bebebe;
}
.page-hohoemi-4months .sec-reason-container-table-body:nth-child(3) > dl {
	background-color: #fff1d2;
}
.page-hohoemi-4months .sec-reason-container-table-body:nth-child(3) > dl > dt {
	color: #e60012;
}
.page-hohoemi-4months .sec-reason-container-table-body-list {
	display: flex;
	justify-content: center;
	align-items: center;
}
.page-hohoemi-4months .sec-reason-container-table-body-list-item {
	width: 100px;
	text-align: center;
}
.page-hohoemi-4months .sec-reason-container-table-body-list-item > strong {
	font-size: 2.8rem;
}
.page-hohoemi-4months .sec-reason-container-table-body-list-item + .sec-reason-container-table-body-list-item {
	margin-left: 90px;
}
.page-hohoemi-4months .sec-reason-container-table-03 {
	margin-top: 30px;
}
.page-hohoemi-4months .sec-reason-container-table-03 .sec-reason-container-table-header > dl {
	justify-content: flex-start;
}
.page-hohoemi-4months .sec-reason-container-03 {
	padding-left: 91px;
}
.page-hohoemi-4months .sec-reason-container-04 {
	position: relative;
	padding: 73px 68px 72px 76px;
	background-image: url(../img/4months/sec02_block02_bg.png);
	background-repeat: no-repeat;
	background-position: -400% 65%;
}
.page-hohoemi-4months .sec-reason-container-04 .bg-icon {
	z-index: 2;
}
.page-hohoemi-4months .sec-reason-container-04 .bg-icon.ic-01 {
	top: 150px;
	left: -150px;
	width: auto;
}
.page-hohoemi-4months .sec-reason-container-04 .bg-icon.ic-02 {
	top: 1050px;
	right: -170px;
	width: auto;
}
.page-hohoemi-4months .sec-reason-container-cycle {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 59px;
	padding: 25px 26px 26px;
	background-color: rgba(231, 243, 244, 0.5);
	border-radius: 15px;
}
.page-hohoemi-4months .sec-reason-container-cycle-text {
	margin-right: 55px;
	font-size: 2.6rem;
	line-height: 1.7;
	color: #41b2b6;
	font-weight: 700;
}
.page-hohoemi-4months .sec-reason-container-cycle-text > em {
	color: #ff8583;
}
.page-hohoemi-4months .sec-reason .liquid-wrap .liquid-box.liq-01 {
	top: 1300px;
	right: -200px;
}
.page-hohoemi-4months .sec-reason .liquid-wrap .liquid-box.liq-02 {
	top: 2300px;
	left: -80px;
}
.page-hohoemi-4months .sec-reason .liquid-wrap .liquid-box.liq-03 {
	top: 3500px;
	left: -80px;
}
.page-hohoemi-4months .sec-reason .liquid-wrap .liquid-box.liq-04 {
	top: 4100px;
	right: -50px;
}
.page-hohoemi-4months .sec-reason-modal {
	margin-top: 51px;
}
.page-hohoemi-4months .sec-reason-modal-lead {
	font-size: 2.6rem;
	color: #f56664;
	font-weight: 700;
	text-align: center;
}
.page-hohoemi-4months .sec-reason-modal-list {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 25px;
}
.page-hohoemi-4months .sec-reason-modal-list-item {
	width: 240px;
	height: 80px;
	border-radius: 15px;
}
.page-hohoemi-4months .sec-reason-modal-list-item + .sec-reason-modal-list-item {
	margin-left: 25px;
}
.page-hohoemi-4months .sec-reason-modal-list-link {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: #f56664;
	border-radius: 15px;
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
}
.page-hohoemi-4months .sec-reason-modal-list-link::after {
	content: "";
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	margin: auto;
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6.5px 0 6.5px 10px;
	border-color: transparent transparent transparent #fff;
}
.page-hohoemi-4months .sec-reason-modal-list-link:hover {
	background-color: #fff;
	border: 2px solid #f56664;
	color: #f56664;
	opacity: 1;
}
.page-hohoemi-4months .sec-reason-modal-list-link:hover::after {
	border-color: transparent transparent transparent #f56664;
}
.page-hohoemi-4months .sec-reason-modal-container {
	position: relative;
	max-width: 800px;
	border-radius: 30px;
	margin-bottom: 50px;
	padding: 76px 124px 63px 116px;
}
.page-hohoemi-4months .sec-reason-modal-heading {
	font-size: 3rem;
	line-height: 1.5;
	color: #41b2b6;
}
.page-hohoemi-4months .sec-reason-modal-heading small {
	font-size: 2rem;
}
.page-hohoemi-4months .sec-reason-modal-heading > span::after {
	background-image: url(../img/4months/title_underline_blue.png);
}
.page-hohoemi-4months .sec-reason-modal-text {
	margin-top: 35px;
	font-size: 1.8rem;
	line-height: 2;
	text-align: left;
}
.page-hohoemi-4months .sec-reason-modal-img {
	margin-top: 35px;
}
.page-hohoemi-4months .sec-reason-modal-img + .sec-reason-modal-img {
	margin-top: 23px;
}
.page-hohoemi-4months .sec-reason-modal-img + .sec-reason-modal-text {
	margin-top: 48px;
}
.page-hohoemi-4months .sec-reason-modal-notice {
	margin-top: 24px;
	text-align: left;
	font-size: 1.4rem;
}
.page-hohoemi-4months .sec-reason-modal-close-btn {
	cursor: pointer;
	position: absolute;
	top: -40px;
	right: -40px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #41b2b6;
}
.page-hohoemi-4months .sec-reason-modal-close-btn::before, .page-hohoemi-4months .sec-reason-modal-close-btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 21px;
	height: 2px;
	margin: auto;
	background-color: #fff;
	transform: rotate(-45deg);
}
.page-hohoemi-4months .sec-reason-modal-close-btn::after {
	transform: rotate(45deg);
}
.page-hohoemi-4months .sec-reason-modal-close-btn:hover {
	background-color: #fff;
	border: 2px solid #41b2b6;
}
.page-hohoemi-4months .sec-reason-modal-close-btn:hover::before, .page-hohoemi-4months .sec-reason-modal-close-btn:hover::after {
	background-color: #41b2b6;
}
.page-hohoemi-4months .sec-reason-modal-close-btn-bottom {
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 80px;
	margin: 30px auto 0;
	background-color: #41b2b6;
	border-radius: 15px;
	font-size: 2rem;
	color: #fff;
	font-weight: 700;
}
.page-hohoemi-4months .sec-reason-modal-close-btn-bottom::before, .page-hohoemi-4months .sec-reason-modal-close-btn-bottom::after {
	content: "";
	position: absolute;
	top: 0;
	right: 30px;
	bottom: 0;
	width: 21px;
	height: 2px;
	margin: auto;
	background-color: #fff;
	transform: rotate(-45deg);
}
.page-hohoemi-4months .sec-reason-modal-close-btn-bottom::after {
	transform: rotate(45deg);
}
.page-hohoemi-4months .sec-reason-modal-close-btn-bottom:hover {
	background-color: #fff;
	border: 2px solid #41b2b6;
	color: #41b2b6;
}
.page-hohoemi-4months .sec-reason-modal-close-btn-bottom:hover::before, .page-hohoemi-4months .sec-reason-modal-close-btn-bottom:hover::after {
	background-color: #41b2b6;
}
.page-hohoemi-4months .sec-counseling {
	position: relative;
	background-color: #fff4dc;
}
.page-hohoemi-4months .sec-counseling .wave-box {
	background-image: url(../img/4months/wave_beige.png);
}
.page-hohoemi-4months .sec-counseling-inner {
	position: relative;
	z-index: 2;
	padding-bottom: 209px;
}
.page-hohoemi-4months .sec-counseling-inner .bg-icon {
	z-index: 2;
}
.page-hohoemi-4months .sec-counseling-inner .bg-icon.ic-01 {
	top: 160px;
	left: -100px;
	width: auto;
}
.page-hohoemi-4months .sec-counseling-inner .bg-icon.ic-02 {
	top: 350px;
	right: -40px;
	width: auto;
}
.page-hohoemi-4months .sec-counseling-title {
	color: #56bc96;
}
.page-hohoemi-4months .sec-counseling-title::after {
	width: 74%;
	background-image: url(../img/4months/title_underline_green.png);
}
.page-hohoemi-4months .sec-counseling-title > small {
	font-size: 3.4rem;
}
.page-hohoemi-4months .sec-counseling-text {
	font-size: 1.8rem;
	text-align: center;
	line-height: 2;
}
.page-hohoemi-4months .sec-counseling-banner {
	margin-top: 39px;
	text-align: center;
}
.page-hohoemi-4months .sec-counseling-banner-link {
	display: inline-block;
	border-radius: 20px;
	box-shadow: 0 0 10px 5px rgba(97, 97, 97, 0.2);
	transition: all 0.2s;
}
.page-hohoemi-4months .sec-counseling-banner-link:hover {
	opacity: 1;
	transform: translate(-3px, -3px);
	box-shadow: 3px 3px 10px 8px rgba(97, 97, 97, 0.2);
}
.page-hohoemi-4months .sec-counseling-info {
	max-width: 590px;
	margin: 48px auto 0;
}
.page-hohoemi-4months .sec-counseling-info-box {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
}
.page-hohoemi-4months .sec-counseling-info-box:last-child {
	margin-bottom: 0;
}
.page-hohoemi-4months .sec-counseling-info-title {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 40px;
	margin-right: 31px;
	background-color: #56bc96;
	border-radius: 20px;
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
}
.page-hohoemi-4months .sec-counseling-info-content {
	font-size: 1.8rem;
	line-height: 1.2;
	letter-spacing: 0.1em;
}
.page-hohoemi-4months .sec-counseling-info-content > small {
	font-size: 1.1rem;
	letter-spacing: normal;
}
.page-hohoemi-4months .sec-counseling .liquid-wrap .liquid-box.liq-01 {
	top: 420px;
	left: 300px;
}
.page-hohoemi-4months .sec-banner .wave-box {
	background-image: url(../img/4months/wave_white.png);
}
.page-hohoemi-4months .sec-banner-list-item {
	text-align: center;
}
.page-hohoemi-4months .sec-banner-list-item:nth-child(1) {
	padding-left: 24px;
}
.page-hohoemi-4months .sec-banner-list-link {
	display: inline-block;
}
.page-hohoemi-4months .sec-banner .sns-wrap {
	text-align: center;
	margin-top: 75px;
}
.page-hohoemi-4months .sec-banner .sns-wrap .btn-sns {
	display: inline-block;
	width: 57px;
	height: 57px;
}
.page-hohoemi-4months .sec-banner .sns-wrap .btn-sns + .btn-sns {
	margin-left: 22px;
}
.page-hohoemi-4months .remodal-overlay {
	background-color: rgba(0, 0, 0, 0.6);
}
.page-hohoemi-4months .remodal-wrapper {
	padding: 50px;
}

/* page-hohoemi-8months
---------------------------------------------------------------------------- */
.page-hohoemi-8months {
	width: 100%;
	min-width: 1400px;
	color: #222;
	font-feature-settings: "palt";
}
.page-hohoemi-8months * {
	letter-spacing: 0.05em;
}
.page-hohoemi-8months img {
	display: initial;
	vertical-align: bottom;
}
.page-hohoemi-8months em {
	font-style: normal;
}
.page-hohoemi-8months .font-notosans {
	font-family: "Noto Sans JP", sans-serif;
}
.page-hohoemi-8months .font-mplus, .page-hohoemi-8months .sec-reason-heading-icon > strong {
	font-family: "M PLUS 1p", sans-serif;
}
.page-hohoemi-8months .nopc {
	display: none !important;
}
.page-hohoemi-8months .nosp {
	display: block !important;
}
.page-hohoemi-8months .color-pink {
	color: #ff8583;
}
.page-hohoemi-8months .mv {
	position: relative;
	width: 100%;
	height: 890px;
	background-image: url(../img/8months/mv_bg_pc.jpg);
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center top;
}
.page-hohoemi-8months .mv-inner {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
	max-width: 900px;
	height: 100%;
	margin: 0 auto;
	padding: 70px 0;
}
.page-hohoemi-8months .mv-title {
	width: 382px;
	height: 250px;
	font-size: 6rem;
	line-height: 1.1;
	color: #fb7472;
	font-weight: 700;
	white-space: nowrap;
	text-align: center;
}
.page-hohoemi-8months .mv-title-logo {
	display: block;
	margin-bottom: 30px;
	padding-right: 12px;
}
.page-hohoemi-8months .mv-lead {
	position: relative;
	width: 100%;
	text-align: center;
}
.page-hohoemi-8months .mv-lead-text {
	margin-top: 30px;
	font-size: 1.6rem;
	line-height: 2.375;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0.1em;
}
.page-hohoemi-8months .mv-lead-text > strong {
	font-size: 1.8rem;
}
.page-hohoemi-8months .mv-lead .bg-icon.ic-01 {
	top: 70px;
	left: 90px;
	width: auto;
}
.page-hohoemi-8months .mv-lead .bg-icon.ic-02 {
	top: 80px;
	right: 60px;
	width: auto;
}
.page-hohoemi-8months .mv .liquid-wrap .liquid-box.liq-01 {
	top: -100px;
	right: -100px;
}
.page-hohoemi-8months .mv .liquid-wrap .liquid-box.liq-02 {
	top: -30px;
	left: 30px;
}
.page-hohoemi-8months .mv .liquid-wrap .liquid-box.liq-03 {
	top: 500px;
	right: -100px;
}
.page-hohoemi-8months .mv .liquid-wrap .liquid-box.liq-04 {
	top: 800px;
	right: -40px;
}
.page-hohoemi-8months .mv .liquid-wrap .liquid-box.liq-05 {
	top: 600px;
	left: -80px;
}
.page-hohoemi-8months .sec {
	position: relative;
}
.page-hohoemi-8months .sec .wave-box {
	position: absolute;
	z-index: 1;
	top: -22px;
	left: 0;
	width: 100%;
	background-color: transparent;
}
.page-hohoemi-8months .sec .wave-box-bottom {
	top: auto;
	bottom: 0;
}
.page-hohoemi-8months .sec-inner {
	max-width: 980px;
	margin: 0 auto;
}
.page-hohoemi-8months .sec-title {
	font-size: 4rem;
	text-align: center;
}
.page-hohoemi-8months .sec-title > span {
	position: relative;
	display: inline-block;
}
.page-hohoemi-8months .sec-title > span::after {
	content: "";
	display: block;
	width: 100%;
	height: 10px;
	margin: 10px auto 0;
	background-image: url(../img/8months/title_underline_pink.png);
	background-repeat: repeat-x;
	background-position: center bottom;
	background-size: auto 100%;
}
.page-hohoemi-8months .sec-contents {
	position: relative;
	margin-top: 36px;
}
.page-hohoemi-8months .sec-worries {
	background-color: #fff4dc;
}
.page-hohoemi-8months .sec-worries .wave-box {
	background-image: url(../img/8months/wave_beige.png);
}
.page-hohoemi-8months .sec-worries .wave-box-bottom {
	background-image: url(../img/8months/wave_white.png);
}
.page-hohoemi-8months .sec-worries-inner {
	position: relative;
	z-index: 2;
	padding-bottom: 200px;
}
.page-hohoemi-8months .sec-worries-title {
	font-size: 3.4rem;
	color: #82b848;
}
.page-hohoemi-8months .sec-worries-title > span::after {
	background-image: url(../img/8months/title_underline_parrotgreen.png);
}
.page-hohoemi-8months .sec-worries-title em {
	position: relative;
	display: inline-block;
}
.page-hohoemi-8months .sec-worries-title em::before {
	content: "";
	position: absolute;
	top: -12px;
	left: -5px;
	right: 0;
	display: block;
	width: 7px;
	height: 8px;
	margin: auto;
	background-image: url(../img/8months/title_dot_green.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.page-hohoemi-8months .sec-worries-title em.dot-02::before {
	transform: rotate(45deg);
}
.page-hohoemi-8months .sec-worries-title em.dot-03::before {
	transform: rotate(90deg);
}
.page-hohoemi-8months .sec-worries-contents {
	margin-top: 35px;
}
.page-hohoemi-8months .sec-worries-text {
	font-size: 1.8rem;
	text-align: center;
	line-height: 2;
}
.page-hohoemi-8months .sec-worries-text > strong {
	display: block;
	margin-bottom: 0.5em;
	font-size: 2.2rem;
}
.page-hohoemi-8months .sec-worries-text > small {
	font-size: 1.1rem;
}
.page-hohoemi-8months .sec-worries-hohoemi {
	margin-top: 50px;
	text-align: center;
}
.page-hohoemi-8months .sec-worries .liquid-wrap .liquid-box.liq-01 {
	top: 200px;
	left: 20px;
}
.page-hohoemi-8months .sec-worries .liquid-wrap .liquid-box.liq-02 {
	top: 450px;
	right: -30px;
}
.page-hohoemi-8months .sec-reason {
	position: relative;
	background-color: #fff;
	padding-top: 400px;
}
.page-hohoemi-8months .sec-reason-contents {
	background-color: #ebf5e0;
}
.page-hohoemi-8months .sec-reason-contents .wave-box {
	background-image: url(../img/8months/wave_green.png);
}
.page-hohoemi-8months .sec-reason-contents-inner {
	position: relative;
	max-width: 980px;
	margin: 0 auto;
	padding: 80px 0;
}
.page-hohoemi-8months .sec-reason-contents-02 {
	position: relative;
	margin-top: 0;
	background-color: #fff;
}
.page-hohoemi-8months .sec-reason-contents-02 .wave-box {
	background-image: url(../img/4months/wave_white.png);
}
.page-hohoemi-8months .sec-reason-contents-02 .sec-reason-contents-inner {
	padding-bottom: 94px;
}
.page-hohoemi-8months .sec-reason-nav {
	position: absolute;
	top: -85px;
	right: 0;
	left: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 380px;
	height: 160px;
	margin: auto;
}
.page-hohoemi-8months .sec-reason-nav > li {
	width: 160px;
	height: 160px;
	background-color: #fff;
	border-radius: 50%;
}
.page-hohoemi-8months .sec-reason-nav > li + li {
	margin-left: 40px;
}
.page-hohoemi-8months .sec-reason-nav > li > a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 40px 0;
	background-repeat: no-repeat;
	border: 3px dotted #82b848;
	box-shadow: 0 0 0 5px #fff, 10px 10px 15px 5px rgba(97, 97, 97, 0.1);
	border-radius: 50%;
	padding-bottom: 15px;
	color: #82b848;
	font-size: 2.2rem;
	line-height: 1.8;
	text-align: center;
	font-weight: 700;
	transition: all 0.2s;
}
.page-hohoemi-8months .sec-reason-nav > li > a::before {
	content: "";
	position: absolute;
	right: 5px;
	bottom: 5px;
	display: block;
	width: 28px;
	height: 28px;
	background-color: #82b848;
	border-radius: 50%;
}
.page-hohoemi-8months .sec-reason-nav > li > a::after {
	content: "";
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 4px 0 4px;
	border-color: #fff transparent transparent transparent;
}
.page-hohoemi-8months .sec-reason-nav > li > a:hover {
	opacity: 1;
	color: #fff;
	border-color: #fff;
	background-color: #82b848;
	box-shadow: 0 0 0 5px #82b848, 13px 13px 18px 8px rgba(97, 97, 97, 0.15);
	transform: translate(-3px, -3px);
}
.page-hohoemi-8months .sec-reason-nav > li > a:hover::before {
	background-color: #fff;
}
.page-hohoemi-8months .sec-reason-nav > li > a:hover::after {
	border-color: #82b848 transparent transparent transparent;
}
.page-hohoemi-8months .sec-reason-nav > li > a .small {
	font-size: 1.3rem;
}
.page-hohoemi-8months .sec-reason-nav > li > a .strong {
	font-size: 2.2rem;
}
.page-hohoemi-8months .sec-reason-heading {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.page-hohoemi-8months .sec-reason-heading h3 {
	margin-top: 0;
	margin-left: 19px;
	font-size: 3.7rem;
	color: #82b848;
}
.page-hohoemi-8months .sec-reason-heading-01 {
	position: absolute;
	top: -280px;
	left: 0;
	right: 0;
	width: 100%;
	margin: auto;
}
.page-hohoemi-8months .sec-reason-heading-icon {
	display: inline-block;
	width: 98px;
	height: 90px;
	padding: 24px 0 20px 10px;
	background-image: url(../img/8months/sec02_title_icon.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	text-align: center;
	color: #fff;
	font-weight: 700;
	line-height: 1.25;
}
.page-hohoemi-8months .sec-reason-heading-icon > small {
	font-size: 1.2rem;
}
.page-hohoemi-8months .sec-reason-heading-icon > strong {
	font-size: 3rem;
	letter-spacing: -0.03em;
}
.page-hohoemi-8months .sec-reason-text {
	font-size: 1.8rem;
	line-height: 2;
	text-align: center;
}
.page-hohoemi-8months .sec-reason-text > strong {
	display: block;
	font-size: 2.6rem;
	margin-bottom: 1em;
}
.page-hohoemi-8months .sec-reason-text > em {
	font-weight: 700;
}
.page-hohoemi-8months .sec-reason-text > small {
	font-size: 1.1rem;
}
.page-hohoemi-8months .sec-reason-text-01 {
	position: absolute;
	top: -170px;
	left: 0;
	right: 0;
	z-index: 2;
	width: 100%;
	margin: auto;
}
.page-hohoemi-8months .sec-reason-text-02 {
	margin-bottom: 50px;
}
.page-hohoemi-8months .sec-reason-container {
	position: relative;
	z-index: 2;
	background-color: #fff;
	border: 3px dotted #82b848;
	border-radius: 30px;
	margin-bottom: 80px;
	padding: 60px 88px 65px;
}
.page-hohoemi-8months .sec-reason-container:last-child {
	margin-bottom: 0;
}
.page-hohoemi-8months .sec-reason-container-heading {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 37px;
}
.page-hohoemi-8months .sec-reason-container-heading h4 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 180px;
	margin-right: 50px;
	border: 3px dotted #82b848;
	border-radius: 50%;
	font-size: 3.7rem;
	color: #82b848;
}
.page-hohoemi-8months .sec-reason-container-heading-text {
	margin-top: 0;
	font-size: 1.8rem;
	line-height: 2;
}
.page-hohoemi-8months .sec-reason-container-body > dl {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.page-hohoemi-8months .sec-reason-container-body-title {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 140px;
	margin-right: 50px;
	background-color: #82b848;
	border-radius: 10px;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}
.page-hohoemi-8months .sec-reason-container-body-list {
	display: flex;
	justify-content: center;
	align-items: center;
}
.page-hohoemi-8months .sec-reason-container-body-item p {
	text-align: center;
	font-size: 2.1rem;
	line-height: 1.33;
}
.page-hohoemi-8months .sec-reason-container-body-item small {
	display: block;
	font-size: 1.7rem;
}
.page-hohoemi-8months .sec-reason-container-body-item span {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 115px;
}
.page-hohoemi-8months .sec-reason-container-body-item + .sec-reason-container-body-item {
	margin-left: 30px;
}
.page-hohoemi-8months .sec-reason-container-block {
	display: flex;
	justify-content: center;
	align-items: center;
}
.page-hohoemi-8months .sec-reason-container-block-inner {
	width: 50%;
	position: relative;
	padding: 25px 70px;
}
.page-hohoemi-8months .sec-reason-container-block-inner + .sec-reason-container-block-inner {
	border-left: 3px dotted #bebebe;
}
.page-hohoemi-8months .sec-reason-container-block-heading {
	position: absolute;
	top: -80px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 320px;
	height: 50px;
	margin: auto;
	border-radius: 25px;
	background-color: #82b848;
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
}
.page-hohoemi-8months .sec-reason-container-block-heading-girl {
	background-color: #ff8583;
}
.page-hohoemi-8months .sec-reason-container-block-body-top {
	position: relative;
	padding-right: 130px;
	margin-bottom: 90px;
	font-size: 2rem;
	line-height: 1.6;
	text-align: center;
}
.page-hohoemi-8months .sec-reason-container-block-body-top strong {
	font-size: 2.8rem;
}
.page-hohoemi-8months .sec-reason-container-block-body-top small {
	font-size: 1.8rem;
}
.page-hohoemi-8months .sec-reason-container-block-body-top::after {
	content: "";
	position: absolute;
	top: 0;
	right: 50px;
	bottom: 0;
	display: block;
	width: 115px;
	height: 140px;
	margin: auto;
	background-image: url(../img/8months/sec02_block02_baby_boy.png);
	background-repeat: no-repeat;
}
.page-hohoemi-8months .sec-reason-container-block-body-top-girl::after {
	background-image: url(../img/8months/sec02_block02_baby_girl.png);
}
.page-hohoemi-8months .sec-reason-container-block-body-bottom {
	position: relative;
	width: 320px;
	height: 146px;
	margin: 0 auto;
	padding: 30px 100px 30px 30px;
	background-color: #fff4dc;
	background-image: url(../img/8months/sec02_block02_milk.png);
	background-repeat: no-repeat;
	background-position: 220px center;
	border-radius: 15px;
	text-align: center;
}
.page-hohoemi-8months .sec-reason-container-block-body-bottom span {
	font-size: 2rem;
	color: #e60012;
}
.page-hohoemi-8months .sec-reason-container-block-body-bottom strong {
	font-size: 2.8rem;
}
.page-hohoemi-8months .sec-reason-container-block-body-bottom::before {
	content: "";
	position: absolute;
	top: -50px;
	left: 0;
	right: 0;
	display: block;
	width: 26px;
	height: 33px;
	margin: auto;
	background-image: url(../img/8months/sec02_block02_arrow_green.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.page-hohoemi-8months .sec-reason-container-block-body-bottom-girl::before {
	background-image: url(../img/8months/sec02_block02_arrow_pink.png);
}
.page-hohoemi-8months .sec-reason-container-02 {
	padding: 50px 30px 25px;
	font-size: 1.8rem;
	font-weight: 700;
}
.page-hohoemi-8months .sec-reason-container-02 .bg-icon.ic-01 {
	top: -30px;
	left: -150px;
	width: 67px;
}
.page-hohoemi-8months .sec-reason-container-02 .bg-icon.ic-02 {
	right: -170px;
	bottom: 20px;
	width: 88px;
}
.page-hohoemi-8months .sec-reason .liquid-wrap .liquid-box.liq-01 {
	top: 80px;
	left: -100px;
}
.page-hohoemi-8months .sec-reason .liquid-wrap .liquid-box.liq-02 {
	bottom: 50px;
	right: -200px;
}
.page-hohoemi-8months .sec-reason .liquid-wrap .liquid-box.liq-03 {
	top: 500px;
	left: -200px;
}
.page-hohoemi-8months .sec-reason .liquid-wrap .liquid-box.liq-04 {
	top: 500px;
	right: -100px;
}
.page-hohoemi-8months .sec-followupmilk {
	background-color: #fff4dc;
}
.page-hohoemi-8months .sec-followupmilk .wave-box {
	background-image: url(../img/8months/wave_beige.png);
}
.page-hohoemi-8months .sec-followupmilk-inner {
	position: relative;
	z-index: 2;
	padding-bottom: 100px;
}
.page-hohoemi-8months .sec-followupmilk-title {
	font-size: 3.4rem;
}
.page-hohoemi-8months .sec-followupmilk-title em {
	position: relative;
	display: inline-block;
}
.page-hohoemi-8months .sec-followupmilk-title em::before {
	content: "";
	position: absolute;
	top: -2px;
	left: -5px;
	right: 0;
	display: block;
	width: 7px;
	height: 8px;
	margin: auto;
	background-image: url(../img/8months/title_dot_pink.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.page-hohoemi-8months .sec-followupmilk-title em.dot-02::before {
	transform: rotate(45deg);
}
.page-hohoemi-8months .sec-followupmilk-title em.dot-03::before {
	transform: rotate(90deg);
}
.page-hohoemi-8months .sec-followupmilk-contents {
	margin-top: 60px;
}
.page-hohoemi-8months .sec-followupmilk-text {
	font-size: 1.8rem;
	text-align: center;
	line-height: 2;
}
.page-hohoemi-8months .sec-followupmilk-text > strong {
	display: block;
	margin-bottom: 1em;
	font-size: 2.6rem;
}
.page-hohoemi-8months .sec-followupmilk-text > small {
	font-size: 1.1rem;
}
.page-hohoemi-8months .sec-followupmilk-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	max-width: 600px;
	margin: 100px auto 0;
	padding: 60px 0 30px;
	border: 3px dotted #ff8583;
	background-color: #fff;
	border-radius: 10px;
}
.page-hohoemi-8months .sec-followupmilk-container-heading {
	position: absolute;
	top: -25px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 400px;
	height: 50px;
	margin: auto;
	border-radius: 25px;
	background-color: #ff8583;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
}
.page-hohoemi-8months .sec-followupmilk-container-body {
	width: 50%;
	padding: 0 60px;
}
.page-hohoemi-8months .sec-followupmilk-container-body + .sec-followupmilk-container-body {
	border-left: 3px dotted #bebebe;
}
.page-hohoemi-8months .sec-followupmilk-container-body-text {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}
.page-hohoemi-8months .sec-followupmilk-container-body-text strong {
	font-size: 2.8rem;
}
.page-hohoemi-8months .sec-followupmilk-container-body-text small {
	font-size: 1.8rem;
}
.page-hohoemi-8months .sec-followupmilk-container-body-img {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 133px;
}
.page-hohoemi-8months .sec-followupmilk-banner {
	text-align: center;
	margin-top: 55px;
}
.page-hohoemi-8months .sec-followupmilk-banner-link {
	display: inline-block;
	border-radius: 20px;
	box-shadow: 0 0 10px 5px rgba(97, 97, 97, 0.2);
	transition: all 0.2s;
}
.page-hohoemi-8months .sec-followupmilk-banner-link:hover {
	opacity: 1;
	transform: translate(-3px, -3px);
	box-shadow: 3px 3px 10px 8px rgba(97, 97, 97, 0.2);
}
.page-hohoemi-8months .sec-followupmilk .liquid-wrap .liquid-box.liq-01 {
	top: 350px;
	left: 150px;
}
.page-hohoemi-8months .sec-followupmilk .liquid-wrap .liquid-box.liq-02 {
	bottom: 320px;
	right: 100px;
}
.page-hohoemi-8months .sec-counseling {
	position: relative;
	background-color: #fff;
}
.page-hohoemi-8months .sec-counseling .wave-box {
	background-image: url(../img/4months/wave_white.png);
}
.page-hohoemi-8months .sec-counseling-inner {
	position: relative;
	z-index: 2;
	padding-bottom: 150px;
}
.page-hohoemi-8months .sec-counseling-inner .bg-icon {
	z-index: 2;
}
.page-hohoemi-8months .sec-counseling-inner .bg-icon.ic-01 {
	top: 160px;
	left: -100px;
	width: auto;
}
.page-hohoemi-8months .sec-counseling-inner .bg-icon.ic-02 {
	top: 350px;
	right: -40px;
	width: auto;
}
.page-hohoemi-8months .sec-counseling-title {
	color: #56bc96;
}
.page-hohoemi-8months .sec-counseling-title::after {
	width: 74%;
	background-image: url(../img/4months/title_underline_green.png);
}
.page-hohoemi-8months .sec-counseling-title > small {
	font-size: 3.4rem;
}
.page-hohoemi-8months .sec-counseling-text {
	font-size: 1.8rem;
	text-align: center;
	line-height: 2;
}
.page-hohoemi-8months .sec-counseling-banner {
	margin-top: 39px;
	text-align: center;
}
.page-hohoemi-8months .sec-counseling-banner-link {
	display: inline-block;
	border-radius: 20px;
	box-shadow: 0 0 10px 5px rgba(97, 97, 97, 0.2);
	transition: all 0.2s;
}
.page-hohoemi-8months .sec-counseling-banner-link:hover {
	opacity: 1;
	transform: translate(-3px, -3px);
	box-shadow: 3px 3px 10px 8px rgba(97, 97, 97, 0.2);
}
.page-hohoemi-8months .sec-counseling-info {
	max-width: 590px;
	margin: 48px auto 0;
}
.page-hohoemi-8months .sec-counseling-info-box {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
}
.page-hohoemi-8months .sec-counseling-info-box:last-child {
	margin-bottom: 0;
}
.page-hohoemi-8months .sec-counseling-info-title {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 40px;
	margin-right: 31px;
	background-color: #56bc96;
	border-radius: 20px;
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
}
.page-hohoemi-8months .sec-counseling-info-content {
	font-size: 1.8rem;
	line-height: 1.2;
	letter-spacing: 0.1em;
}
.page-hohoemi-8months .sec-counseling-info-content > small {
	font-size: 1.1rem;
	letter-spacing: normal;
}
.page-hohoemi-8months .sec-banner-list-item {
	text-align: center;
}
.page-hohoemi-8months .sec-banner-list-item:nth-child(1) {
	padding-left: 24px;
}
.page-hohoemi-8months .sec-banner-list-link {
	display: inline-block;
}
.page-hohoemi-8months .sec-banner .sns-wrap {
	text-align: center;
	margin-top: 75px;
}
.page-hohoemi-8months .sec-banner .sns-wrap .btn-sns {
	display: inline-block;
	width: 57px;
	height: 57px;
}
.page-hohoemi-8months .sec-banner .sns-wrap .btn-sns + .btn-sns {
	margin-left: 22px;
}

/**
 * セッティング
 */
/**
 * リセット
 */
/**
 * JSライブラリ用スタイル
 */
/**
 * Mixin
 */
/**
 * 基本スタイル
 */
/**
 * 共通パーツスタイル
 */
/**
 * 共通モジュールスタイル
 */
/**
 * ページスタイル
 */
@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;
	}
	img {
		width: 100%;
	}
	.container {
		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.85;
	}
	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,
	h2.u-line,
	h2.u-line-b,
	h2.u-line-w,
	h2.u-line-w-l,
	h2.u-line-br,
	h3.u-line,
	h3.u-line-b,
	h3.u-line-w,
	h3.u-line-w-l,
	h3.u-line-br,
	h4.u-line,
	h4.u-line-b,
	h4.u-line-w,
	h4.u-line-w-l,
	h4.u-line-br,
	h5.u-line,
	h5.u-line-b,
	h5.u-line-w,
	h5.u-line-w-l,
	h5.u-line-br {
		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,
	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,
	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,
	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,
	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 {
		padding: 0 0 3px;
		background-image: url("/baby/hohoemi/assets/img/sp/common/title_line.png");
		background-size: auto 4.5px;
	}
	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("/baby/hohoemi/assets/img/sp/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("/baby/hohoemi/assets/img/sp/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 5px;
		background-image: url("/baby/hohoemi/assets/img/sp/common/title_line_white.png");
		background-size: auto 4px;
	}
	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("/baby/hohoemi/assets/img/sp/common/title_line_brown.png");
		background-size: auto 5px;
	}
	.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;
	}
	.header {
		display: block;
		transition: all 0.75s ease 0s;
	}
	.header {
		position: fixed;
		top: 55px;
		left: 0;
		width: 100%;
		background-color: rgba(255, 255, 255, 0.7);
		z-index: 10;
	}
	.header.show {
		top: 0;
	}
	.header .header-inner {
		width: 100%;
		height: 50px;
		padding: 0 15px;
	}
	.header .header-inner .link-logo {
		display: inline-block;
		padding: 14px 0 11px;
	}
	.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;
	}
	.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%;
	}
	.slide-wrap {
		position: relative;
		margin: 60px -10px 0px;
	}
	.slide-main {
		position: relative;
	}
	.swiper-slide {
		padding: 10px;
	}
	.slide-step .swiper-slide {
		padding: 0px;
	}
	.slide-img {
		box-shadow: 0px 0px 4px 1px rgba(122, 122, 122, 0.5);
		border-radius: 5px;
	}
	.swiper-pagination-bullet {
		width: 31px;
		height: 31px;
		margin: 0 4px;
	}
	.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(5), .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet:nth-of-type(6), .page-rakurakucube-usage .sec-01 #pagination-slide-01 .swiper-pagination-bullet:nth-of-type(10),
	.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) {
		width: 8px;
		height: 8px;
	}
	.swiper-btn-wrap {
		top: 40%;
	}
	.swiper-button-prev, .swiper-button-next {
		width: 40px;
		height: 80px;
		top: 0;
		bottom: 0;
		margin: auto;
		background: url("/baby/hohoemi/assets/img/sp/common/slide_btn_l.png") center center no-repeat;
		background-size: contain;
	}
	.swiper-button-prev {
		left: -15px;
		background-image: url("/baby/hohoemi/assets/img/sp/common/slide_btn_l_on.png");
	}
	.swiper-button-next {
		right: -15px;
		background-image: url("/baby/hohoemi/assets/img/sp/common/slide_btn_r_on.png");
	}
	.swiper-button-prev.swiper-button-disabled {
		opacity: 1;
		background-image: url("/baby/hohoemi/assets/img/sp/common/slide_btn_l.png");
	}
	.swiper-button-next.swiper-button-disabled {
		opacity: 1;
		background-image: url("/baby/hohoemi/assets/img/sp/common/slide_btn_r.png");
	}
	.menu--btn-wrapper {
		top: auto;
		bottom: 3vh;
		right: 2%;
		width: 90px;
		height: 90px;
	}
	.menu--btn-wrapper.is_bottom {
		position: absolute;
		top: auto;
		bottom: 25px;
	}
	.menu--btn-wrapper.no-scroll {
		top: auto;
	}
	.menu {
		width: 100%;
		height: 70vh;
		padding: 45px 0 0;
		top: inherit;
		bottom: -70vh;
		right: 0;
		-webkit-overflow-scrolling: touch;
	}
	.menu.active {
		right: 0;
		bottom: 0;
		width: 100%;
	}
	.menu .memu--logo {
		margin-left: 5%;
	}
	.menu .menu--ul {
		width: 65%;
		margin-left: 5%;
	}
	.menu .menu--ul li {
		border-bottom: 1px solid #FFAAA8;
	}
	.menu .menu--ul > li:last-child {
		padding-top: 5px;
	}
	.menu .menu--ul a {
		font-size: 1.7rem;
		padding: 7px 23px 7px 0;
	}
	.menu .menu--ul .menu--inner-ul-wrapper li:last-child {
		padding-bottom: 0;
		border-bottom: none;
	}
	.menu .menu--ul .menu--inner-ul-wrapper a {
		font-size: 1.4rem;
	}
	#menu.no-scroll {
		padding-top: 45px;
	}
	.step-button-wrapper {
		top: 17.3333333333vw;
		width: 10.6666666667vw;
		height: 45.3333333333vw;
	}
	.step-button-wrapper.no-scroll {
		top: 30.6666666667vw;
	}
	.menu-lang-wrap {
		top: 6px;
		right: 6px;
		width: 137px;
		font-size: 1.4rem;
	}
	.menu-lang-wrap .menu-lang-btn-wrap a {
		padding: 12px 15px;
	}
	.menu-lang-wrap .menu-lang-inner {
		padding-top: 40px;
	}
	.menu-lang-wrap .menu-lang li a {
		padding: 12px 15px;
	}
	.menu-lang-wrap.no-scroll {
		top: 61px;
	}
	.box-dash:before, .box-dash:after,
	.box-dash-thin:before,
	.box-dash-thin:after {
		background-image: url("/baby/hohoemi/assets/img/sp/common/box_horizon.png");
		background-size: auto 2px;
		height: 2px;
	}
	.box-dash-inner,
	.box-dash-thin-inner {
		padding: 8px 12px;
	}
	.box-dash-inner:before, .box-dash-inner:after,
	.box-dash-thin-inner:before,
	.box-dash-thin-inner:after {
		background-image: url("/baby/hohoemi/assets/img/sp/common/box_vartical.png");
		background-size: 2px auto;
		width: 2px;
	}
	.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 {
		width: 4.5px;
		height: 4.5px;
		background-image: url("/baby/hohoemi/assets/img/sp/common/box_tl.png");
		background-size: 4.5px auto;
	}
	.box-dash-corner-t:after, .box-dash-corner-b:after,
	.box-dash-thin-corner-t:after,
	.box-dash-thin-corner-b:after {
		background-image: url("/baby/hohoemi/assets/img/sp/common/box_tr.png");
	}
	.box-dash-corner-b:before,
	.box-dash-thin-corner-b:before {
		background-image: url("/baby/hohoemi/assets/img/sp/common/box_bl.png");
	}
	.box-dash-corner-b:after,
	.box-dash-thin-corner-b:after {
		background-image: url("/baby/hohoemi/assets/img/sp/common/box_br.png");
	}
	.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:before, .box-dash-thin:after {
		background-image: url("/baby/hohoemi/assets/img/sp/common/box2_horizon.png");
		background-size: auto 2px;
		width: 97%;
		height: 2px;
	}
	.box-dash-thin:after {
		background-position: center bottom;
	}
	.box-dash-thin-inner:before, .box-dash-thin-inner:after {
		background-image: url("/baby/hohoemi/assets/img/sp/common/box2_vartical.png");
		background-size: 2px auto;
		height: 97%;
		width: 2px;
	}
	.box-dash-thin-corner-t, .box-dash-thin-corner-b {
		height: 6px;
	}
	.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: 6px;
		height: 6px;
		background-image: url("/baby/hohoemi/assets/img/sp/common/box2_tl.png");
		background-size: 6px auto;
	}
	.box-dash-thin-corner-t:after, .box-dash-thin-corner-b:after {
		background-image: url("/baby/hohoemi/assets/img/sp/common/box2_tr.png");
	}
	.box-dash-thin-corner-b:before {
		background-image: url("/baby/hohoemi/assets/img/sp/common/box2_bl.png");
	}
	.box-dash-thin-corner-b:after {
		background-image: url("/baby/hohoemi/assets/img/sp/common/box2_br.png");
	}
	.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("/baby/hohoemi/assets/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, .page-index .sec-05b .sec-inner.sec-inner-01 {
		padding-bottom: 30px;
	}
	.class-product-info .sec-inner.wide, .page-product .sec-01 .sec-inner.wide, .page-index .sec-05b .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), .page-index .sec-05b .sec-inner.wide:nth-last-of-type(1) {
		padding-bottom: 60px;
	}
	.class-product-info h4 + p, .page-product .sec-01 h4 + p, .page-index .sec-05b h4 + p {
		width: 100%;
		padding-left: 25px;
		padding-right: 25px;
	}
	.class-product-info .swiper-slide, .page-product .sec-01 .swiper-slide, .page-index .sec-05b .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, .page-index .sec-05b .swiper-slide .slide-inner p,
	.class-product-info .swiper-slide .slide-inner h5,
	.page-product .sec-01 .swiper-slide .slide-inner h5,
	.page-index .sec-05b .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, .page-index .sec-05b .swiper-slide-active {
		opacity: 1;
	}
	.class-product-info .swiper-slide-active .slide-inner p, .page-product .sec-01 .swiper-slide-active .slide-inner p, .page-index .sec-05b .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,
	.page-index .sec-05b .swiper-slide-active .slide-inner h5 {
		opacity: 1;
	}
	.class-product-info h4 .title-01, .page-product .sec-01 h4 .title-01, .page-index .sec-05b h4 .title-01 {
		width: 51.6%;
	}
	.class-product-info #slide-02, .page-product .sec-01 #slide-02, .page-index .sec-05b #slide-02 {
		width: auto;
	}
	.class-product-info #slide-02-2, .page-product .sec-01 #slide-02-2, .page-index .sec-05b #slide-02-2 {
		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, .page-index .sec-05b #slide-02 .swiper-slide.slide-03 .slide-inner {
		padding-top: 7.6923076923%;
	}
	.class-product-info .img-01-01, .page-product .sec-01 .img-01-01, .page-index .sec-05b .img-01-01 {
		width: 113.4615384615%;
		height: auto;
		margin-left: -8%;
	}
	.class-product-info .img-01-02, .page-product .sec-01 .img-01-02, .page-index .sec-05b .img-01-02 {
		width: 64.6153846154%;
		height: auto;
	}
	.class-product-info .img-01-03, .page-product .sec-01 .img-01-03, .page-index .sec-05b .img-01-03 {
		width: 52.6923076923%;
		height: auto;
	}
	.class-product-info .img-01-04, .page-product .sec-01 .img-01-04, .page-index .sec-05b .img-01-04 {
		width: 64.6153846154%;
		height: auto;
	}
	.class-product-info #slide-04, .page-product .sec-01 #slide-04, .page-index .sec-05b #slide-04 {
		width: auto;
	}
	.class-product-info h4 .title-02, .page-product .sec-01 h4 .title-02, .page-index .sec-05b h4 .title-02 {
		width: 48.8%;
	}
	.class-product-info .img-02, .page-product .sec-01 .img-02, .page-index .sec-05b .img-02 {
		width: 47.4666666667%;
		margin-top: 15px;
	}
	.class-product-info .img-02-02, .page-product .sec-01 .img-02-02, .page-index .sec-05b .img-02-02 {
		width: 72%;
		margin-top: 15px;
	}
	.class-product-info h4 .title-03, .page-product .sec-01 h4 .title-03, .page-index .sec-05b 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, .page-index .sec-05b #slide-03 .swiper-slide.slide-02 .slide-inner {
		padding-top: 17.3076923077%;
	}
	.class-product-info #slide-03, .page-product .sec-01 #slide-03, .page-index .sec-05b #slide-03 {
		width: 100%;
	}
	.class-product-info .img-03-01, .page-product .sec-01 .img-03-01, .page-index .sec-05b .img-03-01 {
		width: 65.3846153846%;
	}
	.class-product-info .img-03-02, .page-product .sec-01 .img-03-02, .page-index .sec-05b .img-03-02 {
		width: 100%;
	}
	.page-index {
		padding-top: 0;
	}
	.page-index .head-img {
		width: 41.5384615385%;
	}
	.page-index .header {
		display: block;
		top: -50px;
		transition: all 0.75s ease 0s;
	}
	.page-index .header.show {
		top: 0;
	}
	.page-index .container {
		padding-top: 5px;
	}
	.en .page-index .sec-00,
	.vn .page-index .sec-00,
	.kr .page-index .sec-00,
	.cn .page-index .sec-00,
	.tw .page-index .sec-00,
	.th .page-index .sec-00,
	.pt .page-index .sec-00 {
		width: 100%;
		padding: 0 15px;
	}
	.en .page-index .sec-00 .mv-wrap,
	.vn .page-index .sec-00 .mv-wrap,
	.kr .page-index .sec-00 .mv-wrap,
	.cn .page-index .sec-00 .mv-wrap,
	.tw .page-index .sec-00 .mv-wrap,
	.th .page-index .sec-00 .mv-wrap,
	.pt .page-index .sec-00 .mv-wrap {
		height: 139.6vw;
	}
	.en .page-index .sec-00 .mv-wrap .mv-img,
	.vn .page-index .sec-00 .mv-wrap .mv-img,
	.kr .page-index .sec-00 .mv-wrap .mv-img,
	.cn .page-index .sec-00 .mv-wrap .mv-img,
	.tw .page-index .sec-00 .mv-wrap .mv-img,
	.th .page-index .sec-00 .mv-wrap .mv-img,
	.pt .page-index .sec-00 .mv-wrap .mv-img {
		width: 92.5333333333vw;
		height: 139.6vw;
	}
	.en .page-index .sec-00 .mv-wrap .copy,
	.vn .page-index .sec-00 .mv-wrap .copy,
	.kr .page-index .sec-00 .mv-wrap .copy,
	.cn .page-index .sec-00 .mv-wrap .copy,
	.tw .page-index .sec-00 .mv-wrap .copy,
	.th .page-index .sec-00 .mv-wrap .copy,
	.pt .page-index .sec-00 .mv-wrap .copy {
		top: 28.6666666667vw;
		font-size: 1.4rem;
		line-height: 1.5;
		text-align: center;
		padding: 0;
	}
	.en .page-index .sec-00 .mv-wrap .img-scroll,
	.vn .page-index .sec-00 .mv-wrap .img-scroll,
	.kr .page-index .sec-00 .mv-wrap .img-scroll,
	.cn .page-index .sec-00 .mv-wrap .img-scroll,
	.tw .page-index .sec-00 .mv-wrap .img-scroll,
	.th .page-index .sec-00 .mv-wrap .img-scroll,
	.pt .page-index .sec-00 .mv-wrap .img-scroll {
		width: 14.4444444444%;
	}
	.en .page-index .sec-00 .mv-btm,
	.vn .page-index .sec-00 .mv-btm,
	.kr .page-index .sec-00 .mv-btm,
	.cn .page-index .sec-00 .mv-btm,
	.tw .page-index .sec-00 .mv-btm,
	.th .page-index .sec-00 .mv-btm,
	.pt .page-index .sec-00 .mv-btm {
		display: block;
		padding: 0 4vw;
		margin: auto;
		bottom: auto;
		top: 69.3333333333vw;
		left: 10px;
		right: auto;
	}
	.en .page-index .sec-00 .mv-btm .img-hohoemi,
	.vn .page-index .sec-00 .mv-btm .img-hohoemi,
	.kr .page-index .sec-00 .mv-btm .img-hohoemi,
	.cn .page-index .sec-00 .mv-btm .img-hohoemi,
	.tw .page-index .sec-00 .mv-btm .img-hohoemi,
	.th .page-index .sec-00 .mv-btm .img-hohoemi,
	.pt .page-index .sec-00 .mv-btm .img-hohoemi {
		margin-right: auto;
		margin-left: 0;
		width: 28.6666666667vw;
		height: 56.1220657277vw;
	}
	.en .page-index .sec-00 .mv-btm .small,
	.vn .page-index .sec-00 .mv-btm .small,
	.kr .page-index .sec-00 .mv-btm .small,
	.cn .page-index .sec-00 .mv-btm .small,
	.tw .page-index .sec-00 .mv-btm .small,
	.th .page-index .sec-00 .mv-btm .small,
	.pt .page-index .sec-00 .mv-btm .small {
		margin-top: 3px;
		font-size: 1.4666666667vw;
		line-height: 1;
		-webkit-text-size-adjust: 100%;
		text-size-adjust: 100%;
	}
	.en .page-index .sec-00 .mv-banner,
	.vn .page-index .sec-00 .mv-banner,
	.kr .page-index .sec-00 .mv-banner,
	.cn .page-index .sec-00 .mv-banner,
	.tw .page-index .sec-00 .mv-banner,
	.th .page-index .sec-00 .mv-banner,
	.pt .page-index .sec-00 .mv-banner {
		position: relative;
		left: auto;
		bottom: auto;
		display: block;
		width: 100%;
		margin-top: 15px;
	}
	.en .page-index .sec-00 .mv-banner a + a,
	.vn .page-index .sec-00 .mv-banner a + a,
	.kr .page-index .sec-00 .mv-banner a + a,
	.cn .page-index .sec-00 .mv-banner a + a,
	.tw .page-index .sec-00 .mv-banner a + a,
	.th .page-index .sec-00 .mv-banner a + a,
	.pt .page-index .sec-00 .mv-banner a + a {
		margin-top: 20px;
	}
	.en .page-index .sec-00 .mv-banner_upper,
	.vn .page-index .sec-00 .mv-banner_upper,
	.kr .page-index .sec-00 .mv-banner_upper,
	.cn .page-index .sec-00 .mv-banner_upper,
	.tw .page-index .sec-00 .mv-banner_upper,
	.th .page-index .sec-00 .mv-banner_upper,
	.pt .page-index .sec-00 .mv-banner_upper {
		position: relative;
		right: auto;
		bottom: auto;
		display: block;
		width: 100%;
		margin-top: 15px;
	}
	.page-index .sec-01 .liq-01 {
		top: 40px;
		right: -140px;
		width: 266px;
	}
	.page-index .sec-01 .liq-02 {
		left: -100px;
		bottom: 60px;
		width: 202px;
	}
	.page-index .sec-01 .ic-01 {
		top: 10px;
		left: 12px;
		right: auto;
		width: 18.6666666667%;
	}
	.page-index .sec-01 .ic-02 {
		bottom: -20px;
		right: 22px;
		width: 17.0666666667%;
	}
	.page-index .sec-01 .sec-img {
		width: 100%;
		margin-top: 20px;
	}
	.page-index .sec-01 p {
		width: 100%;
		margin: 20px auto 20px;
	}
	.page-index .sec-02 .liq-01 {
		top: 30%;
		right: -50px;
		width: 268.5px;
	}
	.page-index .sec-02 .liq-02 {
		left: -100px;
		bottom: 20%;
		width: 232px;
	}
	.page-index .sec-02 .ic-03 {
		top: 200px;
		left: 25px;
		right: auto;
		z-index: 2;
		width: 23.3333333333%;
	}
	.page-index .sec-02 .ic-04 {
		display: block;
		top: 40%;
		left: auto;
		right: 25px;
		z-index: 2;
		width: 25.7333333333%;
	}
	.page-index .sec-02 .ic-05 {
		top: auto;
		bottom: 25%;
		left: auto;
		right: 30px;
		width: 17.8666666667%;
	}
	.page-index .sec-02 .ic-06 {
		top: auto;
		bottom: -50px;
		left: 40px;
		right: auto;
		width: 18.4%;
	}
	.page-index .sec-02 .kodawari-wrap {
		display: block;
		width: 100%;
	}
	.page-index .sec-02 .kodawari-wrap .item {
		width: 100%;
		margin-right: auto;
	}
	.page-index .sec-02 .kodawari-wrap .item .img-wrap {
		width: 95%;
		margin: 0 auto;
	}
	.page-index .sec-02 .kodawari-wrap .item:nth-of-type(2) {
		margin-right: auto;
		margin-left: auto;
		margin-top: 100px;
	}
	.page-index .sec-02 .kodawari-wrap .item:nth-of-type(3) {
		margin: auto;
		margin-top: 100px;
	}
	.page-index .sec-02 .kodawari-wrap .item p {
		width: 100%;
	}
	.page-index .sec-03 .liq-01 {
		top: 20%;
		left: -50px;
		width: 212px;
	}
	.page-index .sec-03 .ic-07 {
		top: 70px;
		left: auto;
		right: 25px;
		width: 20.4%;
	}
	.page-index .sec-03 .movie-wrap {
		display: block;
		width: 100%;
	}
	.page-index .sec-03 .movie-wrap .movie {
		width: 100%;
	}
	.page-index .sec-04 .liq-01 {
		top: 20%;
		right: -50px;
		width: 222.5px;
	}
	.page-index .sec-04 .ic-12 {
		display: none;
	}
	.page-index .sec-04 .sec-inner.sec-inner-01 {
		padding-bottom: 0;
	}
	.page-index .sec-04 .sec-inner .movie_container {
		width: 100%;
		height: auto;
		margin: 20px auto;
	}
	.page-index .sec-04 .sec-inner .movie_container video {
		width: 100%;
		height: auto;
	}
	.page-index .sec-04 .swiper-slide img {
		border-width: 3px;
	}
	.page-index .sec-05b .liq-01 {
		top: 70px;
		left: -25px;
		width: 168px;
	}
	.page-index .sec-05b .liq-02 {
		top: 35%;
		right: -200px;
		width: 256px;
	}
	.page-index .sec-05b .liq-03 {
		top: 55%;
		left: -50px;
		width: 160px;
	}
	.page-index .sec-05b .liq-04 {
		bottom: 25%;
		right: -30px;
		width: 78px;
	}
	.page-index .sec-05b .ic-08 {
		top: -30px;
		left: auto;
		right: 25px;
		z-index: 2;
		width: 21.6%;
	}
	.page-index .sec-05b .ic-09 {
		display: block;
		top: 9%;
		left: 15px;
		right: auto;
		width: 15.6%;
	}
	.page-index .sec-05b .ic-10 {
		top: auto;
		bottom: -100px;
		left: 20px;
		width: 18.6666666667%;
	}
	.page-index .sec-05b .ic-13 {
		top: 40%;
		right: 10px;
		width: 25.7333333333%;
	}
	.page-index .sec-05b .ic-14 {
		left: 10px;
		width: 15.6%;
	}
	.page-index .sec-05b .swiper-slide {
		transition: all 0.75s ease 0s;
		transform: scale(0.9);
	}
	.page-index .sec-05b .slide-01,
	.page-index .sec-05b .slide-02 {
		width: 45%;
	}
	.page-index .sec-05b .consul {
		padding-top: 60px;
		padding-bottom: 20%;
	}
	.page-index .sec-06 .liq-01 {
		display: none;
	}
	.page-index .sec-06 .ic-11 {
		bottom: -40px;
		right: 45px;
		width: 18.9333333333%;
	}
	.page-index .sec-06 .sec-inner {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.page-index .sec-06 .sec-inner.sec-inner-01 {
		padding-bottom: 20px;
	}
	.page-index .sec-06 .sec-inner.wide {
		width: 100%;
		padding: 0 25px;
	}
	.page-index .sec-06 .sec-inner.wide:nth-last-of-type(1) {
		padding-bottom: 60px;
	}
	.page-index .sec-07 .sec-inner {
		padding-top: 60px;
		padding-bottom: 20%;
	}
	.page-index .sec-08 .sec-inner {
		padding-top: 60px;
		padding-bottom: 20%;
	}
	.page-index .sec-10 .sec-inner {
		padding-top: 60px;
		padding-bottom: 20%;
	}
	.page-index .sec-11 .sec-inner .consul {
		padding-top: 60px;
		padding-bottom: 20%;
	}
	.page-index .sec-14 .liq-01 {
		top: 20%;
		left: -50px;
		width: 212px;
	}
	.page-index .sec-14 .ic-07 {
		top: 70px;
		left: auto;
		right: 25px;
		width: 20.4%;
	}
	.page-index .sec-14 .movie-wrap {
		display: block;
		width: 100%;
	}
	.page-index .sec-14 .movie-wrap .movie {
		width: 100%;
	}
	.page-rakurakumilk-index .release-date {
		width: 270px;
	}
	.page-rakurakumilk-index .release-date img {
		width: 130px;
	}
	.page-rakurakumilk-index .sec-00 {
		padding: 0 15px 40px;
	}
	.page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc {
		display: none;
	}
	.page-rakurakumilk-index .sec-00 .mv-banner {
		position: relative;
		left: auto;
		bottom: auto;
		display: block;
		width: 100%;
		margin-top: 15px;
	}
	.page-rakurakumilk-index .sec-00 .mv-banner a + a {
		margin-top: 20px;
	}
	.page-rakurakumilk-index .sec-00 .mv-banner_upper {
		position: relative;
		right: auto;
		bottom: auto;
		display: block;
		width: 100%;
		margin-top: 15px;
	}
	.page-rakurakumilk-index .sec-00 .liquid-box {
		display: none;
	}
	.en .page-rakurakumilk-index .sec-00,
	.vn .page-rakurakumilk-index .sec-00,
	.kr .page-rakurakumilk-index .sec-00,
	.cn .page-rakurakumilk-index .sec-00,
	.tw .page-rakurakumilk-index .sec-00,
	.th .page-rakurakumilk-index .sec-00,
	.pt .page-rakurakumilk-index .sec-00 {
		padding: 0 15px 40px;
	}
	.en .page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc,
	.vn .page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc,
	.kr .page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc,
	.cn .page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc,
	.tw .page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc,
	.th .page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc,
	.pt .page-rakurakumilk-index .sec-00 .hero-bg-inner .mv-banner_line_pc {
		display: none;
	}
	.en .page-rakurakumilk-index .sec-00 .mv-btm,
	.vn .page-rakurakumilk-index .sec-00 .mv-btm,
	.kr .page-rakurakumilk-index .sec-00 .mv-btm,
	.cn .page-rakurakumilk-index .sec-00 .mv-btm,
	.tw .page-rakurakumilk-index .sec-00 .mv-btm,
	.th .page-rakurakumilk-index .sec-00 .mv-btm,
	.pt .page-rakurakumilk-index .sec-00 .mv-btm {
		display: block;
		width: 100%;
		margin: auto;
	}
	.en .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
	.vn .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
	.kr .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
	.cn .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
	.tw .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
	.th .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
	.pt .page-rakurakumilk-index .sec-00 .mv-btm .img-01 {
		width: 93.2307692308%;
	}
	.en .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
	.vn .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
	.kr .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
	.cn .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
	.tw .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
	.th .page-rakurakumilk-index .sec-00 .mv-btm .img-01,
	.pt .page-rakurakumilk-index .sec-00 .mv-btm .img-01 {
		width: 93.2307692308%;
		margin: auto;
		margin-top: 6.6666666667vw;
	}
	.en .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap,
	.vn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap,
	.kr .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap,
	.cn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap,
	.tw .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap,
	.th .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap,
	.pt .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap {
		flex: 1;
		padding-top: 4.6153846154%;
	}
	.en .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2,
	.vn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2,
	.kr .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2,
	.cn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2,
	.tw .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2,
	.th .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2,
	.pt .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap h2 {
		background-size: 187.5px;
		text-align: left;
	}
	.en .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
	.vn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
	.kr .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
	.cn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
	.tw .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
	.th .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
	.pt .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02 {
		float: right;
		width: 31.5384615385%;
		margin: 0;
		margin-top: -15.3846153846%;
	}
	.en .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .note,
	.vn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .note,
	.kr .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .note,
	.cn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .note,
	.tw .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .note,
	.th .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .note,
	.pt .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .note {
		font-size: 1rem;
	}
	.en .page-rakurakumilk-index .sec-00 .mv-banner,
	.vn .page-rakurakumilk-index .sec-00 .mv-banner,
	.kr .page-rakurakumilk-index .sec-00 .mv-banner,
	.cn .page-rakurakumilk-index .sec-00 .mv-banner,
	.tw .page-rakurakumilk-index .sec-00 .mv-banner,
	.th .page-rakurakumilk-index .sec-00 .mv-banner,
	.pt .page-rakurakumilk-index .sec-00 .mv-banner {
		position: relative;
		left: auto;
		bottom: auto;
		display: block;
		width: 100%;
		margin-top: 15px;
	}
	.en .page-rakurakumilk-index .sec-00 .mv-banner a + a,
	.vn .page-rakurakumilk-index .sec-00 .mv-banner a + a,
	.kr .page-rakurakumilk-index .sec-00 .mv-banner a + a,
	.cn .page-rakurakumilk-index .sec-00 .mv-banner a + a,
	.tw .page-rakurakumilk-index .sec-00 .mv-banner a + a,
	.th .page-rakurakumilk-index .sec-00 .mv-banner a + a,
	.pt .page-rakurakumilk-index .sec-00 .mv-banner a + a {
		margin-top: 20px;
	}
	.en .page-rakurakumilk-index .sec-00 .mv-banner_upper,
	.vn .page-rakurakumilk-index .sec-00 .mv-banner_upper,
	.kr .page-rakurakumilk-index .sec-00 .mv-banner_upper,
	.cn .page-rakurakumilk-index .sec-00 .mv-banner_upper,
	.tw .page-rakurakumilk-index .sec-00 .mv-banner_upper,
	.th .page-rakurakumilk-index .sec-00 .mv-banner_upper,
	.pt .page-rakurakumilk-index .sec-00 .mv-banner_upper {
		position: relative;
		right: auto;
		bottom: auto;
		display: block;
		width: 100%;
		margin-top: 15px;
	}
	.en .page-rakurakumilk-index .sec-00 .liquid-box,
	.vn .page-rakurakumilk-index .sec-00 .liquid-box,
	.kr .page-rakurakumilk-index .sec-00 .liquid-box,
	.cn .page-rakurakumilk-index .sec-00 .liquid-box,
	.tw .page-rakurakumilk-index .sec-00 .liquid-box,
	.th .page-rakurakumilk-index .sec-00 .liquid-box,
	.pt .page-rakurakumilk-index .sec-00 .liquid-box {
		display: none;
	}
	.page-rakurakumilk-index .sec-01 .liquid-box {
		top: 300px;
		right: auto;
		left: 0;
		width: 215px;
		height: 252.5px;
	}
	.page-rakurakumilk-index .sec-01 .bg-icon {
		top: -40px;
		left: auto;
		right: 5.8461538462%;
	}
	.en .page-rakurakumilk-index .sec-02 .bg-icon,
	.vn .page-rakurakumilk-index .sec-02 .bg-icon,
	.kr .page-rakurakumilk-index .sec-02 .bg-icon,
	.cn .page-rakurakumilk-index .sec-02 .bg-icon,
	.tw .page-rakurakumilk-index .sec-02 .bg-icon,
	.th .page-rakurakumilk-index .sec-02 .bg-icon,
	.pt .page-rakurakumilk-index .sec-02 .bg-icon {
		display: none;
	}
	.en .page-rakurakumilk-index .sec-02 .ic-03,
	.vn .page-rakurakumilk-index .sec-02 .ic-03,
	.kr .page-rakurakumilk-index .sec-02 .ic-03,
	.cn .page-rakurakumilk-index .sec-02 .ic-03,
	.tw .page-rakurakumilk-index .sec-02 .ic-03,
	.th .page-rakurakumilk-index .sec-02 .ic-03,
	.pt .page-rakurakumilk-index .sec-02 .ic-03 {
		display: none;
	}
	.en .page-rakurakumilk-index .sec-03 .bg-icon.ic-04,
	.vn .page-rakurakumilk-index .sec-03 .bg-icon.ic-04,
	.kr .page-rakurakumilk-index .sec-03 .bg-icon.ic-04,
	.cn .page-rakurakumilk-index .sec-03 .bg-icon.ic-04,
	.tw .page-rakurakumilk-index .sec-03 .bg-icon.ic-04,
	.th .page-rakurakumilk-index .sec-03 .bg-icon.ic-04,
	.pt .page-rakurakumilk-index .sec-03 .bg-icon.ic-04 {
		display: none;
	}
	.en .page-rakurakumilk-index .sec-03 .head-wrap .head-img,
	.vn .page-rakurakumilk-index .sec-03 .head-wrap .head-img,
	.kr .page-rakurakumilk-index .sec-03 .head-wrap .head-img,
	.cn .page-rakurakumilk-index .sec-03 .head-wrap .head-img,
	.tw .page-rakurakumilk-index .sec-03 .head-wrap .head-img,
	.th .page-rakurakumilk-index .sec-03 .head-wrap .head-img,
	.pt .page-rakurakumilk-index .sec-03 .head-wrap .head-img {
		width: 35.3846153846%;
		top: -95px;
		top: auto;
		bottom: -30px;
		left: -10px;
	}
	.en .page-rakurakumilk-index .sec-03 .head-wrap h2,
	.vn .page-rakurakumilk-index .sec-03 .head-wrap h2,
	.kr .page-rakurakumilk-index .sec-03 .head-wrap h2,
	.cn .page-rakurakumilk-index .sec-03 .head-wrap h2,
	.tw .page-rakurakumilk-index .sec-03 .head-wrap h2,
	.th .page-rakurakumilk-index .sec-03 .head-wrap h2,
	.pt .page-rakurakumilk-index .sec-03 .head-wrap h2 {
		padding-left: 23.0769230769%;
	}
	.en .page-rakurakumilk-index .sec-04 .liquid-box,
	.vn .page-rakurakumilk-index .sec-04 .liquid-box,
	.kr .page-rakurakumilk-index .sec-04 .liquid-box,
	.cn .page-rakurakumilk-index .sec-04 .liquid-box,
	.tw .page-rakurakumilk-index .sec-04 .liquid-box,
	.th .page-rakurakumilk-index .sec-04 .liquid-box,
	.pt .page-rakurakumilk-index .sec-04 .liquid-box {
		top: 140px;
		right: 15px;
		width: 102px;
		height: 99px;
	}
	.en .page-rakurakumilk-index .sec-04 .liquid-box.liq-02,
	.vn .page-rakurakumilk-index .sec-04 .liquid-box.liq-02,
	.kr .page-rakurakumilk-index .sec-04 .liquid-box.liq-02,
	.cn .page-rakurakumilk-index .sec-04 .liquid-box.liq-02,
	.tw .page-rakurakumilk-index .sec-04 .liquid-box.liq-02,
	.th .page-rakurakumilk-index .sec-04 .liquid-box.liq-02,
	.pt .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 {
		top: 48%;
		left: -60.5px;
		width: 212px;
		height: 201px;
	}
	.en .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 img,
	.vn .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 img,
	.kr .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 img,
	.cn .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 img,
	.tw .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 img,
	.th .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 img,
	.pt .page-rakurakumilk-index .sec-04 .liquid-box.liq-02 img {
		left: auto;
		right: 0;
	}
	.en .page-rakurakumilk-index .sec-04 .bg-icon,
	.vn .page-rakurakumilk-index .sec-04 .bg-icon,
	.kr .page-rakurakumilk-index .sec-04 .bg-icon,
	.cn .page-rakurakumilk-index .sec-04 .bg-icon,
	.tw .page-rakurakumilk-index .sec-04 .bg-icon,
	.th .page-rakurakumilk-index .sec-04 .bg-icon,
	.pt .page-rakurakumilk-index .sec-04 .bg-icon {
		right: auto;
		left: 15px;
	}
	.en .page-rakurakumilk-index .sec-04 .ic-06,
	.vn .page-rakurakumilk-index .sec-04 .ic-06,
	.kr .page-rakurakumilk-index .sec-04 .ic-06,
	.cn .page-rakurakumilk-index .sec-04 .ic-06,
	.tw .page-rakurakumilk-index .sec-04 .ic-06,
	.th .page-rakurakumilk-index .sec-04 .ic-06,
	.pt .page-rakurakumilk-index .sec-04 .ic-06 {
		display: none;
	}
	.page-rakurakumilk-index .sec-05 .liquid-box {
		top: 140px;
		right: 15px;
		width: 102px;
		height: 99px;
	}
	.page-rakurakumilk-index .sec-05 .liquid-box.liq-02 {
		top: 48%;
		left: -60.5px;
		width: 212px;
		height: 201px;
	}
	.page-rakurakumilk-index .sec-05 .liquid-box.liq-02 img {
		left: auto;
		right: 0;
	}
	.page-rakurakumilk-index .sec-05 .bg-icon {
		right: auto;
		left: 15px;
	}
	.page-rakurakumilk-index .sec-05 .ic-06 {
		display: none;
	}
	.page-rakurakumilk-index .sec-05 h2 {
		margin-top: 10px;
	}
	.page-rakurakumilk-index .sec-05 .prod-img {
		margin-left: 30.4615384615%;
		width: 48.3076923077%;
	}
	.page-rakurakumilk-index .sec-05 .prod-title-img {
		margin-top: 10px;
		width: 48.1538461538%;
	}
	.page-rakurakumilk-index .sec-05 p {
		text-align: center;
	}
	.page-rakurakumilk-index .sec-05 p + .btn-text {
		margin-top: 40px;
	}
	.page-rakurakumilk-usage .btn-movie {
		margin-top: 15px;
	}
	.page-rakurakumilk-usage .sec-01 .liquid-box {
		top: 80px;
		right: auto;
		left: 0;
		width: 175px;
		height: 147.5px;
	}
	.page-rakurakumilk-usage .sec-01 .liquid-box.liq-02 {
		right: 0;
		width: 111px;
		height: 162px;
	}
	.page-rakurakumilk-usage .sec-01 .ic-02 {
		top: 213.3333333333vw;
		left: 10px;
		width: 15.4666666667%;
	}
	.page-rakurakumilk-usage .sec-01 .box-dash-inner .text-wrap {
		margin-top: 10px;
	}
	.page-rakurakumilk-usage .sec-01 .box-dash-inner .text-wrap .circle {
		width: 46px;
		height: 46px;
		line-height: 46px;
		font-size: 1.6rem;
	}
	.page-rakurakumilk-usage .sec-01 .box-dash-inner .text-wrap .text {
		font-size: 1.2rem;
	}
	.page-rakurakumilk-usage .sec-02 .sec-inner {
		padding-bottom: 50px;
	}
	.page-rakurakumilk-usage .sec-02 .liquid-box {
		top: 0px;
		left: auto;
		right: 0;
		width: 158.5px;
		height: 252px;
	}
	.page-rakurakumilk-usage .sec-02 .ic-05 {
		display: none;
	}
	.page-rakurakumilk-usage .sec-02 .title.line-img {
		background-image: url("/baby/hohoemi/assets/img/sp/rakurakumilk/usage/sec_01_title_line.png");
	}
	.page-rakurakumilk-usage .sec-02 .box-dash-inner {
		padding-left: 15px;
		padding-right: 15px;
	}
	.page-rakurakumilk-usage .sec-02 .box-dash-inner .text-wrap {
		margin-top: 3px;
	}
	.page-rakurakumilk-usage .sec-02 .box-dash-inner .text-wrap .icon-ng {
		display: inline-block;
		width: 25px;
		height: 25px;
		margin: auto;
		margin-right: 5px;
	}
	.page-rakurakumilk-usage .sec-02 .box-dash-inner .text-wrap .text {
		font-size: 1.2rem;
		margin: 0 0 0 0;
	}
	.page-rakurakumilk-usage .sec-03 .sec-inner {
		padding-top: 60px;
	}
	.page-rakurakumilk-usage .sec-03 .liquid-box.liq-02 {
		left: auto;
		right: 0;
		width: 120px;
		height: 165.5px;
	}
	.page-rakurakumilk-usage .sec-03 .liquid-box.liq-03 {
		right: auto;
		left: 0;
		top: auto;
		bottom: -80px;
		width: 181.5px;
		height: 201px;
	}
	.page-rakurakumilk-usage .sec-03 .ic-07 {
		top: 35%;
		right: auto;
		left: 10px;
		width: 23.0769230769%;
	}
	.page-rakurakumilk-usage .sec-03 .chara-icon {
		margin: auto;
		top: -25px;
		left: 0;
		right: 0;
		width: 21.2vw;
	}
	.page-rakurakumilk-disaster .btn-movie {
		margin-top: 15px;
	}
	.page-rakurakumilk-disaster .title {
		letter-spacing: 2px;
		font-size: 2.2rem;
	}
	.page-rakurakumilk-disaster .sec-01 .liquid-box {
		top: 80px;
		right: auto;
		left: 0;
		width: 175px;
		height: 147.5px;
	}
	.page-rakurakumilk-disaster .sec-01 .liquid-box.liq-02 {
		right: 0;
		width: 111px;
		height: 162px;
	}
	.page-rakurakumilk-disaster .sec-01 .ic-02 {
		top: 50%;
		left: 10px;
		width: 17.8461538462%;
	}
	.page-rakurakumilk-disaster .sec-01 .title-m {
		font-size: 1.3rem;
	}
	.page-rakurakumilk-disaster .sec-01 .title.line-img {
		background-image: url("/baby/hohoemi/assets/img/sp/rakurakumilk/disaster/sec_01_title_line.png");
	}
	.page-rakurakumilk-disaster .sec-01 .before-wrap {
		height: auto;
		padding: 15px 15px 0;
		position: relative;
		width: 100%;
		height: 0;
		padding-top: 50.6870229008%;
		background-image: url("/baby/hohoemi/assets/img/sp/rakurakumilk/disaster/sec_01_box.png");
		background-size: cover;
	}
	.page-rakurakumilk-disaster .sec-01 .before-wrap .before-box {
		position: absolute;
		top: 0;
		left: 0;
		padding: 15px 15px 0;
	}
	.page-rakurakumilk-disaster .sec-01 .before-wrap .text-wrap {
		margin-top: 10px;
	}
	.page-rakurakumilk-disaster .sec-01 .before-wrap .text-wrap .circle {
		width: 46px;
		height: 46px;
		line-height: 46px;
		font-size: 1.6rem;
	}
	.page-rakurakumilk-disaster .sec-01 .before-wrap .text-wrap .text {
		font-size: 1.2rem;
	}
	.page-rakurakumilk-disaster .sec-02 .liquid-box {
		top: 30%;
		right: auto;
		left: 0;
		width: 153.5px;
		height: 128.5px;
	}
	.page-rakurakumilk-disaster .sec-02 .liquid-box.liq-02 {
		top: 45%;
		left: auto;
		right: 0;
		width: 270.5px;
		height: 194.5px;
	}
	.page-rakurakumilk-disaster .sec-02 .ic-04 {
		top: 80%;
		right: 32px;
		width: 18.5333333333%;
	}
	.page-rakurakumilk-disaster .sec-02 .sec-inner {
		padding-bottom: 40px;
	}
	.page-rakurakumilk-disaster .sec-02 .title-01 {
		background-image: url("/baby/hohoemi/assets/img/sp/rakurakumilk/disaster/sec_02_title_line_01.png");
	}
	.page-rakurakumilk-disaster .sec-02 .title-02 {
		background-image: url("/baby/hohoemi/assets/img/sp/rakurakumilk/disaster/sec_02_title_line_02.png");
	}
	.page-rakurakumilk-disaster .sec-02 .title-02 + p {
		text-align: left;
	}
	.page-rakurakumilk-disaster .sec-02 .title-03 {
		margin-top: 60px;
	}
	.page-rakurakumilk-disaster .sec-02 .title-03 + .title-s {
		margin-top: 15px;
		font-size: 1.3rem;
		line-height: 1.75;
	}
	.page-rakurakumilk-disaster .sec-02 strong {
		margin-top: 15px;
		font-size: 1.6rem;
	}
	.page-rakurakumilk-disaster .sec-02 strong + .title {
		margin-top: 70px;
	}
	.page-rakurakumilk-disaster .sec-02 .img-wrap {
		margin: 40px 0 0;
	}
	.page-rakurakumilk-disaster .sec-02 .img-wrap img {
		width: 30.7692307692%;
	}
	.page-rakurakumilk-disaster .sec-02 .img-wrap + p {
		margin-top: 18px;
	}
	.page-rakurakumilk-disaster .sec-02 .img-wrap.btn-list {
		display: block;
		margin: 0;
	}
	.page-rakurakumilk-disaster .sec-02 .img-wrap.btn-list a {
		display: block;
	}
	.page-rakurakumilk-disaster .sec-02 .img-wrap.btn-list img {
		margin: 0;
		margin-top: 12px;
		width: 100%;
	}
	.page-rakurakumilk-disaster .sec-02 .img-stock {
		width: 100%;
		margin-top: 15px;
	}
	.page-rakurakumilk-disaster .sec-02 .img-stock + p {
		margin-top: 20px;
	}
	.page-rakurakumilk-disaster .sec-03 .liquid-box {
		top: 300px;
		right: 0;
		left: auto;
		width: 152px;
		height: 194.5px;
	}
	.page-rakurakumilk-disaster .sec-03 .ic-07 {
		top: 25%;
		left: 33px;
		width: 20.9230769231%;
	}
	.page-rakurakumilk-disaster .sec-03 .sec-inner {
		padding-top: 40px;
	}
	.page-rakurakumilk-disaster .sec-03 #step-01 .swiper-slide:nth-of-type(1) {
		padding: 8px 10px 0px 10px;
	}
	.page-rakurakumilk-disaster .sec-03 #step-01 .swiper-slide:nth-of-type(1) .title {
		margin-top: 10px;
		line-height: 1.2;
	}
	.page-rakurakumilk-disaster .sec-03 .ng-wrap {
		position: relative;
		width: 100%;
		height: 0;
		margin-top: 20px;
		padding: 0;
		padding-top: 50.6870229008%;
		background-image: url("/baby/hohoemi/assets/img/sp/rakurakumilk/usage/sec_02_box.png");
		background-size: cover;
	}
	.page-rakurakumilk-disaster .sec-03 .ng-wrap .ng-box {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		padding: 10px 15px 0;
	}
	.page-rakurakumilk-disaster .sec-03 .ng-wrap .text-wrap {
		margin-top: 3px;
	}
	.page-rakurakumilk-disaster .sec-03 .ng-wrap .text-wrap .icon-ng {
		display: inline-block;
		width: 25px;
		height: 25px;
		margin: auto;
		margin-right: 5px;
	}
	.page-rakurakumilk-disaster .sec-03 .ng-wrap .text-wrap .text {
		font-size: 1.2rem;
		display: inline-block;
		margin: 0 0 0 0;
	}
	.page-rakurakumilk-disaster .sec-03 .swiper-btn-wrap {
		top: 33%;
	}
	.page-rakurakumilk-disaster .sec-03 .box-dash .list-01 li {
		font-size: 1.2rem;
		padding-left: 2rem;
		font-weight: bold;
	}
	.page-rakurakumilk-disaster .sec-03 .box-dash .list-01 li small {
		font-size: 1.2rem;
		font-weight: normal;
	}
	.page-rakurakumilk-disaster .sec-04 .liquid-box {
		top: 0px;
		right: auto;
		left: 0;
		width: 139px;
		height: 201px;
	}
	.page-rakurakumilk-disaster .sec-04 .ic-08 {
		top: auto;
		bottom: -80px;
		left: 30px;
		width: 18.6666666667%;
	}
	.page-rakurakumilk-disaster .sec-04 .title.line-img {
		background-image: url("/baby/hohoemi/assets/img/sp/rakurakumilk/usage/sec_01_title_line.png");
	}
	.page-rakurakumilk-disaster .sec-04 .ng-wrap {
		position: relative;
		width: 100%;
		height: 0;
		margin-top: 20px;
		padding: 0;
		padding-top: 50.6870229008%;
		background-image: url("/baby/hohoemi/assets/img/sp/rakurakumilk/usage/sec_02_box.png");
		background-size: cover;
	}
	.page-rakurakumilk-disaster .sec-04 .ng-wrap .ng-box {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		padding: 10px 15px 0;
	}
	.page-rakurakumilk-disaster .sec-04 .ng-wrap .text-wrap {
		margin-top: 3px;
	}
	.page-rakurakumilk-disaster .sec-04 .ng-wrap .text-wrap .icon-ng {
		display: inline-block;
		width: 25px;
		height: 25px;
		margin: auto;
		margin-right: 5px;
	}
	.page-rakurakumilk-disaster .sec-04 .ng-wrap .text-wrap .text {
		font-size: 1.2rem;
		display: inline-block;
		margin: 0 0 0 0;
	}
	.page-rakurakumilk-disaster .sec-04.sec-bottom {
		margin-top: 80px;
	}
	.page-rakurakumilk-recipe .sec-inner {
		padding-bottom: 50px;
	}
	.page-rakurakumilk-recipe .sec-inner .sec-img {
		width: 112.7819548872%;
		margin-top: 15px;
		margin-left: -6.6666666667%;
		margin-right: -6.6666666667%;
	}
	.page-rakurakumilk-recipe .sec-00 .hero-wrap .title-wrap {
		height: 71.2676056338%;
		margin: auto;
		bottom: 0;
	}
	.page-rakurakumilk-recipe .sec-00 .hero-wrap .title-wrap h1 {
		width: 73.0666666667%;
		top: 0;
	}
	.page-rakurakumilk-recipe .sec-00 .img-wrap {
		width: 81.3333333333%;
		height: auto;
		bottom: -40.404040404%;
	}
	.page-rakurakumilk-recipe .sec-01 .liq-01 {
		top: 20px;
		right: -50px;
		width: 184px;
	}
	.page-rakurakumilk-recipe .sec-01 .ic-01 {
		right: 30px;
		width: 22.2666666667%;
	}
	.page-rakurakumilk-recipe .sec-01 .sec-inner {
		padding-top: 7.6923076923%;
		padding-bottom: 0;
	}
	.page-rakurakumilk-recipe .sec-02 .liq-01 {
		left: -100px;
		width: 297px;
	}
	.page-rakurakumilk-recipe .sec-02 .liq-02 {
		top: 60%;
		right: -50px;
		width: 162.5px;
	}
	.page-rakurakumilk-recipe .sec-02 .ic-01 {
		display: none;
	}
	.page-rakurakumilk-recipe .sec-02 .ic-02 {
		display: none;
	}
	.page-rakurakumilk-recipe .sec-02 .ic-03 {
		display: none;
	}
	.page-rakurakumilk-recipe .sec-02 .ic-04 {
		bottom: -40px;
		right: 45px;
		width: 17.0666666667%;
	}
	.page-rakurakumilk-recipe .sec-02 .ic-05 {
		display: none;
	}
	.page-rakurakumilk-recipe .sec-03 .liq-01 {
		left: -50px;
		width: 221px;
	}
	.page-rakurakumilk-mapping .title {
		letter-spacing: normal;
		font-size: 2.2rem;
	}
	.page-rakurakumilk-mapping .sec-01 .liquid-box {
		top: 80px;
		right: auto;
		left: 0;
		width: 175px;
		height: 147.5px;
	}
	.page-rakurakumilk-mapping .sec-01 .liquid-box.liq-02 {
		right: 0;
		width: 111px;
		height: 162px;
	}
	.page-rakurakumilk-mapping .sec-01 .sec-inner {
		padding: 40px 0;
	}
	.page-rakurakumilk-mapping .sec-01 .title-m {
		font-size: 1.3rem;
	}
	.page-rakurakumilk-mapping .sec-01 .title {
		font-size: 18px;
	}
	.page-rakurakumilk-mapping .sec-01 .title.line-img {
		background-image: url("/baby/hohoemi/assets/img/sp/rakurakumilk/disaster/sec_01_title_line.png");
	}
	.page-rakurakumilk-mapping .sec-01 .before-wrap {
		height: auto;
		padding: 15px 15px 0;
		position: relative;
		width: 100%;
		height: 0;
		padding-top: 50.6870229008%;
		background-image: url("/baby/hohoemi/assets/img/sp/rakurakumilk/disaster/sec_01_box.png");
		background-size: cover;
	}
	.page-rakurakumilk-mapping .sec-01 .before-wrap .before-box {
		position: absolute;
		top: 0;
		left: 0;
		padding: 15px 15px 0;
	}
	.page-rakurakumilk-mapping .sec-01 .before-wrap .text-wrap {
		margin-top: 10px;
	}
	.page-rakurakumilk-mapping .sec-01 .before-wrap .text-wrap .circle {
		width: 46px;
		height: 46px;
		line-height: 46px;
		font-size: 1.6rem;
	}
	.page-rakurakumilk-mapping .sec-01 .before-wrap .text-wrap .text {
		font-size: 1.2rem;
	}
	.page-rakurakumilk-mapping .sec-02 .sec-inner .title {
		font-size: 16px;
	}
	.page-rakurakumilk-mapping .sec-02 .sec-inner .title.hohoemi-map {
		width: 211px;
		margin-left: auto;
		margin-right: auto;
	}
	.page-rakurakumilk-mapping .sec-02 .sec-inner > div + div {
		margin-top: 40px;
	}
	.page-rakurakumilk-mapping .sec-02 .ic-01-sp {
		top: -40px;
		right: 14px;
		width: 65px;
	}
	.page-rakurakumilk-mapping .sec-02 .sec-inner {
		padding-bottom: 40px;
	}
	.page-rakurakumilk-mapping .sec-02 strong {
		margin-top: 15px;
		font-size: 1.6rem;
	}
	.page-rakurakumilk-mapping .sec-02 strong + .title {
		margin-top: 70px;
	}
	.page-rakurakumilk-mapping .sec-02 .box-dash .list-01 li {
		font-size: 1.2rem;
		padding-left: 2rem;
		font-weight: bold;
	}
	.page-rakurakumilk-mapping .sec-02 .box-dash .list-01 li small {
		font-size: 1.2rem;
		font-weight: normal;
	}
	.page-rakurakumilk-mapping .sec-02 .app-download {
		height: auto;
		padding: 25px 0;
		border-width: 2px;
		border-radius: 8px;
	}
	.page-rakurakumilk-mapping .sec-02 .app-download .icon {
		width: 70px;
		height: 70px;
	}
	.page-rakurakumilk-mapping .sec-02 .app-download .head {
		font-size: 14px;
		margin-left: 4px;
	}
	.page-rakurakumilk-mapping .sec-02 .app-download .head span {
		font-size: 10px;
	}
	.page-rakurakumilk-mapping .sec-02 .app-download .app-btn-wrapper {
		display: block;
	}
	.page-rakurakumilk-mapping .sec-02 .app-download .app-btn-wrapper a {
		margin-left: auto;
		margin-right: auto;
	}
	.page-rakurakumilk-mapping .sec-02 .app-download .app-btn-wrapper a + a {
		margin: 10px 0 0 0;
	}
	.page-rakurakumilk-mapping .sec-02 .app-download .app-btn-wrapper a.btn-app-store {
		width: 108px;
	}
	.page-rakurakumilk-mapping .sec-02 .app-download .app-btn-wrapper a.btn-google-play {
		width: 113px;
	}
	.page-rakurakumilk-mapping .sec-02 .box-border {
		border-width: 2px;
		border-radius: 8px;
		padding: 25px 0;
	}
	.page-rakurakumilk-mapping .sec-02 .box-dash-inner {
		padding: 25px;
	}
	.page-rakurakumilk-mapping .sec-02 .app-images > p {
		font-size: 12px;
	}
	.page-rakurakumilk-mapping .sec-02 .app-images ul li {
		width: 130px;
	}
	.page-rakurakumilk-mapping .sec-02 .app-images ul li + li {
		margin-left: 20px;
	}
	.page-rakurakumilk-mapping .sec-02 .app-images ul li .note {
		font-size: 8px;
	}
	.page-rakurakumilk-mapping .sec-03 .ic-06-sp {
		left: 16px;
		top: -25px;
		width: 50px;
		z-index: 3;
	}
	.page-rakurakumilk-mapping .sec-03 .sec-inner {
		padding-top: 40px;
	}
	.page-rakurakumilk-mapping .sec-03 #step-01 .swiper-slide:nth-of-type(1) {
		padding: 8px 10px 0px 10px;
	}
	.page-rakurakumilk-mapping .sec-03 #step-01 .swiper-slide:nth-of-type(1) .title {
		margin-top: 10px;
		line-height: 1.2;
	}
	.page-rakurakumilk-mapping .sec-03 .ng-wrap {
		position: relative;
		width: 100%;
		height: 0;
		margin-top: 20px;
		padding: 0;
		padding-top: 50.6870229008%;
		background-image: url("/baby/hohoemi/assets/img/sp/rakurakumilk/usage/sec_02_box.png");
		background-size: cover;
	}
	.page-rakurakumilk-mapping .sec-03 .ng-wrap .ng-box {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		padding: 10px 15px 0;
	}
	.page-rakurakumilk-mapping .sec-03 .ng-wrap .text-wrap {
		margin-top: 3px;
	}
	.page-rakurakumilk-mapping .sec-03 .ng-wrap .text-wrap .icon-ng {
		display: inline-block;
		width: 25px;
		height: 25px;
		margin: auto;
		margin-right: 5px;
	}
	.page-rakurakumilk-mapping .sec-03 .ng-wrap .text-wrap .text {
		font-size: 1.2rem;
		display: inline-block;
		margin: 0 0 0 0;
	}
	.page-rakurakumilk-mapping .sec-03 .swiper-btn-wrap {
		top: 33%;
	}
	.page-rakurakumilk-attachment .sec-00 {
		padding: 0 15px 40px;
	}
	.page-rakurakumilk-attachment .sec-00 .hero-bg-inner .mv-banner_line_pc {
		display: none;
	}
	.page-rakurakumilk-attachment .sec-00 .mv-wrap h1 {
		width: 63.8666666667vw;
		height: 23.6vw;
		left: 13.3333333333vw;
		top: 4.6666666667vw;
		bottom: auto;
	}
	.page-rakurakumilk-attachment .sec-title .board-title-wrap {
		background: transparent;
	}
	.page-rakurakumilk-attachment .btn-movie {
		margin-top: 15px;
	}
	.page-rakurakumilk-attachment .sec-02 .sec-inner.ttl h2.title.large {
		font-size: 5.3333333333vw;
		letter-spacing: -1px;
	}
	.page-rakurakumilk-attachment .sec-02 .sec-inner.ttl h2.title.large em {
		letter-spacing: -3px;
	}
	.page-rakurakumilk-attachment .sec-03 .bg {
		display: none;
	}
	.page-rakurakumilk-attachment .sec-03 .icon {
		display: none;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body {
		margin: 6.6666666667vw 0 0 0;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox {
		width: 87.2vw;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox:before {
		width: 87.2vw;
		height: 2.6666666667vw;
		background: url("/baby/hohoemi/assets/img/sp/rakurakumilk/attachment/box_top.png") no-repeat;
		background-size: 87.2vw 2.6666666667vw;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap {
		background: url("/baby/hohoemi/assets/img/sp/rakurakumilk/attachment/box_middle.png") repeat;
		background-size: 87.2vw 4.5333333333vw;
		padding: 1.3333333333vw 4vw;
		margin: -1px 0 0 0;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-ttl h3 {
		font-size: 4.2666666667vw;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body {
		margin: 1.3333333333vw 0 0 0;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dt {
		margin-top: 2.6666666667vw;
		width: 12.4vw;
		height: 12.4vw;
		font-size: 4.2666666667vw;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd {
		margin-top: 2.6666666667vw;
		padding: 0 0 0 2.4vw;
		width: 66.8vw;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox:after {
		margin: -1px 0 0 0;
		width: 87.2vw;
		height: 2.6666666667vw;
		background: url("/baby/hohoemi/assets/img/sp/rakurakumilk/attachment/box_bottom.png") no-repeat;
		background-size: 87.2vw 2.6666666667vw;
	}
	.lang-en.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
	.lang-cn.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
	.lang-tw.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
	.lang-kr.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
	.lang-pt.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
	.lang-vn.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
	.lang-th.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd {
		margin: 0.9333333333vw 0 0 0;
		padding: 0;
		font-size: 3.2vw;
		line-height: 5.8666666667vw;
	}
	.page-rakurakumilk-attachment .sec-04 .swiper-button-prev,
	.page-rakurakumilk-attachment .sec-04 .swiper-button-next {
		transform: translate3d(0, -10.6666666667vw, 0);
	}
	.page-rakurakumilk-attachment .sec-04 .swiper-pagination-bullet {
		margin-left: 2px;
		margin-right: 2px;
	}
	.page-rakurakumilk-attachment .sec-05 .sec-inner .bg01 {
		display: none;
	}
	.page-rakurakumilk-attachment .sec-05 .sec-inner .icon01 {
		display: none;
	}
	.page-rakurakumilk-attachment .sec-06 {
		margin-top: 26.6666666667vw;
	}
	.page-rakurakumilk-attachment .sec-06 .sec-inner .bg01 {
		display: none;
	}
	.page-rakurakumilk-attachment .sec-06 .sec-inner .icon01 {
		display: none;
	}
	.page-rakurakumilk-attachment .sec-07 .sec-inner .bg01 {
		display: none;
	}
	.page-rakurakumilk-attachment .sec-07 .sec-inner .icon01 {
		display: none;
	}
	.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: -35%;
		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 .subname,
	.page-product .sec-01 #slide-02 .swiper-slide .slide-inner p.fs12-12,
	.page-product .sec-01 #slide-02 .swiper-slide .slide-inner h5.u-line,
	.page-product .sec-01 #slide-02-2 .swiper-slide .slide-inner .subname,
	.page-product .sec-01 #slide-02-2 .swiper-slide .slide-inner p.fs12-12,
	.page-product .sec-01 #slide-02-2 .swiper-slide .slide-inner h5.u-line,
	.page-product .sec-01 #slide-03 .swiper-slide .slide-inner .subname,
	.page-product .sec-01 #slide-03 .swiper-slide .slide-inner p.fs12-12,
	.page-product .sec-01 #slide-03 .swiper-slide .slide-inner h5.u-line,
	.page-product .sec-01 #slide-04 .swiper-slide .slide-inner .subname,
	.page-product .sec-01 #slide-04 .swiper-slide .slide-inner p.fs12-12,
	.page-product .sec-01 #slide-04 .swiper-slide .slide-inner h5.u-line {
		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 {
		margin-top: 30px;
		padding: 10px 0;
		background: url("/baby/hohoemi/assets/img/sp/common/title_line.png") center top repeat-x;
		background-size: auto 4.5px;
		font-size: 1.8rem;
	}
	.page-mixed-feeding .sec-01 .num-title:after {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		margin: auto;
		content: "";
		background-color: transparent;
		background: url("/baby/hohoemi/assets/img/sp/common/title_line.png") center bottom repeat-x;
		background-size: auto 4.5px;
	}
	.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;
	}
	.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;
	}
	.page-powder-eco .sec-00 .hero-wrap .title-wrap {
		padding-top: 85px;
	}
	.page-powder-eco .sec-00 .hero-wrap .title-wrap {
		padding-top: 18.4615384615%;
	}
	.page-powder-eco .sec-00 .hero-wrap .title-wrap h1 {
		font-size: 9.3333333333vw;
		top: 0;
	}
	.pt .sec-00 .hero-wrap .title-wrap h1 {
		line-height: 1.14;
	}
	.page-history .sec-inner {
		padding-bottom: 50px;
	}
	.page-history .sec-inner .sec-img {
		width: 112.7819548872%;
		margin-top: 15px;
		margin-left: -6.6666666667%;
		margin-right: -6.6666666667%;
	}
	.page-history .sec-00 .hero-wrap .title-wrap {
		height: 71.2676056338%;
	}
	.page-history .sec-00 .hero-wrap .title-wrap h1 {
		width: 73.0666666667%;
	}
	.page-history .sec-00 .img-wrap {
		width: 81.3333333333%;
		height: auto;
		bottom: -40.404040404%;
	}
	.page-history .sec-01 .sec-inner {
		padding-top: 23.0769230769%;
		padding-bottom: 0;
	}
	.page-history .sec-03 .liq-01 {
		left: -50px;
		width: 221px;
	}
	.page-hohoemi-4months {
		min-width: auto;
	}
	.page-hohoemi-4months .nopc {
		display: block !important;
	}
	.page-hohoemi-4months .nosp {
		display: none !important;
	}
	.page-hohoemi-4months .balloon {
		width: 12vw;
		height: 12vw;
		font-size: 2.6666666667vw;
	}
	.page-hohoemi-4months .balloon::after {
		bottom: 0.6666666667vw;
		width: 5.2vw;
		height: 3.0666666667vw;
	}
	.page-hohoemi-4months .mv {
		height: 175.4666666667vw;
		background-image: url(../img/4months/mv_bg_sp.jpg);
		background-size: cover;
	}
	.page-hohoemi-4months .mv-inner {
		padding: 5.3333333333vw 7.3333333333vw 13.3333333333vw;
	}
	.page-hohoemi-4months .mv-title {
		width: 50.9333333333vw;
		height: 33.3333333333vw;
		font-size: 8vw;
	}
	.page-hohoemi-4months .mv-title-logo {
		width: 24.1333333333vw;
		margin: 0 auto 4.4vw;
	}
	.page-hohoemi-4months .mv-lead-heading {
		font-size: 5.3333333333vw;
		line-height: 1.475;
	}
	.page-hohoemi-4months .mv-lead-heading::after {
		height: 1.3333333333vw;
		margin-top: 2.6666666667vw;
	}
	.page-hohoemi-4months .mv-lead-heading > em::before {
		top: -1.7333333333vw;
		left: -0.6666666667vw;
		width: 1.2vw;
		height: 1.3333333333vw;
	}
	.page-hohoemi-4months .mv-lead-heading-balloon {
		top: 0;
		left: -13.3333333333vw;
	}
	.page-hohoemi-4months .mv-lead-text {
		margin-top: 4.6666666667vw;
		font-size: 2.9333333333vw;
		line-height: 2;
	}
	.page-hohoemi-4months .mv-lead-text > strong {
		font-size: 2.9333333333vw;
	}
	.page-hohoemi-4months .mv-lead .bg-icon.ic-01 {
		top: 2.6666666667vw;
		right: 1.3333333333vw;
		width: 10.8vw;
	}
	.page-hohoemi-4months .mv-lead .bg-icon.ic-02 {
		top: 45.3333333333vw;
		left: 0;
		width: 9.2vw;
	}
	.page-hohoemi-4months .mv-lead .bg-icon.ic-03 {
		top: 50.6666666667vw;
		right: 0;
		width: 11.0666666667vw;
	}
	.page-hohoemi-4months .mv .liquid-wrap .liquid-box.liq-01 {
		top: -13.3333333333vw;
		right: -13.3333333333vw;
		width: 29.4666666667vw;
	}
	.page-hohoemi-4months .mv .liquid-wrap .liquid-box.liq-02 {
		top: -4vw;
		left: 4vw;
		width: 44.6666666667vw;
	}
	.page-hohoemi-4months .mv .liquid-wrap .liquid-box.liq-03 {
		display: none;
	}
	.page-hohoemi-4months .mv .liquid-wrap .liquid-box.liq-04 {
		display: none;
	}
	.page-hohoemi-4months .mv .liquid-wrap .liquid-box.liq-05 {
		top: 106.6666666667vw;
		left: -10.6666666667vw;
		width: 26vw;
	}
	.page-hohoemi-4months .sec .wave-box {
		top: -5.8666666667vw;
		height: 5.8666666667vw;
	}
	.page-hohoemi-4months .sec .wave-box-bottom {
		top: auto;
	}
	.page-hohoemi-4months .sec-inner {
		padding: 10.6666666667vw 4vw;
	}
	.page-hohoemi-4months .sec-title > span::after {
		height: 2.6666666667vw;
		margin-top: 2.6666666667vw;
	}
	.page-hohoemi-4months .sec-title {
		font-size: 5.6vw;
		line-height: 1.3;
	}
	.page-hohoemi-4months .sec-contents {
		margin-top: 5.3333333333vw;
	}
	.page-hohoemi-4months .sec-worries {
		padding-bottom: 33.3333333333vw;
	}
	.page-hohoemi-4months .sec-worries-title {
		font-size: 5.3333333333vw;
	}
	.page-hohoemi-4months .sec-worries-title > em::before {
		top: -1.7333333333vw;
		left: -0.6666666667vw;
		width: 1.0666666667vw;
		height: 1.3333333333vw;
	}
	.page-hohoemi-4months .sec-worries-contents {
		margin-top: 5.3333333333vw;
	}
	.page-hohoemi-4months .sec-worries-comments {
		padding-left: 0;
		margin-bottom: 5.3333333333vw;
	}
	.page-hohoemi-4months .sec-worries-comments > p {
		margin-left: 22.1333333333vw;
		padding: 3.3333333333vw 6.1333333333vw 3.8666666667vw;
		border-radius: 2.6666666667vw;
		font-size: 3.2vw;
		line-height: 1.33;
	}
	.page-hohoemi-4months .sec-worries-comments > p::before {
		left: -2.6666666667vw;
		width: 5.4666666667vw;
		height: 3.0666666667vw;
	}
	.page-hohoemi-4months .sec-worries-comments > p::after {
		left: -22.1333333333vw;
		width: 16vw;
		height: 16vw;
	}
	.page-hohoemi-4months .sec-worries-comments > p:nth-child(1) {
		margin-left: 22.1333333333vw;
		margin-bottom: 5.0666666667vw;
	}
	.page-hohoemi-4months .sec-worries-comments > p:nth-child(2) {
		margin-left: 9.3333333333vw;
		margin-right: 22.1333333333vw;
		margin-bottom: 6.2666666667vw;
		padding: 3.3333333333vw 9.8666666667vw 3.6vw;
	}
	.page-hohoemi-4months .sec-worries-comments > p:nth-child(2)::before {
		right: -2.6666666667vw;
	}
	.page-hohoemi-4months .sec-worries-comments > p:nth-child(2)::after {
		right: -22.1333333333vw;
	}
	.page-hohoemi-4months .sec-worries-comments > p:nth-child(3) {
		padding: 3.3333333333vw 8vw 3.6vw 7.7333333333vw;
	}
	.page-hohoemi-4months .sec-worries-text {
		font-size: 3.2vw;
		white-space: nowrap;
	}
	.page-hohoemi-4months .sec-worries-hohoemi {
		bottom: -6.6666666667vw;
		width: 81.2vw;
		height: 45.2vw;
	}
	.page-hohoemi-4months .sec-worries .liquid-wrap .liquid-box.liq-01 {
		top: 26.6666666667vw;
		left: 2.6666666667vw;
		width: 30.6666666667vw;
	}
	.page-hohoemi-4months .sec-worries .liquid-wrap .liquid-box.liq-02 {
		top: 73.3333333333vw;
		right: -4vw;
		width: 44.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason {
		padding-top: 13.3333333333vw;
	}
	.page-hohoemi-4months .sec-reason-title {
		margin-bottom: 58.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-title strong {
		font-size: 9.0666666667vw;
	}
	.page-hohoemi-4months .sec-reason-title em {
		font-size: 6.5333333333vw;
	}
	.page-hohoemi-4months .sec-reason-contents-inner {
		padding: 18.6666666667vw 4vw 13.3333333333vw;
	}
	.page-hohoemi-4months .sec-reason-contents-02 {
		margin-top: 0;
	}
	.page-hohoemi-4months .sec-reason-contents-02 .sec-reason-contents-inner {
		padding: 8vw 4vw 13.3333333333vw;
	}
	.page-hohoemi-4months .sec-reason-nav {
		top: -13.8666666667vw;
		left: 0;
		height: 27.7333333333vw;
		margin: auto;
	}
	.page-hohoemi-4months .sec-reason-nav > li {
		width: 27.7333333333vw;
		height: 27.7333333333vw;
	}
	.page-hohoemi-4months .sec-reason-nav > li + li {
		margin-left: 5.3333333333vw;
	}
	.page-hohoemi-4months .sec-reason-nav > li > a {
		padding-bottom: 2.6666666667vw;
		font-size: 3.12vw;
		line-height: 1.22;
		box-shadow: 0 0 0 0.6666666667vw #fff, 1.3333333333vw 1.3333333333vw 2vw 0.6666666667vw rgba(97, 97, 97, 0.1);
		border-width: 0.8vw;
	}
	.page-hohoemi-4months .sec-reason-nav > li > a::before {
		width: 4.8vw;
		height: 4.8vw;
		right: 0.6666666667vw;
		bottom: 0.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-nav > li > a::after {
		right: 2.2666666667vw;
		bottom: 2.2666666667vw;
		border-width: 1.0666666667vw 0.6666666667vw 0 0.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-nav > li > a:hover {
		box-shadow: 0 0 0 0.6666666667vw #41b2b6, 1.3333333333vw 1.3333333333vw 2vw 0.6666666667vw rgba(97, 97, 97, 0.1);
		transform: none;
	}
	.page-hohoemi-4months .sec-reason-nav > li:nth-child(1) > a {
		background-size: 10.8vw auto;
		background-position: center 2.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-nav > li:nth-child(2) > a {
		background-size: 13.0666666667vw auto;
		background-position: center 5.3333333333vw;
	}
	.page-hohoemi-4months .sec-reason-nav > li:nth-child(3) > a {
		background-size: 13.2vw auto;
		background-position: center 3.3333333333vw;
	}
	.page-hohoemi-4months .sec-reason-heading-icon {
		width: 15.6vw;
		height: 14.4vw;
		padding: 2.5333333333vw 0 2.5333333333vw 1.3333333333vw;
	}
	.page-hohoemi-4months .sec-reason-heading-icon > small {
		display: inline-block;
		font-size: 2.6666666667vw;
		transform: scale(0.72);
	}
	.page-hohoemi-4months .sec-reason-heading-icon > strong {
		font-size: 5.12vw;
		line-height: 0.5;
	}
	.page-hohoemi-4months .sec-reason-heading h3 {
		margin-left: 2.9333333333vw;
		font-size: 5.8666666667vw;
	}
	.page-hohoemi-4months .sec-reason-heading-balloon {
		font-size: 2.88vw;
	}
	.page-hohoemi-4months .sec-reason-heading-balloon::after {
		left: 1.3333333333vw;
		bottom: 0;
	}
	.page-hohoemi-4months .sec-reason-heading-balloon > strong {
		font-size: 4.16vw;
	}
	.page-hohoemi-4months .sec-reason-heading-balloon-01 {
		top: -8vw;
		right: -16vw;
		width: 14.4vw;
		height: 14.4vw;
		padding: 2.4vw 0;
	}
	.page-hohoemi-4months .sec-reason-heading-balloon-02 {
		top: -1.3333333333vw;
		width: 22.4vw;
		height: 22.4vw;
		padding: 7.2vw 0;
		font-size: 2.88vw;
	}
	.page-hohoemi-4months .sec-reason-heading-balloon-02::after {
		top: 0.6666666667vw;
		left: -2vw;
	}
	.page-hohoemi-4months .sec-reason-heading-balloon-02 > strong {
		font-size: 4.48vw;
	}
	.page-hohoemi-4months .sec-reason-heading-01 {
		top: -48vw;
		left: -9.3333333333vw;
		right: 0;
		width: 45.0666666667vw;
		margin: auto;
	}
	.page-hohoemi-4months .sec-reason-heading-02 {
		margin-bottom: 5.3333333333vw;
	}
	.page-hohoemi-4months .sec-reason-heading-02 .sec-reason-heading-inner {
		width: 47.8666666667vw;
		margin-left: 3.8666666667vw;
	}
	.page-hohoemi-4months .sec-reason-text {
		font-size: 2.88vw;
	}
	.page-hohoemi-4months .sec-reason-text-01 {
		top: -32vw;
		right: 0;
		width: 46.4vw;
		margin: auto;
		padding-left: 0;
	}
	.page-hohoemi-4months .sec-reason-text-02 {
		margin-top: 3.3333333333vw;
	}
	.page-hohoemi-4months .sec-reason-container {
		margin-bottom: 5.3333333333vw;
		padding: 8vw 4vw;
		border-width: 0.8vw;
		border-radius: 4vw;
	}
	.page-hohoemi-4months .sec-reason-container-heading {
		padding-left: 18.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-container-heading h4 {
		font-size: 4.5333333333vw;
	}
	.page-hohoemi-4months .sec-reason-container-heading-text {
		margin-top: 1.6vw;
		font-size: 2.9333333333vw;
		line-height: 2;
	}
	.page-hohoemi-4months .sec-reason-container-heading::before {
		width: 14.4vw;
		height: 22.9333333333vw;
	}
	.page-hohoemi-4months .sec-reason-container-heading-01::before {
		top: 0;
	}
	.page-hohoemi-4months .sec-reason-container-heading-02 {
		padding-left: 21.3333333333vw;
	}
	.page-hohoemi-4months .sec-reason-container-heading-02::before {
		left: 0;
		width: 15.6vw;
		height: 14.2666666667vw;
	}
	.page-hohoemi-4months .sec-reason-container-heading-03 {
		padding-left: 21.3333333333vw;
	}
	.page-hohoemi-4months .sec-reason-container-heading-03::before {
		top: -13.3333333333vw;
		left: 0;
		width: 19.0666666667vw;
		height: 16.8vw;
	}
	.page-hohoemi-4months .sec-reason-container-heading-04 {
		padding-left: 0;
	}
	.page-hohoemi-4months .sec-reason-container-heading-04 .sec-reason-container-heading-inner {
		width: 100%;
	}
	.page-hohoemi-4months .sec-reason-container-heading-04 .sec-reason-container-heading-inner > h4 {
		font-size: 4.8vw;
		line-height: 1.5;
	}
	.page-hohoemi-4months .sec-reason-container-heading-04 .sec-reason-container-heading-img {
		position: absolute;
		top: -6.6666666667vw;
		right: 0;
		width: 32.6666666667vw;
		height: 32.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-container-heading-04 .sec-reason-container-heading-img > figcaption {
		position: absolute;
		left: -1.0666666667vw;
		right: 0;
		bottom: -4vw;
		width: 34.6666666667vw;
		margin: 0 auto;
		padding: 0.6666666667vw 0;
		border-radius: 4vw;
		font-size: 2.6666666667vw;
		line-height: 1.3;
	}
	.page-hohoemi-4months .sec-reason-container-heading-04 .sec-reason-container-heading-text {
		margin-top: 6.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-container-graf {
		flex-direction: column;
		padding: 4.5333333333vw 0;
	}
	.page-hohoemi-4months .sec-reason-container-graf + .sec-reason-container-graf {
		border-top-width: 0.8vw;
	}
	.page-hohoemi-4months .sec-reason-container-graf-head {
		width: 100%;
		justify-content: space-between;
		flex-direction: row;
		margin-right: 0;
		margin-bottom: 6.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-container-graf-heading {
		width: 22.4vw;
		height: 22.4vw;
		margin-top: 0;
		margin-bottom: 0;
		border-width: 0.8vw;
		font-size: 3.7333333333vw;
	}
	.page-hohoemi-4months .sec-reason-container-graf-legend {
		width: 29.8666666667vw;
	}
	.page-hohoemi-4months .sec-reason-container-graf-body > img {
		width: 46%;
	}
	.page-hohoemi-4months .sec-reason-container-graf-body > img + img {
		margin-left: 4.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-container-table {
		margin-top: 4vw;
	}
	.page-hohoemi-4months .sec-reason-container-table-header-box {
		width: 53.3333333333vw;
		height: 17.3333333333vw;
		font-size: 3.2vw;
		line-height: 1.45;
		border-radius: 1.3333333333vw;
		letter-spacing: normal;
	}
	.page-hohoemi-4months .sec-reason-container-table-header-box small {
		font-size: 2.6666666667vw;
		transform: scale(0.96);
	}
	.page-hohoemi-4months .sec-reason-container-table-header-box small.small-xs {
		font-size: 2.6666666667vw;
		transform: scale(0.84);
	}
	.page-hohoemi-4months .sec-reason-container-table-header-box-03 {
		width: 100%;
		height: 13.3333333333vw;
		margin-right: 0;
		margin-bottom: 3.7333333333vw;
	}
	.page-hohoemi-4months .sec-reason-container-table-header-list-item {
		width: 26%;
	}
	.page-hohoemi-4months .sec-reason-container-table-header-list-item > span {
		font-size: 2.6666666667vw;
		letter-spacing: normal;
	}
	.page-hohoemi-4months .sec-reason-container-table-header-list-item + .sec-reason-container-table-header-list-item {
		margin-left: 3.7333333333vw;
	}
	.page-hohoemi-4months .sec-reason-container-table-body {
		padding: 1.6vw 0;
	}
	.page-hohoemi-4months .sec-reason-container-table-body > dl {
		padding: 0.6666666667vw 0;
		border-radius: 2vw;
	}
	.page-hohoemi-4months .sec-reason-container-table-body > dl > dt {
		width: 26vw;
		margin-right: 4.2666666667vw;
		font-size: 3.2vw;
	}
	.page-hohoemi-4months .sec-reason-container-table-body:nth-child(2) {
		border-top-width: 0.5333333333vw;
	}
	.page-hohoemi-4months .sec-reason-container-table-body:nth-child(3) {
		border-top-width: 0.5333333333vw;
	}
	.page-hohoemi-4months .sec-reason-container-table-body-list-item {
		width: 10.1333333333vw;
		font-size: 2.88vw;
	}
	.page-hohoemi-4months .sec-reason-container-table-body-list-item > strong {
		font-size: 4.48vw;
	}
	.page-hohoemi-4months .sec-reason-container-table-body-list-item + .sec-reason-container-table-body-list-item {
		margin-left: 8vw;
	}
	.page-hohoemi-4months .sec-reason-container-table-03 {
		margin-top: 2.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-container-table-03 .sec-reason-container-table-header > dl {
		flex-direction: column;
	}
	.page-hohoemi-4months .sec-reason-container-01 {
		padding: 8vw 6.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-container-03 {
		padding-left: 4vw;
	}
	.page-hohoemi-4months .sec-reason-container-04 {
		padding: 8vw 6.6666666667vw 5.3333333333vw;
		background-position: -33.0666666667vw 42.6666666667vw;
		background-size: 140% auto;
	}
	.page-hohoemi-4months .sec-reason-container-04 .bg-icon.ic-01 {
		top: -13.3333333333vw;
		left: 0;
		width: 10.8vw;
	}
	.page-hohoemi-4months .sec-reason-container-04 .bg-icon.ic-02 {
		top: 280vw;
		right: 6.6666666667vw;
		width: 14vw;
	}
	.page-hohoemi-4months .sec-reason-container-cycle {
		flex-direction: column;
		padding: 7.0666666667vw 10.5333333333vw 7.6vw 10.5333333333vw;
		margin-top: 9.7333333333vw;
	}
	.page-hohoemi-4months .sec-reason-container-cycle-text {
		margin-right: 0;
		margin-bottom: 5.7333333333vw;
		font-size: 4.1333333333vw;
		text-align: center;
		line-height: 1.74;
	}
	.page-hohoemi-4months .sec-reason .liquid-wrap {
		display: none;
	}
	.page-hohoemi-4months .sec-reason-modal {
		margin-top: 7.0666666667vw;
	}
	.page-hohoemi-4months .sec-reason-modal-lead {
		font-size: 4vw;
		line-height: 1.5;
	}
	.page-hohoemi-4months .sec-reason-modal-list {
		flex-direction: column;
		margin-top: 5.2vw;
	}
	.page-hohoemi-4months .sec-reason-modal-list-item {
		width: 69.3333333333vw;
		height: 16vw;
		border-radius: 2vw;
	}
	.page-hohoemi-4months .sec-reason-modal-list-item + .sec-reason-modal-list-item {
		margin-left: 0;
		margin-top: 2.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-modal-list-link {
		font-size: 3.7333333333vw;
		border-radius: 2vw;
	}
	.page-hohoemi-4months .sec-reason-modal-list-link::after {
		right: 5.3333333333vw;
		border-width: 1.3333333333vw 0 1.3333333333vw 2vw;
	}
	.page-hohoemi-4months .sec-reason-modal-container {
		border-radius: 4vw;
		margin-bottom: 8vw;
		padding: 10.6666666667vw 10vw 8vw;
	}
	.page-hohoemi-4months .sec-reason-modal-heading {
		font-size: 4.8vw;
		line-height: 2;
	}
	.page-hohoemi-4months .sec-reason-modal-heading small {
		font-size: 3.2vw;
	}
	.page-hohoemi-4months .sec-reason-modal-heading > span::after {
		height: 1.7333333333vw;
		margin-top: 0.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-modal-text {
		font-size: 2.9333333333vw;
		margin-top: 4.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-modal-img {
		margin-top: 4.6666666667vw;
	}
	.page-hohoemi-4months .sec-reason-modal-img + .sec-reason-modal-img {
		margin-top: 3.0666666667vw;
	}
	.page-hohoemi-4months .sec-reason-modal-img + .sec-reason-modal-text {
		margin-top: 5.0666666667vw;
	}
	.page-hohoemi-4months .sec-reason-modal-notice {
		margin-top: 3.2vw;
		font-size: 2.6666666667vw;
		text-indent: -2.5em;
		padding-left: 2.5em;
	}
	.page-hohoemi-4months .sec-reason-modal-close-btn {
		top: -6.4vw;
		right: 2.6666666667vw;
		width: 12.8vw;
		height: 12.8vw;
	}
	.page-hohoemi-4months .sec-reason-modal-close-btn::before, .page-hohoemi-4months .sec-reason-modal-close-btn::after {
		width: 3.3333333333vw;
		height: 0.4vw;
	}
	.page-hohoemi-4months .sec-reason-modal-close-btn-bottom {
		width: 38.4vw;
		height: 12.8vw;
		margin-top: 4vw;
		border-radius: 2vw;
		font-size: 3.2vw;
	}
	.page-hohoemi-4months .sec-reason-modal-close-btn-bottom::before, .page-hohoemi-4months .sec-reason-modal-close-btn-bottom::after {
		right: 4.8vw;
		width: 3.3333333333vw;
		height: 0.4vw;
	}
	.page-hohoemi-4months .sec-counseling-inner {
		padding-bottom: 13.3333333333vw;
	}
	.page-hohoemi-4months .sec-counseling-inner .bg-icon {
		display: none;
	}
	.page-hohoemi-4months .sec-counseling-inner .bg-icon.ic-02 {
		right: 50px;
	}
	.page-hohoemi-4months .sec-counseling-title {
		font-size: 6.4vw;
		line-height: 1.2;
	}
	.page-hohoemi-4months .sec-counseling-title > small {
		font-size: 5.3333333333vw;
	}
	.page-hohoemi-4months .sec-counseling-text {
		font-size: 3.2vw;
	}
	.page-hohoemi-4months .sec-counseling-banner {
		margin-top: 5.2vw;
	}
	.page-hohoemi-4months .sec-counseling-banner-link {
		border-radius: 2.6666666667vw;
		box-shadow: 0 0 1.3333333333vw 0.6666666667vw rgba(97, 97, 97, 0.2);
	}
	.page-hohoemi-4months .sec-counseling-banner-link:hover {
		transform: none;
		box-shadow: 0 0 1.3333333333vw 0.6666666667vw rgba(97, 97, 97, 0.2);
	}
	.page-hohoemi-4months .sec-counseling-info {
		margin-top: 6vw;
	}
	.page-hohoemi-4months .sec-counseling-info-box {
		align-items: flex-start;
		margin-bottom: 3.7333333333vw;
	}
	.page-hohoemi-4months .sec-counseling-info-title {
		width: 28vw;
		height: 7.4666666667vw;
		border-radius: 3.7333333333vw;
		margin-right: 3.2vw;
		font-size: 2.9866666667vw;
	}
	.page-hohoemi-4months .sec-counseling-info-content {
		padding-top: 0.9333333333vw;
		font-size: 3.36vw;
		line-height: 1.44;
	}
	.page-hohoemi-4months .sec-counseling-info-content > small {
		display: block;
		font-size: 2.6666666667vw;
		padding-left: 1em;
		text-indent: -1em;
	}
	.page-hohoemi-4months .sec-counseling .liquid-wrap .liquid-box.liq-01 {
		top: 66.6666666667vw;
		left: -13.3333333333vw;
		width: 45.4666666667vw;
	}
	.page-hohoemi-4months .sec-banner-list-item:nth-child(1) {
		padding-left: 1.3333333333vw;
	}
	.page-hohoemi-4months .sec-banner .sns-wrap {
		margin-top: 9.8666666667vw;
	}
	.page-hohoemi-4months .sec-banner .sns-wrap .btn-sns {
		width: 14.9333333333vw;
		height: 14.9333333333vw;
	}
	.page-hohoemi-4months .sec-banner .sns-wrap .btn-sns + .btn-sns {
		margin-left: 6.1333333333vw;
	}
	.page-hohoemi-4months .remodal-wrapper {
		padding: 8vw 2.6666666667vw;
	}
	.page-hohoemi-8months {
		min-width: auto;
	}
	.page-hohoemi-8months .nopc {
		display: block !important;
	}
	.page-hohoemi-8months .nosp {
		display: none !important;
	}
	.page-hohoemi-8months .mv {
		height: 133.3333333333vw;
		background-image: url(../img/8months/mv_bg_sp.jpg);
		background-size: cover;
	}
	.page-hohoemi-8months .mv-inner {
		padding: 5.3333333333vw 7.3333333333vw 13.3333333333vw;
	}
	.page-hohoemi-8months .mv-title {
		width: 50.9333333333vw;
		height: 33.3333333333vw;
		font-size: 8vw;
	}
	.page-hohoemi-8months .mv-title-logo {
		width: 24.1333333333vw;
		margin: 0 auto 4.4vw;
	}
	.page-hohoemi-8months .mv-lead-text {
		margin-top: 4.6666666667vw;
		font-size: 2.9333333333vw;
		line-height: 2;
	}
	.page-hohoemi-8months .mv-lead-text > strong {
		font-size: 2.9333333333vw;
	}
	.page-hohoemi-8months .mv-lead .bg-icon.ic-01 {
		top: 13.3333333333vw;
		left: -2.6666666667vw;
		width: 10.8vw;
	}
	.page-hohoemi-8months .mv-lead .bg-icon.ic-02 {
		top: 20vw;
		right: -2.6666666667vw;
		width: 11.0666666667vw;
	}
	.page-hohoemi-8months .mv .liquid-wrap .liquid-box.liq-01 {
		top: -13.3333333333vw;
		right: -13.3333333333vw;
		width: 29.4666666667vw;
	}
	.page-hohoemi-8months .mv .liquid-wrap .liquid-box.liq-02 {
		top: -4vw;
		left: 4vw;
		width: 44.6666666667vw;
	}
	.page-hohoemi-8months .mv .liquid-wrap .liquid-box.liq-03 {
		display: none;
	}
	.page-hohoemi-8months .mv .liquid-wrap .liquid-box.liq-04 {
		display: none;
	}
	.page-hohoemi-8months .mv .liquid-wrap .liquid-box.liq-05 {
		top: 93.3333333333vw;
		left: -5.3333333333vw;
		width: 26vw;
	}
	.page-hohoemi-8months .sec .wave-box {
		top: -5.8666666667vw;
		height: 5.8666666667vw;
	}
	.page-hohoemi-8months .sec .wave-box-bottom {
		top: auto;
	}
	.page-hohoemi-8months .sec-inner {
		padding: 10.6666666667vw 4vw;
	}
	.page-hohoemi-8months .sec-title > span::after {
		height: 1.7333333333vw;
		margin-top: 2.6666666667vw;
	}
	.page-hohoemi-8months .sec-title {
		font-size: 5.6vw;
		line-height: 1.3;
	}
	.page-hohoemi-8months .sec-contents {
		margin-top: 5.3333333333vw;
	}
	.page-hohoemi-8months .sec-worries-inner {
		padding-bottom: 20vw;
	}
	.page-hohoemi-8months .sec-worries-title {
		font-size: 5.3333333333vw;
	}
	.page-hohoemi-8months .sec-worries-title em::before {
		top: -1.7333333333vw;
		left: -0.6666666667vw;
		width: 1.0666666667vw;
		height: 1.3333333333vw;
	}
	.page-hohoemi-8months .sec-worries-contents {
		margin-top: 5.3333333333vw;
	}
	.page-hohoemi-8months .sec-worries-text {
		font-size: 3.2vw;
		letter-spacing: normal;
	}
	.page-hohoemi-8months .sec-worries-text > strong {
		font-size: 4.2666666667vw;
		line-height: 1.5;
	}
	.page-hohoemi-8months .sec-worries-text > small {
		font-size: 2.6666666667vw;
	}
	.page-hohoemi-8months .sec-worries-hohoemi {
		margin: 8.8vw auto 0;
		width: 90%;
	}
	.page-hohoemi-8months .sec-worries .liquid-wrap .liquid-box.liq-01 {
		top: 26.6666666667vw;
		left: 5.3333333333vw;
		width: 30.6666666667vw;
	}
	.page-hohoemi-8months .sec-worries .liquid-wrap .liquid-box.liq-02 {
		top: 73.3333333333vw;
		right: -6.6666666667vw;
		width: 44.6666666667vw;
	}
	.page-hohoemi-8months .sec-reason {
		padding-top: 73.3333333333vw;
	}
	.page-hohoemi-8months .sec-reason-contents-inner {
		padding: 10.6666666667vw 4vw;
	}
	.page-hohoemi-8months .sec-reason-contents-02 {
		margin-top: 0;
	}
	.page-hohoemi-8months .sec-reason-contents-02 .sec-reason-contents-inner {
		padding: 8vw 4vw 13.3333333333vw;
	}
	.page-hohoemi-8months .sec-reason-nav {
		top: -13.8666666667vw;
		left: 0;
		width: 100%;
		height: 27.7333333333vw;
		margin: auto;
	}
	.page-hohoemi-8months .sec-reason-nav > li {
		width: 27.7333333333vw;
		height: 27.7333333333vw;
	}
	.page-hohoemi-8months .sec-reason-nav > li + li {
		margin-left: 5.3333333333vw;
	}
	.page-hohoemi-8months .sec-reason-nav > li > a {
		padding: 6.4vw 0;
		font-size: 4.1066666667vw;
		line-height: 1.6;
		box-shadow: 0 0 0 0.6666666667vw #fff, 1.3333333333vw 1.3333333333vw 2vw 0.6666666667vw rgba(97, 97, 97, 0.1);
		border-width: 0.8vw;
	}
	.page-hohoemi-8months .sec-reason-nav > li > a::before {
		width: 4.8vw;
		height: 4.8vw;
		right: 0.6666666667vw;
		bottom: 0.6666666667vw;
	}
	.page-hohoemi-8months .sec-reason-nav > li > a::after {
		right: 2.2666666667vw;
		bottom: 2.2666666667vw;
		border-width: 1.0666666667vw 0.6666666667vw 0 0.6666666667vw;
	}
	.page-hohoemi-8months .sec-reason-nav > li > a:hover {
		box-shadow: 0 0 0 0.6666666667vw #82b848, 1.3333333333vw 1.3333333333vw 2vw 0.6666666667vw rgba(97, 97, 97, 0.1);
		transform: none;
	}
	.page-hohoemi-8months .sec-reason-nav > li > a .small {
		font-size: 2.6666666667vw;
	}
	.page-hohoemi-8months .sec-reason-nav > li > a .strong {
		font-size: 4.6666666667vw;
	}
	.page-hohoemi-8months .sec-reason-heading h3 {
		margin-left: 2.9333333333vw;
		font-size: 5.8666666667vw;
	}
	.page-hohoemi-8months .sec-reason-heading-01 {
		top: -56vw;
	}
	.page-hohoemi-8months .sec-reason-heading-icon {
		width: 15.6vw;
		height: 14.4vw;
		padding: 2.5333333333vw 0 2.5333333333vw 1.3333333333vw;
		line-height: 1.5;
	}
	.page-hohoemi-8months .sec-reason-heading-icon > small {
		display: inline-block;
		font-size: 2.6666666667vw;
		transform: scale(0.72);
	}
	.page-hohoemi-8months .sec-reason-heading-icon > strong {
		font-size: 5.12vw;
		line-height: 0.5;
	}
	.page-hohoemi-8months .sec-reason-text {
		font-size: 3.2vw;
		letter-spacing: -0.03em;
	}
	.page-hohoemi-8months .sec-reason-text > strong {
		margin-bottom: 0.5em;
		font-size: 4.16vw;
	}
	.page-hohoemi-8months .sec-reason-text > small {
		font-size: 2.6666666667vw;
		letter-spacing: normal;
	}
	.page-hohoemi-8months .sec-reason-text-01 {
		top: -37.3333333333vw;
	}
	.page-hohoemi-8months .sec-reason-text-02 {
		margin-bottom: 8vw;
	}
	.page-hohoemi-8months .sec-reason-container {
		margin-bottom: 5.3333333333vw;
		padding: 6.6666666667vw 4vw 9.3333333333vw;
		border-width: 0.8vw;
		border-radius: 4vw;
	}
	.page-hohoemi-8months .sec-reason-container-heading {
		margin-bottom: 4.8vw;
	}
	.page-hohoemi-8months .sec-reason-container-heading h4 {
		width: 24vw;
		height: 24vw;
		margin-right: 3.8666666667vw;
		border-width: 0.8vw;
		font-size: 4.5333333333vw;
	}
	.page-hohoemi-8months .sec-reason-container-heading-text {
		width: 52.8vw;
		font-size: 3.2vw;
	}
	.page-hohoemi-8months .sec-reason-container-body > dl {
		flex-direction: column;
	}
	.page-hohoemi-8months .sec-reason-container-body-title {
		width: 100%;
		height: 8vw;
		margin-right: 0;
		margin-bottom: 2.4vw;
		border-radius: 1.3333333333vw;
		font-size: 3.3333333333vw;
	}
	.page-hohoemi-8months .sec-reason-container-body-item p {
		margin-top: 1em;
		font-size: 3.0666666667vw;
	}
	.page-hohoemi-8months .sec-reason-container-body-item small {
		font-size: 2.6666666667vw;
	}
	.page-hohoemi-8months .sec-reason-container-body-item span {
		height: 16.9333333333vw;
	}
	.page-hohoemi-8months .sec-reason-container-body-item + .sec-reason-container-body-item {
		margin-left: 4vw;
	}
	.page-hohoemi-8months .sec-reason-container-block-inner {
		padding: 2.6666666667vw 3.2vw;
	}
	.page-hohoemi-8months .sec-reason-container-block-inner + .sec-reason-container-block-inner {
		border-left-width: 0.8vw;
	}
	.page-hohoemi-8months .sec-reason-container-block-heading {
		top: -10vw;
		width: 37.3333333333vw;
		height: 6.6666666667vw;
		border-radius: 3.3333333333vw;
		font-size: 2.6666666667vw;
	}
	.page-hohoemi-8months .sec-reason-container-block-body-top {
		margin-top: 0;
		padding-left: 0;
		margin-bottom: 12vw;
		font-size: 2.6666666667vw;
		white-space: nowrap;
	}
	.page-hohoemi-8months .sec-reason-container-block-body-top strong {
		font-size: 3.7333333333vw;
	}
	.page-hohoemi-8months .sec-reason-container-block-body-top small {
		display: inline-block;
		transform: scale(0.9);
		font-size: 2.6666666667vw;
	}
	.page-hohoemi-8months .sec-reason-container-block-body-top::after {
		right: 1.3333333333vw;
		width: 15.3333333333vw;
		height: 18.6666666667vw;
		background-size: contain;
	}
	.page-hohoemi-8months .sec-reason-container-block-body-bottom {
		width: 37.3333333333vw;
		height: 19.4666666667vw;
		padding: 4vw 10.6666666667vw 4vw 1.3333333333vw;
		background-size: auto 80%;
		background-position: 26.6666666667vw center;
		border-radius: 2vw;
		font-size: 2.6666666667vw;
	}
	.page-hohoemi-8months .sec-reason-container-block-body-bottom span {
		font-size: 2.6666666667vw;
	}
	.page-hohoemi-8months .sec-reason-container-block-body-bottom strong {
		font-size: 3.7333333333vw;
	}
	.page-hohoemi-8months .sec-reason-container-block-body-bottom::before {
		top: -5.3333333333vw;
		width: 3.4666666667vw;
		height: 4.4vw;
	}
	.page-hohoemi-8months .sec-reason-container-02 {
		padding: 6.4vw 4vw 3.2vw;
	}
	.page-hohoemi-8months .sec-reason-container-02 .bg-icon.ic-01 {
		top: -93.3333333333vw;
		left: 2.6666666667vw;
		width: 10.6666666667vw;
	}
	.page-hohoemi-8months .sec-reason-container-02 .bg-icon.ic-02 {
		right: 4vw;
		bottom: -17.3333333333vw;
		width: 14.1333333333vw;
	}
	.page-hohoemi-8months .sec-reason .liquid-wrap {
		display: none;
	}
	.page-hohoemi-8months .sec-followupmilk-inner {
		padding-bottom: 13.3333333333vw;
	}
	.page-hohoemi-8months .sec-followupmilk-title {
		font-size: 5vw;
		letter-spacing: normal;
		white-space: nowrap;
		line-height: 1.4;
	}
	.page-hohoemi-8months .sec-followupmilk-title em::before {
		top: -0.5333333333vw;
		left: -0.6666666667vw;
		width: 1.0666666667vw;
		height: 1.3333333333vw;
	}
	.page-hohoemi-8months .sec-followupmilk-contents {
		margin-top: 8vw;
	}
	.page-hohoemi-8months .sec-followupmilk-text {
		font-size: 3.2vw;
	}
	.page-hohoemi-8months .sec-followupmilk-text > strong {
		font-size: 4.16vw;
		margin-bottom: 0.5em;
	}
	.page-hohoemi-8months .sec-followupmilk-text {
		font-size: 3.2vw;
		white-space: nowrap;
	}
	.page-hohoemi-8months .sec-followupmilk-container {
		margin-top: 14.4vw;
		padding: 8vw 0 4vw;
	}
	.page-hohoemi-8months .sec-followupmilk-container-heading {
		top: -4vw;
		width: 64vw;
		height: 8vw;
		font-size: 3.2vw;
	}
	.page-hohoemi-8months .sec-followupmilk-container-body {
		padding: 0 6.6666666667vw;
	}
	.page-hohoemi-8months .sec-followupmilk-container-body-text {
		margin-top: 0.5em;
		font-size: 3.2vw;
		letter-spacing: normal;
	}
	.page-hohoemi-8months .sec-followupmilk-container-body-text strong {
		font-size: 4.48vw;
	}
	.page-hohoemi-8months .sec-followupmilk-container-body-text small {
		font-size: 2.88vw;
	}
	.page-hohoemi-8months .sec-followupmilk-container-body-img {
		height: 21.3333333333vw;
		margin: 0 auto;
	}
	.page-hohoemi-8months .sec-followupmilk-container-body-img-spinach {
		width: 20.6666666667vw;
	}
	.page-hohoemi-8months .sec-followupmilk-container-body-img-milk {
		width: 26.6666666667vw;
	}
	.page-hohoemi-8months .sec-followupmilk-banner {
		margin-top: 9.4666666667vw;
	}
	.page-hohoemi-8months .sec-followupmilk-banner-link {
		border-radius: 2.6666666667vw;
		box-shadow: 0 0 1.3333333333vw 0.6666666667vw rgba(97, 97, 97, 0.2);
	}
	.page-hohoemi-8months .sec-followupmilk-banner-link:hover {
		transform: none;
		box-shadow: 0 0 1.3333333333vw 0.6666666667vw rgba(97, 97, 97, 0.2);
	}
	.page-hohoemi-8months .sec-followupmilk .liquid-wrap .liquid-box.liq-01 {
		top: 53.3333333333vw;
		left: -13.3333333333vw;
		width: 45.4666666667vw;
	}
	.page-hohoemi-8months .sec-followupmilk .liquid-wrap .liquid-box.liq-02 {
		bottom: 66.6666666667vw;
		right: -33.3333333333vw;
		width: 44.6666666667vw;
	}
	.page-hohoemi-8months .sec-counseling-inner {
		padding-bottom: 6.6666666667vw;
	}
	.page-hohoemi-8months .sec-counseling-inner .bg-icon.ic-01 {
		top: -6.6666666667vw;
		left: 2.6666666667vw;
		width: 17.2vw;
	}
	.page-hohoemi-8months .sec-counseling-inner .bg-icon.ic-02 {
		top: 144vw;
		right: 6.6666666667vw;
		width: 12.9333333333vw;
	}
	.page-hohoemi-8months .sec-counseling-title {
		font-size: 6.4vw;
		line-height: 1.2;
	}
	.page-hohoemi-8months .sec-counseling-title > small {
		font-size: 5.3333333333vw;
	}
	.page-hohoemi-8months .sec-counseling-text {
		font-size: 3.2vw;
	}
	.page-hohoemi-8months .sec-counseling-banner {
		margin-top: 5.2vw;
	}
	.page-hohoemi-8months .sec-counseling-banner-link {
		border-radius: 2.6666666667vw;
		box-shadow: 0 0 1.3333333333vw 0.6666666667vw rgba(97, 97, 97, 0.2);
	}
	.page-hohoemi-8months .sec-counseling-banner-link:hover {
		transform: none;
		box-shadow: 0 0 1.3333333333vw 0.6666666667vw rgba(97, 97, 97, 0.2);
	}
	.page-hohoemi-8months .sec-counseling-info {
		margin-top: 6vw;
	}
	.page-hohoemi-8months .sec-counseling-info-box {
		align-items: flex-start;
		margin-bottom: 3.7333333333vw;
	}
	.page-hohoemi-8months .sec-counseling-info-title {
		width: 28vw;
		height: 7.4666666667vw;
		border-radius: 3.7333333333vw;
		margin-right: 3.2vw;
		font-size: 2.9866666667vw;
	}
	.page-hohoemi-8months .sec-counseling-info-content {
		padding-top: 0.9333333333vw;
		font-size: 3.36vw;
		line-height: 1.44;
	}
	.page-hohoemi-8months .sec-counseling-info-content > small {
		display: block;
		font-size: 2.6666666667vw;
		padding-left: 1em;
		text-indent: -1em;
	}
	.page-hohoemi-8months .sec-banner-list-item:nth-child(1) {
		padding-left: 1.3333333333vw;
	}
	.page-hohoemi-8months .sec-banner .sns-wrap {
		margin-top: 9.8666666667vw;
	}
	.page-hohoemi-8months .sec-banner .sns-wrap .btn-sns {
		width: 14.9333333333vw;
		height: 14.9333333333vw;
	}
	.page-hohoemi-8months .sec-banner .sns-wrap .btn-sns + .btn-sns {
		margin-left: 6.1333333333vw;
	}
}
@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;
	}
	.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("/baby/hohoemi/assets/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("/baby/hohoemi/assets/img/common/icon_blank_g.svg") no-repeat;
		background-size: 3.2vw 3.2vw;
		text-indent: -5000px;
	}
	.class-product-info .img-02-02-01, .page-product .sec-01 .img-02-02-01, .page-index .sec-05b .img-02-02-01 {
		width: 24.2660049628vw;
		height: 50.9333333333vw;
		margin-top: 0vw;
	}
	.class-product-info .img-02-02-02, .page-product .sec-01 .img-02-02-02, .page-index .sec-05b .img-02-02-02 {
		width: 66.9911330049vw;
		height: 50.9333333333vw;
		margin-top: 0vw;
	}
	.class-product-info .img-02-02-03, .page-product .sec-01 .img-02-02-03, .page-index .sec-05b .img-02-02-03 {
		width: 22.7304575163vw;
		height: 32.9333333333vw;
		margin-top: 18vw;
	}
	.class-product-info .img-02-02-04, .page-product .sec-01 .img-02-02-04, .page-index .sec-05b .img-02-02-04 {
		width: 60.8386768448vw;
		height: 32.9333333333vw;
		margin-top: 18vw;
	}
	.class-product-info #slide-04 .swiper-slide .slider-inner .subname, .page-product .sec-01 #slide-04 .swiper-slide .slider-inner .subname, .page-index .sec-05b #slide-04 .swiper-slide .slider-inner .subname {
		opacity: 0;
		transition: opacity 0.5s;
	}
	.class-product-info #slide-04 .swiper-slide .slider-inner .u-line, .page-product .sec-01 #slide-04 .swiper-slide .slider-inner .u-line, .page-index .sec-05b #slide-04 .swiper-slide .slider-inner .u-line {
		opacity: 0;
		transition: opacity 0.5s;
	}
	.class-product-info #slide-04 .swiper-slide .slider-inner .fs12-12, .page-product .sec-01 #slide-04 .swiper-slide .slider-inner .fs12-12, .page-index .sec-05b #slide-04 .swiper-slide .slider-inner .fs12-12 {
		opacity: 0;
		transition: opacity 0.5s;
	}
	.class-product-info #slide-04 .swiper-slide-active .slider-inner .subname, .page-product .sec-01 #slide-04 .swiper-slide-active .slider-inner .subname, .page-index .sec-05b #slide-04 .swiper-slide-active .slider-inner .subname {
		opacity: 1;
	}
	.class-product-info #slide-04 .swiper-slide-active .slider-inner .u-line, .page-product .sec-01 #slide-04 .swiper-slide-active .slider-inner .u-line, .page-index .sec-05b #slide-04 .swiper-slide-active .slider-inner .u-line {
		opacity: 1;
	}
	.class-product-info #slide-04 .swiper-slide-active .slider-inner .fs12-12, .page-product .sec-01 #slide-04 .swiper-slide-active .slider-inner .fs12-12, .page-index .sec-05b #slide-04 .swiper-slide-active .slider-inner .fs12-12 {
		opacity: 1;
	}
	.class-product-info #slide-04 .img-04-01, .page-product .sec-01 #slide-04 .img-04-01, .page-index .sec-05b #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, .page-index .sec-05b #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, .page-index .sec-05b #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, .page-index .sec-05b #slide-04 .img-04-04 {
		width: 34.8064516129vw;
		height: 44.1774193548vw;
		margin-top: 2.2311827957vw;
	}
	.rakuraku-cube-slide .wrap .item,
	.rakuraku-cube-slide-multilang .wrap .item {
		flex-shrink: 0;
	}
	.rakuraku-cube-slide .wrap .item.i1 .inner img,
	.rakuraku-cube-slide-multilang .wrap .item.i1 .inner img {
		width: 90.5797101449vw;
	}
	.rakuraku-cube-slide .wrap .item.i2 .inner img,
	.rakuraku-cube-slide-multilang .wrap .item.i2 .inner img {
		width: 51.690821256vw;
	}
	.rakuraku-cube-slide .wrap .item.i3 .inner img,
	.rakuraku-cube-slide-multilang .wrap .item.i3 .inner img {
		width: auto;
		height: 44.0579710145vw;
		margin-top: 11.0144927536vw;
	}
	.rakuraku-cube-slide.product .wrap,
	.rakuraku-cube-slide-multilang.product .wrap {
		display: block;
	}
	.rakuraku-cube-slide.product .wrap .item,
	.rakuraku-cube-slide-multilang.product .wrap .item {
		opacity: 1;
	}
	.page-index .sec-00b {
		padding-top: 3.2vw;
	}
	.page-index .sec-00b .frame {
		height: 155.7333333333vw;
	}
	.page-index .sec-00b .frame .wrap {
		width: 92vw;
		border-radius: 2.5333333333vw;
	}
	.page-index .sec-00b .frame .wrap .item.i1 {
		display: block;
		padding: 22.1333333333vw 0 0 0;
		width: 42.6666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_01.png") no-repeat;
		background-size: 42.6666666667vw 22.1333333333vw;
		text-indent: -5000px;
		left: 23.6vw;
		top: 5.3333333333vw;
	}
	.page-index .sec-00b .frame .wrap .item.i2 {
		display: block;
		padding: 8.6666666667vw 0 0 0;
		width: 53.7333333333vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_02.png") no-repeat;
		background-size: 53.7333333333vw 8.6666666667vw;
		text-indent: -5000px;
		left: 19.2vw;
		top: 29.4666666667vw;
	}
	.page-index .sec-00b .frame .wrap .item.i3 {
		display: block;
		padding: 22.2666666667vw 0 0 0;
		width: 41.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_03.png") no-repeat;
		background-size: 41.0666666667vw 22.2666666667vw;
		text-indent: -5000px;
		left: 25.3333333333vw;
		top: 42.6666666667vw;
	}
	.page-index .sec-00b .frame .wrap .item.i4 {
		display: block;
		padding: 13.2vw 0 0 0;
		width: 82.5333333333vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_04_sp.png") no-repeat;
		background-size: 82.5333333333vw 13.2vw;
		text-indent: -5000px;
		left: 4.8vw;
		top: 67.2vw;
	}
	.page-index .sec-00b .frame .wrap .item.i5a {
		display: block;
		padding: 40.8vw 0 0 0;
		width: 33.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_05a.png") no-repeat;
		background-size: 33.0666666667vw 40.8vw;
		text-indent: -5000px;
		left: 0.6666666667vw;
		top: 95.8666666667vw;
	}
	.page-index .sec-00b .frame .wrap .item.i5b {
		display: block;
		padding: 20vw 0 0 0;
		width: 23.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_05b.png") no-repeat;
		background-size: 23.0666666667vw 20vw;
		text-indent: -5000px;
		left: 4.4vw;
		top: 77.6vw;
	}
	.page-index .sec-00b .frame .wrap .item.i6a {
		display: block;
		padding: 35.3333333333vw 0 0 0;
		width: 29.4666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_06a.png") no-repeat;
		background-size: 29.4666666667vw 35.3333333333vw;
		text-indent: -5000px;
		left: 30.6666666667vw;
		top: 100.9333333333vw;
	}
	.page-index .sec-00b .frame .wrap .item.i7a {
		display: block;
		padding: 26.6666666667vw 0 0 0;
		width: 13.4666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_07a.png") no-repeat;
		background-size: 13.4666666667vw 26.6666666667vw;
		text-indent: -5000px;
		left: 61.3333333333vw;
		top: 108.1333333333vw;
	}
	.page-index .sec-00b .frame .wrap .item.i7b {
		display: block;
		padding: 9.3333333333vw 0 0 0;
		width: 9.3333333333vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_07b.png") no-repeat;
		background-size: 9.3333333333vw 9.3333333333vw;
		text-indent: -5000px;
		left: 66vw;
		top: 100.5333333333vw;
	}
	.page-index .sec-00b .frame .wrap .item.i8a {
		display: block;
		padding: 18.4vw 0 0 0;
		width: 13.4666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_08a.png") no-repeat;
		background-size: 13.4666666667vw 18.4vw;
		text-indent: -5000px;
		left: 76.1333333333vw;
		top: 116.4vw;
	}
	.page-index .sec-00b .frame .wrap .item.i8b {
		display: block;
		padding: 9.3333333333vw 0 0 0;
		width: 9.3333333333vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_08b.png") no-repeat;
		background-size: 9.3333333333vw 9.3333333333vw;
		text-indent: -5000px;
		left: 80.9333333333vw;
		top: 109.3333333333vw;
	}
	.page-index .sec-00b .frame .wrap .item.i9 {
		display: block;
		padding: 15.8666666667vw 0 0 0;
		width: 13.7333333333vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_09.png") no-repeat;
		background-size: 13.7333333333vw 15.8666666667vw;
		text-indent: -5000px;
		left: 45.6vw;
		top: 137.2vw;
	}
	.page-index .sec-00b .frame .wrap .note {
		justify-content: flex-start;
		align-items: flex-end;
		bottom: 4vw;
		padding-left: 3.3333333333vw;
	}
	.page-index .sec-00b .frame .wrap .note dl {
		-webkit-text-size-adjust: 100%;
		text-size-adjust: 100%;
		font-size: 1.8666666667vw;
		line-height: 2.9333333333vw;
		transform-origin: 0 100%;
		transform: scale(0.7);
	}
	.en .page-index .sec-00 .mv-wrap h1,
	.vn .page-index .sec-00 .mv-wrap h1,
	.kr .page-index .sec-00 .mv-wrap h1,
	.cn .page-index .sec-00 .mv-wrap h1,
	.tw .page-index .sec-00 .mv-wrap h1,
	.th .page-index .sec-00 .mv-wrap h1,
	.pt .page-index .sec-00 .mv-wrap h1 {
		top: 2.6666666667vw;
		margin: auto;
		padding: 0;
		width: 41.2307692308vw;
		height: 25.3333333333vw;
	}
	.en .page-index .sec-00 .mv-wrap h1 img,
	.vn .page-index .sec-00 .mv-wrap h1 img,
	.kr .page-index .sec-00 .mv-wrap h1 img,
	.cn .page-index .sec-00 .mv-wrap h1 img,
	.tw .page-index .sec-00 .mv-wrap h1 img,
	.th .page-index .sec-00 .mv-wrap h1 img,
	.pt .page-index .sec-00 .mv-wrap h1 img {
		width: 41.2307692308vw;
		height: 25.3333333333vw;
	}
	.en .page-index .page-index .sec-00 .mv-wrap h1,
	.vn .page-index .page-index .sec-00 .mv-wrap h1,
	.kr .page-index .page-index .sec-00 .mv-wrap h1,
	.cn .page-index .page-index .sec-00 .mv-wrap h1,
	.tw .page-index .page-index .sec-00 .mv-wrap h1,
	.th .page-index .page-index .sec-00 .mv-wrap h1,
	.pt .page-index .page-index .sec-00 .mv-wrap h1 {
		width: 41.2307692308vw;
		height: 25.3333333333vw;
	}
	.en .page-index .page-index .sec-00 .mv-wrap h1 img,
	.vn .page-index .page-index .sec-00 .mv-wrap h1 img,
	.kr .page-index .page-index .sec-00 .mv-wrap h1 img,
	.cn .page-index .page-index .sec-00 .mv-wrap h1 img,
	.tw .page-index .page-index .sec-00 .mv-wrap h1 img,
	.th .page-index .page-index .sec-00 .mv-wrap h1 img,
	.pt .page-index .page-index .sec-00 .mv-wrap h1 img {
		width: 41.2307692308vw;
		height: 25.3333333333vw;
	}
	.en .page-index .page-index .sec-00 .mv-wrap .copy,
	.vn .page-index .page-index .sec-00 .mv-wrap .copy,
	.kr .page-index .page-index .sec-00 .mv-wrap .copy,
	.cn .page-index .page-index .sec-00 .mv-wrap .copy,
	.tw .page-index .page-index .sec-00 .mv-wrap .copy,
	.th .page-index .page-index .sec-00 .mv-wrap .copy,
	.pt .page-index .page-index .sec-00 .mv-wrap .copy {
		top: 26.6666666667vw;
	}
	.en .page-index .page-index .sec-00 .mv-wrap .img-scroll,
	.vn .page-index .page-index .sec-00 .mv-wrap .img-scroll,
	.kr .page-index .page-index .sec-00 .mv-wrap .img-scroll,
	.cn .page-index .page-index .sec-00 .mv-wrap .img-scroll,
	.tw .page-index .page-index .sec-00 .mv-wrap .img-scroll,
	.th .page-index .page-index .sec-00 .mv-wrap .img-scroll,
	.pt .page-index .page-index .sec-00 .mv-wrap .img-scroll {
		width: 8.32vw;
		height: 9.52vw;
		bottom: 16vw;
	}
	.page-index .sec-02 .kodawari-wrap .item.item-03 {
		width: 100%;
		margin-top: 34.6666666667vw;
	}
	.page-index .sec-02 .kodawari-wrap .item.item-03 .prod {
		width: 41.3333333333vw;
	}
	.page-index .sec-02 .kodawari-wrap .item.item-03 .prod p {
		min-height: 12.8vw;
	}
	.page-index .sec-02 .kodawari-wrap .item.item-03 .prod .image {
		margin-top: 2.6666666667vw;
		height: 55.2vw;
	}
	.page-index .sec-02 .kodawari-wrap .item.item-03 .prod a {
		width: 100%;
	}
	.page-index .sec-02 .kodawari-wrap .item.item-03 .prod:nth-child(1) .image img {
		width: 46.1333333333vw;
		height: 55.4666666667vw;
		left: 0vw;
		bottom: 0;
	}
	.page-index .sec-02 .kodawari-wrap .item.item-03 .prod:nth-child(2) .image img {
		width: 37.0666666667vw;
		height: 55.8666666667vw;
		left: 3.3333333333vw;
		bottom: 0;
	}
	.page-index .sec-04 .sec-inner .movie-list {
		margin: 5.3333333333vw auto 0 auto;
		width: 84.6666666667vw;
	}
	.page-index .sec-04 .sec-inner .movie-list article {
		width: 84.6666666667vw;
	}
	.page-index .sec-04 .sec-inner .movie-list article + article {
		margin-top: 8.6666666667vw;
	}
	.page-index .sec-04 .sec-inner .movie-list article a {
		width: 84.6666666667vw;
	}
	.page-index .sec-04 .sec-inner .movie-list article a figure {
		width: 84.6666666667vw;
	}
	.page-index .sec-04 .sec-inner .movie-list article a figure .image {
		width: 84.6666666667vw;
		box-shadow: 0 0 1.3333333333vw rgba(188, 178, 155, 0.8);
	}
	.page-index .sec-04 .sec-inner .movie-list article a figure .image img {
		width: 84.6666666667vw;
	}
	.page-index .sec-04 .sec-inner .movie-list article a figure figcaption {
		margin-top: 5.3333333333vw;
	}
	.page-index .sec-04 .sec-inner .movie-list article a figure figcaption p {
		font-size: 3.4666666667vw;
		line-height: 6.6666666667vw;
	}
	.page-index .sec-05b {
		margin-bottom: 26.6666666667vw;
	}
	.page-index .sec-05b .consul .title.large {
		font-size: 5.3333333333vw;
		line-height: 10.6666666667vw;
	}
	.page-index .sec-05b .product-banner {
		margin: 6.6666666667vw auto 0;
		width: 86.6666666667vw;
	}
	.page-index .sec-05b .product-banner__text {
		font-size: 5.8666666667vw;
		bottom: 21.3333333333vw;
	}
	.page-index .sec-06 .banner-wrap a {
		width: 100%;
		margin: 0;
		border-radius: 5px;
		box-shadow: 0px 0px 8px 1px rgba(122, 122, 122, 0.5);
	}
	.page-index .sec-06 .banner-wrap a + a {
		margin-top: 15px;
	}
	.page-index .sec-06 .banner-wrap a.square {
		border-radius: 0;
	}
	.page-index .sec-11 .sec-inner .consul {
		margin: 0 4.6666666667vw;
	}
	.page-index .sec-11 .sec-inner .consul .title.large {
		font-size: 5.3333333333vw;
		line-height: 10.6666666667vw;
	}
	.page-index .sec-12 .section-body {
		margin-top: 4vw;
	}
	.page-index .sec-12 .section-body .list .container .wrapper {
		display: block;
	}
	.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide {
		width: 84vw;
	}
	.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide + article {
		margin-top: 8vw;
	}
	.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure .image {
		height: 46.6666666667vw;
		box-shadow: 0 0 2.6666666667vw rgba(97, 97, 97, 0.2);
	}
	.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption {
		margin-top: 5.3333333333vw;
	}
	.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption .title {
		font-size: 5.3333333333vw;
		line-height: 6.6666666667vw;
	}
	.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption .lead {
		font-size: 3.4666666667vw;
		line-height: 5.2vw;
		margin-top: 1.3333333333vw;
	}
	.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption .link {
		margin-top: 3.6vw;
	}
	.page-index .sec-12 .section-body .list .container nav {
		display: none;
	}
	.page-index .sec-13 .section-title .title {
		width: 68.2666666667vw;
		height: 35.6vw;
	}
	.page-index .sec-13 .section-body {
		margin-top: 12vw;
	}
	.page-index .sec-13 .section-body .lead {
		margin-top: 6.4vw;
	}
	.page-index .sec-13 .section-body .lead p {
		font-size: 5.3333333333vw;
		line-height: 10.6666666667vw;
	}
	.page-index .sec-13 .section-body .link {
		margin-top: 7.3333333333vw;
	}
	.page-rakurakumilk-index .sec-00 .mv-wrap h1 {
		left: 0;
		right: 0;
		top: 9.4666666667vw;
		width: 59.6vw;
		height: 29.2vw;
	}
	.page-rakurakumilk-index .sec-00 .mv-under2 {
		margin-top: 50px;
	}
	.page-rakurakumilk-index .sec-00 .mv-under2 .title-box .title {
		font-size: 4.8vw;
		line-height: 8.6666666667vw;
		letter-spacing: 0em;
	}
	.page-rakurakumilk-index .sec-00 .mv-under2 .image1 {
		margin-top: -9.3333333333vw;
	}
	.page-rakurakumilk-index .sec-00 .mv-under2 .lead {
		margin-top: 2.6666666667vw;
	}
	.page-rakurakumilk-index .sec-00 .mv-under2 .lead p {
		font-size: 3.4666666667vw;
		line-height: 6.6666666667vw;
	}
	.en .page-rakurakumilk-index .sec-00 .mv-wrap h1,
	.vn .page-rakurakumilk-index .sec-00 .mv-wrap h1,
	.kr .page-rakurakumilk-index .sec-00 .mv-wrap h1,
	.cn .page-rakurakumilk-index .sec-00 .mv-wrap h1,
	.tw .page-rakurakumilk-index .sec-00 .mv-wrap h1,
	.th .page-rakurakumilk-index .sec-00 .mv-wrap h1,
	.pt .page-rakurakumilk-index .sec-00 .mv-wrap h1 {
		width: 80.9333333333vw;
		height: 48vw;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
	}
	.page-rakurakumilk-index .sec-01 div.title {
		margin-bottom: 8vw;
	}
	.page-rakurakumilk-index .sec-01 .head-wrap h2 {
		margin-top: 4vw;
		letter-spacing: 0em;
	}
	.page-rakurakumilk-index .sec-01 .head-wrap .head-img {
		position: relative;
		display: block;
		width: 46vw;
		margin-top: 2vw;
		margin-bottom: -3.0666666667vw;
		z-index: 10;
	}
	.page-rakurakumilk-index .sec-01 .image .img + .img {
		margin-top: 6.6666666667vw;
	}
	.page-rakurakumilk-index .sec-01 .lead {
		margin-top: 5.3333333333vw;
	}
	.page-rakurakumilk-index .sec-02b {
		padding-top: 6.6666666667vw;
	}
	.page-rakurakumilk-index .sec-02b .section-title {
		row-gap: 3.3333333333vw;
	}
	.page-rakurakumilk-index .sec-02b .section-title .sub {
		width: 24.6666666667vw;
		height: 10.5333333333vw;
	}
	.page-rakurakumilk-index .sec-02b .section-body {
		margin: 4.6666666667vw 0 0 0;
	}
	.page-rakurakumilk-index .sec-02b .section-body .flow {
		width: 44.8vw;
		height: 69.6vw;
		right: 0;
		top: -62.6666666667vw;
	}
	.page-rakurakumilk-index .sec-02b .section-body .bg-icon-box {
		width: 18.6666666667vw;
		height: 24.8vw;
		left: 6.9333333333vw;
		top: -4.4vw;
		transform: scale(1);
	}
	.page-rakurakumilk-index .sec-02b .section-body .ill {
		width: 14.2666666667vw;
		height: 16.2666666667vw;
		right: 17.8666666667vw;
		top: -37.4666666667vw;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout .image {
		width: 50.2666666667vw;
		height: 56.8vw;
		margin: 4vw auto 0 auto;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout .image img {
		width: 50.2666666667vw;
		height: 56.8vw;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout .lead {
		margin: 6vw 6.6666666667vw 0 6.6666666667vw;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout .lead p {
		font-size: 3.4666666667vw;
		line-height: 6.6666666667vw;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout .link {
		margin-top: 6vw;
	}
	.page-rakurakumilk-index .sec-03b {
		padding-top: 16vw;
	}
	.page-rakurakumilk-index .sec-03b .section-title {
		row-gap: 3.3333333333vw;
	}
	.page-rakurakumilk-index .sec-03b .section-title .sub {
		width: 24.6666666667vw;
		height: 10.5333333333vw;
	}
	.page-rakurakumilk-index .sec-03b .section-body {
		margin-top: 8vw;
	}
	.page-rakurakumilk-index .sec-03b .section-body .bg-icon-box {
		width: 17.0666666667vw;
		height: 18.6666666667vw;
		right: 8.5333333333vw;
		bottom: -24.2666666667vw;
		transform: scale(1);
	}
	.page-rakurakumilk-index .sec-03b .section-body .flow {
		display: none;
	}
	.page-rakurakumilk-index .sec-03b .section-body .ill {
		width: 23.8666666667vw;
		height: 29.0666666667vw;
		left: 4.4vw;
		top: -46.4vw;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .image {
		width: 89.8666666667vw;
		height: 38.6666666667vw;
		margin: 0 auto;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .image img {
		width: 89.8666666667vw;
		height: 38.6666666667vw;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .lead {
		margin: 6vw 6.6666666667vw 0 6.6666666667vw;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .lead p {
		font-size: 3.4666666667vw;
		line-height: 6.6666666667vw;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .lead p + p {
		margin-top: 6.6666666667vw;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .lead p.note {
		font-size: 2.6666666667vw;
		line-height: 5.3333333333vw;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .link {
		margin-top: 7.3333333333vw;
	}
	.en .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.vn .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.kr .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.cn .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.tw .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.th .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.pt .page-rakurakumilk-index .sec-03 .point4-images-wrap {
		margin-top: 13.3333333333vw;
	}
	.en .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.vn .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.kr .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.cn .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.tw .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.th .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.pt .page-rakurakumilk-index .sec-03 .point4-images-wrap {
		justify-content: space-between;
	}
	.en .page-rakurakumilk-index .sec-03 .point4-images-wrap img,
	.vn .page-rakurakumilk-index .sec-03 .point4-images-wrap img,
	.kr .page-rakurakumilk-index .sec-03 .point4-images-wrap img,
	.cn .page-rakurakumilk-index .sec-03 .point4-images-wrap img,
	.tw .page-rakurakumilk-index .sec-03 .point4-images-wrap img,
	.th .page-rakurakumilk-index .sec-03 .point4-images-wrap img,
	.pt .page-rakurakumilk-index .sec-03 .point4-images-wrap img {
		margin: 0;
	}
	.en .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(1),
	.vn .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(1),
	.kr .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(1),
	.cn .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(1),
	.tw .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(1),
	.th .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(1),
	.pt .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(1) {
		width: 26.1333333333vw;
	}
	.en .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(2),
	.vn .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(2),
	.kr .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(2),
	.cn .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(2),
	.tw .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(2),
	.th .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(2),
	.pt .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(2) {
		width: 25.8666666667vw;
	}
	.en .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(3),
	.vn .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(3),
	.kr .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(3),
	.cn .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(3),
	.tw .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(3),
	.th .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(3),
	.pt .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(3) {
		width: 26.6666666667vw;
	}
	.page-rakurakumilk-index .sec-04b {
		padding-top: 16vw;
		padding-bottom: 12vw;
	}
	.page-rakurakumilk-index .sec-04b .section-title {
		row-gap: 3.3333333333vw;
	}
	.page-rakurakumilk-index .sec-04b .section-title .sub {
		width: 24.6666666667vw;
		height: 10.5333333333vw;
	}
	.page-rakurakumilk-index .sec-04b .section-body {
		margin-top: 4.6666666667vw;
	}
	.page-rakurakumilk-index .sec-04b .section-body .bg-icon-box {
		display: none;
	}
	.page-rakurakumilk-index .sec-04b .section-body .ill {
		width: 33.4666666667vw;
		height: 26.2666666667vw;
		margin: 0 auto;
	}
	.page-rakurakumilk-index .sec-04b .section-body .lead {
		margin: 4vw 6.6666666667vw auto 6.6666666667vw;
	}
	.page-rakurakumilk-index .sec-04b .section-body .lead p {
		font-size: 3.4666666667vw;
		line-height: 6.6666666667vw;
	}
	.page-rakurakumilk-index .sec-04b .section-body .link {
		margin-top: 7.3333333333vw;
	}
	.page-rakurakumilk-index .sec-06 {
		padding-bottom: 13.3333333333vw;
	}
	.page-rakurakumilk-index .sec-06 .section-title {
		margin-top: 12vw;
		row-gap: 3.3333333333vw;
	}
	.page-rakurakumilk-index .sec-06 .section-title .sub {
		width: 24.6666666667vw;
		height: 10.5333333333vw;
	}
	.page-rakurakumilk-index .sec-06 .section-body {
		margin-top: 6.6666666667vw;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list {
		width: 86.6666666667vw;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article + article {
		margin-top: 4vw;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-title {
		border-radius: 2.1333333333vw;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title {
		font-size: 4vw;
		line-height: 5.3333333333vw;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title a {
		padding: 3.3333333333vw 12vw 3.3333333333vw 15.3333333333vw;
		min-height: 17.3333333333vw;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title a i.q {
		display: block;
		padding: 7.2vw 0 0 0;
		width: 6.1333333333vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/rakurakumilk/top/sec_06_ico_q.png") no-repeat;
		background-size: 6.1333333333vw 7.2vw;
		text-indent: -5000px;
		left: 4.8vw;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title a i.sign {
		width: 4vw;
		height: 4vw;
		right: 6.1333333333vw;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title a i.sign .bar {
		width: 4vw;
		height: 0.5333333333vw;
		border-radius: 0.2666666667vw;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-body {
		border-radius: 0 0 2.1333333333vw 2.1333333333vw;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout {
		flex-direction: column;
		row-gap: 2.6666666667vw;
		padding: 4vw 4vw;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout i.icon {
		display: block;
		padding: 17.3333333333vw 0 0 0;
		width: 17.3333333333vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/rakurakumilk/top/sec_06_ico_ans.png") no-repeat;
		background-size: 17.3333333333vw 17.3333333333vw;
		text-indent: -5000px;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content {
		font-size: 3.4666666667vw;
		line-height: 6.6666666667vw;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article.active .article-title {
		border-radius: 2.1333333333vw 2.1333333333vw 0 0;
	}
	.page-rakurakumilk-usage .sec-01 ul.list li {
		padding-left: 5.7333333333vw;
	}
	.page-rakurakumilk-usage .sec-01 ul.list.dot li:before {
		top: 1.6vw;
		width: 3.2vw;
		height: 3.2vw;
	}
	.page-rakurakumilk-usage .sec-01 ul.list.caution li:before {
		top: 1.0666666667vw;
		display: block;
		padding: 4.3333333333vw 0 0 0;
		width: 4.9253333333vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/rakurakumilk/usage/sec_02_ico_02.png") no-repeat;
		background-size: 4.9253333333vw 4.3333333333vw;
		text-indent: -5000px;
	}
	.page-rakurakumilk-usage .readme {
		margin-top: 7.7333333333vw;
		border-radius: 1.3333333333vw;
		padding: 0 2.6666666667vw 2.6666666667vw 2.6666666667vw;
	}
	.page-rakurakumilk-usage .readme .head {
		height: 13.3333333333vw;
		column-gap: 2.6666666667vw;
	}
	.page-rakurakumilk-usage .readme .head i.icon {
		width: 4.9253333333vw;
		height: 4.3333333333vw;
	}
	.page-rakurakumilk-usage .readme .head .text {
		font-size: 4.8vw;
	}
	.page-rakurakumilk-usage .readme .body {
		border-radius: 1.3333333333vw;
		padding: 4.6666666667vw 5.3333333333vw;
	}
	.page-rakurakumilk-usage .readme .body p {
		font-size: 3.7333333333vw;
		line-height: 6.6666666667vw;
	}
	.page-rakurakumilk-usage .sec-03 .sec-inner .bnr a + a {
		margin-top: 5.3333333333vw;
	}
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
	.page-rakurakumilk-recipe .sec-02 .sec-inner.list .title.large {
		font-size: 2.1rem;
		letter-spacing: 0;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-sorter {
		justify-content: center;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-sorter a {
		width: 40vw;
		padding: 1.4666666667vw 0;
		border-radius: 3.3333333333vw;
		font-size: 2.9333333333vw;
		line-height: 3.7333333333vw;
		margin: 0 6.4vw 6.6666666667vw 0;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-sorter a:nth-child(2n), .page-rakurakumilk-recipe .sec-02 .recipe-sorter a:nth-child(5) {
		margin-right: 0;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article {
		width: 86.6666666667vw;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article + article {
		margin-top: 3.2vw;
		padding-top: 3.2vw;
		border-top: 3px dashed #aaaaaa;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a {
		padding-right: 4.6666666667vw;
		display: -ms-grid;
		display: grid;
		-ms-grid-rows: auto auto auto;
		-ms-grid-columns: 40vw auto;
		grid-template: "article-photo article-name" auto "article-photo article-lead" auto "article-type  article-lead" auto/40vw auto;
		position: relative;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a:after {
		content: "";
		display: block;
		padding: 6vw 0 0 0;
		width: 3.4666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/sp/rakurakumilk/recipe/sec_02_article_icon.png") no-repeat;
		background-size: 3.4666666667vw 6vw;
		text-indent: -5000px;
		position: absolute;
		margin: auto;
		top: 0;
		bottom: 0;
		right: 0;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a > .name {
		grid-area: article-name;
		margin: 0 0 0 4vw;
		padding: 0 3.0666666667vw 0 0;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a > .name h3 {
		font-size: 5.3333333333vw;
		line-height: 6.6666666667vw;
		margin: 0;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a > .name h3 br {
		display: none;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a > .name h3 br.list-sp {
		display: inline;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a > .photo {
		grid-area: article-photo;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a > .photo img {
		width: 40vw;
		box-shadow: 0px 0px 9px 1px rgba(104, 104, 104, 0.5);
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a > .lead {
		grid-area: article-lead;
		margin: 4vw 0 0 4vw;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a > .lead p {
		margin: 0;
		font-size: 3.2vw;
		line-height: 5.3333333333vw;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a > .type {
		grid-area: article-type;
		margin: 2.6666666667vw 0 0 0;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a > .type p {
		margin: 0;
		width: 40vw;
		height: 6.6666666667vw;
		border-radius: 3.3333333333vw;
		background: #ff8583;
		font-size: 2.9333333333vw;
		color: #ffffff;
		line-height: 6.6666666667vw;
		font-weight: bold;
		text-align: center;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a > .name {
		-ms-grid-row: 1;
		-ms-grid-column: 2;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a > .photo {
		-ms-grid-row: 1;
		-ms-grid-row-span: 2;
		-ms-grid-column: 1;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a > .lead {
		-ms-grid-row: 2;
		-ms-grid-row-span: 2;
		-ms-grid-column: 2;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a > .type {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
	}
	.page-rakurakumilk-recipe .sec-02 .bnr {
		width: 92vw;
		margin-left: auto;
		margin-right: auto;
	}
	.page-rakurakumilk-recipe .recipe-modal-test {
		padding: 50px 0;
	}
	.page-rakurakumilk-recipe .recipe-modal {
		border-radius: 1.8666666667vw;
		padding: 8vw 5.3333333333vw;
		width: 86.6666666667vw;
	}
	.page-rakurakumilk-recipe .recipe-modal .name {
		display: flex;
		justify-content: center;
	}
	.page-rakurakumilk-recipe .recipe-modal .name h3 {
		font-size: 5.3333333333vw;
		line-height: 8vw;
		margin: 0;
	}
	.page-rakurakumilk-recipe .recipe-modal .name h3 br {
		display: none;
	}
	.page-rakurakumilk-recipe .recipe-modal .name h3 br.modal-sp {
		display: inline;
	}
	.page-rakurakumilk-recipe .recipe-modal .photo {
		margin: 6.6666666667vw 0 0 0;
	}
	.page-rakurakumilk-recipe .recipe-modal .photo img {
		width: 76vw;
		box-shadow: 0px 0px 9px 1px rgba(104, 104, 104, 0.5);
	}
	.page-rakurakumilk-recipe .recipe-modal .type {
		margin: 4.5333333333vw 0 0 0;
	}
	.page-rakurakumilk-recipe .recipe-modal .type p {
		margin: 0;
		width: 76vw;
		height: 9.3333333333vw;
		border-radius: 4.6666666667vw;
		background: #ff8583;
		font-size: 3.2vw;
		color: #ffffff;
		line-height: 9.3333333333vw;
		font-weight: bold;
		text-align: center;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient {
		margin: 5.3333333333vw 0 0 0;
		width: 76vw;
		background: #ffffff;
		border: 0.5333333333vw dashed #ff8583;
		border-radius: 1.8666666667vw;
		padding: 5.3333333333vw;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient h4 {
		font-size: 4vw;
		line-height: 1;
		color: #ff8583;
		font-weight: bold;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient table {
		margin: 3.3333333333vw 0 0 0;
		width: 100%;
		font-size: 3.2vw;
		line-height: 5.3333333333vw;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient table tr th {
		padding: 0 1.6vw 0 0;
		text-align: left;
		font-weight: normal;
		vertical-align: top;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient table tr th span {
		font-size: 2.6666666667vw;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient table tr td {
		padding: 0;
		text-align: right;
		vertical-align: top;
		white-space: nowrap;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient table tr td span {
		font-size: 2.6666666667vw;
	}
	.page-rakurakumilk-recipe .recipe-modal .steps {
		margin: 5.3333333333vw 0 0 0;
		width: 76vw;
		background: #ffffff;
		border: 0.5333333333vw dashed #ff8583;
		border-radius: 1.8666666667vw;
		padding: 5.3333333333vw;
	}
	.page-rakurakumilk-recipe .recipe-modal .steps h4 {
		font-size: 4vw;
		line-height: 1;
		color: #ff8583;
		font-weight: bold;
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol {
		margin: 3.3333333333vw 0 0 0;
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li {
		padding: 0 0 0 8vw;
		position: relative;
		min-height: 5.3333333333vw;
		font-size: 3.2vw;
		line-height: 5.3333333333vw;
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li + li {
		margin-top: 5.3333333333vw;
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		display: block;
		padding: 5.3333333333vw 0 0 0;
		width: 5.3333333333vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/common/slide_page_01_on.png") no-repeat;
		background-size: 5.3333333333vw 5.3333333333vw;
		text-indent: -5000px;
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(1):before {
		content: "1";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_01_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(2):before {
		content: "2";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_02_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(3):before {
		content: "3";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_03_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(4):before {
		content: "4";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_04_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(5):before {
		content: "5";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_05_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(6):before {
		content: "6";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_06_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(7):before {
		content: "7";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_07_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(8):before {
		content: "8";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_08_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(9):before {
		content: "9";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_09_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .close-button {
		margin: 10vw 0 0 0;
	}
	.page-rakurakumilk-recipe .recipe-modal .close-button a {
		margin: 0 auto;
		display: block;
		width: 69.3333333333vw;
		height: 15.7333333333vw;
		border: 0.4vw solid #c6c6c6;
		background: #ffffff;
		position: relative;
		text-align: center;
		line-height: 15.7333333333vw;
		border-radius: 0.9333333333vw;
		font-size: 4vw;
		font-weight: bold;
	}
	.page-rakurakumilk-recipe .recipe-modal .close-button a:after {
		content: "";
		display: block;
		padding: 4vw 0 0 0;
		width: 4vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/common/btn_icon_close_a.png") no-repeat;
		background-size: 4vw 4vw;
		text-indent: -5000px;
		position: absolute;
		margin: auto;
		top: 0;
		bottom: 0;
		right: 7.3333333333vw;
	}
	.page-rakurakumilk-recipe .mfp-content {
		width: 86.6666666667vw;
		padding-top: 13.3333333333vw;
	}
	.page-rakurakumilk-recipe button.mfp-close {
		display: block;
		padding: 7.6vw 0 0 0;
		width: 7.6vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/common/btn_icon_close_b.png") no-repeat;
		background-size: 7.6vw 7.6vw;
		text-indent: -5000px;
	}
	.page-rakurakumilk-recipe .sec-03 .bnr {
		width: 92vw;
		margin-left: auto;
		margin-right: auto;
	}
	.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .image02 img {
		width: 46.1333333333vw;
		height: 28vw;
		margin: 4.6666666667vw auto 0 auto;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox {
		margin-top: 8.5333333333vw;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note {
		margin-top: 2.6666666667vw;
		padding-left: 1.7333333333vw;
	}
	.page-rakurakumilk-attachment .sec-04 .sec-inner .icon01 {
		display: none;
	}
	.page-rakurakumilk-attachment .sec-04 .sec-inner .icon02a {
		width: 23.8666666667vw;
		height: 29.7333333333vw;
		position: absolute;
		left: 6vw;
		top: -8.1333333333vw;
		z-index: 10;
	}
	.page-rakurakumilk-attachment .sec-04 .sec-inner .icon02a img {
		width: 23.8666666667vw;
		height: 29.7333333333vw;
	}
	.page-rakurakumilk-attachment .sec-04 .sec-inner .icon02b {
		width: 23.6vw;
		height: 21.7333333333vw;
		position: absolute;
		right: 7.3333333333vw;
		top: -1.2vw;
		z-index: 10;
	}
	.page-rakurakumilk-attachment .sec-04 .sec-inner .icon02b img {
		width: 23.6vw;
		height: 21.7333333333vw;
	}
	.page-rakurakumilk-attachment .readme {
		margin-top: 7.7333333333vw;
	}
	.page-science .sec-00 .hero-bg-inner .hero-wrap .title-wrap h1 {
		margin: 0 13.3333333333vw;
	}
	.page-rakurakucube-index .sec-03 .bnr {
		width: 92vw;
		margin-left: auto;
		margin-right: auto;
	}
	.page-rakurakucube-usage .sec-03 .sec-inner .bnr a + a {
		margin-top: 5.3333333333vw;
	}
	.page-product .sec-01 .consul .title.large {
		font-size: 5.3333333333vw;
		line-height: 10.6666666667vw;
		letter-spacing: 0em;
	}
	.page-product .sec-01 .product-banner {
		margin: 6.6666666667vw auto 0;
		width: 86.6666666667vw;
	}
	.page-product .sec-01 .product-banner__text {
		font-size: 5.8666666667vw;
		bottom: 21.3333333333vw;
	}
	.page-mixed-feeding .sec-01 .q5table {
		padding: 6vw 4.6666666667vw;
	}
	.page-mixed-feeding .sec-01 .q5table > .wrap > table {
		width: auto;
		min-width: 150%;
	}
	.page-mixed-feeding .sec-01 .q5table table {
		margin: 6vw 0 0 0;
	}
	.page-mixed-feeding .sec-01 .q5table table th,
	.page-mixed-feeding .sec-01 .q5table table td {
		font-size: 2.4vw;
	}
	.page-mixed-feeding .sec-02 .consul {
		margin: 0 4.6666666667vw;
	}
	.page-mixed-feeding .sec-02 .consul .title.large {
		font-size: 5.3333333333vw;
		line-height: 10.6666666667vw;
	}
	.page-powder-index .banner {
		position: relative;
		text-align: center;
		bottom: 0;
		right: 0;
		margin-bottom: 5.3333333333vw;
		z-index: 10;
	}
	.page-powder-index .banner-pc {
		display: none;
	}
	.page-powder-index .banner-sp {
		display: block;
	}
	.page-powder-index .banner__text {
		font-size: 5.0666666667vw;
		bottom: 20.5333333333vw;
	}
	.page-powder-index .banner img {
		display: inline-block;
		width: 86.6666666667vw;
		height: 100%;
	}
	.page-powder-eco .sec-01 .sec-inner {
		padding: 13.3333333333vw 5.3333333333vw 11.2vw;
	}
	.page-powder-eco .sec-01 .bg {
		width: 100%;
	}
	.page-powder-eco .sec-01 .bg .item.b1 {
		width: 35.7333333333vw;
		height: 30.1333333333vw;
		left: 58.6666666667vw;
		top: 32vw;
	}
	.page-powder-eco .sec-01 .bg .item.b2 {
		width: 27.2vw;
		height: 26.4vw;
		left: 2.6666666667vw;
		top: 82.6666666667vw;
	}
	.page-powder-eco .sec-01 .bg .item.b3 {
		width: 20.6666666667vw;
		height: 17.8666666667vw;
		left: 69.3333333333vw;
		top: 104vw;
	}
	.page-powder-eco .sec-01 .bg .item.b4 {
		width: 0vw;
		height: 0vw;
		left: 0vw;
		top: 0vw;
	}
	.page-powder-eco .sec-01 .title {
		column-gap: 0;
		align-items: flex-end;
	}
	.page-powder-eco .sec-01 .title .icon.il {
		display: block;
		padding: 21.2vw 0 0 0;
		width: 11.3333333333vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/powder/eco/sec_01_ttl_l_sp.png") no-repeat;
		background-size: 11.3333333333vw 21.2vw;
		text-indent: -5000px;
		background-position: bottom right;
		width: 11%;
		position: absolute;
		left: 0;
	}
	.page-powder-eco .sec-01 .title .icon.ir {
		display: block;
		padding: 21.2vw 0 0 0;
		width: 11.3333333333vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/powder/eco/sec_01_ttl_r_sp.png") no-repeat;
		background-size: 11.3333333333vw 21.2vw;
		text-indent: -5000px;
		background-position: bottom left;
		width: 11%;
		position: absolute;
		right: 0;
	}
	.page-powder-eco .sec-01 .title .text {
		font-size: 6vw;
		line-height: 8.6666666667vw;
		letter-spacing: 0;
	}
	.page-powder-eco .sec-01 p {
		text-align: left;
		font-size: 3.4666666667vw;
		margin-top: 7.6vw;
	}
	.page-powder-eco .sec-02 .bg {
		width: 100%;
	}
	.page-powder-eco .sec-02 .bg .item.b1 {
		width: 35.7333333333vw;
		height: 33.3333333333vw;
		left: 58.6666666667vw;
		top: 5.3333333333vw;
	}
	.page-powder-eco .sec-02 .bg .item.b2 {
		width: 27.2vw;
		height: 26.4vw;
		left: 2.6666666667vw;
		top: 69.3333333333vw;
	}
	.page-powder-eco .sec-02 .bg .item.b3 {
		width: 35.3333333333vw;
		height: 34vw;
		left: 2.6666666667vw;
		top: 266.6666666667vw;
	}
	.page-powder-eco .sec-02 .bg .item.b4 {
		width: 0vw;
		height: 0vw;
		left: 0vw;
		top: 0vw;
	}
	.page-powder-eco .sec-02 .sec-inner {
		padding: 6.6666666667vw 0 13.3333333333vw;
	}
	.page-powder-eco .sec-02__title {
		font-size: 4.8vw;
	}
	.page-powder-eco .sec-02__wrap {
		flex-direction: column;
		margin: 8.8vw 6.6666666667vw 0;
		gap: 5.8666666667vw;
	}
	.page-powder-eco .sec-02__wrap__box {
		width: 100%;
	}
	.page-powder-eco .sec-02__wrap__box__text {
		font-size: 3.4666666667vw;
	}
	.page-powder-eco .sec-02__wrap__box__text-sm {
		font-size: 2.6666666667vw;
	}
	.page-powder-eco .sec-03 .bg {
		width: 100%;
	}
	.page-powder-eco .sec-03 .bg .item.b1 {
		width: 35.7333333333vw;
		height: 33.3333333333vw;
		left: 58.6666666667vw;
		top: 53.3333333333vw;
	}
	.page-powder-eco .sec-03 .bg .item.b2 {
		width: 27.2vw;
		height: 26.4vw;
		left: 2.6666666667vw;
		top: 240vw;
	}
	.page-powder-eco .sec-03 .bg .item.b3 {
		width: 35.3333333333vw;
		height: 28.5333333333vw;
		left: 56vw;
		top: 320vw;
	}
	.page-powder-eco .sec-03 .bg .item.b4 {
		width: 27.2vw;
		height: 26.4vw;
		left: 2.6666666667vw;
		top: 426.6666666667vw;
	}
	.page-powder-eco .sec-03 .bg .item.b5 {
		width: 14.4vw;
		height: 25.6vw;
		left: 4vw;
		top: -1.3333333333vw;
	}
	.page-powder-eco .sec-03 .bg .item.b6 {
		width: 14.8vw;
		height: 19.7333333333vw;
		left: 80vw;
		top: 144vw;
	}
	.page-powder-eco .sec-03 .bg .item.b7 {
		width: 14.6666666667vw;
		height: 15.6vw;
		left: 80vw;
		top: 413.3333333333vw;
	}
	.page-powder-eco .sec-03 .bg .item.b8 {
		width: 18.6666666667vw;
		height: 18vw;
		left: 4vw;
		top: 314.6666666667vw;
	}
	.page-powder-eco .sec-03 .bg .item.b9 {
		width: 13.6vw;
		height: 14.9333333333vw;
		left: 2.6666666667vw;
		top: 520vw;
	}
	.page-powder-eco .sec-03 .bg .item.b10 {
		width: 0vw;
		height: 0vw;
		left: 0vw;
		top: 0vw;
	}
	.page-powder-eco .sec-03 .sec-inner {
		padding: 10.6666666667vw 0;
	}
	.page-powder-eco .sec-03__title {
		font-size: 4.8vw;
	}
	.page-powder-eco .sec-03 .a1 {
		margin-top: 11.6vw;
	}
	.page-powder-eco .sec-03 .a1 .title {
		width: 48.2666666667vw;
	}
	.page-powder-eco .sec-03 .a2 {
		margin-top: 15.3333333333vw;
		margin-bottom: 20.9333333333vw;
	}
	.page-powder-eco .sec-03 .a2 .title {
		width: 50.2666666667vw;
	}
	.page-powder-eco .sec-03__wrap {
		flex-direction: column;
		margin: 11.4666666667vw 6.6666666667vw 0;
		gap: 10.6666666667vw;
	}
	.page-powder-eco .sec-03__wrap__box {
		width: 100%;
	}
	.page-powder-eco .sec-03__wrap__box .image_01 {
		width: 36.8vw;
	}
	.page-powder-eco .sec-03__wrap__box .image_03 {
		width: 37.2vw;
	}
	.page-powder-eco .sec-03__wrap__box figure {
		font-size: 6vw;
	}
	.page-powder-eco .sec-03__wrap__box .text-sm {
		font-size: 3.4666666667vw;
		margin-top: 2.6666666667vw;
	}
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
	.page-history .sec-01 .ic-01 {
		display: none;
	}
	.page-history .sec-01 .ic-02 {
		display: none;
	}
	.page-history .sec-01 .sec-inner > .lead {
		padding-bottom: 6.6666666667vw;
	}
	.page-history .sec-01 .sec-inner > .lead p {
		font-size: 3.7333333333vw;
		line-height: 7.2vw;
	}
	.page-history .sec-02 .liq-01 {
		top: 133.3333333333vw;
		right: 0vw;
		width: 53.3333333333vw;
	}
	.page-history .sec-02 .liq-02 {
		top: 333.3333333333vw;
		left: 0vw;
		width: 53.3333333333vw;
	}
	.page-history .sec-02 .liq-03 {
		top: 533.3333333333vw;
		right: 0vw;
		width: 53.3333333333vw;
	}
	.page-history .sec-02 .liq-04 {
		top: 866.6666666667vw;
		left: 0vw;
		width: 53.3333333333vw;
	}
	.page-history .sec-02 .liq-05 {
		top: 1066.6666666667vw;
		right: 0vw;
		width: 53.3333333333vw;
	}
	.page-history .sec-02 .liq-06 {
		top: 1266.6666666667vw;
		left: 0vw;
		width: 53.3333333333vw;
	}
	.page-history .sec-02 .liq-07 {
		top: 1466.6666666667vw;
		right: 0vw;
		width: 53.3333333333vw;
	}
	.page-history .sec-02 .ic-01 {
		display: none;
	}
	.page-history .sec-02 .ic-02 {
		display: none;
	}
	.page-history .sec-02 .ic-03 {
		display: none;
	}
	.page-history .sec-02 .ic-04 {
		display: none;
	}
	.page-history .sec-02 .sec-inner > .lead .text p {
		font-size: 3.7333333333vw;
		line-height: 7.2vw;
	}
	.page-history .sec-02 .sec-inner > .lead .intage p {
		font-size: 2.9333333333vw;
		line-height: 7.2vw;
	}
	.page-history .sec-02 .sec-inner .list {
		width: 88vw;
	}
	.page-history .sec-02 .sec-inner .list article {
		background-size: 0.6666666667vw auto;
		padding-bottom: 6.6666666667vw;
		background-position: 1vw top;
	}
	.page-history .sec-02 .sec-inner .list article:first-child {
		background-position: 1vw 10.5333333333vw;
	}
	.page-history .sec-02 .sec-inner .list article:last-child {
		background-position: 1vw bottom;
	}
	.page-history .sec-02 .sec-inner .list article .year {
		height: 21.0666666667vw;
		background-size: auto 3.2vw;
		background-position: left center;
	}
	.page-history .sec-02 .sec-inner .list article .year span {
		margin: 0 0 0 auto;
	}
	.page-history .sec-02 .sec-inner .list article.y1923 .year span {
		display: block;
		padding: 21.0666666667vw 0 0 0;
		width: 21.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_01_yea.png") no-repeat;
		background-size: 21.0666666667vw 21.0666666667vw;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1951 .year span {
		display: block;
		padding: 21.0666666667vw 0 0 0;
		width: 21.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_02_yea.png") no-repeat;
		background-size: 21.0666666667vw 21.0666666667vw;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1961 .year span {
		display: block;
		padding: 21.0666666667vw 0 0 0;
		width: 21.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_03_yea.png") no-repeat;
		background-size: 21.0666666667vw 21.0666666667vw;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1966 .year span {
		display: block;
		padding: 21.0666666667vw 0 0 0;
		width: 21.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_04_yea.png") no-repeat;
		background-size: 21.0666666667vw 21.0666666667vw;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1970 .year span {
		display: block;
		padding: 21.0666666667vw 0 0 0;
		width: 21.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_05_yea.png") no-repeat;
		background-size: 21.0666666667vw 21.0666666667vw;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1981 .year span {
		display: block;
		padding: 21.0666666667vw 0 0 0;
		width: 21.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_06_yea.png") no-repeat;
		background-size: 21.0666666667vw 21.0666666667vw;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1987 .year span {
		display: block;
		padding: 21.0666666667vw 0 0 0;
		width: 21.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_07_yea.png") no-repeat;
		background-size: 21.0666666667vw 21.0666666667vw;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1991 .year span {
		display: block;
		padding: 21.0666666667vw 0 0 0;
		width: 21.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_08_yea.png") no-repeat;
		background-size: 21.0666666667vw 21.0666666667vw;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1994 .year span {
		display: block;
		padding: 21.0666666667vw 0 0 0;
		width: 21.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_09_yea.png") no-repeat;
		background-size: 21.0666666667vw 21.0666666667vw;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y2007 .year span {
		display: block;
		padding: 21.0666666667vw 0 0 0;
		width: 21.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_10_yea.png") no-repeat;
		background-size: 21.0666666667vw 21.0666666667vw;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y2012 .year span {
		display: block;
		padding: 21.0666666667vw 0 0 0;
		width: 21.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_11_yea.png") no-repeat;
		background-size: 21.0666666667vw 21.0666666667vw;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y2019 .year span {
		display: block;
		padding: 21.0666666667vw 0 0 0;
		width: 21.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_12_yea.png") no-repeat;
		background-size: 21.0666666667vw 21.0666666667vw;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y2023 .year span {
		display: block;
		padding: 21.0666666667vw 0 0 0;
		width: 21.0666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_13_yea.png") no-repeat;
		background-size: 21.0666666667vw 21.0666666667vw;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.left .image img, .page-history .sec-02 .sec-inner .list article.right .image img {
		margin-left: 16vw;
	}
	.page-history .sec-02 .sec-inner .list article.left .image figcaption, .page-history .sec-02 .sec-inner .list article.right .image figcaption {
		margin: 0 0 0 10.6666666667vw;
	}
	.page-history .sec-02 .sec-inner .list article.left .image figcaption h4, .page-history .sec-02 .sec-inner .list article.right .image figcaption h4 {
		font-size: 4.2666666667vw;
		letter-spacing: 0;
		margin-top: 6.1333333333vw;
		text-align: left;
	}
	.page-history .sec-02 .sec-inner .list article.left .image figcaption p, .page-history .sec-02 .sec-inner .list article.right .image figcaption p {
		margin: 2.6666666667vw 0 0 0;
		text-align: left;
	}
	.page-history .sec-02 .sec-inner .list article.y2023 .image img {
		margin-left: auto;
		margin-right: auto;
	}
	.page-history .sec-02 .sec-inner .list article.y2023 .logo {
		width: 29.7333333333vw;
		height: 15.4666666667vw;
		margin-left: 9.4666666667vw;
		margin-top: -2.5333333333vw;
		margin-bottom: 6.6666666667vw;
	}
	.page-history .sec-02 .sec-inner .list article.y2023 .logo img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
	.page-history .sec-02 .sec-inner .list article.y1923 .image img {
		width: 52.4vw;
		height: 57.3333333333vw;
	}
	.page-history .sec-02 .sec-inner .list article.y1951 .image img {
		width: 49.7333333333vw;
		height: 56.9333333333vw;
	}
	.page-history .sec-02 .sec-inner .list article.y1961 .image img {
		width: 49.2vw;
		height: 61.0666666667vw;
	}
	.page-history .sec-02 .sec-inner .list article.y1966 .image img {
		width: 50.9333333333vw;
		height: 59.7333333333vw;
	}
	.page-history .sec-02 .sec-inner .list article.y1970 .image img {
		width: 50.2666666667vw;
		height: 57.7333333333vw;
	}
	.page-history .sec-02 .sec-inner .list article.y1981 .image img {
		width: 49.7333333333vw;
		height: 55.7333333333vw;
	}
	.page-history .sec-02 .sec-inner .list article.y1987 .image img {
		width: 48.9333333333vw;
		height: 58.2666666667vw;
	}
	.page-history .sec-02 .sec-inner .list article.y1991 .image img {
		width: 49.6vw;
		height: 56.9333333333vw;
	}
	.page-history .sec-02 .sec-inner .list article.y1994 .image img {
		width: 48.4vw;
		height: 57.4666666667vw;
	}
	.page-history .sec-02 .sec-inner .list article.y2007 .image img {
		width: 46vw;
		height: 57.4666666667vw;
	}
	.page-history .sec-02 .sec-inner .list article.y2012 .image img {
		width: 59.0666666667vw;
		height: 58.1333333333vw;
	}
	.page-history .sec-02 .sec-inner .list article.y2019 .image img {
		width: 47.0666666667vw;
		height: 62.5333333333vw;
	}
	.page-history .sec-02 .sec-inner .list article.y2023 .image img {
		width: 40vw;
		height: 39.7333333333vw;
	}
	.page-history .sec-03 .bnr {
		width: 92vw;
		margin-left: auto;
		margin-right: auto;
	}
	.en .page-history .sec-03 .sec-inner,
	.vn .page-history .sec-03 .sec-inner,
	.th .page-history .sec-03 .sec-inner,
	.pt .page-history .sec-03 .sec-inner {
		padding-left: 15px;
		padding-right: 15px;
	}
	.en .page-history .sec-03 .btn-text,
	.vn .page-history .sec-03 .btn-text,
	.th .page-history .sec-03 .btn-text,
	.pt .page-history .sec-03 .btn-text {
		width: 100%;
	}
}
@media screen and (min-width: 769px) {
	img.sp,
	br.sp {
		display: none;
	}
	.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("/baby/hohoemi/assets/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("/baby/hohoemi/assets/img/common/icon_blank_g.svg") no-repeat;
		background-size: 12px 12px;
		text-indent: -5000px;
	}
	.class-product-info .img-02-02-01, .page-product .sec-01 .img-02-02-01, .page-index .sec-05b .img-02-02-01 {
		width: 95.7617866005px;
		height: 201px;
		margin-top: 0px;
	}
	.class-product-info .img-02-02-02, .page-product .sec-01 .img-02-02-02, .page-index .sec-05b .img-02-02-02 {
		width: 264.3694581281px;
		height: 201px;
		margin-top: 0px;
	}
	.class-product-info .img-02-02-03, .page-product .sec-01 .img-02-02-03, .page-index .sec-05b .img-02-02-03 {
		width: 90.4156862745px;
		height: 131px;
		margin-top: 70px;
	}
	.class-product-info .img-02-02-04, .page-product .sec-01 .img-02-02-04, .page-index .sec-05b .img-02-02-04 {
		width: 242px;
		height: 131px;
		margin-top: 70px;
	}
	.class-product-info #slide-04 .swiper-slide .slider-inner .subname, .page-product .sec-01 #slide-04 .swiper-slide .slider-inner .subname, .page-index .sec-05b #slide-04 .swiper-slide .slider-inner .subname {
		font-size: 16px;
	}
	.class-product-info #slide-04 .swiper-slide .slider-inner .u-line span, .page-product .sec-01 #slide-04 .swiper-slide .slider-inner .u-line span, .page-index .sec-05b #slide-04 .swiper-slide .slider-inner .u-line span {
		font-size: 1.6rem;
	}
	.class-product-info #slide-04 .img-04-01, .page-product .sec-01 #slide-04 .img-04-01, .page-index .sec-05b #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, .page-index .sec-05b #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, .page-index .sec-05b #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, .page-index .sec-05b #slide-04 .img-04-04 {
		width: 156px;
		height: 198px;
		margin-top: 10px;
	}
	.rakuraku-cube-slide .wrap .item,
	.rakuraku-cube-slide-multilang .wrap .item {
		flex-shrink: 1;
	}
	.rakuraku-cube-slide .wrap .item.i1 .inner img,
	.rakuraku-cube-slide-multilang .wrap .item.i1 .inner img {
		width: auto;
		height: 221px;
	}
	.rakuraku-cube-slide .wrap .item.i2 .inner img,
	.rakuraku-cube-slide-multilang .wrap .item.i2 .inner img {
		width: auto;
		height: 221px;
	}
	.rakuraku-cube-slide .wrap .item.i3 .inner img,
	.rakuraku-cube-slide-multilang .wrap .item.i3 .inner img {
		width: auto;
		height: 176.8px;
		margin-top: 44.2px;
	}
	.lang-vn .class-product-info #slide-04 .swiper-slide .slider-inner .u-line span, .lang-vn .page-product .sec-01 #slide-04 .swiper-slide .slider-inner .u-line span, .page-product .lang-vn .sec-01 #slide-04 .swiper-slide .slider-inner .u-line span, .lang-vn .page-index .sec-05b #slide-04 .swiper-slide .slider-inner .u-line span, .page-index .lang-vn .sec-05b #slide-04 .swiper-slide .slider-inner .u-line span {
		font-size: 1.4rem;
	}
	.lang-vn .class-product-info #slide-04 .swiper-slide .slider-inner .fs12-12, .lang-vn .page-product .sec-01 #slide-04 .swiper-slide .slider-inner .fs12-12, .page-product .lang-vn .sec-01 #slide-04 .swiper-slide .slider-inner .fs12-12, .lang-vn .page-index .sec-05b #slide-04 .swiper-slide .slider-inner .fs12-12, .page-index .lang-vn .sec-05b #slide-04 .swiper-slide .slider-inner .fs12-12 {
		font-size: 1rem !important;
	}
	.page-index .sec-00b {
		padding-top: 26px;
	}
	.page-index .sec-00b .frame {
		height: 600px;
	}
	.page-index .sec-00b .frame .wrap {
		width: 1080px;
		border-radius: 10px;
	}
	.page-index .sec-00b .frame .wrap .item.i1 {
		display: block;
		padding: 130px 0 0 0;
		width: 253px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_01.png") no-repeat;
		background-size: 253px 130px;
		text-indent: -5000px;
		left: 73px;
		top: 42px;
	}
	.page-index .sec-00b .frame .wrap .item.i2 {
		display: block;
		padding: 44px 0 0 0;
		width: 273px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_02.png") no-repeat;
		background-size: 273px 44px;
		text-indent: -5000px;
		left: 63px;
		top: 185px;
	}
	.page-index .sec-00b .frame .wrap .item.i3 {
		display: block;
		padding: 121px 0 0 0;
		width: 227px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_03.png") no-repeat;
		background-size: 227px 121px;
		text-indent: -5000px;
		left: 86px;
		top: 258px;
	}
	.page-index .sec-00b .frame .wrap .item.i4 {
		display: block;
		padding: 92px 0 0 0;
		width: 296px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_04_pc.png") no-repeat;
		background-size: 296px 92px;
		text-indent: -5000px;
		left: 52px;
		top: 393px;
	}
	.page-index .sec-00b .frame .wrap .item.i5a {
		display: block;
		padding: 306px 0 0 0;
		width: 248px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_05a.png") no-repeat;
		background-size: 248px 306px;
		text-indent: -5000px;
		left: 369px;
		top: 181px;
	}
	.page-index .sec-00b .frame .wrap .item.i5b {
		display: block;
		padding: 150px 0 0 0;
		width: 172px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_05b.png") no-repeat;
		background-size: 172px 150px;
		text-indent: -5000px;
		left: 397px;
		top: 44px;
	}
	.page-index .sec-00b .frame .wrap .item.i6a {
		display: block;
		padding: 265px 0 0 0;
		width: 221px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_06a.png") no-repeat;
		background-size: 221px 265px;
		text-indent: -5000px;
		left: 596px;
		top: 219px;
	}
	.page-index .sec-00b .frame .wrap .item.i7a {
		display: block;
		padding: 200px 0 0 0;
		width: 101px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_07a.png") no-repeat;
		background-size: 101px 200px;
		text-indent: -5000px;
		left: 824px;
		top: 273px;
	}
	.page-index .sec-00b .frame .wrap .item.i7b {
		display: block;
		padding: 70px 0 0 0;
		width: 70px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_07b.png") no-repeat;
		background-size: 70px 70px;
		text-indent: -5000px;
		left: 852px;
		top: 217px;
	}
	.page-index .sec-00b .frame .wrap .item.i8a {
		display: block;
		padding: 138px 0 0 0;
		width: 101px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_08a.png") no-repeat;
		background-size: 101px 138px;
		text-indent: -5000px;
		left: 935px;
		top: 335px;
	}
	.page-index .sec-00b .frame .wrap .item.i8b {
		display: block;
		padding: 70px 0 0 0;
		width: 70px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_08b.png") no-repeat;
		background-size: 70px 70px;
		text-indent: -5000px;
		left: 963px;
		top: 283px;
	}
	.page-index .sec-00b .frame .wrap .item.i9 {
		display: block;
		padding: 60px 0 0 0;
		width: 52px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_00b_img_09.png") no-repeat;
		background-size: 52px 60px;
		text-indent: -5000px;
		left: 516px;
		top: 515px;
	}
	.page-index .sec-00b .frame .wrap .note {
		justify-content: flex-end;
		bottom: 30px;
		padding-right: 40px;
	}
	.page-index .sec-00b .frame .wrap .note dl {
		font-size: 10px;
		line-height: 16px;
	}
	.en .page-index .sec-00 .mv-wrap h1,
	.vn .page-index .sec-00 .mv-wrap h1,
	.kr .page-index .sec-00 .mv-wrap h1,
	.cn .page-index .sec-00 .mv-wrap h1,
	.tw .page-index .sec-00 .mv-wrap h1,
	.th .page-index .sec-00 .mv-wrap h1,
	.pt .page-index .sec-00 .mv-wrap h1 {
		top: 11px;
		width: 100%;
		height: 96px;
		text-align: center;
		padding: 0 0 0 100px;
	}
	.en .page-index .sec-00 .mv-wrap h1 img,
	.vn .page-index .sec-00 .mv-wrap h1 img,
	.kr .page-index .sec-00 .mv-wrap h1 img,
	.cn .page-index .sec-00 .mv-wrap h1 img,
	.tw .page-index .sec-00 .mv-wrap h1 img,
	.th .page-index .sec-00 .mv-wrap h1 img,
	.pt .page-index .sec-00 .mv-wrap h1 img {
		width: 193.44px;
		height: 96px;
	}
	.en .page-index .page-index .sec-00 .mv-wrap h1,
	.vn .page-index .page-index .sec-00 .mv-wrap h1,
	.kr .page-index .page-index .sec-00 .mv-wrap h1,
	.cn .page-index .page-index .sec-00 .mv-wrap h1,
	.tw .page-index .page-index .sec-00 .mv-wrap h1,
	.th .page-index .page-index .sec-00 .mv-wrap h1,
	.pt .page-index .page-index .sec-00 .mv-wrap h1 {
		height: 96px;
	}
	.en .page-index .page-index .sec-00 .mv-wrap h1 img,
	.vn .page-index .page-index .sec-00 .mv-wrap h1 img,
	.kr .page-index .page-index .sec-00 .mv-wrap h1 img,
	.cn .page-index .page-index .sec-00 .mv-wrap h1 img,
	.tw .page-index .page-index .sec-00 .mv-wrap h1 img,
	.th .page-index .page-index .sec-00 .mv-wrap h1 img,
	.pt .page-index .page-index .sec-00 .mv-wrap h1 img {
		width: 193px;
		height: 96px;
	}
	.en .page-index .page-index .sec-00 .mv-wrap .copy,
	.vn .page-index .page-index .sec-00 .mv-wrap .copy,
	.kr .page-index .page-index .sec-00 .mv-wrap .copy,
	.cn .page-index .page-index .sec-00 .mv-wrap .copy,
	.tw .page-index .page-index .sec-00 .mv-wrap .copy,
	.th .page-index .page-index .sec-00 .mv-wrap .copy,
	.pt .page-index .page-index .sec-00 .mv-wrap .copy {
		top: 120px;
		font-size: 11px;
	}
	.page-index .sec-02 .kodawari-wrap .item.item-03 {
		width: 420px;
		margin-top: 55px;
	}
	.page-index .sec-02 .kodawari-wrap .item.item-03 .prod {
		width: 210px;
	}
	.page-index .sec-02 .kodawari-wrap .item.item-03 .prod p {
		min-height: 48px;
	}
	.page-index .sec-02 .kodawari-wrap .item.item-03 .prod .image {
		margin-top: 10px;
		height: 207px;
	}
	.page-index .sec-02 .kodawari-wrap .item.item-03 .prod:nth-child(1) .image img {
		width: 179px;
		height: 214px;
		left: 20px;
		bottom: 0;
	}
	.page-index .sec-02 .kodawari-wrap .item.item-03 .prod:nth-child(2) .image img {
		width: 263px;
		height: 231px;
		left: 17px;
		bottom: 0;
	}
	.page-index .sec-04 .sec-inner .movie-list {
		margin: 20px auto 0 auto;
		width: 766px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.page-index .sec-04 .sec-inner .movie-list article {
		width: 322px;
	}
	.page-index .sec-04 .sec-inner .movie-list article + article {
		margin-top: 30px;
	}
	.page-index .sec-04 .sec-inner .movie-list article + article:nth-child(1), .page-index .sec-04 .sec-inner .movie-list article + article:nth-child(2) {
		margin-top: 0;
	}
	.page-index .sec-04 .sec-inner .movie-list article a {
		width: 322px;
	}
	.page-index .sec-04 .sec-inner .movie-list article a figure {
		width: 322px;
	}
	.page-index .sec-04 .sec-inner .movie-list article a figure .image {
		width: 322px;
		box-shadow: 0 0 10px rgba(188, 178, 155, 0.8);
	}
	.page-index .sec-04 .sec-inner .movie-list article a figure .image img {
		width: 322px;
	}
	.page-index .sec-04 .sec-inner .movie-list article a figure figcaption {
		margin-top: 13px;
	}
	.page-index .sec-04 .sec-inner .movie-list article a figure figcaption p {
		font-size: 13px;
		line-height: 24px;
	}
	.page-index .sec-05b {
		margin-bottom: 100px;
	}
	.page-index .sec-05b #product-02 .swiper-wrapper {
		display: flex;
		justify-content: center;
	}
	.page-index .sec-05b #product-02 .slide-02 {
		margin-left: 50px;
	}
	.page-index .sec-05b .consul {
		width: 910px;
		min-width: 910px;
		margin: 50px auto;
	}
	.page-index .sec-05b .consul .lead {
		width: 470px;
	}
	.page-index .sec-05b .consul .bnr img {
		width: 293px;
	}
	.page-index.lang-en .sec-05b #slide-04 .swiper-slide .slider-inner .fs12-12 {
		font-size: 1.1rem !important;
	}
	.page-index.lang-pt .sec-05b #slide-04 .swiper-slide .slider-inner .fs12-12 {
		font-size: 0.8rem !important;
	}
	.page-index.lang-vn .sec-05b #slide-04 .swiper-slide .slider-inner .u-line span {
		font-size: 1.1rem;
	}
	.page-index.lang-vn .sec-05b #slide-04 .swiper-slide .slider-inner .fs12-12 {
		font-size: 1rem !important;
	}
	.page-index.lang-th .sec-05b #slide-04 .swiper-slide .slider-inner .fs12-12 {
		font-size: 1rem !important;
	}
	.page-index .sec-06 .banner-wrap a {
		width: 293px;
		margin: 10px;
		border-radius: 8px;
		width: 293px;
		margin: 10px;
		border-radius: 8px;
	}
	.page-index .sec-06 .banner-wrap a.square {
		border-radius: 0;
	}
	.page-index .sec-10 .sec-inner {
		width: 910px;
		min-width: 910px;
	}
	.page-index .sec-11 .sec-inner .consul {
		width: 910px;
		min-width: 910px;
		margin: 50px auto;
	}
	.page-index .sec-11 .sec-inner .consul .lead {
		width: 470px;
	}
	.page-index .sec-11 .sec-inner .consul .bnr img {
		width: 293px;
	}
	.page-index .sec-11 .sec-inner .bnr img {
		width: 293px;
	}
	.page-index .sec-12 .section-body {
		margin-top: 30px;
	}
	.page-index .sec-12 .section-body .list .container {
		width: 1080px;
		margin: 0 auto;
	}
	.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide {
		width: 315px;
		height: auto;
		padding: 0;
	}
	.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure .image {
		height: 175px;
		box-shadow: 0 0 10px rgba(97, 97, 97, 0.2);
	}
	.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption {
		margin-top: 20px;
		padding-bottom: 85px;
		height: calc(100% - 175px - 20px);
	}
	.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption .title {
		font-size: 18px;
		line-height: 26px;
	}
	.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption .lead {
		font-size: 13px;
		line-height: 20px;
		margin-top: 6px;
	}
	.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption .link {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 65px;
	}
	.page-index .sec-12 .section-body .list .container .wrapper article.swiper-slide figure figcaption .link .btn-text {
		width: 100%;
	}
	.page-index .sec-12 .section-body .list .container nav .button-prev {
		display: block;
		padding: 41px 0 0 0;
		width: 23px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_12_but_pre.svg") no-repeat;
		background-size: 23px 41px;
		text-indent: -5000px;
		filter: drop-shadow(0 0 10px rgba(97, 97, 97, 0.2));
		left: -48px;
	}
	.page-index .sec-12 .section-body .list .container nav .button-next {
		display: block;
		padding: 41px 0 0 0;
		width: 23px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_12_but_nex.svg") no-repeat;
		background-size: 23px 41px;
		text-indent: -5000px;
		filter: drop-shadow(0 0 10px rgba(97, 97, 97, 0.2));
		right: -48px;
	}
	.page-index .sec-13 .section-title .title {
		width: 275px;
		height: 143px;
	}
	.page-index .sec-13 .section-body {
		margin-top: 67px;
	}
	.page-index .sec-13 .section-body .image {
		width: 551px;
		height: 180px;
	}
	.page-index .sec-13 .section-body .lead {
		margin-top: 34px;
	}
	.page-index .sec-13 .section-body .lead p {
		font-size: 24px;
		line-height: 60px;
	}
	.page-index .sec-13 .section-body .link {
		margin-top: 30px;
	}
	.page-rakurakumilk-index .sec-00 .mv-wrap h1 {
		top: 49px;
		right: 0px;
		width: 546px;
		height: 208px;
	}
	.page-rakurakumilk-index .sec-00 .mv-under2 {
		width: 1100px;
		margin: 45px auto 0 auto;
		display: -ms-grid;
		display: grid;
		-ms-grid-rows: 147px 208px;
		-ms-grid-columns: 550px 279px 271px;
		grid-template: "image1 title title" 147px "image1 lead image2" 208px/550px 279px 271px;
	}
	.page-rakurakumilk-index .sec-00 .mv-under2 .title-box {
		grid-area: title;
		display: flex;
		align-items: flex-end;
	}
	.page-rakurakumilk-index .sec-00 .mv-under2 .image1 {
		grid-area: image1;
		padding-left: 137px;
	}
	.page-rakurakumilk-index .sec-00 .mv-under2 .lead {
		grid-area: lead;
		padding-top: 20px;
	}
	.page-rakurakumilk-index .sec-00 .mv-under2 .image2 {
		grid-area: image2;
		padding-top: 15px;
	}
	.en .page-rakurakumilk-index .sec-00 .mv-wrap h1,
	.vn .page-rakurakumilk-index .sec-00 .mv-wrap h1,
	.kr .page-rakurakumilk-index .sec-00 .mv-wrap h1,
	.cn .page-rakurakumilk-index .sec-00 .mv-wrap h1,
	.tw .page-rakurakumilk-index .sec-00 .mv-wrap h1,
	.th .page-rakurakumilk-index .sec-00 .mv-wrap h1,
	.pt .page-rakurakumilk-index .sec-00 .mv-wrap h1 {
		width: 506px;
		left: auto;
		right: 20px;
		top: 50px;
		bottom: auto;
	}
	.page-rakurakumilk-index .sec-01 div.title {
		margin-bottom: 40px;
	}
	.page-rakurakumilk-index .sec-01 .head-wrap h2 {
		margin-top: 25px;
	}
	.page-rakurakumilk-index .sec-01 .head-wrap .head-img {
		position: absolute;
		left: 0px;
		top: 306px;
		width: 231px;
	}
	.page-rakurakumilk-index .sec-01 .image {
		margin-top: 25px;
		display: flex;
		justify-content: center;
		column-gap: 30px;
	}
	.page-rakurakumilk-index .sec-01 .image .img {
		width: 468px;
		height: 266px;
	}
	.page-rakurakumilk-index .sec-01 .lead {
		margin-top: 40px;
		display: flex;
		justify-content: center;
	}
	.page-rakurakumilk-index .sec-01 .lead p {
		text-align: center;
	}
	.page-rakurakumilk-index .sec-02b {
		padding-top: 35px;
	}
	.page-rakurakumilk-index .sec-02b .section-title {
		row-gap: 25px;
	}
	.page-rakurakumilk-index .sec-02b .section-title .sub {
		width: 134px;
		height: 57px;
	}
	.page-rakurakumilk-index .sec-02b .section-body {
		width: 1100px;
		margin: 20px auto 0 auto;
	}
	.page-rakurakumilk-index .sec-02b .section-body .flow {
		width: 356px;
		height: 313px;
		right: 122px;
		top: 36px;
	}
	.page-rakurakumilk-index .sec-02b .section-body .bg-icon-box {
		width: 83px;
		height: 110px;
		right: 139px;
		top: -271px;
	}
	.page-rakurakumilk-index .sec-02b .section-body .ill {
		width: 72px;
		height: 82px;
		right: 74px;
		top: 269px;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout {
		width: 920px;
		margin: 0 auto;
		display: -ms-grid;
		display: grid;
		-ms-grid-rows: auto auto;
		-ms-grid-columns: 547px 373px;
		grid-template: "lead image" auto "link link" auto/547px 373px;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout > .lead {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout .image {
		grid-area: image;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout .image img {
		width: 314px;
		height: 356px;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout .lead {
		grid-area: lead;
		-ms-grid-row-align: center;
		align-self: center;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout .lead p {
		font-size: 13px;
		line-height: 24px;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout .link {
		grid-area: link;
		-ms-grid-column-align: center;
		justify-self: center;
		padding-top: 45px;
	}
	.page-rakurakumilk-index .sec-03b {
		padding-top: 90px;
	}
	.page-rakurakumilk-index .sec-03b .section-title {
		row-gap: 25px;
	}
	.page-rakurakumilk-index .sec-03b .section-title .sub {
		width: 134px;
		height: 57px;
	}
	.page-rakurakumilk-index .sec-03b .section-body {
		width: 1100px;
		margin: 45px auto 0 auto;
	}
	.page-rakurakumilk-index .sec-03b .section-body .bg-icon-box {
		width: 65px;
		height: 70px;
		left: 204px;
		top: -274px;
	}
	.page-rakurakumilk-index .sec-03b .section-body .flow {
		width: 230px;
		height: 212px;
		left: 115px;
		top: -189px;
	}
	.page-rakurakumilk-index .sec-03b .section-body .ill {
		width: 120px;
		height: 145px;
		right: 215px;
		top: -153px;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout {
		width: 980px;
		margin: 0 auto;
		display: -ms-grid;
		display: grid;
		-ms-grid-rows: 277px auto;
		-ms-grid-columns: 550px 430px;
		grid-template: "image lead" 277px "link link" auto/550px 430px;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout > .lead {
		-ms-grid-row: 1;
		-ms-grid-column: 2;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout > .image {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout > .lead {
		-ms-grid-row: 1;
		-ms-grid-column: 2;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout > .link {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .image {
		grid-area: image;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .image img {
		width: 503px;
		height: 247px;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .lead {
		grid-area: lead;
		-ms-grid-row-align: center;
		align-self: center;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .lead p {
		font-size: 13px;
		line-height: 24px;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .lead p + p {
		margin-top: 24px;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .link {
		grid-area: link;
	}
	.page-rakurakumilk-index .sec-00 .mv-under2 .title-box {
		-ms-grid-row: 1;
		-ms-grid-column: 2;
		-ms-grid-column-span: 2;
	}
	.page-rakurakumilk-index .sec-00 .mv-under2 .image1 {
		-ms-grid-row: 1;
		-ms-grid-row-span: 2;
		-ms-grid-column: 1;
	}
	.page-rakurakumilk-index .sec-00 .mv-under2 .lead {
		-ms-grid-row: 2;
		-ms-grid-column: 2;
	}
	.page-rakurakumilk-index .sec-00 .mv-under2 .image2 {
		-ms-grid-row: 2;
		-ms-grid-column: 3;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout .image {
		-ms-grid-row: 1;
		-ms-grid-column: 2;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout .lead {
		-ms-grid-row: 2;
		-ms-grid-column: 2;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout > .lead {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout .link {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .image {
		-ms-grid-row: 1;
		-ms-grid-column: 2;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout > .image {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .lead {
		-ms-grid-row: 2;
		-ms-grid-column: 2;
	}
	.page-rakurakumilk-index .sec-02b .section-body .layout > .lead {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout > .lead {
		-ms-grid-row: 1;
		-ms-grid-column: 2;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout .link {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
	}
	.page-rakurakumilk-index .sec-03b .section-body .layout > .link {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
	}
	.en .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.vn .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.kr .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.cn .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.tw .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.th .page-rakurakumilk-index .sec-03 .point4-images-wrap,
	.pt .page-rakurakumilk-index .sec-03 .point4-images-wrap {
		justify-content: center;
	}
	.en .page-rakurakumilk-index .sec-03 .point4-images-wrap img,
	.vn .page-rakurakumilk-index .sec-03 .point4-images-wrap img,
	.kr .page-rakurakumilk-index .sec-03 .point4-images-wrap img,
	.cn .page-rakurakumilk-index .sec-03 .point4-images-wrap img,
	.tw .page-rakurakumilk-index .sec-03 .point4-images-wrap img,
	.th .page-rakurakumilk-index .sec-03 .point4-images-wrap img,
	.pt .page-rakurakumilk-index .sec-03 .point4-images-wrap img {
		margin: 0 1em;
	}
	.en .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(1),
	.vn .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(1),
	.kr .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(1),
	.cn .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(1),
	.tw .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(1),
	.th .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(1),
	.pt .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(1) {
		width: 140px;
	}
	.en .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(2),
	.vn .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(2),
	.kr .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(2),
	.cn .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(2),
	.tw .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(2),
	.th .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(2),
	.pt .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(2) {
		width: 140px;
	}
	.en .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(3),
	.vn .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(3),
	.kr .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(3),
	.cn .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(3),
	.tw .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(3),
	.th .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(3),
	.pt .page-rakurakumilk-index .sec-03 .point4-images-wrap img:nth-child(3) {
		width: 146px;
	}
	.en .page-rakurakumilk-index .sec-03 .point4-lead-wrap,
	.vn .page-rakurakumilk-index .sec-03 .point4-lead-wrap,
	.kr .page-rakurakumilk-index .sec-03 .point4-lead-wrap,
	.cn .page-rakurakumilk-index .sec-03 .point4-lead-wrap,
	.tw .page-rakurakumilk-index .sec-03 .point4-lead-wrap,
	.th .page-rakurakumilk-index .sec-03 .point4-lead-wrap,
	.pt .page-rakurakumilk-index .sec-03 .point4-lead-wrap {
		margin: 0 25%;
	}
	.page-rakurakumilk-index .sec-04b {
		padding-top: 90px;
		padding-bottom: 125px;
	}
	.page-rakurakumilk-index .sec-04b .section-title {
		row-gap: 25px;
	}
	.page-rakurakumilk-index .sec-04b .section-title .sub {
		width: 134px;
		height: 57px;
	}
	.page-rakurakumilk-index .sec-04b .section-body {
		width: 920px;
		margin: 25px auto 0 auto;
	}
	.page-rakurakumilk-index .sec-04b .section-body .bg-icon-box {
		width: 69px;
		height: 74px;
		right: 71px;
		top: -240px;
	}
	.page-rakurakumilk-index .sec-04b .section-body .ill {
		position: absolute;
		z-index: 1;
		left: 37px;
		top: -132px;
		width: 168px;
		height: 132px;
	}
	.page-rakurakumilk-index .sec-04b .section-body .lead {
		display: flex;
		justify-content: center;
	}
	.page-rakurakumilk-index .sec-04b .section-body .lead p {
		text-align: center;
		font-size: 13px;
		line-height: 24px;
	}
	.page-rakurakumilk-index .sec-04b .section-body .link {
		margin-top: 35px;
	}
	.page-rakurakumilk-index .sec-06 .section-title {
		margin-top: 75px;
		row-gap: 25px;
	}
	.page-rakurakumilk-index .sec-06 .section-title .sub {
		width: 134px;
		height: 57px;
	}
	.page-rakurakumilk-index .sec-06 .section-body {
		margin-top: 40px;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list {
		width: 965px;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article + article {
		margin-top: 20px;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-title {
		border-radius: 8px;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title {
		font-size: 22px;
		line-height: 30px;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title a {
		padding: 20px 100px 20px 110px;
		min-height: 100px;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title a i.q {
		display: block;
		padding: 36px 0 0 0;
		width: 31px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/rakurakumilk/top/sec_06_ico_q.png") no-repeat;
		background-size: 31px 36px;
		text-indent: -5000px;
		left: 38px;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title a i.sign {
		width: 30px;
		height: 30px;
		right: 30px;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-title h3.title a i.sign .bar {
		width: 30px;
		height: 4px;
		border-radius: 2px;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-body {
		border-radius: 0 0 8px 8px;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout {
		column-gap: 35px;
		padding: 30px 30px;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout i.icon {
		display: block;
		padding: 100px 0 0 0;
		width: 100px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/rakurakumilk/top/sec_06_ico_ans.png") no-repeat;
		background-size: 100px 100px;
		text-indent: -5000px;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content {
		font-size: 16px;
		line-height: 32px;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content a {
		transition: opacity 0.5s;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article .article-body > .wrap .layout .content a:hover {
		opacity: 0.7;
	}
	.page-rakurakumilk-index .sec-06 .section-body .list article.active .article-title {
		border-radius: 8px 8px 0 0;
	}
	.page-rakurakumilk-usage .sec-01 ul.list li {
		padding-left: 30px;
	}
	.page-rakurakumilk-usage .sec-01 ul.list.dot li:before {
		top: 6px;
		width: 12px;
		height: 12px;
	}
	.page-rakurakumilk-usage .sec-01 ul.list.caution li:before {
		top: 4px;
		display: block;
		padding: 15.25px 0 0 0;
		width: 17px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/rakurakumilk/usage/sec_02_ico_02.png") no-repeat;
		background-size: 17px 15.25px;
		text-indent: -5000px;
	}
	.page-rakurakumilk-usage .readme {
		margin-top: 55px;
		border-radius: 10px;
		padding: 0 10px 10px 10px;
	}
	.page-rakurakumilk-usage .readme .head {
		height: 60px;
		column-gap: 12px;
	}
	.page-rakurakumilk-usage .readme .head i.icon {
		width: 26.94px;
		height: 23.97px;
	}
	.page-rakurakumilk-usage .readme .head .text {
		font-size: 22px;
	}
	.page-rakurakumilk-usage .readme .body {
		border-radius: 10px;
		padding: 20px 25px;
	}
	.page-rakurakumilk-usage .readme .body p {
		font-size: 15px;
		line-height: 30px;
	}
	.page-rakurakumilk-usage .sec-03 .sec-inner .bnr a {
		width: 293px;
	}
	.page-rakurakumilk-usage .sec-03 .sec-inner .bnr a + a {
		margin-top: 15px;
	}
	.page-rakurakumilk-usage .sec-03 .sec-inner .bnr a img {
		width: 293px;
	}
	.page-rakurakumilk-disaster .sec-01 .sec-inner .link .btn-image {
		width: 455px;
		margin: 0 auto;
	}
	.page-rakurakumilk-disaster .sec-02 .sec-inner.narrow {
		width: 605px;
	}
	.page-rakurakumilk-disaster .sec-02 .attachment {
		width: 605px;
		margin: 0 -67.5px;
	}
	.page-rakurakumilk-disaster .sec-03 .sec-inner .bnr a {
		width: 293px;
	}
	.page-rakurakumilk-disaster .sec-03 .sec-inner .bnr a img {
		width: 293px;
	}
	br.pc {
		display: inline;
	}
	br.sp {
		display: none;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-sorter {
		width: 974px;
		justify-content: space-between;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-sorter a {
		width: 174px;
		padding: 7px 10px;
		border-radius: 17px;
		font-size: 16px;
		line-height: 20px;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list {
		width: 1041px;
		margin: 0 auto;
		transform: translate3d(33.5px, 0, 0);
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article {
		width: 280px;
		margin: 0 67px 63px 0;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a {
		display: block;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a .name h3 {
		height: 48px;
		font-size: 20px;
		line-height: 24px;
		margin: 0;
		display: flex;
		justify-content: center;
		align-items: flex-end;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a .name h3 br {
		display: none;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a .name h3 br.list-pc {
		display: inline;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a .photo {
		margin: 17px 0 0 0;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a .photo img {
		width: 280px;
		box-shadow: 0px 0px 9px 1px rgba(104, 104, 104, 0.5);
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a .lead {
		margin: 17px 0 0 0;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a .lead p {
		margin: 0;
		font-size: 14px;
		line-height: 22px;
		text-align: center;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a .type {
		margin: 16px 0 0 0;
	}
	.page-rakurakumilk-recipe .sec-02 .recipe-list article a .type p {
		margin: 0;
		height: 34px;
		border-radius: 17px;
		background: #ff8583;
		font-size: 16px;
		color: #ffffff;
		line-height: 34px;
		font-weight: bold;
		text-align: center;
	}
	.page-rakurakumilk-recipe .sec-02 .bnr a {
		width: 293px;
	}
	.page-rakurakumilk-recipe .sec-02 .bnr a img {
		width: 293px;
	}
	.page-rakurakumilk-recipe .recipe-modal-test {
		padding: 50px;
	}
	.page-rakurakumilk-recipe .recipe-modal {
		border-radius: 10px;
		padding: 20px 0 40px 59px;
		width: 800px;
	}
	.page-rakurakumilk-recipe .recipe-modal > .wrap {
		display: -ms-grid;
		display: grid;
		-ms-grid-rows: auto 20px auto;
		-ms-grid-columns: 400px 29px 251px;
		grid-template: "name  type" auto "photo ingredient" auto/400px 251px;
		gap: 20px 29px;
	}
	.page-rakurakumilk-recipe .recipe-modal .name {
		grid-area: name;
		display: flex;
		align-items: center;
	}
	.page-rakurakumilk-recipe .recipe-modal .name h3 {
		font-size: 30px;
		line-height: 45px;
		margin: 0;
		text-align: left;
	}
	.page-rakurakumilk-recipe .recipe-modal .name h3 br {
		display: none;
	}
	.page-rakurakumilk-recipe .recipe-modal .name h3 br.modal-pc {
		display: inline;
	}
	.page-rakurakumilk-recipe .recipe-modal .photo {
		grid-area: photo;
	}
	.page-rakurakumilk-recipe .recipe-modal .photo img {
		width: 400;
		box-shadow: 0px 0px 9px 1px rgba(104, 104, 104, 0.5);
	}
	.page-rakurakumilk-recipe .recipe-modal .type {
		grid-area: type;
		display: flex;
		align-items: center;
	}
	.page-rakurakumilk-recipe .recipe-modal .type p {
		margin: 0;
		width: 251px;
		height: 34px;
		border-radius: 17px;
		background: #ff8583;
		font-size: 16px;
		color: #ffffff;
		line-height: 34px;
		font-weight: bold;
		text-align: center;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient {
		grid-area: ingredient;
		width: 251px;
		min-height: 260px;
		background: #ffffff;
		border: 2px dashed #ff8583;
		border-radius: 14px;
		padding: 25px;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient h4 {
		font-size: 18px;
		line-height: 1;
		color: #ff8583;
		font-weight: bold;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient table {
		margin: 20px 0 0 0;
		width: 100%;
		font-size: 15px;
		line-height: 28px;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient table tr th {
		padding: 0 7px 0 0;
		text-align: left;
		font-weight: normal;
		vertical-align: top;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient table tr th span {
		font-size: 13px;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient table tr td {
		padding: 0;
		text-align: right;
		vertical-align: top;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient table tr td span {
		font-size: 13px;
	}
	.page-rakurakumilk-recipe .recipe-modal .steps {
		margin-top: 30px;
		width: 681px;
		background: #ffffff;
		border: 2px dashed #ff8583;
		border-radius: 14px;
		padding: 25px;
	}
	.page-rakurakumilk-recipe .recipe-modal .steps h4 {
		font-size: 18px;
		line-height: 1;
		color: #ff8583;
		font-weight: bold;
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol {
		margin-top: 20px;
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li {
		padding: 0 0 0 35px;
		position: relative;
		min-height: 27px;
		font-size: 15px;
		line-height: 28px;
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li + li {
		margin-top: 26px;
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		display: block;
		padding: 27px 0 0 0;
		width: 27px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/common/slide_page_01_on.png") no-repeat;
		background-size: 27px 27px;
		text-indent: -5000px;
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(1):before {
		content: "1";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_01_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(2):before {
		content: "2";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_02_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(3):before {
		content: "3";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_03_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(4):before {
		content: "4";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_04_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(5):before {
		content: "5";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_05_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(6):before {
		content: "6";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_06_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(7):before {
		content: "7";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_07_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(8):before {
		content: "8";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_08_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .steps ol li:nth-child(9):before {
		content: "9";
		background-image: url("/baby/hohoemi/assets/img/common/slide_page_09_on.png");
	}
	.page-rakurakumilk-recipe .recipe-modal .close-button {
		margin-top: 37px;
	}
	.page-rakurakumilk-recipe .recipe-modal .close-button a {
		margin: 0 auto;
		display: block;
		width: 260px;
		height: 59px;
		border: 2px solid #c6c6c6;
		background: #ffffff;
		position: relative;
		text-align: center;
		line-height: 59px;
		border-radius: 5px;
		font-size: 15px;
		font-weight: bold;
	}
	.page-rakurakumilk-recipe .recipe-modal .close-button a:after {
		content: "";
		display: block;
		padding: 13px 0 0 0;
		width: 13px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/common/btn_icon_close_a.png") no-repeat;
		background-size: 13px 13px;
		text-indent: -5000px;
		position: absolute;
		margin: auto;
		top: 0;
		bottom: 0;
		right: 30px;
	}
	.page-rakurakumilk-recipe .recipe-modal .name {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
	.page-rakurakumilk-recipe .recipe-modal .photo {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
	}
	.page-rakurakumilk-recipe .recipe-modal .type {
		-ms-grid-row: 1;
		-ms-grid-column: 3;
	}
	.page-rakurakumilk-recipe .recipe-modal .ingredient {
		-ms-grid-row: 3;
		-ms-grid-column: 3;
	}
	.page-rakurakumilk-recipe .mfp-content {
		width: 800px;
		padding-top: 50px;
	}
	.page-rakurakumilk-recipe button.mfp-close {
		display: block;
		padding: 30px 0 0 0;
		width: 30px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/common/btn_icon_close_b.png") no-repeat;
		background-size: 30px 30px;
		text-indent: -5000px;
	}
	.page-rakurakumilk-recipe .sec-03 .bnr a {
		width: 293px;
	}
	.page-rakurakumilk-recipe .sec-03 .bnr a img {
		width: 293px;
	}
	.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .image02 {
		width: 231px;
		height: 140px;
		position: absolute;
		left: -181px;
		bottom: -42px;
	}
	.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .image02 img {
		width: 231px;
		height: 140px;
	}
	.lang-en.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text,
	.lang-cn.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text,
	.lang-tw.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text,
	.lang-kr.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text,
	.lang-pt.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text,
	.lang-vn.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text,
	.lang-th.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text {
		max-width: 450px;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .howtomovie {
		width: 468px;
		margin: 0 auto;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox {
		margin-top: 50px;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body ul.note {
		margin-top: 17px;
		padding-left: 5px;
	}
	.page-rakurakumilk-attachment .sec-04 .sec-inner .icon01 {
		width: 69px;
		height: 74px;
		position: absolute;
		left: -120px;
		top: 0;
		z-index: 10;
	}
	.page-rakurakumilk-attachment .sec-04 .sec-inner .icon01 img {
		width: 69px;
		height: 74px;
	}
	.page-rakurakumilk-attachment .sec-04 .sec-inner .icon02a {
		width: 119px;
		height: 149px;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 10;
	}
	.page-rakurakumilk-attachment .sec-04 .sec-inner .icon02a img {
		width: 119px;
		height: 149px;
	}
	.page-rakurakumilk-attachment .sec-04 .sec-inner .icon02b {
		width: 118px;
		height: 109px;
		position: absolute;
		right: 0;
		top: 33px;
		z-index: 10;
	}
	.page-rakurakumilk-attachment .sec-04 .sec-inner .icon02b img {
		width: 118px;
		height: 109px;
	}
	.page-rakurakumilk-attachment .readme {
		margin-top: 55px;
	}
	.page-rakurakucube-index .sec-03 .bnr a {
		width: 293px;
	}
	.page-rakurakucube-index .sec-03 .bnr a img {
		width: 293px;
	}
	.page-rakurakucube-usage .sec-03 .sec-inner .bnr a {
		width: 293px;
	}
	.page-rakurakucube-usage .sec-03 .sec-inner .bnr a + a {
		margin-top: 15px;
	}
	.page-rakurakucube-usage .sec-03 .sec-inner .bnr a img {
		width: 293px;
	}
	.page-product .sec-01 .consul {
		width: 910px;
		min-width: 910px;
		margin: 50px auto;
	}
	.page-product .sec-01 .consul .lead {
		width: 470px;
	}
	.page-product .sec-01 .consul .bnr img {
		width: 293px;
	}
	.page-mixed-feeding .sec-01 .q5table table thead .r1 .h4 {
		font-size: 11px;
	}
	.lang-en .sec-01 .sec-inner.sec-inner-01,
	.lang-cn .sec-01 .sec-inner.sec-inner-01,
	.lang-tw .sec-01 .sec-inner.sec-inner-01,
	.lang-kr .sec-01 .sec-inner.sec-inner-01,
	.lang-pt .sec-01 .sec-inner.sec-inner-01,
	.lang-vn .sec-01 .sec-inner.sec-inner-01,
	.lang-th .sec-01 .sec-inner.sec-inner-01 {
		max-width: 640px;
	}
	.page-mixed-feeding .sec-02 .consul {
		width: 910px;
		min-width: 910px;
		margin: 50px auto;
	}
	.page-mixed-feeding .sec-02 .consul .lead {
		width: 470px;
	}
	.page-mixed-feeding .sec-02 .consul .bnr img {
		width: 293px;
	}
	.page-powder-eco .sec-01 .bg {
		width: 1080px;
		margin: auto;
		left: -9999px;
		right: -9999px;
	}
	.page-powder-eco .sec-01 .bg .item.b1 {
		width: 268px;
		height: 226px;
		left: 782px;
		top: 80px;
	}
	.page-powder-eco .sec-01 .bg .item.b2 {
		width: 0px;
		height: 0px;
		left: 0px;
		top: 0px;
	}
	.page-powder-eco .sec-01 .bg .item.b3 {
		width: 116px;
		height: 101px;
		left: 972px;
		top: 50px;
	}
	.page-powder-eco .sec-01 .bg .item.b4 {
		width: 80px;
		height: 144px;
		left: 60px;
		top: 310px;
	}
	.page-powder-eco .sec-01 .title {
		column-gap: 16px;
	}
	.page-powder-eco .sec-01 .title .icon.il {
		display: block;
		padding: 80px 0 0 0;
		width: 48px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/powder/eco/sec_01_ttl_l_pc.png") no-repeat;
		background-size: 48px 80px;
		text-indent: -5000px;
	}
	.page-powder-eco .sec-01 .title .icon.ir {
		display: block;
		padding: 80px 0 0 0;
		width: 48px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/powder/eco/sec_01_ttl_r_pc.png") no-repeat;
		background-size: 48px 80px;
		text-indent: -5000px;
	}
	.page-powder-eco .sec-01 .title .text {
		font-size: 24px;
		line-height: 35px;
	}
	.page-powder-eco .sec-02 .bg {
		width: 1080px;
		margin: auto;
		left: -9999px;
		right: -9999px;
	}
	.page-powder-eco .sec-02 .bg .item.b1 {
		width: 265px;
		height: 255px;
		left: 0px;
		top: 200px;
	}
	.page-powder-eco .sec-02 .bg .item.b2 {
		width: 204px;
		height: 198px;
		left: 910px;
		top: 620px;
	}
	.page-powder-eco .sec-02 .bg .item.b3 {
		width: 265px;
		height: 255px;
		left: -20px;
		top: 900px;
	}
	.page-powder-eco .sec-02 .bg .item.b4 {
		width: 78px;
		height: 84px;
		left: 990px;
		top: 620px;
	}
	.page-powder-eco .sec-03 .bg {
		width: 1080px;
		margin: auto;
		left: -9999px;
		right: -9999px;
	}
	.page-powder-eco .sec-03 .bg .item.b1 {
		width: 265px;
		height: 255px;
		left: 750px;
		top: 370px;
	}
	.page-powder-eco .sec-03 .bg .item.b2 {
		width: 0px;
		height: 0px;
		left: 0px;
		top: 0px;
	}
	.page-powder-eco .sec-03 .bg .item.b3 {
		width: 268px;
		height: 226px;
		left: 0px;
		top: 1230px;
	}
	.page-powder-eco .sec-03 .bg .item.b4 {
		width: 204px;
		height: 198px;
		left: 750px;
		top: 1700px;
	}
	.page-powder-eco .sec-03 .bg .item.b5 {
		width: 0px;
		height: 0px;
		left: 0px;
		top: 0px;
	}
	.page-powder-eco .sec-03 .bg .item.b6 {
		width: 0px;
		height: 0px;
		left: 0px;
		top: 0px;
	}
	.page-powder-eco .sec-03 .bg .item.b7 {
		width: 83px;
		height: 88px;
		left: 900px;
		top: 1400px;
	}
	.page-powder-eco .sec-03 .bg .item.b8 {
		width: 105px;
		height: 101px;
		left: 0px;
		top: 0px;
	}
	.page-powder-eco .sec-03 .bg .item.b9 {
		width: 0px;
		height: 0px;
		left: 0px;
		top: 0px;
	}
	.page-powder-eco .sec-03 .bg .item.b10 {
		width: 79px;
		height: 115px;
		left: 100px;
		top: 1600px;
	}
	br.pc {
		display: inline;
	}
	br.sp {
		display: none;
	}
	.page-history .sec-01 .ic-01 {
		left: 100px;
		top: 50px;
	}
	.page-history .sec-01 .ic-02 {
		right: 100px;
		bottom: 50px;
	}
	.page-history .sec-01 .sec-inner > .lead p {
		font-size: 15px;
		line-height: 30px;
	}
	.page-history .sec-02 .liq-05 {
		display: none;
	}
	.page-history .sec-02 .liq-06 {
		display: none;
	}
	.page-history .sec-02 .liq-07 {
		display: none;
	}
	.page-history .sec-02 .ic-01 {
		right: 100px;
		top: 750px;
	}
	.page-history .sec-02 .ic-02 {
		left: 100px;
		top: 1800px;
	}
	.page-history .sec-02 .ic-03 {
		right: 100px;
		top: 2500px;
	}
	.page-history .sec-02 .ic-04 {
		left: 100px;
		top: 3250px;
	}
	.page-history .sec-02 .sec-inner > .lead {
		width: 700px;
		margin: 0 auto;
	}
	.page-history .sec-02 .sec-inner > .lead .text p {
		font-size: 15px;
		line-height: 30px;
	}
	.page-history .sec-02 .sec-inner > .lead .intage p {
		font-size: 10px;
		line-height: 30px;
	}
	.page-history .sec-02 .sec-inner .list {
		width: 908px;
	}
	.page-history .sec-02 .sec-inner .list article {
		width: 454px;
		background-size: 5px auto;
		padding-bottom: 50px;
	}
	.page-history .sec-02 .sec-inner .list article:nth-child(2) {
		margin-top: 115px;
	}
	.page-history .sec-02 .sec-inner .list article .year {
		width: 267px;
		height: 80px;
		background-size: auto 20px;
	}
	.page-history .sec-02 .sec-inner .list article.y1923 .year span {
		display: block;
		padding: 80px 0 0 0;
		width: 80px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_01_yea.png") no-repeat;
		background-size: 80px 80px;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1951 .year span {
		display: block;
		padding: 80px 0 0 0;
		width: 80px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_02_yea.png") no-repeat;
		background-size: 80px 80px;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1961 .year span {
		display: block;
		padding: 80px 0 0 0;
		width: 80px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_03_yea.png") no-repeat;
		background-size: 80px 80px;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1966 .year span {
		display: block;
		padding: 80px 0 0 0;
		width: 80px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_04_yea.png") no-repeat;
		background-size: 80px 80px;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1970 .year span {
		display: block;
		padding: 80px 0 0 0;
		width: 80px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_05_yea.png") no-repeat;
		background-size: 80px 80px;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1981 .year span {
		display: block;
		padding: 80px 0 0 0;
		width: 80px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_06_yea.png") no-repeat;
		background-size: 80px 80px;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1987 .year span {
		display: block;
		padding: 80px 0 0 0;
		width: 80px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_07_yea.png") no-repeat;
		background-size: 80px 80px;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1991 .year span {
		display: block;
		padding: 80px 0 0 0;
		width: 80px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_08_yea.png") no-repeat;
		background-size: 80px 80px;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y1994 .year span {
		display: block;
		padding: 80px 0 0 0;
		width: 80px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_09_yea.png") no-repeat;
		background-size: 80px 80px;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y2007 .year span {
		display: block;
		padding: 80px 0 0 0;
		width: 80px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_10_yea.png") no-repeat;
		background-size: 80px 80px;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y2012 .year span {
		display: block;
		padding: 80px 0 0 0;
		width: 80px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_11_yea.png") no-repeat;
		background-size: 80px 80px;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y2019 .year span {
		display: block;
		padding: 80px 0 0 0;
		width: 80px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_12_yea.png") no-repeat;
		background-size: 80px 80px;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article.y2023 .year span {
		display: block;
		padding: 80px 0 0 0;
		width: 80px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/history/sec_02_lis_13_yea.png") no-repeat;
		background-size: 80px 80px;
		text-indent: -5000px;
	}
	.page-history .sec-02 .sec-inner .list article .image figcaption h4 {
		font-size: 16px;
		margin-top: 15px;
	}
	.page-history .sec-02 .sec-inner .list article .image figcaption p {
		width: 240px;
		margin: 15px auto 0 auto;
	}
	.page-history .sec-02 .sec-inner .list article.y1923 .image img {
		width: 189.95px;
		height: 207.8333333333px;
	}
	.page-history .sec-02 .sec-inner .list article.y1951 .image img {
		width: 180.2833333333px;
		height: 206.3833333333px;
	}
	.page-history .sec-02 .sec-inner .list article.y1961 .image img {
		width: 178.35px;
		height: 221.3666666667px;
	}
	.page-history .sec-02 .sec-inner .list article.y1966 .image img {
		width: 184.6333333333px;
		height: 216.5333333333px;
	}
	.page-history .sec-02 .sec-inner .list article.y1970 .image img {
		width: 182.2166666667px;
		height: 209.2833333333px;
	}
	.page-history .sec-02 .sec-inner .list article.y1981 .image img {
		width: 180.2833333333px;
		height: 202.0333333333px;
	}
	.page-history .sec-02 .sec-inner .list article.y1987 .image img {
		width: 177.3833333333px;
		height: 211.2166666667px;
	}
	.page-history .sec-02 .sec-inner .list article.y1991 .image img {
		width: 179.8px;
		height: 206.3833333333px;
	}
	.page-history .sec-02 .sec-inner .list article.y1994 .image img {
		width: 175.45px;
		height: 208.3166666667px;
	}
	.page-history .sec-02 .sec-inner .list article.y2007 .image img {
		width: 166.75px;
		height: 208.3166666667px;
	}
	.page-history .sec-02 .sec-inner .list article.y2012 .image img {
		width: 214.1166666667px;
		height: 210.7333333333px;
	}
	.page-history .sec-02 .sec-inner .list article.y2019 .image img {
		width: 170.6166666667px;
		height: 226.6833333333px;
	}
	.page-history .sec-02 .sec-inner .list article.y2023 .image img {
		width: 145px;
		height: 144.0333333333px;
	}
	.page-history .sec-02 .sec-inner .list article.left {
		float: left;
		transform: translate3d(10px, 0, 0);
		background-position: 441.5px top;
	}
	.page-history .sec-02 .sec-inner .list article.left:last-child {
		background-position: 441.5px bottom;
	}
	.page-history .sec-02 .sec-inner .list article.left .year {
		background-position: right center;
		margin: 0 0 0 auto;
	}
	.page-history .sec-02 .sec-inner .list article.left .year span {
		margin: 0 auto 0 0;
	}
	.page-history .sec-02 .sec-inner .list article.left .image img {
		margin: 10px 0 0 103px;
	}
	.page-history .sec-02 .sec-inner .list article.right {
		float: right;
		transform: translate3d(-10px, 0, 0);
		background-position: 7.5px top;
	}
	.page-history .sec-02 .sec-inner .list article.right:last-child {
		background-position: 7.5px bottom;
	}
	.page-history .sec-02 .sec-inner .list article.right .year {
		background-position: left center;
		margin: 0 auto 0 0;
	}
	.page-history .sec-02 .sec-inner .list article.right .year span {
		margin: 0 0 0 auto;
	}
	.page-history .sec-02 .sec-inner .list article.right .image img {
		margin: 10px 0 0 120px;
	}
	.page-history .sec-02 .sec-inner .list article.y2023 {
		position: relative;
	}
	.page-history .sec-02 .sec-inner .list article.y2023 .image img {
		margin: 10px auto 0 auto;
	}
	.page-history .sec-02 .sec-inner .list article.y2023 .logo {
		position: absolute;
		width: 106px;
		height: 55px;
		left: 47px;
		top: 13px;
	}
	.page-history .sec-02 .sec-inner .list article.y2023 .logo img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
	.page-history .sec-03 .bnr a {
		width: 293px;
	}
	.page-history .sec-03 .bnr a img {
		width: 293px;
	}
}
@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;
	}
	.en .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
	.vn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
	.kr .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
	.cn .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
	.tw .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
	.th .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02,
	.pt .page-rakurakumilk-index .sec-00 .mv-btm .mv-title-wrap .img-02 {
		width: 27.6923076923%;
	}
	.page-rakurakumilk-index .sec-01 .head-wrap .head-img {
		width: 27.6923076923%;
	}
	.page-rakurakumilk-index .sec-01 .head-wrap h2 {
		font-size: 1.7rem;
		padding-left: 35.0769230769%;
	}
	.page-rakurakumilk-usage .sec-01 .box-dash-inner .text-wrap .text {
		font-size: 1rem;
	}
	.page-rakurakumilk-disaster .sec-01 .before-wrap .text-wrap .text {
		font-size: 1rem;
	}
	.page-rakurakumilk-disaster .sec-03 .ng-wrap .list-01 {
		font-size: 1rem;
	}
	.page-rakurakumilk-disaster .sec-04 .ng-wrap .list-01 {
		font-size: 1rem;
	}
	.page-rakurakumilk-mapping .sec-01 .before-wrap .text-wrap .text {
		font-size: 1rem;
	}
	.page-rakurakumilk-mapping .sec-03 .ng-wrap .list-01 {
		font-size: 1rem;
	}
	.page-rakurakucube-index .sec-01 h2 {
		font-size: 1.3rem !important;
	}
}
@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: 484px;
	}
	section.hero-bg .hero-bg-inner .hero-wrap .mv-img {
		opacity: 0;
	}
	.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, .page-index .sec-05b .sec-inner.wide {
		max-width: 1100px;
	}
	.en .page-index .sec-00,
	.vn .page-index .sec-00,
	.kr .page-index .sec-00,
	.cn .page-index .sec-00,
	.tw .page-index .sec-00,
	.th .page-index .sec-00,
	.pt .page-index .sec-00 {
		width: 100%;
	}
	.en .page-index .sec-00 .hero-bg-inner,
	.vn .page-index .sec-00 .hero-bg-inner,
	.kr .page-index .sec-00 .hero-bg-inner,
	.cn .page-index .sec-00 .hero-bg-inner,
	.tw .page-index .sec-00 .hero-bg-inner,
	.th .page-index .sec-00 .hero-bg-inner,
	.pt .page-index .sec-00 .hero-bg-inner {
		min-width: 1080px;
		height: 600px;
		padding: 0;
		border-radius: 18px;
		background-size: 102% auto;
		background-position: center center;
	}
	.en .page-index .sec-00 .mv-wrap,
	.vn .page-index .sec-00 .mv-wrap,
	.kr .page-index .sec-00 .mv-wrap,
	.cn .page-index .sec-00 .mv-wrap,
	.tw .page-index .sec-00 .mv-wrap,
	.th .page-index .sec-00 .mv-wrap,
	.pt .page-index .sec-00 .mv-wrap {
		width: 100%;
		height: 100%;
		z-index: auto;
		margin-left: auto;
		margin-right: auto;
		min-width: 1080px;
	}
	.en .page-index .sec-00 .mv-wrap .mv-img,
	.vn .page-index .sec-00 .mv-wrap .mv-img,
	.kr .page-index .sec-00 .mv-wrap .mv-img,
	.cn .page-index .sec-00 .mv-wrap .mv-img,
	.tw .page-index .sec-00 .mv-wrap .mv-img,
	.th .page-index .sec-00 .mv-wrap .mv-img,
	.pt .page-index .sec-00 .mv-wrap .mv-img {
		object-fit: cover;
		width: 100%;
		height: 100%;
		border-radius: 10px;
	}
	.page-index .sec-02 .sec-inner {
		padding: 70px 0;
	}
	.page-rakurakumilk-index .sec-00 .hero-bg-inner {
		padding-left: 10px;
		padding-right: 10px;
		background-image: url("/baby/hohoemi/assets/img/rakurakumilk/top/mv.png");
		width: 1100px;
	}
	.page-rakurakumilk-index .sec-00 .mv-wrap {
		width: 1100px;
		height: 100%;
		z-index: auto;
		margin-left: auto;
		margin-right: auto;
	}
	.page-rakurakumilk-index .sec-00 .mv-wrap .mv-img {
		opacity: 0;
		height: 514px;
	}
	.en .page-rakurakumilk-index .sec-00 .hero-bg-inner,
	.vn .page-rakurakumilk-index .sec-00 .hero-bg-inner,
	.kr .page-rakurakumilk-index .sec-00 .hero-bg-inner,
	.cn .page-rakurakumilk-index .sec-00 .hero-bg-inner,
	.tw .page-rakurakumilk-index .sec-00 .hero-bg-inner,
	.th .page-rakurakumilk-index .sec-00 .hero-bg-inner,
	.pt .page-rakurakumilk-index .sec-00 .hero-bg-inner {
		height: 514px;
		padding-left: 10px;
		padding-right: 10px;
		background-image: url("/baby/hohoemi/assets/img/rakurakumilk/top/mv.png");
	}
	.en .page-rakurakumilk-index .sec-00 .mv-wrap,
	.vn .page-rakurakumilk-index .sec-00 .mv-wrap,
	.kr .page-rakurakumilk-index .sec-00 .mv-wrap,
	.cn .page-rakurakumilk-index .sec-00 .mv-wrap,
	.tw .page-rakurakumilk-index .sec-00 .mv-wrap,
	.th .page-rakurakumilk-index .sec-00 .mv-wrap,
	.pt .page-rakurakumilk-index .sec-00 .mv-wrap {
		width: 100%;
		height: 514px;
		z-index: auto;
		margin: 0 auto;
	}
	.en .page-rakurakumilk-index .sec-00 .mv-wrap .mv-img,
	.vn .page-rakurakumilk-index .sec-00 .mv-wrap .mv-img,
	.kr .page-rakurakumilk-index .sec-00 .mv-wrap .mv-img,
	.cn .page-rakurakumilk-index .sec-00 .mv-wrap .mv-img,
	.tw .page-rakurakumilk-index .sec-00 .mv-wrap .mv-img,
	.th .page-rakurakumilk-index .sec-00 .mv-wrap .mv-img,
	.pt .page-rakurakumilk-index .sec-00 .mv-wrap .mv-img {
		opacity: 0;
		height: 514px;
	}
	.page-rakurakumilk-disaster .board-title-wrap img {
		height: 545px;
	}
	.page-rakurakumilk-disaster .sec-03 .box-dash .list-01 li {
		font-size: 1.4rem;
		margin-top: 10px;
		padding-left: 2rem;
		font-weight: bold;
	}
	.page-rakurakumilk-disaster .sec-03 .box-dash .list-01 li small {
		font-size: 1.4rem;
		font-weight: normal;
	}
	.page-rakurakumilk-recipe .sec-inner {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.page-rakurakumilk-recipe .sec-00 .hero-bg-inner {
		background-image: url("/baby/hohoemi/assets/img/rakurakumilk/recipe/mv.png");
	}
	.page-rakurakumilk-recipe .sec-00 .hero-wrap .title-wrap {
		height: 100%;
	}
	.page-rakurakumilk-recipe .sec-00 .hero-wrap .title-wrap h1 {
		width: 494px;
	}
	.page-rakurakumilk-recipe .sec-01 .sec-inner {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.page-rakurakumilk-mapping .sec-02 .box-dash .list-01 li {
		font-size: 1.3rem;
		margin-top: 10px;
		padding-left: 2rem;
		font-weight: bold;
	}
	.page-rakurakumilk-mapping .sec-02 .box-dash .list-01 li small {
		font-size: 1.3rem;
		font-weight: normal;
	}
	.page-rakurakumilk-attachment .sec-00 .hero-bg-inner {
		padding-left: 10px;
		padding-right: 10px;
		background-image: url("/baby/hohoemi/assets/img/rakurakumilk/attachment/mv.png");
	}
	.page-rakurakumilk-attachment .sec-00 .mv-wrap {
		width: 1100px;
		height: 100%;
		z-index: auto;
		margin-left: auto;
		margin-right: auto;
	}
	.page-rakurakumilk-attachment .sec-00 .mv-wrap .mv-img {
		opacity: 0;
	}
	.page-rakurakumilk-attachment .sec-02 .sec-inner .wrap .text {
		margin-top: -35px;
	}
	.page-rakurakumilk-attachment .sec-03 .bg {
		width: 319px;
		height: 280px;
		position: absolute;
		margin: auto;
		left: 0;
		right: 0;
		bottom: 60px;
		transform: translate3d(-275px, 0, 0);
	}
	.page-rakurakumilk-attachment .sec-03 .bg img {
		width: 319px;
		height: 280px;
	}
	.page-rakurakumilk-attachment .sec-03 .icon {
		width: 88px;
		height: 85px;
		position: absolute;
		margin: auto;
		left: 0;
		right: 0;
		top: 0;
		transform: translate3d(330px, 0, 0);
	}
	.page-rakurakumilk-attachment .sec-03 .icon img {
		width: 88px;
		height: 85px;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body {
		margin: 50px 0 0 0;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox {
		width: 474px;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox:before {
		width: 474px;
		height: 18px;
		background: url("/baby/hohoemi/assets/img/rakurakumilk/attachment/box_top.png") no-repeat;
		background-size: 474px 18px;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap {
		background: url("/baby/hohoemi/assets/img/rakurakumilk/attachment/box_middle.png") repeat;
		background-size: 474px 18px;
		padding: 10px 30px;
		margin: -1px 0 0 0;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-ttl h3 {
		font-size: 22px;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body {
		margin: 10px 0 0 0;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dt {
		margin-top: 20px;
		width: 54px;
		height: 54px;
		font-size: 18px;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd {
		margin-top: 20px;
		padding: 0 0 0 16px;
		width: 360px;
	}
	.page-rakurakumilk-attachment .sec-03 .section-body .bgbox:after {
		margin: -1px 0 0 0;
		width: 474px;
		height: 17px;
		background: url("/baby/hohoemi/assets/img/rakurakumilk/attachment/box_bottom.png") no-repeat;
		background-size: 474px 17px;
	}
	.lang-en.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
	.lang-cn.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
	.lang-tw.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
	.lang-kr.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
	.lang-pt.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
	.lang-vn.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd,
	.lang-th.page-rakurakumilk-attachment .sec-03 .section-body .bgbox > .wrap .box-body dl dd {
		margin: 5px 0 0 0;
		padding: 0;
		font-size: 13px;
		line-height: 20px;
	}
	.page-rakurakumilk-attachment .sec-04 .swiper-pagination-wrap {
		width: 550px;
		margin-left: -30px;
	}
	.page-rakurakumilk-attachment .sec-05 .sec-inner .bg01 {
		width: 335px;
		height: 307px;
		position: absolute;
		right: -265px;
		top: 0;
		z-index: 9;
	}
	.page-rakurakumilk-attachment .sec-05 .sec-inner .bg01 img {
		width: 335px;
		height: 307px;
	}
	.page-rakurakumilk-attachment .sec-05 .sec-inner .icon01 {
		width: 64px;
		height: 71px;
		position: absolute;
		margin: auto;
		right: -135px;
		top: 0;
		bottom: 0;
		z-index: 10;
	}
	.page-rakurakumilk-attachment .sec-05 .sec-inner .icon01 img {
		width: 64px;
		height: 71px;
	}
	.page-rakurakumilk-attachment .sec-06 {
		margin-top: 100px;
	}
	.page-rakurakumilk-attachment .sec-06 .sec-inner .bg01 {
		width: 319px;
		height: 280px;
		position: absolute;
		left: -153px;
		top: 30px;
		z-index: 9;
	}
	.page-rakurakumilk-attachment .sec-06 .sec-inner .bg01 img {
		width: 319px;
		height: 280px;
	}
	.page-rakurakumilk-attachment .sec-06 .sec-inner .icon01 {
		width: 97px;
		height: 85px;
		position: absolute;
		left: -125px;
		top: 0;
		z-index: 10;
	}
	.page-rakurakumilk-attachment .sec-06 .sec-inner .icon01 img {
		width: 97px;
		height: 85px;
	}
	.page-rakurakumilk-attachment .sec-07 .sec-inner .bg01 {
		width: 335px;
		height: 307px;
		position: absolute;
		right: -200px;
		top: 0px;
		z-index: 0;
	}
	.page-rakurakumilk-attachment .sec-07 .sec-inner .bg01 img {
		width: 335px;
		height: 307px;
	}
	.page-rakurakumilk-attachment .sec-07 .sec-inner .icon01 {
		width: 64px;
		height: 71px;
		position: absolute;
		right: -125px;
		top: 240px;
		z-index: 10;
	}
	.page-rakurakumilk-attachment .sec-07 .sec-inner .icon01 img {
		width: 64px;
		height: 71px;
	}
	.page-science .sec-00 .hero-bg-inner {
		background-image: url("/baby/hohoemi/assets/img/science/mv.png");
	}
	.page-science .sec-01 .sec-inner {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.page-science .sec-02 .sec-inner {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.page-science .sec-02 .sec-img-02 {
		width: 384px;
	}
	.page-nutrition .sec-inner {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.page-nutrition .sec-00 .hero-bg-inner {
		background-image: url("/baby/hohoemi/assets/img/nutrition/mv.png");
	}
	.page-nutrition .sec-01 .btn-wrap {
		margin-top: 30px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.page-nutrition .sec-01 .btn-wrap .btn-text {
		width: 260px;
		margin: 0 0 20px 0;
	}
	.page-nutrition .sec-01 .btn-wrap .btn-text + .btn-text {
		margin-left: 20px;
	}
	.page-rakurakucube-index .sec-inner {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.page-rakurakucube-index .sec-00 .hero-bg-inner {
		background-image: url("/baby/hohoemi/assets/img/rakurakucube/top/mv.png");
		background-position: center center;
	}
	.page-rakurakucube-usage .board-title-wrap img {
		height: auto;
	}
	.page-mixed-feeding .board-title-wrap img {
		height: 488px;
	}
	.page-mixed-feeding .sec-01 .sec-inner {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.page-powder-index .sec-inner {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.page-powder-index .sec-00 .hero-bg-inner {
		background-image: url("/baby/hohoemi/assets/img/powder/top/mv.png");
		background-position: center center;
		background-size: contain;
	}
	.page-powder-usage .board-title-wrap img {
		height: 488px;
	}
	.page-powder-usage .sec-01 .sec-inner {
		padding-top: 70px;
		padding-bottom: 0;
	}
	.page-powder-eco .sec-00 {
		margin-top: 24px;
	}
	.page-powder-eco .sec-00 .hero-bg-inner {
		background-image: url("/baby/hohoemi/assets/img/powder/eco/mv.jpg");
		background-position: center center;
		max-width: 1100px;
	}
	.page-history .sec-inner {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.page-history .sec-00 .hero-bg-inner {
		background-image: url("/baby/hohoemi/assets/img/history/mv.png");
	}
	.page-history .sec-00 .hero-wrap .title-wrap {
		height: 100%;
	}
	.page-history .sec-00 .hero-wrap .title-wrap h1 {
		width: 494px;
	}
	.page-history .sec-01 .sec-inner {
		padding-top: 120px;
		padding-bottom: 120px;
	}
}
@media screen and (min-width: 768px) {
	br.pc {
		display: inline;
	}
	br.sp {
		display: none;
	}
	.page-index .sec-08 .sec-inner {
		width: 910px;
		min-width: 910px;
	}
	.page-index .sec-08 .sec-inner .ex {
		background: url("/baby/hohoemi/assets/img/top/sec_08_bg.png") no-repeat 95px top;
		min-height: 489px;
	}
	.page-index .sec-08 .sec-inner .ex > .wrap {
		width: 563px;
		margin: 0 0 0 243px;
		padding: 110px 0 0 0;
		display: flex;
		justify-content: space-between;
	}
	.page-index .sec-08 .sec-inner .ex > .wrap article {
		width: 267px;
		position: relative;
	}
	.page-index .sec-08 .sec-inner .ex > .wrap article figure .image {
		width: 267px;
		height: 163px;
	}
	.page-index .sec-08 .sec-inner .ex > .wrap article figure .image img {
		width: 267px;
		height: 163px;
	}
	.page-index .sec-08 .sec-inner .ex > .wrap article figure figcaption {
		margin: 1em 0 0 0;
	}
	.page-index .sec-08 .sec-inner .ex > .wrap article figure figcaption p {
		font-size: 12px;
		line-height: 18px;
	}
	.page-index .sec-08 .sec-inner .ex > .wrap article:nth-child(1):after {
		content: "";
		display: block;
		padding: 28px 0 0 0;
		width: 46px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_08_arr.png") no-repeat;
		background-size: 46px 28px;
		text-indent: -5000px;
		position: absolute;
		left: 257px;
		top: 65px;
		z-index: 10;
	}
	.page-index .sec-08 .sec-inner .ex .link {
		margin: 25px 0 0 0;
	}
	.page-index .sec-08 .sec-inner .ex .link .text {
		font-size: 18px;
		color: #ff8583;
		font-weight: bold;
		text-align: center;
	}
	.page-index .sec-08 .sec-inner .ex .link .button .btn-text {
		margin-top: 0;
	}
	br.pc {
		display: inline;
	}
	br.sp {
		display: none;
	}
	.page-index .sec-09 {
		margin-top: 90px;
	}
	.page-index .sec-09 .title:before {
		display: block;
		padding: 58.4328358209px 0 0 0;
		width: 135px;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_09_head.png") no-repeat;
		background-size: 135px 58.4328358209px;
		text-indent: -5000px;
		margin: 0 auto 25px auto;
	}
	.page-index .sec-09 .cam-cloud {
		margin-top: 30px;
		padding: 40px 0;
		background: url("/baby/hohoemi/assets/img/top/sec_09_bg.png") center center;
		background-size: 48px 48px;
	}
	.page-index .sec-09 .chara.c1 {
		right: 180px;
		top: -10px;
		width: 183px;
		height: 144px;
	}
	.page-index .sec-09 .chara.c1 img {
		width: 183px;
		height: 144px;
	}
	.page-index .sec-09 .comingsoon {
		margin-top: 20px;
		height: 328px;
		background: url("/baby/hohoemi/assets/img/top/sec_09_cs_bg.png") center center repeat-x;
	}
	.page-index .sec-09 .comingsoon p {
		font-size: 46px;
		font-weight: bold;
		color: #ffffff;
		margin: 0;
	}
}
@media screen and (max-width: 767px) {
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
	.page-index .sec-08 .sec-inner .title.large {
		font-size: 5.3333333333vw;
		line-height: 10.6666666667vw;
		letter-spacing: 0em;
	}
	.page-index .sec-08 .sec-inner .ex {
		background: url("/baby/hohoemi/assets/img/sp/top/sec_08_bg.png") no-repeat left top;
		background-size: 34.6666666667vw 81.2vw;
		margin-top: 8vw;
	}
	.page-index .sec-08 .sec-inner .ex > .wrap {
		width: 51.2vw;
		margin: 0 0 0 auto;
	}
	.page-index .sec-08 .sec-inner .ex > .wrap article figcaption figcaption p {
		margin-top: 2vw;
		font-size: 2.6666666667vw;
		line-height: 4vw;
	}
	.page-index .sec-08 .sec-inner .ex > .wrap article:nth-child(1) {
		padding: 0 0 10vw 0;
		position: relative;
	}
	.page-index .sec-08 .sec-inner .ex > .wrap article:nth-child(1):after {
		content: "";
		display: block;
		padding: 7.7333333333vw 0 0 0;
		width: 4.6666666667vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/sp/top/sec_08_arr.png") no-repeat;
		background-size: 4.6666666667vw 7.7333333333vw;
		text-indent: -5000px;
		position: absolute;
		margin: auto;
		left: 0;
		right: 0;
		bottom: 1.3333333333vw;
	}
	.page-index .sec-08 .sec-inner .ex .link {
		margin: 6.6666666667vw 0 0 0;
	}
	.page-index .sec-08 .sec-inner .ex .link .text {
		font-size: 4.2666666667vw;
		color: #ff8583;
		font-weight: bold;
		text-align: center;
	}
	.page-index .sec-08 .sec-inner .ex .link .button .btn-text {
		margin-top: 0;
	}
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
	.page-index .sec-09 {
		margin-top: 12vw;
	}
	.page-index .sec-09 .title:before {
		display: block;
		padding: 15.4666666667vw 0 0 0;
		width: 35.7333333333vw;
		height: 0;
		overflow: hidden;
		background: url("/baby/hohoemi/assets/img/top/sec_09_head.png") no-repeat;
		background-size: 35.7333333333vw 15.4666666667vw;
		text-indent: -5000px;
		margin: 0 auto 2vw auto;
	}
	.page-index .sec-09 .cam-cloud {
		margin-top: 5.3333333333vw;
		padding: 8.9333333333vw 0;
		background: url("/baby/hohoemi/assets/img/top/sec_09_bg.png") center center;
		background-size: 9.6vw 9.6vw;
	}
	.page-index .sec-09 .chara.c1 {
		right: 2.6666666667vw;
		top: 1.3333333333vw;
		width: 28.2666666667vw;
		height: 22.2666666667vw;
	}
	.page-index .sec-09 .chara.c1 img {
		width: 28.2666666667vw;
		height: 22.2666666667vw;
	}
	.page-index .sec-09 .comingsoon {
		margin-top: 12vw;
		height: 50.4vw;
		background: url("/baby/hohoemi/assets/img/sp/top/sec_09_cs_bg.png") center center repeat-x;
		background-size: 100vw 50.4vw;
	}
	.page-index .sec-09 .comingsoon p {
		font-size: 8.2666666667vw;
		font-weight: bold;
		color: #ffffff;
		margin: 0;
	}
}
@media (min-width: 767px) {
	.en .page-rakurakumilk-index .sec-00 .mv-btm .mv-banner_line_sp,
	.vn .page-rakurakumilk-index .sec-00 .mv-btm .mv-banner_line_sp,
	.kr .page-rakurakumilk-index .sec-00 .mv-btm .mv-banner_line_sp,
	.cn .page-rakurakumilk-index .sec-00 .mv-btm .mv-banner_line_sp,
	.tw .page-rakurakumilk-index .sec-00 .mv-btm .mv-banner_line_sp,
	.th .page-rakurakumilk-index .sec-00 .mv-btm .mv-banner_line_sp,
	.pt .page-rakurakumilk-index .sec-00 .mv-btm .mv-banner_line_sp {
		display: none;
	}
}
@media screen and (max-width: 767px) and (min-width: 769px) {
	.page-product .sec-01 #slide-02 .swiper-slide .slide-inner .subname,
	.page-product .sec-01 #slide-02 .swiper-slide .slide-inner p.fs12-12,
	.page-product .sec-01 #slide-02 .swiper-slide .slide-inner h5.u-line,
	.page-product .sec-01 #slide-02-2 .swiper-slide .slide-inner .subname,
	.page-product .sec-01 #slide-02-2 .swiper-slide .slide-inner p.fs12-12,
	.page-product .sec-01 #slide-02-2 .swiper-slide .slide-inner h5.u-line,
	.page-product .sec-01 #slide-03 .swiper-slide .slide-inner .subname,
	.page-product .sec-01 #slide-03 .swiper-slide .slide-inner p.fs12-12,
	.page-product .sec-01 #slide-03 .swiper-slide .slide-inner h5.u-line,
	.page-product .sec-01 #slide-04 .swiper-slide .slide-inner .subname,
	.page-product .sec-01 #slide-04 .swiper-slide .slide-inner p.fs12-12,
	.page-product .sec-01 #slide-04 .swiper-slide .slide-inner h5.u-line {
		opacity: 1;
	}
}
@media screen and (max-width: 767px) and (max-width: 768px) {
	.page-product .sec-01 #slide-02 .swiper-slide .slide-inner .subname,
	.page-product .sec-01 #slide-02 .swiper-slide .slide-inner p.fs12-12,
	.page-product .sec-01 #slide-02 .swiper-slide .slide-inner h5.u-line,
	.page-product .sec-01 #slide-02-2 .swiper-slide .slide-inner .subname,
	.page-product .sec-01 #slide-02-2 .swiper-slide .slide-inner p.fs12-12,
	.page-product .sec-01 #slide-02-2 .swiper-slide .slide-inner h5.u-line,
	.page-product .sec-01 #slide-03 .swiper-slide .slide-inner .subname,
	.page-product .sec-01 #slide-03 .swiper-slide .slide-inner p.fs12-12,
	.page-product .sec-01 #slide-03 .swiper-slide .slide-inner h5.u-line,
	.page-product .sec-01 #slide-04 .swiper-slide .slide-inner .subname,
	.page-product .sec-01 #slide-04 .swiper-slide .slide-inner p.fs12-12,
	.page-product .sec-01 #slide-04 .swiper-slide .slide-inner h5.u-line {
		opacity: 1;
	}
}
@media screen and (max-width: 768px) and (min-width: 769px) {
	.page-product .sec-01 #slide-04 .swiper-slide .slider-inner .subname,
	.page-product .sec-01 #slide-04 .swiper-slide .slider-inner .u-line,
	.page-product .sec-01 #slide-04 .swiper-slide .slider-inner .fs12-12 {
		opacity: 1;
	}
}
@media screen and (max-width: 768px) and (max-width: 768px) {
	.page-product .sec-01 #slide-04 .swiper-slide .slider-inner .subname,
	.page-product .sec-01 #slide-04 .swiper-slide .slider-inner .u-line,
	.page-product .sec-01 #slide-04 .swiper-slide .slider-inner .fs12-12 {
		opacity: 1;
	}
}
/*# sourceMappingURL=style.css.map */