@charset "utf-8";
/* CSS Document */

body {
  color: #464646;
  background: #ffffff;
  font-family: Helvetica,  "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900


.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
a {
  text-decoration: none;
  color: #222222;
}
a:hover ,
a:focus {
  opacity: .7;
}
h1,h2,h3,h4,h5,h6 {
  line-height: 1;
  color: #464646;
  padding: 0;
  margin: 0 0 1rem;
  font-family: "Noto Sans JP", serif;
}
h2 {  font-size: 1.5rem;}
h3 {  font-size: 1.25rem;}
h4 {  font-size: 1rem;}
h5 {  font-size: .875rem;}
h6 {  font-size: .7rem;}
p {
  margin: 0 0 1rem;
  font-size: 14px;
}
address,
area,
article,
aside,
audio,
blockquote,
datalist,
details,
dl,
fieldset,
figure,
form,
ol,
optgroup,
option,
output,
p,
pre,
progress,
ruby,
section,
table,
textarea,
ul,
video {
  font-family: "Noto Sans JP", serif;
}
#wrapper {
    width: 100%;
    margin: 0 auto;
}
section {
  margin-bottom: 60px;
}
article {
  margin: 0 0 40px;
}
figure {
  margin: 0;
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
ul {
  margin: 0;
  padding: 0;
}
.pc {  display: none;}
.sp {  display: block;}
.flex {
  display: flex;
  flex-direction: column;
  gap: 30px 20px;
}
main {
  margin: 0;
  padding: 30px 0;
  text-align: center;
}
.inner {
  margin: 0 4%;
  width: 92%;
}
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: rgba(180, 204, 70, .8);
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 23px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all .3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}
.mb20 {
  margin-bottom: 20px;
}
@media screen and (min-width: 520px) {
.flex {
  flex-direction: row;
  flex-wrap: wrap;
}
.flex li {
  width: calc(100% / 2 - 10px);
}
}
@media screen and (min-width: 768px) {
a[href^="tel:"] {
    pointer-events: none;
}
main {
  padding: 70px 0;
}
body {
  font-size: 16px;
  line-height: 1.8;
}
h2 {  font-size: 2rem;}
h3 {  font-size: 1.75rem;}
h4 {  font-size: 1.5rem;}
h5 {  font-size: 1.25rem;}
h6 {  font-size: 1rem;}
p {
    margin: 0 0 1rem;
    font-size: 16px;
}
.pc {  display: block;}
.sp {  display: none;}

.flex li {
  width: calc(100% / 3 - 14px);
}
section {
  margin-bottom: 80px;
}
article {
  margin: 0 0 60px;
}
.inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
}
}
/*-----------------------------------------------------------------
　　ヘッダ
-----------------------------------------------------------------*/
.headline {
  margin: 0;
  width: 100%;
  position: relative;
}
#header {
  height: 40px;
}
.logo {
  margin-bottm:　0;
}
.swiper-wrapper {
   width: 100%;
   height: 30vh;
 }
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}
.swiper-slide img {
  object-fit: cover;
  height: 100%;
  width: auto;
}
.swiper-button-prev:after,
.swiper-button-next:after{
  content: "";
}
.logo_cnt {
  position: absolute;
  top: 5vh;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.logo_cnt img {
  max-width: 280px;
}
@media screen and (min-width: 768px) {
.swiper-wrapper {
   height: 50vh;
 }
}
@media screen and (min-width: 1080px) {
.swiper-wrapper {
   height: 70vh;
 }
.logo_cnt {
  top: 10vh;
}
.logo_cnt img {
  max-width: 320px;
}
}
@media screen and (min-width: 1400px) {
.swiper-wrapper {
   height: 80vh;
 }
}

/*ふわっとでてくる*/
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*-----------------------------------------------------------------
　　World ~ #Summary
-----------------------------------------------------------------*/
#World {
  background: url("../img/world_map.gif") no-repeat;
  background-size: 100%;
  background-position: top 40px center;
  max-width: 1180px;
  margin: 0 auto;
}
h2 {
    margin-bottom: 200px;
}
.maxPC {
  display: none;
}
.intro figure {
  margin: 0 auto;
  width: 90%;
}
.intro h3,
#Summary h3 {
  width: 100%;
  margin: 0 auto;
  font-family: "Zen Old Mincho", serif;
  line-height: 2;
  margin-bottom: 2rem;
}
.catch {
  font-weight: 700;
  font-size: 16px;
}
section#Mode_betsu ,
section#Summary {
  margin: 0 auto 60px;
  width: 100%;
}
section#Summary {
  background: url("../img/bg_btn.png") no-repeat;
  background-position: left top 60px;
  background-size: 100%;
}
.wide_inner {
  width: 100%;
  margin: 0 auto;
}
.acne {
  background: url("../img/bg_acne.jpg") no-repeat;
  background-size: 100%;
  background-position: left bottom;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.aging {
  background: url("../img/bg_aging.jpg") no-repeat;
  background-size: 100%;
  background-position: left bottom;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.pain {
  background: url("../img/bg_pain.jpg") no-repeat;
  background-size: 100%;
  background-position: left bottom;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.contour {
  background: url("../img/bg_contour.png") no-repeat;
  background-size: 100%;
  background-position: left bottom;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.hair {
  background: url("../img/bg_hair.png") no-repeat;
  background-size: 100%;
  background-position: left bottom;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.naka {
  padding: 20px 4% 20px 30%;
}
section#Mode_betsu p {
  font-family: "Zen Old Mincho", serif;
  color: #222222;
  font-weight: 700;
  text-align: left;
}
section#Mode_betsu ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mode_line {
  text-align: right;
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 4%;
}
.mode_line:before {
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: #0068B7;
}
.mode_line.m_aging:before {
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: #CD2D1E;
}
.mode_line.m_pain:before {
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: #F29100;
}
.mode_line.m_contour:before {
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: #AC3D88;
}
.mode_line.m_hair:before {
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: #0C958C;
}
.mode_line span {
  background: #0068B7;
  color: #ffffff;
  padding: 4px 20px;
  font-weight: bold;
  border-radius: 20px;
}
.mode_line.m_aging span {
  background: #CD2D1E;
}
.mode_line.m_pain span {
  background: #F29100;
}
.mode_line.m_contour span {
  background: #AC3D88;
}
.mode_line.m_hair span {
  background: #0C958C;
}
.kind {
  margin-left: 12px;
  margin-top: .5rem;
}
.kind span {
  font-size: 12px;
  line-height: 20px;
  position: relative;
  display: inline-block;
  transition: all .1s ease-in-out;
  text-align: center;
  text-decoration: none;
  color: #666666;
  background-color: #dddddd;
  margin-right: 22px;
}
.kind span:before,
.kind span:after {
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  content: '';
  border: 10px solid transparent;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}
.kind span:before {
    right: 100%;
    border-right-color: #dddddd;
}
.kind span:after {
    left: 100%;
    border-left-color: #dddddd;
}



.f_left ,.f_right {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
}
.f_right p {
  font-weight: 700;
  font-size: 22px;
}
.one_box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.size_l, .size_s, .size_dx {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin: 10px 0 0 20px;
}
.size_dx {
  margin-bottom: 40px;
}

.size_l span, .size_s span ,.size_dx span {
  background: #FF0000;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding-top: 0px;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  margin-top: 9px;
}
.size_s span {
  background: #0094DD;
}
.size_dx span {
  background: #deb800;
}
.size_l p, .size_s p ,.size_dx p {
  text-align: left;
  font-size: 18px;
  font-weight: 700;
}
.btn_one {
  margin: 0 auto 40px;
  width: 340px;
}
.btn_one a {
  display: block;
  background: #1BA7DC;
  border-radius: 8px;
  padding: 8px 16px;
  color: #FFFFFF;
  position: relative;
  box-shadow: 0 5px 0 #0B7AA4;
  cursor: pointer;
  text-decoration: none;
}
.btn_one a:before {
  content: "";
  display: inline-block;
  width: 104px;
  height: 24px;
  background: url(../img/summary.svg) no-repeat;
  background-position: left top;
  background-size: contain;
  position: absolute;
  top: 9px;
  left: 14px;
}
.btn_one a:after {
  content: "";
  display: inline-block;
  width: 104px;
  height: 24px;
  background: url(../img/common/arrow1.svg) no-repeat;
  background-position: right top;
  background-size: 20px;
  position: absolute;
  top: 13px;
  right: 16px;
}
.btn_one a:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.btn_one a:active {
  box-shadow: none;
  transform: translateY(5px);
}
#Summary h3.mode {
  width: 100%;
  background: url(../img/common/bg_line.png) no-repeat;
  background-size: contain;
  background-position: left 40px bottom;
  display: flex;
  flex-direction: row;
  position: relative;
  padding-left: 120px;
  font-size: 16px;
  text-align: left;
  max-width: none;
}
#Summary h3.mode img {
  width: 120px;
  height: 64px;
  position: absolute;
  bottom: 0px;
  left: -6px;
}
.card ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.class_mode {
  margin-top: 1rem;
  text-align: left;
}
.class_mode span {
    font-size: 14px;
    margin: 0 4px 4px 0;
    display: inline-block;
}
.class_mode span.icon_acne {
    background: #0068b7;
    color: #ffffff;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 16px;
    border: none;
}
.class_mode span.icon_wrinkle {
    background: #cd2d1e;
    color: #ffffff;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 16px;
    border: none;
}
.class_mode span.icon_pain {
    background: #f29100;
    color: #ffffff;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 16px;
    border: none;
}
.class_mode span.icon_contour {
    background: #ac3d88;
    color: #ffffff;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 16px;
    border: none;
}
.class_mode span.icon_hair {
    background: #0c958c;
    color: #ffffff;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 16px;
    border: none;
}
.class_mode span.size_l {
    background: #e60012;
    color: #ffffff;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 16px;
    border: none;
    width: 28px;
    text-align: center;
}
.class_mode span.size_s {
    background: #0094dd;
    color: #ffffff;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 16px;
    border: none;
    width: 28px;
    text-align: center;
}
.class_mode span.size_dx {
    background: #deb800;
    color: #ffffff;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 16px;
    border: none;
    width: 28px;
    text-align: center;
}
p.ditail {
  text-align: left;
}
p.ditail span {
  font-weight: 700;
  font-size: 110%;
}
h4.und_green span {
  border-bottom: 4px solid #BCD541;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  margin-bottom: 2rem;
}
h4.mt2 {
  margin-top: 2rem;
}
.flex_list ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.flex_list li {
  width: calc(100% / 2 - 10px);
}
.flex_list li p {
  text-align: left;
}
.flex_list li span {
  font-weight: bold;
  display: block;
}

section#Initial {
  background: rgba(180, 204, 70, .2);
  padding: 40px 0;
}
.cp_h1title {
  margin: 0 auto;
  padding: 0;
  color: #ffffff;
  background-color: #CD2D1E;
  line-height: 32px;
  font-size: 20px;
  text-align: center;
  position: relative;
}
.cp_h1title:before, .cp_h1title:after {
    content: '';
    border: 15px solid transparent;
    position: absolute;
    z-index: -1;
}
.cp_h1title:before {
    border-right-color: #8C3129;
    top: 50%;
    left: -15px;
}
.cp_h1title:after {
    border-left-color: #8C3129;
    top: 50%;
    right: -15px;
}
.bg_whtie {
  background: #ffffff;
  padding: 40px 4%;
  margin: -50px 15px 0;
}
.bg_whtie h4 {
  margin: 40px auto 10px;
  width: 200px; 
}
.bg_whtie h5 {
  background: #056386;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 20px;
  width: 200px;
  margin: 0 auto 20px;
}
.card_initial {
  margin: 0 auto 30px;
  width: 100%;
  max-width: 500px;
  box-shadow: 1px 1px 5px 1px #ddd;
  padding: 16px;
  border-radius: 16px;
}
.txt_area {
  width: 100%;
}
.txt_area table {
  margin: 0;
  width: 100%;
}
.txt_area table th {
  font-weight: normal;
  text-align: left;
  line-height: 1.4;
}
.txt_area table td {
  text-align: right;
  width: 12px;
}
.txt_area table td.yen {
  width: 5rem;
  text-align: right;
}
.txt_area table td.yen::after ,
.bg_Red_line span::after {
  content: ' 円';
  font-size: 70%;
}
tr.udrB {
  border-top: 1px solid #000000;
  font-weight: bold;
  font-size: 110%;
}
tr.udrB th {
  text-align: right;
  font-weight: bold;
}
.arrow_dwn {
  padding-bottom: 50px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.arrow_dwn::after{
  content: '';
  position: absolute;
  top: 0;
  left: 45%;
  width: 0;
  height: 0;
  border-top: 30px solid #E6958E;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}
.bg_Red_line {
  background: #CD2D1E;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  font-weight: bold;
}
.box_title {
  background: #E6958E;
  color: #ffffff;
  padding: 2px 8px;
  margin-bottom: 8px;
  font-weight: bold;
}
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 90%;
  max-width: 960px;
  padding: 30px 16px 15px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle;
}
.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 10px;
}
.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}
.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  color: #404040;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}
.modal-wrapper .modal-close:hover {
  color: #2b2e38;
}
.my_modal_header {
  background: #A91522;
  color: #FFFFFF;
  padding: 10px 16px;
  margin-bottom: 20px;
}
.modal-content p {
  text-align: justify;
}
a.madai_img {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: block;
}
.madai_img::after {
  content: "";
  background: url(../img/common/icon_large.svg) no-repeat;
  background-size: 40px;
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: 10px;
  right: 10px;
}
.sim_img_sp {
    display: block; 
} 
  .sim_img_pc {
    display: none; 
  }
.cyu_i {
  margin-top: 4px;
  text-align: left;
  color: #CD2D1E;
}
.img_arrow {
  background: url("../img/arrow_dwn.png") no-repeat;
  background-size: 98vw;
  background-position: top center;
  padding: 5vh 0 6vh;
}
.img_arrow p {
  color: #ffffff;
}
.title_line_gr {
  background: url(../img/common/title_line_gr.png) no-repeat;
  background-size: 80%;
  background-position: bottom center;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#Voice ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
  margin: 0 auto;
}
#Voice li {
  border: 1px solid #CD2D1E;
  border-radius: 8px;
  padding: 16px;
}
.people {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
.people img {
  width: 100px;
}
.people p {
  color: #E6958E;
  font-weight: bold;
  text-align: right;
  line-height: 1.6;
  font-size: 14px;
}
p.comment {
  text-align: justify;
  margin-bottom: 0;
  font-size: 14px;
}
.btn_contact {
  margin: 0 auto 20px;
  width: 270px;
}
.btn_contact a {
  display: block;background: radial-gradient(circle,rgba(188, 213, 65, 1) 0%, rgba(5, 99, 134, 1) 100%);
  border-radius: 8px;
  padding: 16px 20px;
  color: #FFFFFF;
  position: relative;
  box-shadow: 0 5px 0 #094459;
  cursor: pointer;
  text-decoration: none;
}
.btn_contact a:before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 24px;
  background: url(../img/common/icon_mail.svg) no-repeat;
  background-position: right top;
  background-size: 24px;
  position: absolute;
  top: 19px;
  left: 30px;
}
.btn_contact.i_cart a:before {
  width: 28px;
  height: 24px;
  background: url(../img/common/icon_cart.svg) no-repeat;
  background-position: right top;
  background-size: 27px;
  top: 17px;
  left: 30px;
}
.btn_contact a:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.btn_contact a:active {
  box-shadow: none;
  transform: translateY(5px);
}
.bnr_area {
  margin: 40px auto 0;
  width: 345px;
}
.bnr_area a {
  display: block;
  background: url("../img/bnr_shop.jpg") no-repeat;
  background-size: 100%;
  text-indent:100%;
  white-space:nowrap;
  overflow:hidden;
  height: 94px;
}
.bnr_area a:hover {
  display: block;
  background: url("../img/bnr_shop_hover.jpg") no-repeat;
  background-size: 100%;
  text-indent:100%;
  white-space:nowrap;
  overflow:hidden;
  height: 94px;
} 
.bnr_area.fabrica a {
  display: block;
  background: url("../img/bnr_fabrica.jpg") no-repeat;
  background-size: 100%;
  text-indent:100%;
  white-space:nowrap;
  overflow:hidden;
  height: 94px;
}
.bnr_area.fabrica a:hover {
  display: block;
  background: url("../img/bnr_fabrica_hover.jpg") no-repeat;
  background-size: 100%;
  text-indent:100%;
  white-space:nowrap;
  overflow:hidden;
  height: 94px;
}
.gr_suke {
  font-weight: 700;
  font-size: 90px;
  color: rgba(188, 213, 65, .4);
  position: relative;
  line-height: 1;
}
.cath_sence {
  font-weight: 600;
  z-index: 3;
  position: absolute;
  margin: -30px auto 0;
  font-size: 20px;
  width: 90%;
  font-family: "Zen Old Mincho", serif;
  color: #636363;
}
.img_list {
  width: 100%;
  margin: 130px auto 40px;
}
.img_list ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
.dev900 {
  display: none;
}
.head_txt {
  width: 92%;
  margin: 40px auto 0;
  
}
.head_txt h2 {
  width: 200px;
  margin: 0 auto 40px;
}
.head_txt h2 img {
  display: block;
  margin-top: 20px;
}
.read {
  text-align: justify;
  font-weight: 700;
  color: #666666;
}
.item_list {
  margin-top: 40px;
}
.item_list ul {
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
}
.list_img {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn_two {
  width: 280px;
  margin: 0 auto;
}
.btn_two ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.btn_two a {
  display: block;
  border: 1px solid #000000;
  padding: 16px;
  height: 96px;
}
.btn_two a:hover {
  background: rgba(180, 204, 70, .5) ;
  border-color: #227B9B;
  border-bottom: 3px solid #227B9B;
}
.btn_two a p {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 0;
}
.btn_two a p.txt_L {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .1rem;
  position: relative;
  text-indent: 3rem;
}
.icon_mail {
  padding-top: 16px;
}
.icon_mail:before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 24px;
    background: url(../img/common/icon_mail_bl.svg) no-repeat;
    background-position: right top;
    background-size: 24px;
    position: absolute;
    top: 19px;
    left: 30px;
}
.icon_tel:before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 24px;
    background: url(../img/common/icon_tel.svg) no-repeat;
    background-position: right top;
    background-size: 24px;
    position: absolute;
    top: 7px;
    left: 30px;
}
footer {
    font-size: 12px;
}
.f_copy {
    background: #000000;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    color: #dddddd;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.f_copy a {
  color: #FFFFFF;
  margin-left: .5rem;
}




/*----------sp-------------------------------------------------*/
@media screen and (min-width: 440px) {
.img_arrow {
  padding: 6.5vh 0 7vh;
  background-size: 470px;
  margin: 0 auto;
}
.bnr_area {
  width: 404px;
}
.bnr_area a ,.bnr_area a:hover ,
.bnr_area.fabrica a ,.bnr_area.fabrica a:hover {
  height: 110px;
}
.img_list {
  margin-top: 80px;
}
.img_list ul {
  flex-direction: row;
  }
.img_list li {
  width: calc(100% / 2 - 5px);
  }
}
@media screen and (min-width: 480px) {
h2 {
    margin-bottom: 40vh;
}
#Summary h3.mode {
    padding-left: 140px;
    font-size: 20px;
    padding-bottom: 10px;
    line-height: 1.6;
}
#Summary h3.mode img {
    width: 130px;
    height: 76px;
    position: absolute;
    bottom: -6px;
    left: -11px;
}
}
@media screen and (min-width: 600px) {
h2 {
    margin-bottom: 50vh;
}
.intro figure {
  max-width: 700px;
  width: 80%;
}
.intro h3 ,
#Summary h3  {
  width: 90%;
  max-width: 1000px;
  margin-bottom: 4rem;
}
.catch {
  font-size: 24px;
}
#Summary h3.mode {
  padding-left: 150px;
  font-size: 26px;
  padding-bottom: 13px;
}
#Summary h3.mode img {
    width: 150px;
    height: 98px;
    position: absolute;
    bottom: 5px;
    left: -11px;
}
.flex_list li {
  width: calc(100% / 3 - 14px);
}
.cp_h1title {
    line-height: 40px;
}
.cp_h1title:before, .cp_h1title:after {
    content: '';
    border: 20px solid transparent;
    position: absolute;
    z-index: -1;
}
.cp_h1title:before {
    border-right-color: #8C3129;
    top: 50%;
    left: -20px;
}
.cp_h1title:after {
    border-left-color: #8C3129;
    top: 50%;
    right: -20px;
}

.modal-wrapper .modal-window {
  padding: 30px 30px 15px;
}
.bnr_area {
  width: 523px;
}
.bnr_area a ,.bnr_area a:hover ,
.bnr_area.fabrica a ,.bnr_area.fabrica a:hover {
  height: 140px;
}
.img_list li {
  width: calc(100% / 3 - 7px);
  }
.list_img {
    flex-direction: row;
    gap: 0;
    width: 100%;
}
.list_img img {
  width: 50%;
}
}
@media screen and (min-width: 768px) {
h2 {
    margin-bottom: 55vh;
}
.catch {
  font-size: 30px;
}
.acne, .aging, .pain, .contour, .hair {
    background-size: contain;
    padding-bottom: 30px;
    padding-top: 18vh;
    margin-bottom: 60px;
}
.naka {
  padding: 0;
  width: 80%;
  margin: 0 4% 30px auto;
}
section#Mode_betsu ,
section#Summary{
  margin: 0 auto 100px;
}
section#Mode_betsu ul {
    flex-direction: row;
    gap: 10px;
} 
section#Mode_betsu p {
  margin-bottom: .5rem;
  font-size: 16px;
}
.f_left ,.f_right {
  width: calc(100% / 2 - 20px);
}
.f_right {
  text-align: left;
  padding-top: 60px;
}
.f_right p {
  font-size: 24px;
}
.btn_one {
  width: 380px;
}
.btn_one a {
  display: block;
  background: #1BA7DC;
  border-radius: 8px;
  padding: 16px 24px;
  color: #FFFFFF;
  position: relative;
  box-shadow: 0 5px 0 #0B7AA4;
  cursor: pointer;
  text-decoration: none;
} 
.btn_one a:before {
    width: 108px;
    height: 27px;
    top: 18px;
    left: 16px;
}
.btn_one a:after {
  top: 23px;
}
#Summary h3.mode {
   font-size: 26px;
   padding: 20px 0 20px 160px;
   line-height: 2rem;
  margin-bottom: 2rem;
}
.card ul {
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  width: 691px;
  margin: 0 auto;
}
.card li {
  width: calc(100% / 3);
  margin:0 auto;
}
.card li figure {
  width: 219px;
  height: 144px;
  overflow: hidden;
}
.card li figure img {
  transition:1s all;
  width: 100%;
}
.card li figure img:hover {
  transform:scale(1.2,1.2);
  transition:1s all;
}
.flex_list li {
  width: calc(100% / 4 - 15px);
} 
.card_initial {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.card_initial h5 {
  width: 100%;
}
.card_initial img {
  width: 48%;
}
.txt_area {
  width: calc(100% - 48% - 20px);
}
section#Initial {
    padding: 80px 0 60px;
}
.bg_whtie {
    padding: 60px 20px 20px;
    margin: -60px 15px 0;
}  
.card_initial {
    max-width: none;
    padding: 20px;
}
.sim_img_sp {
    display: none; 
} 
.sim_img_pc {
    display: block; 
  }
.img_arrow {
  padding: 70px 0 90px;
  background-size: 610px;
  margin: 0 auto;
}
.img_arrow p {
    font-size: 22px;
    font-weight: 700;
}
.title_line_gr {
    background-size: 300px;
    margin-bottom: 30px;
}
#Voice ul {
    flex-direction: row;
    gap: 10px;
    max-width: none;
    margin: 0 auto;
}
.people {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0px;
}
#Voice li {
    padding: 16px 10px;
}
.people img {
    width: 80px;
}
.bnr_area {
    width: 663px;
    margin-top: 60px;
}
.bnr_area a ,.bnr_area a:hover ,
.bnr_area.fabrica a ,.bnr_area.fabrica a:hover {
  height: 178px;
  }
.cath_sence {
    font-size: 26px;
}
.img_list {
    margin-top: 100px;
  margin-bottom: 60px;
}
.head_homecare {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
.img_area {
  width: 50%;
}
.head_txt {
width: 40%;
}
.read {
  font-weight: normal;
  margin-bottom: 0;
}
.head_txt h2 {
    width: 250px;
    margin: 0 auto 90px;
}
.item_list {
    margin-top: 50px;
}
.item_list ul {
  margin-top: 40px;
    gap: 50px;
    max-width: none;
}
.item_list li {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}
.list_img {
    flex-direction: column;
    gap: 10px;
    width: 35%;
}
.list_img img {
    width: 100%;
}
  .item_list .txt_area {
    width: calc(100% - 35% - 10px);
  }
.item_list .class_mode {
    margin-top: 0;
}
.btn_two {
  width: 590px;
  margin: 0 auto;
}
.btn_two ul {
  flex-direction: row;
  gap: 30px;
}
.btn_two li {
  width: 100%;
}
footer {
    font-size: 16px;
}
}

@media screen and (min-width: 900px) {
h2 {
  font-size: 3rem;
  margin-bottom: 60vh;
}
.f_right p {
  font-size: 28px;
}
section#Summary {
    background-position: left top 70px;
    background-size: 100%;
}
#Summary .flex {
  justify-content: center;
  gap: 60px;
}
.f_left {
  width: 400px;
  margin: 0;
}
.f_right {
  width: calc(100% - 460px);
  margin: 0;
}
.one_box {
    margin: 0 auto 100px;
}
#Summary h3.mode {
    padding: 30px 0 30px 190px;
}
#Summary h3.mode img {
  width: 180px;
  height: 100px;
  position: absolute;
  bottom: -6px;
  left: -12px;
}
p.ditail span {
    font-size: 120%;
}
.card ul {    
  width: 810px;
}
.card li figure {
  width: 259px;
  height: 172px;
} 
.bg_whtie h4 {
    margin: 40px auto 30px;
    width: 240px;
}
.card_initial {
    padding: 30px 20px;
}
#Voice li {
    padding: 20px 16px;
}
.people {
    flex-direction: row;
    margin-bottom: 20px;
}
.dev900 {
  display: block;
}
.list_img {
  flex-direction: row;
    gap: 0;
    width: 70%;
}
.list_img img {
    width: 50%;
}
.item_list .txt_area {
    width: calc(100% - 70% - 10px);
}
}
@media screen and (min-width: 1080px) {
main {
  padding: 100px 0;
}

.maxPC {
  display: block;
}
.catch {
  font-size: 40px;
}
.acne, .aging, .pain, .contour, .hair {
  background-size: contain;
  padding-bottom: 60px;
  padding-top: 22vh;
  margin-bottom: 100px;
}
.naka {
  padding: 0;
  width: 74%;
  max-width: 900px;
  margin: 0 8% 40px auto;
}
.mode_line {
  padding-right: 8%;
}
.mode_line span {
  padding: 4px 30px;
  font-weight: bold;
  border-radius: 28px;
  font-size: 1.5rem;
}
section#Mode_betsu p {
  font-size: 20px;
}
#Summary h3.mode {
  background-position: left 70px bottom;
  margin-bottom: 3rem;
  padding: 50px 0 45px 240px;
  font-size: 30px;
}
#Summary h3.mode img {
  width: 220px;
  height: 130px;
  position: absolute;
  bottom: -8px;
  left: -12px;
}
.card ul {    
  width: 972px;
}
.card li figure {
  width: 313px;
  height: 208px;
} 
.cp_h1title {
    line-height: 60px;
    font-size: 26px;
    max-width: 1020px;
}
.cp_h1title:before, .cp_h1title:after {
    content: '';
    border: 30px solid transparent;
    position: absolute;
    z-index: -1;
}
.cp_h1title:before {
    border-right-color: #8C3129;
    top: 50%;
    left: -30px;
}
.cp_h1title:after {
    border-left-color: #8C3129;
    top: 50%;
    right: -30px;
}
.bg_whtie {
    padding: 90px 20px 20px;
    margin: -90px auto 0;
    max-width: 960px;
}
.img_arrow {
    padding: 80px 0 100px;
    background-size: 700px;
    margin: 0 auto;
}
.img_arrow p {
  font-size: 25px;
}
.bnr_area {
    width: 900px;
    margin-top: 80px;
}
.bnr_area a ,.bnr_area a:hover ,
.bnr_area.fabrica a ,.bnr_area.fabrica a:hover {
  height: 240px;
}
.gr_suke {
    font-size: 110px;
}
.cath_sence {
    font-size: 30px;
    margin: -30px auto 0;
    width: 90%;
}
.img_list {
    margin-top: 120px;
  
}
.img_list li {
    width: calc(100% / 4 - 8px);
}
.item_list {
    margin-top: 80px;
}
.list_img {
    width: 62%;
}
.item_list .txt_area {
    width: calc(100% - 62% - 10px);
}
.head_txt h2 {
    margin: 0 auto 170px;
}
}
@media screen and (min-width: 1280px) {
section#Summary article {
  max-width: 1152px;
}
.acne, .aging, .pain, .contour, .hair {
    padding-top: 27vh;
}
.naka {
  padding: 0;
  width: 74%;
  max-width: 1000px;
  margin: 0 8% 40px auto;
}
.card ul {    
  width: 1152px;
}
.card li figure {
  width: 373px;
  height: 246px;
} 
.read {
    font-weight: 700;
    line-height: 2.5;
}
.head_txt {
    width: 34%;
}
.btn_two {
  margin-top: 80px;
}
.cath_sence {
  font-size: 36px;
  margin: -30px auto 0 auto;
  width: 90%;
  max-width: 1150px;
}
}

/*-------------------------------------------
  summary
--------------------------------------------*/
.head_summary {
    margin: 0;
    width: 100%;
    background: url("../img/head_summary_anme.gif") no-repeat , url("../img/head_summary.jpg") no-repeat;
    background-size: contain , cover;
    background-position: left bottom , top center;
    height: 300px;
    padding: 100px 20px 0;
}
.head_summary h2 {
    text-align: center;
    color: #ffffff;
}
#smm_intro h3 {
  color: #006785;
}
.txt_area p ,
.txt_box p {
  text-align: justify;
}
#smm_toha {
  background: radial-gradient(circle,rgba(0, 103, 133, 1) 0%, rgba(25, 26, 39, 1) 100%);
  padding: 40px 0;
}
#smm_toha h3 ,
#smm_toha .txt_box p ,
#smm_toha .txt_area p{
  color: #ffffff;
}
#smm_toha img {
  margin: 0 auto 20px;
  max-width: 700px;
}
.kakomi_kimi {
  padding: 16px;
  border: 1px solid #bcd541;
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
}
.kakomi_kimi .txt_area ul {
  text-align: left;
}
.kakomi_kimi .txt_area li {
  font-weight: bold;
  color: #ffffff; 
  width: 100%;
}
.kakomi_kimi .txt_area li ol {
  list-style: circle;
  margin-bottom: 10px;
  padding: 0 20px 0 10px;
}
.kakomi_kimi .txt_area li ol li {
    margin-left: 1rem;
    font-weight: normal;
  width: 100%;
}
#smm_toha .img_area img {
    margin-bottom: 0;
}
.kakomi_kimi h5 {
  color: #ffffff;
}
.cellumaKouka {
    margin: 30px auto 0;
    width: 100%;
    max-width: 900px;
}
.cellumaKouka li {
    margin: 0 auto 10px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}
.settei {
    margin: 0;
    width: 105px;
    padding: 4px;
    background: #0068b7;
    color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
}
.settei.cl_aging {
    background: #cd2d1e;
}
.settei.cl_pain {
    background: #f29100;
}
.settei.cl_contour {
    background: #ac3d88;
}
.settei .cl_hair {
    background: #0c958c;
}
.cellumaKouka li p {
    width: calc(100% - 105px - 8px);
    text-align: justify;
}
.cl_red {
    color: #ff1f1f;
}
#Mode_detail h3 ,
#Mv_box h3 {
  background: linear-gradient(317deg,rgba(175, 204, 86, 1) 0%, rgba(0, 103, 133, 1) 12%);
  display: flex;
  justify-content: space-between;
  color: #ffffff;
  padding: 10px;
  font-size: 16px;
}
#Mode_detail h3 span {
  font-size: 1.25rem;
}
#Mode_detail h4 {
  text-align: left;
}
.youtubeBox {
    width: 100%;
    margin: 0 auto 30px;
}
.container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.container iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.evdBox {
    width: 100%;
    margin: 0 auto;
}
#Mv_box li {
    margin: 0 0 30px;
    background: #eeeeee;
    text-align: left;
    padding: 10px;
}
#Mv_box li h4 {
  margin-top: 10px;
  line-height: 1.6;
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  #Mv_box ul {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }
  #Mv_box li {
      width: calc(100% / 2 - 5px);
  }
}
@media screen and (min-width: 768px) {
.head_summary {
    background-position:left bottom , top -70px center;
}
  .img_area {
    width: 48%;
  }
  #smm_toha {
    padding: 60px 0;
}
  #smm_toha article {
    margin: 0 auto 60px;
    max-width: 960px;
  }
  
  #smm_toha h3 {
    font-size: 32px;
    margin-bottom: 60px;
  }
  #smm_toha img {
  margin-bottom: 40px;
}
  #smm_toha .txt_box p {
    width: 100%;
}
  .kakomi_kimi {
    padding: 30px;
}
 #smm_toha figure img {
   width: 100%;
   max-width: none;
  }
  .settei {
    width: 166px;
    padding: 4px 8px;
    font-size: 16px;
}
  .cellumaKouka li p {
    width: calc(100% - 185px - 8px);
}
.herfbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  gap: 5%;
}
.youtubeBox {
    width: 50%;
}
.evdBox {
    width: 43%;
}
#Mode_detail h4 ,
#Mv_box h4{
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
}
  #Mv_box li {
      width: calc(100% / 3 - 7px);
  }
}

 @media screen and (min-width: 900px) {
.head_summary {
    background-position: left bottom , top -90px center;
    height: 330px;
}

}
 @media screen and (min-width: 1400px) {
.head_summary {
    background-position: left bottom , top -250px center;
    height: 330px;
}
}
/*-------------------------------------------
  privacypolicy
--------------------------------------------*/
.txtgg_box {
  text-align: left;
}
.txtgg_box .sub_h4 {
    background: #222222;
    color: #ffffff;
    padding: 8px 16px;
}
.txtgg_box h5 {
    margin-bottom: 8px;
}
.text_right {
    text-align: right;
    margin-top: 1rem;
}
/*-------------------------------------------
  営業資料
--------------------------------------------*/

.head_sales {
    margin: 0;
    width: 100%;
    background: linear-gradient(315deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
    height: 150px;
    padding: 60px 20px 0;
}
.head_sales h2 {
    margin-bottom: 0;
  text-align: center;
  color: #FFFFFF;
}
#Whitepaper iframe {
  width: 100%;
  overflow: hidden;
}
#Wp_section {
  margin-top: 40px;
}
#Wp_section .btn_two a {
    display: block;
    border: 1px solid #000000;
    padding: 34px 16px;
    height: 96px;
}
.icon_ppx:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(../img/common/icon_ppx.svg) no-repeat;
  background-position: right top;
  background-size: 32px;
  position: absolute;
  top: 0;
    left: 10px;
}
.icon_pdf:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(../img/common/icon_pdf.svg) no-repeat;
  background-position: right top;
  background-size: 32px;
  position: absolute;
  top: 0;
    left: 10px;
}
@media screen and (min-width: 768px) {

#Whitepaper iframe {
  height: 80vh;
}
#Wp_section {
  margin-top: 80px;
}
}