/* Fonts */
@font-face {
    font-family: 'NotoSansJPLight';
    src: url(../fonts/NotoSansJP-Light.ttf);
}

@font-face {
    font-family: 'NotoSansJPRegular';
    src: url(../fonts/NotoSansJP-Regular.ttf);
}

@font-face {
    font-family: 'NotoSansJPBold';
    src: url(../fonts/NotoSansJP-Bold.ttf);
}

@font-face {
    font-family: 'InterExtraLight';
    src: url(../fonts/Inter-ExtraLight.ttf);
}

@font-face {
    font-family: 'InterLight';
    src: url(../fonts/Inter-Light.ttf);
}

@font-face {
    font-family: 'InterRegular';
    src: url(../fonts/Inter-Regular.ttf);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #303030;
    font-family: 'NotoSansJPRegular';
    background: url(../image/background.png) no-repeat center;
    background-size: cover;
    background-position-y: -40px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

a {
    text-decoration: none;
}

.container {
    max-width: 980px;
    width: 90%;
    margin: auto;
}

/* Button */
button {
    border: none;
    cursor: pointer;
}

.btn-white {
    background: white;
}

.btn-brown {
    background: #A08E61;
}

.border-black {
    border: 1px solid #303030;
}

.br-5 {
    border-radius: 5px;
}
/* Button */

/* Carousel */
/* ==== Slick Slider Css Ruls === */
.slick-slider{position:relative;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}
.slick-list:focus{outline:none}.slick-list.dragging{cursor:hand}
.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
.slick-track{position:relative;top:0;left:0;display:block}
.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}
.slick-loading .slick-track{visibility:hidden}
.slick-slide{display:none;float:left /* If RTL Make This Right */ ;height:100%;min-height:1px}
.slick-slide.dragging img{pointer-events:none}
.slick-initialized .slick-slide{display:block;}
.slick-loading .slick-slide{visibility:hidden}
.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}

.carousel {
    position: relative;
}

.scroll-down {
  position: absolute;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  z-index: 10;
}

.scroll-down a {
  display: inline-block;
  background-color: #5fb759;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

ul.slick-dots {
  display: none! important;
}

ul.slick-dots {
  position: absolute;
  align-items: center;
  list-style: none;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

ul.slick-dots button {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  text-indent: -5000px;
  vertical-align: middle;
  padding: 0px;
  margin: 0px 7px;
  border: none;
  outline: none;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

ul.slick-dots .slick-active button {
  width: 12px;
  height: 12px;
}

.PrevArrow {
    position: absolute;
    content: '';
    background: url(../image/prev.png) no-repeat center;
    background-size: contain;
    width: 28px;
    height: 95px;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
}

.NextArrow {
    position: absolute;
    content: '';
    background: url(../image/next.png) no-repeat center;
    background-size: contain;
    width: 28px;
    height: 95px;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
}

/* Carousel */

/* Header */
/* Footer */
header, footer {
    background: black;
}

header .container,
footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
}

header .logo {
    width: 200px;
    height: 80px;
}

footer .logo {
    width: 200px;
    height: 60px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .menu-icon {
    display: none;
}

header ul,
footer ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

header ul {
    gap: 65px;
}

footer ul {
    gap: 40px;
}

header ul li {
    position: relative;
}

header ul li::before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
}

header ul li.home::before{
    background: url(../image/home.png) no-repeat center;
    background-size: cover;
}

header ul li.search::before{
    background: url(../image/search.png) no-repeat center;
    background-size: cover;
}

header ul li.howto::before{
    background: url(../image/howto.png) no-repeat center;
    background-size: cover;
}

header ul li.price::before{
    background: url(../image/price.png) no-repeat center;
    background-size: cover;
}

header ul li.help::before{
    background: url(../image/help.png) no-repeat center;
    background-size: cover;
}

header ul li a,
footer ul li a {
    font-family: 'NotoSansJPBold';
    font-size: 15px;
}

header ul li a {
    color: rgba(255, 255, 255, 0.5);
}

footer ul li a {
    color: white;
}

header ul li a:hover,
footer ul li a:hover {
    color: white;
}
/* Header */

/* Sidebar */
.sidebar {
    display: none;
}
/* Sidebar */

section {
    padding: 70px 0px;
    background: rgba(255, 255, 255, 0.9);
}

/* Home */
#home {
    background: rgba(0, 0, 0, 0.8);
}

#home .container {
    position: relative;
}

#home .container::after {
    position: absolute;
    content: '';
    width: 17px;
    height: 100px;
    background: url(../image/scroll.png) no-repeat center;
    background-size: contain;
    right: -10px;
    top: 310px;
    /* transform: translateY(-50%); */
}

#home h1 {
    color: white;
    font-family: 'InterLight';
    font-size: 130px;
    margin: 0;
    line-height: 150px;
    letter-spacing: -10px;
}

#home .ads {
    margin-top: 56px;
}

#home .ads h2 {
    color: #A08E61;
    font-size: 36px;
    font-family: 'NotoSansJPBold';
    margin: 0;
}

#home .ads div {
    margin-top: 25px;
    color: white;
    font-size: 22px;
    font-family: 'NotoSansJPBold';
    line-height: 48px;
    word-break: break-all;
}
/* Home */

/* Search */
.title {
    position: relative;
    max-width: calc(50% + 490px);
    font-family: 'InterLight';
    font-size: 180px;
    line-height: 0.8;
    letter-spacing: -15px;
    opacity: 0.1;
    margin-top: 60px;
}

.title::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: #303030;
    bottom: 3px;
    left: 0;
}

.subtitle h3 {
    font-size: 36px;
    font-family: 'NotoSansJPBold';
    color: #A08E61;
    margin-top: -10px;
}

.subtitle p {
    font-size: 24px;
}

.search-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 55px;
}

.search-input input,
.search-input button {
    height: 60px;
}

.search-input div {
    max-width: 390px;
    width: 100%;
}

.search-input input {
    width: 100%;
    font-size: 18px;
    font-family: 'NotoSansJPRegular';
    border: 1px solid #303030;
    padding: 0 15px;
    outline: none;
}

.search-input .category {
    position: relative;
}

.search-input .category::after {
    position: absolute;
    content: '';
    display: block;
    width: 30px;
    height: 12px;
    background: url(../image/down.png) no-repeat center;
    background-size: contain;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.search-input .category input {
    padding: 0px 50px 0px 15px;
}

.search-input button {
    width: 140px;
    font-family: 'NotoSansJPBold';
    font-size: 18px;
}

.carousel-wrapper {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.carousel {
    margin: auto;
    margin-top: 107px;
}

.carousel-item {
    background: #303030;
    text-align: center;
    border-bottom-right-radius: 60px;
    padding: 40px 20px;
    margin: 0px 10px;
}

.carousel-item .follow {
    font-size: 28px;
    font-family: 'NotoSansJpBold';
    color: #A08E61;
}

.carousel-item .name {
    font-size: 20px;
    font-family: 'NotoSansJpBold';
    color: white;
    margin-top: 6px;
}

.carousel-item .carousel-img {
    display: inline-block;
    width: 200px;
    height: 240px;
    margin-top: 30px;
}

.carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item .desc {
    margin-top: 20px;
    color: white;
    text-align: left;
    padding: 0px 21px;
    line-height: 28px;
}

.carousel-item button {
    max-width: 280px;
    width: 100%;
    height: 45px;
    color: white;
    margin-top: 30px;
}

#search .carousel-item {
    min-height: 705px;
}

.form-btn {
    max-width: 600px;
    width: 90%;
    margin: auto;
    margin-top: 60px;
}

.form-btn button {
    width: 100%;
    height: 65px;
    color: white;
    font-size: 20px;
    font-family: 'NotoSansJPBold';
}
/* Search */

/* Howto */
#howto {
    padding: 0px 10px;
    overflow-y: hidden;
}

#howto::-webkit-scrollbar {
    display: none;
}

.slide {
    display: flex; 
    width: 120%;
    margin-top: 8px;
}

.slide button {
    display: none! important;
}

.slide-item {
    position: relative;
    display: inline-block;
    height: 600px;
    padding: 0px;
    background: #303030;
    border-bottom-right-radius: 60px;
    margin-right: 100px;
}

.slide-item::after {
    position: absolute;
    content: '';
    width: 1px;
    height: calc(100% - 50px);
    background: white;
    top: 0;
    left: 45px;
}

.slide-item .label {
    display: flex;
    justify-content: space-between;

}

.slide-item .order {
    color: white;
    margin-left: 20px;
    display: flex;
    align-items: flex-start;
}

.slide-item .order span:first-child {
    position: relative;
    writing-mode: tb-rl;
    transform: rotate(-180deg);
    font-size: 26px;
    font-family: 'InterExtraLight';
    margin-top: 30px;
}

.slide-item .order span:last-child {
    font-size: 125px;
    font-family: 'InterLight';
}

.slide-item .slide-img {
    width: calc(100% - 220px);
    margin-top: 0px;
}

.slide-item .slide-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-bottom-right-radius: 40px;
    opacity: 0.7;
}

.slide-item .desc {
    color: white;
    font-size: 38px;
    font-family: 'InterRegular';
    margin-left: 60px;
    margin-top: 20px;
}

.slide-item .desc span {
    font-size: 22px;
    font-family: 'NotoSansJPRegular';
}
/* Howto */

/* Question */
#question {
    padding: 35px 0px;
}

#question .subtitle {
    margin-bottom: 60px;
}

#question .qa {
    border: 1px solid #303030;
    background: white;
    padding: 27px 30px;
    margin-top: 25px;
}

.qa>div {
    display: flex;
    align-items: center;
}

.qa .question {
    position: relative;
    cursor: pointer;
}

.qa .question::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 2px;
    background: rgba(48, 48, 48, 0.5);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s;
}

.qa.active .question::before {
    opacity: 0;
}

.qa .question::after {
    position: absolute;
    content: '';
    width: 40px;
    height: 2px;
    background: rgba(48, 48, 48, 0.5);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transform: rotate(90deg);
    transition: 0.2s;
}

.qa.active .question::after {
    transform: rotate(0deg);
}

.qa .question .order {
    display: flex;
    align-items: flex-start;
}

.qa .question .order {
    position: relative;
    color: rgba(48, 48, 48, 0.5);
    font-size: 80px;
    font-family: 'ThinRegular';
    margin-left: 25px;
}

.qa .question .order::before {
    position: absolute;
    content: 'Q/';
    font-family: 'ThinExtraLight';
    font-size: 30px;
    top: 10px;
    left: -30px;
}

.qa .question .content {
    font-family: 'NotoSansJPBold';
    font-size: 24px;
    margin-left: 30px;
    padding-right: 150px;
}

.qa .answer {
    position: relative;
    margin-top: 43px;
    display: none;
    transition: all 0.4s;
}

.qa.active .answer {
    display: flex;
}

.qa .answer::before {
    position: absolute;
    content: '';
    background: rgba(48, 48, 48, 0.5);
    width: 100%;
    height: 2px;
    top: -25px;
}

.qa .answer .order {
    font-family: 'ThinRegular';
    font-size: 60px;
    color: rgba(48, 48, 48, 0.5);
    margin-left: 60px;
}

.qa .answer .content {
    font-family: 'NotoSansJPBold';
    font-size: 20px;
    margin-left: 30px;
    padding-right: 150px;
}
/* Question */

/* RatePlan */
#rateplan {
    padding: 63px 0px;
}

#rateplan .plan-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.plan-group .plan {
    position: relative;
    max-width: 450px;
    width: 45%;
    background: #303030;
    color: white;
    border-bottom-right-radius: 50px;
    padding: 45px 40px;
    min-height: 536px;
    text-align: center;
}

.plan-group .plan:first-child::before {
    display: none;
}

.plan-group .plan:first-child::after {
    position: absolute;
    content: '';
    width: 28px;
    height: 95px;
    background: url(../image/next.png);
    background-size: contain;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.plan-group .plan button {
    max-width: 370px;
    width: 100%;
    height: 90px;
    font-size: 22px;
    font-family: 'NotoSansJPBold';
    color: white;
}

.plan-group .plan .sns {
    font-size: 30px;
    font-family: 'NotoSansJPBold';
    margin-top: 40px;
    text-align: center;
}

.plan-group .plan .price {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.plan .price div {
    font-family: 'NotoSansJPBold';

}

.plan .price div:first-child {
    font-size: 30px;
}

.plan .price div:last-child {
    font-size: 54px;
    color: #A08E61;
}

.plan .price div:last-child span {
    font-size: 38px;
}

.plan .desc {
    font-size: 18px;
    font-family: 'NotoSansJPRegular';
    margin-top: 15px;
    text-align: left;
}

.plan .desc span {
    font-size: 22px;
    font-family: 'NotoSansJPBold';
    color: #A08E61;
    text-decoration: underline;
}

.plan .rate-fashion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.plan .rate-fashion .desc {
    width: 190px;
    margin-top: 0;
    line-height: 1.5;
}

.plan .rate-fashion .fashion {
    position: relative;
    font-family: 'NotoSansJPBold';
    font-size: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    z-index: 0;
}

.plan .rate-fashion .fashion::after {
    position: absolute;
    content: '';
    width: 190px;
    height: 190px;
    background: #C60044;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.plan .rate-fashion .fashion span {
    font-size: 47px;
}
/* RatePlan */

/* SuccessStory */
#successstory {
    padding: 7px 0px;
}

#successstory .carousel-item {
    min-height: 773px;
}
/* SuccessStory */

/* Contact */
#contact {
    padding: 51px 0px;
}

#contact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Contact */

/* Footer */
footer ul {
    flex-wrap: wrap;
}
/* Footer */

/* Copyright */
.copyright {
    background: white;
    font-family: 'NotoSansJPLight';
    font-size: 12px;
    text-align: center;
    padding: 20px 0px;
}
/* Copyright */



/* Responsive */
@media screen and (max-width: 1440px) {
    /* Search */
    .PrevArrow {
        left: -20px;
    }

    .NextArrow {
        right: -20px;
    }
    /* Search */
}

@media screen and (max-width: 1024px) {
    /* Header */
    header ul {
        display: none;
    }

    header .menu-icon {
        display: flex;
        width: 40px;
        height: 30px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        cursor: pointer;
    }

    header .menu-icon span {
        width: 100%;
        height: 3px;
        background: white;
        margin-bottom: 8px;
    }

    header .menu-icon span:last-child {
        margin: 0;
    }
    /* Header */

    /* Sidebar */
    .sidebar {
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 1);
        max-width: 500px;
        width: 100%;
        height: 100vh;
        padding: 20px;
        z-index: 9999;
        right: -110%;
        top: 0;
        transition: 0.3s;
    }

    .sidebar .close-btn {
        position: absolute;
        left: 0;
        top: 100px;
        z-index: 1;
        transform: translate(-50%, -100%);
        width: 55px;
        height: 55px;
        background: white;
        border-radius: 50%;
        cursor: pointer;
    }
    
    .sidebar .close-btn::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(135deg);
        width: 30px;
        height: 2px;
        background-color: #303030;
    }
    
    .sidebar .close-btn::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        width: 30px;
        height: 2px;
        background-color: #303030;
    }

    .sidebar ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .sidebar ul li {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .sidebar ul li img {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    .sidebar ul li a {
        font-family: 'NotoSansJPBold';
        font-size: 20px;
        color: rgba(255, 255, 255, 1);
    }

    .sidebar ul li a:hover {
        color: rgba(255, 255, 255, 0.5);
    }
    /* Sidebar */

    /* Home */
    #home h1 {
        font-size: 100px;
        line-height: 130px;
    }

    #home .ads h2 {
        font-size: 30px;
    }

    #home .ads div {
        font-size: 20px;
        line-height: 40px;
    }
    /* Home */

    /* Search */
    .title {
        font-size: 140px;
    }

    .search-input div {
        max-width: 350px;
    }

    #search .carousel-item {
        min-height: 645px;
    }
    /* Search */

    /* Howto */
    .slide-item {
        height: 500px;
    }

    .slide-item .order span:last-child {
        font-size: 80px;
    }

    .slide-item .slide-img {
        width: calc(100% - 150px);
    }

    .slide-item .slide-img img {
        height: 350px;
    }
    /* Howto */

    /* RatePlan */
    .plan-group .plan {
        padding: 40px 20px;
        min-height: 547px;
    }

    .plan-group .plan button {
        font-size: 20px;
    }

    .plan-group .plan .sns {
        font-size: 25px;
        margin-top: 30px;
    }

    .plan .price div:first-child {
        font-size: 20px;
    }

    .plan .price div:last-child {
        font-size: 40px;
    }

    .plan .price div:last-child span {
        font-size: 20px;
    }

    .plan .rate-fashion .fashion {
        font-size: 20px;
        width: 130px;
    }

    .plan .rate-fashion .fashion span {
        font-size: 35px;
    }

    .plan .rate-fashion .fashion::after {
        width: 130px;
        height: 130px;
    }
    /* RatePlan */

    /* SuccessStory */
    #successstory .carousel-item {
        min-height: 793px;
    }
    /* SuccessStory */
}

@media screen and (max-width: 768px) {
    section {
        padding: 30px 0px;
    }

    /* Home */
    #home .container::after {
        right: -20px;
    }

    #home h1 {
        font-size: 60px;
        line-height: 80px;
        letter-spacing: 0px;
    }
    /* Home */

    /* Search */
    .title {
        font-size: 100px;
        letter-spacing: -5px;
    }

    .subtitle h3 {
        font-size: 30px;
    }

    .subtitle p {
        font-size: 20px;
    }

    .search-input {
        display: block;
        text-align: center;
    }

    .search-input input, .search-input button {
        height: 55px;
    }

    .search-input div {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .carousel {
        margin-top: 40px;
    }

    #search .carousel-item {
        min-height: 645px;
    }

    .carousel-item .follow {
        font-size: 20px;
    }

    .carousel-item .name {
        font-size: 16px;
    }

    .carousel-item .desc {
        font-size: 14px;
    }

    .form-btn {
        margin-top: 30px;
    }
    /* Search */

    /* Howto */
    .slide {
        width: 100%;
    }

    .slide-item {
        margin: 0px 10px;
    }

    .slide-item::after {
        left: 40px;
    }

    .slide-item .order span:first-child {
        font-size: 16px;
        margin-top: 15px;
    }

    .slide-item .order span:last-child {
        font-size: 60px;
    }

    .slide-item .slide-img {
        width: calc(100% - 120px);
    }

    .slide-item .slide-img img {
        height: 300px;
    }
    /* Howto */

    /* Question */
    #question .qa {
        padding: 15px;
        margin-top: 15px;
    }

    .qa .question::before,
    .qa .question::after {
        width: 30px;
    }

    .qa .question .order {
        font-size: 60px;
    }

    .qa .question .order::before {
        font-size: 20px;
        left: -20px;
    }

    .qa .question .content {
        font-size: 20px;
        padding-right: 100px;
    }

    .qa .answer .order {
        font-size: 40px;
    }

    .qa .answer .content {
        font-size: 16px;
        padding-right: 100px;
    }
    /* Question */

    /* RatePlan */
    #rateplan {
        padding: 30px 0px;
    }

    #rateplan .plan-group {
        justify-content: center;
    }

    .plan-group .plan {
        width: 100%;
        margin-bottom: 50px;
    }

    .plan-group .plan:first-child::before {
        position: absolute;
        display: block;
        content: '';
        width: 95px;
        height: 28px;
        background: url(../image/down.png);
        background-size: contain;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .plan-group .plan:first-child::after {
        display: none;
    }

    #rateplan .form-btn {
        margin-top: 0px;
    }
    /* RatePlan */

    /* SuccessStory */
    #successstory .carousel-item {
        min-height: 700px;
    }
    /* SuccessStory */

    /* Contact */
    #contact {
        padding: 30px 0px;
    }
    /* Contact */
    
    /* Footer */
    footer ul {
        display: block;
        padding: 20px 0px;
    }

    footer ul li {
        margin-bottom: 10px;
    }
    /* Footer */
}

@media screen and (max-width: 450px) {
    section {
        padding: 20px 0px;
    }

    /* Home */
    #home .container::after {
        right: -15px;
    }

    #home h1 {
        font-size: 42px;
        line-height: 60px;
    }

    #home .ads {
        padding: 0px 5px;
    }

    #home .ads h2 {
        font-size: 26px;
    }

    #home .ads div {
        font-size: 16px;
        line-height: 35px;
    }
    /* Home */

    /* Sidebar */
    .sidebar .close-btn {
        left: 90%;
        background: black;
    }

    .sidebar .close-btn::before,
    .sidebar .close-btn::after {
        background: white;
    }
    /* Sidebar */

    /* Search */
    .title {
        font-size: 60px;
        margin-top: 20px;
    }

    .subtitle h3 {
        font-size: 22px;
        margin-top: -5px;
    }

    .subtitle p {
        font-size: 16px;
    }

    .search-input input, .search-input button {
        height: 40px;
    }

    .search-input input, .search-input button {
        font-size: 14px;
    }

    #search .carousel-item {
        min-height: 669px;
        margin: 0px 5px;
    }

    .PrevArrow {
        width: 20px;
        height: 70px;
        left: -15px;
    }

    .NextArrow {
        width: 20px;
        height: 70px;
        right: -15px;
    }

    .form-btn button {
        font-size: 16px;
        height: 50px;
    }
    /* Search */

    /* Howto */
    .slide-item {
        height: 350px;
    }

    .slide-item::after {
        left: 35px;
    }

    .slide-item .slide-img {
        width: calc(100% - 90px);
    }

    .slide-item .slide-img img {
        height: 200px;
    }

    .slide-item .order span:first-child  {
        font-size: 14px;
        margin-top: 10px;
    }

    .slide-item .order span:last-child {
        font-size: 40px;
    }

    .slide-item .desc {
        font-size: 26px;
        margin-left: 42px;
    }

    .slide-item .desc span {
        font-size: 16px;
    }
    /* Howto */

    /* Question */
    #question .subtitle {
        margin-bottom: 30px;
    }
    #question .qa {
        padding: 10px;
    }

    .qa .question::before, .qa .question::after {
        width: 20px;
    }

    .qa .question .order {
        font-size: 30px;
    }

    .qa .question .order::before {
        font-size: 14px;
        top: 5px;
        left: -15px;
    }

    .qa .question .content {
        font-size: 16px;
        padding-right: 50px;
        margin-left: 15px;
    }

    .qa .answer .order {
        font-size: 24px;
        margin-left: 30px;
    }

    .qa .answer .content {
        font-size: 14px;
        margin-left: 25px;
        padding-right: 50px;
    }
    /* Question */

    /* RatePlan */
    #rateplan {
        padding: 10px 0px;
    }

    .plan-group .plan button {
        font-size: 18px;
    }

    .plan-group .plan .sns {
        font-size: 20px;
    }

    .plan .price div:first-child {
        font-size: 16px;
    }

    .plan .price div:last-child {
        font-size: 24px;
    }

    .plan .desc {
        font-size: 16px;
    }

    .plan .desc span {
        font-size: 20px;
    }

    .plan .rate-fashion .fashion {
        font-size: 16px;
        line-height: 28px;
    }

    .plan .rate-fashion .fashion span {
        font-size: 20px;
    }

    .plan .rate-fashion .fashion::after {
        width: 110px;
        height: 110px;
    }
    /* RatePlan */

    /* SuccessStory */
    #successstory .carousel-item {
        min-height: 740px;
    }
    /* SuccessStory */
}