@charset "UTF-8";
/* common */

body {
  -webkit-text-size-adjust: none;
  background: #fff;
  color: #333;
  line-height: 1.5;
  /*font-family: apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;*/
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
  width: 100%;
  height: 100%;
  color: #333;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

img {
  width: 100%;
    image-rendering: -moz-crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}


.is-bold {
  font-weight: 800;
}

.is-hide {
  display: none;
}

.is-pink {
  color: #ff6e82;
}

.is-pink-bg {
  background-color: #ff6e82;
}

.is-lightpink {
  color: #fca2b4;
}

.is-lightpink-bg {
  background-color: #fca2b4;
}


/* ----------------------------------------------------------アニメーション*/
/* fadeup */
.fadeup {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 30px);
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
  transform: translate(0, 30px);
  transform-style: preserve-3d;
  -webkit-transition: all .8s linear 0s;
  -ms-transition: all .8s linear 0s;
  -moz-transition: all .8s linear 0s;
  transition: all .8s linear 0s;
}

.fadeup.is-active {
  -webkit-transform: translate(0, 0);
  filter: alpha(opacity=100);
  opacity: 1;
  transform: translate(0, 0);
}


/* fadein */
.fadein {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all .8s linear 0s;
  -ms-transition: all .8s linear 0s;
  -moz-transition: all .8s linear 0s;
  transition: all .8s linear 0s;
}

.fadein.is-active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=1);
  opacity: 1;
}

/* --------------------------------------------------------------- */
/* 共通ヘッダー＆フッター */
/* --------------------------------------------------------------- */

/* ----------------------------------------------------------全体*/
html {
  min-width: 1080px;
}

.container {
  width: 1040px;
  margin: 0 auto;
}

.inner {
  width: 880px;
  margin: 0 auto;
}


.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

br.is-pc,
span.is-pc {
  display: inline-block;
}

br.is-sp,
span.is-sp {
  display: none;
}

#contents {
  padding-top: 58px;
  overflow: hidden;
}

.btn {
  display: inline-block;
}

.btn a {
  text-align: center;
  border-radius: 5px;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.btn a:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  box-shadow: 0 8px 8px -5px rgba(0, 0, 0, 0.25);
}

/* ----------------------------------------------------------共通ヘッダー*/

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 10;
}

header .inner {
  height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  width: 186px;
}

.nav {
  display: flex;
  align-items: center;
  margin-left: 45px;
  height: 100%;
}

.nav_menu {
  position: relative;
  height: 100%;
}

.nav_menu:hover {
  cursor: pointer;
}

.nav_item:nth-child(-n+3) {
  height: 100%;
}

.nav_item:nth-child(-n+3) > a {
  display: block;
  height: 100%;
  line-height: 58px;
}

.nav_item:first-child p.is-pc {
  height: 100%;
  line-height: 58px;
}

.menu_list {
  width: 190px;
  position: absolute;
  top: 58px;
  left: -50px;
  z-index: 100;
  background-color: #fff;
  flex-direction: column;
  opacity: 0;
  transition: opacity .3s ease;
  display: none;

}

.menu_list.is-show {
  display: block;
  opacity: 1;
}

.menu_list-item a {
  color: #333;
  font-size: 12px;
  padding: 10px;
  display: block;
  opacity: 1;
  width: 100%;
  height: 100%;
}

.menu_list-item  {
  border-bottom: 1px solid #d3d3d3;
  display: block;
  position: relative;
}

.menu_list-item::after {
  display: block;
  content: '';
  background-image: url(../images/nav_arrow@2x.png);
  background-size: 8px 5px;
  width: 8px;
  height: 5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 10px;
}

.is-show .menu_list-item:last-child {
  border: none;
}

.nav_item {
  font-size: 12px;
  margin-right: 20px;
}

.nav_item:last-child {
  margin-right: 0;
  width: 120px;
}

.btn-login,
.btn-contact {
  margin-right: 15px;

}

.btn-login a,
.btn-contact a {
  display: block;
  color: #fff;
  height: 28px;
  line-height: 28px;
  width: 110px;
  text-align: center;
  border-radius: 5px;
}

.btn-login a {
  background-color: #ff6e82;
}

.btn-contact a {
  background-color: #6acffe;
}

/* ----------------------------------------------------------共通フッター*/
footer {
}

footer .inner {
  height: 188px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer_logo {
  margin-right: 30px;
  width: 160px;
}

.footer_credit {
  color: #888;
}

.footer_company {
  font-size: 15px;
  margin-bottom: 10px;
}

.footer_copyright {
  font-size: 12px;
}

.footer_privacy {
  width: 76px;
  margin-left: auto;
}

/* ----------------------------------------------------------固定ボタン */
.btn-fixed {

}

.btn-fixed a {
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #fff;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  background: linear-gradient( to right, #6acffe, #5bd1d6);
  box-shadow: 0 10px 10px rgba(0,0,0,.1);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.btn-fixed a:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
/* ----------------------------------------------------------全体*/
@media screen and (max-width:767px) {
  html {
    min-width: auto;
  }

  #contents {
    padding-top: 12vw;
  }

  .container {
    width: 100%;
    margin: 0 auto;
  }

  .inner {
    width: 94.66666vw;
    margin: 0 auto;
  }

  .is-pc {
    display: none;
  }

  .is-sp {
    display: block;
  }

  br.is-pc,
  span.is-pc {
    display: none;
  }

  br.is-sp,
  span.is-sp {
    display: inline-block;
  }

  .btn {
    display: inline-block;
  }

  .btn a {
    display: block;
    width: 100%;
    height: 100%;
    letter-spacing: .1em;
    text-indent: .1em;
    border-radius: 1.33333vw;
  }

  /* ----------------------------------------------------------共通ヘッダー*/

  header {
    height: 12vw;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 10;
  }

  header .inner {
    width: 94.66666vw;
    margin: 0 auto;
    height: 12vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header_logo {
    width: 33.3333vw;
  }

  .header_account {
    width: 5.666666vw;
    margin-right: 2.6667vw;
  }

  .nav {
    align-items: center;
    background-color: #fff;
    position: fixed;
    right: 2.6666vw;
    top: 16vw;
    border-radius: 1.333vw;
    padding: 5.3333vw;
    width: 44vw;
    display: none;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    height: auto;
  }

  .nav::before {
    display: block;
    content: "";
    position: fixed;
    width: 2.6666vw;
    height: 2.6666vw;
    background-color: #fff;
    right: 6.6666vw;
    top: 16vw;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    transform: translateY(-50%) rotate(45deg) skew(20deg,20deg);
    z-index: 2;
  }

  .nav::after {
    display: block;
    content: "";
    position: fixed;
    width: 4vw;
    height: 4vw;
    top: 16vw;
    right: 6.6666vw;
    background-color: #fff;
    z-index: 2;
  }

  .menu_list {
    display: none;
  }


  .nav_menu {
    height: auto;
  }

  .nav_item {
    font-size: 4vw;
    line-height: 2;
    margin: 0 0 2.666vw;
  }

  .nav_item:nth-child(-n+3) {
    height: auto;
  }

  .nav_item:nth-child(-n+3) > a {
    height: auto;
    line-height: 2;
  }

  .nav_item:nth-last-child(2) {
    margin-bottom: 0;
  }

  .btn-login,
  .btn-contact {
    height: 10.6666666vw;
    border-radius: 0.66666vw;
    color: #fff;
    line-height: 10.66666vw;
    width: 33.3333vw;
    text-align: center;
  }

  .btn-login a,
  .btn-contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }

  .btn-login {
    background-color: #ff6e82;
  }

  .btn-contact {
    background-color: #5bd1d6;
  }

  /* ----------------------------------------------------------共通フッター*/
  footer {
    padding: 6.666666vw 0 10vw;
  }

  footer .inner {
    display: block;
    text-align: center;
  }

  .footer_logo {
    width: 44.4vw;
    margin-bottom: 6vw;
    display: inline-block;
  }

  .footer_credit {
    margin: 0 auto 5.333333vw;
    color: #888;
  }

  .footer_company {
    font-size: 3.2vw;
    margin: 0 auto 5.333333vw;
  }

  .footer_copyright {
    font-size:  2.6666vw;
  }

  .footer_privacy {
    width: 15.466666vw;
    display: inline-block;
  }

  /* ----------------------------------------------------------固定ボタン */
  .btn-fixed {

  }

  .btn-fixed a {
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20vw;
    height: 20vw;
    font-size: 3.2vw;
    line-height: 1.71428;
    text-align: center;
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    background: linear-gradient( to right, #6acffe, #5bd1d6);
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }

}
