@charset "utf-8";

/*----------------------------------------------------
 elements
----------------------------------------------------*/
html {
	font-size: 62.5%;
}

body {
	color: #1c1c1c;
	font-family: 'Noto Sans JP', ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.020em;
	line-height: 2;
	background-color: #fff;
	background-image: url('../img/historyBg.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto 0;
	padding: 0 0 128px;
	position: relative;
	overflow-x: hidden;
}

div {
	box-sizing: border-box;
}

img{
	vertical-align:top;
	max-width: 100%;
	height: auto;
}

a {
	outline: none;
	color: #000;
	text-decoration: none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

a:focus, *:focus {
	outline:none;
}

a:visited {
	color: #212121;
}

a img {
	-webkit-transition: opacity .5s ease-out;
	-moz-transition: opacity .5s ease-out;
	-ms-transition: opacity .5s ease-out;
	transition: opacity .5s ease-out;
}

.post, .page {
	margin: 0;
}


.center {
	text-align: center;
}

.clearfix:after {
	content:" ";
	display:block;
	clear:both;
}

.clear {
	clear:both;
	height: 0;
}

small {
	font-weight: 500;
}

ul, ol {
	padding: 0;
	margin: 0;
}

li > ul, li > ol {
	margin-left: 0;
}

ul li {
	list-style: none;
	box-sizing: border-box;
}

dl {
	margin: 0;
}

dt {
	font-weight: 500;
	box-sizing: border-box;
}

dd {
	margin: 0;
	box-sizing: border-box;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

table th,
table td {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
	font-weight: 500;
}

p {
	margin: 0;
}

/*----------------------------------------------------
 fadeIn
----------------------------------------------------*/

.fadeIn {
	transform: translate3d(0, -10px, 0);
	transition: 1s;
	opacity: 0;
}

.fadeIn.animated {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

/*----------------------------------------------------
 inner
----------------------------------------------------*/
.inner {
	width: calc(100% - 3.6rem);
	max-width: 1440px;
	margin: 0 auto;
}

/*----------------------------------------------------
 #header
----------------------------------------------------*/

#header {
	position: absolute;
	width: 100%;
	max-width: 1920px;
	z-index: 100;
	padding: 15px 8px 0 1px;
	box-sizing: border-box;
}

#header .inner {
	max-width: initial;
}

#header .headerFlex {
	display: flex;
	justify-content: space-between;
}

#header .headerFlex .logo {
	position: relative;
}

#header .headerFlex .logo .tex {
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.15em;
	color: #fff;
	margin-bottom: 5px;
}

#header .headerFlex .logo .icon {
	width: 100%;
	max-width: 243px;
}

#header .headerFlex .button {
	position: relative;
	width: 100%;
	max-width: 346px;
	margin-top: 13px;
}

#header .headerFlex .button span {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	transition: all 0.3s ease;
}

#header .headerFlex .button span:first-child {
	z-index: 10;
}

/*----------------------------------------------------
 #goTop
----------------------------------------------------*/

#goTop {
	position: fixed;
	right: 39px;
	bottom: 26px;
	width: 100%;
	max-width: 74px;
	z-index: 1000;
}

/*----------------------------------------------------
 #footer
----------------------------------------------------*/

#footer {
	position: relative;
	padding: 23px 0 29px 0;
}

#footer .inner {
	position: relative;
	z-index: 1;
}

#footer:before {
	content: '';
	width: 100%;
	height: 200px; /* height: 480px; */
	background: url('../img/footerBg.jpg') center center no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	bottom: 0;
}

#footer .logo {
	width: 100%;
	max-width: 243px;
	margin: 0 auto 36px;
}

#footer nav {
	margin-bottom: 56px;
}

#footer nav ul {
	display: flex;
	justify-content: center;
}

#footer nav ul li {
	margin: 0 23px;
}

#footer nav ul li a {
	display: flex;
	align-items: center;
}

#footer nav ul li a .icon {
	width: 100%;
	max-width: 5px;
	line-height: 9px;
	transform: translate(7px, 1px);
	-webkit-transform: translate(7px, 1px);
	-ms-transform: translate(7px, 1px);
}

#footer nav ul li a .tex {
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.025em;
	color: #fff;
}

#footer .copy {
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.075em;
	text-align: center;
	color: #fff;
}

/*----------------------------------------------------
 #floating
----------------------------------------------------*/

#floating {
	position: fixed;
	width: 100%;
	left: 0;
	bottom: 0;
	z-index: 100;
	background: #3e96d4;
	padding: 11px 0 3px 0;
	transform: translateY(100%);
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transition: all 0.3s ease;
}

#floating.fixed {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
}

#floating .inner {
	max-width: 1000px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#floating .conts {
	transform: translateX(-14px);
	-webkit-transform: translateX(-14px);
	-ms-transform: translateX(-14px);
}

#floating .conts .borderBox {
	border: 1px solid #fff;
	margin-bottom: 7px;
	padding: 10px 0 9px;
}

#floating .conts .borderBox p {
	font-size: 16.92px;
	line-height: 1;
	letter-spacing: 0.025em;
	color: #fff;
	text-align: center;
}

#floating .conts .itemName p {
	font-size: 44.78px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.025em;
	color: #fff;
	text-align: center;
}

#floating .price {
	width: 100%;
	max-width: 356px;
	transform: translate(-5px, -5px);
	-webkit-transform: translate(-5px, -5px);
	-ms-transform: translate(-5px, -5px);
}

#floating .button {
	position: relative;
	width: 100%;
	max-width: 365px;
	height: 92px;
	transform: translate(8px, -2px);
	-webkit-transform: translate(8px, -2px);
	-ms-transform: translate(8px, -2px);
}

#floating .button span {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	transition: all 0.3s ease;
}

#floating .button span:first-child {
	z-index: 10;
}

/*----------------------------------------------------
 #visual
----------------------------------------------------*/

#visual {
	position: relative;
	padding: 11px 0 0 0;
}

#visual .bg {
	position: absolute;
	width: 100%;
	height: 902px;
	left: 0;
	top: 0;
	background: url('../img/visualBg.png') center top no-repeat;
	background-size: auto 100%;
}

#visual .bg img {
	display: none;
	width: auto;
	height: 100%;
	object-fit: cover;
}

#visual .inner {
	position: relative;
	z-index: 1;
	max-width: 1440px;
}

/*----------------------------------------------------
 #history
----------------------------------------------------*/

#history {
	position: relative;
	padding: 101px 0 11px 0;
}

#history .historyFlex {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-bottom: -4px;
	padding: 0 101px 0 118px;
}

#history .historyFlex .conts {
	position: relative;
	width: 521px;
	padding: 138px 0 0 2px;
}

#history .historyFlex .conts h2 {
	position: absolute;
	left: 0;
	top: 0;
	width: 792px;
}

#history .historyFlex .conts p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.9;
	letter-spacing: 0.1em;
	text-align: justify;
}

#history .historyFlex .conts p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

#history .historyFlex .imageArea {
	position: relative;
	width: 100%;
	max-width: 650px;
	margin-top: 82px;
}

#history .historyFlex .imageArea .imageObj {
	position: absolute;
	right: -340px;
	top: -131px;
	width: 100%;
	max-width: 477px;
}

#history .historyFlex .imageArea .image {
	position: relative;
	z-index: 1;
}

#history .historyConts {
	position: relative;
}

#history .historyConts h3 {
	display: flex;
	justify-content: center;
	position: relative;
	margin-bottom: 20px;
}

#history .historyConts h3 small {
	width: 100%;
	max-width: 292px;
	position: absolute;
	margin: -46px 0 0 -557px;
}

#history .historyConts h3 b {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.65;
	letter-spacing: 0.09em;
	text-align: center;
	transform: translateX(2px);
	-webkit-transform: translateX(2px);
	-ms-transform: translateX(2px);
}

#history .historyConts .image {
	width: 100%;
	max-width: 1253px;
	margin: 0 auto 0;
}

/*----------------------------------------------------
 #conversion
----------------------------------------------------*/

#conversion {
	position: relative;
	padding: 86px 0 0 0;
}

#conversion .bg {
	position: absolute;
	width: 100%;
	height: 884px;
	left: 0;
	top: 0;
	background: url('../img/conversionBg.png') center top no-repeat;
	background-size: auto 100%;
}

#conversion .inner {
	position: relative;
	z-index: 1;
}

#conversion .head {
	margin-bottom: 45px;
}

#conversion .head .bgFlex {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-bottom: 17px;
}

#conversion .head .bgFlex .leftBox {
	position: relative;
	width: 100%;
	max-width: 332px;
	background: #3e97d4;
	margin: 0 5px;
	padding: 11px 0 9px;
	text-align: center;
}

#conversion .head .bgFlex .leftBox .obj {
	width: 100%;
	max-width: 154px;
	position: absolute;
	top: -44px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

#conversion .head .bgFlex .leftBox .tex {
	font-size: 27px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	color: #fff;
}

#conversion .head .bgFlex .righttBox {
	position: relative;
	width: 100%;
	max-width: 332px;
	background: #3e97d4;
	margin: 0 6px;
	padding: 11px 0 9px;
	text-align: center;
}

#conversion .head .bgFlex .righttBox .tex {
	font-size: 27px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	color: #fff;
}

#conversion .head h2 {
	position: relative;
	display: flex;
	justify-content: center;
}

#conversion .head h2 .tex {
	font-size: 50px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.03em;
	padding: 0 0 9px;
	text-align: center;
	background: linear-gradient(transparent 60%, #fef681 60%);
}

#conversion .head h2 .obj {
	position: absolute;
	width: 100%;
	max-width: 125px;
	right: 149px;
	top: -120px;
}

#conversion .cvBox {
	position: relative;
	background: url('../img/cvBoxBg.jpg') center bottom no-repeat;
	background-size: cover;
}

#conversion .cvBox .enTex {
	position: absolute;
	width: 100%;
	max-width: 391px;
	left: -146px;
	top: -105px;
}

#conversion .cvBox .badge {
	position: absolute;
	width: 100%;
	max-width: 285px;
	right: -119px;
	top: -103px;
}

#conversion .cvBox .boxFlex {
	display: flex;
	justify-content: space-between;
	padding: 21px 0 25px 94px;
}

#conversion .cvBox .boxFlex .image {
	width: 100%;
	max-width: 627px;
}

#conversion .cvBox .boxFlex .conts {
	width: 682px;
}

#conversion .cvBox .boxFlex .conts .whiteFlex {
	display: flex;
	margin-bottom: 16px;
	padding: 9px 0 0 6px;
}

#conversion .cvBox .boxFlex .conts .whiteFlex .leftBox {
	width: 141.45px;
	background: #fff;
	margin-right: 13px;
	padding: 6px 0 6px;
	box-shadow: 0 2px 3px rgba(50, 89, 136, 0.4);
	text-align: center;
}

#conversion .cvBox .boxFlex .conts .whiteFlex .leftBox .tex {
	font-size: 18.11px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	color: #4d4d4d;
}

#conversion .cvBox .boxFlex .conts .whiteFlex .righttBox {
	width: 211.63px;
	background: #fff;
	padding: 6px 0 6px;
	box-shadow: 0 2px 3px rgba(50, 89, 136, 0.4);
	text-align: center;
}

#conversion .cvBox .boxFlex .conts .whiteFlex .righttBox .tex {
	font-size: 18.11px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	color: #4d4d4d;
}

#conversion .cvBox .boxFlex .conts .boxHead h3 {
	display: flex;
	flex-direction: column;
	margin-bottom: 25px;
	padding: 0 0 0 5px;
}

#conversion .cvBox .boxFlex .conts .boxHead h3 small {
	font-size: 36px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.09em;
	margin-bottom: 9px;
}

#conversion .cvBox .boxFlex .conts .boxHead h3 b {
	font-size: 52.56px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.065em;
	transform: translateX(-2px);
	-webkit-transform: translateX(-2px);
	-ms-transform: translateX(-2px);
}

#conversion .cvBox .boxFlex .conts .boxHead p {
	font-size: 21.19px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.0;
	padding: 0 0 0 6px;
}

#conversion .cvBox .boxFlex .conts .boxPrice {
	width: 100%;
	max-width: 537px;
	margin: 0 0 17px 6px;
}

#conversion .cvBox .boxFlex .conts .button {
	position: relative;
	width: 100%;
	max-width: 559px;
	height: 123px;
}

#conversion .cvBox .boxFlex .conts .button span {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	transition: all 0.3s ease;
}

#conversion .cvBox .boxFlex .conts .button span:first-child {
	z-index: 10;
}

#conversion .cvBox .boxFlex .conts ul {
	margin: -4px 0 0 0;
	padding: 0 0 0 16px;
}

#conversion .cvBox .boxFlex .conts ul li {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.833;
	letter-spacing: 0.0;
	display: flex;
}

/*----------------------------------------------------
 #merit
----------------------------------------------------*/

#merit {
	position: relative;
	padding: 86px 0 12px 0;
}

#merit .leftBg {
	position: absolute;
	width: 100%;
	max-width: 613px;
	top: 124px;
	left: 0;
}

#merit .rightBg {
	position: absolute;
	width: 100%;
	max-width: 613px;
	right: 0;
	bottom: -26px;
}

#merit .inner {
	position: relative;
	z-index: 1;
	max-width: 1255px;
}

#merit .head {
	position: relative;
}

#merit .head h2 {
	width: 100%;
	max-width: 711px;
	margin: 0 auto 0;
	transform: translateY(-17px);
	-webkit-transform: translateY(-17px);
	-ms-transform: translateY(-17px);
}

#merit .meritList {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#merit .meritList .box {
	width: 100%;
	max-width: 626px;
	margin-bottom: 2px;
}

/*----------------------------------------------------
 #worries
----------------------------------------------------*/

#worries {
	position: relative;
	overflow: hidden;
	margin-bottom: -39px;
	padding: 40px 0 5px 0;
}

#worries .bgTop {
	position: absolute;
	width: 100%;
	height: 844px;
	left: 0;
	top: 0;
	background: url('../img/worriesBg.png') center top no-repeat;
	background-size: auto 100%;
}

#worries .bgBottom {
	position: absolute;
	width: 100%;
	height: 674px;
	left: 0;
	bottom: 0;
	background: url('../img/anserBg.png') center bottom no-repeat;
	background-size: auto 100%;
}

#worries .inner {
	position: relative;
	z-index: 1;
}

#worries .head {
	position: relative;
}

#worries .head h2 {
	width: 100%;
	max-width: 928px;
	margin: 0 auto 0;
}

#worries .fukidashiArea {
	position: relative;
	width: 100%;
	max-width: 979px;
	margin: 0 auto -5px;
}

#worries .fukidashiArea .bg {
	width: 100%;
	max-width: 979px;
	transform: translate(43px, -19px);
	-webkit-transform: translate(43px, -19px);
	-ms-transform: translate(43px, -19px);
}

#worries .fukidashiArea ul li {
	font-size: 28px;
	font-weight: 400;
	line-height: 1.4285;
	letter-spacing: 0;
}

#worries .fukidashiArea ul li:nth-child(1) {
	position: absolute;
	left: 122px;
	top: 70px;
	z-index: 1;
}

#worries .fukidashiArea ul li:nth-child(2) {
	position: absolute;
	right: 96px;
	top: 35px;
	z-index: 1;
}

#worries .fukidashiArea ul li:nth-child(3) {
	position: absolute;
	left: 211px;
	bottom: 109px;
	z-index: 1;
}

#worries .fukidashiArea ul li:nth-child(4) {
	position: absolute;
	right: 32px;
	bottom: 150px;
	z-index: 1;
}

#worries .arrowHead {
	width: 100%;
	max-width: 929px;
	margin: 0 auto 0;
}

#worries .arrowHead .bgBox {
	position: relative;
	background: url('../img/bgBox.png') center center no-repeat;
	background-size: 100% 108px;
	text-align: center;
	padding: 29px 0 35px;
	z-index: 1;
}

#worries .arrowHead .bgBox p {
	font-size: 39.92px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
}

#worries .arrowHead .arrow {
	width: 100%;
	max-width: 199px;
	margin: -93px auto 0;
}

#worries .answerArea {
	padding: 54px 0 0 0;
}

#worries .answerBox01 {
	position: relative;
	background: url('../img/questionBox01Bg.jpg') center center no-repeat;
	background-size: cover;
	margin-bottom: 67px;
	padding: 0 0 79px 0;
}

#worries .answerBox01 .enTex {
	position: absolute;
	width: 100%;
	max-width: 260px;
	left: -42px;
	top: -26px;
}

#worries .answerBox01 .boxHead {
	width: 100%;
	max-width: 947px;
	margin: 0 auto 0;
}

#worries .answerBox01 .boxHead h3 {
	transform: translateY(-35px);
	-webkit-transform: translateY(-35px);
	-ms-transform: translateY(-35px);
}

#worries .answerBox01 .boxFlex {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	padding: 0 66px 0 192px;
}

#worries .answerBox01 .boxFlex .image {
	width: 100%;
	max-width: 467px;
	transform: translateY(-22px);
	-webkit-transform: translateY(-22px);
	-ms-transform: translateY(-22px);
}

#worries .answerBox01 .boxFlex .conts {
	width: 696px;
}

#worries .answerBox01 .boxFlex .conts p {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.6666;
	letter-spacing: 0.05em;
	text-align: justify;
}

#worries .answerBox01 .boxFlex .conts p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

#worries .answerBox01 .imageTex {
	width: 100%;
	max-width: 910px;
	margin: -91px auto 0;
	transform: translateX(-14px);
	-webkit-transform: translateX(-14px);
	-ms-transform: translateX(-14px);
}

#worries .answerBox02 {
	position: relative;
	background: url('../img/questionBox02Bg.jpg') center center no-repeat;
	background-size: cover;
	padding: 0 0 54px 0;
}

#worries .answerBox02 .enTex {
	position: absolute;
	width: 100%;
	max-width: 260px;
	left: -42px;
	top: -26px;
}

#worries .answerBox02 .boxHead {
	width: 100%;
	max-width: 947px;
	margin: 0 auto 0;
}

#worries .answerBox02 .boxHead h3 {
	transform: translateY(-35px);
	-webkit-transform: translateY(-35px);
	-ms-transform: translateY(-35px);
}

#worries .answerBox02 .boxFlex {
	display: flex;
	justify-content: space-between;
	padding: 0 127px 0 102px;
}

#worries .answerBox02 .boxFlex .image {
	width: 100%;
	max-width: 475px;
	transform: translateY(-19px);
	-webkit-transform: translateY(-19px);
	-ms-transform: translateY(-19px);
}

#worries .answerBox02 .boxFlex .conts {
	width: 696px;
}

#worries .answerBox02 .boxFlex .conts p {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.6666;
	letter-spacing: 0.05em;
	text-align: justify;
}

#worries .answerBox02 .boxFlex .conts p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

#worries .answerBox02 .imageTex {
	width: 100%;
	max-width: 949px;
	margin: -58px auto 0;
	transform: translateX(-114px);
	-webkit-transform: translateX(-114px);
	-ms-transform: translateX(-114px);
}

#worries .answerArea .arrow {
	position: relative;
	width: 100%;
	max-width: 199px;
	margin: -48px auto 0;
	z-index: 1;
}

#worries .answerImageArea {
	position: relative;
	display: flex;
	z-index: 1;
}

#worries .answerImageArea .image {
	width: 100%;
	max-width: 909px;
	transform: translate(-45px, -49px);
	-webkit-transform: translate(-45px, -49px);
	-ms-transform: translate(-45px, -49px);
}

#worries .answerImageArea .texObj {
	width: 100%;
	max-width: 403px;
	position: absolute;
	top: 39%;
	right: -177px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

/*----------------------------------------------------
 #point
----------------------------------------------------*/

#point {
	position: relative;
	padding: 17px 0 5px 0;
	z-index: 1;
}

#point .head {
	margin-bottom: 63px;
}

#point .head h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#point .head h2 small {
	font-size: 58.07px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 17px;
}

#point .head h2 b {
	font-size: 58.07px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #ef6132;
	padding: 0 0 18px;
	background: url('../img/pointTitleBg.png') no-repeat;
	background-size: 100% auto;
	background-position: center 46px;
	text-align: center;
}

#point .pointBox01 {
	position: relative;
	background: #fff7eb;
	margin-bottom: 43px;
	padding: 0 0 64px;
}

#point .pointBox01 .headFlex {
	position: relative;
	display: flex;
	margin-bottom: 23px;
}

#point .pointBox01 .headFlex .boxHead {
	width: 100%;
	max-width: 925px;
	margin: -46px 0 0 0;
	transform: translateX(40px);
	-webkit-transform: translateX(40px);
	-ms-transform: translateX(40px);
}

#point .pointBox01 .headFlex .boxImage {
	position: absolute;
	right: 120px;
	top: -19px;
	width: 100%;
	max-width: 525px;
}

#point .pointBox01 .conts {
	padding: 0 235px 0 236px;
}

#point .pointBox01 .conts p {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: 0.05em;
	text-align: justify;
}

#point .pointBox01 .conts p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

#point .pointBox02 {
	position: relative;
	background: #fff7eb;
	margin-bottom: 41px;
	padding: 0 0 73px;
}

#point .pointBox02 .headFlex {
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	margin-bottom: 26px;
}

#point .pointBox02 .headFlex .boxHead {
	width: 100%;
	max-width: 913px;
	margin: -51px 0 0 0;
	transform: translateX(62px);
	-webkit-transform: translateX(62px);
	-ms-transform: translateX(62px);
}

#point .pointBox02 .headFlex .boxImage {
	position: absolute;
	left: 158px;
	top: -19px;
	width: 100%;
	max-width: 525px;
}

#point .pointBox02 .conts {
	padding: 0 235px 0 236px;
}

#point .pointBox02 .conts p {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: 0.05em;
	text-align: justify;
}

#point .pointBox02 .conts p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

#point .pointBox03 {
	position: relative;
	background: #fff7eb;
	padding: 0 0 52px;
}

#point .pointBox03 .headFlex {
	position: relative;
	display: flex;
	margin-bottom: 25px;
}

#point .pointBox03 .headFlex .boxHead {
	width: 100%;
	max-width: 925px;
	margin: -51px 0 0 0;
	transform: translateX(61px);
	-webkit-transform: translateX(61px);
	-ms-transform: translateX(61px);
}

#point .pointBox03 .headFlex .boxImage {
	position: absolute;
	right: 97px;
	top: -19px;
	width: 100%;
	max-width: 525px;
}

#point .pointBox03 .conts {
	padding: 0 219px 0 257px;
}

#point .pointBox03 .conts p {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: 0.05em;
	text-align: justify;
}

#point .pointBox03 .conts p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

/*----------------------------------------------------
 #component
----------------------------------------------------*/

#component {
	position: relative;
	padding: 54px 0 5px 0;
}

#component .inner {
	position: relative;
	z-index: 1;
}

#component .head {
	margin-bottom: 16px;
}

#component .head h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#component .head h2 b {
	position: relative;
	font-size: 58.07px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 17px;
}

#component .head h2 small {
	font-size: 58.07px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #ef6132;
	margin-bottom: -6px;
	padding: 0 0 18px;
	background: url('../img/componentTitleBg.png') no-repeat;
	background-size: 100% auto;
	background-position: center 46px;
	text-align: center;
}

#component .head h2 b span {
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.07em;
	position: absolute;
	right: -139px;
	bottom: 2px;
}

#component .componentList {
	width: 100%;
	max-width: 1103px;
	margin: 0 auto 45px;
}

#component .componentList .image {
	margin-bottom: 20px;
}

#component .componentList p {
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.11em;
	text-align: right;
}

#component .componentImage {
	width: 100%;
	max-width: 1125px;
	margin: 0 auto 0;
	transform: translateX(20px);
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
}

#component .bg {
	position: absolute;
	width: 100%;
	height: 1654px;
	left: 0;
	top: -28px;
	background: url('../img/componentBg.png') center bottom no-repeat;
	background-size: auto 100%;
}

/*----------------------------------------------------
 #food
----------------------------------------------------*/

#food {
	position: relative;
	padding: 108px 0 0 0;
}

#food .inner {
	position: relative;
	z-index: 1;
}

#food .head {
	margin-bottom: -8px;
}

#food .head h2 {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#food .head h2 small {
	width: 100%;
	max-width: 719px;
	margin-bottom: 24px;
	transform: translateX(-37px);
	-webkit-transform: translateX(-37px);
	-ms-transform: translateX(-37px);
}

#food .head h2 b {
	font-size: 29.49px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.07em;
	text-align: center;
	transform: translateX(10px);
	-webkit-transform: translateX(10px);
	-ms-transform: translateX(10px);
}

/*----------------------------------------------------
 #drink
----------------------------------------------------*/

#drink {
	position: relative;
	padding: 0 0 37px 0;
}

#drink .inner {
	position: relative;
	z-index: 1;
}

#drink .head {
	margin-bottom: -8px;
}

#drink .head h2 {
	width: 100%;
	max-width: 659px;
	margin: -18px auto 20px;
}

#drink .drinkList {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 23px;
}

#drink .drinkConts {
	width: calc(100% + 171px);
	margin: 0 0 0 -89px;
}

#drink .drinkConts .image {
	margin-bottom: -132px;
}

#drink .drinkFlex {
	display: flex;
	justify-content: space-between;
	width: 789px;
	margin: 0 auto 0;
}

#drink .drinkFlex .left {
	width: 364px;
}

#drink .drinkFlex .left p {
	font-size: 24px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.05em;
	text-align: justify;
}

#drink .drinkFlex .left p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

#drink .drinkFlex .right {
	width: 355px;
}

#drink .drinkFlex .right p {
	font-size: 24px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.05em;
	text-align: justify;
}

#drink .drinkFlex .right p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

/*----------------------------------------------------
 #thoughts
----------------------------------------------------*/

#thoughts {
	position: relative;
	padding: 48px 0 5px 0;
}

#thoughts .inner {
	position: relative;
	z-index: 1;
}

#thoughts .head {
	margin-bottom: 44px;
}

#thoughts .head h2 {
	width: 100%;
	max-width: 1027px;
	margin: 0 auto -46px;
	transform: translateX(-15px);
	-webkit-transform: translateX(-15px);
	-ms-transform: translateX(-15px);
}

#thoughts .head p {
	font-size: 10px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.11em;
	text-align: center;
	color: #707070;
}

#thoughts .bg {
	position: absolute;
	width: 100%;
	height: 1514px;
	left: 0;
	top: 0;
	background: url('../img/thoughtsBg.png') center top no-repeat;
	background-size: auto 100%;
}

#thoughts .thoughtsFlex01 {
	position: relative;
	display: flex;
	justify-content: right;
	margin-bottom: 26px;
}

#thoughts .thoughtsFlex01 .image {
	width: 100%;
	max-width: 771px;
	position: absolute;
	left: 0;
	top: 0;
}

#thoughts .thoughtsFlex01 .boxList {
	padding: 67px 0 0 0;
	width: 817px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-end;
	transform: translateX(67px);
	-webkit-transform: translateX(67px);
	-ms-transform: translateX(67px);
}

#thoughts .thoughtsFlex01 .boxList .box {
	background: #fff;
	border: 6px solid #9cd3f9;
	box-shadow: 0 2px 3px rgba(136, 137, 137, 0.4);
}

#thoughts .thoughtsFlex01 .boxList .box01 {
	width: 380px;
	padding: 9px 0 25px 0;
}

#thoughts .thoughtsFlex01 .boxList .box01 h3 {
	width: 100%;
	max-width: 302px;
	margin: 0 0 4px 0;
	padding: 0 0 0 30px;
}

#thoughts .thoughtsFlex01 .boxList .box01 p {
	font-size: 17.5px;
	font-weight: 500;
	line-height: 1.7333;
	letter-spacing: 0.05em;
	text-align: justify;
	padding: 0 33px 0 35px;
}

#thoughts .thoughtsFlex01 .boxList .box01 p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

#thoughts .thoughtsFlex01 .boxList .box02 {
	width: 415px;
	padding: 9px 0 17px 0;
}

#thoughts .thoughtsFlex01 .boxList .box02 h3 {
	width: 100%;
	max-width: 302px;
	margin: 0 0 4px 0;
	padding: 0 0 0 30px;
}

#thoughts .thoughtsFlex01 .boxList .box02 p {
	font-size: 17.5px;
	font-weight: 500;
	line-height: 1.7333;
	letter-spacing: 0.05em;
	text-align: justify;
	padding: 0 33px 0 35px;
}

#thoughts .thoughtsFlex01 .boxList .box02 p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

#thoughts .thoughtsFlex01 .boxList .box03 {
	width: 382px;
	margin: 28px 0 34px 157px;
	padding: 9px 0 25px 0;
}

#thoughts .thoughtsFlex01 .boxList .box03 h3 {
	width: 100%;
	max-width: 302px;
	margin: 0 0 4px 0;
	padding: 0 0 0 30px;
}

#thoughts .thoughtsFlex01 .boxList .box03 p {
	font-size: 17.5px;
	font-weight: 500;
	line-height: 1.7333;
	letter-spacing: 0.05em;
	text-align: justify;
	padding: 0 33px 0 35px;
}

#thoughts .thoughtsFlex01 .boxList .box03 p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

#thoughts .thoughtsFlex01 .boxList .addTex {
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.11em;
	margin: 0 0 0 219px;
}

#thoughts .thoughtsFlex02 {
	position: relative;
	display: flex;
	justify-content: right;
}

#thoughts .thoughtsFlex02 .image {
	width: 100%;
	max-width: 800px;
	position: absolute;
	left: -21px;
	top: 0;
}

#thoughts .thoughtsFlex02 .boxList {
	padding: 51px 0 0 0;
	width: 778px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-end;
	transform: translateX(32px);
	-webkit-transform: translateX(32px);
	-ms-transform: translateX(32px);
}

#thoughts .thoughtsFlex02 .boxList .box {
	background: #fff;
	border: 6px solid #9cd3f9;
	box-shadow: 0 2px 3px rgba(136, 137, 137, 0.4);
}

#thoughts .thoughtsFlex02 .boxList .box01 {
	width: 380px;
	padding: 11px 0 27px 0;
}

#thoughts .thoughtsFlex02 .boxList .box01 h3 {
	width: 100%;
	max-width: 288px;
	margin: 0 0 4px 0;
	padding: 0 0 0 30px;
}

#thoughts .thoughtsFlex02 .boxList .box01 p {
	font-size: 17.5px;
	font-weight: 500;
	line-height: 1.7333;
	letter-spacing: 0.05em;
	text-align: justify;
	padding: 0 26px 0 28px;
}

#thoughts .thoughtsFlex02 .boxList .box01 p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

#thoughts .thoughtsFlex02 .boxList .box02 {
	width: 380px;
	padding: 14px 0 25px 0;
}

#thoughts .thoughtsFlex02 .boxList .box02 h3 {
	width: 100%;
	max-width: 316px;
	margin: 0 0 4px 0;
	padding: 0 0 0 30px;
}

#thoughts .thoughtsFlex02 .boxList .box02 p {
	font-size: 17.5px;
	font-weight: 500;
	line-height: 1.7333;
	letter-spacing: 0.05em;
	text-align: justify;
	padding: 0 33px 0 35px;
}

#thoughts .thoughtsFlex02 .boxList .box02 p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

#thoughts .thoughtsFlex02 .boxList .box03 {
	width: 382px;
	margin: 28px 0 41px 143px;
	padding: 11px 0 19px 0;
}

#thoughts .thoughtsFlex02 .boxList .box03 h3 {
	width: 100%;
	max-width: 302px;
	margin: 0 0 4px 0;
	padding: 0 0 0 30px;
}

#thoughts .thoughtsFlex02 .boxList .box03 p {
	font-size: 17.5px;
	font-weight: 500;
	line-height: 1.7333;
	letter-spacing: 0.05em;
	text-align: justify;
	padding: 0 42px 0 35px;
}

#thoughts .thoughtsFlex02 .boxList .box03 p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

#thoughts .thoughtsFlex02 .boxList .addTex {
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.11em;
	margin: 0 0 0 219px;
}


/*----------------------------------------------------
 #management
----------------------------------------------------*/

#management {
	position: relative;
	padding: 124px 0 37px 0;
}

#management .inner {
	position: relative;
	z-index: 1;
}

#management .head {
	margin-bottom: 89px;
}

#management .head h2 {
	width: 100%;
	max-width: 760px;
	margin: 0 auto -46px;
}

#management .managementFlex {
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-bottom: -61px;
	padding: 0 136px 0 136px;
}

#management .managementFlex .image {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 514px;
	margin-top: 5px;
}

#management .managementFlex .conts {
	width: 585px;
}

#management .managementFlex .conts p {
	position: relative;
	z-index: 1;
	font-size: 24px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.05em;
	text-align: justify;
	margin-bottom: 14px;
}

#management .managementFlex .conts p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

#management .managementFlex .conts .oraclImg {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 492px;
	margin: 0 auto 0;
	transform: translateX(36px);
	-webkit-transform: translateX(36px);
	-ms-transform: translateX(36px);
}

#management .managementFlex .conts .contsBg {
	width: 100%;
	max-width: 813px;
	position: absolute;
	left: 43px;
	top: -34px;
}

#management .supportFlex {
	position: relative;
	display: flex;
	padding: 0 0 0 115px;
	z-index: 1;
}

#management .supportFlex .conts {
	position: absolute;
	right: 102px;
	bottom: 28px;
	width: 571px;
}

#management .supportFlex .conts p {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.636;
	letter-spacing: 0.05em;
	text-align: justify;
}

#management .supportFlex .image {
	width: 100%;
	max-width: 1205px;
}

#management .buttonsArea {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	width: 100%;
	max-width: 1300px;
	margin: -7px auto 0;
	padding: 40px 0 30px;
}

#management .buttonsArea .telBt {
	width: 100%;
	max-width: 506px;
	margin: 0 19px;
}

#management .buttonsArea .contactBt {
	width: 100%;
	max-width: 506px;
	margin: 0 5px;
}

/*----------------------------------------------------
 #shop
----------------------------------------------------*/

#shop {
	position: relative;
	z-index: 1;
	padding: 75px 0 0 0;
}

#shop .bg {
	position: absolute;
	width: 100%;
	height: 802px;
	left: 0;
	top: 0;
	background: url('../img/shopBg.png') center top no-repeat;
	background-size: auto 100%;
}

#shop .inner {
	position: relative;
	z-index: 1;
}

#shop .head {
	margin-bottom: 42px;
}

#shop .head h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#shop .head h2 b {
	width: 100%;
	max-width: 716px;
	margin: 0 auto 13px;
}

#shop .head h2 small {
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.02em;
	text-align: center;
}

#shop .shopFlex {
	display: flex;
	justify-content: space-between;
	padding: 0 135px 0 83px;
}

#shop .shopFlex .image {
	width: 100%;
	max-width: 654px;
}

#shop .shopFlex .conts {
	width: 534px;
	padding: 48px 0 0 0;
}

#shop .shopFlex .conts p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.9;
	letter-spacing: 0.05em;
	text-align: justify;
}

#shop .shopFlex .conts p span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

/*----------------------------------------------------
 #howto
----------------------------------------------------*/

#howto {
	position: relative;
	padding: 75px 0 0 0;
}

#howto .head {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: -153px 0 0 0;
	transform: translateX(-81px);
	-webkit-transform: translateX(-81px);
	-ms-transform: translateX(-81px);
}

#howto .head h2 {
	width: 100%;
	max-width: 1065px;
	margin-bottom: -112px;
}

#howto .head p.tex {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-align: justify;
	margin-bottom: 19px;
	padding: 0 0 0 356px;
}

#howto .head p.tex span {
	position: relative;
	padding: 0 0 4px;
	background: linear-gradient(transparent 50%, #fef681 50%);
}

#howto .head p.addTex {
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.05em;
	text-align: center;
	padding: 0 0 0 278px;
}

/*----------------------------------------------------
 #faq
----------------------------------------------------*/

#faq {
	position: relative;
	padding: 44px 0 40px 0;
}

#faq .inner {
	max-width: 940px;
}

#faq .leftBg {
	position: absolute;
	width: 100%;
	max-width: 946px;
	top: 124px;
	left: 0;
}

#faq .rightBg {
	position: absolute;
	width: 100%;
	max-width: 939px;
	right: 0;
	bottom: -26px;
}

#faq .head {
	margin: 0 0 20px;
}

#faq .head h2 {
	width: 100%;
	max-width: 637px;
	margin: 0 auto 0;
}

#faq .faqBox {
	border-top: 1px solid #3e97d4;
	padding: 15px 18px 23px 24px;
}

#faq .faqBox.last {
	border-bottom: 1px solid #3e97d4;
}

#faq .faqBox dl dt {
	display: flex;
	margin: 0 9px 4px 0;
}

#faq .faqBox dl dt .icon {
	width: 100%;
	max-width: 49px;
	margin: 0 9px 0 0;
}

#faq .faqBox dl dt .tex {
	width: calc(100% - 58px);
	font-size: 21px;
	font-weight: 500;
	line-height: 1.527;
	letter-spacing: 0.05em;
	padding: 10px 0 0 0;
}

#faq .faqBox dl dd {
	display: flex;
	margin: 0 9px 4px 0;
}

#faq .faqBox dl dd .icon {
	width: 100%;
	max-width: 49px;
	margin: 0 9px 0 0;
}

#faq .faqBox dl dd .tex {
	width: calc(100% - 58px);
	font-size: 21px;
	font-weight: 500;
	line-height: 1.527;
	letter-spacing: 0.05em;
	text-align: justify;
	padding: 7px 0 0 0;
}

/*----------------------------------------------------
 #nutrition
----------------------------------------------------*/

#nutrition {
	position: relative;
	padding: 80px 0 0 0;
}

#nutrition .inner {
	max-width: 1011px;
	position: relative;
	z-index: 1;
}

#nutrition .bg {
	position: absolute;
	width: 100%;
	height: 564px;
	top: 18px;
	left: 0;
	background: url('../img/nutritionBg.png') center top no-repeat;
	background-size: auto 100%;
}

#nutrition .head {
	position: relative;
	margin: 0 0 32px;
}

#nutrition .head h2 {
	width: 100%;
	max-width: 615px;
	margin: 0 auto 0;
}

#nutrition .head p {
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.07em;
	white-space: nowrap;
	margin: 0 0 0 129px;
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

#nutrition .tableTop {
	margin-bottom: 19px;
}

#nutrition .tableTop table {
	width: 100%;
	border: 1px solid #d0c74a;
	box-shadow: 0 2px 3px rgba(136, 137, 137, 0.4);
	margin-bottom: 13px;
}

#nutrition .tableTop table th {
	background: #fdfaca;
	width: calc(100% / 7);
	border-right: 1px solid #d0c74a;
	vertical-align: middle;
	box-sizing: border-box;
	font-size: 19.27px;
	font-weight: 700;
	line-height: 1.142;
	letter-spacing: 0.05em;
	text-align: center;
	padding: 15px 0 15px;
}

#nutrition .tableTop table th.w {
	font-size: 16.86px;
}

#nutrition .tableTop table td {
	background: #fff;
	width: calc(100% / 7);
	border-right: 1px solid #d0c74a;
	vertical-align: middle;
	box-sizing: border-box;
	font-size: 19.27px;
	font-weight: 700;
	line-height: 1.142;
	letter-spacing: 0.15em;
	text-align: center;
	padding: 20px 0 21px;
}

#nutrition .tableTop p {
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: right;
}

#nutrition .tableBottom table {
	width: 100%;
	border: 1px solid #d0c74a;
	box-shadow: 0 2px 3px rgba(136, 137, 137, 0.4);
	margin-bottom: 13px;
}

#nutrition .tableBottom table th {
	background: #fdfaca;
	width: calc(100% / 7);
	border-right: 1px solid #d0c74a;
	vertical-align: middle;
	box-sizing: border-box;
	font-size: 19.27px;
	font-weight: 700;
	line-height: 1.142;
	letter-spacing: 0.05em;
	text-align: center;
	padding: 15px 0 15px;
}

#nutrition .tableBottom table th.w {
	font-size: 16.86px;
}

#nutrition .tableBottom table td {
	background: #fff;
	width: calc(100% / 7);
	border-right: 1px solid #d0c74a;
	vertical-align: middle;
	box-sizing: border-box;
	font-size: 19.27px;
	font-weight: 700;
	line-height: 1.142;
	letter-spacing: 0.15em;
	text-align: center;
	padding: 20px 0 21px;
}

/*----------------------------------------------------
 #item
----------------------------------------------------*/

#item {
	position: relative;
	padding: 63px 0 43px 0;
}

#item .inner {
	position: relative;
	z-index: 1;
}

#item .head {
	position: relative;
	margin: 0 0 -19px;
}

#item .head h2 {
	width: 100%;
	max-width: 644px;
	margin: 0 auto 0;
}

#item .itemTable {
	margin-bottom: 38px;
}

#item .itemTable table {
	width: 100%;
	max-width: 1101px;
	margin: 0 auto 0;
	border: 1px solid #8a8888;
	margin-bottom: 13px;
}

#item .itemTable table th {
	background: #fff;
	border-right: 1px solid #8a8888;
	border-bottom: 1px solid #8a8888;
	vertical-align: middle;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.05em;
	text-align: center;
	padding: 0;
	width: 161px;
}

#item .itemTable table td {
	background: #fff;
	border-bottom: 1px solid #8a8888;
	vertical-align: middle;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.05em;
	text-align: justify;
	padding: 20px 42px 20px 30px;
}

/*----------------------------------------------------
 Hover
----------------------------------------------------*/

@media screen and (min-width: 769px) {
	.pc_hidden {
		display: none !important;
	}

	#header .headerFlex .button a:hover span:first-child {
		opacity: 0;
	}

	#floating .button a:hover span:first-child {
		opacity: 0;
	}

	#goTop a:hover {
		opacity: 0.7;
	}

	#footer nav ul li a:hover {
		opacity: 0.7;
	}

	#conversion .cvBox .boxFlex .conts .button a:hover span:first-child {
		opacity: 0;
	}

	#management .buttonsArea .telBt a:hover {
		opacity: 0.7;
	}

	#management .buttonsArea .contactBt a:hover {
		opacity: 0.7;
	}

}

/*----------------------------------------------------
 PC
----------------------------------------------------*/
@media screen and (min-width: 769px) and (max-width: 1440px) {

	/*----------------------------------------------------
	elements
	----------------------------------------------------*/

	body {
		font-size: 1.111vw;
		max-width: 133.333vw;
		padding: 0 0 8.889vw;
	}

	/*----------------------------------------------------
	fadeIn
	----------------------------------------------------*/

	.fadeIn {
		transform: translate3d(0, -0.694vw, 0);
		transition: 1s;
		opacity: 0;
	}

	/*----------------------------------------------------
	inner
	----------------------------------------------------*/
	.inner {
		max-width: 100vw;
	}

	/*----------------------------------------------------
	#header
	----------------------------------------------------*/

	#header {
		max-width: 133.333vw;
		padding: 1.042vw 0.556vw 0 0.069vw;
	}

	#header .headerFlex .logo .tex {
		font-size: 0.833vw;
		margin-bottom: 0.347vw;
	}

	#header .headerFlex .logo .icon {
		max-width: 16.875vw;
	}

	#header .headerFlex .button {
		max-width: 24.028vw;
		margin-top: 0.903vw;
	}

	/*----------------------------------------------------
	#goTop
	----------------------------------------------------*/

	#goTop {
		right: 2.708vw;
		bottom: 1.806vw;
		max-width: 5.139vw;
	}

	/*----------------------------------------------------
	#footer
	----------------------------------------------------*/

	#footer {
		padding: 1.597vw 0 2.014vw 0;
	}

	#footer:before {
		height: 14.333vw; /* height: 33.333vw; */
	}

	#footer .logo {
		max-width: 16.875vw;
		margin: 0 auto 2.5vw;
	}

	#footer nav {
		margin-bottom: 3.889vw;
	}

	#footer nav ul li {
		margin: 0 1.597vw;
	}

	#footer nav ul li a .icon {
		max-width: 0.347vw;
		line-height: 0.625vw;
		transform: translate(0.486vw, 0.069vw);
		-webkit-transform: translate(0.486vw, 0.069vw);
		-ms-transform: translate(0.486vw, 0.069vw);
	}

	#footer nav ul li a .tex {
		font-size: 0.972vw;
	}

	#footer .copy {
		font-size: 0.972vw;
	}

	/*----------------------------------------------------
	#floating
	----------------------------------------------------*/

	#floating {
		padding: 0.764vw 0 0.208vw 0;
	}

	#floating .inner {
		max-width: 69.444vw;
	}

	#floating .conts {
		transform: translateX(-0.972vw);
		-webkit-transform: translateX(-0.972vw);
		-ms-transform: translateX(-0.972vw);
	}

	#floating .conts .borderBox {
		border: 0.069vw solid #fff;
		margin-bottom: 0.486vw;
		padding: 0.694vw 0 0.625vw;
	}

	#floating .conts .borderBox p {
		font-size: 1.175vw;
	}

	#floating .conts .itemName p {
		font-size: 3.11vw;
	}

	#floating .price {
		max-width: 24.722vw;
		transform: translate(-0.347vw, -0.347vw);
		-webkit-transform: translate(-0.347vw, -0.347vw);
		-ms-transform: translate(-0.347vw, -0.347vw);
	}

	#floating .button {
		max-width: 25.347vw;
		height: 6.389vw;
		transform: translate(0.556vw, -0.139vw);
		-webkit-transform: translate(0.556vw, -0.139vw);
		-ms-transform: translate(0.556vw, -0.139vw);
	}

	/*----------------------------------------------------
	#visual
	----------------------------------------------------*/

	#visual {
		padding: 2.764vw 0 0 0;
	}

	#visual .inner {
		max-width: 100vw;
	}

	#visual .bg {
		height: 62.639vw;
	}


	/*----------------------------------------------------
	#history
	----------------------------------------------------*/

	#history {
		padding: 7.014vw 0 0.764vw 0;
	}

	#history .historyFlex {
		margin-bottom: -0.278vw;
		padding: 0 7.014vw 0 8.194vw;
	}

	#history .historyFlex .conts {
		width: 36.181vw;
		padding: 9.583vw 0 0 0.139vw;
	}

	#history .historyFlex .conts h2 {
		width: 55vw;
	}

	#history .historyFlex .conts p {
		font-size: 1.389vw;
	}

	#history .historyFlex .conts p span {
		padding: 0 0 0.278vw;
	}

	#history .historyFlex .imageArea {
		max-width: 43.139vw;
		margin-top: 5.694vw;
	}

	#history .historyFlex .imageArea .imageObj {
		right: -23.611vw;
		top: -9.097vw;
		width: 100%;
		max-width: 33.125vw;
	}

	#history .historyConts h3 {
		margin-bottom: 1.389vw;
	}

	#history .historyConts h3 small {
		max-width: 20.278vw;
		margin: -3.194vw 0 0 -38.681vw;
	}

	#history .historyConts h3 b {
		font-size: 2.778vw;
		transform: translateX(0.139vw);
		-webkit-transform: translateX(0.139vw);
		-ms-transform: translateX(0.139vw);
	}

	#history .historyConts .image {
		max-width: 87.014vw;
	}

	/*----------------------------------------------------
	#conversion
	----------------------------------------------------*/

	#conversion {
		padding: 5.972vw 0 0 0;
	}

	#conversion .bg {
		height: 61.389vw;
	}

	#conversion .head {
		margin-bottom: 3.125vw;
	}

	#conversion .head .bgFlex {
		margin-bottom: 1.181vw;
	}

	#conversion .head .bgFlex .leftBox {
		max-width: 23.056vw;
		margin: 0 0.347vw;
		padding: 0.764vw 0 0.625vw;
	}

	#conversion .head .bgFlex .leftBox .obj {
		max-width: 10.694vw;
		top: -3.056vw;
	}

	#conversion .head .bgFlex .leftBox .tex {
		font-size: 1.875vw;
	}

	#conversion .head .bgFlex .righttBox {
		max-width: 23.056vw;
		margin: 0 0.417vw;
		padding: 0.764vw 0 0.625vw;
	}

	#conversion .head .bgFlex .righttBox .tex {
		font-size: 1.875vw;
	}

	#conversion .head h2 .tex {
		font-size: 3.472vw;
		padding: 0 0 0.625vw;
	}

	#conversion .head h2 .obj {
		max-width: 8.681vw;
		right: 10.347vw;
		top: -8.333vw;
	}

	#conversion .cvBox .enTex {
		max-width: 27.153vw;
		left: -7.139vw;
		top: -6.292vw;
	}

	#conversion .cvBox .badge {
		max-width: 19.792vw;
		right: -5.264vw;
		top: -7.153vw;
	}

	#conversion .cvBox .boxFlex {
		padding: 1.458vw 0 1.736vw 3.528vw;
	}

	#conversion .cvBox .boxFlex .image {
		max-width: 43.542vw;
	}

	#conversion .cvBox .boxFlex .conts {
		width: 47.361vw;
	}

	#conversion .cvBox .boxFlex .conts .whiteFlex {
		margin-bottom: 1.111vw;
		padding: 0.625vw 0 0 0.417vw;
	}

	#conversion .cvBox .boxFlex .conts .whiteFlex .leftBox {
		width: 9.823vw;
		margin-right: 0.903vw;
		padding: 0.417vw 0 0.417vw;
		box-shadow: 0 0.139vw 0.208vw rgba(50, 89, 136, 0.4);
	}

	#conversion .cvBox .boxFlex .conts .whiteFlex .leftBox .tex {
		font-size: 1.258vw;
	}

	#conversion .cvBox .boxFlex .conts .whiteFlex .righttBox {
		width: 14.697vw;
		padding: 0.417vw 0 0.417vw;
		box-shadow: 0 0.139vw 0.208vw rgba(50, 89, 136, 0.4);
	}

	#conversion .cvBox .boxFlex .conts .whiteFlex .righttBox .tex {
		font-size: 1.258vw;
	}

	#conversion .cvBox .boxFlex .conts .boxHead h3 {
		margin-bottom: 1.736vw;
		padding: 0 0 0 0.347vw;
	}

	#conversion .cvBox .boxFlex .conts .boxHead h3 small {
		font-size: 2.5vw;
		margin-bottom: 0.625vw;
	}

	#conversion .cvBox .boxFlex .conts .boxHead h3 b {
		font-size: 3.65vw;
		transform: translateX(-0.139vw);
		-webkit-transform: translateX(-0.139vw);
		-ms-transform: translateX(-0.139vw);
	}

	#conversion .cvBox .boxFlex .conts .boxHead p {
		font-size: 1.472vw;
		padding: 0 0 0 0.417vw;
	}

	#conversion .cvBox .boxFlex .conts .boxPrice {
		max-width: 37.292vw;
		margin: 0 0 1.181vw 0.417vw;
	}

	#conversion .cvBox .boxFlex .conts .button {
		max-width: 38.819vw;
		height: 8.542vw;
	}

	#conversion .cvBox .boxFlex .conts ul {
		margin: -0.278vw 0 0 0;
		padding: 0 0 0 1.111vw;
	}

	#conversion .cvBox .boxFlex .conts ul li {
		font-size: 0.833vw;
	}

	/*----------------------------------------------------
	#merit
	----------------------------------------------------*/

	#merit {
		padding: 5.972vw 0 0.833vw 0;
	}

	#merit .leftBg {
		max-width: 42.569vw;
		top: 8.611vw;
	}

	#merit .rightBg {
		max-width: 42.569vw;
		bottom: -1.806vw;
	}

	#merit .inner {
		max-width: 87.153vw;
	}

	#merit .head h2 {
		max-width: 49.375vw;
		transform: translateY(-1.181vw);
		-webkit-transform: translateY(-1.181vw);
		-ms-transform: translateY(-1.181vw);
	}

	#merit .meritList .box {
		max-width: 43.472vw;
		margin-bottom: 0.139vw;
	}

	/*----------------------------------------------------
	#worries
	----------------------------------------------------*/

	#worries {
		margin-bottom: -2.708vw;
		padding: 2.778vw 0 0.347vw 0;
	}

	#worries .bgTop {
		height: 58.611vw;
	}

	#worries .bgBottom {
		height: 46.806vw;
	}

	#worries .head h2 {
		max-width: 64.444vw;
	}

	#worries .fukidashiArea {
		max-width: 67.986vw;
		margin: 0 auto -0.347vw;
	}

	#worries .fukidashiArea .bg {
		max-width: 67.986vw;
		transform: translate(2.986vw, -1.319vw);
		-webkit-transform: translate(2.986vw, -1.319vw);
		-ms-transform: translate(2.986vw, -1.319vw);
	}

	#worries .fukidashiArea ul li {
		font-size: 1.944vw;
	}

	#worries .fukidashiArea ul li:nth-child(1) {
		left: 8.472vw;
		top: 4.861vw;
	}

	#worries .fukidashiArea ul li:nth-child(2) {
		right: 6.667vw;
		top: 2.431vw;
	}

	#worries .fukidashiArea ul li:nth-child(3) {
		left: 14.653vw;
		bottom: 7.569vw;
	}

	#worries .fukidashiArea ul li:nth-child(4) {
		right: 2.222vw;
		bottom: 10.417vw;
	}

	#worries .arrowHead {
		max-width: 64.514vw;
	}

	#worries .arrowHead .bgBox {
		background-size: 100% 7.5vw;
		padding: 2.014vw 0 2.431vw;
	}

	#worries .arrowHead .bgBox p {
		font-size: 2.772vw;
	}

	#worries .arrowHead .arrow {
		max-width: 13.819vw;
		margin: -6.458vw auto 0;
	}

	#worries .answerArea {
		padding: 3.75vw 0 0 0;
	}

	#worries .answerBox01 {
		margin-bottom: 4.653vw;
		padding: 0 0 5.486vw 0;
	}

	#worries .answerBox01 .enTex {
		max-width: 18.056vw;
		left: -2.917vw;
		top: -1.806vw;
	}

	#worries .answerBox01 .boxHead {
		max-width: 65.764vw;
	}

	#worries .answerBox01 .boxHead h3 {
		transform: translateY(-2.431vw);
		-webkit-transform: translateY(-2.431vw);
		-ms-transform: translateY(-2.431vw);
	}

	#worries .answerBox01 .boxFlex {
		padding: 0 4.583vw 0 13.333vw;
	}

	#worries .answerBox01 .boxFlex .image {
		max-width: 32.431vw;
		transform: translateY(-1.528vw);
		-webkit-transform: translateY(-1.528vw);
		-ms-transform: translateY(-1.528vw);
	}

	#worries .answerBox01 .boxFlex .conts {
		width: 48.333vw;
	}

	#worries .answerBox01 .boxFlex .conts p {
		font-size: 1.667vw;
	}

	#worries .answerBox01 .boxFlex .conts p span {
		padding: 0 0 0.278vw;
	}

	#worries .answerBox01 .imageTex {
		max-width: 63.194vw;
		margin: -6.319vw auto 0;
		transform: translateX(-0.972vw);
		-webkit-transform: translateX(-0.972vw);
		-ms-transform: translateX(-0.972vw);
	}

	#worries .answerBox02 {
		padding: 0 0 3.75vw 0;
	}

	#worries .answerBox02 .enTex {
		max-width: 18.056vw;
		left: -2.917vw;
		top: -1.806vw;
	}

	#worries .answerBox02 .boxHead {
		max-width: 65.764vw;
	}

	#worries .answerBox02 .boxHead h3 {
		transform: translateY(-2.431vw);
		-webkit-transform: translateY(-2.431vw);
		-ms-transform: translateY(-2.431vw);
	}

	#worries .answerBox02 .boxFlex {
		padding: 0 8.819vw 0 7.083vw;
	}

	#worries .answerBox02 .boxFlex .image {
		max-width: 32.986vw;
		transform: translateY(-1.319vw);
		-webkit-transform: translateY(-1.319vw);
		-ms-transform: translateY(-1.319vw);
	}

	#worries .answerBox02 .boxFlex .conts {
		width: 48.333vw;
	}

	#worries .answerBox02 .boxFlex .conts p {
		font-size: 1.667vw;
	}

	#worries .answerBox02 .boxFlex .conts p span {
		padding: 0 0 0.278vw;
	}

	#worries .answerBox02 .imageTex {
		max-width: 65.903vw;
		margin: -4.028vw auto 0;
		transform: translateX(-7.917vw);
		-webkit-transform: translateX(-7.917vw);
		-ms-transform: translateX(-7.917vw);
	}

	#worries .answerArea .arrow {
		max-width: 13.819vw;
		margin: -3.333vw auto 0;
	}

	#worries .answerImageArea .image {
		max-width: 63.125vw;
		transform: translate(-3.125vw, -3.403vw);
		-webkit-transform: translate(-3.125vw, -3.403vw);
		-ms-transform: translate(-3.125vw, -3.403vw);
	}

	#worries .answerImageArea .texObj {
		max-width: 27.986vw;
		right: -7.292vw;
		top: 47%;
	}

	/*----------------------------------------------------
	#point
	----------------------------------------------------*/

	#point {
		padding: 1.181vw 0 0.347vw 0;
	}

	#point .head {
		margin-bottom: 4.375vw;
	}

	#point .head h2 small {
		font-size: 4.033vw;
		margin-bottom: 1.181vw;
	}

	#point .head h2 b {
		font-size: 4.033vw;
		padding: 0 0 1.25vw;
		background-position: center 3.194vw;
	}

	#point .pointBox01 {
		margin-bottom: 2.986vw;
		padding: 0 0 4.444vw;
	}

	#point .pointBox01 .headFlex {
		margin-bottom: 1.597vw;
	}

	#point .pointBox01 .headFlex .boxHead {
		max-width: 64.236vw;
		margin: -3.194vw 0 0 0;
		transform: translateX(2.778vw);
		-webkit-transform: translateX(2.778vw);
		-ms-transform: translateX(2.778vw);
	}

	#point .pointBox01 .headFlex .boxImage {
		right: 3.333vw;
		top: -1.319vw;
		max-width: 36.458vw;
	}

	#point .pointBox01 .conts {
		padding: 0 16.319vw 0 16.389vw;
	}

	#point .pointBox01 .conts p {
		font-size: 1.389vw;
	}

	#point .pointBox01 .conts p span {
		padding: 0 0 0.278vw;
	}

	#point .pointBox02 {
		margin-bottom: 2.847vw;
		padding: 0 0 5.069vw;
	}

	#point .pointBox02 .headFlex {
		margin-bottom: 1.806vw;
	}

	#point .pointBox02 .headFlex .boxHead {
		max-width: 63.403vw;
		margin: -3.542vw 0 0 0;
		transform: translateX(4.306vw);
		-webkit-transform: translateX(4.306vw);
		-ms-transform: translateX(4.306vw);
	}

	#point .pointBox02 .headFlex .boxImage {
		left: 8.972vw;
		top: -1.319vw;
		max-width: 36.458vw;
	}

	#point .pointBox02 .conts {
		padding: 0 16.319vw 0 16.389vw;
	}

	#point .pointBox02 .conts p {
		font-size: 1.389vw;
	}

	#point .pointBox02 .conts p span {
		padding: 0 0 0.278vw;
	}

	#point .pointBox03 {
		padding: 0 0 3.611vw;
	}

	#point .pointBox03 .headFlex {
		margin-bottom: 1.736vw;
	}

	#point .pointBox03 .headFlex .boxHead {
		max-width: 64.236vw;
		margin: -3.542vw 0 0 0;
		transform: translateX(4.236vw);
		-webkit-transform: translateX(4.236vw);
		-ms-transform: translateX(4.236vw);
	}

	#point .pointBox03 .headFlex .boxImage {
		right: 3.333vw;
		top: -1.319vw;
		max-width: 36.458vw;
	}

	#point .pointBox03 .conts {
		padding: 0 15.208vw 0 17.847vw;
	}

	#point .pointBox03 .conts p {
		font-size: 1.389vw;
	}

	#point .pointBox03 .conts p span {
		padding: 0 0 0.278vw;
	}

	/*----------------------------------------------------
	#component
	----------------------------------------------------*/

	#component {
		padding: 3.75vw 0 0.347vw 0;
	}

	#component .head {
		margin-bottom: 1.111vw;
	}

	#component .head h2 b {
		font-size: 4.033vw;
		margin-bottom: 1.181vw;
	}

	#component .head h2 small {
		font-size: 4.033vw;
		margin-bottom: -0.417vw;
		padding: 0 0 1.25vw;
		background-position: center 3.194vw;
	}

	#component .head h2 b span {
		font-size: 1.389vw;
		right: -9.653vw;
		bottom: 0.139vw;
	}

	#component .componentList {
		max-width: 76.597vw;
		margin: 0 auto 3.125vw;
	}

	#component .componentList .image {
		margin-bottom: 1.389vw;
	}

	#component .componentList p {
		font-size: 0.833vw;
	}

	#component .componentImage {
		max-width: 78.125vw;
		transform: translateX(1.389vw);
		-webkit-transform: translateX(1.389vw);
		-ms-transform: translateX(1.389vw);
	}

	#component .bg {
		top: -1.944vw;
		height: 114.861vw;
	}

	/*----------------------------------------------------
	#food
	----------------------------------------------------*/

	#food {
		padding: 7.5vw 0 0 0;
	}

	#food .head {
		margin-bottom: -0.556vw;
	}

	#food .head h2 small {
		max-width: 49.931vw;
		margin-bottom: 1.667vw;
		transform: translateX(-2.569vw);
		-webkit-transform: translateX(-2.569vw);
		-ms-transform: translateX(-2.569vw);
	}

	#food .head h2 b {
		font-size: 2.048vw;
		transform: translateX(0.694vw);
		-webkit-transform: translateX(0.694vw);
		-ms-transform: translateX(0.694vw);
	}

	/*----------------------------------------------------
	#drink
	----------------------------------------------------*/

	#drink {
		padding: 0 0 2.569vw 0;
	}

	#drink .head {
		margin-bottom: -0.556vw;
	}

	#drink .head h2 {
		max-width: 45.764vw;
		margin: -1.25vw auto 1.389vw;
	}

	#drink .drinkList {
		max-width: 83.333vw;
		margin: 0 auto 1.597vw;
	}

	#drink .drinkConts {
		width: calc(100% + 11.875vw);
		margin: 0 0 0 -6.181vw;
	}

	#drink .drinkConts .image {
		margin-bottom: -9.167vw;
	}

	#drink .drinkFlex {
		width: 54.792vw;
	}

	#drink .drinkFlex .left {
		width: 25.278vw;
	}

	#drink .drinkFlex .left p {
		font-size: 1.667vw;
	}

	#drink .drinkFlex .left p span {
		padding: 0 0 0.278vw;
	}

	#drink .drinkFlex .right {
		width: 24.653vw;
	}

	#drink .drinkFlex .right p {
		font-size: 1.667vw;
	}

	#drink .drinkFlex .right p span {
		padding: 0 0 0.278vw;
	}

	/*----------------------------------------------------
	#thoughts
	----------------------------------------------------*/

	#thoughts {
		padding: 3.333vw 0 0.347vw 0;
	}

	#thoughts .bg {
		height: 105.139vw;
	}

	#thoughts .head {
		margin-bottom: 3.056vw;
	}

	#thoughts .head h2 {
		max-width: 71.319vw;
		margin: 0 auto -3.194vw;
		transform: translateX(-1.042vw);
		-webkit-transform: translateX(-1.042vw);
		-ms-transform: translateX(-1.042vw);
	}

	#thoughts .head p {
		font-size: 0.694vw;
	}

	#thoughts .thoughtsFlex01 {
		margin-bottom: 1.806vw;
	}

	#thoughts .thoughtsFlex01 .image {
		max-width: 53.542vw;
	}

	#thoughts .thoughtsFlex01 .boxList {
		padding: 4.653vw 0 0 0;
		width: 56.736vw;
		transform: translateX(67px);
		-webkit-transform: translateX(67px);
		-ms-transform: translateX(67px);
	}

	#thoughts .thoughtsFlex01 .boxList .box {
		border: 0.417vw solid #9cd3f9;
		box-shadow: 0 0.139vw 0.208vw rgba(136, 137, 137, 0.4);
	}

	#thoughts .thoughtsFlex01 .boxList .box01 {
		width: 26.389vw;
		padding: 0.625vw 0 1.736vw 0;
	}

	#thoughts .thoughtsFlex01 .boxList .box01 h3 {
		max-width: 20.972vw;
		margin: 0 0 0.278vw 0;
		padding: 0 0 0 2.083vw;
	}

	#thoughts .thoughtsFlex01 .boxList .box01 p {
		font-size: 1.215vw;
		padding: 0 2.292vw 0 2.431vw;
	}

	#thoughts .thoughtsFlex01 .boxList .box01 p span {
		padding: 0 0 0.278vw;
	}

	#thoughts .thoughtsFlex01 .boxList .box02 {
		width: 28.819vw;
		padding: 0.625vw 0 1.181vw 0;
	}

	#thoughts .thoughtsFlex01 .boxList .box02 h3 {
		max-width: 20.972vw;
		margin: 0 0 0.278vw 0;
		padding: 0 0 0 2.083vw;
	}

	#thoughts .thoughtsFlex01 .boxList .box02 p {
		font-size: 1.215vw;
		padding: 0 2.292vw 0 2.431vw;
	}

	#thoughts .thoughtsFlex01 .boxList .box02 p span {
		padding: 0 0 0.278vw;
	}

	#thoughts .thoughtsFlex01 .boxList .box03 {
		width: 26.528vw;
		margin: 1.944vw 0 2.361vw 10.903vw;
		padding: 0.625vw 0 1.736vw 0;
	}

	#thoughts .thoughtsFlex01 .boxList .box03 h3 {
		max-width: 20.972vw;
		margin: 0 0 0.278vw 0;
		padding: 0 0 0 2.083vw;
	}

	#thoughts .thoughtsFlex01 .boxList .box03 p {
		font-size: 1.215vw;
		padding: 0 2.292vw 0 2.431vw;
	}

	#thoughts .thoughtsFlex01 .boxList .box03 p span {
		padding: 0 0 0.278vw;
	}

	#thoughts .thoughtsFlex01 .boxList .addTex {
		font-size: 0.833vw;
		margin: 0 0 0 15.208vw;
	}

	#thoughts .thoughtsFlex02 .image {
		max-width: 55.556vw;
		left: -1.458vw;
	}

	#thoughts .thoughtsFlex02 .boxList {
		padding: 3.542vw 0 0 0;
		width: 54.028vw;
		transform: translateX(32px);
		-webkit-transform: translateX(32px);
		-ms-transform: translateX(32px);
	}

	#thoughts .thoughtsFlex02 .boxList .box {
		border: 0.417vw solid #9cd3f9;
		box-shadow: 0 0.139vw 0.208vw rgba(136, 137, 137, 0.4);
	}

	#thoughts .thoughtsFlex02 .boxList .box01 {
		width: 26.389vw;
		padding: 0.764vw 0 1.875vw 0;
	}

	#thoughts .thoughtsFlex02 .boxList .box01 h3 {
		max-width: 20vw;
		margin: 0 0 0.278vw 0;
		padding: 0 0 0 2.083vw;
	}

	#thoughts .thoughtsFlex02 .boxList .box01 p {
		font-size: 1.215vw;
		padding: 0 1.806vw 0 1.944vw;
	}

	#thoughts .thoughtsFlex02 .boxList .box01 p span {
		padding: 0 0 0.278vw;
	}

	#thoughts .thoughtsFlex02 .boxList .box02 {
		width: 26.389vw;
		padding: 0.972vw 0 1.736vw 0;
	}

	#thoughts .thoughtsFlex02 .boxList .box02 h3 {
		max-width: 21.944vw;
		margin: 0 0 0.278vw 0;
		padding: 0 0 0 2.083vw;
	}

	#thoughts .thoughtsFlex02 .boxList .box02 p {
		font-size: 1.215vw;
		padding: 0 2.292vw 0 2.431vw;
	}

	#thoughts .thoughtsFlex02 .boxList .box02 p span {
		padding: 0 0 0.278vw;
	}

	#thoughts .thoughtsFlex02 .boxList .box03 {
		width: 26.528vw;
		margin: 1.944vw 0 2.847vw 9.931vw;
		padding: 0.764vw 0 1.319vw 0;
	}

	#thoughts .thoughtsFlex02 .boxList .box03 h3 {
		max-width: 20.972vw;
		margin: 0 0 0.278vw 0;
		padding: 0 0 0 2.083vw;
	}

	#thoughts .thoughtsFlex02 .boxList .box03 p {
		font-size: 1.215vw;
		padding: 0 2.917vw 0 2.431vw;
	}

	#thoughts .thoughtsFlex02 .boxList .box03 p span {
		padding: 0 0 0.278vw;
	}

	#thoughts .thoughtsFlex02 .boxList .addTex {
		font-size: 0.833vw;
		margin: 0 0 0 15.208vw;
	}


	/*----------------------------------------------------
	#management
	----------------------------------------------------*/

	#management {
		padding: 8.611vw 0 2.569vw 0;
	}

	#management .head {
		margin-bottom: 6.181vw;
	}

	#management .head h2 {
		max-width: 52.778vw;
		margin: 0 auto -3.194vw;
	}

	#management .managementFlex {
		margin-bottom: -4.236vw;
		padding: 0 5.444vw 0 9.444vw;
	}

	#management .managementFlex .image {
		max-width: 35.694vw;
		margin-top: 0.347vw;
	}

	#management .managementFlex .conts {
		width: 40.625vw;
	}

	#management .managementFlex .conts p {
		font-size: 1.667vw;
		margin-bottom: 0.972vw;
	}

	#management .managementFlex .conts p span {
		padding: 0 0 0.278vw;
	}

	#management .managementFlex .conts .oraclImg {
		max-width: 34.167vw;
		transform: translateX(2.5vw);
		-webkit-transform: translateX(2.5vw);
		-ms-transform: translateX(2.5vw);
	}

	#management .managementFlex .conts .contsBg {
		max-width: 56.458vw;
		left: 2.986vw;
		top: -2.361vw;
	}

	#management .supportFlex {
		padding: 0 0 0 7.986vw;
	}

	#management .supportFlex .conts {
		right: 7.083vw;
		bottom: 1.944vw;
		width: 39.653vw;
	}

	#management .supportFlex .conts p {
		font-size: 1.528vw;
	}

	#management .supportFlex .image {
		max-width: 83.681vw;
	}

	#management .buttonsArea {
		max-width: 90.278vw;
		margin: -0.486vw auto 0;
		padding: 2.778vw 0 2.083vw;
	}

	#management .buttonsArea .telBt {
		margin: 0 1.319vw;
		max-width: 35.139vw;
	}

	#management .buttonsArea .contactBt {
		margin: 0 0.347vw;
		max-width: 35.139vw;
	}

	/*----------------------------------------------------
	#shop
	----------------------------------------------------*/

	#shop {
		padding: 5.208vw 0 0 0;
	}

	#shop .bg {
		height: 55.694vw;
	}

	#shop .head {
		margin-bottom: 2.917vw;
	}

	#shop .head h2 b {
		max-width: 49.722vw;
		margin: 0 auto 0.903vw;
	}

	#shop .head h2 small {
		font-size: 2.778vw;
	}

	#shop .shopFlex {
		padding: 0 9.375vw 0 5.764vw;
	}

	#shop .shopFlex .image {
		max-width: 41.417vw;
	}

	#shop .shopFlex .conts {
		width: 37.083vw;
		padding: 3.333vw 0 0 0;
	}

	#shop .shopFlex .conts p {
		font-size: 1.389vw;
	}

	#shop .shopFlex .conts p span {
		padding: 0 0 0.278vw;
	}

	/*----------------------------------------------------
	#howto
	----------------------------------------------------*/

	#howto {
		padding: 5.208vw 0 0 0;
	}

	#howto .head {
		margin: -10.625vw 0 0 0;
		transform: translateX(-5.625vw);
		-webkit-transform: translateX(-5.625vw);
		-ms-transform: translateX(-5.625vw);
	}

	#howto .head h2 {
		max-width: 73.958vw;
		margin-bottom: -7.778vw;
	}

	#howto .head p.tex {
		font-size: 1.667vw;
		margin-bottom: 1.319vw;
		padding: 0 0 0 24.722vw;
	}

	#howto .head p.tex span {
		padding: 0 0 0.278vw;
	}

	#howto .head p.addTex {
		font-size: 0.833vw;
		padding: 0 0 0 19.306vw;
	}

	/*----------------------------------------------------
	#faq
	----------------------------------------------------*/

	#faq {
		padding: 3.056vw 0 2.778vw 0;
	}

	#faq .inner {
		max-width: 65.278vw;
	}

	#faq .leftBg {
		max-width: 65.694vw;
		top: 8.611vw;
	}

	#faq .rightBg {
		max-width: 65.208vw;
		bottom: -1.806vw;
	}

	#faq .head {
		margin: 0 0 1.389vw;
	}

	#faq .head h2 {
		max-width: 44.236vw;
	}

	#faq .faqBox {
		border-top: 0.069vw solid #3e97d4;
		padding: 1.042vw 1.25vw 1.597vw 1.667vw;
	}

	#faq .faqBox.last {
		border-bottom: 0.069vw solid #3e97d4;
	}

	#faq .faqBox dl dt {
		margin: 0 0.625vw 0.278vw 0;
	}

	#faq .faqBox dl dt .icon {
		max-width: 3.403vw;
		margin: 0 0.625vw 0 0;
	}

	#faq .faqBox dl dt .tex {
		width: calc(100% - 4.028vw);
		font-size: 1.458vw;
		padding: 0.694vw 0 0 0;
	}

	#faq .faqBox dl dd {
		margin: 0 0.625vw 0.278vw 0;
	}

	#faq .faqBox dl dd .icon {
		max-width: 3.403vw;
		margin: 0 0.625vw 0 0;
	}

	#faq .faqBox dl dd .tex {
		width: calc(100% - 4.028vw);
		font-size: 1.458vw;
		padding: 0.486vw 0 0 0;
	}

	/*----------------------------------------------------
	#nutrition
	----------------------------------------------------*/

	#nutrition {
		padding: 5.556vw 0 0 0;
	}

	#nutrition .inner {
		max-width: 70.208vw;
	}

	#nutrition .bg {
		top: 1.25vw;
		height: 39.167vw;
	}

	#nutrition .head {
		margin: 0 0 2.222vw;
	}

	#nutrition .head h2 {
		max-width: 42.708vw;
	}

	#nutrition .head p {
		font-size: 1.389vw;
		margin: 0 0 0 8.958vw;
		bottom: -1.042vw;
	}

	#nutrition .tableTop {
		margin-bottom: 1.319vw;
	}

	#nutrition .tableTop table {
		border: 0.069vw solid #d0c74a;
		box-shadow: 0 0.139vw 0.208vw rgba(136, 137, 137, 0.4);
		margin-bottom: 0.903vw;
	}

	#nutrition .tableTop table th {
		border-right: 0.069vw solid #d0c74a;
		font-size: 1.338vw;
		padding: 1.042vw 0 1.042vw;
	}

	#nutrition .tableTop table th.w {
		font-size: 1.171vw;
	}

	#nutrition .tableTop table td {
		border-right: 0.069vw solid #d0c74a;
		font-size: 1.338vw;
		padding: 1.389vw 0 1.458vw;
	}

	#nutrition .tableTop p {
		font-size: 0.833vw;
	}

	#nutrition .tableBottom table {
		border: 0.069vw solid #d0c74a;
		box-shadow: 0 0.139vw 0.208vw rgba(136, 137, 137, 0.4);
		margin-bottom: 0.903vw;
	}

	#nutrition .tableBottom table th {
		border-right: 0.069vw solid #d0c74a;
		font-size: 1.338vw;
		padding: 1.042vw 0 1.042vw;
	}

	#nutrition .tableBottom table th.w {
		font-size: 1.171vw;
	}

	#nutrition .tableBottom table td {
		border-right: 0.069vw solid #d0c74a;
		font-size: 1.338vw;
		padding: 1.389vw 0 1.458vw;
	}

	/*----------------------------------------------------
	#item
	----------------------------------------------------*/

	#item {
		padding: 4.375vw 0 2.986vw 0;
	}

	#item .head {
		margin: 0 0 -1.319vw;
	}

	#item .head h2 {
		max-width: 44.722vw;
	}

	#item .itemTable {
		margin-bottom: 2.639vw;
	}

	#item .itemTable table {
		max-width: 76.458vw;
		border: 0.069vw solid #8a8888;
		margin-bottom: 0.903vw;
	}

	#item .itemTable table th {
		border-right: 0.069vw solid #8a8888;
		border-bottom: 0.069vw solid #8a8888;
		font-size: 1.111vw;
		padding: 0;
		width: 11.181vw;
	}

	#item .itemTable table td {
		border-bottom: 0.069vw solid #8a8888;
		font-size: 1.111vw;
		padding: 1.389vw 2.917vw 1.389vw 2.083vw;
	}



}
