/*
Theme Name: e-mix
Description: e-mixLPのテーマです。
Version: 1.0
Author: N/A
*/

/* BASE */

body {
    font-family: "Helvetica Neue",
      Arial,
      "Hiragino Kaku Gothic ProN",
      "Hiragino Sans",
      Meiryo,
      sans-serif;
  }

button {
    border: 0;
}

p,h1,label {
    margin: 0;
}

img {
    height: auto;
}

/* UTILITY */

/* COLOR */

.bg-offwhite {
    background-color: #ffffee;
}

.bg-lightcyan {
    background-color: lightcyan;
}

.bg-light-gray {
    background-color: #efefef;
}

.bg-gray {
    background-color: #808080;
}

.bg-dark-gray {
    background-color: #333;
}

.bg-transparent {
    background-color: transparent;
}

.bg-mesh {
    background-image: url(img/sp/bg@2x-min.png);
}

/* FONT */
.font-white {
    color: #fff !important;
}

.font-red {
    color: red !important;
}

.font-black {
    color: black !important;
}

.font-bold {
    font-weight: bold !important;
}

.font-m {
    font-size: 100%;
}

.font-vertical {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

/* TEXT */
.text-center {
    text-align: center !important;
}

.lh-1 {
    line-height: 1 !important;
}

/* UTILITY */

.d-flex {
    display: flex !important;
}

.flex-column {
    flex-flow: column;
}
.flex-space-around {
    justify-content: space-around;
}

.item-center {
    align-items: center;
}

.m-auto {
    margin: 0 auto;
}

.mt-16 {
    margin-top: 16px !important;
}

.mb-48 {
    margin-bottom: 48px !important;
}

.mr-16 {
    margin-right: 16px !important;
}

.mx-16 {
    margin: 0 16px;
}

.my-16 {
    margin: 16px 0;
}

.m-8 {
    margin: 8px;
}

.pt-16 {
    padding-top: 16px !important;
}

.pb-16 {
    padding-bottom: 16px !important;
}

.px-16 {
    padding: 0 16px;
}

.p-8 {
    padding: 8px;
}

.p-16 {
    padding: 16px;
}

.w-16 {
    width: 16% !important;
}

.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

.w-100 {
    width: 100% !important;
}


.border-gray {
    border: 1px solid lightgray;
}

.border-bottom-gary {
    border-bottom: 1px solid lightgray;
}

.title {
    background: #193772;
    border-radius: 16px;
    color: #fff;
    font-size: 8vw;
    height: 56px;
    line-height: 56px;
    text-align: center;
}

.image-pc {
    max-width: 446px;
    max-height: 258px;
}

.entry-button {
    border-radius: 20px;
    height: 40px;
    box-shadow: 0 2px 2px #ccc;
    max-width: 300px;
}

@media screen and (min-width: 991px) {
    .pc {
        display: block;
        max-width: 1250px;
        margin: 0 auto;
    }

    .sp {
        display: none;
    }

    .monthly {
        font-size: min(6vw,76px);
    }
    
    .money {
        font-size: min(15vw,200px);
        letter-spacing: -5px;
    }
    
    .taxInclude {
        font-size: min(3vw,40px);
    }
    
    .yen {
        font-size: min(8vw,120px);
    }
}

@media screen and (max-width: 990px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .monthly {
        font-size: 11vw;
    }
    
    .money {
        font-size: 29vw;
        letter-spacing: -5px;
    }
    
    .taxInclude {
        font-size: 4vw;
    }
    
    .yen {
        font-size: 14vw;
    }
}