@charset "utf-8";

/*-------------------
   common
-------------------*/
.wrapper {
    color: #393f47;
    font: 1em/1.6 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    position: relative;
    padding: 0 0 20px;
    font-feature-settings: "palt";
}
.wrapper * {
    box-sizing: border-box;
}
.wrapper a {
    color: inherit;
    display: block;
}
.wrapper img {
    height: auto;
    max-width: 100%;
}

/*ブレイクポイントのルール*/
/* -スマホ基本設計 解像度に依存しない-
 *350pxまで：SP縦 i5 SE
 *350px〜480px：SP縦 i6-8　****一番重要****
 *480px〜960px：SP横からタブレット
 *960px〜小型PC　大型PC
 
 /*  全体指定 スマホ縦 i5 i5SE　350pxまで  */


/* ボタンデザイン自由に変えてください  */
.wrapper .buy-btn {
    background: #4d5563;
    color: #fff;
    display: block;
    font: 4vw/3 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    position: relative;
    margin: 8px 0 0;
    text-align: center;
    width: 100%;
    padding-right: 1.5vw;
}
.wrapper .buy-btn::after {
    position: absolute;
    top: 5vw;
    right: 4.5vw;
    content: '';
    width: 1.8vw;
    height: 1.8vw;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.wrapper .buy-btn:hover {
    filter: alpha(opacity=90);
    opacity: 0.7;
    transition: all ease-in 0.4s;
}

/* ボタンデザイン ストア  */
.wrapper .ex-btn {
    background: #252525;
    color: #fff;
    display: block;
    font: 4vw/3 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    position: relative;
    margin: 0;
    text-align: center;
    width: 100%;
    padding-right: 1.5vw;
    border-radius: 100px;
    background: linear-gradient(#f19149, #d36902);
    width: calc(96%/2);
}
.wrapper .ex-btn::after {
    position: absolute;
    top: 5vw;
    right: 4.5vw;
    content: '';
    width: 1.8vw;
    height: 1.8vw;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.wrapper .ex-btn:hover {
    filter: alpha(opacity=90);
    opacity: 0.7;
    transition: all ease-in 0.4s;
}

/*-- 画面外にいる状態 --*/
.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;
}

/*-------------------
   btn animation
-------------------*/
#container .btn {
    animation: dokidoki 0s ease-in-out infinite;
    animation-duration: 3s;
    margin: 0 auto !important;
    position: absolute;
    bottom: 2%;
    left: 5%;
    width: 90%;
}
@keyframes dokidoki {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    60% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.1);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

#container .btn a:hover,
#container .btn a img:hover {
    opacity: 1;
}

/*------------------------
   固定ボタン
------------------------*/
#container .fixed-btn {
    opacity: 0;
    position: fixed;
    bottom: 2%;
    visibility: hidden;
    z-index: 1000;
}
#container .fixed-btn a {
    display: block;
    margin: 0 auto;
    width: 90%;
}
#container .fixed-btn a:hover,
#container .fixed-btn a img:hover {
    opacity: 1;
}
#container .fixed-btn {
    animation: dokidoki 0s ease-in-out infinite;
    animation-duration: 3s;
}
#container .active {
    opacity: 1;
    visibility: visible;
}
#container .fixed-btn img {
    margin: 0 auto;
    vertical-align: top;
    height: auto;
    pointer-events: none;
    width: 100%;
}

/*------------------------
   nav
------------------------*/
#navi.fixed {
    position: fixed;
    /*fixedを設定して固定*/
    z-index: 9999;
    /*最前面へ*/
    top: 0;
    /*位置指定*/
    left: 0;
    /*位置指定*/
}
#navi {
    background-color: #393f47;
    overflow-x: auto;
}
#navi ul {
    display: flex;
    width: max-content;
    margin: 0 auto;
}
#navi li a {
    display: inline-block;
    height: 75px;
    width: 170px;
    display: flex;
    align-items: center;
    margin: -16px 0 0;
    justify-content: center;
    font: bold 1em/1.5 "游ゴシック体", 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    color: #fff;
    text-decoration: none;
    font-feature-settings: "palt";
    position: relative;
}
#navi li:hover {
    background-color: #525963;
}
#navi li a::after {
    position: absolute;
    top: 48%;
    right: 46%;
    content: '';
    margin-top: 15px;
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(135deg);
    border-left-color: #fff;
    transition: all .3s;
}
#navi li+li {
    position: relative;
}
#navi li+li::before {
    content: "";
    display: block;
    height: 44px;
    border-left: 1px solid #999;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

/*------------------------
   ---
------------------------*/
.wrapper .inner-wrap {
    padding: 40px 20px;
    text-align: center;
}
.wrapper h2 {
    font: 6vw/1.1 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    font-feature-settings: "palt";
    letter-spacing: normal;
    margin: 0 0 10px;
}
.wrapper .chushaku {
    font-size: .8em;
    text-align: right;
}
.wrapper p {
    text-align: justify;
}
.wrapper .cap {
    font-size: .85em;
    text-align: justify;
}
.wrapper small {
    font-size: .7em;
    vertical-align: text-top;
}
.fa-square-check {
    color: #fff;
    margin: 0 3px;
}

/*-------------------
   mainvisual
-------------------*/
.mainvisual .inner-wrap {
    padding: 5.5vw 0 0;
    position: relative;
    text-align: center;
}
.mainvisual {
    background-color: #171719;
    background-image: url(/contents/shop/sevenbeauty/img/freepage/sp-program/fv-model_sp.jpg);
    background-size: cover;
    background-position: center;
    height: 115vw;
}
.mainvisual .fv-title img {
    margin: 0 auto;
    width: 72vw;
    border-bottom: 1px solid #fff;
    padding: 0 0 2.5vw;
}
.mainvisual .fv-img {
    width: 93vw;
    margin-left: auto;
    margin-top: 12vw;
}
.mainvisual h1 {
    font: 7.3vw / 1.12 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    margin: 2vw 0 0;
    font-feature-settings: "palt";
    color: #fff;
}
.mainvisual h1 strong {
    font-family: "游ゴシック体", 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.mainvisual .fv-title {
    animation: fadeIn 1.5s ease 0.2s 1 normal backwards;
}
.mainvisual .notes {
    color: #ec3b84;
    font-size: 1.9vw;
    line-height: 1.3;
    padding: 1% 1.5%;
    border-radius: 1.5vw;
    margin: 62% 47% 0 6%;
    border: 1px solid;
    z-index: 20;
    position: absolute;
    font-weight: 600;
    background-color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*------------------------
   section0 anna
------------------------*/
.wrapper .anna {
    background-color: #171719;
    color: #fff;
}
.anna .anna-area {
    display: flex;
    flex-wrap: wrap;
}
.anna .anna-left {
    width: 60%;
    margin: 0 auto;
}
.anna .ambassador {
    width: 70%;
    margin: 5vw 0 3vw;
}
.anna .name {
    font: 6vw / 1.1 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    font-feature-settings: "palt";
    margin: 3vw 0 2vw;
    text-align: center;
}
.anna .name small {
    font: 4vw / 1.1 "游ゴシック体", 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    vertical-align: middle;
    margin-right: 1.5vw;
}

.anna .name {

}
/*------------------------
   section1 mov
------------------------*/
.wrapper .mov .inner-wrap {
    padding: 40px 20px 35px;
}
.wrapper .mov {
    background-image: url(/contents/shop/sevenbeauty/img/freepage/sp-program/movie_bg.jpg);
    background-size: cover;
    background-position: center;
}
.wrapper .mov video {
    color: #fff;
    width: 100%;
    height: 45vw;
}
.mov .inner-wrap iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}

/*------------------------
   section2 about-sp
------------------------*/
.wrapper .about-sp,
.wrapper .about-spicule {
    background-color: #4d5563;
    color: #fff;
    text-align: justify;
}
.insta-bnr-area {
    margin-top: 12%;
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
}
.course-btn-area {
    padding: 12% 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
    justify-content: center;
}
.awards-area {
    border: 1px solid #fff;
    margin: 45px 15px 0;
    padding: 20px;
}
.about-sp h3 {
    font: 5.5vw/1.8 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    font-feature-settings: "palt";
    letter-spacing: normal;
    margin: 0 0 15px;
}
.about-sp h3 strong {
    background: #fff;
    color: #4d5563;
    display: block;
    font: 4vw/1.1 "游ゴシック体", 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-feature-settings: "palt";
    margin: 0 auto;
    padding: 2px;
    width: 51vw;
}
.awards-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.awards-box dl {
    background-color: #fff;
    color: #393f47;
}
.awards-box h4 {
    padding: 0 15px 6px;
}
.awards-box h4 span {
    color: #b47f0d;
    display: block;
    font: bold 4.3vw/1.3 "游ゴシック体", 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-feature-settings: "palt";
    letter-spacing: normal;
}
.awards-box .emblem {
    width: 75%;
    margin: -6px 0 5px;
}
.awards-box dd img {
    padding: 6px 10px 0;
}
.awards-box .cap {
    padding: 0 15px 15px;
}

/*------------------------
   section3 about-spicule
------------------------*/
.about-spicule .inner-wrap {
    padding: 0 20px 40px;
    text-align: center;
}
.about-spicule .img-spicule {
    padding: 5px 30px 10px;
}

/*------------------------
   section4 technology
------------------------*/
.wrapper .technology {
    background-image: url(/contents/shop/sevenbeauty/img/freepage/sp-program/tech_bg.jpg);
    background-size: cover;
    background-position: center;
}
.technology h3 {
    background: #4d5563;
    color: #fff;
    display: block;
    font: 5vw/1.1 "游ゴシック体", 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-feature-settings: "palt";
    font-feature-settings: "palt";
    letter-spacing: normal;
    padding: 6px;
    margin-bottom: 10px;
}
.technology h3 small {
    font-size: .5em;
    vertical-align: top;
}
.technology .komidashi {
    color: #4d5563;
    font: bold 4vw/1.3 "游ゴシック体", 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-feature-settings: "palt";
    letter-spacing: normal;
    text-align: center;
    margin-bottom: 10px;
}
.tech-contents {
    position: relative;
}
.tech-box {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}
.technology .chushaku {
    padding-bottom: 35px;
}
.tech-img {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}
.tech-img::after {
    content: "";
    display: block;
    position: absolute;
    top: 71vw;
    left: 45%;
    width: 0;
    border-style: solid;
    border-width: 4.5vw;
    border-color: #cf3469 transparent transparent transparent;
}
.technology img {
    margin: 0 0 15px;
    width: 100%;
}
.technology .cap {
    margin: -4px 0 0;
    line-height: 1.4em;
    padding-bottom: 10px;
}
.tech-more {
    margin: 10px 0 0;
}
.technology .pig {
    padding: 0 21vw;
}

/*------------------------
   section5 kouka
------------------------*/
.kouka h2 {
    padding-top: 55vw;
}
.kouka-box {
    display: flex;
    position: relative;
    text-align: center;
}
.kouka-box p {
    text-align: center;
}
.kouka-box span {
    display: inline-block;
}
.kouka-left {
    position: absolute;
    top: -70vw;
    left: 18vw;
    width: 30vw;
}
.kouka-right {
    position: absolute;
    top: -63vw;
    left: 44vw;
    width: 29vw;
}
.wrapper .recommend {
    background-color: #8692a3;
    color: #fff;
    margin: 0 calc(50% - 50vw);
    text-align: center;
    padding: 20px;
    position: relative;
    margin-top: 20px;
}
.wrapper .recommend:before {
    position: absolute;
    top: -7vw;
    width: 15vw;
    height: 8vw;
    left: 43vw;
    background-color: #8692a3;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    content: '';
}
.wrapper .recommend .midashi {
    background-color: #fff;
    color: #8692a3;
    font: 5vw/1 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    padding: 6px;
    text-align: center;
    font-feature-settings: "palt";
}
.wrapper .recommend ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 13px;
    margin-bottom: 10px;
}

/*------------------------
   section6 merit
------------------------*/
.merit .inner-wrap {
    padding: 0 20px 40px;
}
.merit h3 {
    background-color: #393f47;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font: 6vw/1.1 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    font-feature-settings: "palt";
    letter-spacing: normal;
    height: 25vw;
    width: 25vw;
    position: absolute;
    top: 6vw;
    left: 0;
}
.merit h3 small {
    font-size: 3.5vw;
    margin-bottom: 3px;
}
.merit-img {
    position: relative;
    text-align: center;
}
.merit-img img {
    padding: 0 0 0 10vw;
}
.merit ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5vw;
    margin-top: 20px;
}
.merit li {
    width: calc(82vw/3);
}

/*--------fadeUp--------*/
.fadeUp-box {
    opacity: 0;
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*--------//.fadeUp--------*/

/*------------------------
   section7 b-a
------------------------*/
.wrapper .b-a {
    background-image: url(/contents/shop/sevenbeauty/img/freepage/sp-program/b-a_bg.jpg);
    background-size: cover;
    background-position: center;
}
.b-a .title-box,
.voice .title-box,
.program .title-box {
    background: #393f47;
    color: #fff;
    margin: 0 calc(50% - 50vw);
    position: relative;
}
.b-a .title-box-inner,
.program .title-box-inner {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
.b-a .title-icon {
    bottom: 0;
    left: 5vw;
    width: 16vw;
    position: absolute;
}
.b-a h2 {
    margin: 0;
    padding: 10px 0 10px 20vw;
}
.b-a ul {
    padding: 20px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
  
/*------------------------
   section8 voice
------------------------*/
.wrapper .voice {
    background-color: #e2e6ea;
}
.voice h2 {
    padding: 10px;
}
/*.voice .width ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 3px;
    justify-content: center;
}*/


/*--------------------------スライド---------------------------*/
.voice .width {
    display: flex;
    align-items: center;
    justify-content: center;
}
.voice .inner {
    width: 80vw;
    height: 78vw;
}
.voice .slick-slide {
    padding-top: 2vw;
}
/* arrow */
.voice .slide-arrow{
position: absolute;
top: 24vw;
z-index: 99;
}
.voice .prev-arrow{
left: -8vw;
}
.voice .next-arrow{
right: -8vw;
}
.voice .slide-arrow {
width: 6vw;
}
/* dots */
.voice .slick-dots{
    display: block;
    width: 100%;
    list-style: none;
    text-align: center;
    margin: 0 auto;
}
.voice .slick-dots li,
.voice .slick-dots li button,
.voice .slick-dots li button::before{
    width: 5px;
    height: 5px;
}
.voice .slick-dots li{
    padding-top: 75vw;
    width: 25px;
}
.voice .slick-dots li button{
    background-color: #949eaa;
    opacity: .8;
    border-radius: 100%;
}
.voice .slick-dots li.slick-active button{
    background-color: #393f47;
}
.voice .slick-dots li button::before{
    content: '';
}
/*--------------------スライド  ここまで---------------------*/

/*------------------------
   section9 program
------------------------*/
.wrapper .program {
    background-color: #e2e6ea;
    counter-reset: number 0;
    /* number のカウンタを 0 にセット */
}
.program .title-icon {
    bottom: -0.2vw;
    left: 4vw;
    width: 26vw;
    position: absolute;
}
.program h2 {
    margin: 0;
    padding: 10px 0 10px 28vw;
}
.step-box {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    padding: 20px 0 0;
}
.step-box dl {
    background-color: #fff;
    padding: 20px;
    position: relative;
    width: 100%;
}
.step-box dl:not(:last-child)::after {
    content: '';
    width: 18px;
    height: 18px;
    border-top: solid 3px #9fa9b8;
    border-right: solid 3px #9fa9b8;
    position: absolute;
    left: 42vw;
    top: 100%;
    transform: rotate(135deg);
}
.step-box dt {
    text-align: center;
    padding: 0 0 0 14vw;
}
.step-box dt::before {
    color: #9fa9b8;
    counter-increment: number 1;
    content: counter(number) " ";
    font: italic 18vw/1 "Times New Roman", "Times", "Minion Web", 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    position: absolute;
    top: 18%;
    left: 5.5vw;
}
.step-box dd p {
    font-size: .9em;
}
.step-img {
    width: 64vw;
}
.program h3 {
    color: #40454d;
    font: 5.5vw/1.1 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    padding: 15px 0 8px;
    font-feature-settings: "palt";
    letter-spacing: normal;
}
.program h4 {
    background-color: #393f47;
    color: #fff;
    font: 4.5vw/1 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    padding: 6px;
    font-feature-settings: "palt";
    letter-spacing: normal;
    margin: 30px 9vw;
    position: relative;
}
.program h4::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 32vw;
    width: 0;
    border-style: solid;
    border-width: 4vw;
    border-color: #393f47 transparent transparent transparent;
}

/*------------------------
   section10 Experience
------------------------*/
.wrapper .Experience {
    background-color: #4d5563;
    color: #fff;
    text-align: justify;
    margin: 0 auto;
}
.Experience h2 strong {
    display: block;
    margin-bottom: 5px;
    font: 4vw /1.1 "游ゴシック体", 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    padding: 2px;
    background: #fff;
    margin: 0 auto;
    color: #4d5563;
    width: 54vw;
    margin-bottom: 6px;
}
.Experience .img-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5vw;
}
.Experience .txt {
    text-align: justify;
}
.Experience .menuPrice {
    background-color: #4d5563;
    color: #393f47;
}
.Experience .ex-catch {
    font: 4.5vw /1.3 "游ゴシック体", 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    text-align: center;
    letter-spacing: normal;
    font-feature-settings: 'palt';
    position: relative;
}
.Experience .ex-catch::before {
    background: #fff;
    border-radius: 3px;
    content: "";
    position: absolute;
    top: 0;
    left: 6%;
    width: 1px;
    height: 100%;
    transform: rotate(-35deg);
}
.Experience .ex-catch::after {
    background: #fff;
    border-radius: 3px;
    content: "";
    position: absolute;
    top: 0;
    right: 6%;
    width: 1px;
    height: 100%;
    transform: rotate(35deg);
}

.Experience .ex-catch span {
    display: inline-block;
}
.Experience .ex-btn-area {
    display: flex;
    flex-wrap: wrap;
    gap: 3vw;
    justify-content: center;
}

/*-------料金表--------*/
#container .menuPrice {
    margin: 5% auto 10%;
    overflow: auto;
    width: 100%;
}
#container .menuPrice table {
    margin: 0;
    border-spacing: 0;
}
#container .menuPrice th,
#container .menuPrice td {
    padding: 10px;
}
#container .menuPrice th {
    background: #777f8b;
    color: #FFF;
    border-right: solid 1px #d9d9d9;
    border-bottom: solid 1px #d9d9d9;
    position: sticky;
    top: 0;
    left: 0;
    vertical-align: middle;
    white-space: nowrap;
}
#container .menuPrice th.bg-orange {
    background: #ebebeb;
    color: #393f47;
    text-align: center;
}
#container .menuPrice td.bg-l-orange {
    background: #fff7e9;
}

#container .menuPrice td.bg-l-pink {
    background: #ffe9ec;
}
#container .menuPrice td.border_dot {
    border-left: 2px dotted #d9d9d9;
}
#container .menuPrice td span {
    font-size: 0.7rem;
}
#container .menuPrice td {
    white-space: nowrap;
    border-right: solid 1px #d9d9d9;
    border-bottom: solid 1px #d9d9d9;
    background: #FFF;
}
#container .menuPrice tr:first-child th {
    border-top: solid 1px #d9d9d9;
}
#container .menuPrice th:first-child {
    border-left: solid 1px #d9d9d9;
}
#container .menuPrice tr:first-child th:first-child {
    z-index: 1;
    text-align: center;
}
#container .menuContents .menuEx h4 {
    background: #b6b6b6;
    border-radius: 30px;
    color: #FFF;
    font: bold 1.2rem/1.8 'Ubuntu', "ヒラギノ角ゴ ProN W3", 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, "遊ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ＭＳ ゴシック', sans-serif;
    margin-top: 10%;
    text-align: center;
}
#container .menuContents .menuEx h5 {
    align-items: center;
    display: flex;
    font: bold 1rem/1.2 'Ubuntu', "ヒラギノ角ゴ ProN W3", 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, "遊ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ＭＳ ゴシック', sans-serif;
    margin-top: 5%;
}
#container .menuContents .menuEx h5:before {
    background: #b6b6b6;
    content: "";
    margin-right: 2%;
    height: 3px;
    width: 30px;
}
#container .menuContents .menuEx .series-bnr {
    display: block;
    margin-top: 3%;
    width: 100%;
}

#container .menuContents .menuEx .menuEx-pht {
    display: block;
    margin-top: 5%;
    width: 100%;
}
#container .menuContents .menuEx .menuEx-item {
    margin-top: 5%;
}
#container .menuContents .menuEx .menuEx-item li {
    margin: 0 1% 2%;
    width: 48%;
}
#container .menuContents .menuEx .menuEx-item li a {
    background: #ececec;
    padding: 8px;
    display: block;
}
#container .menuContents .menuEx .menuEx-item .item-pht {
    background: #FFF;
    display: block;
    margin-bottom: 3%;
    padding: 5%;
    width: 100%;
}
#container .menuContents .menuEx .menuEx-item li h5 {
    display: block;
    font-size: 0.9rem;
    line-height: 1rem;
    text-align: center;
}
#container .menuContents .menuEx .menuEx-item h5:before {
    content: none;
}
#container .menuContents .menuEx .menuEx-item li p {
    font: 0.8rem/1.4 'Ubuntu', "ヒラギノ角ゴ ProN W3", 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, "遊ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ＭＳ ゴシック', sans-serif;
}
#container .menuContents .reserve-btn a {
    background: #5e9f82;
    border-radius: 10px;
    color: #FFF;
    font: bold 1.2rem/2.4 'Ubuntu', "ヒラギノ角ゴ ProN W3", 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, "遊ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ＭＳ ゴシック', sans-serif;
    margin-top: 8%;
    text-align: center;
}
#container .menuContents .reserve-btnTopCatch {
    color: #5e9f82;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 8%;
    text-align: center;
}
#container #tokyo-spprogram .reserve-btn a,
#container #osaka-spprogram .reserve-btn a,
#container #fukuoka-spprogram .reserve-btn a {
    margin-top: 3%;
}
/*#container .fukuoka-content .menuContents .reserve-btn a{
	margin-top: 2%;
}*/
#container .menuContents .reserve-attention {
    font: 0.8rem/1.4 'Ubuntu', "ヒラギノ角ゴ ProN W3", 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, "遊ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ＭＳ ゴシック', sans-serif;
}
#container .menuContents .tel-reserve {
    font: 0.9rem/1.4 'Ubuntu', "ヒラギノ角ゴ ProN W3", 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, "遊ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ＭＳ ゴシック', sans-serif;
    margin-top: 5%;
    text-align: center;
}
#container .menuContents .tel-reserve a {
    font-size: 1.1rem;
}
#container .menuContents .store-detail a {
    font: bold 1rem/1.2 'Ubuntu', "ヒラギノ角ゴ ProN W3", 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, "遊ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ＭＳ ゴシック', sans-serif;
    margin-top: 5%;
    text-align: center;
}
#container .menuContents .open-catch {
    font: bold 0.9rem/1.2 'Ubuntu', "ヒラギノ角ゴ ProN W3", 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, "遊ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ＭＳ ゴシック', sans-serif;
    margin-top: 8%;
    text-align: center;
}
/*------------------------
   section11 mid-img
------------------------*/
.wrapper .mid-img {
    background-color: #171719;
}
.wrapper .mid-img .inner-wrap {
    padding: 0;
    width: auto;
}
/*------------------------
   section12 lineup
------------------------*/
.lineup .logo {
    width: 22vw;
    margin-bottom: 15px;
}
.lineup-box {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 13vw 6vw;
    justify-content: center;
    padding: 10px 0 0;
}
.lineup-box dl {
    width: calc(92%/2);
}
.lineup h3 {
    margin-top: 10px;
    height: 13.5vw;
}
.lineup h3 span {
    display: block;
    font-weight: 600;
    font-size: 3.6vw;
    line-height: 1.3;
}

/*------------------------
   section13 q-a
------------------------*/
.q-a .inner-wrap {
    margin-bottom: -20px;
}
.wrapper .q-a {
    background-size: auto auto;
    background-color: #4D5563;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 8px, #606774 8px, #606774 9px);
    background-attachment: fixed;
}
.wrapper .q-a h2 {
    color: #fff;
}
.wrapper .q-a .chushaku {
    text-align: justify;
}
.q-a .course-btn-area {
    padding: 35px 0 0;
}

/*---------ここからアコーディオンのCSS--------*/
.wrapper .accordion {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.wrapper .accordion img {
    margin: 5px 0 10px;
}
/* チェックボックスは非表示 */
.wrapper .accordion-hidden {
    display: none;
}
/* Question部分 */
.wrapper .accordion-open {
    color: #fff;
    display: block;
    padding: 10px 48px 10px 52px;
    background: #8692a3;
    cursor: pointer;
    margin: 0px 0;
    position: relative;
    line-height: 1.4;
    text-align: justify;
}
/* 開閉状態を示すアイコン+の作成 */
.wrapper .accordion-open::before,
.wrapper .accordion-open::after {
    content: '';
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 3.3vw;
    transform: translateY(-50%);
}
/* 一本は縦にして+を作る */
.wrapper .accordion-open::after {
    transform: translateY(-50%) rotate(90deg);
    transition: .5s;
}
/* QとAのデザイン */
.wrapper .accordion-open span {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 100%;
    background: #8692a3;
    position: absolute;
    text-align: center;
    left: 0;
    top: 0;
    font: 5vw/1 '小塚ゴシック Pro', 'Kozuka Gothic Pro', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
    font-weight: 200;
}
.wrapper .accordion-close span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 100%;
    background: #fff;
    position: absolute;
    text-align: center;
    left: 0;
    top: 0;
    font-size: 5vw;
}
/* アコーディオンが開いたら縦棒を横棒にして-にする */
.wrapper .accordion-hidden:checked+.accordion-open:after {
    transform: translateY(-50%) rotate(0);
}
/* Answer部分 */
.wrapper .accordion-close {
    display: block;
    height: 0;
    /* 要素の高さは0 */
    overflow: hidden;
    /* 非表示 */
    padding: 0 0 0 60px;
    opacity: 0;
    transition: 0.3s;
    /* 表示速度の設定 */
    margin-left: 0;
    position: relative;
}
/* チェックボックスにチェックが入ったらAnswer部分を表示する */
.wrapper .accordion-hidden:checked+.accordion-open+.accordion-close {
    height: auto;
    opacity: 1;
    padding: 15px 15px 15px 52px;
    background: #fff;
    margin-left: 0;
    text-align: justify;
    margin-top: -10px;
    font-size: .9em;
}
/*---------//.アコーディオンのCSSここまで--------*/




@media screen and (min-width:480px) and (max-width:1080px) {

/* スマホ横～タブレット 480pxから1080pxまではここを読み込む */
/*-------------------
   iPad ----
-------------------*/
    .wrapper .inner-wrap {
        padding: 60px 60px;
    }
    .wrapper h2 {
        font-size: 4.5vw;
        margin: 0 0 20px;
    }
    #container .fixed-btn {
        left: calc(50% - 50%);
        right: calc(50% - 50%);
    }
    #container .fixed-btn a {
        width: 50vw;
    }
    .Experience .ex-btn-area {
        gap: 2vw;
    }
    .wrapper .ex-btn {
        font-size: 2vw;
    }
    .wrapper .ex-btn {
        width: calc(85%/3);
    }
    .wrapper .ex-btn::after {
        top: 2.2vw;
        right: 3vw;
        width: 1.2vw;
        height: 1.2vw;
    }

/*-------------------
   iPad mainvisual
-------------------*/
    .mainvisual .inner-wrap {
        padding: 0;
    }
    .mainvisual {
        background-image: url(/contents/shop/sevenbeauty/img/freepage/sp-program/fv-model_pc.jpg);
        height: 46vw;
    }
    .mainvisual .fv-box {
        position: relative;
    }
    .mainvisual .fv-title img {
        padding: 0 0 1.3vw;
        width: 38vw;
    }
    .mainvisual .fv-title {
        padding: 2.8vw 35vw 0 4vw;
    }
    .mainvisual .fv-img {
        width: 118vw;
        margin-top: 0;
    }
    .mainvisual h1 {
        font-size: 3.2vw;
        margin: .8vw 0 0;
    }
    .mainvisual h1 br {
        display: none;
    }
    .mainvisual .notes {
        border-radius: .6vw;
        font-size: 1vw;
        line-height: 1.4;
        margin: 0;
        padding: 0.8vw;
        position: absolute;
        top: 38.2vw;
        left: 43vw;
        width: 18.5vw;
    }
/*------------------------
   iPad section0 anna
------------------------*/
.anna .anna-area {
    flex-wrap: nowrap;
    gap: 4vw;
}
.anna .anna-left {
    width: 54%;
}
.anna .anna-right {
    width: 65%;
}
.anna .ambassador {
    display: block;
    width: 60%;
    margin: 5vw 0 1.5vw -7vw;
}
.anna .name {
    font-size: 4vw;
    text-align: left;
}
.anna .name small {
    font-size: 2vw;
}
/*------------------------
   iPad section1 mov
------------------------*/
    .wrapper .mov .inner-wrap {
        padding: 50px 60px 45px;
    }

/*------------------------
   iPad section2 about-sp
------------------------*/
    .about-sp .inner-wrap {
        padding: 60px 60px 0;
    }
    .about-sp h3 {
        font-size: 3.5vw;
    }
    .about-sp h3 strong {
        font-size: 2.5vw;
        width: 31vw;
    }
    .about-sp .about-box dl {
        display: flex;
    }
    .insta-bnr-area {
        margin-top: 3%;
    }
    .awards-area {
        padding: 25px 30px;
    }
    .course-btn-area {
        padding: 6% 0 3%;
        flex-wrap: nowrap;
    }
    .btn-store {
        margin: 0;
    }
    .btn-academy {
        margin: 0;
    }
    .awards-box {
        display: flex;
        gap: 3vw;
        justify-content: center;
    }
    .awards-box dl {
        width: calc(95%/2);
    }
    .about-sp .about-box dt {
        width: 320vw;
        padding-right: 3vw;
    }
    .awards-box h4 span {
        font-size: 1.8vw;
    }

/*------------------------
   iPad section3 about-spicule
------------------------*/
    .about-spicule .about-box dl {
        display: flex;
    }
    .about-spicule .about-box dt {
        width: 80vw;
        padding-right: 3vw;
    }
    .about-spicule .about-box dd {
        width: 100vw;
    }
    .about-spicule .about-box dd p {
        margin-bottom: 20px;
    }
    .about-spicule .img-spicule {
        padding: 0;
    }

/*------------------------
   iPad section4 technology
------------------------*/
    .tech-box {
        display: flex;
        gap: 5vw;
        justify-content: center;
    }
    .tech-box div {
        width: calc(93%/2);
    }
    .technology h3 {
        font-size: 3vw;
    }
    .technology .komidashi {
        font-size: 2.5vw;
    }
    .tech-img {
        gap: 5vw;
        justify-content: center;
    }
    .tech-img div {
        width: calc(93%/2);
    }
    .tech-img::after {
        border-width: 2.5vw;
        top: 48%;
        left: 48.5%;
        border-color: transparent transparent transparent #cf3469;
    }
    .tech-more {
        margin: 25px 0 0;
        display: flex;
        gap: 30px;
    }
    .technology .pig {
        padding: 0;
    }

/*------------------------
   iPad section5 kouka
------------------------*/
    .kouka h2 {
        padding-top: 30vw;
    }
    .kouka-box {
        align-items: center;
        justify-content: center;
    }
    .kouka-left {
        position: absolute;
        width: 17vw;
        top: -41vw;
        left: 27vw;
    }
    .kouka-right {
        position: absolute;
        width: 15vw;
        top: -36vw;
        left: 41vw;
    }
    .wrapper .recommend {
        margin-top: 35px;
    }
    .wrapper .recommend:before {
        top: -4vw;
        width: 10vw;
        height: 5vw;
        left: 44.5vw;
    }
    .wrapper .recommend .width {
        padding: 0 18vw;
    }
    .wrapper .recommend .midashi {
        font-size: 3vw;
    }
    .wrapper .recommend li {
        font-size: 1em;
    }

/*------------------------
   iPad section6 merit
------------------------*/
    .merit .inner-wrap {
        padding: 0 60px 60px;
    }
    .merit h3 {
        font-size: 4vw;
        height: 19vw;
        width: 19vw;
        margin-left: 1.5vw;
    }
    .merit h3 small {
        font-size: 2.5vw;
        margin-bottom: 3px;
    }
    .merit-img img {
        width: 80vw;
    }
    .merit ul {
        gap: 2vw;
        margin-top: 40px;
    }
    .merit li {
        width: calc(89%/5);
    }

/*------------------------
   iPad section7 b-a
------------------------*/
    .b-a h2 {
        font-size: 4.5vw;
        margin: 0;
        padding: 10px 0 10px 13vw;
    }
    .b-a .title-icon {
        left: 18vw;
        width: 10.5vw;
    }
    .b-a ul {
        padding: 5vw 0 0;
        gap: 3vw;
        justify-content: center;
    }
    .b-a li {
        width: 48%;
    }

/*------------------------
   iPad section8 voice
------------------------*/


/*----------------スライド--------------*/
.voice .inner {
    max-width: 85vw;
    height: 38vw;
}
.voice .slick-slide {
    margin:0 1vw ;
    padding-top: 1vw;
}
/* arrow */
.voice .slide-arrow {
    width: 3vw;
    top: 12vw;
}
.voice .prev-arrow {
    left: -4vw;
}
.voice .next-arrow {
    right: -4vw;
}
/* dots */
.voice .slick-dots li {
    padding-top: 36.5vw;
}

/*------------------------
   iPad section9 program
------------------------*/
    .program h2 {
        font-size: 4.5vw;
        margin: 0;
        padding: 10px 0 10px 18vw;
    }
    .program .title-icon {
        bottom: -0.1vw;
        left: 17.5vw;
        width: 16vw;
    }
    .step-box {
        gap: 40px;
        padding: 30px 0 0;
    }
    .step-box dl {
        display: flex;
        padding: 20px 25px;
        align-items: center;
    }
    .step-box dd {
        width: 128vw;
        padding-left: 25px;
    }
    .step-box dt::before {
        top: 33%;
        left: 3.8vw;
        font-size: 8vw;
    }
    .step-box dt {
        padding: 0 0 0 8vw;
    }
    .step-img {
        width: 85vw;
    }
    .program h3 {
        font-size: 3vw;
        padding: 0px 0 6px;
        text-align: left;
    }
    .program h3 br {
        display: none;
    }
    .step-box dl:not(:last-child)::after {
        top: 103%;
    }
    .program h4 {
        font-size: 3vw;
    }
    .program h4::after {
        top: 100%;
        left: 46%;
        border-width: 2.5vw;
    }

/*------------------------
   iPad section10 Experience
------------------------*/
    .Experience h2 strong {
        font-size: 2.5vw;
        width: 35vw;
        margin-bottom: 8px;
    }
    .Experience .ex-catch {
        font-size: 2.5vw;
    }
    .Experience .ex-img {
        width: 100%;
    }

/*------料金表-----*/
    #container .menuPrice {
        margin: 3% auto 5%;
    }
/*------------------------
   iPad section11 mid-img
------------------------*/
/*------------------------
   iPad section12 lineup
------------------------*/
    .lineup .logo {
        width: 14vw;
    }
    .lineup-box {
        gap: 9vw 6vw;
    }
    .lineup-box dl {
        width: calc(82%/3);
    }
    .lineup h3 {
        height: 6.5vw;
    }
    .lineup h3 span {
        font-size: 1.8vw;
        line-height: 1.3;
    }
    .wrapper .buy-btn {
        font-size: 2vw;
    }
    .wrapper .buy-btn::after {
        top: 2.5vw;
        right: 2.5vw;
        width: 1.2vw;
        height: 1.2vw;
    }

/*------------------------
   iPad section13 q-a
------------------------*/
    .q-a .inner-wrap {
        margin-bottom: -50px;
    }
    .wrapper .accordion-open {
        width: 100%;
    }
    .wrapper .accordion-open span {
        font-size: 1.6em;
    }
    .wrapper .accordion-close span {
        font-size: 1.6em;
    }
}


@media screen and (min-width:1080px) {

/*　小・大画面デスクトップ　1080pxからはここを読み込む　*/
/*---固定ボタン---*/
    #container .fixed-btn {
        margin-left: 30vw;
    }
    #container .fixed-btn a {
        width: 100%;
    }

/*-------------------
   PC ----
-------------------*/
    .wrapper .inner-wrap {
        padding: 120px 60px;
        width: 1080px;
        margin: 0 auto;
    }
    .wrapper p {
        font-size: 1.2em;
        line-height: 1.8;
    }
    .wrapper h2 {
        font-size: 3.2em;
        margin-bottom: 30px;
    }
    .wrapper .cap {
        font-size: 1em;
        line-height: 1.7;
    }
    .wrapper .chushaku {
        font-size: .9em;
        text-align: right;
    }
    #container .fixed-btn {
        left: calc(20% - 100%);
        right: calc(50% - 100%);
    }
    #container .fixed-btn a {
        width: 515px;
    }
    #navi li a {
        font-size: 1rem;
        width: 190px;
    }
    .Experience .ex-btn-area {
        gap: 2vw;
    }
    .wrapper .ex-btn {
        font-size: 1.3em;
    }
    .wrapper .ex-btn {
        width: calc(80%/3);
        padding-left: 15px;
    }
    .wrapper .ex-btn::after {
        top: 20px;
        right: 25px;
        width: 10px;
        height: 10px;
    }

/*-------------------
   PC mainvisual
-------------------*/
    .mainvisual .inner-wrap {
        padding: 0px;
        width: 1080px;
        margin: 0 auto;
    }
    .mainvisual {
        background-image: url(/contents/shop/sevenbeauty/img/freepage/sp-program/fv-model_pc.jpg);
        height: 560px;
        background-size: 1800px;
        background-repeat: no-repeat;
    }
    .mainvisual .fv-box {
        position: relative;
    }
    .mainvisual .fv-title img {
        padding: 0 0 15px;
        width: 420px;
    }
    .mainvisual .fv-title {
        padding: 45px 390px 0 80px;
    }
    .mainvisual .fv-img {
        margin-top: 0;
    }
    .mainvisual h1 {
        font-size: 2.8em;
        margin: 11px 0 0;
    }
    .mainvisual h1 br {
        display: none;
    }
    .mainvisual .notes {
        border-radius: 6px;
        font-size: .85em;
        line-height: 1.5;
        margin: 0;
        width: 226px;
        position: absolute;
        top: 463px;
        left: 463px;
        padding: 9px 9px 6px 9px;
    }

/*------------------------
   PC section0 anna
------------------------*/
.anna .anna-area {
    flex-wrap: nowrap;
    gap: 50px;
}
.anna .anna-right {
    width: 530px;
}
.anna .anna-left {
    width: 390px;
}
.anna .name {
    font-size: 3.2em;
    text-align: left;
    margin: 40px 0 22px;

}
.anna .name small {
    font-size: 1.5rem;
    margin-right: 1rem;
}
.anna .ambassador {
    width: 290px;
    margin: 70px 0 20px -100px;
    display: block;
}
/*------------------------
   PC section1 mov
------------------------*/
    .wrapper .mov .inner-wrap {
        padding: 60px 50px 50px;
    }
/*------------------------
   PC section2 about-sp
------------------------*/
    .about-sp .inner-wrap {
        padding: 120px 60px 0;
    }
    .about-sp h3 {
        font-size: 2.2em;
        line-height: 1;
        margin-bottom: 35px;
    }
    .about-sp h3 strong {
        font-size: 0.7em;
        line-height: 1.4;
        display: inline-block;
        width: 270px;
        vertical-align: top;
        margin-right: 12px;
        letter-spacing: -0.5px;
        padding: 0.5px;
    }
    .about-sp .about-box dl {
        display: flex;
    }
    .about-sp .chushaku {
        margin-top: -6px;
    }
    .insta-bnr-area {
        margin-top: 3%;
        gap: 18px;
    }
    .course-btn-area {
        padding: 6% 0 0;
        flex-wrap: nowrap;
        gap: 18px;
    }
    .btn-store {
        margin: 0;
    }
    .btn-academy {
        margin: 0;
    }
    .awards-area {
        padding: 35px;
        margin: 120px 0 0;
    }
    .awards-box {
        display: flex;
        gap: 20px;
        justify-content: center;
    }
    .awards-box dl {
        width: calc(93%/4);
    }
    .awards-box h4 span {
        font-size: 1.45em;
    }
    .awards-box .emblem {
        width: auto;
        margin: -8px 0 5px;
        padding: 0 20px;
    }
    .about-sp .about-box dt {
        width: 370%;
        margin: 4px -65px 0 0;
    }
    .about-sp .about-box .notes {
        margin: 20px 0 0 100px;
        font-size: 1em;
        line-height: 1.5;
        padding: 15px;
    }
    .awards-box dd img {
        padding: 6px 2px 0;
    }
    .awards-box h4 {
        padding: 8px 25px 10px;
    }
    .awards-box .cap {
        padding: 0 20px 16px;
    }

/*------------------------
   PC section3 about-spicule
------------------------*/
    .about-spicule .about-box dl {
        display: flex;
    }
    .about-spicule .about-box dt {
        width: 70vw;
        padding-right: 3vw;
    }
    .about-spicule .about-box dd {
        width: 100vw;
    }
    .about-spicule .about-box dd p {
        margin-bottom: 30px;
    }
    .about-spicule .img-spicule {
        padding: 0;
    }

/*------------------------
   PC section4 technology
------------------------*/
    .tech-box {
        display: flex;
        gap: 85px;
        justify-content: center;
    }
    .tech-box div {
        width: calc(91%/2);
    }
    .technology h3 {
        font-size: 2em;
        padding: 10px;
        margin-bottom: 20px;
    }
    .technology .komidashi {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .technology img {
        margin: 0 0 12px;
    }
    .tech-img {
        gap: 85px;
        justify-content: center;
    }
    .tech-img div {
        width: calc(91%/2);
    }
    .tech-img::after {
        border-width: 25px;
        top: 48%;
        left: 49%;
        border-color: transparent transparent transparent #cf3469;
    }
    .tech-more {
        margin: 35px 0 0;
        display: flex;
        gap: 50px;
    }
    .technology .pig {
        padding: 0;
        width: 37%;
    }

/*------------------------
   PC section5 kouka
------------------------*/
    .wrapper .kouka,
    .wrapper .b-a,
    .wrapper .voice {
        position: relative;
        overflow: hidden;
    }
    .kouka .inner-wrap {
        width: auto;
        margin: 0 auto;
    }
    .kouka h2 {
        padding-top: 0;
    }
    .kouka-box {
        align-items: flex-start;
        justify-content: center;
        width: 980px;
        margin: 0 auto;
    }
    .kouka-box p {
        width: 472px;
    }
    .kouka-right {
        position: absolute;
        top: -48px;
        left: 365px;
        width: 100%;
    }
    .kouka-left {
        position: absolute;
        width: 100%;
        top: -100px;
        left: -347px;
    }
    .wrapper .recommend {
        padding: 35px;
        margin-top: 43px;
    }
    .wrapper .recommend:before {
        top: -48px;
        width: 115px;
        height: 50px;
        left: calc(52.5% - 100px);
    }
    .wrapper .recommend .width {
        padding: 0;
        width: 800px;
        margin: 0 auto;
    }
    .wrapper .recommend .midashi {
        font-size: 2.2em;
        padding: 10px;
        margin: 10px 0;
    }
    .wrapper .recommend ul {
        gap: 0 25px;
    }
    .wrapper .recommend li {
        font-size: 1.5em;
        line-height: 1.4;
        margin-top: 10px;
    }

/*------------------------
   PC section6 merit
------------------------*/
    .merit .inner-wrap {
        padding: 0 60px 100px;
        margin-top: -40px;
    }
    .merit h3 {
        font-size: 3.2em;
        height: 210px;
        width: 210px;
        margin-left: 90px;
        top: 45px;
    }
    .merit h3 small {
        font-size: .5em;
        margin-bottom: 3px;
    }
    .merit-img img {
        width: 800px;
        padding: 0 0 0 140px;
    }
    .merit ul {
        gap: 0;
        width: 900px;
        margin: 0 auto;
        margin-top: 50px;
    }
    .merit li {
        width: calc(100%/5);
    }

/*------------------------
   PC section7 b-a
------------------------*/
    .b-a h2 {
        margin: 0;
        padding: 15px 0 15px 165px;
    }
    .b-a .title-box-inner,
    .program .title-box-inner {
        width: 960px;
    }
    .b-a .title-icon {
        left: 130px;
        width: 148px;
    }
    .b-a ul {
        padding: 60px 0 0;
        gap: 40px;
        margin: 0 auto;
        justify-content: center;
    }
    .b-a li {
        width: 47%;
    }

/*------------------------
   PC section8 voice
------------------------*/
    .wrapper .voice .inner-wrap {
        padding: 120px 60px;
        width: auto;
    }
    .voice h2 {
        padding: 15px;
    }
    /*.voice .width ul {
        flex-wrap: nowrap;
        gap: 30px 35px;
        padding-top: 10px;
        justify-content: center;
    }*/
/*--------------------スライド---------------------*/
  .voice .inner {
     width: 1400px;
     height: 430px;
  }
  .voice .slick-slide {
     padding-top: 0;
     margin:0 30px ;
  }
  .voice .slick-slide img {
    width: 500px;
  }
  /* arrow */
  .voice .slide-arrow {
     width: 30px;
     top: 0;
     position: relative;
  }
  .voice .prev-arrow {
    left: -234px;
    top: 147px;
}
  .voice .next-arrow {
     right: -234px;
     top: -223px
  }
  .voice .slick-dots li{
     padding-top: 415px;
     width: 25px;
  }

/*------------------------
   PC section9 program
------------------------*/
    .program h2 {
        font-size: 3.2em;
        margin: 0;
        padding: 30px 0 30px 245px;
    }
    .program .title-icon {
        bottom: 10.5px;
        left: 137px;
        width: 202px;
    }
    .step-box {
        gap: 50px;
        padding: 50px 0 0;
    }
    .step-box dl {
        display: flex;
        padding: 25px 35px;
        align-items: center;
    }
    .step-box dd {
        width: 160%;
        padding-left: 25px;
    }
    .step-box dt::before {
        top: 61px;
        left: 52px;
        font-size: 6em;
    }
    .step-box dt {
        padding: 0 0 0 105px;
    }
    .step-box dd p {
        font-size: 1em;
    }
    .step-img {
        width: 750px;
    }
    .program h3 {
        font-size: 2.2em;
        padding: 0px 0 8px;
        text-align: left;
    }

    .program h3 br {
        display: none;
    }
    .step-box dl:not(:last-child)::after {
        width: 22px;
        height: 22px;
        left: 470px;
        top: 221px;
    }
    .program h4 {
        font-size: 2em;
        margin: 80px 240px;
        padding: 15px 0;
    }
    .program h4::after {
        top: 100%;
        left: 45%;
        border-width: 25px;
    }

/*------------------------
   PC section10 Experience
------------------------*/
    .Experience h2 strong {
        font-size: 1.5rem;
        margin-bottom: 10px;
        width: 330px;
    }
    .Experience .img-box {
        gap: 2.5vw;
    }
    .Experience .ex-catch {
        font-size: 1.8em;
    }
    .Experience .ex-img {
        display: flex;
        flex-wrap: nowrap;
        flex: 1.7;
    }
    .Experience .txt {
        font-size: 1.2em;
        line-height: 1.8;
        flex: 1;
    }
    .Experience .ex-catch::before {
        left: 11%;
    }
    .Experience .ex-catch::after {
        right: 11%;
    }
    /*------料金表-----*/
    #container .menuPrice {
        margin: 2% auto;
    }
/*------------------------
   PC section11 mid-img
------------------------*/
.wrapper .mid-img .inner-wrap {
    width: 80%;
}

/*------------------------
   PC section12 lineup
------------------------*/
    .lineup .logo {
        width: 137px;
        margin-bottom: 30px;
    }
    .lineup-box {
        gap: 90px 50px;
    }
    .lineup-box dl {
        width: calc(88%/3);
    }
    .lineup h3 {
        height: 52px;
    }
    .lineup h3 span {
        font-size: 1.1rem;
    }
    .wrapper .buy-btn {
        font-size: 1.1rem;
        padding-right: 0;
    }
    .wrapper .buy-btn::after {
        top: 39%;
        right: 28px;
        width: 13px;
        height: 13px;
    }

/*------------------------
   PC section13 q-a
------------------------*/
    .q-a .inner-wrap {
        margin-bottom: -50px;
    }
    .wrapper .accordion-open {
        width: 100%;
        font-size: 1.1rem;
        line-height: 1.8;
        padding: 10px 48px 10px 80px;
    }
    .wrapper .accordion-open span {
        font-size: 1.6em;
        width: 80px;
    }
    .wrapper .accordion-close span {
        font-size: 1.6em;
        width: 80px;
    }
    .wrapper .accordion-hidden:checked+.accordion-open+.accordion-close {
        font-size: 1rem;
        padding: 25px 25px 25px 80px;
    }
    .wrapper .accordion img {
        margin: 15px 0;
    }
    .q-a .course-btn-area {
        padding: 65px 0 0;
    }
}