@charset "utf-8";
/* 
-------------------------------------------------- */
/* root
-------------------------------------------------- 
*/ :root {
  --background: rgb(248, 243, 235);
  --black: rgba(31, 31, 31, 1.0);
  --black-alpha-high: rgba(31, 31, 31, 0.5);
  --black-alpha-middle: rgba(31, 31, 31, 0.25);
  --black-alpha-low: rgba(31, 31, 31, 0.01);
  --white: rgba(255, 255, 255, 1.0);
  --white-alpha-high: rgba(255, 255, 255, 0.75);
  --white-alpha-middle: rgba(255, 255, 255, 0.5);
  --white-alpha-low: rgba(255, 255, 255, 0.25);
  /* Dark #5C636A */
  --dark: rgba(92, 99, 106, 1.0);
  /* Light #6C757D */
  --light: rgba(108, 117, 125, 1.0);
  /* Primary #FD6E89 */
  --primary: rgba(253, 110, 137, 1.0);
  --primary-alpha-high: rgba(253, 110, 137, 0.75);
  --primary-alpha-middle: rgba(253, 110, 137, 0.5);
  --primary-alpha-low: rgba(253, 110, 137, 0.25);
  /* Primary Dark #009999 */
  --primary-dark: rgba(0, 153, 153, 1.0);
  /* Secondary #3BC1E2 */
  --secondary: rgba(59, 193, 226, 1.0);
  --secondary-alpha-low: rgba(59, 193, 226, 0.25);
  /* Secondary Dark #5C636A */
  --secondary-dark: rgba(92, 99, 106, 1.0);
  /* Tertiary ##FFF0E9 */
  --tertiary: rgba(255, 240, 233, 1.0);
  --success: rgba(0, 152, 159, 1.0);
  --danger: rgba(220, 53, 69, 1.0);
  --warning: rgba(255, 193, 7, 1.0);
  --font: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, sans-serif;
}
/* 
-------------------------------------------------- */
/* reset
-------------------------------------------------- */
em, i {
  font-style: normal;
}
figure {
  margin: 0;
  padding: 0;
}
dl, dt, dd {
  margin: 0;
  padding: 0;
  line-height: normal;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}
::selection {
  background: none;
}
p {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
/* 
-------------------------------------------------- */
/* base
-------------------------------------------------- */
body {
  color: rgba(59, 55, 45, 1.00);
}
.header, #menuBar {
  display: none;
}
footer {
  padding: 4.0rem 1.0rem;
}
footer .links {
  margin: 0 0 1.0rem;
}
footer .socialmedia {
  margin: 1.0rem 0;
}
footer .copyright {
  margin: 1.0rem 0 0;
}
.page-title-img {
  font-size: 0;
}
.page-title-img img {
  object-fit: cover;
  height: 600px;
  width: 100%;
}
.page-title {
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 1.0);
  font-size: 2.0rem;
  margin: 0 auto;
  padding: 1.0rem 2.0rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
/*
-------------------------------------------------- */
/* layouts
-------------------------------------------------- */
.page {
  padding: 0;
}
.container {
  width: 100%;
}
.content {
  width: 100%;
}
.x-layout {
  margin: 0 auto;
  padding: 0 1.0rem;
  max-width: 60rem;
  width: 100%;
}
/*
-------------------------------------------------- */
/* components - buttons
-------------------------------------------------- */
.btn {
  background: none;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  display: inline-block;
  font-size: 1.25rem;
  line-height: 3.25rem;
  height: 3.25rem;
  text-align: center;
  text-decoration: none !important;
  vertical-align: middle;
  width: 18rem;
}
.btn:hover {
  text-decoration: none !important;
}
.btn-lg {
  line-height: 4.0rem;
  height: 4.0rem;
  max-width: 100%;
  width: 18rem;
}
.btn-primary {
  background-color: var(--primary);
  color: #FFF !important;
}
.btn-primary:hover {
  background-color: var(--dark);
  color: #FFF !important;
}
.btn-secondary {
  background-color: var(--secondary);
  color: #FFF !important;
}
.btn-secondary:hover {
  background-color: var(--primary);
  color: #FFF !important;
}
.btn-light {
  background-color: var(--light);
  color: #FFF !important;
}
.btn-white {
  background-color: var(--white);
  color: var(--dark) !important;
}
.btn-white:hover {
  background-color: var(--dark);
  color: var(--white) !important;
}
/*
-------------------------------------------------- */
/* components - list
-------------------------------------------------- */
ul.kome, ul.hoshi {
  list-style: none;
  margin: 1.0rem 0;
  padding: 0;
}
ul.kome > li, ul.hoshi > li {
  padding-left: 1em;
  text-indent: -1em;
}
ul.kome > li:before {
  content: "※";
}
ul.hoshi > li:before {
  content: "★";
}
ol.default {
  margin: 1.0rem 0;
  padding: inherit;
}
/*
-------------------------------------------------- */
/* utilities - display
-------------------------------------------------- */
.d-block {
  display: block;
}
/* mobile
-------------------------------------------------- */
@media only screen and (max-width: 960px) {
  /* 
-------------------------------------------------- */
  .d-join-inline {
    display: inline;
  }
  .d-join-inline::before {
    content: "、";
  }
  /* 
-------------------------------------------------- */
}
/* 
-------------------------------------------------- */
/* index-new
-------------------------------------------------- */
.index-page * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.index-page h2 {
  text-align: center;
}
.b-about__h2 {
  color: rgba(255, 124, 124, 1.00);
}
.b-steps__h2, .b-safety__h2, .b-join__h2, .b-tweets__h2 {
  font-size: 2.0rem;
}
/* 
-------------------------------------------------- */
@media only screen and (max-width: 480px) {
  /* 
-------------------------------------------------- */
  .b-steps__h2, .b-safety__h2, .b-join__h2, .b-tweets__h2 {
    font-size: 1.75rem;
  }
  /* 
-------------------------------------------------- */
}
/* 
-------------------------------------------------- */
.b-steps__h2, .b-join__h2 {
  color: var(--secondary);
}
.b-safety__h2, .b-tweets__h2 {
  color: var(--white);
}
.index-page__hero {
  position: relative;
}
.n-hero {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 1.0rem 2.0rem;
  z-index: 2;
}
.b-hero {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.n-hero__logo {
  display: inline-block;
}
.n-hero__logo a {
  display: inline-block;
}
.n-hero__logo img {
  height: 2.0rem;
}
.n-hero__menu {
  float: right;
  list-style: none;
  margin: 0;
  padding: 0;
}
.n-hero__menu > li {
  display: inline-block;
  font-size: 1.0rem;
  vertical-align: middle;
}
.n-hero__menu > li::after {
  content: "";
  margin: 0 0.5rem;
}
.n-hero__menu > li:last-child::after {
  content: "";
  margin: 0;
}
.b-hero__container {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(0, -50%);
  text-align: center;
}
.b-hero__slogan, .b-hero__keywords {
  max-width: 28rem;
}
.b-hero__button {
  margin: 1.0rem 0 0;
}
@media only screen and (max-width: 1024px) {
  /* 
-------------------------------------------------- */
  .b-hero__slogan, .b-hero__keywords {
    max-width: 23rem;
  }
  .b-hero__slogan img {
    max-height: 11rem;
  }
  /* 
-------------------------------------------------- */
}
@media only screen and (max-width: 960px) {
  /* 
-------------------------------------------------- */
  .b-hero__slogan img {
    max-height: 10rem;
  }
  .b-hero__keywords {
    font-size: 0.75rem;
  }
  /* 
-------------------------------------------------- */
}
@media only screen and (max-width: 480px) {
  /* 
-------------------------------------------------- */
  .b-hero__container {
    left: 1.0rem;
    right: 1.0rem;
  }
  .b-hero__slogan, .b-hero__keywords {
    max-width: none;
  }
  .b-hero__slogan img {
    max-height: none;
  }
  /* 
-------------------------------------------------- */
}
@media only screen and (max-width: 480px) {
  /* 
-------------------------------------------------- */
  .b-hero__container {
    top: 40%;
  }
  /* 
-------------------------------------------------- */
}
.b-hero__keywords {
  color: var(--dark);
  font-weight: bold;
}
.b-hero__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.b-hero__menu > li {
  display: inline-block;
  margin: 1.0rem;
}
.b-hero p {
  margin: 1.0rem 0 0;
}
.index-page__gals {
  background-color: rgba(0, 0, 0, 0.5);
  color: #FFF;
  padding: 1.0rem 0;
}
.index-page__about {
  background-color: var(--dark);
  color: #FFF;
  font-size: 1.25rem;
  padding: 4.0rem 0;
  text-align: justify;
}
.index-page__steps {
  background-color: var(--white);
  padding: 4.0rem 0;
}
.index-page__safety {
  background-color: var(--primary);
  color: #FFF;
  padding: 4.0rem 0;
}
.index-page__join {
  background: rgba(255, 255, 255, 1.00);
  background-image: url("../../images/index-new/bg4.jpg");
  background-position: center;
  background-size: cover;
  padding: 8.0rem 0;
}
.index-page__tweets {
  background-color: rgba(59, 55, 45, 1.00);
  background-image: url("../../images/index-new/bg5.jpg");
  color: #FFF;
  padding: 4.0rem 0;
}
.index-page--py4 {
  padding-top: 4.0rem;
  padding-bottom: 4.0rem;
}
.index-page--py8 {
  padding-top: 8.0rem;
  padding-bottom: 8.0rem;
}
.b-about__benefits i {
  color: var(--primary);
}
.b-about__list {
  font-size: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.b-about__list li {
  display: inline-block;
  font-size: 1.05rem;
  margin: 0 0.25rem 0 0;
}
.b-steps__wrapper, .b-safety__wrapper {
  margin: 0 -1.0rem;
}
.b-safety__wrapper {
  margin: 2.0rem -1.0rem 0;
}
.b-steps__list, .b-safety__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0 0.5rem;
  width: 100%;
}
.b-steps__list > li, .b-safety__list > li {
  padding: 0 0.5rem;
  width: calc(100% / 2);
}
.b-steps__list img {
  border-radius: 0.5rem;
}
.b-steps h3 {
  color: rgba(102, 102, 204, 0.1);
  font-size: 4.0rem;
  line-height: 4.0rem;
  margin: 0;
  text-align: center;
}
.b-steps h4 {
  margin: 1.0rem 0;
  text-align: center;
}
.b-safety {
  text-align: center;
}
.b-safety h3 {
  margin: 1.0rem 0;
}
.b-safety__list figure {
  /*background-color: rgba(234, 227, 215, 1.00);
  border-radius: 50%;*/
  font-size: 0;
}
.b-safety__list img {
  border: 10px solid var(--white);
  border-radius: 1000px;
}
.b-safety__list img.rec {
  border: none;
  border-radius: 0.5rem;
}
.b-safety__p {
  margin: 2.0rem 1.0rem 0;
}
.b-join {
  text-align: center;
}
.b-join p {
  font-size: 1.5rem;
}
.b-join ul.kome {
  font-size: 1.375rem;
  text-align: justify;
}
/* 
-------------------------------------------------- */
@media only screen and (max-width: 640px) {
  /* 
-------------------------------------------------- */
  .b-join p {
    font-size: 1.25rem;
  }
  .b-join ul.kome {
    font-size: 1.125rem;
  }
  /* 
-------------------------------------------------- */
}
/* 
-------------------------------------------------- */
.b-join__link {
  margin: 2.0rem 0 0;
}
.b-join__link img {
  margin: 0.5rem 0 0;
  width: 2.0rem;
}
.b-buttons {
  margin: 2.0rem 0 0;
  text-align: center;
}
.b-buttons ul {
  margin: 0 auto;
}
.b-buttons ul > li {
  display: inline-block;
  margin: 0 1.0rem;
}
/* 
-------------------------------------------------- */
/* swiper 
-------------------------------------------------- */
.swiper {
  height: auto;
  width: 100%;
}
.swiper img {
  display: block;
}
.swiper-button-next, .swiper-button-prev {
  /* color: rgba(255, 255, 255, 1.0); */
  color: transparent;
}
.myGirls {
  height: auto;
  width: 100%;
}
.myGirls img {
  border-radius: 0.5rem;
  display: block;
  object-fit: cover;
  width: 100%;
}
#swiper-desktop {
  display: block;
}
#swiper-mobile {
  display: none;
}
/* 
-------------------------------------------------- */
@media only screen and (max-width: 568px) {
  /* 
-------------------------------------------------- */
  #swiper-desktop {
    display: none;
  }
  #swiper-mobile {
    display: block;
  }
  .b-hero {
    display: none;
  }
  /* 
-------------------------------------------------- */
}
/* 
-------------------------------------------------- */
/* aptitude 
-------------------------------------------------- */
#aptitude {
  background-color: var(--white);
  background-image: url("../../images/index-new/bg-pattern1.png");
  padding: 4.0rem 1.0rem;
  text-align: center;
}
#quiz-container {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 1.0);
  border-radius: 1.0rem;
  margin: 0 auto;
  padding: 2.0rem 1.0rem;
  max-width: 960px;
  width: 100%;
}
#quiz-container .question__q {
  font-size: 1.7rem;
  margin: 0 1.0rem 1.0rem;
}
#quiz-container .question {
  margin-bottom: 1.5rem;
}
#quiz-container label {
  font-size: 1.25rem;
}
#quiz-container .question_button {
  margin: 1.5rem 0;
}
#result-container {
  text-align: center;
}
#result {
  font-size: 1.75em;
  margin-bottom: 0.5rem;
}
#result-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  border: 1px solid #FFF;
  display: inline-block;
  margin: 0;
}
#aptitude .result-footer {
  margin: 1.0rem 1.0rem 0;
}
#aptitude .result-footer a::after {
  content: "|";
  margin: 0 0.5rem;
}
#aptitude .result-footer a:last-child::after {
  content: "";
  margin: 0;
}
/* 
-------------------------------------------------- */
@media only screen and (max-width: 480px) {
  /* 
-------------------------------------------------- */
  #quiz-container .question__q {
    font-size: 1.5rem;
  }
  #quiz-container .question__options {
    display: inline-block;
    margin: auto;
    text-align: justify;
  }
  #quiz-container label {
    display: block;
    margin-bottom: 0.5rem;
  }
  #quiz-container label:last-child {
    margin-bottom: 0;
  }
  #result-image {
    object-fit: cover;
    height: 300px;
    width: 100%;
  }
  #aptitude .result-footer a {
    background-color: var(--primary);
    border-radius: 0.5rem;
    color: #FFF;
    display: inline-block;
    line-height: 2.5rem;
    vertical-align: middle;
    margin: 0 0.25rem 0.5rem;
    padding: 0 0.25rem;
    text-align: center;
  }
  #aptitude .result-footer a::after {
    content: "";
    margin: 0;
  }
  /* 
-------------------------------------------------- */
}
/* 
-------------------------------------------------- */
/* pay 
-------------------------------------------------- */
.page-pay {
  background-color: var(--white);
  color: var(--dark);
}
.page-pay__comp {
  border: 1px solid var(--secondary);
  border-radius: 0.25rem;
}
.page-pay__comp dt {
  background-color: var(--secondary);
  color: var(--white);
  padding: 0.5rem;
}
.page-pay__unit {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem;
  vertical-align: middle;
}
.page-pay__unit em {
  border: 1px solid var(--primary);
  border-radius: 0.25rem;
  font-style: normal;
  margin: 0 0.25rem 0 0;
  padding: 0.25rem;
}
.page-pay__amount {
  padding: 0 1.0rem 1.0rem;
}
.page-pay__amount strong {
  color: var(--primary);
  font-size: 1.5rem;
}
/* 
-------------------------------------------------- */
/* background 
-------------------------------------------------- */
.bg5 {
  background-image: url("../../images/index-new/bg5.jpg");
}
.bg6 {
  background-image: url("../../images/index-new/bg6.jpg");
}
.bg7 {
  background-image: url("../../images/index-new/bg7.jpg");
}
.bg8 {
  background-image: url("../../images/index-new/bg8.jpg");
}
.bg-primary {
  background-image: none;
  background-color: var(--primary);
}
.bg-secondary {
  background-image: none;
  background-color: var(--secondary);
}
.bg-white {
  background-image: none;
  background-color: var(--white);
}
/*
-------------------------------------------------- */
/* utilities - colors
-------------------------------------------------- */
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-white {
  color: var(--white) !important;
}
.text-dark {
  color: var(--dark) !important;
}
/*
-------------------------------------------------- */
/* utilities - text
-------------------------------------------------- */
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-xl {
  font-size: 1.5rem;
}
.text-l {
  font-size: 1.25rem;
}
.text-m {
  font-size: 1.1rem;
}
small, .text-small, .text-s {
  font-size: 0.8rem;
}
/*
-------------------------------------------------- */
/* utilities - spacing
-------------------------------------------------- */
.m-0 {
  margin: 0 !important;
}
.mx-3 {
  margin-left: 1.0rem !important;
  margin-right: 1.0rem !important;
}
.my-3 {
  margin-top: 1.0rem !important;
  margin-bottom: 1.0rem !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-3 {
  margin-top: 1.0rem !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-3 {
  margin-bottom: 1.0rem !important;
}
.p-0 {
  padding: 0 !important;
}
.p-3 {
  padding: 1.0rem !important;
}
.px-3 {
  padding-left: 1.0rem;
  padding-right: 1.0rem;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-3 {
  padding-top: 1.0rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-3 {
  padding-bottom: 1.0rem !important;
}
/*
-------------------------------------------------- */
/* jquery ui
-------------------------------------------------- */
.ui-accordion .ui-accordion-content {
  background-color: var(--white);
}
#accordion h4 {
  font-size: 1.1rem;
  margin: 0 0 1.0rem;
}
#accordion p {
  font-size: 1.0rem;
}
/* 
-------------------------------------------------- */
/* laptop (HD)
-------------------------------------------------- */
@media only screen and (max-width: 1560px) {
  /* 
-------------------------------------------------- */
  /* 
-------------------------------------------------- */
}
/* 
-------------------------------------------------- */
/*
-------------------------------------------------- */
/* CSS Hack for IE11
-------------------------------------------------- */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/*
-------------------------------------------------- */
/* tablets (landscape-ipad-pro10.5=1112x834px)
-------------------------------------------------- */
@media only screen and (max-width: 1112px) {
  /*
-------------------------------------------------- */
  iframe {
    -webkit-overflow-scrolling: touch !important;
    overflow: auto !important;
  }
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* tablets (landscape-ipad=1024px)
-------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* tablets (landscape-android=960px)
-------------------------------------------------- */
@media only screen and (max-width: 960px) {
  /*
-------------------------------------------------- */
  .index-page {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .n-hero {
    display: none;
  }
  .b-hero p {
    margin: 0.5rem 0 0;
  }
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone12=844px)
-------------------------------------------------- */
@media only screen and (max-width: 844px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* tablets (portrait-ipad-pro10.5=834px)
-------------------------------------------------- */
@media only screen and (max-width: 834px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone12mini=812px)
-------------------------------------------------- */
@media only screen and (max-width: 812px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* tablets (android=800px)
-------------------------------------------------- */
@media only screen and (max-width: 800px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* tablets (portrait-ipad=768px)
-------------------------------------------------- */
@media only screen and (max-width: 768px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone8plus=736px)
-------------------------------------------------- */
@media only screen and (max-width: 736px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone8=667px)
-------------------------------------------------- */
@media only screen and (max-width: 667px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-galaxy=640px)
-------------------------------------------------- */
@media only screen and (max-width: 640px) {
  /*
-------------------------------------------------- */
  .b-buttons ul > li {
    display: block;
    margin: 0 0 1.0rem;
  }
  .b-buttons ul > li:last-child {
    margin: 0;
  }
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone-se=568px)
-------------------------------------------------- */
@media only screen and (max-width: 568px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone4=480px)
-------------------------------------------------- */
@media only screen and (max-width: 480px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/*
-------------------------------------------------- */
/* smartphones (portrait-huawei-mediapad=432x768px=css-pixel-ratio:2.5)
-------------------------------------------------- */
@media only screen and (max-width: 432px) {
  /*
-------------------------------------------------- */
  .b-hero__menu > li {
    display: block;
  }
  .b-steps__list > li, .b-safety__list > li {
    width: calc(100% / 1);
  }
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-iphone12promax=428px)
-------------------------------------------------- */
@media only screen and (max-width: 428px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-iphone8plus=414px)
-------------------------------------------------- */
@media only screen and (max-width: 414px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-iphone12/12pro=390px)
-------------------------------------------------- */
@media only screen and (max-width: 390px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-iphone8/12mini=375px)
-------------------------------------------------- */
@media only screen and (max-width: 375px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-android=360x640px)
-------------------------------------------------- */
@media only screen and (max-width: 360px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-iphone4/5/se=320px)
-------------------------------------------------- */
@media only screen and (max-width: 320px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/*
-------------------------------------------------- */