@charset "utf-8";

/*
Theme Name:リピッテBEAUTY by cnctor.jp
Author:cnctor.jp
Description:リピッテBEAUTYのWEBサイトテーマ 2022
Version:1.0
*/


/* general */

a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
    transition: 0.2s;
}

li {
    list-style: none;
}

p {
    margin: 0;
    font-size: 16px;
}
.br-pc {
    display: block;
}
.br-sp {
    display: none;
}

@media (max-width:768px) {
    .br-sp {
        display: block;
    }
    .br-pc {
        display: none;
    }
}


/*  */

.wrapper {
    overflow: hidden;
}

body {
    font-family: 'Noto Sans JP', sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Arial', "メイリオ", "ヒラギノ角ゴシック";
    margin: 0;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    background-image: url('../img/general-bg.webp');
    background-size: contain;
    background-repeat: repeat;
    z-index: -100;
    scroll-behavior: smooth;
}

@media (max-width:935px) {
    body {
        /* background-image: url('../img/general-bg-sp.webp'); */
        background-image: none;
    }
}

main {
    width: 95%;
    max-width: 1080px;
    margin: 0 auto;
    margin-top: 80px;
}


/* ヘッダー グローバルナビ */

header {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    position: fixed;
    top: 0;
    background-color: rgba(254, 244, 246, 0.3);
    -webkit-background-color: rgba(254, 244, 246, 0.3);
    -moz-background-color: rgba(254, 244, 246, 0.3);
    backdrop-filter: blur(10px) brightness();
    -webkit-backdrop-filter: blur(10px) brightness();
    -moz-backdrop-filter: blur(10px) brightness();
    z-index: 1000;
}

@-moz-document url-prefix() {
    header {
        background-color: rgba(254, 244, 246, 0.9);
    }
}

.header-logo {
    width: 136px;
}

.header-logo img {
    width: 100%;
}

.header-logo img {
    width: 100%;
}

.header-nav {
    width: 95%;
    max-width: 1080px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.global-navigation {
    display: block;
}

.nav-list {
    display: flex;
    gap: 0 15px;
    align-items: center;
    margin: 1rem 0;
}

@media (max-width:975px) {
    .nav-list {
        display: none;
    }
}

.text-nav {
    margin-right: 20px;
    transition: 0.3s;
    color: #333 !important;
}

.text-nav:hover {
    opacity: 0.8;
    text-decoration: none !important;
}

.text-nav:last-child {
    margin-right: 25px;
    font-size: 16px;
    
}


/* 無料デモ体験ボタン */

.demo-button {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 1em 0;
    width: 158px;
    color: white;
    font-size: 16px;
    background-image: linear-gradient(to right, #06C755, #4CC764);
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: rgb(0, 220, 66, 0.42) 0px 0px 20px;
    line-height: 1.6em;
}

.demo-button:hover {
    background-image: linear-gradient(to right, #06C755, #4CC764);
    opacity: 0.7;
}


/* お問合せボタン */

.contact-button {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 1em 0;
    width: 158px;
    color: white;
    font-size: 16px;
    background-image: linear-gradient(to right, #3ED6FC, #47A4F9 65%, #47A4F9);
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: rgb(0, 114, 255, 0.35) 0px 0px 20px;
    line-height: 1.6em;
}

.contact-button:hover {
    text-decoration: none;
    background-image: linear-gradient(to right, #3ED6FC, #47A4F9 65%, #47A4F9);
    opacity: 0.8;
}

@media (max-width:935px) {
    .demo-button,
    .contact-button {
        margin: 0;
    }
}

/* ログインボタン */

.login-button {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 1em 0;
    width: 158px;
    color: #F2728D;
    font-size: 16px;
    background-color: white;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: rgb(0, 114, 255, 0.35) 0px 0px 20px;
    box-shadow: rgb(242, 114, 141, 40%) 0 0 10px;
    line-height: 1.6em;
}

.login-button:hover {
    text-decoration: none;
    background-color: white;
    opacity: 0.8;
}

@media (max-width:935px) {
    .demo-button,
    .contact-button,
    .login-button {
        margin: 0;
    }
}

@media screen and (min-width:975px) and (max-width:1070px) {
    .nav-list {
        gap: 0 10px;
    }
    .text-nav {
        margin-right: 5px;
    }
    .text-nav:last-child {
        margin-right: 10px;
    }
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */

.sp-navigation {
    display: none;
}

@media (max-width:975px) {
    .sp-navigation {
        display: block;
    }
}

.hamburger {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
}

.hamburger__line {
    position: absolute;
    width: 35px;
    height: 3px;
    right: 0;
    background-color: #F2728D;
    transition: all 0.5s;
}

.hamburger__line--1 {
    top: 3px;
}

.hamburger__line--2 {
    top: 13px;
}

.hamburger__line--3 {
    top: 23px;
}


/*ハンバーガーがクリックされたら*/

.open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 11px;
}

.open .hamburger__line--2 {
    opacity: 0;
}

.open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 11px;
}


/* 
sp-nav(ナビ)
=================================== */

.sp-nav {
    position: fixed;
    right: -100%;
    /*ハンバーガーがクリックされる前はWindow右側に隠す*/
    top: 0;
    width: 240px;
    /* 出てくるスライドメニューの幅 */
    height: 100vh;
    background-color: #fff;
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto;
    /* メニューが多くなったらスクロールできるように */
}


/*ハンバーガーがクリックされたら右からスライド*/

.open .sp-nav {
    right: 0;
}

.sp-nav {}

.sp-nav ul {
    margin-top: 120px;
    padding: 0;
    margin-left: 40px;
}

.sp-nav ul li {
    font-size: 20px;
    margin-top: 35px;
}

.sp-nav ul li.demo-button-box {
    margin-top: 50px;
}


/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */

.black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
}


/*ハンバーガーメニューが開いたら表示*/

.open .black-bg {
    opacity: 0.3;
    visibility: visible;
}


/* スクロールトップ*/

.scroll-top-button {
    position: fixed;
    bottom: 25px;
    right: 18%;
}

@media screen and (max-width:1600px) {
    .scroll-top-button {
        position: fixed;
        bottom: 25px;
        right: 5%;
    }
}

.button-flat-circle-toparrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 75px;
    height: 75px;
    background-image: linear-gradient(to right, #06C755, #4CC764);
    box-shadow: rgb(0, 220, 66, 0.42) 0px 0px 30px;
    border-radius: 50vh;
    transition: 0.3s;
}

.button-flat-circle-toparrow::after {
    content: '';
    width: 16px;
    height: 16px;
    border-top: 6px solid white;
    border-left: 6px solid white;
    border-radius: 2px;
    transform: rotate(45deg);
    transition: 0.3s;
    margin-top: 7px;
}

.button-flat-circle-toparrow:hover::after {
    border-top: 6px solid white;
    border-left: 6px solid white;
}


/* サイドアイコンバー */

.side-icon-bar {
    position: fixed;
    top: 250px;
    right: 0;
    background-color: white;
    padding: 30px 12px 30px 12px;
}

.sns-icon {
    width: 25px;
    height: 25px;
    margin-bottom: 20px;
    position: relative;
}

.sns-icon:last-child {
    margin-bottom: 0;
}

.sns-icon img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

@media (max-width:935px) {
    .side-icon-bar {
        display: none;
    }
    .sns-icon {
        margin-top: 35px;
    }
}

.hamburger-icons {
    margin-left: 40px;
    display: flex;
    width: 160px;
    flex-wrap: wrap;
    margin-top: 35px;
    gap: 0 40px;
    margin-bottom: 100px;
}

.hamburger-icons .sns-icon {
    width: 35px;
    height: 30px;
    margin-bottom: 20px;
    position: relative;
}


/*メインビジュアル */

.main-visual-content-container {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    background-image: url('../img/mv-bg.webp');
    background-repeat: none;
    background-size: cover;
}

.main-visual-content-wrapper {
    display: flex;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: flex-start;
}

.main-visual-content {
    width: 41%;
    max-width: 1080px;
    margin: 0 auto;
    margin-right: -11%;
    position: relative;
}

.mv-text h1 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 60px;
    position: relative;
    font-size: 32px;
}

/**.mv-text h1::before {
    content: url(../img/yellow-border.png);
    position: relative;
    margin: -20px;
    left: -27px;
    top: -38px;
}**/

.main-visual-content-element1,
.main-visual-content-element2,
.main-visual-content-element3,
.main-visual-content-element4 {
    width: 100%;
}

.main-visual-content-element2-desc {
    position: relative;
    width: 40%;
    text-align: right;
    color: white;
    top: -112px;
    right: -34%;
    font-size: 12px;
    font-weight: 500;
}

.main-visual-content-element1 img {
    display: block;
    width: 50%;
    margin: 10px auto 0 auto;
}

.main-visual-content-element1-sp img{
    display: none;
}

.main-visual-content-element1:first-child img {
    padding-top: 60px;
}

.main-visual-content-element2 img {
    display: block;
    width: 60%;
    margin: 0px auto;
    padding-left: 2rem;
}

.main-visual-content-element2-sp img {
    display: none;
}

.main-visual-content-element3 img {
    display: block;
    width: 85%;
    margin: 0 auto;
}

.main-visual-content-element4 p {
    width: 65%;
    margin: -30px auto 0 auto;
    font-size: 13px;
    color: white;
    padding-bottom: 40px;
}

.mv-traial{
    position: relative;
    margin-bottom: 2%;
    right: -60%;
    width: 90%;
}

.mv-traial img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nagasaku{
    width: 58%;
    margin-right: 4%;
    margin-top: 5.5rem;
}

.nagasaku-sp {
    width: 50%;
    margin-right: 7%;
}

.nagasaku img,
.nagasaku-sp img {
    display: block;
    width: 100%;
    bottom: 0;
}

.nagasaku-sp {
    display: none;
}

@media screen and (min-width:768px) and ( max-width:980px) {
    .mv-text h1{
        font-size: 24px;
    }
    .nagasaku {
        display: none;
    }
    .nagasaku-sp {
        display: block;
        margin-right: 11%;
    }
    .nagasaku img,
    .nagasaku-sp img {
        display: block;
        width: 115%;
        margin-top: 4rem;
        bottom: 0;
    }
}

@media (max-width:768px) {
    .mv-text h1{
        padding-top: 20px;
        font-size: 22px;
    }
    .mv-text h1::before{
        left: -17px;
        top: -18px;
    }
    .main-visual-content-container {
        background-image: url('../img/mv-bg-sp.webp');
        background-position: -109px 22px;
        background-repeat: no-repeat;
    }
    .main-visual-content {
        width: 95%;
        margin: auto;
    }
    .nagasaku,
    .nagasaku-sp {
        width: 95%;
        margin-top: 200px;
    }
    .main-visual-content-element2 img {
        width: 54.5%;
    }
    .main-visual-content-element1 img{
        display: none;
    }
    .main-visual-content-element2 img{
        display: none;
    }
    .main-visual-content-element2-sp img {
        /**position: absolute;**/
        display: block;
        right: -15px;
        top: 281%;
        width: 48%;
    }
    .main-visual-content-element2-desc{
        top: 575px;
        right: -61%;
    }
    .main-visual-content-element3 img {
        width: 100%;
    }
    .main-visual-content-element3 {
        width: 100vw;
        margin: 5% calc(50% - 50vw);
    }
    .main-visual-content-element4 p {
        width: 95%;
    }
    .mv-traial{
        position: absolute;
        margin-top: 0; 
        right: 0;
        width: 96.6%;
        bottom: -145%;
        z-index: 1;
    }
    .nagasaku img, 
    .nagasaku-sp img{
        position: relative;
        width: 100%;
        bottom: 0;
        margin-left: 10px;
    }
}

@media (max-width:450px) {
    .mv-traial{
        bottom: -84%;
    }
    .main-visual-content-element2-desc{
        top: 380px;
        font-size: 13px;
    }

    .main-visual-content-element2-sp img{
        top: 195%;
    }

    .nagasaku,
    .nagasaku-sp {
        margin-top: 70px;
        margin-bottom: 24px;
    }
}

@media (max-width:376px) {
    .main-visual-content-element2-desc{
        top: 354px;
        font-size: 13px;
        color: #c6c6c6;
    }
    .mv-traial{
        bottom: -73%;
    }
}


/* readmoreボタン */

.readmore-button-box {
    margin-top: 5%;
}

.readmore-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 16px 32px;
    line-height: 1.6em;
    width: 200px;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    background-color: #F2728D;
    box-shadow: #f2728e35 0px 0px 20px;
}

.readmore-button2 {
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    padding: 16px 32px;
    line-height: 1.6em;
    width: 200px;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    background-color: #F2728D;
    box-shadow: #f2728e35 0px 0px 20px;
}

.readmore-button::after,
.readmore-button2::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg);
}

.readmore-button::before,
.readmore-button2::before {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg) translate(130px, -130px);
}

.readmore-button:hover,
.readmore-button2:hover {
    opacity: 0.9;
}


/* パンくずりすと */

.breadcrumb {
    background-color: white;
    padding: 5px 20px;
    box-sizing: border-box;
}

.breadcrumb a {
    color: #F2728D !important;
}


/* セクション単位でのcss */

section {
    width: 100%;
    margin: 0 auto;
    margin-top: 10%;
}

section:first-child {
    margin-top: 0;
}

.section-title {
    text-align: center;
}

.section-description {
    text-align: center;
    margin-top: 50px;
    line-height: 2rem;
}

@media (max-width:768px) {
    section {
        margin-top: 25%;
    }
}


/* バナーセクション */

.banar-block {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
}

.banar-block img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: #1a1a1a20 0 3px 20px;
}

.banar-block a {
    transition: 0.2s;
}

.banar-block a:hover {
    opacity: 0.8;
}


/* リピッテとは */

.about-content-box {
    width: 100%;
}

.about-content-box-img {
    display: block;
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 5%;
}

.about-content-box-img img,
.about-content-box-img-sp img {
    width: 100%;
}

.about-content-box-img-sp {
    display: none;
}

@media (max-width:768px) {
    .about-content-box-img {
        display: none;
    }
    .about-content-box-img-sp {
        display: block;
    }
    .section-description {
        text-align: left;
        width: 90%;
        margin: auto;
    }
}


/* さまざまな業種で導入できる */

.case-study-description {
    margin: 3% auto 5% auto;
}

.case-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 3%;
    margin-top: 5%;
}

@media (max-width:768px) {
    .case-box {
        width: 95%;
        max-width: 335px;
        margin: auto;
        justify-content: left;
        gap: 10px;
    }
}

.case-box-element {
    display: block;
    width: 160px;
    border: #F2728D 1px solid;
    background-color: white;
    border-radius: 10px;
    padding-top: 15px;
    box-shadow: rgb(242, 114, 141, 0.25) 0 0 15px;
    transition: 0.2s;
}

.case-box-element:hover {
    background-color: rgb(254, 244, 246);
}

.case-box-element-img {
    width: 60%;
    margin: auto;
}

.case-box-element-img img.symbolmark {
    display: block;
    width: 70%;
    padding: 15% 0;
    margin: auto;
}

.case-box-element-img img {
    display: block;
    width: 100%;
    margin: auto;
}

.case-box-element p {
    text-align: center;
    margin: 10% auto;
}


/* カルーセル 予約の流れ　case-study */

.reserve-flow {
    margin: 10% auto 20% auto;
}

.reserve-flow-description {
    margin-bottom: 7.5%;
}

.reserve-flow-carousel {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
}

.reserve-flow-carousel .slick-next {
    right: 20px;
    z-index: 99;
}

.reserve-flow-carousel .slick-prev {
    left: 15px;
    z-index: 100;
}

.carousel-list {
    width: 25vw !important;
}

.carousel-list:first-child {
    margin-left: 50%;
}

.slick-slide {
    width: 100%;
}

.container {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
}

.slick-dots li.slick-active button:before {
    color: #F2728D !important;
    font-size: 16px !important;
}


/* 中央以外のスライド */

.slick-img img {
    display: block;
    height: auto;
    transform: scale(.85);
    transition: opacity .5s, transform .5s;
    width: 100%;
    /* box-shadow: gray 0 0 5px; */
}

.slider-desktop {
    display: block;
}

.slider-sp {
    display: none;
}


/* 中央のスライド */

.slider .slick-center img {
    opacity: 1;
    transform: scale(1);
}

.slick-dots {
    bottom: -100px !important;
}

@media (max-width:768px) {
    .slider-desktop {
        display: none;
    }
    .slider-sp {
        display: block;
    }
    .slick-dots {
        bottom: -30px !important;
    }
}


/* お悩みありませんか */

.solutions-block1-wrapper {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    background: #F2F2F2;
    padding: 10% 0;
}

.repeater-store-opinion {
    display: flex;
    align-items: top;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 30px;
    max-width: 1080px;
    margin: auto;
}

.solutions-block1-title {
    text-align: center;
    margin-bottom: 5%;
}

.repeater-block,
.store-block {
    width: 95%;
    max-width: 525px;
    background: white;
    padding: 3% 3% 8% 3%;
    box-sizing: border-box;
    position: relative;
}

.repeater-block h3,
.store-block h3 {
    text-align: center;
    margin-bottom: 10%;
}

.repeater-block h3 span,
.store-block h3 span {
    background: linear-gradient(transparent 40%, #FFFBC6 40%);
}

.repeater-opinion li,
.store-opinion li {
    list-style: url('../img/checkbox.svg');
    vertical-align: middle;
    line-height: 3em;
}

.repeater-opinion li::marker,
.store-opinion li::marker {}

.repeater-woman-icon-box,
.store-woman-icon-box {
    width: 30%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.repeater-woman-icon-box img,
.store-woman-icon-box img {
    width: 100%;
}

@media (max-width:768px) {
    .repeater-block,
    .store-block {
        padding: 3% 3% 30% 3%;
    }
}


/* 矢印　下向き */

.solutions-section-arrow-box {
    margin-top: -50px;
    margin-bottom: -35px;
}

.solutions-section-arrow {
    display: block;
    content: '';
    width: 35px;
    height: 35px;
    border-top: 7px solid #F2728D;
    border-right: 7px solid #F2728D;
    transform: rotate(135deg);
    margin: 0 auto;
}

@media (max-width:768px) {
    .solutions-section-arrow-box {
        margin-top: -10px;
        margin-bottom: -20px;
    }
    .solutions-section-arrow {
        width: 12px;
        height: 12px;
        border-top: 3px solid #F2728D;
        border-right: 3px solid #F2728D;
    }
}


/* 解決 */

.solutions-block2-wrapper {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    background: #FEF4F6;
    padding: 10% 0;
}

.solutions-block2-title {
    text-align: center;
}

.solutions-block2-block-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: top;
    max-width: 1080px;
    margin: auto;
}

.solutions-block2-block {
    width: 95%;
    max-width: 340px;
    margin-top: 5%;
}

.solutions-block2-block-top {
    margin-bottom: 10%;
    width: 100%;
}

.solutions-block2-block-top img {
    width: 100%;
}

.solutions-block2-block-middle {
    margin-bottom: 10%;
    text-align: center;
}

.solutions-block2-block-bottom {}

/* サポートの強み */
section.support{
    width: 100vw;
    position: relative;
    transform: translateX(-50%);
    left: 50%;
    margin: 0;
    background: #fff;
    padding-bottom: 80px;
}
.support-wrapper{
    background: #F2F2F2;
}
.support h2{
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    text-align: center;
    margin: 0;
}
.support-title{
    padding-top: 122px;
    padding-bottom: 80px;
}
.support h2 span{
    background: #F2728D;
    border-radius: 8px;
    color: #fff;
    padding-left: 6px;
    margin-right: 6px;
}
.support-flex{
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 3%;
    max-width: 1080px;
    margin: 0 auto;
}
.support-item{
    width: 28%;
    text-align: center;
    color: #F2728D;
    font-size: 18px;
    font-weight: 700;
}
.support-item p{
    color: #5C5C5C;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%
}
.support-triangle{
    background: linear-gradient(0deg, #F4CED6 0%, #F2F2F2 100%);
    height: 140px;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    text-align: center;
}
.support-solution{
    color: #F2728D;
    padding-top: 80px;
}
._success{
    margin-top: 80px;
}
._success .support-item ._pink{
    text-align: center;
    font-weight: 700;
    margin: 16px 0;
    color:#F2728D ;
}
._success .support-item p{
    color: #000;
    text-align: left;
}
._support-sp{
    display: none;
}
@media (max-width:768px) {
    ._support-pc{
        display: none;
    }
    ._support-sp{
        display: block;
    }
    .support h2{
        font-size: 24px;
    }
    .support-flex{
        flex-direction: column;
        align-items: center;
    }
    .support-item{
        width: 90%;
        margin-bottom: 30px;
        text-align: center;
    }
    .support-triangle{
        height: 160px;
        clip-path: polygon(0 0, 100% 0, 50% 45%);
    }
    .support-solution{
        padding-bottom: 40px;
        line-height: 130%;
    }
}
/* 店舗側の管理画面 admin-screen */

.admin-screen-imgandtext {
    position: relative;
    margin-top: 5%;
}

.admin-screen-img {
    position: absolute;
    width: 65%;
    z-index: 1;
    top: 15%;
    left: 0;
}

.admin-screen-img img {
    width: 100%;
}

.admin-screen-text {
    width: 40%;
    background-color: #FEF4F6;
    border-radius: 10px;
    height: auto;
    margin: 0 0 0 auto;
}

.admin-screen-text-content {
    width: 50%;
    margin: 0 auto;
    padding: 5% 0;
}

.admin-screen-text-content ul li::before {
    position: relative;
    top: -2px;
    left: -18px;
    display: inline-block;
    width: 12px;
    height: 12px;
    content: '';
    border-radius: 100%;
    background: #F2728D;
}

@media (max-width:768px) {
    .admin-screen-img {
        position: relative;
        width: 95%;
        margin: auto;
    }
    .admin-screen-text {
        width: 95%;
        margin: 0 auto;
    }
    .admin-screen-text-content {
        width: 80%;
        margin: 5% auto;
        padding: 5% 0;
    }
    .admin-screen-text-content h3 {
        text-align: center;
    }
    .admin-screen-text-content p {
        text-align: right;
    }
}


/* コンタクトセクション contact-label */

.contact-label {
    background: url('../img/contact-label.webp');
    padding: 75px 0;
    margin: 0 calc(50% - 50vw);
    margin-top: 80px;
    width: 100vw;
    margin-top: 25%;
}


/* コンタクトボタン */

.contact-label-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 16px 32px;
    line-height: 1.6em;
    width: 260px;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    background-image: linear-gradient(to right, #3ED6FC, #47A4F9 65%, #47A4F9);
    box-shadow: rgb(0, 114, 255, 0.35) 0px 0px 20px;
}

.contact-label-button::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg);
}

.contact-label-button::before {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg) translate(172px, -172px);
}

.contact-label-button:hover {
    text-decoration: none;
    background-image: linear-gradient(to right, #3ED6FC, #47A4F9 65%, #47A4F9);
    opacity: 0.8;
}


/* 機能一覧 */

.function-flex-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 2.5%;
    margin-top: 5%;
}

.function-flex-box-element {
    display: block;
    width: 200px;
    border: #F2728D 1px solid;
    border-radius: 10px;
    padding-top: 15px;
    box-shadow: rgb(242, 114, 141, 0.25) 0 0 15px;
    background: white;
    transition: 0.2s;
}

a.function-flex-box-element:hover {
    background-color: rgb(254, 244, 246);
    display: block;
}

.function-flex-box-element-img {
    width: 30%;
    margin: auto;
}

.function-flex-box-element-img2 {
    width: 40%;
    margin: auto;
}

.function-flex-box-element-img3 {
    width: 32%;
    margin: auto;
}

.function-flex-box-element-img img,
.function-flex-box-element-img2 img,
.function-flex-box-element-img3 img {
    width: 100%;
}

.function-flex-box-element p {
    text-align: center;
    color: #F2728D;
    margin: 5% auto 10% auto;
}

.comingsoon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F2728D;
}

.comingsoon p {
    width: 100%;
    text-align: center;
    margin: auto;
    color: white;
}

@media (max-width:768px) {
    .function-flex-box-element {
        width: 170px;
    }
    .comingsoon {
        padding: 60px 0;
    }
}


/* 注目機能 */

.attention-functions {
    width: 100%;
    margin: 0 auto;
    margin-top: 10%;
}

.attention-functions-title {
    text-align: center;
}

@media (max-width:768px) {
    .attention-functions {
        width: 100%;
        margin: 0 auto;
        margin-top: 30%;
    }
    .attention-functions-title {
        margin-bottom: 15%;
    }
}

.attention-functions-flex-box,
.attention-functions-flex-box-sp {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-top: 5%;
}

.attention-functions-flex-box-sp {
    display: none;
}

.attention-functions-flex-box-element {
    display: block;
    width: 95%;
    max-width: 340px;
    border: #F3B341 1px solid;
    padding-top: 15px;
    box-shadow: #F3B34120 0 0 15px;
    border-radius: 10px;
    background: white;
    box-sizing: border-box;
}

.attention-functions-flex-box-element-img {
    width: 40%;
    height: 140px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attention-functions-flex-box-element-img2 {
    width: 30%;
    height: 140px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attention-functions-flex-box-element-img3 {
    width: 50%;
    height: 140px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attention-functions-flex-box-element-img img,
.attention-functions-flex-box-element-img2 img,
.attention-functions-flex-box-element-img3 img {
    margin: auto;
    width: 100%;
}

.attention-functions-flex-box-element p {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 5%;
}

.function-title {
    text-align: center;
    margin-top: 5% !important;
    color: #F3B341;
}

@media (max-width:768px) {
    .attention-functions-flex-box-sp {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 30px;
        margin-top: 5%;
    }
    .attention-functions-flex-box {
        display: none;
    }
}


/* 導入事例 */

.top-case-study-list-card-container {
    width: 100%;
    max-width: 1080px;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.top-case-study-list-card {
    display: block;
    width: 95%;
    max-width: 340px;
    box-shadow: rgba(242, 114, 141, 0.400) 0 0 10px;
    transition: .3s;
    background: white;
    box-sizing: border-box;
}

.top-case-study-list-card:hover {
    box-shadow: rgba(242, 114, 141, 0.400) 0 0 15px 5px;
}

.top-case-study-list-card-thumbnail {
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.top-case-study-list-card-thumbnail img {
    width: 100%;
    height: auto;
}

.top-case-study-list-card-preview {
    padding: 10% 5%;
    letter-spacing: 0.05em;
    line-height: 1.5em;
}

.top-case-study-list-card-preview-top {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 2.5%;
}

.top-case-study-list-card-preview-middle {
    margin-bottom: 20px;
}

.top-case-study-list-card-preview-bottom {
    font-weight: bold;
}

.top-case-study-list-card-preview-bottom-category-icon {
    width: 25px;
}

.top-case-study-list-card-preview-bottom-category-icon img {
    width: 100%;
    display: block;
}


/* お客様の声 */

.voices .section-description {
    margin-top: 10px;
    margin-bottom: 50px;
}

.voices-box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 2%;
    justify-content: left;
    align-items: flex-start;
}

.voice-box {
    width: 32%;
    height: auto;
    max-height: 420px;
    padding: 5px;
    box-sizing: border-box;
    background: white;
    box-shadow: rgba(242, 114, 141, 0.400) 0 0 10px;
    display: flex;
    justify-content: center;
    overflow: scroll;
    align-items: flex-start;
}

.voice-box img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width:976px) {
    .voices-box-container {
        gap: 30px 2%;
    }
    .voice-box {
        width: 49%;
    }
}

@media (max-width:640px) {
    .voice-box {
        width: 100%;
    }
}


/* 料金表 */

#charge {
    padding-top: 150px;
    margin-top: 0;
}

.website-price-table,
.option-price-table {
    background: white;
}

section.charge-list .section-description {
    text-align: center;
}


/* 初期費用 */

.initial-cost {
    display: flex;
    width: 60%;
    justify-content: center;
    margin: auto;
    margin-top: 10%;
    border: #F2728D 3px solid;
    border-radius: 3px;
    padding: 2% 0;
    align-items: center;
    color: #F2728D;
    font-weight: bold;
    z-index: 1;
    background-color: white;
}

.initial-cost-price {
    width: 50%;
    border-right: 1px #F2728D dashed;
    text-align: center;
}

.initial-cost-price p {
    margin: 3% auto;
    font-size: 20px;
}

.initial-cost-price p.initial-cost-price-number {
    font-size: 180%;
}

.initial-cost-campaign {
    width: 50%;
    text-align: center;
}

.initial-cost-campaign p {
    font-size: 20px;
    margin: 3% auto;
}

table.option-price-table .fc-orange{
	font-weight: bold;
}

@media (max-width:768px) {
    .initial-cost-price {
        width: 45%;
    }
    .initial-cost-campaign {
        width: 55%;
    }
    .initial-cost {
        width: 98%;
    }
}


/* キャンペーンボタン */

.readmore-button-box-campaign {
    width: 80%;
    max-width: 250px;
    margin: 0 auto;
}

.readmore-button-box-campaign .readmore-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    padding: 0.7em 2em;
    box-sizing: border-box;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    background-color: #F2728D;
    box-shadow: #f2728e35 0px 0px 20px;
}

.readmore-button-box-campaign .readmore-button::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(135deg) translate(2px, -2px);
}

.readmore-button-box-campaign .readmore-button::before {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(135deg) translate(-130px, -121.5px);
}

.readmore-button-box-campaign .readmore-button:hover {
    opacity: 0.9;
}

@media (max-width:768px) {
    .readmore-button-box-campaign .readmore-button {
        display: block;
    }
    .readmore-button-box-campaign .readmore-button::after,
    .readmore-button-box-campaign .readmore-button::before {
        display: none;
    }
}


/* プラスマーク */

.plus-mark {
    text-align: center;
    color: #F2728D;
    font-size: 75px;
    font-weight: bold;
    margin: 2% auto;
}


/* オプション料金表の見出し */

.sideline-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    text-align: center;
    color: #F4B342;
    margin: 3% auto 3% auto;
}

.sideline-heading::before,
.sideline-heading::after {
    content: '';
    width: 42%;
    height: 3px;
    background-color: #F4B342;
}

.sideline-heading::before {
    margin-right: 20px;
}

.sideline-heading::after {
    margin-left: 20px;
}

@media (max-width:768px) {
    .sideline-heading::before,
    .sideline-heading::after {
        width: 25%;
    }
}


/* オプション料金表 */

.option-price-table,
.website-price-table {
    table-layout: fixed;
    width: 100%;
    min-width: 800px;
    margin: 0 auto;
    box-shadow: rgba(51, 51, 51, 0.2) 0 0 5px 2px;
}

.heading-cell {
    color: white;
    font-size: 20px;
}

thead .heading-cell {
    width: 200px;
    padding: 2% 0;
    font-size: 24px;
}

.nocontent-cell:first-child {
    width: 200px;
}

.nocontent-cell:last-child {
    width: 360px;
}

.heading-cell-description {
    font-size: 16px;
    font-weight: 100;
    line-height: 1.6em;
    display: block;
    margin: 5px auto 0 auto;
}

.booking-capacity {
    background: white;
    display: block;
    width: 180px;
    margin: 5px auto 0 auto;
    border-radius: 5px;
    font-size: 16px;
    padding: 3px;
}

.price-content {
    text-align: center;
    padding: 40px 0;
}

.option-price {
    font-size: 28px;
    font-weight: bold;
}

.description-content {
    padding: 2% 0;
}

.description-content p {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 5%;
}

@media (max-width:768px) {
    .option-price-table,
    .website-price-table {
        box-shadow: none;
    }
    .option-price-table-wrapper,
    .website-price-table-wrapper {
        overflow: scroll;
        box-shadow: rgba(51, 51, 51, 0.2) 0 0 5px 2px;
    }
    .sideline-heading::before,
    .sideline-heading::after {
        width: 25%;
    }
}


/* 詳細を見るボタン */

.readmore-button-box-pricetable {
    width: 330px;
    margin: 0 auto;
}

.readmore-button-box-pricetable .readmore-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    padding: 0.7em 2em;
    box-sizing: border-box;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    background-color: #F2728D;
    box-shadow: #f2728e35 0px 0px 20px;
}

.readmore-button-box-pricetable .readmore-button::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg);
}

.readmore-button-box-pricetable .readmore-button::before {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg) translate(175px, -175px);
}

.readmore-button-box-pricetable .readmore-button:hover {
    opacity: 0.9;
}


/* Webサイト制作料金表 */

.website-price-table-box {
    margin-top: 5%;
}


/* スクロールできるよおって */

.scroll-attention {
    width: 98%;
    margin: 0 auto;
    text-align: left;
    color: rgb(199, 199, 199);
}


/* キャンペーン */

.campaign {
    margin-top: 10%;
    border: #F2728D solid 3px;
    background: white;
}

.campaign-title {
    text-align: center;
    margin-top: 5%;
    font-size: 28px;
    color: #F2728D;
}

.campaign-title .hashtag {
    font-size: 100px;
    color: #f2728e53;
    vertical-align: middle;
    font-weight: bold;
}

.campaign-description {
    text-align: center;
    margin: 0 auto 2% auto;
}

.campaign-description2 {
    text-align: center;
    margin: 2% auto;
}

.campaign-arrow-box {
    width: 50px;
    text-align: center;
    margin: 0 auto;
}

.campaign-arrow {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 4px solid #F2728D;
    border-right: 4px solid #F2728D;
    transform: rotate(135deg);
    margin: 0 auto;
}

.campaign-discount-block-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 5%;
    flex-wrap: wrap;
}

.campaign-discount-block {
    display: block;
    box-shadow: rgba(51, 51, 51, 0.300) 0 0 5px;
    width: 100%;
    max-width: 220px;
}

.campaign-discount-block-top {
    text-align: center;
    color: white;
}

.campaign-discount-block-top p {
    margin: 0 auto;
    padding: 15px 0;
}

.campaign-discount-block-top p span {
    font-size: 12px;
}

.campaign-discount-block-bottom {
    text-align: center;
}

.campaign-discount-block-bottom p {
    margin: 0 auto;
    margin-bottom: 10px;
}

.campaign-discount-block-bottom p:first-child {
    margin-top: 20px;
}

.campaign-discount-block-bottom-beforeprice,
.campaign-discount-block-bottom-afterprice {
    font-size: 30px;
}

.campaign-discount-block-bottom-beforeprice {
    color: #FFD502;
    text-decoration: line-through;
}

.campaign-discount-block-bottom-beforeprice span {
    color: rgb(190, 190, 190);
}

.campaign-discount-block-bottom-afterprice {
    color: #FF5A5A;
}

@media (max-width:768px) {
    .campaign-title {
        line-height: 1.6em;
        font-size: 22px;
    }
    .campaign-title .hashtag {
        font-size: 50px;
        color: #f2728e53;
        vertical-align: middle;
        font-weight: bold;
    }
    .campaign {
        padding: 5%;
    }
}

.insta-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    animation-name: show;
    animation-duration: 0.5s
}

.insta-modal-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    border: 1px solid #888;
    width: 90%;
    max-width: 440px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    line-height: 1.6em;
    padding: 30px;
}

@keyframes show {
    0% {
        display: none;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}

.insta-modal-header {
    color: white;
}

.insta-modal-body {
    padding: 12px;
}

.insta-modal-footer {
    position: relative;
    background-color: white;
    margin: auto;
    padding: 12px;
}

.close,
.close1 {
    color: black;
    float: right;
    font-size: 40px;
}

.close:hover,
.close:focus,
.close1:hover,
.close1:focus {
    color: #aaa;
    cursor: pointer;
}

.insta-modal-content img {
    width: 100%;
}

.insta-modal-title,
.insta-share-attention,
.insta-share-description {
    text-align: center;
}

.insta-modal-title,
.insta-share-attention,
.step-number {
    color: #f2728d;
}

.insta-share-attention,
.insta-share-description {
    margin-bottom: 15px;
}

.insta-modal-title {
    margin-bottom: 1%;
}

.insta-moda-title-border {
    width: 300px;
    margin: 0 auto;
}

.insta-modal-title-icon {
    width: 40px;
    margin: 1% auto;
}

.insta-modal-title-icon {
    width: px;
}

.insta-modal-first-block {
    background: #fff5e6;
    padding: 30px 0;
}

.insta-modal-second-block,
.insta-modal-third-block,
.insta-modal-fourth-block,
.insta-modal-fifth-block {
    background: #fff2f5;
    padding: 50px 0 50px 0;
    margin-top: -10px;
}

.modal-border-vertical {
    width: 5px;
    margin: -25px auto -90px auto;
}

.insta-modal-first-block-inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 95%;
    margin: 0 auto;
}

.insta-modal-first-block-inner-left,
.insta-modal-first-block-inner-right {
    width: 35%;
    margin: 0 auto;
    text-align: center;
}

.insta-modal-circle-icon {
    color: red;
    font-size: 24px;
}

.insta-modal-x-icon {
    color: blue;
    font-size: 24px;
}

.insta-modal-first-block-bottom-text {
    width: 95%;
    margin: 20px auto 0 auto;
    color: #6b6b6b;
}

.step-number {
    font-size: 28px;
    margin-top: 40px;
    font-weight: bold;
}

.insta-modal-second-block-description,
.insta-modal-third-block-description,
.insta-modal-fourth-block-description {
    text-align: center;
    width: 90%;
    margin: 20px auto 30px auto;
}

.insta-modal-second-block-img {
    width: 90%;
    margin: 10px auto 0 auto;
}

.insta-modal-hashtag-box {
    display: block;
    background: white;
    padding: 20px 30px;
    width: 90%;
    margin: 5% auto;
    box-sizing: border-box;
}

.insta-rink-button {
    width: 90%;
    margin: 5% auto;
    transition: 0.2s;
}

.copy-button {
    width: 90%;
    margin: 0 auto;
    background: #ffba47;
    text-align: center;
    padding: 20px 0;
    color: white;
    font-weight: bold;
    box-shadow: 0 3px 1px #ffa213;
    border-radius: 5px;
    transition: 0.2s;
    cursor: pointer;
}

.insta-rink-button:hover,
.copy-button:hover {
    opacity: 0.8;
}

@media (max-width:768px) {
    .insta-modal-content {
        padding: 10px 10px 50px 10px;
        box-sizing: border-box;
    }
}


/* シェアボタン */

.campaign-social-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5% auto 4% auto;
    gap: 5%;
    width: 95%;
    max-width: 600px;
    position: relative;
}

.campaign-social-button-heading {
    line-height: 1em;
    height: 100%;
    width: 40%;
    text-align: right;
}


/* 矢印　横向き */

.campaign-social-button-arrow-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5%;
}

.campaign-social-button-arrow {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #F2728D;
    border-right: 3px solid #F2728D;
    transform: rotate(45deg);
    margin: 0 auto;
}

@media (max-width:768px) {
    .campaign-social-button-arrow {
        width: 5px;
        height: 5px;
    }
}

.share-button-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 55%;
}

.share-button-box a {
    transition: 0.2s;
}

.instagram-share-button {
    cursor: pointer;
    transition: 0.2s;
    margin-right: 4px;
}

.share-button-box a:hover,
.instagram-share-button:hover {
    opacity: 0.7;
}

.campaign-attention {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 5%;
}

.campaign-attention p {
    margin: 0 auto;
    color: rgba(51, 51, 51, 0.5);
}

@media (max-width:768px) {
    .campaign-attention {
        width: 100%;
    }
}


/* 無料体験 */


/* 導入の流れ */

.introduction-flow {
    margin: 10% calc(50% - 50vw);
    width: 100vw;
    background-image: url('../img/introduction-flow-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10% 0;
}

.introduction-flow .section-title {
    color: white;
    margin: -2% auto 5% auto;
}

.introduction-flow-box-container {
    width: 100%;
    max-width: 1080px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.introduction-flow-box {
    display: block;
    width: 20%;
    height: 160px;
    background: white;
    padding: 0.5% 0.5%;
    box-sizing: border-box;
}

.flow-arrow-box {
    display: flex;
    width: 50px;
    text-align: center;
    margin: 0 0.25% 0 auto;
}

.flow-arrow1,
.flow-arrow2 {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 4px solid white;
    border-right: 4px solid white;
    transform: rotate(45deg);
    margin: 0;
}

.flow-number {
    width: 100%;
    height: 25%;
    margin: 0 auto;
    background: #F2728D;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.flow-content {
    width: 100%;
    height: 75%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width:768px) {
    .flow-content {
        width: 100%;
        height: 75%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .flow-arrow-box {
        display: block;
        width: 100%;
        margin: 5% auto;
    }
    .flow-arrow1,
    .flow-arrow2 {
        transform: rotate(135deg);
        margin: 0 auto;
    }
    .introduction-flow-box {
        width: 95%;
        height: 135px;
    }
}


/* カスタマイズセクション */

section.customize {
    background: white;
    padding: 2%;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    box-sizing: border-box;
}

section.customize p {
    font-weight: bold;
    width: 650px;
    margin: 0 auto;
    line-height: 1.6em;
}

section.customize p .develop-cost {
    font-size: 135%;
    text-align: center;
    display: block;
}

@media (max-width:768px) {
    section.customize p {
        width: 90%;
    }
}


/* 記事呼び出しセクション */

.pink-wrapper {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    background: #FFF9FA;
    padding: 10% 0;
}


/* お役立ち情報 */

.helpcontent-post-item-box {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 2%;
}

.helpcontent-post-item {
    display: block;
    width: 340px;
    background: white;
    box-shadow: rgba(242, 114, 141, 0.400) 0 0 10px;
    transition: .3s;
}

.helpcontent-post-item:hover {
    box-shadow: rgba(242, 114, 141, 0.400) 0 0 15px 5px;
}

.helpcontent-post-thumbnail {
    width: 100%;
}

.helpcontent-post-thumbnail img {
    width: 100%;
    height: auto;
}

.helpcontent-post-title {
    width: 90%;
    margin: 5% auto 10% auto;
    word-wrap: break-word;
    font-weight: bold;
}

.helpcontent-post-title p {
    width: 100%;
}

@media (max-width:768px) {
    .column-description {
        text-align: center;
    }
    .helpcontent-post-item-box {
        gap: 20px 3%;
    }
}


/* お知らせ */

.information-notification {
    margin-top: 10%;
}

.information-notification .section-title {
    margin-top: 10%;
}

.notification-post-item-box .notification-post-item {
    display: block;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1080px;
    align-items: center;
/*     gap: 0 5%; */
	justify-content: space-between;
    padding: 1% 3%;
    background: white;
    margin: 20px auto 0 auto;
    box-sizing: border-box;
    box-shadow: rgba(242, 114, 141, 0.400) 0 0 8px;
    transition: .3s;
}

.notification-post-item-box {
    margin-top: 50px;
}

.notification-post-item-box .notification-post-item:hover {
    box-shadow: rgba(242, 114, 141, 0.400) 0 0 12px 2px;
}

.notification-post-date {}

.notification-post-date p{
	white-space: nowrap;
}

.notification-post-tag {
    width: 160px;
    text-align: center;
    border: #F2728D 1px solid;
    color: #F2728D;
    padding: 10px 0;
}

.notification-post-tag p {
    margin: 0;
}

.notification-post-title {
    font-size: 18px;
	width: 70%;
    font-weight: bold;
}

@media (max-width:768px) {
    .notification-post-item-box .notification-post-item {
        width: 95%;
        padding: 5% 3%;
    }
    .notification-post-tag {
        width: 160px;
        text-align: center;
        border: #F2728D 1px solid;
        color: #F2728D;
        padding: 10px 0;
    }
    .notification-post-title {
        margin-top: 5%;
    }
    .information-notification {
        margin-top: 10%;
    }
    .information-notification .section-title {
        margin-top: 25%;
    }
    .pink-wrapper {
        padding: 25% 0;
    }
	.notification-post-item-box .notification-post-item {
    flex-wrap: wrap;
}
}

.noarticle {
    text-align: center;
    width: 100%;
}


/* フッター */

footer {
    width: 95%;
    max-width: 1080px;
    margin: 0 auto;
}


/* リピッテ シリーズ */

.series {
    padding: 7.5% 0;
    background-color: none;
}

.ripitte-series-box {
    display: flex;
    justify-content: center;
    gap: 20px 5%;
    margin-top: 5%;
    flex-wrap: wrap;
}

.ripitte-series {
    display: block;
    width: 95%;
    max-width: 320px;
    transition: 0.2s;
}

.ripitte-series:hover {
    opacity: 0.7;
}

.ripitte-series img {
    width: 100%;
}


/* 無料体験 */

.free-trial {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    background-image: url('../img/free-trial-bg.webp');
    background-size: cover;
    padding-top: 5%;
}

.free-trial-content {
    display: flex;
    justify-content: center;
    width: 95%;
    max-width: 1080px;
    margin: 0 auto;
    flex-wrap: wrap-reverse;
    overflow: hidden;
}

.free-trial-content-left {
    width: 45%;
    min-width: 400px;
}

.free-trial-content-left img {
    display: block;
    width: 50%;
    bottom: 0;
    margin: 0 auto;
}

.free-trial-content-right {
    width: 55%;
    padding: 5% 0;
}

.free-trial-content-right-text {
    font-weight: bold;
    font-size: 18px;
}

.line-friend-button-box {
    margin-top: 7.5%;
}

.line-friend-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 0 0;
    padding: 16px 32px;
    line-height: 1.6em;
    width: 200px;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    background-image: linear-gradient(to right, #06C755, #4CC764);
    box-shadow: rgb(0, 220, 66, 0.42) 0px 0px 20px;
}

.line-friend-button::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg);
}

.line-friend-button::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg) translate(125px, -125px);
}

.line-friend-button:hover {
    opacity: 0.9;
}


/* 
.line-friend-button::after {
    content: "";
    position: relative;
    border: 6px solid transparent;
    border-left: 8px solid white;
} */

.line-friend-button:hover {
    background-image: linear-gradient(to right, #06C755, #4CC764);
    opacity: 0.7;
}

@media (max-width:935px) {
    .free-trial-content-right {
        width: 95%;
        padding: 10% 0;
    }
    .free-trial-content-right-text {
        width: 65%;
        margin: 0 auto;
    }
    .line-friend-button {
        margin: auto;
    }
}

@media (max-width:600px) {
    .free-trial-content-right-text {
        width: 100%;
        margin: 0 auto;
    }
}


/* 会社情報 */

.company-info {
    margin-top: 0;
}

.company-info-content-bg {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    background: #F2728D;
    justify-content: center;
}

.company-info-content {
    display: flex;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    justify-content: center;
    padding: 5% 0;
    gap: 3%;
    color: white;
    flex-wrap: wrap;
}

.company-info-content-left {
    width: 95%;
    max-width: 400px;
    text-align: left;
}

.company-info-content-right {
    width: 95%;
    max-width: 400px;
    text-align: left;
}
.company-info-content-right h3{
	font-size: 18px;
	margin: 0;
	color: #F2728D;
}
.company-info-content-right div{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 8px;
	padding: 4px 0;
}
.company-info-content-right img{
	width: 30%;
	margin-top: 20px;
}
.company-info-content-left-title {
    text-align: center;
    font-size: 24px;
}

.company-info-content-left-content-box {
    display: flex;
    margin-top: 7.5%;
    gap: 3%;
    align-items: center;
    color: white;
}

.company-info-content-left-content-box img {
    display: block;
}

@media (max-width:935px) {
    .company-info-content-left {
        margin: 10% auto;
    }
    .company-info-content-right {
        margin: 0 auto;
        margin-bottom: 12%;
    }
}

@media (max-width:768px) {
    .company-info-content-right img {
        width: 50%;
        display: block;
        margin: 20px auto 0;
    }
}


/* footer contact ボタン */

.footer-contact-button-box {}

.footer-contact-link-text {
    transition: 0.3s;
}

.footer-contact-link-text:hover {
    text-decoration: underline;
}

.footer-contact-button {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 16px 32px;
    line-height: 1.6em;
    width: 200px;
    color: #F2728D;
    font-size: 16px;
    border-radius: 10px;
    background-color: white;
    box-shadow: rgba(51, 51, 51, 0.3) 0 0 10px;
    transition: 0.3s;
}

.footer-contact-button:hover {
    box-shadow: rgba(51, 51, 51, 0.2) 0 0 20px 7.5px;
}

.company-info-content-right-content-box {
    margin-top: 5%;
}

.footer-company-name {
    font-size: 24px;
    font-weight: bold;
}

.customer-harassment {
    text-decoration: underline solid white;
    -webkit-text-decoration: underline solid white;
}


/* コピーライト */

.copy-write-wrapper {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    background-color: white;
}

.copy-write {
    display: flex;
    height: auto;
    bottom: 0;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0;
    max-width: 1080px;
    margin: 0 auto;
}

.copy-write-reference-box {
    display: flex;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
}

.copy-write-reference {
    display: flex;
    align-items: center;
    border-right: #333 1px solid;
    text-align: center;
    padding: 0 12px;
}

.copy-write-reference a {
    display: block;
    text-decoration: underline;
    font-size: 13px;
}

.copy-write-reference a:hover {
    opacity: 0.7;
}

.copy-write-text {
    display: flex;
    height: 75%;
    align-items: center;
}

.copy-write-text p {
    display: block;
    padding-left: 16px;
}

@media (max-width:768px) {
    .copy-write {
        height: auto;
    }
    .copy-write-reference-box {
        width: 100%;
        justify-content: center;
        margin-top: 10%;
        gap: 25px;
    }
    .copy-write-reference:last-child {
        border-right: none;
    }
    .copy-write-reference {
        border: 0;
        padding: 0;
    }
    .copy-write-text {
        display: block;
        text-align: center;
        margin: auto;
        margin-top: 10%;
    }
}