@charset "utf-8";
/*-------------------
   clearfix
-------------------*/
.cf:before, .cf:after {
	content: " ";
	display: table;
}
.cf:after {
	clear: both;
}
.cf {
 *zoom: 1;
}
/*-------------------
   common
-------------------*/
.wrapper {
	font: 1.0em/1.2 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-feature-settings: "palt";
	letter-spacing: .1em;
	padding: 0 0;
	position: relative;
}
.wrapper * {
	box-sizing: border-box;
}
.wrapper a {
	color: inherit;
	display: block;
}
.wrapper img {
	height: auto;
	max-width: 100%;
}
#container .flex {
    align-items: flex-start;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	flex-wrap: wrap;
	margin: 0 auto;
}
/*ブレイクポイントのルール*/
/* -スマホ基本設計 解像度に依存しない-
 *350pxまで：SP縦 i5 SE
 *350px〜480px：SP縦 i6-8　****一番重要****
 *480px〜960px：SP横からタブレット
 *960px〜小型PC　大型PC
 
/*  全体指定 スマホ縦 i5 i5SE　350pxまで  */

/*-- 画面外にいる状態 --*/
.fadein {
	opacity : 0;
	transform : translate(0, 30px);
	transition: ease-in 400ms;
}
/*-- 画面内に入った状態 --*/
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}
#container section {
	margin: 0 auto;
	padding: 0 0;
}
#container {
    overflow: hidden;
}
#container p {
    margin: 0;
}
/*----------
 mainvisual
----------*/
#container .mainvisual {
    background: url(/contents/shop/sevenbeauty/img/freepage/procare-poto/fv-sp.jpg) top 0px left 0px no-repeat;
    background-size: 100%;
    background-color: #000;
    padding: 20% 4% 0;
    position: relative;
    /*height: 1480px;*/
}
#container .mainvisual p.subtitle {
	color: #fff;
    font: bold 1.5rem/1.2 "Hannari", serif;
    text-align: left;
    margin: 0 0 20px;
    padding: 0;
}
#container .mainvisual p.subtitle .small {
    font-size: 1.0rem;
}
#container .mainvisual .item-img {
    margin: 0 66px;
    width: 60%;
}
#container .mainvisual .text-box {
    color: #000;
    font-family: "Hannari", serif;
    text-align: center;
    margin: -30px 0 10px;
    padding: 0 10%;
}
#container .mainvisual .text-box .text1 {
    background-color: rgba(5, 108, 134, 0.5);
    color: #fff;
    display: inline-block;
    font-size: 0.9rem;
    margin: 0 0 3%;
    padding: 1% 3%;
}
#container .mainvisual .text-box .text2 {
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    display: inline-block;
    font-size: 0.9rem;
    margin: 0 0 3%;
    padding: 2%;
}
#container .mainvisual .text-box h1 {
    font-size: 1.5rem;
    line-height: 1;
    margin: 0;
    padding: 0;
}
#container .mainvisual .text-box h1 .small {
    font-size: 1.1rem;
}
#container .mainvisual .fun-box h2 {
    color: #000;
    font: 1.2rem/1 "Hannari", serif;
    text-align: center;
    margin-bottom: 10px;
}
#container .mainvisual .fun-box h2 .big {
    font-size: 1.5rem
}
#container .mainvisual .fun-box .box {
    color: #000;
    display: flex;
    font: 0.6rem/1 "メイリオ", "Meiryo",'Helvetica Neue','Helvetica','Arial',sans-serif;
    text-align: left;
    flex-wrap: wrap;
	justify-content: center;
}
#container .mainvisual .fun-box .box p {
    margin: 0 2px;
}
/*--sec0--*/
#container .sec0 {
    background-color: #000;
    padding-bottom: 20px;
}
#container .fff-box {
    background-color: #fff;
    overflow: hidden;
    margin: 0 13px;
    padding: 30px 10px 10px;
}
/*----*/
/*全共通*/
.bgextend{
    animation-name:bgextendAnimeBase;
    animation-duration:1s;
    animation-fill-mode:forwards;
    position: relative;
    overflow: hidden;
    opacity:0;
}
@keyframes bgextendAnimeBase {
    from {opacity:0;}
    to {opacity:1;}
}
/*中の要素*/
.bgappear{
    animation-name:bgextendAnimeSecond;
    animation-duration:1s;
    animation-delay: 0.6s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes bgextendAnimeSecond{
    0% {opacity: 0;}
    100% {opacity: 1;}
}
/*左から右*/
.bgLRextend::before{
    animation-name:bgLRextendAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #7c858e;
}
.bgLRextend.text-1::before {
    width: 140%;
}
.bgLRextend.text-3::before {
    width: 100%;
}
@keyframes bgLRextendAnime {
    0% {
      transform-origin:left;
      transform:scaleX(0);
    }
    50% {
      transform-origin:left;
      transform:scaleX(1);
    }
    50.001% {
      transform-origin:right;
    }
    100% {
      transform-origin:right;
      transform:scaleX(0);
    }
}
/*右から左*/
.bgRLextend::before{
    animation-name:bgRLextendAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #7c858e;
}
.bgRLextend.text-2::before {
    display: block;
    margin: 0 0 0 80px;
    width: 210%;
}
.bgRLextend.text-4::before {
    display: block;
    margin: 0 0 0 100px;
    width: 360%;
}
@keyframes bgRLextendAnime{
    0% {
      transform-origin:right;
      transform:scaleX(0);
    }
    50% {
      transform-origin:right;
      transform:scaleX(1);
    }
    50.001% {
      transform-origin:left;
    }
    100% {
      transform-origin:left;
      transform:scaleX(0);
    }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,.bgLRextendTrigger {
    opacity: 0;
}
/*----*/
#container .item-right,#container .item-left {
    margin-bottom: 30px;
}
#container .item-right dt {
    margin: 0 0 -60px 80px;
    width: 80%;
}
#container .item-left dt {
    margin: 0 0 -100px -55px;
    width: 75%;
}
#container .sec0 dl:nth-child(2) dt {
    margin: 0 0 -110px -40px;
    width: 80%
}
#container .item-left {
    text-align: right;
}
#container .sec0 dt {
    position: relative;
    z-index: 2;
}
#container .sec0 dd {
    color: #7c858e;
    display: block;
    font: 1.6rem/1.2 "Hannari", serif;
    letter-spacing: -0.05rem;
    position: relative;
}
/*--sec1--*/
#container .sec1 {
    background: url(/contents/shop/sevenbeauty/img/freepage/procare-poto/sec1-back.jpg) bottom 0px left 40% no-repeat;
    background-size: 210%;
    background-color: #000;
    padding: 5% 5% 15%;
    position: relative;
}
#container .sec1 .des {
    color: #8f9da4;
    font: 0.9rem/1.8 "メイリオ", "Meiryo",'Helvetica Neue','Helvetica','Arial',sans-serif;
}
/*----*/
#container .sp {
    display: block;
}
#container .pc {
    display: none;
}
/*--sec2--*/
#container .sec2,
#container .sec3,
#container .sec4 {
    background: url(/contents/shop/sevenbeauty/img/freepage/procare-poto/back.jpg) top 0px left 0px repeat;
    background-size: 100%;
    background-attachment: fixed;
    padding: 5% 0;
    position: relative;
}
#container .sec-title {
    font-family: "Hannari", serif;
    text-align: center;
    margin: 0 0 5%;
    padding: 0;
}
#container .sec2 .sec-title {
    color: #056d86;
}
#container .sec-title h2 {
    font-size: 1.6rem;
    margin: 0 0 5%;
}
#container .sec-title .sub {
    font-family: "メイリオ", "Meiryo",'Helvetica Neue','Helvetica','Arial',sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 5%;
}
#container .sec2 .salon-img {
    margin: 0 15% -28% -30%;
}
#container .item-title {
    font-family: "Hannari", serif;
    text-align: right;
    margin: 0 0 3%;
    padding: 0 7%;
}
#container .item-title h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 0 2%;
}
#container .item-title h3 .small {
    font-size: 1.0rem;
}
#container .item-title p {
    font-size: 0.9rem;
}
#container .back-fff {
    background-color: #fff;
    box-shadow: 5px 10px 10px 0px rgb(0 0 25 / 30%);
    position: relative;
    margin: 0 5% 10%;
    padding: 5%;
    z-index: 1;
}
#container .sec2 h4 {
    color: #000;
    font-family: "Hannari", serif;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 10px;
    padding: 0;
}
#container .sec2 h4:after {
    content: "";
    display: block;
    height: 1px;
    background: -webkit-linear-gradient(to right, #000 30%, transparent 30%);
    background: linear-gradient(to right, #000 30%, transparent 30%);
    margin-top: 10px;
}
#container .sec2 .des {
    color: #000;
    font-family: "メイリオ", "Meiryo",'Helvetica Neue','Helvetica','Arial',sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 10px;
    padding: 0;
    text-align: justify;
    text-justify: inter-ideograph;
}
#container .sec2 dd {
    margin-bottom: 20px;
}
#container .sec2 .dd-1 p {
    color: #666;
    font-family: "メイリオ", "Meiryo",'Helvetica Neue','Helvetica','Arial',sans-serif;
    font-size: 0.8rem;
    text-align: center;
    margin: 5px 0;
}
#container .sec2 .dd-2 dl,#container .sec2 dl.item {
	display: flex;
}
#container .sec2 .dd-2 dt {
	margin-right: 5px;
	width: 700px;
}
#container .sec2 .dd-2 dd {
	color: #666;
    font-family: "メイリオ", "Meiryo",'Helvetica Neue','Helvetica','Arial',sans-serif;
    font-size: 0.8rem;
    margin: 0 0 10px;
    padding: 0;
    text-align: justify;
    text-justify: inter-ideograph;
}
#container .sec2 .dd-2 dd .bold {
	font-weight: bold;
}
#container .sec2 dl.item dt {
	margin-right: 5px;
	width: 300px;
}
#container .sec2 dl.item ul {
    color: #000;
    font-family: "メイリオ", "Meiryo",'Helvetica Neue','Helvetica','Arial',sans-serif;
    font-size: 1.0rem;
}
#container .sec2 dl.item li:first-child {
    font-family: "Hannari", serif;
    font-size: 1.1rem;
    font-weight: bold;
}
#container .sec2 dl.item li .big {
    font-size: 1.8rem;
}
#container .sec2 dl.item li.small {
    font-size: 0.9rem;
}
#container .sec2 dl.box2 {
    color: #000;
	display: flex;
    font-family: "メイリオ", "Meiryo",'Helvetica Neue','Helvetica','Arial',sans-serif;
    font-size: 0.9rem;
    text-align: justify;
    text-justify: inter-ideograph;
    margin: 10px 0;
}
#container .sec2 dl.box2 dt {
	margin-right: 5px;
	width: 230px;
}
#container .sec2 dl.box2 dd .bold {
    font-size: 1.0rem;
	font-weight: bold;
    margin: 5px 0;
}
#container .sec2 em.come {
    font-size: 0.9rem;
}

#container .be-af-img {
    margin: 5% 5% 10%;
}
#container .be-af-img h5 {
    border: solid 1px #056d86;
    color: #056d86;
    font-family: "メイリオ", "Meiryo",'Helvetica Neue','Helvetica','Arial',sans-serif;
    font-size: 1.0rem;
    text-align: center;
    letter-spacing: -0.01rem;
    margin-bottom: 5px;
    padding: 10px 0;
}
#container .be-af-img li {
    margin-bottom: 5px;
}
#container .sec2 dl.box3 dd .bold{
    font-size: 1.0rem;
	font-weight: bold;
    text-align: center;
    margin: 5px 0;
}
#container .sec2 dl.box3 dd .bold{
    font-size: 1.0rem;
	font-weight: bold;
    text-align: center;
    margin: 5px 0;
}
#container .sec2 dl.box4 dd {
    color: #000;
    display: flex;
    font-family: "メイリオ", "Meiryo",'Helvetica Neue','Helvetica','Arial',sans-serif;
    font-size: 1.0rem;
    justify-content: center;
}
#container .sec2 dl.box4 dd img {
    margin-right: 5px;
    width: 50%;
}
#container .sec2 dl.box4 dd .color-blue {
    color: #8aa3d4;
    display: block;
}
#container .sec2 dl.box4 dd .color-pink {
    color: #ef857d;
    display: block;
}
#container .sec2 dl.box4 dd p {
    align-self: flex-end;
    text-align: left;
}
/*--sec3--*/
#container .sec3 {
    padding: 5% 0;
    position: relative;
}
#container .sec3 .sec-title {
    background-color: #16202c;
    color: #87bbc8;
    margin: 0 0 45%;
    padding: 10% 0 40%;
}
#container .sec3 .img {
    bottom: 5%;
    left: 0%;
    position: absolute;
    width: 130%;
}
/*--sec4--*/
#container .sec4 {
    padding: 0 0 10%;
}
#container .sec4 .salon-img {
    margin: 0 0 -3% -20%;
    width: 140%;
}
#container .sec4 .back-fff {
    text-align: center;
    position: relative;
    padding: 5% 3%;
}
#container .sec4 .padd {
    padding: 0 2%;
    width: 100%;
}
#container .sec4 .sec-title h2 {
    color: #947f28;
    font-size: 1.5rem;
}
#container .sec4 h3 {
    color: #947f28;
    font: 1.3rem/1 "Hannari", serif;
    text-align: center;
    margin-bottom: 10px;
}
#container .sec4 h3 span {
    font-size: 1.0rem;
}
#container .sec4 h4 {
    background-color: #232f3e;
    color: #fff;
    font-family: "メイリオ", "Meiryo",'Helvetica Neue','Helvetica','Arial',sans-serif;
    font-size: 1.0rem;
    text-align: center;
    margin-bottom: 5px;
    padding: 5px 0;
}
#container .sec4 .des {
    color: #000;
    font-family: "メイリオ", "Meiryo",'Helvetica Neue','Helvetica','Arial',sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 3% 10px;
    text-align: center;
}
#container .sec4 dd.des {
    margin: 10px 0;
    line-height: 1.3;
    text-align: justify;
    text-justify: inter-ideograph;
}
#container .arrow {
    background: currentColor;
    color: #947f28;
    display: inline-block;
    line-height: 10px;
    margin: 10px;
    position: relative;
    width:  2px;
    height: 20px;
    vertical-align: middle;
}
#container .arrow::before {
    content: '';
    border: 2px solid currentColor;
    border-top: 0;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: rotate(45deg);
    margin: auto;
    position: absolute;
    left: -4px;
    bottom: 2px;
    width: 10px;
    height: 10px;
}
#container .sec4 .text {
    margin: 0 0 20px;
}
#container .sec4 .text i.material-icons {
    color: #d2d3c4;
}
#container p.time-icon {
    font-family: "メイリオ", "Meiryo",'Helvetica Neue','Helvetica','Arial',sans-serif;
    font-size: 1.0rem;
}
#container i.material-icons {
    color: #75808d;
    font-size: 1.3rem;
    vertical-align: middle;
}
#container .care-box {
    background-color: #fffbf9;
    border-radius: 10px;
    margin: 10px 0 0;
    padding: 10px 5px;
    width: 100%;
}
#container .care-box.care2 {
    background-color: #fffbef;
}
#container .care-toptext {
    color: #ef7d44;
    font-size: 1.2rem;
    margin-bottom: 5px;
}
#container .mini-box {
    border: dotted 1px #ffb793;
    padding: 5px;
}
#container .mini-box .come {
    color: #ef7d44;
    font-size: 0.9rem;
    text-align: center;
    margin: 15px 0 0;
    padding: 0;
}
#container p.come {
    color: #9b9b9b;
    font-size: 0.9rem;
    text-align: left;
    margin: 15px 0 0;
    padding: 0 3%;
    width: 100%;
}
/*----scroll----*/
.scroll {
    opacity: 0;
    transition: all 1.5s ease;
}
.scroll.show {
    opacity: 1;
    transform: none;
    animation: 1.0s fadeIn;
}
.s-top { /*上からふわっと*/
    transform: translate(0, -20px);
}
.s-bottom { /*下からふわっと*/
    transform: translate(0, 20px);
}
.s-right { /*右からふわっと*/
    transform: translate(50px, 0);
}
.s-left { /*左からふわっと*/
    transform: translate(-50px, 0);
}

@media screen and (min-width:350px) and ( max-width:480px) {
/*　スマホ縦　i6 / i6plus / i7  350pxから480pxまではここを読み込む　*/
#container .mainvisual {
    padding: 5% 2% 0;
}

#container .mainvisual .item-img {
    margin: 0 78px;
}
#container .mainvisual .fun-box h2 {
    font-size: 1.4rem;
}
#container .mainvisual .fun-box h2 .big {
    font-size: 1.8rem;
}
#container .mainvisual .fun-box .box {
    font-size: 0.9rem;
    letter-spacing: -0.05rem;
}
#container .mainvisual .fun-box .box p {
    margin: 0 5px;
}
#container .mainvisual p.subtitle {
    font-size: 1.8rem;
}
#container .mainvisual p.subtitle .small {
    font-size: 1.2rem;
}
#container .mainvisual .text-box .text1 {
    font-size: 1.1rem;
}
#container .mainvisual .text-box h1 {
    font-size: 1.7rem;
}
/*--sec0--*/
#container .fff-box {
    margin: 0 15px;
}
#container .item-right dt {
    margin: 0 0 -70px 80px;
    width: 90%;
}
#container .sec0 dl:nth-child(3) dt {
    margin: 0 0 -90px 80px;
}
#container .item-left dt {
    margin: 0 0 -110px -80px;
    width: 90%;
}
#container .sec0 dl:nth-child(2) dt {
    margin: 0 0 -120px -40px;
    width: 85%;
}
#container .sec0 dd {
    font-size: 1.8rem;
}
.bgRLextend.text-2::before {
    margin: 0 0 0 100px;
}
.bgRLextend.text-4::before {
    margin: 0 0 0 130px;
}
/*--sec1--*/
#container .sec1 {
    padding: 5% 7% 15%;
}

}

 @media screen and (min-width:480px) {
/*　スマホ横～タブレット 480pxから960pxまではここを読み込む　*/
#container .mainvisual {
    background: url(/contents/shop/sevenbeauty/img/freepage/procare-poto/fv-pc.jpg) top 0px left 50% no-repeat;
    background-size: 1200px;
    background-color: #000;
    padding: 6% 4% 10px;
    position: relative;
}
#container .mainvisual .item-img {
    margin: 0 240px;
    width: 35%;
}
#container .br-sp {
    display: none;
}
#container .mainvisual p.subtitle,
#container .mainvisual p.subtitle .small {
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 1%;
}
#container .mainvisual .text-box {
    color: #fff;
    text-align: left;
    margin: -250px 0 70px;
    padding: 0;
}
#container .mainvisual .text-box .text2 {
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
    display: table;
    padding: 1%;
}
#container .mainvisual .text-box h1 {
    font-size: 1.8rem;
}
#container .mainvisual .fun-box h2 {
    font-size: 1.8rem;
}
#container .mainvisual .fun-box h2 .big {
    font-size: 2.8rem;
}
#container .mainvisual .fun-box .box {
    font-size: 1.2rem;
}
#container .mainvisual .fun-box .box p {
    margin: 0 10px;
}
/*--sec0--*/
#container .fff-box {
    margin: 0 76px;
    padding: 40px 30px 10px;
}
#container .item-right dt {
    margin: 0 0 -130px 230px;
    width: 70%;
}
#container .sec0 dl:nth-child(3) dt {
    margin: 0 0 -170px 230px;
}
#container .item-left dt {
    margin: 0 0 -120px -90px;
}
#container .sec0 dl:nth-child(2) dt {
    margin: 0 0 -150px -120px;
}
.bgRLextend.text-2::before {
    margin: 0 0 0 130px;
    width: 105%;
}
.bgRLextend.text-4::before {
    margin: 0 0 0 250px;
    width: 105%;
}
#container .sec0 dd {
    font-size: 2.3rem;
}
/*----*/
#container .sp {
    display: none;
}
#container .pc {
    display: block;
}
/*--sec1--*/
#container .sec1 {
    background-size: 1000px;
    padding: 5% 15% 10%;
}
#container .sec1 .pc {
    transform: translateX(-18%);
    width: 1200px;
}
/*--sec2--*/
#container .sec-title {
    padding: 0 5%;
}
#container .sec-title h2 {
    font-size: 2.8rem;
    margin: 0 0 2%;
}
#container .sec-title .sub {
    font-size: 1.2rem;
    padding: 0;
}
#container .sec2 .salon-img {
    margin: 0 15% -22% -12%;
}
#container .item-title {
    padding: 0 5%;
}
#container .item-title h3 {
    font-size: 2.5rem;
}
#container .item-title h3 .small {
    font-size: 1.2rem;
}
#container .item-title p {
    font-size: 1.6rem;
}
#container .back-fff {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
    padding: 5% 1%;
}
#container .back-fff dl.box,#container .back-fff dl.box4 {
    margin: 0 15px;
    width: calc(90% / 2);
}
#container .sec2 h4 {
    font-size: 1.5rem;
    text-align: left;
    margin: 0 0 15px;
}
#container .sec2 h4:after {
    content: "";
    background: -webkit-linear-gradient(to right, #000 90px, transparent 90px);
    background: linear-gradient(to right, #000 90px, transparent 90p);
}
#container .sec2 .des {
    margin: 0 0 15px;
}
#container .sec2 dl.item dt {
    margin-right: 10px;
    width: 190px;
}

#container .be-af-img {
    margin: 5% 3% 10%;
}
#container .be-af-img h5 {
    font-size: 1.4rem;
    margin: 0 15px;
}
#container .be-af-img ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#container .be-af-img li {
    margin: 5px;
    width: calc(95% / 2);
}

#container .back-fff .box3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#container .back-fff .box3 dt,#container .back-fff .box3 dd {
    margin: 5px;
    width: calc(95% / 2);
}
#container .sec2 dl.box3 dd .bold {
    font-size: 1.2rem;
	text-align: left;
}
#container .sec2 .width div.box:nth-of-type(5) .box-title {
    margin: 0 10px;
}
/*--sec3--*/
#container .sec3 .sec-title {
    margin: 0 0 35%;
    padding: 5% 5% 25%;
}
#container .sec3 .img {
    left: 5%;
    width: 100%;
}
/*--sec4--*/
#container .sec4 .salon-img {
    margin: 0 0 -3%;
    width: 100%;
}
#container .sec4 .sec-title h2 {
    font-size: 2.5rem;
}
#container .sec4 .des {
    font-size: 1.2rem;
    margin: 0;
}
#container .sec4 h3 {
    font-size: 2.3rem;
}
#container .sec4 h3 span {
    font-size: 1.8rem;
}
#container .sec4 h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding: 8px 0;
}
#container p.time-icon {
    font-size: 1.5rem;
}
#container i.material-icons {
    font-size: 1.8rem;
}
#container .arrow {
    margin: 20px;
    height: 35px;
}
#container .arrow::before {
    left: -2px;
    bottom: 0px;
    height: 15px;
}
#container .care-box {
    padding: 20px;
}
#container .mini-box {
    padding: 15px;
}
#container .care-toptext {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
#container .sec4 dd.des {
    text-align: center;
    margin: 15px 0;
}
#container p.come {
    text-align: center;
}
#container .mini-box .come {
    font-size: 1.1rem;
}
}

 @media screen and (min-width:960px) {
/*　小・大画面デスクトップ　960pxからはここを読み込む　*/
#container .width {
    margin: 0 auto;
    width: 1040px;
}
#container .mainvisual {
    padding: 50px 0 0;
}
#container .mainvisual .width {
    width: 920px;
}
#container .mainvisual p.subtitle, #container .mainvisual p.subtitle .small {
    margin: 0 0 2%;
}
#container .mainvisual .text-box .text1 {
    font-size: 1.2rem;
    margin: 0 0 2%;
    padding: 1%;
}
#container .mainvisual .text-box .text2 {
    font-size: 1.1rem;
    margin: 0 0 2%;
}
#container .mainvisual .text-box h1 {
    font-size: 2.3rem;
    line-height: 0.8;
}
#container .mainvisual .item-img {
    margin: 0 354px;
    width: 25%;
}
/*--sec0--*/
#container .fff-box {
    margin: 0 212px;
    padding: 40px 30px 10px;
}
/*--sec1--*/
#container .sec1 {
    background: url(/contents/shop/sevenbeauty/img/freepage/procare-poto/sec1-back.jpg) bottom 0px left 50% no-repeat;
    background-size: 1400px;
    background-color: #000;
    padding: 3% 0 7%;
}
#container .sec1 .des {
    font-size: 1.2rem;
    margin: 0 212px;
}
#container .sec1 .pc {
    transform: translateX(0%);
    margin: 0 auto;
    width: 1400px;
}
/*--sec2--*/
#container .sec2, #container .sec3, #container .sec4 {
    background-size: 500px;
    padding: 5% 0 1%;
}
#container .sec2 .salon-img {
    margin: 0 0 -25% -10%;
}
#container .item-title {
    margin: 0 0 100px;
}
#container .item-title h3 {
    font-size: 2.8rem;
    margin: 0 0 1%;
}
#container .back-fff {
    text-align: center;
    margin: 0 -5% 10% 20%;
    justify-content: flex-start;
}
#container .sec2 dl.item dt {
    width: 150px;
}
#container .sec2 dl.item dd {
    text-align: left;
}
#container .sec2 dl.item,
#container .sec2 .width div.box:nth-of-type(3) .box-title,
#container .sec2 .width div.box:nth-of-type(5) .box-title {
    margin: 0 35px;
}
#container .be-af-img h5 {
    margin: 0 22px 15px;
}
/*--sec3--*/
#container .sec3 .width {
    min-width: 100vw;
}
#container .sec3 .sec-title {
    margin: 0 auto 400px;
    padding: 3% 15% 230px;
}
#container .sec3 .img {
    left: 15%;
}
/*--sec4--*/
#container .sec4 .salon-img {
    transform: translateX(-10%);
    margin: 0 0 -3%;
    width: 120%;
}
#container .sec4 .back-fff {
    margin: 0 auto 50px;
    width: 80%;
    justify-content: center;
}
#container .sec4 .text {
    margin: 0 0 40px;
}
#container .sec4 .des {
    font-size: 1.0rem;
}
}