@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap");

/*pc*/
@media screen and (min-width: 600px) {
}
/*sp*/
@media screen and (max-width: 599px) {
}

/* ============================================
wrapper
=============================================*/
#wrapper{
  overflow: hidden;
  color: #000;
}

/* ============================================
非表示設定
=============================================*/
/* PC */
@media screen and (min-width: 600px) {
  .no-pc { display: none !important;}
}
/* SP */
@media screen and (max-width: 599px) {
  .no-sp { display: none !important;}
}

/* ============================================
section_box
=============================================*/
.section_box{
  padding-top: 80px;
  padding-bottom: 80px;
}
/*sp*/
@media screen and (max-width: 599px) {
  .section_box{
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* ============================================
tel-link
=============================================*/
.tel-link > a{
  text-decoration: none;
  color: inherit;
}

/* ============================================
inner
=============================================*/
/*pc*/
@media screen and (min-width: 600px) {
  .inner{
    max-width: calc(1200px + 20px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
  .inner_mini{
    max-width: calc(960px + 20px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
  .inner_mini_s{
    max-width: calc(800px + 20px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*sp*/
@media screen and (max-width: 599px) {
  .inner,
  .inner_mini,
  .inner_mini_s{
    padding-left: 5.33333vw;
    padding-right: 5.33333vw;
  }
}

/* ============================================
sup
=============================================*/
sup{
  font-size: 70%;
  vertical-align: top;
  position: relative;
  top: 0.1em;
}

/* ============================================
anime
=============================================*/
/* ----- anime-kirarin ----- */
.anime-kirarin{
  position: relative;
  overflow: hidden;
}
.anime-kirarin::after{
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg,  rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
  /* アニメーション */
  animation-name: anime-kirarin;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes anime-kirarin {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}

/* ============================================
header
=============================================*/
.header  a{
  display: inline-block;
}
/*pc*/
@media screen and (min-width: 600px) {
  .header {
    border-bottom: #000 solid 6px;
    background-color: #fff;
    padding: 20px 0 22px;
    height: auto;
    line-height: 1.5;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header img {
    width: 110px;
  }
}
/*sp*/
@media screen and (max-width: 599px) {
  .header {
    border-bottom: #000 solid 4px;
    background-color: #fff;
    padding: 9px 0 11px 0;
    z-index: 99;
    width: 100%;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header img {
    width: 74px;
    height: auto;
    vertical-align: bottom;
  }
}

/* ============================================
inview
=============================================*/
.inview{
	opacity: 0 !important;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.inview.inview_active{
	opacity: 1 !important;
}

/* ----- blur in ----- */
.blur_in{
  -ms-filter: blur(6px);
  filter: blur(6px);
  -webkit-transition: 1.0s;
  -moz-transition: 1.0s;
  -ms-transition: 1.0s;
  -o-transition: 1.0s;
  transition: 1.0s;
}
.inview_active.blur_in{
  -ms-filter: blur(0);
  filter: blur(0);
}

/* ----- top in ----- */
.inview-top{
  -webkit-transform: translate(0, -60px);
  -moz-transform: translate(0, -60px);
  -ms-transform: translate(0, -60px);
  -o-transform: translate(0, -60px);
  transform: translate(0, -60px);
}

/* ----- bottom in ----- */
.inview-bottom{
  -webkit-transform: translate(0, 60px);
  -moz-transform: translate(0, 60px);
  -ms-transform: translate(0, 60px);
  -o-transform: translate(0, 60px);
  transform: translate(0, 60px);
}

/* ----- left in ----- */
.inview-left{
  -webkit-transform: translate(-60px, 0);
  -moz-transform: translate(-60px, 0);
  -ms-transform: translate(-60px, 0);
  -o-transform: translate(-60px, 0);
  transform: translate(-60px, 0);
}

/* ----- right in ----- */
.inview-right{
  -webkit-transform: translate(60px, 0);
  -moz-transform: translate(60px, 0);
  -ms-transform: translate(60px, 0);
  -o-transform: translate(60px, 0);
  transform: translate(60px, 0);
}

/* ----- in common ----- */
.inview_active.inview-top,
.inview_active.inview-bottom,
.inview_active.inview-left,
.inview_active.inview-right{
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* ----- repeat in ----- */
.inview_repeat .inview_repeat_tgt_top,
.inview_repeat .inview_repeat_tgt_bottom,
.inview_repeat .inview_repeat_tgt_left,
.inview_repeat .inview_repeat_tgt_right{
	opacity: 0;
  -webkit-transition-duration: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.inview_repeat .inview_repeat_tgt_top{
  -webkit-transform: translate(0, -30px);
  -moz-transform: translate(0, -30px);
  -ms-transform: translate(0, -30px);
  -o-transform: translate(0, -30px);
  transform: translate(0, -30px);
}
.inview_repeat .inview_repeat_tgt_bottom{
  -webkit-transform: translate(0, 30px);
  -moz-transform: translate(0, 30px);
  -ms-transform: translate(0, 30px);
  -o-transform: translate(0, 30px);
  transform: translate(0, 30px);
}
.inview_repeat .inview_repeat_tgt_left{
  -webkit-transform: translate(-30px, 0px);
  -moz-transform: translate(-30px, 0px);
  -ms-transform: translate(-30px, 0px);
  -o-transform: translate(-30px, 0px);
  transform: translate(-30px, 0px);
}
.inview_repeat .inview_repeat_tgt_right{
  -webkit-transform: translate(30px, 0px);
  -moz-transform: translate(30px, 0px);
  -ms-transform: translate(30px, 0px);
  -o-transform: translate(30px, 0px);
  transform: translate(30px, 0px);
}
.inview_repeat .inview_repeat_tgt_top.inview_repeat_active,
.inview_repeat .inview_repeat_tgt_bottom.inview_repeat_active,
.inview_repeat .inview_repeat_tgt_left.inview_repeat_active,
.inview_repeat .inview_repeat_tgt_right.inview_repeat_active{
	opacity: 1;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* ============================================
btnWrap
=============================================*/
@media (min-width: 600px) {
  .btnWrap {
    width: 96%;
    max-width: 700px;
    margin: 0 auto;
  }
}
@media (max-width: 599px) {
  .btnWrap {
    width: 100%;
    padding: 0 3%;
  }
}
.btn {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 8px;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  position: relative;
  z-index: 2;
  background-color: #333;
  border: 2px solid #333;
  color: #fff;
  line-height: 1.6;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-size: 20px;
  font-size: 2rem;
}
.btn_white {
  background-color: #fff;
  border: 2px solid #fff;
  color: #333;
}
.btn .icon-arrow {
  position: absolute;
  right: 10px;
  font-size: 15px;
  top: 50%;
  margin-top: -7px;
}
@media (min-width: 960px) {
  .btn .icon-arrow {
    right: 20px;
  }
}
/*trial_flow*/
@media screen and (max-width: 599px) {
  #trial_flow .flow_box .link {
    padding: 0 15px 15px 15px;
  }
}
#trial_flow .btn_white {
  background-color: #fff;
  border: 1px solid #8a8d8f;
  color: #333;
}

/* ============================================
trial_flow
=============================================*/
#trial_flow{
  padding-top: 50px;
  padding-bottom: 50px;
}
/*sp*/
@media screen and (max-width: 599px) {
  #trial_flow{
    padding-top: 0;
  }
}
#trial_flow .content_box {
  position: relative;
  border-bottom: 1px solid #b39f66;
  height: 47px;
}
#trial_flow h2 span.h3Jpn, #trial_flow h3 span.h3Jpn {
  display: block;
  line-height: 94px;
  width: 298px;
  height: 94px;
  margin: 0 auto;
  color: #000;
  font-family: "Reimin Bold", 'Libre Baskerville', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
  background: #fff url("/trial/body/img/ttl01.png") center no-repeat;
  background-size: contain;
}
#trial_flow span.h3Eng {
  position: absolute;
  bottom: -65%;
  left: 50%;
  width: 298px;
  margin-left: -149px;
  color: #b39f66;
  font-family: "Reimin Light", 'Libre Baskerville', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
}

/* ============================================
footer
=============================================*/
/* ----- pageTop ----- */
.pageTop  a{
  display: inline-block;
}
/*pc*/
@media screen and (min-width: 600px) {
  .pageTop {
    text-align: center;
    padding: 0px 0 30px;
  }
}
/*sp*/
@media screen and (max-width: 599px) {
  .pageTop {
    width: 70px;
    margin: 0 auto;
    padding-bottom: 0;
  }
}

/* ----- caution ----- */
/*pc*/
@media screen and (min-width: 600px) {
  .caution {
    background-color: #f4f4f4;
    padding: 35px 0 30px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.75;
  }
  .caution ul {
    margin: 0 auto;
    line-height: 2.2;
  }
  .caution ul li{
    padding-left:1rem;
    text-indent:-1rem;
  }
  .caution ul li a{
    color: #444;
    text-decoration: underline;
  }
  .caution ul li a:hover{
    color: #b39f66;
    text-decoration: none;
  }
}
/*sp*/
@media screen and (max-width: 599px) {
  .caution {
    padding: 15px 0 10px;
    font-size: 12px;
    font-size: 1.2rem; 
  }
  .caution ul {
    /*width: 90%;*/
    margin: 0 auto;
    line-height: 1.75; 
  }

  .caution ul li{
    padding-left:1rem;
    text-indent:-1rem;
  }
  .caution ul li a{
    color: #444;
    text-decoration: underline;
  }
}

/* ----- footer_btn ----- */
/*pc*/
@media screen and (min-width: 600px) {
  .footer_btn {
    padding: 40px 0 20px;
    text-align: center;
  }
  .footer_btn_con {
    margin-bottom: 20px;
  }
  .footer_btn_con:last-of-type {
    margin-bottom: 0;
  }
  .footer_btn-a {
    line-height: 68px;
    width: 445px;
    height: 68px;
    background: #f6f5f2;
    border: 1px solid #a18958;
    color: #444;
    font-weight: bold;
    font-family: "Yu Gothic Pr6N R", sans-serif;
    text-align: center;
    text-decoration: none;
    transition: background .2s linear;
    font-size: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
  }
  .footer_btn-a.fb_togTri {
    cursor: pointer;
  }
  .footer_btn-a i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 18px;
  }
  .footer_btn-a .icon-plus_lp {
    position: absolute;
    width: 3px;
    height: 24px;
    background-color: #444;
    display: block;
    border-radius: 21px;
    margin-right: 10px;
    transition: transform .2s ease-in;
  }
  .footer_btn-a .icon-plus_lp::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: #444;
    transition: transform .2s ease-in;
    top: 10px;
    left: -10px;
  }
  .footer_btn-a:hover {
    background: #fff;
    opacity: 1;
  }
  /* open */
  .footer_btn-a.open .icon-plus_lp {
    transform: translateY(-50%) rotate(-135deg);
  }
  .footer_btn-a.open .icon-plus_lp::before {
    top: 11px;
    left: -11px;
  }
  /* fb_togBox */
  .fb_togCon .fb_togBox {
    display: none;
    width: 100%;
    max-width: 445px;
    margin-left: auto;
    margin-right: auto;
  }
  .fb_togCon .fb_togBox li a {
    display: block;
    color: #444;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 10px;
    padding-top: 10px;
    text-decoration: none;
    font-size: 16px;
    position: relative;
  }
  .fb_togCon .fb_togBox li a i {
    position: absolute;
    top: 17px;
    right: 20px;
    color: #a29369;
  }
}
/*sp*/
@media screen and (max-width: 599px) {
  .footer_btn {
    padding: 40px 0 20px;
    text-align: center;
  }
  .footer_btn_con {
    margin-bottom: 20px;
  }
  .footer_btn_con:last-of-type {
    margin-bottom: 0;
  }
  .footer_btn-a {
    line-height: 68px;
    /*width: 90%;*/
    height: 68px;
    background: #f6f5f2;
    border: 1px solid #a18958;
    color: #444;
    font-family: "Yu Gothic Pr6N B", sans-serif;
    text-align: center;
    text-decoration: none;
    transition: background .2s linear;
    font-size: 18px;
    font-size: 1.8rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .footer_btn-a.fb_togTri {
    cursor: pointer;
  }
  .footer_btn-a i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 18px;
  }
  .footer_btn-a .icon-plus_lp {
    position: absolute;
    width: 2px;
    height: 14px;
    background-color: #444;
    display: block;
    border-radius: 21px;
    margin-right: 6px;
    transition: transform .2s ease-in;
  }
  .footer_btn-a .icon-plus_lp::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    background-color: #444;
    transition: transform .2s ease-in;
    top: 6px;
    left: -6px;
  }
  .footer_btn-a:hover:not(.fb_togTri), .footer_btn-a.fb_togTri.open {
    background: #fff;
    opacity: 1;
  }
  /* open */
  .footer_btn-a.open .icon-plus_lp {
    transform: translateY(-50%) rotate(-135deg);
  }
  /* fb_togBox */
  .fb_togCon .fb_togBox {
    display: none;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .fb_togCon .fb_togBox li a {
    display: block;
    color: #444;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 20px;
    padding-top: 20px;
    text-decoration: none;
    font-size: 1.4rem;
    position: relative;
  }
  .fb_togCon .fb_togBox li a i {
    position: absolute;
    top: 27px;
    right: 20px;
    color: #a29369;
  }
}
/*sp mini*/
@media screen and (max-width: 360px) {
  .footer_btn-a {
    font-size: 16px;
  }
}

/* ----- footer_salon ----- */
.footer_salon{
  font-size: 2rem;
}
.footer_salon h2 {
  font-weight: 400;
}
/*pc*/
@media screen and (min-width: 600px) {
  .footer_salon {
    margin: 0 auto;
    padding: 40px 0 60px;
    text-align: center;
  }

  .footer_salon h2 {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
}
/*sp*/
@media screen and (max-width: 599px) {
  .footer_salon {
    width: 100%;
    margin: 0 auto;
    padding: 15px 0 0;
    text-align: center;
  }
  .footer_salon h2 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

/* ----- footer_anshin ----- */
/*pc*/
@media screen and (min-width: 600px) {
  .footer_anshin {
    overflow: hidden;
    margin: 0 auto;
    padding-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-box-pack: start;
    justify-content: start;
    gap:20px;
  }
  .anshinBox {
    line-height: 1;
    width: calc(50% - 10px);
    max-width: 390px;
    /*height: 410px;*/
    float: left;
    border: 1px solid #b39f66;
    padding-bottom: 20px;
  }
  /*.anshinBox:last-child {
    margin-left: 20px;
  }*/
  .anshinBox h2 {
    text-align: center;
    padding: 18px 0;
    background-color: #f0f0f0;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .anshin_catch {
    padding: 15px 5px;
    text-align: center;
    line-height: 1.4;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .anshinBox ul {
    padding: 0 25px;
  }
  .anshinBox li {
    margin-bottom: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .anshin_system {
    display: block;
    color: #b39f66;
    font-size: 13px;
    font-size: 1.3rem;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
  }
  .anshin_system-l {
    font-size: 25px;
    font-size: 2.5rem;
  }
  .anshinBox li img {
    display: block;
  }
  .anshinBox02_cf {
    padding: 0 25px;
  }
  .anshinBox02_txt {
    width: 100%;
    width: calc(100% - 80px);
    max-width: 240px;
    float: left;
    line-height: 1.75;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .anshinBox02_txt span {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .anshinBox02_img {
    width: 80px;
    float: right;
  }
  .anshinBox02_img img {
    margin-bottom: 20px;
  }
  .anshin_card {
    /*! margin-top: 5px; */
    max-width: 344px;
  }
}
/*sp*/
@media screen and (max-width: 599px) {
  .footer_anshin {
    /*width: 90%;*/
    margin: 0 auto 20px;
    padding-top: 40px;
  }
  .anshinBox {
    border: 1px solid #a79972;
    margin-bottom: 10px;
    padding: 0 0 15px;
  }
  .anshinBox h2 {
    text-align: center;
    padding: 18px 0;
    background-color: #f0f0f0;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .anshin_catch {
    padding: 10px 5%;
    line-height: 1.4;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
  }
  .anshinBox ul {
    padding: 0 4.5%;
  }
  .anshinBox li {
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: -0.05rem;
  }
  .anshinBox li:last-child {
    margin-bottom: 0;
  }
  .anshin_system {
    display: block;
    color: #b39f66;
    font-size: 13px;
    font-size: 1.3rem;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    /*margin-bottom: 5px;*/
    line-height: 1;
  }
  .anshin_system-l {
    font-size: 30px;
    font-size: 3rem;
  }
  .anshinBox li img {
    max-height: 25px;
    margin-bottom: 10px;
    width: auto;
    display: block;
  }
  .anshinBox02_txt {
    line-height: 1.5;
    padding: 0 5%;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .anshinBox02_txt span {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .anshinBox02_img {
    text-align: center;
    padding-bottom: 14px;
  }
  .anshinBox02_img img {
    max-width: 70px;
    margin-right: 10px;
    display: inline-block;
  }
  .anshin_card {
    margin: 5px 0 0 !important;
    width: 100% !important;
    height: auto !important;
    max-height: 100px !important;
  }
}

/* ----- copyright ----- */
/*pc*/
@media screen and (min-width: 600px) {
  .copyright {
    padding: 13px;
    text-align: center;
    font-family: 'Libre Baskerville', serif;
    color: #fff;
    background-color: #000;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/*sp*/
@media screen and (max-width: 599px) {
  .copyright {
    padding: 13px;
    text-align: center;
    font-family: 'Libre Baskerville' , "Reimin Regular" ,  "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
    font-weight: 400;
    color: #fff;
    background-color: #000;
    font-size: 14px;
    font-size: 1.4rem;
  }
}