@charset "utf-8";
/* ===================================================== */
/* CONTENTS
  <全デバイス共通＞
    1.共通要素一般
    2.clearfix
    3.display none
    
  ＜デバイスごと共通＞
    1.コンテナ要素
    2.text要素
    3.color

  ＜sectionごと共通＞
    1.fixed menu
    2.fixed menu
    3.header
    4.gnav
    5.mainview
    6.slide
    7.mimamori
    8.func
    9.intro
    10.inst
    11.faq
    12.price
    13.log_in
/* ===================================================== */



/* ===================================================== */
/* TAG ELEMENT */
/* ===================================================== */


/******************************************/
/*  全デバイス共通　 
/******************************************/

/* 共通要素一般 --------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body { height: 100%; }
body {
background-color: #fff;
color: #6a3906;
font-size: 16px;
line-height: 20px;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}


/* clearfix ---------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
.clearfix { display: inline-block; }
/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }


/* display none -----------*/
.displayNone{
	display:none;
}




/******************************************/
/*  デバイスごと共通 　 
/******************************************/

/* コンテナ要素 -------------*/
#all_container { width: 100%; }
.check_bg {
  background:url(../images/body_bg.gif) repeat;
  padding: 40px 0;
  margin-top: 20px;
}
.bg_white { background-color: #fff; }
.section_box {
  width: 1000px;
  margin: 0 auto;
  padding: 20px 0 50px;
  border-radius: 10px;
}
.contents_wrapper {
  width: 90%;
  padding: 20px 0;
  margin: 0 auto;
}
.right {
  float:right;
  width: 50%;
}
.left {
  float: left;
  width: 50%;
}

@media screen and (max-width: 1025px) {
  .section_box {
    width: 95%;
    margin: 0 auto;
  }
  
  .contents_wrapper {
    width: 95%;
    padding: 20px 0;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .section_box {
    padding: 20px 0 0;
  }
  #all_container { padding-top: 40px; }
}


/* text要素 ---------------*/
h2 {
  font-size: 22px;
  line-height: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}
h3 {
  font-size: 18px;
  line-height: 1.6rem;
  font-weight: bold;
  color: #E8648C;
}
h4 {
  font-size: 16px;
  color: #fff;
  background: #f19149;
  width: 100%;
  padding: 5px;
}
li { list-style-type: none; }
a {
  color: #f19149;
  text-decoration: none;
  border-bottom: 1px solid #f19149;
  padding-bottom: 1px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.2rem;
}
a:hover {
  color: #F8BE92; 
  text-decoration: none;
  border-bottom: 1px solid #F8BE92;
  padding-bottom: 1px;
}
a.white {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 1px;
  cursor: pointer;
}
a.white:hover {
  color: #F4E5E4; 
  text-decoration: none;
  border-bottom: 1px solid #F4E5E4;
}
p {
  font-size: 16px;
  font-color: #6A3906;
  line-height: 1.4rem;
}
.annotation {
  font-size: 14px;
  line-height: 20px;
}
.br_1025 { display: none; }
.br_tab {display: none; }

@media screen and (max-width: 1025px) {
  .pc_br { display: none }
  .br_1025 { display: inline; }
}

@media screen and (max-width: 767px) {
  .br_1025 { display: none; }
  .br_tab {display: inline; }
}

@media screen and (max-width: 479px) {
  h3 {
    text-align: left;
  }
  h2 {
    font-size: 20px;
    line-height: 1.8rem;
  }
  .br_tab { display: none; }
  .br_sp { display: inline; }
}


/* color -----------------*/
.brown { color: #6A3906; }
.pink { color: #D75E83; }
.orange { color: #F19149; }
.white { color: #fff; }
.bold { font-weight: bold; }




/******************************************/
/*  section ごと共通 　 
/******************************************/

/* fixed menu ------------*/
.bg_color {
  background-color: #E8648C;
  width: 100%;
  height: 45px;
  position: fixed;
  z-index: 999;
}
#menu{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
#menu li{
  display: block;
  float: left;
  width: calc(99%/7);
  margin: 0;
  padding: 0;
}
#menu li:not(:last-child) {
  border-right: 1px solid #fff;
}
#menu li a{
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-bottom: none;
  padding-top: 4px;
}
#menu li a.padding_top {
  display: block;
  padding: 13px 0 12px;
}
#menu li a:hover{
  background-color: #EF7D9F;
}
#menu li .top{
  padding-top: 15px;
}
.slicknav_menu {
	display:none;
}
#menu_drwr {
  display: none;
}

@media screen and (max-width: 767px) {
  #menu-box { display: none; }
  .bg_color { display: none; }
  #menu { display: none; }
  #menu_drwr {
      display:none;
  }
  .slicknav_menu {
    position: fixed;
    z-index: 999;
    display: block;
    width: 100%;
  }
  .slicknav_menu {
    text-align:center;
  }
  .slicknav_menu a { border: none; }
  .slicknav_menu .btn_box{
    border: none;
    text-align: center;
    float:left;
  }
  .slicknav_menu .btn_box{
    width: calc(99%/4);
  }
  .slicknav_menu .btn_box img {
    width: 50%;
    height: auto;
    margin: 10px auto 0;
  }
  .slicknav_menu p {
    font-size: 16px;
    line-height: 1.2rem;
    font-weight: bold;
    padding-top: 8px;
    color: #F19149;
  }
}

@media screen and (max-width: 479px) {
  .slicknav_menu .btn_box{
    width: calc(99%/2);
  }
  .slicknav_menu .btn_box img {
    width: 40%;
  }
  .slicknav_menu p {
    font-size: 14px;
    line-height: 1rem;
  }
}


/* header ----------------*/
#main_header {
  padding-bottom: 0;
  width: 1000px;
  margin: 20px auto 0;
}
.top_read {
  width: 100%;
  float: left;
}
.header_right {
  float:right;
  width: 60%;
}
.header_left {
  float: left;
  width: 40%;
}

.header_end {
	padding-top:100px;
	padding-bottom:20px;
	text-align:right;
	font-size:21px;
  	font-weight:bold;
	line-height:150%;
  	color:#0033FF;
}
	
.logo { margin-top: 10px; }
.logo_animation {
  /* ５秒かけてアニメーションする */
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  /* 4秒待ってからアニメーションする */
  -webkit-animation-duration: 1s;
  animation-delay:1s;
}
.comp_btn_tab { display: none; }
.comp_btn {
  float: right;
  padding-top: 5px;
  margin-bottom: 10px;
}
.contact_btn { margin-top: 0px; }
a.button {
	position: relative;
	display: inline-block;
	padding: 10px 30px 10px 15px;
	background-color: #E8648C;
	border: none;
	color: #fff;
	text-align: center;
	text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.4rem;
  font-weight: bold;
  float: right;
  clear: both;
}
a.button:hover {
  color: #fff;
  background-color: #EB6F95;
  text-decoration: none;
}
a.button i { padding-right: 5px; }
.button::after {
	position: absolute;
	top: 50%;
	right: .2em;
	content: '';
	margin-top: -5px;
	border: 7px solid transparent;
	border-top-width: 5px;
	border-bottom-width: 5px;
	border-left-color: #fff;
}
.button:hover::after {
	animation: arrow .4s;
}
@keyframes arrow {
	50% {
		right: -.05em;
	}
	100% {
		right: .2em;
	}
}

@media screen and (max-width: 1025px) {
  #main_header { width: 95%; }
  .header_right { width: 60%; }
  .header_end {
  	padding-top:140px;
	text-align:left;
  	font-weight:bold;
  	color:#0033FF;
	}
}

@media screen and (max-width: 767px) {
  #main_header { margin: 0 auto; }
  .comp_btn { display: none; }
  .comp_btn_tab {
    display: inline;
    float: right;
    margin-bottom: 10px;
    padding-top: 20px;
  }
  .header_left {
    width: 100%;
    text-align: center;
  }
  .header_right {
    width: 100%;
    text-align: center;
  }
  .contact_btn {
    width: 100%;
    margin-top: 0;
  }
  a.button {
    float: none;
    margin-top:10px;
    clear: none;
  }
  .header_end {
  	padding-top:20px;
	text-align:center;
  	font-weight:bold;
  	color:#0033FF;
	}
}

@media screen and (max-width: 479px) {
  .header_right {
    float:right;
    width: 100%;
  }
  .header_left {
    float: left;
    width: 100%;
  }
  .header_left .logo {
    width: 100%;
    max-width: 364px;
    height: auto;
  }
  a.button {
    font-size: 14px;
    line-height: 1.2rem;
  }
  .header_end {
  	padding-top:20px;
	text-align:center;
  	font-weight:bold;
  	color:#0033FF;
	}
}


/* gnav -----------------*/
#gnav {
  margin-top: 20px;
}
#gnav li {
  position: relative;
  width: calc( 98%/7 );
  float: left;
  text-align: center;
}
#gnav .icon{
  position: relative;
  z-index: 2;
  width: 60%;
  height: auto;
  padding-bottom: 30px;
  cursor: pointer;  
}
#gnav li a {
  margin-top: -25px;
  border: none;
  font-weight: bold;
  cursor: default;
}

#gnav a:hover {
  color: #F19149;
}

@media screen and (max-width: 767px) {
  #gnav {
    display: none;
  }
}

/* mainview -------------*/
.main_img_read { display: none; }

#main_view {
  text-align: center;
}

#main_view img {
  width: 1000px;
  height: auto;
}

@media screen and (max-width: 1025px) {
  #main_view {
    text-align: center;
    margin-bottom: 40px;
  }
  
  #main_view img {
    width: 95%;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .main_img_read {
    display: block;
    clear: both; 
    margin: 20px auto 0;
    width: 95%;
  }
}


/* slide ----------------*/
#slide {
  margin: 0 0 20px;
}
#slide .left {
  padding-right: 10px;
}
#slide_box img {
  width: 100%;
  height: auto;
}
.bubble {
   position: relative;
   background: url(../images/bubble.png) no-repeat;
   -webkit-background-size: contain;
   -ms-background-size:contain;	
   background-size: contain;
   padding: 8% 0 0;
   text-align: center;
}
.bubble img {
  width: 70%;
  height: auto;
}
.bubble p {
  font-weight: bold;
}

@media screen and (max-width: 1025px) {
  #slide {
    margin-top: -40px;
  }

  .bubble {
    padding-top: 6%;
  }
}

@media screen and (max-width: 767px) {
  #slide { margin-bottom: 10px }
  
  #slide .left, #slide .right {
    float: none;
  }
  
  #slide .left {
    width: 70%;
    margin: 0 auto;
    padding-right: 0;
  }
  
  .bubble {
     position: relative;
     background: none;
     -webkit-background-size: contain;
     -ms-background-size:contain;	
     background-size: contain;
     padding-top: 0%;
     text-align: center;
     padding: 15px;
     width: 70%;
     margin: -20px auto 30px;
     background-color: #F0CECB;
     position: relative;
     border-radius: 10px;
  }

  .bubble:after {
    border-top: 18px solid #F0CECB;
    border-right: 18px solid transparent;
    border-left: 18px solid transparent;
    content: '';
    margin-left: -10px;
    position: absolute;
    bottom: -18px;
    left: 50%;
  }
}

@media screen and (max-width: 479px) {
  #slide .left, #slide .right {
    width: 100%;
  }
  .br_slide{ display: none; }
}


/* mimamori -------------*/
.section_title {
  width: 100%;
  text-align: center;
}
.section_title img { margin-bottom: 40px; }
.main_box p {
  background-color: #F19149;
  border-radius: 10px;
  padding: 10px 10px;
  text-align: center;
  margin: 0 auto 15px;
  position: relative;
}
.main_box p::after {
	position: absolute;
	top: 99%;
	left: 50%;
	content: '';
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 15px solid #F19149;
}
img.mimamori01 {
  margin-top: 40px;
  width: 100%;
  height: auto;
}
img.mimamori02 {
  margin-top: 10px;
  width: 100%;
  height: auto;
}
.bk_pink {
  position: relative;
  margin-top: 40px;
}
.bk_pink h2 {
    padding: 5px 5px 1px 30px;
    background: #e8648c;
    text-align: left;
    width: 450px;
    position: absolute; 
    top: 10px;
    left: -10px;
}
.bk_pink h2:before {
    content: " ";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent;
    border-right-color: #D75E83;
}
.bk_pink h2:after {
    content: " ";
    position: absolute;
    top: 0px;
    left: 100%;
    width: 0;
    height: 0;
    border-width: 19px 10px;
    border-style: solid;
    border-color: #e8648c;
    border-right-color: transparent;
}
.bk_pink p {
  background-color: #F0CECB;
  padding: 60px 10px 10px;
  border-radius: 10px;
}
.cont_contact_btn {
  margin-top: 10px;
  text-align: right;
}  

@media screen and (max-width: 1025px) {
  .bk_pink h2 {
    width: 450px;
  }
}

@media screen and (max-width: 767px) {
  .main_box { text-align: center; }

  .main_box h2 {
    text-align: left;
  }
  .main_box p {
    text-align: left;
  }
  .bk_pink h2 {
      width: 300px;
  }
  .bk_pink h2:after {
      border-width: 35px 10px;
  }
  .bk_pink p {
    padding: 90px 10px 10px;
  }
  img.mimamori01 {
    width:430px;
    height: auto;
  }
  img.mimamori02 {
    width:430px;
    height: auto;
    margin-top: 20px;
  }
}

@media screen and (max-width: 479px) {
  .section_title img {
    width: 90%;
    height:auto;
  }
  img.mimamori01 {
    width:90%;
  }
  img.mimamori02 {
    width:90%;
  }
  .bk_pink h2 {
    position: absolute;
    background: none;
    color: #E8648C;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
  }
  .bk_pink h2:before {
    display: none;
  }
  .bk_pink h2:after {
    display: none; 
  }
  .bk_pink p {
    padding-top: 80px;
  }
  .cont_contact_btn {
    margin-top: 10px;
    text-align: center;
  }
}



/* func -----------------*/
#func { background-color: #fdefe8; }
#func .section_title { margin-top: 20px; }
.section_title img.func {
  padding-top: 10px;
}
#func h2 { text-align: center; }
.bk_green {
  margin: 20px 0;
  padding: 10px;
  border-radius: 10px;
  background-color: #8ec31c;
}
#func .main_box {
  text-align: center;
}
.clearfix_tab { display: none; }
.clearfix_1025 { display: block; }
.fea_box {
  width: calc( 99%/3 );
  text-align: center;
  float: left;
  margin-top:20px;
}
.fea_box p {
  font-weight: bold;
  height: 75px;
}
.fea_box .annotation {
  margin: 10px auto 0;
  text-align: left;
  width: 80%;
  font-weight: normal;
  height: auto;;
}
#func .cont_contact_btn {
  margin-top: 40px;
}

@media screen and (max-width: 1025px) {
  img.func01 {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  #func { padding-bottom: 40px; }
  #func h2 { text-align:left; }
  img.func01 {
    width: 100%;
    max-width: 480px;
    height: auto;
  }
  .clearfix_1025 { display: none; }
  .clearfix_tab { display: block; }
  .fea_box {
    width: calc( 99%/2 );
  }
  .fea_box p {
    height: auto;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 479px) {
  .section_title img.title_s {
    max-width: 180px;
    width: 100%;
    height: auto;
  }
  #func h2 { text-align: left; }
  br.pc { display: none; }
  .fea_box {
    width: 100%;
  }
  .fea_box .annotation {
    width:  70%;
  }
}


/* intro ----------------*/
#intro {
  padding-top: 20px;
  background-color: #fff;
	background-image: linear-gradient(-45deg, rgba(243,222,221,.5) 25%, transparent 25%, transparent 50%, rgba(243,222,221,.5) 50%, rgba(243,222,221,.5) 75%, transparent 75%, transparent 100%), linear-gradient(45deg, rgba(243,222,221,.5) 25%, transparent 25%, transparent 50%,  rgba(243,222,221,.5) 50%, rgba(243,222,221,.5) 75%, transparent 75%, transparent 100%);
	background-size: 52px 52px;
}
.intro_box {
  float: left;
  width: calc(95%/4);
  background-color: #fff;
  padding: 5px;
  text-align: center;
  margin-right: 1%;
}
.q_box {
  float: left;
  width: calc(95%/5);
  background-color: #fff;
  padding: 5px;
  text-align: center;
  margin-right: 1%;
}
#intro .intro_box {
   /* box-shadow */
box-shadow:2px 3px 6px 1px #F0CECB;
-moz-box-shadow:2px 3px 6px 1px #F0CECB;
-webkit-box-shadow:2px 3px 6px 1px #F0CECB;
}
.intro_box01 { margin-left: 1%; }
.intro_box p { padding: 10px 0; }
.intro_box i { color: #F19149; }
.intro_box i:hover { color: #F49F60; }
.intro_box img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  #intro { 
    padding-bottom: 40px;
    background-color: #fff;
    background-image: linear-gradient(-45deg, rgba(243,222,221,.5) 25%, transparent 25%, transparent 50%, rgba(243,222,221,.5) 50%, rgba(243,222,221,.5) 75%, transparent 75%, transparent 100%), linear-gradient(45deg, rgba(243,222,221,.5) 25%, transparent 25%, transparent 50%,  rgba(243,222,221,.5) 50%, rgba(243,222,221,.5) 75%, transparent 75%, transparent 100%);
    background-size: 52px 52px;
  }
  .intro_box {
    width: calc(97%/2);
  }
  .intro_box01 { margin-left: 1%; }
  .intro_box03 { margin-left: 1%; }
  .intro_box03,.intro_box04 { margin-top:10px; }
}

@media screen and (max-width: 479px) {
  #intro { padding-bottom: 40px; }
  .intro_box {
    max-width: 300px;
    width: 100%;
  }
  .intro_box {
    margin: 0 auto;
    float: none;
  }
  .intro_box02,.intro_box03,.intro_box04 { margin-top:10px; }
}


/* inst -----------------*/
#inst { padding-top: 20px; }
.inst_box {
  width: 50%;
  float: left;
  text-align: center;
}
.inst_box:nth-child(n + 3) {
  margin-top: 30px;
}
.inst_box h3 {
  width: 85%;
  margin: 20px auto 0;
  padding: 10px;
  border: 2px solid #8EC31C;
  border-radius: 10px;
  position: relative;
  background: #ffffff;
  text-align: left;
}
.inst_box h3:after, .inst_box h3:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.inst_box h3:after {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #ffffff;
	border-width: 15px;
	margin-left: -15px;
}
.inst_box h3:before {
	border-color: rgba(142, 195, 28, 0);
	border-bottom-color: #8EC31C;
	border-width: 18px;
	margin-left: -18px;
}
.app_sp {
  display: none;
}

.inst_contact { margin-top: 40px; }

.inst_textbox {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 0;
  color:#F19149;
  text-align: center;
}
.inst_textbox  {
  margin: 10px 0
}
.inst_textbox h2 {
  padding:8px 10px;
  border: #F19149 2px;
  border-style: solid none;
  background: repeating-linear-gradient(
    45deg,
    #fff,
    #fff 3px,
    rgba(248,190,146, 0.3) 3px,
    rgba(248,190,146, 0.3) 6px
  );
}
.app_tbl {
  float: right;
  margin: 20px 0 0;
}
.app_tbl th, .app_tbl td {
  padding: 0 10px;
}
.app_tbl td {
  padding: 0 10px;
}
.app_tbl th {
  width: 100px;
}
.app_tbl th a {
  border:  none;
}
.app_tbl th img {
  width: 100%;
  height: auto;
}
.badge:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1025px) {
  .inst_box img {
    width: 95%;
    height: auto;
  }
  .inst_contact { margin-top: 40px; }
}

@media screen and (max-width: 767px) {
  #inst { padding-bottom: 40px; }
  .inst_textbox {
    text-align: left;
  }
  .app_tbl {
    float: none;
    margin: 10px auto 0;
  }
  .app_tbl td {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  #inst { padding-bottom: 40px; }
  .inst_box {
    float: none; 
    width: 100%;
    max-width: 398px;
    height: auto;
    margin: 0 auto;
  }
  .inst_box:not(:first-child){ margin-top: 20px; }
  .inst_box h3 { text-align: left; }
  .inst_contact { margin-top: 40px; }
}


/* faq ------------------*/
.answer, .answer-title { display: none; }
#faq {
  padding-top: 40px;
  background-color:#fdefe8;
  background-image: radial-gradient(white 15%, transparent 16%),
  radial-gradient(white 15%, transparent 16%);
  background-size:30px 30px;
  background-position: 0 0, 15px 15px;
}
.faq_top {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-between;
}
.question {
	width: calc(95%/5);
  background: #fff;
  padding: 5px;
}
.question:last-child {
  display: none;
}
figure {
  border: 1px solid #F0CECB;
	position: relative;
	overflow: hidden;
  height: 230px;
  padding: 15px 10px;
}
figure img {
  margin-bottom: 15px;
}
figcaption {
	position: absolute;
	top: -100%;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: rgba(240,206,203,1);
	-webkit-transition: .3s;
	transition: .3s;
	opacity: 1;
  padding: 10px;
}
figure:hover figcaption {
	top: 0;
	left: 0;
}
figure .text {
  margin-top: 10px;
  text-align: left;
}

@media screen and (max-width: 1025px) {
  .question {
    width: calc(95%/3);
  }
  .question:last-child {
    display: block;
    background: transparent;
  }
  .question:nth-child(4), .question:nth-child(5) {
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  #faq {
    padding-bottom: 2em;
  }
  figure {
    height: 100%;
  }
  .question {
    width: calc(95%/2);
  }  
  .question:nth-child(3), .question:nth-child(4), .question:nth-child(5) {
    margin-top: 15px;
  }
  figcaption {
    display: none;
  } 
  .answer, .answer-title {
    display: block;
  }
  .answer-title {
    padding: 10px 0;
    margin-top: 10px;
    color: #F19149;
    border-top: 1px solid #F0CECB;
  }
}

@media screen and (max-width: 479px) {
  .question {
    display: block;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
  .question:nth-child(1) {
    margin-bottom: 15px;
  }
}


/* price ----------------*/
#price {
  background-color: #f8b551;
  padding-top: 40px;
}
#price .section_title02 { display: none; }
.price_container {
  padding:8px 10px;
  background: repeating-linear-gradient(
    -45deg,
    #f8b551,
    #f8b551 3px,
    #6A3906 3px,
    #6A3906 6px
  ); 
  border-radius: 10px;
  position: relative;
  float: left;
}
.price_left {
  width: 60%;
  margin-right: 2%;
}
.price_right {
  width: 38%;
}
.price_box {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.price_ribbon {
    position: relative;
    padding: 10px 10px 10px 30px;
    background: #6A3906;
    text-align: left;
    width: 250px;
    position: absolute; 
    top: 20px;
    left: -10px;
}
.price_ribbon:before {
    content: " ";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent;
    border-right-color:#4E2A05;
}
.price_ribbon:after {
    content: " ";
    position: absolute;
    top: 0px;
    left: 100%;
    width: 0;
    height: 0;
    border-width: 21px 10px;
    border-style: solid;
    border-color: #6A3906;
    border-right-color: transparent;
}
.machine,.pendant {
  margin: 70px 0 20px;
}
.machine {
  max-width: 440px;
  width: 80%;
  height: auto;
}
.price_logo {
  max-width: 364px;
  width: 100%;
  height: auto;
}
.set_box {
  margin: 20px auto 20px;
}
.set {
  font-weight: bold;
  padding-right: 10px;
}
.price_p {
  font-family: 'Open Sans', sans-serif;
  font-size: 40px;
  font-weight: bold;
  margin: 20px 0;
}
.pendant {
  max-width: 251px;
  width: 80%;
  height: auto;
  margin: 70px 0 20px;
}
.monthly {
  width: 55%;
  float: right;
}
.payment {
  margin-top: 20px;
  background-color: rgba(255,255,255,0.3);
  border-radius: 10px;
  padding: 10px 10px 0;
}
.payment .left { padding-right: 5px; }
.payment .right { padding-left: 5px; }
.payment_text {
  padding-left: 10px;
  font-size: 14px;
  line-height: 1.2rem;
  margin: 10px 0;
}
.payment_text a {
  font-weight: bold;
  color: #3B2A1A;
  border-bottom: none;
  text-decoration: underline;
}
.payment_text a:hover {
  color: #3B2A1A;
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  #price { padding-bottom: 40px; }
  .price_container {
    float: none;
    width: 90%;
    margin: 0 auto;
  }
  .price_right { margin-top: 10px; }
  #price .cont_contact_btn { margin-top: 10px; }
  .payment .left { width:100%; }
  .payment .right { width:100%; }
}

@media screen and (max-width: 479px) {
  .monthly {
    margin-top: 50px;
    width: 100%;
  }
  .set_box td {
    display: block;
  }
  .price_set {
    margin-bottom: 0px;
  }
}


/* log_in ---------------*/
#log_in {
  margin-top: 0;
}
#log_in .section_box {
  text-align: center;
}
#form{
    width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #D75E83;
    border-radius: 10px;
}
#form h2 { margin-bottom: 20px; }
form { text-align: left; }
form p{
    font-size: 14px;
    }

.form-title{
    text-align: center;
    }

.mail,.pass{
    margin-bottom: 20px;
    }
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 5px;
    font-size: 14px;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    }
.check { text-align: center; }
.submit{
    text-align: center;
    margin: 15px 0;
}
.login_btn {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  background-color: #F0CECB;
  font-size: 18px;
  font-weight: bold;
  color: #D75E83;
}

@media screen and (max-width: 767px) {
  #log_in {
    padding: 20px 0 40px;
  }
}

@media screen and (max-width: 479px) {
  #form {
      width: 100%;
  }
}


/* footer --------------*/
#footer {
  background-color: #D75E83;
  padding: 15px 0 10px;
  height: 145px;
}
.footer_tb {
  margin: 0 auto 10px;
  padding: 0;
}
.footer_tb td {
  padding: 0;
}
.footer_tb a { border-bottom: none; }
.footer_tb a:hover { border-bottom: none; }
.footer-company {
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer h3 {
  text-align: center;
  color: #fff;
}
#footer h3:first-child {
  margin-right: 15px;
}
#footer p {
  font-size: 12px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  #footer {
    background-color: #D75E83;
    padding: 15px 0 10px;
    height: 155px;
  }
  .footer-company {
    display: block;
    align-items: center;
    justify-content: center;
  } 
  #footer h3:first-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 479px) {
  #footer {
    background-color: #D75E83;
    padding: 15px 0 10px;
    height: 170px;
  }
}