@charset "UTF-8";

/* =========================================
  Reset style
========================================= */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* =========================================
  Base style
========================================= */

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', Verdana, Roboto, 'Droid Sans', '游ゴシック',
    YuGothic, 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #000031;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ========================================
 header style
======================================== */
.header {
  box-sizing: border-box;
  padding: 18px;
}

/* header fixed */
.header--fixed {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
}

.header__logo {
  position: relative;
  width: 90px;
  height: 16px;
  background-image: url('../img/header_logo_sp.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 16px;
  z-index: 0;
  margin-top: 5px;
}

.header__logo span {
  position: absolute;
  top: 0;
  left: -100vw;
}

@media screen and (min-width: 1024px) {
  .header--fixed {
    left: 0;
  }
  .header__logo {
    width: 160px;
    height: 26px;
    background-image: url('../img/header_logo_sp.svg');
    background-size: auto 26px;
  }
}


@media screen and (min-width: 1024px) {
  .header {
    height: 80px;
    padding: 27px;
    margin: 0 auto;
    text-align: center;
  }
  header {
    position: relative;
    width: 1000px;
    margin: 0 auto;
  }
} 
/* ========================================
 footer style
======================================== */

.footer-container {
  background-color: #fff;
  border-top: 0;
}

.footer__logo {
  display: none;
}

.footer__copy {
  padding: 12px 0 10px;
  text-align: center;
  border-top: 4px solid #f68699;
}

.footer__copy a {
  color: #f68699;
  text-decoration: none;
}

.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
}

.footer-navigation .footer-navigation__item {
  box-sizing: border-box;
  width: 50%;
  border-top: 1px solid #ffe8ee;
}
.footer-navigation__item + .footer-navigation__item {
  border-left: 1px solid #ffe8ee;
}

.footer-navigation__item a {
  display: block;
  padding: 15px 20px;
  font-size: 13px;
  color: #f68699;
  text-decoration: none;
}

@media screen and (min-width: 1024px) {
  .footer-container {
    padding: 24px 50px;
    background-color: #fff;
    border-top: 4px solid #f68699;
  }
  .footer {
    width: 844px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer__logo {
    display: block;
    flex-shrink: 0;
  }
  .footer__copy {
    display: none;
  }
  .footer-navigation {
    display: inline-flex;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
    font-size: 14px;
    list-style: none;
  }

  .footer-navigation .footer-navigation__item {
    flex-shrink: 0;
    width: auto;
    border-top: 0;
  }
  .footer-navigation__item + .footer-navigation__item {
    border-left: 0;
  }

  .footer-navigation__item a {
    display: block;
    padding: 15px 20px;
    font-size: 12px;
    color: #f68699;
    text-decoration: none;
  }
}

/* ========================================
 contents style
======================================== */

.lnln-container {
  background-color: #fff;
}

/* section */
.section {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px 40px;
}

.section-separator + .section {
  margin-top: -15px;
}

.section__inner {
  width: 100%;
  margin:  0 auto;
  max-width: 1000px;
}

.section__title {
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  text-align: center;
}
.section-price .section__title {
  width: 120.5px;
  margin-bottom: 20px;
}
/* .section-step .section__title {
  width: 206px;
} */
.section-user .section__title {
  width: 100%;
  max-width: 212px;
}

.section-question .section__title {
  width: 120.5px;
}

@media screen and (min-width: 1024px) {
  .section {
    padding: 80px 50px;
  }
  .section-question {
    padding: 70px 50px 60px;
  }
  .section-price {
    padding: 70px 50px 60px;
  }
  .section-price .section__title {
    width: 149px;
  }

  /* .section-step .section__title {
    width: auto;
  } */
  .section-user {
    padding: 80px 50px 65px;
  }
  .section-user .section__title {
    width: 255px;
    max-width: 100%;
    margin-bottom: 50px;
  }
  .section-user .store-button__container {
    padding-top: 50px;
  }
  .section-question .section__title {
    width: 143px;
    margin-bottom: 50px;
  }
  .section-question .store-button__container {
    padding-top: 40px;
  }
}

/* hero section */
.hero__visual {
  padding: 85px 15px 30px;
  background: linear-gradient(300deg, rgba(163, 235, 214, 0.10) 4.88%, rgba(133, 214, 206, 0.10) 21.99%, rgba(59, 158, 199, 0.10) 74.89%);
}
.hero__title {
  text-align: center;
}
.hero__footer {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .hero__visial-pc {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .hero__visial-pc h1 img{
    width: 700px;
  }
  .hero__visial-pc .hero__phone-img {
    width: 45%;
  }
  .hero__visual-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
}

/* button  */
.button {
  box-sizing: border-box;
  display: inline-block;
  width: 300px;
  padding: 12px 18px;
  margin: 35px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #f68699;
  border: none;
  border-radius: 100px;
}

/* card */
.card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}

.card__title {
  margin: 0 auto 30px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.card__title.card__title-01 {
  width: 100%;
  max-width: 225.5px;
}
.card__title.card__title-02 {
  width: 100%;
  max-width: 259px;
}
.card__title.card__title-03 {
  width: 100%;
  max-width: 267.5px;
}

.card-group + .card {
  margin-top: 20px;
}

.card + .card {
  margin-top: 20px;
}

.card__img {
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .card__title.card__title-01,
  .card__title.card__title-02,
  .card__title.card__title-03 {
    max-width: 100%;
  }
  .card-group {
    display: flex;
    margin-right: -15px;
    margin-left: -15px;
  }

  .card-group .card {
    width: 50%;
    margin-top: 0;
    margin-right: 15px;
    margin-left: 15px;
  }

  .card-group + .card {
    margin-top: 30px;
  }
  .card-group .card:nth-child(2) .card__title {
    margin-top: 11px;
  }
}

/* store-button */
.store-button__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 30px;
}
.store-button__header {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  color: #f68699;
  text-align: center;
}
.store-button__header span {
  display: inline-block;
}
.store-button__body-sp {
  text-align: center;
}
.store-button__body-sp .store-button__item .app-button {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #f68699;
  border: none;
  border-radius: 100px;
  transition: opacity .3s ease;
}
.store-button__body-sp .store-button__item .app-button:hover {
  opacity: .7;
}
.store-button__body-pc {
  display: none;
}
.store-button__footer {
  margin-top: 20px;
  font-size: 11px;
  line-height: 2;
  color: #9f9f9f;
  text-align: center;
}
.store-button__footer .price-text{
  color: #000031;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.store-button__footer .price-text .price-min {
  font-size: 12px;
}
.store-button__footer .star{
  width: 107px;
  height: 18px;
  margin-right: 7px;

}
.store-button__footer span {
  display: block;
}
.store-button {
  text-align: center;
}
.store-button__item .store-button__outline {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #f68699;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #f68699;
  border-radius: 100px;
  transition: opacity ease .3s;
}
.store-button__item .store-button__outline:hover {
  opacity: .7;
}
.store-button__item .store-button__outline .external{
  display: inline-block;
  margin-left: 5px;
}
.store-button__item .store-button__outline .external img{
  display: block;
}
.store-button__item .store-button__outline .back{
  display: inline-block;
  margin-right: 15px;
}
.store-button__item .store-button__outline .back img{
  display: block;
}

@media screen and (min-width: 1024px) {
  .store-button__container {
    padding-top: 50px;
  }
  .store-button__header span {
    display: inline;
  }
  .store-button__body-sp {
    display: none;
  }
  .store-button__body-pc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 585px;
    margin: 0 auto;
  }
  .store-button__body-pc .store-button__item {
    display: flex;
    align-items: center;
  }
  .app-button_img + .qr-code {
    margin-left: 10px;
  }
  .store-button__footer {
    margin-top: 60px;
  }
  .store-button__footer span {
    display: inline;
  }
  .store-button__footer span + span{
    padding-left: 2em;
  }
  /* .section-step .store-button__container {
    display: none;
  } */
  .section-app-desc  .store-button__container {
    padding-top: 40px;
  }
}

/*  section-app-desc */
.section-app-desc {
  text-align: center;
}
.section-app-desc .section__title {
  width: 300px;
}
.section-app-desc__body {
  margin-top: 40px;
}
.app-desc__body-header {
  max-width: 335px;
  margin: 0 auto 0;
  text-align: center;
}
.app-desc__body-img {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .section-app-desc {
  }
  .section-app-desc .section__title {
    width: 331px;
    margin-bottom: 30px;
  }
  .section-app-desc__body {
    margin-top: 60px;
  }
  .app-desc__body-header {
    width: auto;
    max-width: none;
  }
  .app-desc__body-img {
    margin-top: 50px;
  }
}

/* recommend-point */
/* .section-recommend-point {
}
.section-recommend-point .section__title {
  width: 209.5px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-recommend-point .img-list {
  width: 100%;
  max-width: 330px;
  margin: auto;
  text-align: center;
}

.section-recommend-point .img-list__item + .img-list__item {
  margin-top: 20px;
}
.section-recommend-point .store-button__container {
  padding-top: 35px;
}
@media screen and (min-width: 1024px) {
  .section-recommend-point {
  }
  .section-recommend-point .section__title {
    width: auto;
  }
  .section-recommend-point .img-list {
    width: auto;
    max-width: 100%;
    padding-left: 126px;
    text-align: left;
  }

  .section-recommend-point .img-list__item + .img-list__item {
    margin-top: 30px;
  }
  .section-recommend-point .store-button__container {
    padding-top: 50px;
  }
} */

/* label-list */
.label-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -15px;
  margin-left: -15px;
}

.label-list__item {
  box-sizing: border-box;
  width: calc(50% - 15px);
  padding: 12px 6px;
  margin-top: 15px;
  margin-left: 15px;
  text-align: center;
  background: #f8eef4;
  border-radius: 8px;
}

/* note */
.note-text,
.note-list {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.64;
  color: #9d9da2;
  list-style: none;
}
.note-text-pc {
  display: none;
}

.note-list {
  list-style: none;
}

.section-user .note-list {
  padding-top: 50px;
}

.pc_display {
  display: none;
}

@media screen and (min-width: 1024px) {
  .pc_display {
    display: block;
  }
  .pc_hide {
    display: none;
  }
  .note-text-pc {
    display: block;
    margin-top: 10px;
  }
  .note-list {
    width: 1000px;
    text-align: center;
    margin:0 auto;
  }
}

/* read-text */
.read-text {
  margin-top: 30px;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .read-text {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2.428;
  }
}

/* section price */

.price-table {
  margin-top: 30px;
}
.price-table__title {
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.price-table__img {
  margin: 20px 0;
  text-align: center;
}
.price-tabel__footer {
  width: 100%;
  max-width: 302.5px;
  margin: 30px auto 0;
  text-align: center;
}

.price-table__table table {
  margin-bottom: 10px;
  width: 100%;
}
.price-table__table table tbody {
  background-color: #fff;
}
.price-table__table table  thead td{
  vertical-align: bottom;
  text-align: center;
  border-bottom:1px solid #E8E8E8;
}
.price-table__table table  thead th{
  background-color: #F8EEF4;
  text-align: center;
  padding: 15px 5px 5px;
  border:1px solid #E8E8E8;
}
.price-table__table table  thead th .large{
  font-size: 13px;
  font-weight: bold;
  line-height: calc(18/13);
  display: block;
  margin-bottom: 5px;
}
.price-table__table table  thead th .small{
  font-size: 10px;
  line-height: calc(15/10);
  display: block;
}
.price-table__table table  tbody td{
  font-size: 12px;
  line-height: calc(15/12);
  text-align: center;
  vertical-align: middle;
  padding: 10px 5px;
  border-right: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}

.price-table__table table  tbody td:first-child{
    border-left:1px solid #E8E8E8;
}

@media screen and (min-width: 1024px) {
  .price-table {
    margin-top: 40px;
  }
  .price-table__table table  thead td{
    width: 177px;
  }
  .price-table__table table  thead th{
    padding: 25px 14px 14px;
  }

  .price-table__table table  tbody td{
    padding: 14px;

  }
  .price-table__table table  thead th br.sp ,
  .price-table__table table  tbody td br.sp {
    display: none;

  }
  .price-table__table table  thead th .large{
    font-size: 17px;
  }
  .price-table__table table  thead th .small{
    font-size: 12px;
  }
  .price-table__table table  tbody td{
    font-size: 16px;
  }
  .price-tabel__footer {
    width: auto;
    max-width: 100%;
    margin: 40px auto 0;
  }
}

/* step */
.step-list {
}

.step-list__item {
  display: flex;
  flex-direction: row;
  margin-top: 25px;
}

.step-list__item-label {
  flex-shrink: 0;
  width: 91px;
}

.step-list__item-text {
  font-weight: 600;
}
.step-list__item-text span {
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .step-list__item-text span {
    display: inline;
  }
}

.step-list__item-label + .step-list__item-text {
  margin-left: 15px;
}

/* voice */

.voice__title {
  width: 172.5px;
  margin: 15px auto;
  text-align: center;
}
.voice-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voice-list__item {
  display: flex;
}

.voice-list__img {
  width: 100%;
}

.voice-list__item + .voice-list__item {
  margin-top: 15px;
}

@media screen and (min-width: 1024px) {
  .voice {
    max-width: 844px;
    margin: 50px auto 0;
  }
  .voice__title {
    width: auto;
    margin-bottom: 30px;
  }
  .voice-list {
    display: flex;
    flex-direction: column;
  }

  .voice-list__item {
    display: flex;
  }

  .voice-list__item + .voice-list__item {
    margin-top: 20px;
  }

  .voice-list__img {
    flex-shrink: 0;
  }

  .voice-list__item-img {
    width: 1000px;
  }
}

.questions {
  display: flex;
  flex-direction: column;
}
.question__item {
  margin-top: 15px;
}
.question__item:first-of-type {
  margin-top: 0;
}

.question__card {
  padding: 20px 45px 20px 65px;
  border-radius: 10px;
  background: url('../img/icon_question_q.svg') no-repeat left 20px center #F7F7F7;
  background-size: 25px 25px;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.question__card::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/icon_arrow_link.svg) no-repeat center center;
  width: 8px;
  height: 13px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);

}
.question__card .external {
  display: inline-block;
  width: 16px;
  height: 13px;
  margin-left: 5px;
}
.question__card .external img{
  display: block;
}

.questions__more {
  margin-top: 30px;
  text-align: center;
}

.questions__more a {
  color: #000031;
}

@media screen and (min-width: 1024px) {
  .questions-top {
    display: flex;
    flex-wrap: wrap;
  }
  .question__item.half {
    width: calc(50% - 10px);
    margin-right: 10px;
  }
  .question__item:nth-of-type(2) {
    margin-top: 0;
  }
  .question__item:nth-of-type(2n) {
    margin-right: 0;
  }
  .question__card {
    font-size: 16px;
    font-weight: bold;
    padding: 30px 30px 30px 60px;
    background-size: 28px 28px;
  }
  .question__card .question__title {
    min-height: 28px;
    padding-left: 46px;
    font-weight: 600;
    background-size: 28px 28px;
  }
  .question__card .question__body {
    min-height: 28px;
    padding-left: 46px;
    background-size: 28px 28px;
  }
  .question__card .question__body .text {
    line-height: 2.428;
  }
}

.section-price .price-read {
  width: 100%;
  max-width: 250px;
  margin: 0 auto 25px;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .section-price .price-read {
    width: auto;
    max-width: 665px;
    margin-bottom: 25px;
  }
  .section-price .store-button__container {
    padding-top: 40px;
  }
}

.section-point {
  background-color: #ffffff;
}
.point-inner {
  padding: 15px 15px 20px;
}
.point-number {
  text-align: center;
  margin-top: -26px;
}
.point-title {
  text-align: center;
  margin-top: 20px;
}
.point_topic figure {
  padding: 15px 0;
  text-align: center;
}
.point_topic figure img {
  height: 115px;
}
.point_list_top li , 
.point_list_bottom li {
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .point_list_top {
    display: flex;
    justify-content: space-between;
  }
  .point_list_bottom {
    display: flex;
    justify-content: center;
  }
  .point_list_top li , 
  .point_list_bottom li {
  margin-right: 20px;
  }
  .point_list_top li:last-of-type , 
  .point_list_bottom li:last-of-type  {
  margin-right: 0;
  }
  .point_topic {
    width: 320px;
    margin: 0;
  }
}
.section-knowledge {
  text-align: center;
  padding: 20px 20px 40px;
}
.knowledge_subtitle {
  font-weight: bold;
  text-align: center;
  background: #F8EEF4;
  display: inline;
  padding: 10px 20px;
  border-radius: 20px;
}
.knowledge_area {
  position: relative;
  margin-top: 40px;
}
.knowledge_area_inner {
  margin: 0 auto;
}
.knowledge_area figure {
  text-align: center;
  margin-left: 10px;
}
.knowledge_area figure img {
  width: 90px;
}
.knowledge_01 {
  position: absolute;
  top: 0;
  left: 20px;
}
.knowledge_02 {
  position: absolute;
  top:110px;
  left: 0;
}
.knowledge_03 {
  position: absolute;
  top:40px;
  right: 10px;
}
.knowledge_04 {
  position: absolute;
  top:150px;
  right: 0;
}
.knowledge_01 img{
  width: 120px;
}
.knowledge_02 img{
  width: 120px;
}
.knowledge_03 img{
  width: 120px;
}
.knowledge_04 img {
  width: 60px;
}

@media screen and (min-width: 1024px) {
  .knowledge_area {
    margin-top: 60px;
  }
  .knowledge_area_inner {
    width: 620px;
  }
  .knowledge_area figure img {
    width: 120px;
  }
  .knowledge_01 {
    top: 0;
    left: 270px;
  }
  .knowledge_02 {
    top: 118px;
    left: 150px;
  }
  .knowledge_03 {
    top: 40px;
    right: 220px;
  }
  .knowledge_04 {
    top: 170px;
    right: 165px;
  }
  .knowledge_01 img{
    width: 153px;
  }
  .knowledge_02 img{
    width: 170px;
  }
  .knowledge_03 img{
    width: 180px;
  }
  .knowledge_04 img {
    width: 85px
  }
}
.section-start-use {
  padding-top: 35px;
}
.section-start-use .store-button__container{
  padding-top: 0;
}
.section-start-use .store-button__container .note-text {
  padding-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .section-start-use {
    padding-top: 70px;
  }
  .section-start-use .store-button__header {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

/* アプリリンク */
.app-link-wrap{
  padding:10px 0 10px;
  text-align: center;
  position: sticky;
  bottom:0;
  z-index: 100;
}

.button {
  box-sizing: border-box;
  display: inline-block;
  width: 300px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #f68699;
  border: none;
  border-radius: 100px;
}

@media screen and (min-width: 1024px) {
  .okusuribin-check{
    text-align: center;
  }
  .okusuribin-check img {
    width: 500px;
  }
  .app-link-wrap{
    padding:30px 0 30px;
    background-color:rgba(255, 255, 255, 0.9);
  }
  .store-button__item a img{
    cursor: pointer;
  }
}

/* ========================================
background-color
======================================== */
.bg-gray {
  background-color: #f7f7f7;
}

.bg-pink {
  background-color: #f8eef4;
}

.bg-white {
  background-color: #fff;
}

.bg-blue-gra {
  background: linear-gradient(300deg, rgba(163, 235, 214, 0.10) 4.88%, rgba(133, 214, 206, 0.10) 21.99%, rgba(59, 158, 199, 0.10) 74.89%);
}

/* ========================================
 Utility class
======================================== */

/* font-weight */
.f-w600 {
  font-weight: 600;
}

/* margin */
.m-l-0 {
  margin-left: 0;
}

.m-r-0 {
  margin-right: 0;
}

.m-t-0 {
  margin-top: 0;
}

.m-b-0 {
  margin-bottom: 0;
}

.m-l-5 {
  margin-left: 5px;
}

.m-r-5 {
  margin-right: 5px;
}

.m-t-5 {
  margin-top: 5px;
}

.m-b-5 {
  margin-bottom: 5px;
}

.m-l-10 {
  margin-left: 10px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-l-15 {
  margin-left: 15px;
}

.m-r-15 {
  margin-right: 15px;
}

.m-t-15 {
  margin-top: 15px;
}

.m-b-15 {
  margin-bottom: 15px;
}

.m-l-20 {
  margin-left: 20px;
}

.m-r-20 {
  margin-right: 20px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-l-25 {
  margin-left: 25px;
}

.m-r-25 {
  margin-right: 25px;
}

.m-t-25 {
  margin-top: 25px;
}

.m-b-25 {
  margin-bottom: 25px;
}

.m-l-30 {
  margin-left: 30px;
}

.m-r-30 {
  margin-right: 30px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-l-35 {
  margin-left: 35px;
}

.m-r-35 {
  margin-right: 35px;
}

.m-t-35 {
  margin-top: 35px;
}

.m-b-35 {
  margin-bottom: 35px;
}

.m-l-40 {
  margin-left: 40px;
}

.m-r-40 {
  margin-right: 40px;
}

.m-t-40 {
  margin-top: 40px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-l-45 {
  margin-left: 45px;
}

.m-r-45 {
  margin-right: 45px;
}

.m-t-45 {
  margin-top: 45px;
}

.m-b-45 {
  margin-bottom: 45px;
}

.m-l-50 {
  margin-left: 50px;
}

.m-r-50 {
  margin-right: 50px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-b-50 {
  margin-bottom: 50px;
}

.m-lr-13 {
  margin-right: 13px;
  margin-left: 13px;
}

.m-t--20 {
  margin-top: -20px;
}

/* padding */
.p-l-0 {
  padding-left: 0;
}

.p-r-0 {
  padding-right: 0;
}

.p-t-0 {
  padding-top: 0;
}

.p-b-0 {
  padding-bottom: 0;
}

.p-l-5 {
  padding-left: 5px;
}

.p-r-5 {
  padding-right: 5px;
}

.p-t-5 {
  padding-top: 5px;
}

.p-b-5 {
  padding-bottom: 5px;
}

.p-l-10 {
  padding-left: 10px;
}

.p-r-10 {
  padding-right: 10px;
}

.p-t-10 {
  padding-top: 10px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-l-15 {
  padding-left: 15px;
}

.p-r-15 {
  padding-right: 15px;
}

.p-t-15 {
  padding-top: 15px;
}

.p-b-15 {
  padding-bottom: 15px;
}

.p-l-20 {
  padding-left: 20px;
}

.p-r-20 {
  padding-right: 20px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-l-25 {
  padding-left: 25px;
}

.p-r-25 {
  padding-right: 25px;
}

.p-t-25 {
  padding-top: 25px;
}

.p-b-25 {
  padding-bottom: 25px;
}

.p-l-30 {
  padding-left: 30px;
}

.p-r-30 {
  padding-right: 30px;
}

.p-t-30 {
  padding-top: 30px;
}

.p-b-30 {
  padding-bottom: 30px;
}

.p-l-35 {
  padding-left: 35px;
}

.p-r-35 {
  padding-right: 35px;
}

.p-t-35 {
  padding-top: 35px;
}

.p-b-35 {
  padding-bottom: 35px;
}

.p-l-40 {
  padding-left: 40px;
}

.p-r-40 {
  padding-right: 40px;
}

.p-t-40 {
  padding-top: 40px;
}

.p-b-40 {
  padding-bottom: 40px;
}

.p-l-45 {
  padding-left: 45px;
}

.p-r-45 {
  padding-right: 45px;
}

.p-t-45 {
  padding-top: 45px;
}

.p-b-45 {
  padding-bottom: 45px;
}

.p-l-50 {
  padding-left: 50px;
}

.p-r-50 {
  padding-right: 50px;
}

.p-t-50 {
  padding-top: 50px;
}

.p-b-50 {
  padding-bottom: 50px;
}

.p-l-55 {
  padding-left: 55px;
}

.p-r-55 {
  padding-right: 55px;
}

.p-t-55 {
  padding-top: 55px;
}

.p-b-55 {
  padding-bottom: 55px;
}

.p-l-60 {
  padding-left: 60px;
}

.p-r-60 {
  padding-right: 60px;
}

.p-t-60 {
  padding-top: 60px;
}

.p-b-60 {
  padding-bottom: 60px;
}

.p-l-65 {
  padding-left: 65px;
}

.p-r-65 {
  padding-right: 65px;
}

.p-t-65 {
  padding-top: 65px;
}

.p-b-65 {
  padding-bottom: 65px;
}

.p-l-70 {
  padding-left: 70px;
}

.p-r-70 {
  padding-right: 70px;
}

.p-t-70 {
  padding-top: 70px;
}

.p-b-70 {
  padding-bottom: 70px;
}

.p-l-75 {
  padding-left: 75px;
}

.p-r-75 {
  padding-right: 75px;
}

.p-t-75 {
  padding-top: 75px;
}

.p-b-75 {
  padding-bottom: 75px;
}

.p-l-80 {
  padding-left: 80px;
}

.p-r-80 {
  padding-right: 80px;
}

.p-t-80 {
  padding-top: 80px;
}

.p-b-80 {
  padding-bottom: 80px;
}

.p-l-85 {
  padding-left: 85px;
}

.p-r-85 {
  padding-right: 85px;
}

.p-t-85 {
  padding-top: 85px;
}

.p-b-85 {
  padding-bottom: 85px;
}

.p-l-90 {
  padding-left: 90px;
}

.p-r-90 {
  padding-right: 90px;
}

.p-t-90 {
  padding-top: 90px;
}

.p-b-90 {
  padding-bottom: 90px;
}

.p-l-95 {
  padding-left: 95px;
}

.p-r-95 {
  padding-right: 95px;
}

.p-t-95 {
  padding-top: 95px;
}

.p-b-95 {
  padding-bottom: 95px;
}

.p-l-100 {
  padding-left: 100px;
}

.p-r-100 {
  padding-right: 100px;
}

.p-t-100 {
  padding-top: 100px;
}

.p-b-100 {
  padding-bottom: 100px;
}

/* text-align */
.t-a-l {
  text-align: left;
}

.t-a-c {
  text-align: center;
}

.t-a-r {
  text-align: right;
}
