@charset "utf-8";

/* ------------------------------------------------------------------------------------
 web fonts　ウェブフォントファイルを変更した場合はv=1.0の数字を変更（キャッシュ対策）
------------------------------------------------------------------------------------ */
@font-face {
  font-family: "design_plus";
  src: url("fonts/design_plus.eot?v=1.5");
  src: url("fonts/design_plus.eot?v=1.5#iefix") format("embedded-opentype"),
    url("fonts/design_plus.woff?v=1.5") format("woff"),
    url("fonts/design_plus.ttf?v=1.5") format("truetype"),
    url("fonts/design_plus.svg?v=1.5#design_plus") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* ----------------------------------------------------------------------
 reset css
---------------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  max-width: 100%;
}
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
ul,
ol {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a:focus {
  outline: none;
}
ins {
  text-decoration: none;
}
mark {
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
button,
input,
select,
textarea {
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 100%;
}
input,
textarea {
  background-image: -webkit-linear-gradient(
    hsla(0, 0%, 100%, 0),
    hsla(0, 0%, 100%, 0)
  );
  -webkit-appearance: none;
  border-radius: 0; /* Removing the inner shadow, rounded corners on iOS inputs */
}
input[type="checkbox"] {
  -webkit-appearance: checkbox;
}
input[type="radio"] {
  -webkit-appearance: radio;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
img {
  -ms-interpolation-mode: bicubic;
}

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  font-size: 0.1em;
  line-height: 0;
  visibility: hidden;
  overflow: hidden;
}
.clearfix {
  display: inline-block;
}
/* exlude MacIE5 \*/
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}
/* end MacIE5 */

/* ----------------------------------------------------------------------
 基本設定
---------------------------------------------------------------------- */
body {
  font-family: Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
    "メイリオ", Meiryo, sans-serif;
  color: #333;
  line-height: 1;
  width: 100%;
}
.pc .admin-bar {
  padding-top: 33px;
}
a {
  color: #333;
  text-decoration: none;
}
a,
a:before,
a:after,
input {
  -webkit-transition-property: background-color, color, border-color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: background-color, color, border-color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-property: background-color, color, border-color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;
  transition-property: background-color, color, border-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.clear {
  clear: both;
}
.hide {
  display: none;
}

.sp {
  display: none;
}

/* レイアウト */
#main_contents {
  background: #fff;
  width: 100%;
  position: relative;
  z-index: 10;
}
#main_col {
  width: 1170px;
  min-width: 1170px;
  margin: 50px auto 100px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#left_col {
  width: 820px;
  float: left;
}
#side_col {
  width: 300px;
  float: right; /*margin:0 0 50px 0;*/
}
.layout2 #left_col {
  float: right;
}
.layout2 #side_col {
  float: left;
}
.pc .no_side_content #left_col {
  width: auto;
  float: none;
}

/* ----------------------------------------------------------------------
 ヘッダー
---------------------------------------------------------------------- */
#header {
  height: 100px;
  width: 100%; /*-min-width:1260px;-*/
  position: relative;
  z-index: 20;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#header_inner {
  height: 100px; /*-width:1170px;-*/
  margin: 0 auto;
  position: relative;
}
.pc body.home #header_inner,
.pc body.cpt_archive #header_inner {
  width: auto;
}

/* 固定ヘッダー */
.pc .header_fix {
  padding-top: 150px;
} /* #header_inner height + #header margin bottom */
.pc .header_fix #header_top {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 200;
  border-bottom: 1px solid #ddd;
  background: #fbfbfb;
  height: 50px;
  width: 100%;
  animation: slideDown 0.5s ease;
  -ms-animation: slideDown 0.5s ease;
  -webkit-animation: slideDown 0.5s ease;
  -moz-animation: slideDown 0.5s ease;
}
.pc .header_fix #header,
.pc .header_fix #header_inner {
  height: auto;
}
@-webkit-keyframes slideDown {
  0% {
    top: -50px;
  }
  100% {
    top: 0px;
  }
}
@keyframes slideDown {
  0% {
    top: -50px;
  }
  100% {
    top: 0px;
  }
}

/* ロゴ */
#logo_text,
#logo_image {
  display: inline;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#logo_image img.pc_logo_image {
  display: block;
  margin: 0 auto;
}
#logo_image img.mobile_logo_image {
  display: none;
}
#logo_text h1 {
  line-height: 1;
}
#tagline {
  margin: 5px 0 0;
  height: 1;
  font-size: 14px;
  font-weight: normal;
}
#logo_text a {
  text-decoration: none;
}
.header_fix #header #logo_text,
.header_fix #header #logo_image {
  display: none;
}

/* ----------------------------------------------------------------------
 フッター
---------------------------------------------------------------------- */

/* 固定コンテンツ */
#fixed_footer_content {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  color: #fff;
  padding: 40px;
  z-index: 9999;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
#fixed_footer_content.active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#fixed_footer_content a {
  color: #fff;
  text-decoration: none;
}
#fixed_footer_content .content_left {
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: -webkit-calc(100% - 530px);
  width: -moz-calc(100% - 530px);
  width: calc(100% - 530px);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#fixed_footer_content .has_image .content_left {
  width: -webkit-calc(100% - 840px);
  width: -moz-calc(100% - 840px);
  width: calc(100% - 840px);
}
#fixed_footer_content .button {
  position: absolute;
  right: 55px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  min-width: 300px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  display: inline-block;
  padding: 0 40px 0 10px;
  font-size: 16px;
}
#fixed_footer_content .button:after {
  font-family: "design_plus";
  content: "\e910";
  color: #fff;
  font-size: 14px;
  display: block;
  position: absolute;
  top: 1px;
  right: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#fixed_footer_content .image {
  position: absolute;
  right: 55px;
  max-width: 728px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#fixed_footer_content .image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
#fixed_footer_content .close {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
#fixed_footer_content span {
  display: none;
}
#fixed_footer_content .close:before {
  font-family: "design_plus";
  color: #fff;
  font-size: 20px;
  display: block;
  content: "\e91a";
  position: absolute;
  top: 10px;
  left: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#fixed_footer_content .close:hover {
  background: rgba(255, 255, 255, 0.1);
}
#fixed_footer_content .catch {
  font-size: 21px;
  margin: 0;
  line-height: 1.5;
}
#fixed_footer_content .desc {
  font-size: 14px;
  margin: 5px 0 0 0;
  line-height: 2;
}
#fixed_footer_content .pr {
  background: #fff;
  color: #333;
  display: inline;
  font-size: 12px;
  margin: 5px 15px 0 0;
  padding: 0 12px;
  border-radius: 2px;
  height: 20px;
  line-height: 20px;
  float: left;
}
#fixed_footer_content .pr1 {
  display: none;
}

#fixed_footer_content .free {
  width: 100%;
  padding-right: 100px;
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#fixed_footer_content .post_content p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* フッターウィジェット */
#footer_top {
  width: 100%; /*-min-width:1260px;-*/
  background: #fff;
}
#footer_top_inner {
  width: 1170px;
  padding: 30px 0px 0;
  margin: 0 auto;
  overflow: hidden;
}
#footer_right_widget {
  width: 330px;
  float: right;
}
#footer_top .side_widget {
  margin: 0 0 30px 0;
}
.footer_headline {
  font-size: 16px;
  margin: 0 0 30px 0;
  display: none;
}

/* 紹介文 */
#footer_info {
  margin: 0 auto;
  padding: 30px 0;
  overflow: hidden;
  background-color: #eceff3;
}
.footer_logo {
  margin: 0 auto 30px ;
  max-width: 330px;
}
#footer_info .info {
  margin: 0 auto;
  max-width: 330px;
}
#footer_info .info p {
  line-height: 2;
  font-size: 14px;
}
#footer_social_link {
  left: -10px;
  position: relative;
}

/* フッター下部 */
#footer_bottom {
  width: 100%; /*-min-width:1260px;-*/
  height: 59px;
  line-height: 59px;
  color: #fff;
  text-align: center;
  background: #000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* コピーライト */
#copyright {
  font-size: 12px;
  line-height: 59px;
}

/* ページ上部へ戻るボタン */
#return_top {
  display: block;
}
#return_top a {
  display: block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-decoration: none;
  background: #ccc;
  z-index: 100;
  position: relative;
}
#return_top span {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
#return_top a:before {
  font-family: "design_plus";
  color: #fff;
  font-size: 12px;
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#return_top a:before {
  content: "\e911";
  left: 22px;
  top: 2px;
}
#return_top {
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 999;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
#return_top.active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/**************************************** SAHARA *****************************************/

#seminar_lp {
  width: 100%;
  margin: 0 auto;
}

/* Footer */

#cpt_list_wrap {
  display: none;
}
#footer_top {
  background: /*#d07096*/ #3a99c5;
}
#footer_top_inner {
  width: 100%;
  background: #b99561;
}

#footer_top_inner .textwidget h2,
#footer_top_inner .side_widget h3 {
  text-align: center;
  line-height: 1.7;
  font-size: 1.4em;
  margin-bottom: 0.7em;
  color: #fff;
}
.footer_logo {
  margin-bottom: 0px;
}

table#footer_address th {
  width: 20%;
  text-align: left;
  font-weight: normal;
}
table#footer_address th,
table#footer_address td {
  line-height: 1.7;
  padding: 0.5em;
  color: #333;
}
table#footer_address td {
  text-align: left;
}

#footer_center_widget {
  max-width: 740px;
  margin: 0 auto;
}
#footer_logo_image {
  margin-bottom: 0.9em;
}
#footer_logo_image h3 {
  text-align: center;
}
#footer_info a {
  color: #333;
}
#footer_info a:hover {
	color: #999;
	transition: 0.3s;
}


@media screen and (max-width: 767px) {
  #seminar_lp {
    width: auto !important;
  }
  /*
  #seminar_lp p {
    margin-left: 5%;
    margin-right: 5%;
  }
  */
  #seminar_lp .linkbtn img {
    width: 60%;
  }
  #seminar_lp #first_image {
    padding-top: 35px;
  }

  #header_headline {
    margin-top: 0px;
  }
  #header_headline h2 {
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 2px;
  }
}

/*- sumita tuika -*/

#contents_body {
  color: #1a1a1a;
  width: 100%;
  margin: 0 auto;
}

#lashbeit_wrap {
  width: 100%;
  margin: 0 auto;
  color: #000;
}
.wp-block-image img {
  max-width: 100%;
}
#lashbeit_wrap p,
#lashbeit_wrap li {
  font-size: 16px;
}

#lashbeit_wrap #news {
  margin: 40px 35px 40px;
}
#lashbeit_wrap #news p {
  border: solid 5px #ccc;
  padding: 20px 40px;
  text-decoration: underline;
  background-color: #fff;
}

#lashbeit_wrap .h2_wrap {
  margin-bottom: 2.5em;
  padding: 0;
}
#lashbeit_wrap .h3_wrap {
  padding: 0;
  margin: 0;
}

#lashbeit_wrap h2 {
  /*padding-top: 1em;*/
  padding: 30px 0 40px 20px;
  font-size: 40px;
  font-weight: normal;
  color: #000;
}

#lashbeit_wrap h2.movie_head {
  padding: 3px 0 2px 0px;
  margin: 0 0.5em 0.5em 0.5em;
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  text-align: center;
  background: none;
  border: none;
}

/*-#lashbeit_wrap h3 {
	padding: 3px 0 10px 2px;
	margin: 0 0.5em 1.3em 20px;
	border-bottom: solid #000 1px;
	font-size: 20px;
  line-height: 1.6;
  color: #000;
  font-family: 'Times New Roman', Times, serif, 'Noto Serif JP', serif;
}-*/
#lashbeit_wrap p {
  margin-bottom: 1em;
  color: #000;
}

#lashbeit_wrap .linkbtn,
.linkbtn {
  text-align: center;
  padding-top: 20px;
}

#lashbeit_wrap #first_image {
  padding-top: 0px;
  width: 1000px;
  margin: 0 auto;
  line-height: 0;
}

a.opa:hover,
a.opa:active {
  opacity: 0.5;
}
#lashbeit_wrap .center {
  text-align: center;
}
#lashbeit_wrap .right {
  text-align: right;
}
#lashbeit_wrap .left {
  text-align: left;
}
#lashbeit_wrap p.txt {
  font-size: 14px;
  padding: 3px 10px 2px 20px;
  line-height: 230%;
}

#lashbeit_wrap h2 {
  padding: 30px 0 30px 20px;
  font-size: 46px;
  font-weight: bold;
  color: #fff;
  line-height: 100%;
}
/*#lashbeit_wrap h2 span{
  font-size: 22px;
  padding: 8px 0 0 0;
}-*/

#header_sp {
  display: none;
}

#lashbeit_wrap #about {
  background: url(https://lashbeit.jp/wp-content/uploads/2020/05/lashbeit_02_pc-bg.jpg)
    no-repeat center;
  padding: 0;
}
#lashbeit_wrap #essence .h2_wrap {
  margin-bottom: 1.5em;
  padding: 0;
}
#lashbeit_wrap .h2_wrap p {
  display: inline-block;
  width: 456px;
  vertical-align: top;
}
#lashbeit_wrap .h2_wrap .wp-block-image {
  display: inline-block;
  width: 480px;
  position: relative;
  margin-top: -100px;
  margin-bottom: 0;
  padding: 0;
}

#lashbeit_wrap h3.pd {
  color: #000;
  font-size: 22px;
  font-weight: bold;
  font-family: "Times New Roman", Times, serif, "Noto Serif JP", serif;
}
#lashbeit_wrap #essence h2 {
  padding: 30px 0 30px 20px;
  width: 380px;
}
#lashbeit_wrap #essence h2 img {
  width: 100%;
}
#lashbeit_wrap #essence p,
#lashbeit_wrap #egm p {
  display: inline-block;
  width: 636px;
  vertical-align: top;
}

#lashbeit_wrap #essence .wp-block-image {
  display: inline-block;
  width: 230px;
  position: relative;
  margin-top: -240px;
  margin-bottom: 0;
  margin-left: 30px;
  padding: 0;
}
#lashbeit_wrap #egm .wp-block-image {
  display: inline-block;
  width: 330px;
  position: relative;
  margin-top: -500px;
  margin-bottom: 0;
  margin-left: 600px;
  padding: 0;
}
#lashbeit_wrap #essence ul {
  width: 900px;
  margin: 40px 0 20px 40px;
}
#lashbeit_wrap #egm ul {
  width: 900px;
  margin: 0px 0 20px 40px;
}
#lashbeit_wrap #essence ul li,
#lashbeit_wrap #egm ul li {
  display: inline-block;
  width: 270px;
  margin: 0 10px 20px;
}
#lashbeit_wrap #essence ul li img,
#lashbeit_wrap #egm ul li img {
  width: 270px;
}
#lashbeit_wrap #essence .fgf7 {
  display: inline-block;
  width: 1000px;
}
#lashbeit_wrap #essence .fgf7 h3.pd {
  color: #000;
  font-size: 18px;
  padding: 30px 0 0px 0px;
  margin: 0 0 1.3em 0;
}
#lashbeit_wrap #essence .fgf7 .wp-block-image {
  width: 34%;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0px;
  padding: 0;
}

#lashbeit_wrap #essence .fgf7 .about-fgf7 {
  width: 65%;
  display: inline-block;
  vertical-align: top;
}
#lashbeit_wrap #essence .fgf7 .about-fgf7 .txt {
  width: 100%;
  font-size: 12px;
  padding: 3px 0 2px;
  line-height: 180%;
  border-bottom: 7px;
}
#lashbeit_wrap .pdtb {
  width: 860px;
  border-collapse: collapse;
  border: 1px solid #aaa;
  background-color: #fff;
  margin: 30px 0 50px 50px;
  line-height: 130%;
  font-size: 14px;
}
#lashbeit_wrap .pdtb th {
  width: 200px;
  padding: 10px;
  border: 1px solid #999;
  background-color: #efefef;
}
#lashbeit_wrap .pdtb td {
  width: 350px;
  padding: 10px;
  border: 1px solid #999;
}
#lashbeit_wrap .about-md h4 {
  width: 170px;
  height: 50px;
  text-align: center;
  font-size: 24px;
  background-color: #e4e4e4;
  padding: 2px;
  margin: -208px auto 208px;
}
#lashbeit_wrap .about-md h4 span {
  font-size: 40px;
}
#lashbeit_wrap #egm h2 {
  padding: 30px 0 30px 20px;
  width: 380px;
}
#lashbeit_wrap #egm h2 img {
  width: 100%;
}
#lashbeit_wrap #egm ol {
  width: 895px;
  border: 1px solid #aaa;
  margin: 40px 0 0 20px;
  padding: 25px 0 15px 15px;
}
#lashbeit_wrap #egm ol li {
  display: inline-block;
  vertical-align: top;
  width: 278px;
  height: 135px;
  padding: 0px 8px 0 8px;
  font-size: 14px;
  border-right: 1px dotted #aaa;
  line-height: 1.8;
}
#lashbeit_wrap #egm ol li:last-child {
  border-right: none;
}
#lashbeit_wrap #egm ol li b {
  text-align: center;
  font-size: 18px;
}

#lashbeit_wrap #egm .about-ep {
  margin-bottom: 30px;
}
#lashbeit_wrap #egm .about-ep h4 {
  font-size: 20px;
  font-family: "Times New Roman", Times, serif, "Noto Serif JP", serif;
  padding: 3px 0 10px 2px;
  margin: 0 0.5em 1.3em 20px;
  font-weight: bold;
  border-bottom: solid #000 1px;
}
#lashbeit_wrap #egm .about-ep p {
  display: inline-block;
  width: 600px;
  vertical-align: top;
  line-height: 200%;
}
#lashbeit_wrap #egm .about-ep .wp-block-image {
  display: inline-block;
  width: 280px;
  margin-top: -60px;
  margin-bottom: 0px;
  margin-left: 30px;
  padding: 0;
}

#lashbeit_wrap #egm .about-hd h4 {
  font-size: 20px;
  font-family: "Times New Roman", Times, serif, "Noto Serif JP", serif;
  padding: 3px 0 10px 2px;
  margin: 0 0.5em 1.3em 20px;
  font-weight: bold;
  border-bottom: solid #000 1px;
}
#lashbeit_wrap #egm .about-hd p {
  display: inline-block;
  width: 640px;
  vertical-align: top;
  line-height: 200%;
}
#lashbeit_wrap #egm .about-hd .wp-block-image {
  display: inline-block;
  width: 200px;
  margin-top: -65px;
  margin-bottom: 0px;
  margin-left: 30px;
  padding: 0;
}
#lashbeit_wrap .pdtb {
  width: 860px !important;
  line-height: 150%;
}
#lashbeit_wrap .pdtb.egm th {
  width: 120px;
}
#lashbeit_wrap .pdtb.egm td {
  width: 730px;
}

#lashbeit_wrap #howto {
  width: 1000px;
  margin-bottom: 40px;
}
#lashbeit_wrap #howto h2 {
  text-align: center;
  font-size: 38px;
}
#lashbeit_wrap #howto ul li {
  display: inline-block;
  vertical-align: top;
  width: 176px;
  padding: 0 7px;
}
#lashbeit_wrap #howto ul li:last-child {
  padding: 0 0 0 7px;
}
#lashbeit_wrap #howto ul li img {
  width: 176px;
}
#lashbeit_wrap #howto ul li p {
  width: 176px;
  font-size: 13px;
  line-height: 160%;
}

#lashbeit_wrap #epsa {
  margin-bottom: 80px;
}
#lashbeit_wrap #epsa h2 {
  text-align: center;
  font-size: 38px;
}
#lashbeit_wrap #epsa .wp-block-image.left {
  display: inline-block;
  width: 70px;
  margin: 0 10px 0 20px;
  padding: 0;
}
#lashbeit_wrap #epsa div.text {
  display: inline-block;
  vertical-align: top;
  width: 390px;
}
#lashbeit_wrap #epsa .txt {
  font-size: 14px;
  width: 390px;
  margin: 0;
  padding: 0;
  line-height: 170%;
}
#lashbeit_wrap #epsa div.text p.seibun {
  width: 380px;
  margin-top: 20px;
  padding: 5px;
  background-color: #333;
  border: 1px solid #999;
  font-size: 14px;
}
#lashbeit_wrap #epsa .wp-block-image.right {
  display: inline-block;
  vertical-align: top;
  width: 430px;
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: 10px;
  padding: 0;
}

#lashbeit_wrap table.tokkyo {
  width: 900px !important;
  margin: 0 auto 40px;
  background: #fff;
}
#lashbeit_wrap table.tokkyo th,
table.tokkyo td {
  border: none;
  vertical-align: middle;
  line-height: 1.8;
  padding: 10px 15px;
}

#lashbeit_wrap #smallwhite {
  border-top: 40px solid #fff;
}
#lashbeit_wrap #smallwhite h2 {
  color: #28a7e1;
  font-family: "Times New Roman", Times, serif, "Noto Serif JP", serif;
}
#lashbeit_wrap #smallwhite p.catch {
  color: #28a7e1;
  font-size: 30px;
  line-height: 30px;
  margin: 0 0 30px 20px;
}
#lashbeit_wrap #smallwhite p.catch span {
  color: #000;
  font-size: 16px;
}
#lashbeit_wrap #smallwhite h4 {
  font-size: 20px;
  font-weight: bold;
  margin: -15px 0 0 20px;
}

#lashbeit_wrap #smallwhite .ba,
#lashbeit_wrap .lbba {
  text-align: center;
  margin: 10px 0 60px 0;
}
#lashbeit_wrap .lbba p.title {
  width: 940px !important;
  text-align: center !important;
  margin: 10px 10px 15px 10px;
  background-color: #c39d6f;
  color: #fff;
}
#lashbeit_wrap #smallwhite .ba p.title {
  width: 940px;
  margin: 10px 10px 15px 10px;
  background-color: #28a7e1;
  color: #fff;
}
#lashbeit_wrap #epbm {
  width: 1000px;
}
#lashbeit_wrap #epbm h3 {
  color: #ed6d47;
  font-size: 30px;
  line-height: 30px;
  margin: 0 15px 30px 20px;
}
#lashbeit_wrap #epbm p {
  margin: 0 10px 0 20px;
  font-size: 14px;
  line-height: 230%;
}
#lashbeit_wrap #epbm p.bm1 {
  background: url(../img/uploads/2020/06/ebm.png) no-repeat right top;
  background-size: 400px;
  width: 490px;
  padding: 0 420px 0 0;
}
#lashbeit_wrap #epbm p.bm2 {
  width: 930px;
  margin-bottom: 30px;
}

#lashbeit_wrap .evi {
  width: 930px;
  text-align: center;
  margin: 0 auto;
}
#lashbeit_wrap .evi img {
  margin-left: -15px;
}
#lashbeit_wrap .evi .title {
  color: #fff;
  background: #ed6d47;
}
#lashbeit_wrap .pc_none {
  display: none;
}
#lashbeit_wrap .sp_none {
  display: inherit;
}
/*.mobile .header_fix #header #logo_text,
.mobile .header_fix #header #logo_image { display:none; }*/
.footer_widget h3 {
  color: #fff;
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
}
.footer_widget .notice {
  text-align: left;
  font-weight: 400;
  margin: 0 0 0 1.5em;
  line-height: 1.4;
}
.footer_widget .notice::before {
  content: "※";
  margin-left: -1em;
}

#semiform {
  margin: 10px auto 50px;
  padding: 20px 5% 30px;
  background-color: #ddd;
}
#semiform label {
  display: inline-block;
  vertical-align: middle;
  width: 28%;
  border-top: 1px dotted #ccc;
  padding: 10px 0;
  font-size: 16px;
}
#semiform label.radiobt {
  display: inline-block;
  vertical-align: top;
  width: 33%;
  border: none;
  margin-left: 15px;
}
#semiform label.seminar,
#semiform label.address {
  vertical-align: top;
}
#semiform label:nth-child(1) {
  border: none;
}
#semiform input {
  padding: 5px;
  width: 70%;
  border: 1px solid #aaa;
}
#semiform input.radio {
  width: 20px;
  margin-left: -20px;
}
#semiform textarea {
  padding: 5px;
  width: 70%;
  min-height: 100px;
  border: 1px solid #aaa;
}
#semiform p {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  border-top: 1px dotted #ccc;
  padding: 10px 0;
  line-height: 2;
}
#semiform p:first-child {
  border: none;
}
select {
  width: 70%;
}
#semiform p.submit {
  display: block;
  width: 100%;
}
#semiform p.submit button {
  display: block;
  width: 40%;
  margin: 30px auto 0;
  background-color: #595a5a;
  border-radius: 4px;
  border-style: none;
  color: #fff;
  padding: 5px;
  font-size: 130%;
  line-height: 2.2;
}
#semiform p.submit button:hover {
  background-color: #777777;
}
.thanksarea {
  width: 80%;
  height: 500px;
  margin: 0 auto;
  padding: 40px 40px;
  text-align: center;
  line-height: 200%;
}

.applicationform {
  margin-bottom: 30px;
  height: 1840px;
}
.bnarea {
  text-align: center;
  line-height: 1.3;
  background: #e3e5ea;
  padding: 48px 10px 24px;
}
.bnarea img {
  margin-bottom: 30px;
}
.bnarea .bnarea_inner {
  max-width: 1000px;
  margin: 0 auto;
}
.bnarea_inner-ttl {
	font-size: 24px;
	font-weight: bold;
}
.bnarea_inner img {
	max-width: 800px;
}
.bnarea_inner-summary {
	margin-bottom: 9px;
	font-size: 18px;
}
.input-field small {
  font-size: 80%;
  line-height: 1.3;
}

/*- renew -*/

body {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝",
    "Noto Serif JP", serif;
  font-feature-settings: "palt";
  /*letter-spacing: 0.04em;*/
}
h2.title_content {
  position: relative;
  margin: 0 auto 40px;
  line-height: 1.5;
  text-align: center;
  font-size: 28px;
  font-weight: normal;
  color: #333;
  /*border-bottom: 1px solid #7c7c7c;*/
}
h2.title_content span.big {
  font-size: 40px;
}

#schedule {
  width: 100%;
  background: #993125;
  margin: 0;
  padding: 30px 0 30px;
}
.schedule_inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
#schedule .benefits {
  margin: -170px 0 -60px 0;
  display: block;
  position: absolute;
  left: -50px;
  z-index: 1000;
}
#schedule h2 {
  text-align: center;
  font-weight: 300;
  font-size: 1.5em;
  margin: 0 0 20px;
  padding: 0;
  line-height: 150%;
}
#schedule p {
  margin: 0;
  color: #fff;
}
#schedule .day {
  font-size: 1.8em;
  text-align: center;
  line-height: 100%;
  margin-bottom: 15px;
}
#schedule .day .nittei {
  font-size: 90%;
  vertical-align: top;
}
#schedule .day .youbi {
  font-size: 60%;
  vertical-align: middle;
}
#schedule .time {
  font-size: 1.2em;
  line-height: 1.5;
  text-align: center;
}
#schedule .time span {
  font-size: 1rem;
}

/* --section2-- */
#section2 {
  background-color: #333;
  color: #fff;
  padding-top: 50px;
  margin-bottom: 40px;
}
#section2 .red {
  color: #f26363;
}
#section2 .mid {
  font-size: 34px;
}
#section2 .big {
  font-size: 52px;
}
#section2 .redline {
  background: url(../img/bg_line-red.png) no-repeat center bottom;
  background-size: auto 15px;
}
#section2 p {
  text-align: left;
  margin-bottom: 20px;
  color: #fff;
}
#section2 .mainArea {
  background-size: 100%;
  padding: 0 0 50px 0;
}
#section2 .mainArea > h3 {
  width: 60%;
  font-size: 46px;
  margin: 0 auto 30px;
  line-height: 1;
}
#section2 .mainArea h3 .sub {
  font-size: 26px;
  line-height: 2.5;
}
#section2 .mainArea p {
  font-size: 26px;
  line-height: 1.7;
}
#section2 .mainArea p #section2 .mainArea p.catch {
  line-height: 1;
  width: 80%;
  margin: auto;
}
.nayami {
  max-width: 938px;
  padding: 24px;
  border: 1px solid;
}

.nayami ul {
  /*background-color: #281818;*/
  padding: 20px 5% 20px 7%;
  margin: 0 auto;
  max-width: 660px;
}
.nayami ul li {
  color: #fff;
  font-size: 26px !important;
  line-height: 50px;
  text-align: left;
  background: url(../img/icon_check_add.png) no-repeat left 15px;
  background-size: 30px;
  padding-left: 60px;
}
#section2 .nayami p {
  font-size: 28px;
  text-align: center;
  margin-bottom: 0;
}
#section2 .nayami p span {
  font-size: 42px;
}
.nayami ul li span {
  font-size: 36px;
}
#section2 .innerArea {
  max-width: 1000px;
  /*background: url(../img/bg_why.jpg) no-repeat right top;*/
  /*background-size: 88%;*/
  margin: 0 auto;
  padding: 0 0 15px;
  overflow: hidden;
}
#section2 .innerArea h2 {
  width: 650px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  margin: 30px auto 20px auto;
  padding: 0;
  text-align: center;
}
#section2 .innerArea2 {
  max-width: 920px;
  background-color: #fff;
  color: #000;
  padding: 40px 40px 5px;
  margin: 0 auto 50px;
  text-align: left;
}
#section2 .innerArea2 p {
  font-size: 24px;
  text-align: left;
  color: #000;
}
#section2 .innerArea2 .annotation {
  font-size: 15px;
  text-align: center;
  color: #555;
  font-family: sans-serif;
  padding-top: 20px;
}
#section2 .innerArea2 br {
  display: none;
}
/* --/section2-- */

/* -- section3-- */
#section3 {
  width: 1000px;
  margin: 0 auto 50px;
  padding-bottom: 15px;
  text-align: center;
}
#section3 h2 {
  /*
  font-size: 54px;
  line-height: 1.4;
  color: #000;
  padding: 0;
  */
  padding: 60px 0;
  margin-top: 40px;
  line-height: 100%;
  border-bottom: 0;
  color: #000;
  font-weight: bold;
  text-align: center;
  font-size: 48px;
  background: url(../img/bg_two-feature.png) no-repeat 90% center;
  background-size: 198px;
}
#section3 .sub {
  font-size: 36px;
  padding: 0;
  margin: 0;
}
/* --/section3-- */

/* -- section5-- */
#section5 {
  max-width: 1000px;
  background: #fff;
  color: #000;
  padding-bottom: 20px;
  margin: auto;
}

#section5 .mainArea .merit {
  background: #f5f5f5;
  padding-bottom: 20px;
  margin-bottom: 30px;
}


#section5 h2 {
  color: #fff;
  font-size: 40px;
  padding: 12px;
  line-height: 1.5;
}
/*
#section5 .merit {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin: 1rem 0;
}
#section5 .merit.leftbox {
  width: 600px;
}
#section5 .merit.rightbox {
  width: 360px;
}
#section5 .merit p {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 40px;
}
#section5 .merit img {
  width: 360px;
  margin: 10px 0 0 20px;
}
#section5 h3 {
  width: 98%;
  margin: 0 auto 20px;
  font-size: 28px;
  background: url(../img/bg_line-yellow.png) no-repeat center 190px;
  background-size: auto 16px;
  line-height: 1.8;
}
#section5 .leftbox h3 {
  margin: 15px auto 20px;
  font-weight: 400;
}
#section5 h3 .mid {
  font-size: 36px;
  font-weight: 500;
}
#section5 h3 b {
  font-weight: 500;
}
#section5 h4 {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  margin: 30px 0 50px;
}
#section5 h4 br {
  display: none;
}
*/
/* --/section5-- */

/* -- section6-- */
#section6 {
  background-color: #f0f0f0;
}
#section6 .mainArea {
  max-width: 1000px;
  margin: 0 auto;
}
#section6 .mainArea .feature1 {
  background-color: #ffffff;
  padding: 30px;
}

#lashbeit_wrap #section6 .mainArea h2 {
  padding: 70px 0;
  margin-top: 40px;
  line-height: 100%;
  border-bottom: 0;
  color: #000;
  font-weight: bold;
  text-align: center;
  font-size: 48px;
  background: url(../img/bg_two-feature.png) no-repeat 90% center;
  background-size: 198px;
}
#lashbeit_wrap #section6 .mainArea h2 img {
  width: 40%;
}
#section6 .mainArea p.title {
  text-align: center;
  font-size: 34px;
  line-height: 1.5;
}

#section6 .mainArea h3 {
  font-size: 36px;
  margin: 40px 0 30px 0;
  line-height: 1.4;
}
#section6 .mainArea h3 .big {
  font-size: 44px;
  /*font-weight: 500;*/
  font-weight: bold;
}
#section6 .mainArea h3 .line {
  font-size: 44px;
  font-weight: 500;
  background: url(../img/bg_line-yellow.png) no-repeat center 33px;
  background-size: auto 15px;
}
#section6 .mainArea h3.secret1 {
  font-size: 34px;
  background: url(../img/icon_feature1.png) no-repeat left top;
  background-size: 118px;
  padding: 0 10px 50px 150px;
  margin: 20px 0 0 0;
  text-align: left;
  line-height: 1.5;
}
#section6 .mainArea h3.secret1 .mid {
  font-size: 38px;
}
#section6 .mainArea h3.secret1 .big {
  font-size: 46px;
  color: #b82a2a;
}
#section6 h4 {
  font-size: 40px;
  padding: 12px;
  line-height: 1.5;
  margin: 0 auto 40px;
}
#section6 p {
  /*width: 85%;*/
  margin: 0 auto;
  font-size: 21px;
  text-align: left;
  letter-spacing: 0.1em;
}
#section6 .innerArea {
  background: url(../img/secret1_txt.png) no-repeat center top;
  background-size: 100%;
  width: 709px;
  height: 452px;
  margin: 0 0 0 150px;
  padding: 30px 30px;
  overflow: hidden;
}
#section6 .innerArea p {
  display: none;
}
#section6 .feature {
  /*margin: 0 130px 0 150px;*/
  margin: 0 auto;
  max-width: 800px;
  padding-top: 20px;
  background: url(../img/feature1_image.png) no-repeat right bottom;
  background-size: 20%;
}
#section6 .feature li {
  font-size: 28px;
  font-weight: 400;
  text-align: left;
  padding: 0 0 25px 35px;
  line-height: 1;
}

#section6 .feature li::before {
  display: inline-block;
  content: '■';
  margin-right: 3px;
}
/*
#section6 .line {
  background: url(../img/bg_line-yellow.png) no-repeat center 23px;
  background-size: auto 12px;
}
#section6 .feature li:first-child {
  background: url(../img/icon_list1.png) no-repeat left top;
  background-size: 30px;
}
#section6 .feature li:nth-child(2) {
  background: url(../img/icon_list2.png) no-repeat left top;
  background-size: 30px;
}
#section6 .feature li:nth-child(3) {
  background: url(../img/icon_list3.png) no-repeat left top;
  background-size: 30px;
}
#section6 .feature li:nth-child(4) {
  background: url(../img/icon_list4.png) no-repeat left top;
  background-size: 30px;
}
#section6 .feature li:nth-child(5) {
  background: url(../img/icon_list5.png) no-repeat left top;
  background-size: 30px;
}
#section6 .feature li:nth-child(6) {
  background: url(../img/icon_list6.png) no-repeat left top;
  background-size: 30px;
}
*/
#section6 .fgf7 {
  /*
  width: 73%;
  height: 195px;
  margin: 20px auto;
  padding: 0 20px 0 20px;
  border: 3px solid #f5e9e9;
  background: url(../img/img_fgf7.png) no-repeat 590px 8px;
  background-size: 160px;
  
  background: url(../img/img_fgf7.jpg) no-repeat 750px center;
  background-size: 200px;*/
  background-color: #f2dec7;
  margin: 40px auto 0;
}
#section6 .fgf7 h5 {
  font-size: 34px;
  text-align: left;
  padding-bottom: 20px;
}
#section6 .fgf7 p {
  margin: 0;
  padding-right: 20px;
  font-size: 21px;
  line-height: 1.5;
  text-align: left;
  letter-spacing: 0;
}
/*- /section6 -*/

/*- section7 -*/
#section7 {
  padding: 40px 0 60px;
  background-color: #f0f0f0;
}

#section7 .mainArea {
  max-width: 1000px;
  margin: 0 auto;
}
#section7 .mainArea .feature2 {
  background-color: #ffffff;
  padding: 30px;
}
#section7 .mainArea h3.secret2 {
  font-size: 34px;
  background: url(../img/icon_feature2.png) no-repeat left top;
  background-size: 118px;
  /*padding: 3px 0 50px 224px;*/
  padding: 0 10px 50px 150px;
  text-align: left;
  line-height: 1.5;
}
#section7 .mainArea h3.secret2 .mid {
  font-size: 46px;
}
#section7 .mainArea h3.secret2 .big {
  font-size: 46px;
  color: #b82a2a;
  font-weight: bold;
}
#section7 .innerArea {
  background: url(../img/secret2_txt.png) no-repeat center top;
  background-size: 100%;
  width: 926px;
  height: 452px;
  margin: 0 auto;
  padding: 30px 30px;
  overflow: hidden;
}
#section7 .innerArea p.none {
  display: none;
}
#section7 .aboutep {
  background-color: #f2dec7;
  margin: 40px auto 0;
}
#section7 .aboutep h4 {
  font-size: 34px;
  margin: 0 0 15px;
  padding: 0;
  text-align: left;
}
#section7 .aboutep p {
  font-size: 20px;
}
#section7 .aboutep p img {
  float: right;
  width: 220px;
  padding-left: 10px;
}
#section7 h4 {
  font-size: 40px;
  padding: 12px;
  margin: 0 0 40px 0;
  letter-spacing: 0.1em;
}
#section7 h4 .big {
  font-size: 46px;
}
#section7 .feature {
  /*margin: 0 0 0 100px;*/
  margin: 0 auto;
  max-width: 800px;
  padding-top: 20px;
  /*background: url(../img/feature2_image.png) no-repeat right bottom;*/
  /*background-size: 28%*/
}
#section7 .feature li {
  font-size: 30px;
  font-weight: 400;
  text-align: left;
  padding: 0 0 30px 62px;
  line-height: 1.3;
  text-indent: -16px;
}
#section7 .feature li::before {
  display: inline-block;
  content: '■';
  margin-right: 3px;
}

/*
#section7 .line {
  font-size: 36px;
  background: url(../img/bg_line-yellow.png) no-repeat center 33px;
  background-size: auto 15px;
}
#section7 .feature li:first-child {
  background: url(../img/icon_list1.png) no-repeat left top;
  background-size: 40px;
}
#section7 .feature li:nth-child(2) {
  background: url(../img/icon_list2.png) no-repeat left top;
  background-size: 40px;
}
#section7 .feature li:nth-child(3) {
  background: url(../img/icon_list3.png) no-repeat left top;
  background-size: 40px;
}
#section7 .feature li:nth-child(4) {
  background: url(../img/icon_list4.png) no-repeat left top;
  background-size: 40px;
}
*/
#section7 .feature li p {
  width: 510px;
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
}
#section7 .feature li .head {
  width: 700px;
  margin: -35px 0 -20px;
  padding: 40px 200px 20px 0;
  background: url(../img/img_head.jpg) no-repeat 510px top;
  background-size: 170px;
}
#section7 .egmmini {
  display: block;
  padding: 0 0 0 700px;
  margin: -600px 0 0 0;
}
#section7 .egmmini img {
  width: 190px;
  padding-top: 130px;
}
#section7 p {
  margin: 0 auto;
  font-size: 21px;
  text-align: left;
  letter-spacing: 0.1em;
}

/*- /section7 -*/

/*- section8 -*/
#section8 {
  max-width: 1000px;
  margin: 0 auto 80px;
}
#section8 h2 {
  color: #000;
  line-height: 1;
  padding: 0;
  background: url(../img/bg_voice.png) no-repeat 96% center;
  background-size: 298px;
  margin-bottom: 0;
  padding: 80px 0;
}
#section8 h2.title_content span.big {
  font-size: 46px;
}
#section9 .h2sub {
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}
#section8 h3 {
  font-size: 20px;
  line-height: 1.8;
  margin: 20px 0 5px;
  text-align: left;
}
#section8 h3 span {
  padding: 5px;
  background-color: #efdb7f;
}
#section8 h3 img {
  display: block;
  position: relative;
  left: 0;
}
#section8 .two {
	display: flex;
  margin: 0 auto;
  padding: 30px 0 0 0;
}
#section8 .two:first-child {
  padding-top: 0;
}
#section8 .two .arrow_box {
  display: flex;
  vertical-align: top;
  flex-basis: 440px;
  position: relative;
  background: #f2dec6;
  padding: 4% 30px;
  text-align: left;
  line-height: 1.5;
  color: #333;
  font-size: 24px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
}
#section8 .two:nth-child(odd) .arrow_box::after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(198, 155, 115, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 16px;
  border-right-width: 16px;
  margin-top: -10px;
  border-left-color: #f2dec6;
  left: 100%;
  top: 50%;
}
.arrow_box-inner {
	align-self: center;
}
#section8 .two:nth-child(even) .arrow_box {
  order: 2;
}
#section8 .two:nth-child(even) .arrow_box::before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(198, 155, 115, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 16px;
  border-right-width: 16px;
  margin-top: -10px;
  border-right-color: #f2dec6;
  right: 100%;
  top: 50%;
}
#section8 .two:nth-child(2n) figure {
  order: 1;
}
#section8 .two figure.img.right {
  padding: 0 0 0 20px;
  flex-basis: 480px;
}
#section8 .two figure.img.left {
  padding: 0 20px 0 0;
  flex-basis: 480px;
}
#section8 dl.one {
  width: 98%;
  margin-left: 1%;
}
#section8 .inta p {
  color: #444;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: left;
}
#section8 .inta p.shopname {
  margin-bottom: 0;
  font-size: 18px;
}
/*- /section8 -*/

/*- section9 -*/
#section9 {
  margin: 0 auto;
  background-color: #E6FDFF;
}
#section9 .mainArea {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 12px;
}
#section9 h2 {
  color: #000;
  padding: 0;
}
#section9 p.media {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  text-align: center;
}
#section9 img {
  margin: 30px 0 0 0;
}
/*- /section9 -*/

#sectionSemi {
  width: 100%;
  margin: auto;
  padding: 60px 0 50px 0;
  background-color: #000;
  color: #fff;
}
#sectionSemi .mainArea {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
#sectionSemi .mainArea h3 {
  width: 90%;
  font-size: 34px;
  padding: 50px 0 10px 0;
  margin: 0 auto 30px;
  text-align: center;
  font-weight: 300;
  border-bottom: 1px solid #fff;
}
#sectionSemi ul li {
  list-style: decimal;
  font-size: 24px;
  font-weight: 200;
}

#present {
  padding: 80px 0;
  background-color: #eceff3;
}

#present .inner {
  max-width: 740px;
  margin: 0px auto;
}


.demo01__btn {
  position: fixed;
  bottom: 0;
  display: block;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  z-index: 100;
}
.demo01__link {
  display: flex;
  width: 500px;
  margin: 0 auto;
  padding: 15px 40px 15px;
  height: 40px;
  color: #fff;
  text-decoration: none;
  background-color: #333;
  justify-content: center;
  align-items: center;
  font-size: 26px;
}
.input-field small {
  font-size: 80%;
  line-height: 1.3;
}

/*フッター*/
footer {
	background-color: #ffffff;
}
footer .footer_text {
	display: flex;
	align-items: center;
	color: #808285;
	font-size: 24px;
	max-width: 912px;
	margin: 0 auto 30px;
	padding-top: 48px;
}
footer .footer_text::before,
footer .footer_text::after {
	content: '';
	flex-grow: 1;/* 余白を分け与える */
	height: 1px;
	background: #808285;
}
footer .footer_text::before {
	margin-right: 24px;
}
footer .footer_text::after {
	margin-left: 24px;
}
.footer_top {
	width: 100%;
}
.footer_top_inner {
	width: auto;
  padding: 0 20px 30px;
	text-align: center;
  margin: 0 auto;
}
.footer_address {
	display: inline-block;
	font-size: 16px;
	color: #808285;
	margin-top: 24px;
}
.footer_address .address,
.footer_address .tel_mail {
	text-align: left;
}
.footer_address .tel_mail span {
	padding-left: 12px;
}
.footer_address .tel_mail a {
	color: #808285;
}


@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .footer_widget h3 {
    font-size: 100%;
    margin-bottom: 10px;
  }
  .footer_widget .notice {
    font-size: 3vw;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 0 1.2em;
    padding: 0;
  }
  #semiform {
    margin: 10px auto 30px;
    padding: 12px;
    background-color: #ddd;
  }
  #semiform label {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    border-top: 1px dotted #ccc;
    padding: 0px 0;
    font-size: 3.5vw;
  }
  #semiform label.radiobt {
    display: inline-block;
    width: 100%;
    border: none;
    margin-left: 15px;
  }
  #semiform label.address {
    vertical-align: top;
  }
  #semiform p {
    padding: 10px 0 15px;
    line-height: 1.5;
  }
  select {
    width: 100%;
    font-size: 3.5vw;
  }
  #semiform input {
    width: 100%;
  }
  #semiform textarea {
    width: 100%;
  }
  #semiform p.submit button {
    width: 50%;
    margin: 10px auto 0;
  }
  .thanksarea {
    width: 90%;
    height: 270px;
    margin: 0 auto;
    padding: 30px 5%;
    text-align: center;
    line-height: 200%;
  }
  .applicationform {
    margin-bottom: 20px;
    height: 1840px;
  }

  #footer_center_widget {
	padding: 0 12px;
  }
  #header {
    height: 57px;
    width: 100%;
    min-width: inherit;
    right: 0px;
    top: 0px;
    right: 0;
    z-index: 100;
    margin: 0;
  }
  #header_inner {
    height: 56px;
    width: 100%;
    min-width: inherit;
    margin: 0;
    padding: 0;
    background: #fff;
    border-bottom: 1px solid #ddd;
  }
  #logo_image {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }
  #logo_image img.pc_logo_image {
    display: none;
  }
  #logo_image img.mobile_logo_image {
    display: block;
    margin: 0 auto;
  }
  #contents_body {
    width: 100%;
  }
  #lashbeit_wrap {
    width: 100%;
    display: block;
    overflow: hidden;
    margin-bottom: 0px;
  }
  #lashbeit_wrap #news {
    margin: 6% 4%;
  }
  #lashbeit_wrap #news p {
    border: solid 3px #ccc;
    padding: 3% 2%;
    text-decoration: underline;
    background-color: #fff;
    font-size: 2.9vw;
  }
  #header_sp {
    display: inherit;
    width: 100%;
  }
  #header_sp img {
    width: 100%;
  }

  #lashbeit_wrap .linkbtn img {
    width: 60%;
  }
  #lashbeit_wrap #first_image {
    width: 100%;
    padding-top: 0;
  }
  #lashbeit_wrap #first_image img {
    width: 100%;
  }
  #movie_wrap {
    margin-bottom: 30px;
  }
  #movie_recital {
    position: relative;
    width: 100%;
    padding: calc(432 / 960 * 100%) 0 0;
  }
  #movie_recital iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #header_headline {
    margin-top: 0px;
  }
  #header_headline h2 {
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 2px;
  }

  #lashbeit_wrap h2 {
    font-size: 4.5vw;
    font-weight: bold;
    line-height: 105%;
  }

  #lashbeit_wrap #egm h2 {
    padding: 0 0 6% 2%;
    font-size: 8vw;
    font-weight: normal;
    color: #fff;
    line-height: 1;
  }
  #lashbeit_wrap #essence h2 {
    padding: 3% 0 3% 2%;
    width: 70%;
  }
  #lashbeit_wrap h2 span {
    font-size: 4.3vw;
    padding: 0;
  }
  #lashbeit_wrap h3.pd {
    color: #000;
    font-size: 3.5vw;
  }
  #lashbeit_wrap p.txt {
    font-size: 2.9vw;
    padding: 1% 1% 2% 3%;
    line-height: 1.8;
  }

  #lashbeit_wrap #about {
    background: url(https://lashbeit.jp/wp-content/uploads/2020/05/lashbeit_02_sp-bg.jpg)
      no-repeat center bottom;
    padding: 7% 0 0 0;
  }
  #lashbeit_wrap #essence {
    margin-bottom: 12%;
  }
  #lashbeit_wrap .h2_wrap p {
    display: inline-block;
    width: 95%;
    vertical-align: top;
  }
  #lashbeit_wrap #essence p,
  #lashbeit_wrap #egm p {
    display: inline-block;
    width: 95%;
    vertical-align: top;
  }
  #lashbeit_wrap .h2_wrap .wp-block-image {
    display: inline-block;
    width: 95%;
    margin: 0px;
    padding: 0 0 0 5%;
  }
  #lashbeit_wrap #essence .wp-block-image {
    display: inline-block;
    width: 50%;
    margin: 0 0 0 20%;
    padding: 0 0 0 5%;
  }
  #lashbeit_wrap #egm .wp-block-image {
    display: inline-block;
    width: 45%;
    margin: 0 0 0 52%;
    padding: 0;
  }
  #lashbeit_wrap #essence ul {
    width: 99%;
    margin: 8% 0 10% 3%;
  }
  #lashbeit_wrap #essence ul li {
    display: inline-block;
    width: 45%;
    margin: 0 1%;
  }
  #lashbeit_wrap #essence ul li img {
    width: 100%;
  }
  #lashbeit_wrap #egm ul {
    width: 45%;
    margin: -57% 0 0 3%;
    padding-bottom: 5%;
  }
  #lashbeit_wrap #egm ul li {
    display: inline-block;
    width: 100%;
    margin: 0 1%;
  }
  #lashbeit_wrap #egm ul li img {
    width: 100%;
  }
  #lashbeit_wrap #essence .fgf7 {
    width: 100%;
  }
  #lashbeit_wrap #essence .fgf7 .wp-block-image {
    width: 90%;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 5%;
    padding: 0;
  }
  #lashbeit_wrap #essence .fgf7 .about-fgf7 {
    width: 94%;
    margin: 0 0 0 3%;
  }
  #lashbeit_wrap #essence .fgf7 h3.pd {
    color: #000;
    font-size: 2.9vw;
    padding: 5% 0 1% 0px;
    margin: 0 0 1em 0;
  }
  #lashbeit_wrap #essence .fgf7 .about-fgf7 .txt {
    width: 100%;
    font-size: 2vw;
    padding: 1% 0 0;
    line-height: 180%;
  }
  #lashbeit_wrap .pdtb {
    width: 96% !important;
    margin: 5% 0 8% 2%;
    font-size: 2.9vw;
  }
  #lashbeit_wrap .pdtb th {
    width: 15%;
    padding: 0%;
  }
  #lashbeit_wrap .pdtb td {
    width: 39%;
    padding: 1%;
    line-height: 2;
  }

  #lashbeit_wrap .about-md h4 {
    width: 35%;
    height: 2em;
    text-align: center;
    font-size: 5vw;
    padding: 2px;
    margin: -58% auto 58%;
  }

  #lashbeit_wrap .about-md h4 span {
    font-size: 6vw;
  }

  #lashbeit_wrap #egm {
    margin-bottom: 12%;
  }
  #lashbeit_wrap #egm h2 {
    padding: 3% 0 3% 2%;
    width: 80%;
  }
  #lashbeit_wrap #egm ol {
    width: 94%;
    border: 1px solid #aaa;
    margin: 10% 0 0 2%;
    padding: 0 0 0 1%;
  }
  #lashbeit_wrap #egm ol li {
    display: inline-block;
    vertical-align: top;
    width: 96%;
    height: auto;
    padding: 2% 2% 2% 2%;
    font-size: 2.9vw;
    border-right: none;
    border-bottom: 1px dotted #aaa;
  }
  #lashbeit_wrap #egm ol li:last-child {
    border-bottom: none;
  }
  #lashbeit_wrap #egm ol li b {
    text-align: center;
    font-size: 4vw;
  }
  #lashbeit_wrap #egm .about-ep {
    margin-bottom: 12%;
  }
  #lashbeit_wrap #egm .about-ep h4 {
    width: 94%;
    font-size: 5vw;
    margin: 0 3% 0 3%;
    padding: 1% 0 3%;
  }
  #lashbeit_wrap #egm .about-ep p {
    width: 94%;
    margin-top: 5%;
    padding: 0 3%;
  }
  #lashbeit_wrap #egm .about-ep .wp-block-image {
    width: 70%;
    margin: 0 0 0 15%;
    padding: 0;
  }
  #lashbeit_wrap #egm .about-ep .wp-block-image img {
    width: 100%;
  }

  #lashbeit_wrap #egm .about-hd h4 {
    width: 94%;
    font-size: 5vw;
    margin: 0 3% 0 3%;
    padding: 1% 0 3%;
  }
  #lashbeit_wrap #egm .about-hd p {
    width: 94%;
    margin-top: 5%;
    padding: 0 3%;
  }
  #lashbeit_wrap #egm .about-hd .wp-block-image {
    width: 60%;
    margin-top: 0;
    margin-bottom: 0px;
    margin-left: 20%;
    padding: 0;
  }
  #lashbeit_wrap .pdtb.egm {
    width: 96% !important;
    margin: 5% 0 8% 2%;
    font-size: 2.9vw;
  }
  #lashbeit_wrap .pdtb.egm th {
    width: 10%;
    padding: 0%;
  }
  #lashbeit_wrap .pdtb.egm td {
    width: 80%;
    padding: 0 1%;
    line-height: 2;
  }

  #lashbeit_wrap #howto {
    width: 100%;
    margin-bottom: 12%;
  }
  #lashbeit_wrap #howto h2 {
    text-align: center;
    font-size: 6vw;
  }
  #lashbeit_wrap #howto ul {
    width: 100%;
  }
  #lashbeit_wrap #howto ul li {
    vertical-align: top;
    width: 94%;
    padding: 0 3% 1%;
  }
  #lashbeit_wrap #howto ul li:last-child {
    padding: 0 3% 1%;
  }
  #lashbeit_wrap #howto ul li img {
    display: inline-block;
    width: 30%;
  }
  #lashbeit_wrap #howto ul li p {
    display: inline-block;
    vertical-align: top;
    padding: 2% 0 0 2%;
    width: 66%;
    font-size: 3.5vw;
    line-height: 180%;
  }

  #lashbeit_wrap #epsa {
    margin-bottom: 12%;
  }
  #lashbeit_wrap #epsa h2 {
    text-align: center;
    font-size: 5vw;
  }
  #lashbeit_wrap #epsa .wp-block-image.left {
    display: inline-block;
    width: 18%;
    margin: 0 10px 0 10px;
    padding: 0;
  }
  #lashbeit_wrap #epsa div.text {
    display: inline-block;
    vertical-align: top;
    width: 70%;
  }
  #lashbeit_wrap #epsa .txt {
    font-size: 3.5vw;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 170%;
  }
  #lashbeit_wrap #epsa div.text p.seibun {
    width: 96%;
    margin-top: 5%;
    padding: 2%;
    font-size: 2.9vw;
  }
  #lashbeit_wrap #epsa .wp-block-image.right {
    width: 90%;
    margin: 4% 0 0 5%;
  }

  #lashbeit_wrap #about-ebi {
    margin-bottom: 12%;
  }
  #lashbeit_wrap #about-ebi h4 {
    width: 94%;
    font-size: 5vw;
    margin: 0 3% 0 3%;
    padding: 1% 0 3%;
  }
  #lashbeit_wrap #about-ebi p {
    width: 94%;
    margin-top: 5%;
    padding: 0 3%;
  }
  #lashbeit_wrap #about-ebi .wp-block-image {
    width: 96%;
    margin: 0 0 0 2%;
    padding: 0;
  }

  #lashbeit_wrap table.tokkyo {
    width: 96% !important;
    margin: 0 1% 10% 2%;
  }
  #lashbeit_wrap table.tokkyo th,
  table.tokkyo td {
    border: none;
    vertical-align: middle;
    line-height: 1.8;
    font-size: 2.8vw;
    padding: 2% 1% 2% 2%;
  }
  #lashbeit_wrap table.tokkyo td.second {
    width: 28%;
  }

  #lashbeit_wrap #smallwhite {
    border-top: 20px solid #fff;
    padding: 0;
  }
  #lashbeit_wrap #smallwhite h2 {
    color: #28a7e1;
    font-family: "Times New Roman", Times, serif, "Noto Serif JP", serif;
  }
  #lashbeit_wrap #smallwhite p.catch {
    color: #28a7e1;
    font-size: 4.4vw;
    line-height: 1.5em;
    margin: 20px 1% 5% 1%;
  }
  #lashbeit_wrap #smallwhite p.catch span {
    color: #000;
    font-size: 3.2vw;
  }
  #lashbeit_wrap #smallwhite h4 {
    font-size: 3.2vw;
    font-weight: bold;
    margin: -1% 0 2% 3%;
  }

  #lashbeit_wrap #smallwhite .ba,
  #lashbeit_wrap .lbba {
    text-align: center;
    margin: 3% 0 12% 0;
  }
  #lashbeit_wrap #smallwhite .ba img,
  #lashbeit_wrap .lbba img {
    width: 100%;
  }
  #lashbeit_wrap .lbba p.title {
    width: 98% !important;
    margin: 2% 1% 3%;
    background-color: #c39d6f;
    color: #fff;
    font-size: 3.2vw;
  }
  #lashbeit_wrap #smallwhite .ba p.title {
    width: 98%;
    margin: 2% 1% 3%;
    background-color: #28a7e1;
    color: #fff;
    font-size: 3.2vw;
  }
  #lashbeit_wrap #epbm {
    width: 100%;
  }
  #lashbeit_wrap #epbm h3 {
    color: #ed6d47;
    font-size: 5vw;
    line-height: 1.5;
    margin: 0 2% 10% 2%;
  }
  #lashbeit_wrap #epbm p {
    margin: 0 2% 0 3%;
    font-size: 2.9vw;
    line-height: 2;
  }
  #lashbeit_wrap #epbm p.bm1 {
    background: url(../img/uploads/2020/06/ebm.png) no-repeat right top;
    background-size: 400px;
    width: 96%;
    padding: 280px 0 0 0;
    margin: 0 auto;
  }
  #lashbeit_wrap #epbm p.bm2 {
    width: 96%;
    margin: 0 auto 10%;
  }

  #lashbeit_wrap .evi {
    width: 96%;
    text-align: center;
    margin: 0 auto;
  }
  #lashbeit_wrap .evi img {
    width: 100%;
    margin-left: 0;
  }
  #lashbeit_wrap .evi .title {
    color: #fff;
    background: #ed6d47;
  }

  #lashbeit_wrap .pc_none {
    display: inherit;
  }
  #lashbeit_wrap .pc_none img {
    width: 100%;
  }
  #lashbeit_wrap .sp_none {
    display: none;
  }

footer .footer_text {
	margin-left: 12px;
	margin-right: 12px;
  font-size: 18px;
}
footer .footer_text::before {
  margin-right: 18px;
}
footer .footer_text::after {
  margin-left: 18px;
}
.bnarea .bnarea_inner p {
  font-size: 12px;
}

.footer_address p {
  font-size: 14px;
}
.footer_logo img {
  max-width: 50%;
  height: auto;
}
  #footer_top {
    width: auto;
    min-width: inherit;
    padding: 0;
  }
  #footer_top_inner {
    width: auto;
    padding: 30px 0 0px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }
  #footer_bottom {
    width: 100%;
    min-width: inherit;
    height: 59px;
    line-height: 59px;
  }
  table#footer_address th,
  table#footer_address td {
    padding: 0.5em;
  }
  .bnarea {
    font-size: 3vw;
    padding: 48px 12px 0;
  }
  .bnarea img {
    width: 90%;
    margin-bottom: 0 20px;
  }
  .bnarea .bnarea_inner p {
  font-size: 12px;
}

  .input-field small {
    font-size: 2.9vw;
  }

  /*- renew -*/
  img {
    max-width: 100%;
  }

  #schedule {
    width: 100%;
    padding: 20px 0 20px;
  }
  #schedule .benefits {
    margin: -10vh 0 -4.5vh 0;
    display: block;
    text-align: right;
	top: 14px;
	right: 5px;
  }
  #schedule .benefits img {
    width: 26vw;
  }


  #section2 {
    padding-top: 20px;
    margin-bottom: 20px;
  }
  #section2 .mainArea {
    background-size: 100%;
    padding: 10px 0 20px 0;
  }
  #section2 .mainArea > h3 {
    width: 95%;
    font-size: 7vw;
    margin: 0 auto 20px;
    line-height: 1;
  }
  #section2 .mainArea h3 .sub {
    font-size: 5vw;
    line-height: 2;
  }
  #section2 .mainArea p {
    font-size: 3.8vw;
  }
  #section2 .mainArea p.catch {
    margin: 20px auto 0;
  }
  #section2 .big {
    font-size: 6.6vw;
  }
  #section2 .mid {
    font-size: 4.2vw;
  }
  #section2 .innerArea h2 {
    width: 100%;
    letter-spacing: 0;
    font-size: 4.8vw;
    margin: 0;
    padding: 20px 0 15px;
    text-align: center;
  }
  #section2 .innerArea2 .annotation {
    font-size: 2.2vw;
    margin: 5px 0 0;
  }
  #section2 .innerArea2 br {
    display: block;
  }

  .nayami ul {
    padding: 0;
  }

#section2 .nayami p {
  font-size: 18px;
}

#section2 .nayami p span {
  font-size: 24px;
}

  #lashbeit_wrap .nayami ul li {
    color: #fff;
    font-size: 4vw !important;
    line-height: 1.3;
    text-align: left;
    background: url(../img/icon_check_add.png) no-repeat left 8px;
    background-size: 18px;
    padding: 0 0 15px 26px;
  }
  .nayami ul li span {
    font-size: 4.8vw;
  }

  .nayami ul li:first-of-type {
    margin-top: 12px;
  }

  #section3 {
    width: 100%;
    margin-bottom: 20px;
  }
  #section3 h2 {
    /*
    font-size: 6.4vw;
    line-height: 1.2;
    letter-spacing: 0;
    padding: 0 4%;
    */
    font-size: 28px;
    padding: 50px 0;
    background: url(../img/bg_trouble-free.png) no-repeat 100% center;
    background-size: 110px;
    margin-top: 0;
  }
  #section3 .sub {
    font-size: 4.5vw;
  }
  #section3 br {
    display: inherit;
  }

  #section5 {
    padding-bottom: 0px;
    margin-bottom: 0;
    /*width: 98%;*/
    color: #000;
  }
  #section5 h2.title_content .big {
    font-size: 5.2vw;
    letter-spacing: 0;
  }
  /*
  #section5 .merit.leftbox {
    display: block;
    width: 98%;
    margin: 0 auto;
  }
  #section5 .merit.rightbox {
    display: block;
    width: 98%;
    margin: 0 auto;
  }
  #section5 .leftbox h3 {
    width: 100%;
    font-size: 4vw;
    background-size: auto 12px;
    margin: 0 auto;
    line-height: 1.6;
  }
  */
  #section5 h3 .mid {
    font-size: 5.2vw;
  }
  #section5 .merit img {
    width: 100%;
  }
  #section5 h4 {
    font-size: 5.5vw;
    margin: 15px 0 15px;
  }
  #section5 h4 br {
    display: block;
  }

  #section6 h2.title_content {
    font-size: 4vw;
  }
  #section6 h2.title_content .big {
    font-size: 6vw;
  }
  #section6 p {
    /*width: 98%;*/
  }
  #section6 .mainArea p.title {
    font-size: 5vw;
  }
  #section6 .mainArea p.title .big {
    font-size: 5.6vw;
    background: url(../img/bg_line-yellow.png) no-repeat center 17px;
    background-size: auto 10px;
  }
  #section6 .mainArea h3.secret1 {
    font-size: 4vw;
    background-size: 22%;
    padding: 0 0 20px 24%;
    margin: 20px 0 0 0;
    line-height: 1.3;
    letter-spacing: 0;
    font-weight: 500;
  }
  #section6 .mainArea h3.secret1 .mid {
    font-size: 4.6vw;
  }
  #section6 .mainArea h3.secret1 .big {
    font-size: 4.2vw;
  }
  #section6 .innerArea {
    background: url(../img/secret1_txt.png) no-repeat center top;
    background-size: 100%;
    width: 90%;
    height: 60vw;
    margin: 0 0 0 8%;
    padding: 0;
    overflow: hidden;
  }
  #lashbeit_wrap #section6 .mainArea h2 img {
    width: 70%;
  }
  #section6 h4 {
    font-size: 4vw;
    padding: 0px 0 0 0;
    margin: 20px 0;
    letter-spacing: 0;
  }
  #section6 .feature {
    margin: 0;
    padding: 0;
    background-size: 15%;
  }
  #section6 .feature li {
    font-size: 3.5vw;
    padding: 3px 0 13px 23px;
    letter-spacing: 0;
	width: 78%;
	text-indent: -10px;
  }
  #section6 .feature li:first-child {
    background-size: 20px;
  }
  #section6 .feature li:nth-child(2) {
    background-size: 20px;
  }
  #section6 .feature li:nth-child(3) {
    background-size: 20px;
  }
  #section6 .feature li:nth-child(4) {
    background-size: 20px;
  }
  #section6 .feature li:nth-child(5) {
    background-size: 20px;
  }
  #section6 .feature li:nth-child(6) {
    background-size: 20px;
  }
  /*
  #section6 .line {
    font-size: 4.2vw;
    background: url(../img/bg_line-yellow.png) no-repeat center bottom;
    background-size: auto 6px;
  }
  */
  #section6 .fgf7 h5 {
    padding: 0 0 5px;
  }
  #section6 .mainArea h3 {
    font-size: 4vw;
    margin: 30px 0 15px 0;
  }
  #section6 .mainArea h3 .big {
    font-size: 5vw;
  }
  #section6 .mainArea h3 .line {
    font-size: 5.9vw;
    background: url(../img/bg_line-yellow.png) no-repeat center 14px;
    background-size: auto 12px;
  }
  #section6 p {
    font-size: 3.5vw;
    letter-spacing: 0;
  }

  

  #section7 .mainArea h3.secret2 {
    font-size: 4vw;
    background-size: 22%;
    padding: 10px 0 46px 24%;
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
  }
  #section7 .mainArea h3.secret2 .mid {
    font-size: 4.2vw;
  }
  #section7 .mainArea h3.secret2 .big {
    font-size: 4.2vw;
    letter-spacing: 0;
  }
  #section7 .innerArea {
    background: url(../img/secret2_txt.png) no-repeat center top;
    background-size: 100%;
    width: 98%;
    height: 50vw;
    padding: 30px 3%;
  }
  #section7 h4 {
    font-size: 4.5vw;
    text-align: center;
    padding: 0;
    /*margin: 0 0 10px 3%;*/
    margin: 0 0 20px;
    letter-spacing: 0;
  }
  #section7 h4 .big {
    font-size: 5.9vw;
    line-height: 1.2;
  }
  #section7 .aboutep {
    margin: 15px auto 0;
  }
  #section7 .aboutep h4 {
    font-size: 5.5vw;
    margin-bottom: 7px;
  }
  #section7 .aboutep p img {
    width: 40%;
    padding: 4px 0 0 4px;
  }
  #section7 .feature {
    margin: 0;
    padding-top: 0;
  }
  #section7 .feature li {
    font-size: 3.8vw;
    padding: 2px 0 15px 23px;
    line-height: 1.3;
    background-size: 25px !important;
	text-indent: -10px;
  }
  #section7 .feature li p {
    width: 67%;
    margin-top: 7px;
    font-size: 3.5vw;
    line-height: 1.5;
    letter-spacing: 1px;
  }
  #section7 .feature li .head {
    width: 100%;
    margin: -30px 0 -20px;
    padding: 40px 48% 20px 0;
    background: url(../img/img_head.jpg) no-repeat 75% 11vw;
    background-size: 30%;
  }
  /*
  #section7 .line {
    font-size: 4.6vw;
    background: url(../img/bg_line-yellow.png) no-repeat center bottom;
    background-size: auto 8px;
  }
  */
  #section7 .egmmini {
    display: block;
    padding: 0;
    margin: -25vh 0 2vh 0;
  }
  #section7 .egmmini img {
    width: 20%;
    padding: 0 0 0 79%;
  }

  #section8 {
    margin-bottom: 40px;
  }
  #section8 h2 {
	padding: 40px 0;
    background: url(../img/bg_voice.png) no-repeat 100% center;
    background-size: 150px;
  }
  #section8 h2.title_content span.big {
    font-size: 24px;
  }
    #section9 .h2sub {
    font-size: 21px;
  }
  #section8 h3 {
    font-size: 4vw;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  #section8 h3 img {
    height: 25vw;
    padding: 0 0 15px;
  }
  #section8 .inta {
    width: 100%;
  }
  #section8 .inta p {
    font-size: 4.5vw;
    margin-bottom: 8px;
  }
  #section8 .inta p.shopname {
    font-size: 3vw;
  }
  #section8 .img_shop {
    margin: 30px 0 0 0;
  }
  .arrow_box {
    position: relative;
    background: #f2dec6;
    padding: 20px;
    text-align: left;
    border: 1px solid #f2dec6;
    color: #333333;
    font-size: 4vw;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
  }
  .arrow_box:after,
  .arrow_box:before {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
  }
  .arrow_box:after {
    border-color: rgba(219, 204, 184, 0);
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 12px;
    border-right-width: 12px;
    margin-left: -12px;
    border-top-color: #f2dec6;
  }
  .arrow_box:before {
    border-color: rgba(198, 155, 115, 0);
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 13px;
    border-right-width: 13px;
    margin-left: -13px;
    margin-top: 1px;
    border-top-color: #f2dec6;
  }
  

  #section8 .two {
  	flex-direction : column;
  }
  #section8 .two .arrow_box {
  	flex-basis: 0;
	margin-right: 0;
	margin-left: 0;
  }
  #section8 .two:nth-child(even) .arrow_box {
  	order: 1;
  }
  #section8 .two:nth-child(odd) .arrow_box::after,
  #section8 .two:nth-child(even) .arrow_box::before {
  	border: none;
  }
  #section8 .two:nth-child(even) figure {
  	order: 2;
  }
  #section8 .two .arrow_box-inner {
  	width: 100%;;
  }
  #section8 .two .arrow_box-inner p {
  	margin-right: 0;
  	margin-left: 0;
  }
  #section8 .two figure.img.right {
  	margin-top: 15px;
  	padding-left: 0;
	flex-basis : 0;
  }
  #section8 .two figure.img.left {
  	margin-top: 15px;
  	padding-right: 0;
	flex-basis : 0;
  }
  #section9 h2 span {
    font-size: 7vw;
    padding: 0;
  }
  #section9 img {
    margin: 15px 0 0 0;
  }
  #section9 p.media {
    font-size: 2.5vw;
    line-height: 1.5;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  #section9 p.media br {
    display: none;
  }

  #sectionSemi .mainArea h3 {
    width: 98%;
    font-size: 5vw;
    padding: 30px 0 5px 0;
    margin: 0 auto 15px;
  }
  #sectionSemi ul li {
    line-height: 1.3;
  }

  .digest {
    margin: 30px auto 0;
    width: 100%;
  }
  .digest h3 {
    text-align: center;
    font-size: 4.5vw;
    margin-bottom: 4px;
  }
  .digest iframe {
    width: 96%;
    height: 30vh;
    margin-left: 2%;
  }

  #present {
    margin: 0px auto;
    padding: 36px 24px;
  }
  #present .inner .bunner_img div:nth-child(2) {
	margin-top: 10px;
  }

  .footer_widget h3 {
    font-size: 21px;
    letter-spacing: 0;
  }

  .demo01__btn {
    position: fixed;
    bottom: 0;
    left: 2%;
    display: block;
    padding: 10px;
    width: 96%;
    background-color: #333;
    box-sizing: border-box;
    z-index: 100;
  }
  .demo01__link {
    display: flex;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    height: 40px;
    color: #fff;
    text-decoration: none;
    background-color: #333;
    justify-content: center;
    align-items: center;
    font-size: 4.5vw;
  }
  .input-field small {
    font-size: 3.2vw;
    line-height: 1.5;
  }
}

