@charset "UTF-8";
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*----------------------------
---共通
----------------------------*/
body {
  background: #fff;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #282828;
}
img {
  width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}
a {
  cursor: pointer;
  color: #282828;
  text-decoration: none;
}
.pc { display: block !important; }
.sp { display: none !important; }

@media only screen and (max-width: 599px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }
  .pc { display: none !important; }
  .sp { display: block !important; }
}
/*----------------------------
---header
----------------------------*/
.header {
  width: 100%;
  height: auto;
  background: #fff;
  border-bottom: solid 1px #F6F5F5;
  box-sizing: border-box;
  position: fixed;
  z-index: 9999;
}
.header .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header_inner h1 {
  max-width: 170px;
  height: auto;
  margin: 0 50px;
}
.header .navigroup ul {
  display: flex;
  align-items: center;
  text-align: center;
}
.header .navigroup ul .h-tell_btn {
  margin-right: 10px;
}
.header .navigroup ul .h-tell_btn a {
  width: 270px;
  height: auto;
  color: #282828;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
}
.header .navigroup ul .h-tell_btn a::before {
  content:"";
  display: inline;
  background-image: url(../img/common/tell.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height:30px;
  width:15px;
  vertical-align: middle;
  margin-right: 8px;
}
.header .navigroup ul .h-tell_btn p {
  font-size: 0.8em;
  margin-top: -7px;
}
.header .navigroup ul .h-web_btn a {
  width: 270px;
  height: 90px;
  background-color: #0053A7;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header .navigroup ul .h-web_btn a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-top: 10px solid transparent;
  border-right: 10px solid #fff;
  border-bottom: 10px solid #fff;
  border-left: 10px solid transparent;
}
.header .navigroup ul .h-tell_btn a:hover,
.header .navigroup ul .h-web_btn a:hover {
  opacity: 0.7;
}
.navigroup_footer,
.header-sp {
  display: none;
}
.header-pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .header {
    position: initial;
  }
  .header-pc {
    display: none;
  }
  .header-sp {
    display: block;
  }
  .header .header_inner h1 {
    width: 15%;
    margin: 2% auto;
  }
  .navigroup_footer {
    display: block;
    width: 100%;
    height: auto;
    background: #fff;
    border-top: solid 1px #F6F5F5;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    z-index: 9999;
  }
  .navigroup_footer ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
  }
  .navigroup_footer ul .h-tell_btn,
  .navigroup_footer ul .h-web_btn {
    width: 49%;
  }
  .navigroup_footer ul .h-tell_btn a {
    width: 100%;
    height: auto;
    color: #282828;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
  }
  .navigroup_footer ul .h-tell_btn a::before {
    content:"";
    display: inline;
    background-image: url(../img/common/tell.svg);
    background-repeat: no-repeat;
    background-size: contain;
    height:30px;
    width:15px;
    vertical-align: middle;
    margin-right: 8px;
  }
  .navigroup_footer ul .h-tell_btn p {
    font-size: 0.8em;
    margin-top: -7px;
  }
  .navigroup_footer ul .h-web_btn a {
    width: 100%;
    height: 90px;
    background-color: #0053A7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .navigroup_footer ul .h-web_btn a::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    border-top: 10px solid transparent;
    border-right: 10px solid #fff;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
  }
  .navigroup_footer ul .h-tell_btn a:hover,
  .navigroup_footer ul .h-web_btn a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width:599px) {
  .header .header_inner h1 {
    width: 30%;
    margin: 2% auto;
  }
  .navigroup_footer ul .h-tell_btn a {
    font-size: 1.2em;
  }
  .navigroup_footer ul .h-tell_btn a::before {
    height:25px;
    margin-right: 0;
  }
  .navigroup_footer ul .h-tell_btn p {
    font-size: 0.7em;
    margin-top: 0;
  }
  .navigroup_footer ul .h-web_btn a {
    height: 80px;
    font-size: 1em;
  }
}
@media screen and (max-width:375px) {
  .navigroup_footer ul .h-tell_btn a {
    font-size: 1.1em;
  }
  .navigroup_footer ul .h-tell_btn a::before {
    height:20px;
  }
  .navigroup_footer ul .h-web_btn a::after {
    right: 5px;
    bottom: 5px;
    border-top: 5px solid transparent;
    border-right: 5px solid #fff;
    border-bottom: 5px solid #fff;
    border-left: 5px solid transparent;
  }
}
/*----------------------------
---footer
----------------------------*/
.footer {
  background-color: #fff;
  padding: 10px 0;
  text-align: center;
  color: #282828;
  font-size: 0.8em;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-bottom: 140px;
  }
}
@media screen and (max-width:599px) {
  .footer {
    font-size: 0.7em;
  }
}
/*----------------------------
---page_top
----------------------------*/
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 2%;
  bottom: 30px;
  background-color: #16254B;
  border-radius: 50%;
  border: solid 1px #fff;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}
#page_top a::before{
  content: '';
  display: inline-block;
  background-image: url(../img/common/page_top.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  #page_top {
    bottom: 100px;
  }
}
@media screen and (max-width:767px) {
  #page_top {
    width: 40px;
    height: 40px;
  }
  #page_top a{
    width: 40px;
    height: 40px;
  }
  #page_top a::before{
    width: 19px;
    height: 10px;
  }
}
@media screen and (max-width:375px) {
  #page_top {
    width: 35px;
    height: 35px;
  }
  #page_top a{
    width: 35px;
    height: 35px;
  }
  #page_top a::before{
    width: 15px;
    height: 10px;
  }
}
/*----------------------------
---contact
----------------------------*/
#contact {
  display: block;
  background-color: #16254B;
  padding: 60px 0;
}
#contact .contact_inner {
  max-width: 960px;
  height: auto;
  margin: 0 auto;
}
#contact .contact_inner .contact_btnbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#contact .contact_inner h2 {
  max-width: 770px;
  height: auto;
  margin: 0 auto;
}
#contact .contact_inner .contact_btnbox .tell_btn, 
#contact .contact_inner .contact_btnbox .web_btn{
  width: 45%;
  margin-top: 60px;
  text-align: center;
  position: relative;
}
#contact .contact_inner .contact_btnbox .tell_btn a:hover, 
#contact .contact_inner .contact_btnbox .web_btn:hover{
  opacity: 0.7;
}
#contact .contact_inner .contact_btnbox .tell_btn a {
  display: block;
  font-size: 2.4em;
  font-weight: bold;
  color: #fff;
  margin-top: -10px;
}
#contact .contact_inner .contact_btnbox .tell_btn p {
  color: #fff;
  font-weight: normal;
  margin-top: -10px;
}
#contact .contact_inner .contact_btnbox .tell_btn a::before {
  content:"";
  display: inline-block;
  background-image: url(../img/common/tell_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height:35px;
  width:20px;
  margin-right: 5px;
}
#contact .contact_inner .contact_btnbox .web_btn::after{
  content:"";
  display: inline-block;
  background-image: url(../img/common/btn_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height:30px;
  width:27px;
  vertical-align: middle;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 30px;
}
#contact .contact_inner .contact_btnbox .web_btn a{
  display: block;
  background-color: #EE5C0E;
  padding: 25px 0;
  color: #fff;
  font-size: 1.4em;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width:1024px) {
  #contact {
    display: none;
  }
}
/*----------------------------
---mv
----------------------------*/
#mv {
  max-width: 100%;
  margin: 0 auto;
}
/*----------------------------
---content_btn
----------------------------*/
#btn {
  width: 100%;
  height: auto;
  background: no-repeat url(../img/common/btn_bg.jpg);
  background-size: cover;
}
#btn .btn_inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  padding: 120px 0;
}
#btn .btn_inner .balloon {
  width: 35%;
  position: absolute;
  top: 10%;
  left: -2%;
}
#btn .btn_inner .btnbox {
  width: 100%;
  border: solid 5px #B4A36C;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #fff;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#btn .btn_inner .btnbox .btn_tit {
  width: 80%;
  margin-top: 30px;
}
#btn .btn_inner .btnbox .tell_btn,
#btn .btn_inner .btnbox .web_btn {
  width: 50%;
  margin-top: 30px;
  text-align: center;
  position: relative;
}
#btn .btn_inner .btnbox .tell_btn a {
  display: block;
  font-size: 3em;
  font-weight: bold;
}
#btn .btn_inner .btnbox .tell_btn a::before {
  content:"";
  display: inline-block;
  background-image: url(../img/common/tell.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height:44px;
  width:22px;
  margin-right: 15px;
}
#btn .btn_inner .btnbox .web_btn::after {
  content:"";
  display: inline-block;
  background-image: url(../img/common/btn_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height:30px;
  width:30px;
  vertical-align: middle;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 30px;
}
#btn .btn_inner .btnbox .web_btn a {
  display: block;
  background-color: #EE5C0E;
  padding: 25px 0;
  color: #fff;
  font-size: 1.4em;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 0.1em;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .1);
}
#btn .btn_inner .btnbox .tell_btn a:hover,
#btn .btn_inner .btnbox .web_btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  #btn .btn_inner {
    width: 70%;
    padding: 10% 15% 5%;
  }
  #btn .btn_inner .balloon {
    width: 30%;
    top: 7%;
    left: 12%;
  }
  #btn .btn_inner .btnbox .btn_tit {
    width: 85%;
  }
  #btn .btn_inner .btnbox .tell_btn,
  #btn .btn_inner .btnbox .web_btn {
    width: 85%;
    margin-top: 15px;
  }
  #btn .btn_inner .btnbox .tell_btn a {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: -10px;
  }
  #btn .btn_inner .btnbox .web_btn a {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  #btn .btn_inner {
    width: 80%;
    padding: 10% 10% 5%;
  }
  #btn .btn_inner .balloon {
    width: 35%;
    top: 6%;
    left: 6%;
  }
  #btn .btn_inner .btnbox .btn_tit {
    width: 90%;
  }
  #btn .btn_inner .btnbox .tell_btn a {
    font-size: 2.5em;
  }
  #btn .btn_inner .btnbox .web_btn a {
    padding: 15px 0;
  }
}
@media screen and (max-width:599px) {
  #btn {
    background: no-repeat url(../img/common/btn_bg_sp.jpg);
    background-size: cover;
  }
  #btn .btn_inner {
    width: 90%;
    margin: 0 5%;
    padding: 10% 0;
  }
  #btn .btn_inner .balloon {
    width: 45%;
    top: 5%;
    left: -1%;
  }
  #btn .btn_inner .btnbox {
    border: solid 2px #B4A36C;
    padding: 60px 15px 30px;
  }
  #btn .btn_inner .btnbox .btn_tit {
    margin: 15px auto 0;
  }
  #btn .btn_inner .btnbox .tell_btn,
  #btn .btn_inner .btnbox .web_btn {
    width: 90%;
    margin-top: 15px;
  }
  #btn .btn_inner .btnbox .tell_btn a {
    font-size: 2.2em;
    margin-bottom: 0;
  }
  #btn .btn_inner .btnbox .tell_btn p {
    font-size: 0.8em;
  }
  #btn .btn_inner .btnbox .tell_btn a::before {
    height: 30px;
    width: 15px;
    margin-right: 10px;
  }
  #btn .btn_inner .btnbox .web_btn::after {
    height:20px;
    width:20px;
  }
  #btn .btn_inner .btnbox .web_btn a {
    padding: 15px 0;
    font-size: 1.2em;
  }
}
@media screen and (max-width:375px) {
  #btn .btn_inner .balloon {
    width: 55%;
    top: 3%;
  }
  #btn .btn_inner .btnbox .tell_btn,
  #btn .btn_inner .btnbox .web_btn {
    width: 100%;
  }
  #btn .btn_inner .btnbox .tell_btn a {
    font-size: 2em;
  }
  #btn .btn_inner .btnbox .web_btn a {
    font-size: 1em;
  }
  #btn .btn_inner .btnbox .tell_btn p {
    font-size: 0.7em;
  }
  #btn .btn_inner .btnbox .btn_tit {
    width: 100%;
    margin: 10px auto 0;
  }
  #btn .btn_inner .btnbox .web_btn::after {
    right: 15px;
  }
}
/*----------------------------
---content 共通
----------------------------*/
main {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
#c02 ,#c04, #c05, #c09 {
  width: 100%;
  height: auto;
}
#c02 h2, #c05 h2, #c09 h2  {
  width: 100%;
  height: auto;
  background-color: #16254B;
}
/*----------------------------
---content
----------------------------*/
#c01 {
  width: 100%;
  height: auto;
  background: #0053A7;
  padding: 90px 0;
}
#c01 h2 {
  max-width: 960px;
  height: auto;
  margin: 0 auto;
}
#c01 h2 .tit {
  width: 100%;
  height: auto;
  padding: 0 0 30px;
}
#c01 .c01_inner {
  max-width: 960px;
  height: auto;
  margin: 0 auto;
  background: #fff;
  border: solid 5px #B4A36C;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 30px;
}
#c02 h2 .tit {
  max-width: 700px;
  height: auto;
  margin: 0 auto;
  padding: 30px 0 40px;
}
#c02 .c02_inner {
  width: 100%;
  height: auto;
  padding: 90px 0;
  background: no-repeat url(../img/c02_bg.jpg);
  background-size: cover;
}
#c02 .c02_inner ul {
  max-width: 960px;
  height: auto;
  margin: 0 auto;
}
#c02 .c02_inner ul li {
  font-size: 1.2em;
  margin: 0 0 30px 0;
  line-height: 2;
}
#c02 .c02_inner ul li::before {
  content:"";
  display: inline-block;
  background-image: url(../img/common/check-box.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height:30px;
  width:30px;
  vertical-align: middle;
  margin-right: 15px;
}
#c02 .c02_inner ul li:last-child {
  margin: 0;
}
#c02 .c02_inner ul li span {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 5px;
  color: #16254B;
  background:linear-gradient(transparent 60%, rgba(0,132,200,0.3) 60%);
}
#c02 .c02_inner ul li .start_txt {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 5px 0 0;
  color: #16254B;
  background:linear-gradient(transparent 60%, rgba(0,132,200,0.3) 60%);
}
#c03 {
  width: 100%;
  height: auto;
  background: linear-gradient(135deg, #B2E5FF, #0285C9, #0084C8);
  padding: 90px 0;
}
#c03 h2 {
  max-width: 960px;
  height: auto;
  margin: 0 auto;
}
#c03 h2 .tit {
  width: 100%;
  height: auto;
  padding: 0 0 30px;
}
#c03 .reasonbox {
  max-width: 960px;
  height: auto;
  background: #fff;
  border: solid 5px #B4A36C;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 30px;
  margin: 0 auto 30px;
  box-shadow: 10px 10px 0px 0 #0053A7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#c03 .reasonbox:nth-child(odd) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
#c03 .reasonbox:last-child {
  margin: 0 auto;
}
#c03 .reasonbox .reasonbox_inner-a {
  width: 65%;
  height: auto;
  margin-right: 30px;
}
#c03 .reasonbox .reasonbox_inner-b {
  width: 65%;
  height: auto;
  margin-left: 30px;
}
#c03 .reasonbox .reasonbox_inner-a .tit,
#c03 .reasonbox .reasonbox_inner-b .tit {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#c03 .reasonbox .reasonbox_inner-a .tit .item,
#c03 .reasonbox .reasonbox_inner-b .tit .item {
  width: 17%;
  height: auto;
}
#c03 .reasonbox .reasonbox_inner-a .tit h3,
#c03 .reasonbox .reasonbox_inner-b .tit h3 {
  width: 80%;
  height: auto;
  font-size: 1.7em;
  font-weight: bold;
  line-height: 1.6;
  color: #16254B;
  margin-top: -15px;
} 
#c03 .reasonbox .reasonbox_inner-a .tit h3 span,
#c03 .reasonbox .reasonbox_inner-b .tit h3 span {
  background:linear-gradient(transparent 60%, #FAE812 60%);
} 
#c03 .reasonbox .reasonbox_inner-a p,
#c03 .reasonbox .reasonbox_inner-b p {
  margin-top: 5px;
  line-height: 2;
}
#c03 .reasonbox .photo {
  width: 35%;
  height: auto;
}
#c03 .price_listbox {
  width: 100%;
  margin: 0 auto;
}
#c03 .price_listbox li {
  font-size: 1em;
  line-height: 2;
}
#c03 .price_listbox li::before {
  content:"";
  display: inline-block;
  background-image: url(../img/common/check-box02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height:18px;
  width:18px;
  vertical-align: middle;
  margin-right: 10px;
}
#c03 .graytxt {
  color: #606060;
}
#c04 .c04_inner {
  width: 100%;
  height: auto;
  display: flex;
}
#c04 .c04_inner figure {
  width: 50%;
  height: auto;
  display: flex;
}
#c04 .c04_inner .c04_txtbox {
  width: 40%;
  height: auto;
  padding: 10% 5%;
}
#c04 .c04_inner .c04_txtbox h2 {
  font-size: 2.4em;
  font-weight: bold;
  color: #16254B;
  line-height: 1.6;
  margin-bottom: 30px;
}
#c05 h2 .tit {
  max-width: 340px;
  height: auto;
  padding: 30px 0 40px;
  margin: 0 auto;
}
#c05 .c05_inner {
  width: 100%;
  height: auto;
  padding: 90px 0;
  background: #F6F5F5;
  margin: 0 auto;
}
#c05 .c05_inner .rankingbox {
  max-width: 960px;
  height: auto;
  margin: 0 auto 30px;
  background: #fff;
  border: solid 5px #B4A36C;
  box-sizing: border-box;
  border-radius: 5px;
}
#c05 .c05_inner .ranking_btn {
  max-width: 960px;
  height: auto;
  margin: 0 auto 120px;
  position: relative;
}
#c05 .c05_inner .ranking_btn a {
  display: block;
  background: #B4A36C;
  padding: 25px 0;
  color: #fff;
  font-size: 1.4em;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .1);
}
#c05 .c05_inner .ranking_btn a::before {
  content: "";
  display: inline-block;
  background-image: url(../img/common/btn_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
  width: 30px;
  vertical-align: middle;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 60px;
}
#c05 .c05_inner .ranking_btn a:hover {
  opacity: 0.7;
}
#c05 .c05_inner .flexbox {
  max-width: 960px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#c05 .c05_inner .flexbox .voicebox {
  width: 48%;
  height: auto;
  background-color: #EEEEEE;
  border-radius: 5px;
  border: solid 5px #B4A36C;
  box-sizing: border-box;
  position: relative;
}
#c05 .c05_inner .flexbox .voicebox figure {
  max-width: 100px;
  height: auto;
  position: absolute;
  top: -6%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#c05 .c05_inner .flexbox .voicebox .voicebox_inner {
  height: 400px;
  margin: 30px;
  padding: 45px 30px 30px;
  background-color: #fff;
}
#c05 .c05_inner .flexbox .voicebox .voicebox_inner h3 {
  font-size: 1.7em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
#c05 .c05_inner .flexbox .voicebox .voicebox_inner h3 span {
  font-size: 0.6em;
  font-weight: normal;
  margin-left: 5px;
}
#c06 {
  width: 100%;
  height: auto;
  background-color: #0084C8;
}
#c06 .c06_inner {
  max-width: 960px;
  height: auto;
  padding: 120px 0 90px;
  margin: 0 auto;
  position: relative;
}
#c06 .c06_inner h2 {
  max-width: 600px;
  height: auto;
  position: absolute;
  top:70px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
#c06 .c06_inner .effect {
  background-color: #fff;
  border: solid 5px #B4A36C;
  box-sizing: border-box;
  border-radius: 5px;
  padding-bottom: 90px;
  text-align: center;
}
#c06 .c06_inner .effect .tit-a {
  text-align: center;
  border-top: solid 2px #B4A36C;
  border-bottom: solid 2px #B4A36C;
  display: inline-block;
  color: #282828;
  padding: 15px 50px;
  font-size: 1.7em;
  font-weight: bold;
  margin: 120px 0 60px;
  letter-spacing: 0.1em;
}
#c06 .c06_inner .effect .tit-b {
  text-align: center;
  border-top: solid 2px #B4A36C;
  border-bottom: solid 2px #B4A36C;
  display: inline-block;
  color: #282828;
  padding: 15px 50px;
  font-size: 1.7em;
  font-weight: bold;
  margin: 90px 0 60px;
  letter-spacing: 0.1em;
}
#c06 .c06_inner .effect .photobox {
  width: auto;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 30px;
}
#c06 .c06_inner .effect .photobox .beforebox,
#c06 .c06_inner .effect .photobox .afterbox {
  width: 40%;
  height: auto;
}
#c06 .c06_inner .effect .photobox .arrow {
  width: 3%;
  height: auto;
  margin-top: 50px;
}
#c06 .c06_inner .effect p {
  text-align: right;
  margin: 5px 30px 0 0;
  font-size: 0.9em;
}
#c07 {
  width: 100%;
  height: auto;
  background: #EEEEEE;
  padding: 90px 0;
}
#c07 .c07_innner {
  max-width: 960px;
  height: auto;
  margin: 0 auto;
}
#c07 .c07_innner h2 {
  max-width: 345px;
  height: auto;
  margin: 0 auto 60px;
}
#c07 .c07_innner .c07_listbox {
  width: 100%;
  height: auto;
  text-align: center;
  background: #FFF;
  border: solid 5px #B4A36C;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 60px 0;
}
#c07 .c07_innner .c07_listbox h3 {
  font-size: 2em;
  font-weight: bold;
  line-height: 1.6;
  color: #16254B;
}
#c07 .c07_innner .c07_listbox p {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4;
  color: #16254B;
}
#c07 .c07_innner .c07_listbox table {
  width: 50%;
  margin: 30px auto;
}
#c07 .c07_innner .c07_listbox table tr {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
#c07 .c07_innner .c07_listbox table tr:last-child {
  margin-bottom: 0;
}
#c07 .c07_innner .c07_listbox table tr .epilation-a,
#c07 .c07_innner .c07_listbox table tr .epilation-b,
#c07 .c07_innner .c07_listbox table tr .epilation-c,
#c07 .c07_innner .c07_listbox table tr .epilation-d {
  width: 70%;
  font-size: 1.4em;
  text-align: left;
  line-height: 1.2;
}
#c07 .c07_innner .c07_listbox table tr .epilation-a a:hover,
#c07 .c07_innner .c07_listbox table tr .epilation-b a:hover,
#c07 .c07_innner .c07_listbox table tr .epilation-c a:hover,
#c07 .c07_innner .c07_listbox table tr .epilation-d a:hover {
  text-decoration: underline;
}
#c07 .c07_innner .c07_listbox table tr .epilation-a::before {
  content: "";
  display: inline-block;
  width: 33px;
  height: 40px;
  background-image: url(../img/common/epilation_a.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}
#c07 .c07_innner .c07_listbox table tr .epilation-b::before {
  content: "";
  display: inline-block;
  width: 33px;
  height: 40px;
  background-image: url(../img/common/epilation_b.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}
#c07 .c07_innner .c07_listbox table tr .epilation-c::before {
  content: "";
  display: inline-block;
  width: 33px;
  height: 40px;
  background-image: url(../img/common/epilation_c.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}
#c07 .c07_innner .c07_listbox table tr .epilation-d::before {
  content: "";
  display: inline-block;
  width: 33px;
  height: 40px;
  background-image: url(../img/common/epilation_d.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}
#c07 .c07_innner .c07_listbox table tr .price_left {
  width: 30%;
  font-size: 1.4em;
  text-align: right;
}
#c07 .partsbox {
  width: 100%;
  padding: 30px 0 0;
}
#c07 .partsbox h4 {
  background: #16254B;
  color: #fff;
  text-align: center;
  font-size: 1.6em;
  padding: 15px 0;
  margin-top: 60px;
  font-weight: bold;
}
#c07 .partsbox_inner {
  background: #fff;
  padding: 30px;
  border: solid 5px #16254B;
  box-sizing: border-box;
}
#c07 .partsbox_inner figure {
  width: 100%;
  margin: 0 auto 30px;
  padding: 0;
}
#c07 .partsbox_inner div {
  width: 100%;
  margin: 0 auto 10px;
  border: solid 5px #B4A36C;
  box-sizing: border-box;
  border-radius: 5px;
  display: block;
  padding: 15px 30px;
}
#c07 .tablebox_b {
  width: 100%;
  display: block;
  margin: 0 auto 15px;
  border-bottom: solid 2px #EEEEEE;
  padding-bottom: 15px;
}
#c07 .partsbox_inner div table tr,
#c07 .tablebox_b tr {
  width: 100%;
  margin: 0 auto;
  font-size: 0.9em;
}
#c07 .partsbox_inner div table tr .parts_name,
#c07 .tablebox_b tr .parts_name {
  width: 100px;
}
#c07 .partsbox_inner div table tr td,
#c07 .tablebox_b tr td {
  width: auto;
}
#c07 .partstable_tit-a,
#c07 .partstable_tit-b,
#c07 .partstable_tit-c,
#c07 .partstable_tit-d {
  border-bottom: solid 2px #EEEEEE;
  margin-bottom: 15px !important;
  font-size: 1.4em;
  padding-bottom: 15px;
  color: #16254B;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#c07 .partstable_tit-a .off_imgbox,
#c07 .partstable_tit-b .off_imgbox,
#c07 .partstable_tit-c .off_imgbox,
#c07 .partstable_tit-d .off_imgbox {
  width: 100px;
  height: auto;
  margin: -10px 15px 0;
}
#c07 h6 {
  margin-bottom: 5px;
  font-size: 1.1em;
  color: #16254B;
  font-weight: bold;
}
#c07 .partstable_tit-a::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url(../img/common/epilation_a.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}
#c07 .partstable_tit-b::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 40px;
  background-image: url(../img/common/epilation_b.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}
#c07 .partstable_tit-c::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 40px;
  background-image: url(../img/common/epilation_c.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}
#c07 .partstable_tit-d::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 40px;
  background-image: url(../img/common/epilation_d.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}
#c07 .orangetxt {
  color: #EE5C0E;
}
#c08 {
  width: 100%;
  height: auto;
  background: #0084C8;
  padding: 30px 0 60px;
}
#c08 .c08_inner {
  max-width: 960px;
  height: auto;
  margin: 0 auto;
}
#c08 .c08_inner h2 {
  width: 100%;
  height: auto;
  margin: 60px auto 30px;
}
#c08 .c08_inner .menubox {
  background: #fff;
  border: solid 5px #B4A36C;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 30px;
}
#c08 .c08_inner .menubox h3 {
  background: #16254B;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 15px;
  font-size: 1.7em;
  letter-spacing: 0.1em;
}
#c08 .c08_inner .menubox .txt_big {
  font-size: 1.3em;
  margin-right: 5px;
  font-weight: bold;
}
#c08 .c08_inner .menubox .txt_big-p2 {
  font-size: 1.3em;
  font-weight: bold;
}
#c08 .c08_inner .menubox .txt_small {
  font-size: 12px;
  display: block;
  font-weight: normal;
}
#c08 .c08_inner .menubox .c08_imgbox {
  width: 100%;
  margin: 30px auto;
}
#c08 .c08_inner .menubox .c08_imgbox-course {
  width: 100%;
  margin: 30px auto 0;
}
#c08 .c08_inner .menubox .graytxtbox {
  background: #EEEEEE;
  padding: 50px 0;
  text-align: center;
  color: #282828;
  font-size: 1.2em;
  font-weight: bold;
}
#c09 h2 .tit {
  max-width: 230px;
  height: auto;
  padding: 40px 0;
  margin: 0 auto;
}
#c09 .c09_inner {
  max-width: 960px;
  height: auto;
  margin: 90px auto;
}
#c09 .c09_inner .flowbox01,
#c09 .c09_inner .flowbox02,
#c09 .c09_inner .flowbox03,
#c09 .c09_inner .flowbox04 {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#c09 .c09_inner .flowbox01 figure,
#c09 .c09_inner .flowbox02 figure,
#c09 .c09_inner .flowbox03 figure,
#c09 .c09_inner .flowbox04 figure {
  width: 30%;
  height: auto;
}
#c09 .c09_inner .flowbox01 div,
#c09 .c09_inner .flowbox02 div,
#c09 .c09_inner .flowbox03 div,
#c09 .c09_inner .flowbox04 div {
  width: 60%;
  height: auto;
  background-color: #EEEEEE;
  box-shadow: 10px 10px 0px 0 #B4A36C;
  border-radius: 5px;
  padding: 15px 30px;
}
#c09 .c09_inner .flowbox01 div h3,
#c09 .c09_inner .flowbox02 div h3,
#c09 .c09_inner .flowbox03 div h3,
#c09 .c09_inner .flowbox04 div h3 {
  font-size:1.6em;
  font-weight: bold;
  color: #16254B;
  margin-bottom: 20px;
  position: relative;
}
#c09 .c09_inner .flowbox01 div h3 span,
#c09 .c09_inner .flowbox02 div h3 span,
#c09 .c09_inner .flowbox03 div h3 span,
#c09 .c09_inner .flowbox04 div h3 span{
  position: absolute;
  border-bottom: solid 1px #282828;
  width: 100%;
  left: 0;
  bottom: -10px;
  z-index: 1;
}
#c09 .c09_inner .flowbox01 div h3::after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  background-image: url(../img/c09_item01.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: -10%;
}
#c09 .c09_inner .flowbox02 div h3::after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  background-image: url(../img/c09_item02.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: -10%;
}
#c09 .c09_inner .flowbox03 div h3::after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  background-image: url(../img/c09_item03.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: -10%;
}
#c09 .c09_inner .flowbox04 div h3::after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  background-image: url(../img/c09_item04.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: -10%;
}
#c09 .c09_inner .arrow {
  width: 50px;
  height: auto;
  margin: 30px 0 30px 120px;
}
#c10 {
  width: 100%;
  height: auto;
  background: linear-gradient(-30deg, #B2E5FF, #0285C9, #0084C8);
}
#c10 h2 {
  max-width: 420px;
  height: auto;
  margin: 0 auto;
}
#c10 h2 .tit {
  width: 100%;
  height: auto;
  padding: 90px 0 60px;
}
#c10 .c10_inner {
  max-width: 960px;
  height: auto;
  margin: 0 auto;
  padding-bottom: 90px;
}
#c10 .c10_inner .faq_listbox {
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 15px 0;
  border: solid 5px #B4A36C;
  box-sizing: border-box;
  border-radius: 5px;
  margin-bottom: 20px;
}
#c10 .c10_inner .faq_listbox:last-child {
  margin-bottom: 0;
}
#c10 .c10_inner .faq_listbox .faq_q {
  font-size: 1.4em;
  font-weight: bold;
  margin-left: 30px;
  color: #16254B;
  cursor: pointer;
  position: relative;
  display: block;
}
#c10 .c10_inner .faq_listbox .faq_q::after {
  content:"";
  display: inline;
  background-image: url(../img/common/open_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height:13px;
  width:22px;
  vertical-align: middle;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#c10 .c10_inner .faq_listbox .open::after {
  content:"";
  display: inline;
  background-image: url(../img/common/close_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height:13px;
  width:22px;
  vertical-align: middle;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#c10 .c10_inner .faq_listbox .faq_a {
  display: none;
  padding: 30px 0 0 20px;
  margin: 15px 30px;
  border-top: solid 2px #EEEEEE;
  color: #282828;
  font-weight: normal;
}
#c10 .c10_inner .faq_listbox .faq_a::before {
  content: "A.";
  color: #EE5C0E;
  margin-left: -20px;
  padding: 0 5px 0 0;
}
#c11 {
  max-width: 960px;
  height: auto;
  margin: 90px auto;
}
#c11 h2 {
  max-width: 390px;
  height: auto;
  margin: 0 auto 60px;
}
#c11 h2 .tit {
  width: 100%;
  height: auto;
}
#c11 .c11_inner .infobox {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
#c11 .c11_inner .infobox table {
  width: 50%;
  height: auto;
}
#c11 .c11_inner .infobox table tr {
  width: 100%;
  height: auto;
  border-bottom: solid 2px #EEEEEE;
  box-sizing: border-box;
  text-align: left;
  display: inline-table;
}
#c11 .c11_inner .infobox table th {
  width: 30%;
  font-size: 1.1em;
  font-weight: bold;
  color: #16254B;
  vertical-align: middle;
}
#c11 .c11_inner .infobox table td {
  width: 70%;
  padding: 8px 0;
  font-weight: 400;
}
#c11 .c11_inner .infobox figure {
  width: 45%;
  height: auto;
}
#c11 .c11_inner iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  #c01 {
    width: 70%;
    padding: 5% 15%;
    margin: 0 auto;
  }
  #c01 h2 {
    width: 100%;
  }
  #c01 .c01_inner {
    width: 100%;
  }
  #c02 h2 .tit {
    width: 55%;
    padding: 30px 0;
  }
  #c02 .c02_inner {
    width: 70%;
    padding: 5% 15%;
  }
  #c02 .c02_inner ul {
    width: 100%;
  }
  #c02 .c02_inner ul li {
    font-size: 0.9em;
    margin: 0 0 15px 0;
  }
  #c02 .c02_inner ul li span {
    font-size: 1.4em;
  }
  #c02 .c02_inner ul li .start_txt {
    font-size: 1.4em;
  }
  #c03 {
    width: 70%;
    padding: 5% 15%;
  }
  #c03 h2 {
    width: 100%;
  }
  #c03 .reasonbox {
    width: 100%;
  }
  #c03 .reasonbox .reasonbox_inner-a {
    width: 60%;
    margin-right: 2%;
  }
  #c03 .reasonbox .reasonbox_inner-b {
    width: 60%;
    margin-left: 5%;
  }
  #c03 .reasonbox .reasonbox_inner-a .tit h3,
  #c03 .reasonbox .reasonbox_inner-b .tit h3 {
    font-size: 1.4em;
    margin-top: -10px;
  } 
  #c03 .reasonbox .reasonbox_inner-a p,
  #c03 .reasonbox .reasonbox_inner-b p {
    margin-top: 10px;
    font-size: 0.9em;
  }
  #c03 .reasonbox .photo {
    width: 35%;
  }
  #c03 .price_listbox li {
    font-size: 0.8em;
  }
  #c04 .c04_inner .c04_txtbox {
    width: 40%;
    padding: 5%;
  }
  #c04 .c04_inner .c04_txtbox h2 {
    font-size: 1.4em;
    margin-bottom: 15px;
  }
  #c04 .c04_inner .c04_txtbox p {
    font-size: 0.9em;
  }
  #c05 h2 .tit {
    width: 25%;
    padding: 30px 0;
  }
  #c05 .c05_inner {
    width: 70%;
    padding: 5% 15%;
  }
  #c05 .c05_inner .rankingbox {
    width: 100%;
  }
  #c05 .c05_inner .ranking_btn {
    width: 100%;
    margin: 0 auto 10%;
  }
  #c05 .c05_inner .ranking_btn a {
    padding: 20px 0;
  }
  #c05 .c05_inner .flexbox {
    width: 100%;
    flex-direction: column;
  }
  #c05 .c05_inner .flexbox .voicebox {
    width: 100%;
    margin-bottom: 15px;
  }
  #c05 .c05_inner .flexbox .voicebox:last-child {
    margin-bottom: 0;
  }
  #c05 .c05_inner .flexbox .voicebox figure {
    width: 10%;
    top: 10%;
  }
  #c05 .c05_inner .flexbox .voicebox .voicebox_inner {
    height: auto;
    margin: 15px;
    padding: 80px 15px 15px;
  }
  #c05 .c05_inner .flexbox .voicebox .voicebox_inner h3 {
    font-size: 1.4em;
  }
  #c05 .c05_inner .flexbox .voicebox .voicebox_inner h3 span {
    font-size: 0.6em;
  }
  #c05 .c05_inner .flexbox .voicebox .voicebox_inner p {
    font-size: 0.8em;
  }
  #c06 .c06_inner {
    width: 70%;
    padding: 10% 0 5%;
  }
  #c06 .c06_inner h2 {
    width: 60%;
    top: 6%;
  }
  #c06 .c06_inner .effect {
    padding-bottom: 5%;
  }
  #c06 .c06_inner .effect .tit-a,
  #c06 .c06_inner .effect .tit-b {
    font-size: 1.4em;
    margin: 15% 0 5%;
  }
  #c06 .c06_inner .effect p {
    font-size: 0.8em;
  }
  #c07 {
    padding: 5% 0;
  }
  #c07 .c07_innner {
    width: 70%;
  }
  #c07 .c07_innner h2 {
    width: 35%;
    margin: 0 auto 30px;
  }
  #c07 .c07_innner .c07_listbox {
    padding: 5% 0;
  }
  #c07 .c07_innner .c07_listbox h3 {
    font-size: 1.4em;
  }
  #c07 .c07_innner .c07_listbox table {
    width: 80%;
  }
  #c07 .c07_innner .c07_listbox table tr .epilation-a::before,
  #c07 .c07_innner .c07_listbox table tr .epilation-b::before,
  #c07 .c07_innner .c07_listbox table tr .epilation-c::before,
  #c07 .c07_innner .c07_listbox table tr .epilation-d::before {
    width: 33px;
    height: 36px;
  }
  #c07 .partsbox h4 {
    font-size: 1.4em;
    margin-top: 0;
  }
  #c07 .partsbox_inner {
    padding: 15px;
  }
  #c07 .partsbox_inner p {
    font-size: 0.9em;
  }
  #c07 .partsbox_inner div table tr,
  #c07 .tablebox_b tr {
    font-size: 0.8em;
  }
  #c07 h6 {
    font-size: 1em;
  }
  #c08 {
    padding: 3% 0;
  }
  #c08 .c08_inner {
    width: 70%;
    margin: 0 auto;
  }
  #c08 .c08_inner h2 {
    margin: 3% auto;
  }
  #c08 .c08_inner .menubox {
    padding: 15px;
  }
  #c08 .c08_inner .menubox h3 {
    font-size: 1.4em;
  }
  #c09 h2 .tit {
    width: 16%;
    padding: 30px 0;
  }
  #c09 .c09_inner {
    width: 70%;
    margin: 5% auto;
  }
  #c09 .c09_inner .flowbox01 div,
  #c09 .c09_inner .flowbox02 div,
  #c09 .c09_inner .flowbox03 div,
  #c09 .c09_inner .flowbox04 div {
    padding: 15px 20px;
  }
  #c09 .c09_inner .flowbox01 div h3,
  #c09 .c09_inner .flowbox02 div h3,
  #c09 .c09_inner .flowbox03 div h3,
  #c09 .c09_inner .flowbox04 div h3 {
    font-size:1.4em;
    margin-bottom: 15px;
  }
  #c09 .c09_inner .flowbox01 div h3 span,
  #c09 .c09_inner .flowbox02 div h3 span,
  #c09 .c09_inner .flowbox03 div h3 span,
  #c09 .c09_inner .flowbox04 div h3 span{
    bottom: 0;
  }
  #c09 .c09_inner .flowbox01 div h3::after,
  #c09 .c09_inner .flowbox02 div h3::after,
  #c09 .c09_inner .flowbox03 div h3::after,
  #c09 .c09_inner .flowbox04 div h3::after {
    width: 80px;
    height: 80px;
    top:-30%
  }
  #c09 .c09_inner .flowbox01 div p,
  #c09 .c09_inner .flowbox02 div p,
  #c09 .c09_inner .flowbox03 div p,
  #c09 .c09_inner .flowbox04 div p { 
    font-size: 0.8em;
  }
  #c09 .c09_inner .arrow {
    width: 40px;
    margin: 5% 0 5% 12%;
  }
  #c10 {
    padding: 5% 0 0;
  }
  #c10 h2 {
    width: 35%;
  }
  #c10 h2 .tit {
    padding: 0 0 30px;
  }
  #c10 .c10_inner {
    width: 70%;
    padding-bottom: 5%;
  }
  #c10 .c10_inner .faq_listbox .faq_q {
    font-size: 1em;
    margin-left: 15px;
    padding: 0 35px 0 0;;
  }
  #c10 .c10_inner .faq_listbox .faq_q::after,
  #c10 .c10_inner .faq_listbox .open::after {
    height:10px;
    width:19px;
    right: 15px;
  }
  #c10 .c10_inner .faq_listbox .faq_a {
    padding: 20px 0 0;
    margin: 15px;
    font-size: 0.9em;
  }
  #c10 .c10_inner .faq_listbox .faq_a::before {
    margin-left: 0;
  }
  #c11 {
    width: 70%;
    margin: 5% auto;
  }
  #c11 h2 {
    width: 40%;
    margin: 0 auto 30px;
  }
  #c11 .c11_inner .infobox {
    margin-bottom: 5%;
  }
  #c11 .c11_inner .infobox table th {
    width: 25%;
    font-size: 0.9em;
  }
  #c11 .c11_inner .infobox table td {
    width: 75%;
    font-size: 0.8em;
  }
}

@media screen and (max-width:767px) {
  #c01 {
    width: 80%;
    padding: 5% 10%;
  }
  #c02 h2 .tit {
    width: 65%;
  }
  #c02 .c02_inner {
    width: 80%;
    padding: 5% 10%;
  }
  #c03 {
    width: 80%;
    padding: 5% 10%;
  }
  #c03 .reasonbox,
  #c03 .reasonbox:nth-child(odd) {
    width: 100%;
    flex-direction: column;
  }
  #c03 .reasonbox .reasonbox_inner-a,
  #c03 .reasonbox .reasonbox_inner-b {
    width: 100%;
    margin: 0;
  }
  #c03 .reasonbox .photo {
    width: 60%;
    margin-top: 30px;
  }
  #c04 .c04_inner {
    flex-direction: column;
  }
  #c04 .c04_inner figure {
    width: 100%;
  }
  #c04 .c04_inner .c04_txtbox {
    width: 80%;
    padding: 10%;
  }
  #c05 h2 .tit {
    width: 30%;
  }
  #c05 .c05_inner {
    width: 80%;
    padding: 5% 10%;
  }
  #c05 .c05_inner .ranking_btn {
    width: 100%;
    margin: 0 auto 10%;
  }
  #c05 .c05_inner .ranking_btn a {
    padding: 15px 0;
  }
  #c06 .c06_inner {
    width: 80%;
    padding: 10% 10% 5%;
  }
  #c06 .c06_inner h2 {
    top: 4%;
  }
  #c07 .c07_innner {
    width: 80%;
  }
  #c07 .c07_innner h2 {
    width: 40%;
  }
  #c08 .c08_inner {
    width: 80%;
  }
  #c09 h2 .tit {
    width: 20%;
  }
  #c09 .c09_inner {
    width: 80%;
    margin: 5% auto;
  }
  #c09 .c09_inner .flowbox01, 
  #c09 .c09_inner .flowbox02, 
  #c09 .c09_inner .flowbox03, 
  #c09 .c09_inner .flowbox04 {
    flex-direction: column;
  }
  #c09 .c09_inner .flowbox01 figure, 
  #c09 .c09_inner .flowbox02 figure, 
  #c09 .c09_inner .flowbox03 figure, 
  #c09 .c09_inner .flowbox04 figure {
    width: 50%;
    margin-bottom: 30px;
  }
  #c09 .c09_inner .flowbox01 div, 
  #c09 .c09_inner .flowbox02 div, 
  #c09 .c09_inner .flowbox03 div, 
  #c09 .c09_inner .flowbox04 div {
    width: auto;
  }
  #c09 .c09_inner .arrow {
    margin: 10% auto;
  }
  #c10 {
    padding: 5% 0 0;
  }
  #c10 h2 {
    width: 40%;
  }
  #c10 .c10_inner {
    width: 80%;
  }
  #c11 {
    width: 80%;
  }
  #c11 .c11_inner .infobox {
    flex-direction: column-reverse;
  }
  #c11 .c11_inner .infobox figure {
    width: 100%;
    margin-bottom: 15px;
  }
  #c11 .c11_inner .infobox table {
    width: 100%;
  }
  #c11 .c11_inner .infobox table th {
    width: 30%;
    font-size: 1em;
  }
  #c11 .c11_inner .infobox table td {
    width: 70%;
    font-size: 0.9em;
  }
}

@media screen and (max-width:599px) {
  #c01 {
    width: 90%;
    padding: 5%;
  }
  #c01 h2 {
    width: 90%;
  }
  #c01 h2 .tit {
    padding: 0 0 5%;
  }
  #c01 .c01_inner {
    padding: 15px;
    border: solid 2px #B4A36C;
  }
  #c02 h2 .tit {
    width: 60%;
  }
  #c02 .c02_inner {
    width: 90%;
    padding: 10% 5%;
    background: no-repeat url(../img/sp/c02_bg_sp.jpg);
    background-size: cover;
  }
  #c02 .c02_inner ul li {
    font-size: 1em;
    line-height: 1.6;
  }
  #c02 .c02_inner ul li::before {
    width: 15px;
    height: 15px;
    margin-right: 5px;
  }
  #c03 {
    width: 90%;
    padding: 5% 5% 10%;
    background: linear-gradient(110deg, #B2E5FF, #0285C9, #0084C8);
  }
  #c03 h2 .tit {
    width: 90%;
    padding: 0 0 5%;
    margin: 0 auto;
  }
  #c03 .reasonbox, 
  #c03 .reasonbox:nth-child(odd) {
    border: solid 2px #B4A36C;
    box-shadow: 5px 5px 0px 0 #0053a7;
    margin: 0 auto 15px;
    padding: 30px 15px 15px;
  }
  #c03 .reasonbox .reasonbox_inner-a .tit h3,
  #c03 .reasonbox .reasonbox_inner-b .tit h3 {
    font-size: 1.6em;
  }
  #c03 .reasonbox .reasonbox_inner-a p,
  #c03 .reasonbox .reasonbox_inner-b p {
    font-size: 1em;
  }
  #c03 .reasonbox .photo {
    width: 100%;
    margin-top: 15px;
  }
  #c03 .price_listbox li {
    font-size: 0.9em;
  }
  #c04 .c04_inner .c04_txtbox {
    width: 90%;
    padding: 10% 5%;
  }
  #c04 .c04_inner .c04_txtbox p {
    font-size: 1em;
  }
  #c05 .c05_inner {
    width: 90%;
    padding: 5%;
  }
  #c05 h2 .tit {
    width: 60%;
  }
  #c05 .c05_inner .rankingbox {
    margin: 0 auto 5%;
    border: solid 2px #B4A36C;
  }
  #c05 .c05_inner .ranking_btn {
    margin: 0 auto 15%;
  }
  #c05 .c05_inner .ranking_btn a {
    font-size: 1em;
  }
  #c05 .c05_inner .ranking_btn a::before {
    height: 20px;
    width: 20px;
    right: 30px;
  }
  #c05 .c05_inner .flexbox .voicebox {
    border: solid 2px #B4A36C;
  }
  #c05 .c05_inner .flexbox .voicebox figure {
    width: 13%;
    top: 8%;
  }
  #c05 .c05_inner .flexbox .voicebox .voicebox_inner p {
    font-size: 1em;
  }
  #c06 .c06_inner {
    width: 90%;
    padding: 10% 5% 5%;
  }
  #c06 .c06_inner h2 {
    width: 70%;
    top: 3%;
  }
  #c06 .c06_inner .effect {
    border: solid 2px #B4A36C;
  }
  #c06 .c06_inner .effect .photobox {
    margin: 0 15px;
  }
  #c06 .c06_inner .effect .photobox .beforebox,
  #c06 .c06_inner .effect .photobox .afterbox {
    width: 45%;
  }
  #c06 .c06_inner .effect p {
    margin: 5px 10px 0;
  }
  #c07 .c07_innner {
    width: 90%;
  }
  #c07 .c07_innner h2 {
    width: 60%;
    margin: 0 auto 5%;
  }
  #c07 .c07_innner .c07_listbox {
    border: solid 2px #B4A36C;
    padding: 5%;
  }
  #c07 .c07_innner .c07_listbox table {
    margin: 15px auto 30px;
  }
  #c07 .c07_innner .c07_listbox table tr .epilation-a,
  #c07 .c07_innner .c07_listbox table tr .epilation-b,
  #c07 .c07_innner .c07_listbox table tr .epilation-c,
  #c07 .c07_innner .c07_listbox table tr .epilation-d,
  #c07 .c07_innner .c07_listbox table tr .price_left {
    font-size: 1em;
  }
  #c07 .partsbox_inner {
    border: solid 2px #16254B;
  }
  #c07 .partsbox_inner figure {
    margin: 0 auto 15px;
  }
  #c07 .partsbox_inner div {
    border: solid 2px #B4A36C;
    padding: 15px;
  }
  #c07 .partstable_tit-a, 
  #c07 .partstable_tit-b, 
  #c07 .partstable_tit-c, 
  #c07 .partstable_tit-d {
    border-bottom: solid 1px #EEEEEE;
    padding-bottom: 5px;
  }
  #c07 .partstable_tit-a::before,
  #c07 .partstable_tit-b::before,
  #c07 .partstable_tit-c::before,
  #c07 .partstable_tit-d::before {
    width: 30px;
    height: 30px;
  }
  #c07 .partstable_tit-a .off_imgbox, 
  #c07 .partstable_tit-b .off_imgbox, 
  #c07 .partstable_tit-c .off_imgbox, 
  #c07 .partstable_tit-d .off_imgbox {
    width: 60px;
    margin: -10px 10px 0;
  }
  #c07 .partsbox_inner p {
    font-size: 1em;
  }
  #c07 .partsbox_inner div table tr,
  #c07 .tablebox_b tr {
    font-size: 1em;
    line-height: 1.8;
  }
  #c07 h6 {
    font-size: 1.2em;
  }
  #c08 .c08_inner {
    width: 90%;
  }
  #c08 .c08_inner .menubox {
    border: solid 2px #B4A36C;
  }
  #c08 .c08_inner .menubox .graytxtbox {
    padding: 10% 5%;
    font-size: 1.2em;
  }
  #c08 .c08_inner .menubox .c08_imgbox:last-child {
    margin: 30px auto 0;
  }
  #c09 h2 .tit {
    width: 35%;
  }
  #c09 .c09_inner {
    width: 90%;
    margin: 5% 5% 10%;
  }
  #c09 .c09_inner .flowbox01 figure, 
  #c09 .c09_inner .flowbox02 figure, 
  #c09 .c09_inner .flowbox03 figure, 
  #c09 .c09_inner .flowbox04 figure {
    width: 100%;
  }
  #c09 .c09_inner .flowbox01 div, 
  #c09 .c09_inner .flowbox02 div, 
  #c09 .c09_inner .flowbox03 div, 
  #c09 .c09_inner .flowbox04 div {
    box-shadow: 5px 5px 0px 0 #b4a36c;
    padding: 15px;
  }
  #c09 .c09_inner .flowbox01 div p, 
  #c09 .c09_inner .flowbox02 div p, 
  #c09 .c09_inner .flowbox03 div p, 
  #c09 .c09_inner .flowbox04 div p {
    font-size: 1em;
    line-height: 1.8;
  }
  #c09 .c09_inner .flowbox01 div h3::after, 
  #c09 .c09_inner .flowbox02 div h3::after, 
  #c09 .c09_inner .flowbox03 div h3::after, 
  #c09 .c09_inner .flowbox04 div h3::after {
    width: 60px;
    height: 60px;
    top: -20%;
  }
  #c10 h2 {
    width: 65%;
  }
  #c10 .c10_inner {
    width: 90%;
  }
  #c10 h2 .tit {
    padding: 0 0 5%;
  }
  #c10 .c10_inner .faq_listbox {
    padding: 10px 0;
    border: solid 2px #B4A36C;
    margin-bottom: 10px;
  }
  #c10 .c10_inner .faq_listbox .faq_q::after, 
  #c10 .c10_inner .faq_listbox .open::after {
    height: 6px;
    width: 10px
  }
  #c10 .c10_inner .faq_listbox .faq_a {
    padding: 10px 0 0;
    margin: 10px 15px 0;
  }
  #c11 {
    width: 90%;
  }
  #c11 h2 {
    margin: 0 auto 5%;
    width: 55%;
  }
  #c11 .c11_inner .infobox table tr {
    border-bottom: solid 1px #EEEEEE;
  }
}
@media screen and (max-width:375px) {
  #c01 h2 {
    width: 100%;
  }
  #c02 h2 .tit {
    width: 70%;
    padding: 20px 0;
  }
  #c02 .c02_inner {
    padding: 5%;
  }
  #c02 .c02_inner ul li span,
  #c02 .c02_inner ul li .start_txt {
    font-size: 1.2em;
  }
  #c03 h2 .tit {
    width: 100%;
  }
  #c03 .reasonbox .reasonbox_inner-a .tit h3, 
  #c03 .reasonbox .reasonbox_inner-b .tit h3 {
    font-size: 1.4em;
  }
  #c05 h2 .tit {
    padding: 20px 0;
  }
  #c05 .c05_inner .ranking_btn a {
    padding: 15px 40px 15px 15px;
  }
  #c05 .c05_inner .ranking_btn a::before {
    right: 15px;
  }
  #c05 .c05_inner .flexbox .voicebox figure {
    width: 20%;
    top: 7%;
  }
  #c06 .c06_inner h2 {
    width: 80%;
  }
  #c06 .c06_inner .effect .tit-a, 
  #c06 .c06_inner .effect .tit-b {
    padding: 10px;
    margin: 15% 0 10%;
    font-size: 1em;
  }
  #c06 .c06_inner .effect .photobox .arrow {
    margin-top: 10px;
  }
  #c07 .c07_innner .c07_listbox h3 {
    font-size: 1em;
  }
  #c07 .c07_innner .c07_listbox table {
    width: 100%;
    margin: 15px auto;
  }
  #c07 .c07_innner .c07_listbox table tr .epilation-a::before, 
  #c07 .c07_innner .c07_listbox table tr .epilation-b::before, 
  #c07 .c07_innner .c07_listbox table tr .epilation-c::before, 
  #c07 .c07_innner .c07_listbox table tr .epilation-d::before,
  #c07 .partstable_tit-a::before,
  #c07 .partstable_tit-b::before,
  #c07 .partstable_tit-c::before,
  #c07 .partstable_tit-d::before {
    width: 25px;
    height: 25px;
  }
  #c07 .c07_innner .c07_listbox table tr .epilation-a::before, 
  #c07 .c07_innner .c07_listbox table tr .epilation-b::before, 
  #c07 .c07_innner .c07_listbox table tr .epilation-c::before, 
  #c07 .c07_innner .c07_listbox table tr .epilation-d::before {
    margin-top: -5px;
  }
  #c07 .c07_innner .c07_listbox p {
    font-size: 0.8em;
  }
  #c07 .partsbox {
    padding: 15px 0 0;
  }
  #c07 .partsbox_inner div table tr .parts_name, 
  #c07 .tablebox_b tr .parts_name {
    width: 70px;
    font-size: 0.8em;
  }
  #c07 .partsbox_inner div table tr td, 
  #c07 .tablebox_b tr td {
    font-size: 0.8em;
  }
  #c07 .partsbox_inner p {
    font-size: 0.7em;
  }
  #c07 h6 {
    font-size: 1em;
  }
  #c07 .partstable_tit-a .off_imgbox, 
  #c07 .partstable_tit-b .off_imgbox, 
  #c07 .partstable_tit-c .off_imgbox, 
  #c07 .partstable_tit-d .off_imgbox {
    width: 50px;
    margin: -20px 5px 0;
  }
  #c08 .c08_inner .menubox h3 {
    font-size: 1em;
  }
  #c08 .c08_inner .menubox .txt_small {
    font-size: 10px;
  }
  #c08 .c08_inner .menubox .c08_imgbox {
    margin: 15px auto;
  }
  #c08 .c08_inner .menubox .c08_imgbox:last-child {
    margin: 15px auto 0;
  }
  #c08 .c08_inner .menubox .c08_imgbox-course {
    margin: 15px auto 0;
  }
  #c08 .c08_inner .menubox .graytxtbox {
    padding: 5%;
    font-size: 1em;
  }
  #c09 h2 .tit {
    padding: 20px 0;
  }
  #c09 .c09_inner .flowbox01 figure, 
  #c09 .c09_inner .flowbox02 figure, 
  #c09 .c09_inner .flowbox03 figure, 
  #c09 .c09_inner .flowbox04 figure {
    margin-bottom: 15px;
  }
  #c09 .c09_inner .arrow {
    margin: 7% auto;
  }
  #c09 .c09_inner .flowbox01 div h3::after, 
  #c09 .c09_inner .flowbox02 div h3::after, 
  #c09 .c09_inner .flowbox03 div h3::after, 
  #c09 .c09_inner .flowbox04 div h3::after {
    width: 40px;
    height: 40px;
    top: 0;
  }
}