@charset "UTF-8";
/* Scss Document */
/* Scss Document */
/* ------------- */
/* common */
/* ------------- */
html {
  font-size: 62.5%;
}

body {
  margin: 0 auto;
  color: #333333;
  font-size: 0.94vw;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 480px) {
  body {
    min-width: initial;
    width: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow-x: hidden;
  }
}

body a {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #333;
}

body a:hover {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  opacity: 0.6;
}

body img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 480px) {
  body img {
    width: 100vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* 背景カラー */
  z-index: 9999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値 : 透過状態 */
  -webkit-transition: opacity 0.3s ease;
  /* アニメーション時間は 0.8秒 */
  transition: opacity 0.3s ease;
}

body.fadeout::after {
  opacity: 1;
}

*:focus {
  outline: none;
}

.wrapper {
  min-width: 100%;
  overflow: hidden;
}

.pc {
  display: block;
}

@media (max-width: 480px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media (max-width: 480px) {
  .sp {
    display: block;
  }
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ------------- */
/* heaader*/
/* ------------- */
.top-header {
  height: 10vw;
  min-height: 130px;
}

@media (max-width: 480px) {
  .top-header {
    min-height: 60px;
    height: 5vw;
    margin-bottom: 0;
  }
}

.header-nav {
  position: fixed;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background-color: rgba(250, 250, 250, 0.9);
}

@media (max-width: 480px) {
  .header-nav {
    padding-bottom: 0;
  }
}

.header-logo {
  width: 9.5vw;
  height: auto;
  margin: 1.8vw 0 1.5vw 3vw;
  min-width: 100px;
  min-height: 33px;
}

@media (max-width: 480px) {
  .header-logo {
    width: 80px;
    height: 24px;
    margin: 12px 0 0 21px;
  }
}

@media (max-width: 480px) {
  .header-logo img {
    width: 80px;
    height: 24px;
  }
}

.header-logo:hover {
  opacity: 0.5;
}

/* ------------- */
/* common*/
/* ------------- */
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

.sec-title {
  font-family: "Sawarabi Gothic", sans-serif;
  text-align: center;
}

@media (max-width: 480px) {
  .sec-title {
    text-align: left;
  }
}

.sec-title .font-red {
  color: #cf5c78;
  font-family: "Sawarabi Gothic", sans-serif;
}

.sec-subtitle, .sec-subtitle2 {
  padding-bottom: 9%;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 1.6vw;
  letter-spacing: 0.14em;
  line-height: 2.1;
}

.sec-subtitle span, .sec-subtitle2 span {
  font-family: "Sawarabi Gothic", sans-serif;
  color: #cf5c78;
}

@media (max-width: 480px) {
  .sec-subtitle, .sec-subtitle2 {
    padding-bottom: 8%;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}

.sec-subtitle2 {
  padding-bottom: 6%;
}

@media (max-width: 480px) {
  .sec-subtitle2 {
    font-size: 1.6rem;
    padding: 0 0 9% 11vw;
    letter-spacing: 0.01em;
  }
}

.sec-text, .sec-text2 {
  padding-bottom: 4%;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  line-height: 2;
}

.sec-text span, .sec-text2 span {
  font-family: "Sawarabi Gothic", sans-serif;
  color: #cf5c78;
}

@media (max-width: 480px) {
  .sec-text, .sec-text2 {
    padding-bottom: 7%;
    font-size: 1.4rem;
    line-height: 1.9;
  }
  .sec-text:last-of-type, .sec-text2:last-of-type {
    padding-bottom: 25%;
  }
}

.sec-text2 {
  padding-bottom: 4.5%;
}

@media (max-width: 480px) {
  .sec-text2 {
    padding: 0 10% 6% 10.8%;
  }
  .sec-text2:last-of-type {
    padding-bottom: 14%;
  }
}

.contact-btn, .contact-btn2, .contact-btn4 {
  position: relative;
  display: block;
  width: 23.5vw;
  height: 4.5vw;
  min-width: 180px;
  min-height: 35px;
  margin: 0 0 10.5% auto;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #2ea7e0;
  overflow: hidden;
  padding: 0;
}

@media (max-width: 480px) {
  .contact-btn, .contact-btn2, .contact-btn4 {
    width: 240px;
    height: 40px;
    margin: 43px 0 0 29%;
    padding: 1%;
  }
}

.contact-btn .btn-text, .contact-btn2 .btn-text, .contact-btn4 .btn-text {
  display: block;
  font-size: 1.2vw;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.15em;
  color: #fff;
  font-family: "Sawarabi Gothic", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  background: transparent;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 480px) {
  .contact-btn .btn-text, .contact-btn2 .btn-text, .contact-btn4 .btn-text {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}

.contact-btn .btn-text::before, .contact-btn2 .btn-text::before, .contact-btn4 .btn-text::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 480px) {
  .contact-btn .btn-text::before, .contact-btn2 .btn-text::before, .contact-btn4 .btn-text::before {
    background: none;
  }
}

.contact-btn .btn-text:hover, .contact-btn2 .btn-text:hover, .contact-btn4 .btn-text:hover {
  opacity: 1;
  color: #2ea7e0;
}

.contact-btn .btn-text:hover::before, .contact-btn2 .btn-text:hover::before, .contact-btn4 .btn-text:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #2ea7e0;
}

.contact-btn2 {
  margin: 4% auto 0 0;
}

@media (max-width: 480px) {
  .contact-btn2 {
    margin: 0 0 0 6%;
  }
}

.contact-btn3 {
  position: relative;
  display: block;
  width: 23.5vw;
  height: 4.5vw;
  min-width: 180px;
  min-height: 35px;
  margin: 0 0 0 38.5%;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: #2ea7e0;
  overflow: hidden;
  padding: 0;
}

@media (max-width: 480px) {
  .contact-btn3 {
    width: 240px;
    height: 40px;
    margin: 0 0 8% 8.5%;
    padding: 1%;
  }
}

.contact-btn3 .btn-text {
  display: block;
  font-size: 1.2vw;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.15em;
  color: #fff;
  font-family: "Sawarabi Gothic", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  position: relative;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 480px) {
  .contact-btn3 .btn-text {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}

.contact-btn3 .btn-text::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 480px) {
  .contact-btn3 .btn-text::before {
    background: none;
  }
}

.contact-btn3 .btn-text:hover {
  opacity: 1;
  color: #2ea7e0;
}

.contact-btn3 .btn-text:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #2ea7e0;
}

.contact-btn4 {
  margin: 0 auto;
}

/* ------------- */
/* footer*/
/* ------------- */
.bg-footer {
  background-color: #f2f2f2;
}

.footer-inner {
  padding: 0 29.2%;
}

@media (max-width: 480px) {
  .footer-inner {
    padding: 0 9%;
  }
}

.footer-sns_text {
  padding: 9% 0 3%;
  font-family: "Lato", sans-serif;
  font-size: 1.3vw;
  text-align: center;
}

@media (max-width: 480px) {
  .footer-sns_text {
    padding: 11% 0 7.5%;
    font-size: 1.6rem;
  }
}

.footer-sns {
  position: relative;
  padding-bottom: 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  .footer-sns {
    padding-bottom: 6.5%;
  }
}

.footer-sns::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #898989;
  position: absolute;
  bottom: 0;
  left: 10px;
}

@media (max-width: 480px) {
  .footer-sns::after {
    width: 69%;
    left: 15%;
  }
}

.footer-insta {
  width: 1.5vw;
  height: auto;
  margin-top: -0.1%;
  margin-right: 6%;
}

@media (max-width: 480px) {
  .footer-insta {
    width: 20px;
    height: 20px;
    margin-top: -0.2%;
    padding-right: 7%;
  }
}

.insta-size {
  font-size: 1.5vw;
}

@media (max-width: 480px) {
  .insta-size {
    font-size: 2.2rem;
  }
}

.footer-line {
  width: 1.5vw;
  height: auto;
}

@media (max-width: 480px) {
  .footer-line {
    width: 20px;
    height: 19px;
  }
}

.footer-line:hover {
  opacity: 0.6;
}

.nav-footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.7vw;
  font-family: "Sawarabi Gothic", sans-serif;
  letter-spacing: 0.1em;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8% 0 15.5%;
}

@media (max-width: 480px) {
  .nav-footer {
    padding: 31px 0 22%;
    font-size: 1.2rem;
  }
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-nav li {
  padding: 0 2.5%;
  border-right: 1px solid #898989;
}

.footer-nav li:last-of-type {
  border: none;
}

.footer-logo {
  width: 9.5vw;
  height: 6vh;
  margin: 0 auto 6%;
}

@media (max-width: 480px) {
  .footer-logo {
    width: 80px;
    height: 24px;
    margin: 0 auto 25%;
  }
}

.footer-logo img {
  width: 9.5vw;
  height: 6vh;
}

@media (max-width: 480px) {
  .footer-logo img {
    width: 80px;
    height: 24px;
  }
}

.copyright {
  padding-bottom: 40px;
  font-family: "Lato", sans-serif;
  font-size: 0.7vw;
  text-align: center;
}

@media (max-width: 480px) {
  .copyright {
    padding-bottom: 20px;
    font-size: 10px;
  }
}

/* ------------- */
/* javascript page-up*/
/* ------------- */
.scroll-up {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.scroll-up.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

/* Scss Document */
#wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media (max-width: 480px) {
  #wrap {
    display: block;
  }
}

#main-area {
  width: 94.8%;
}

@media (max-width: 480px) {
  #main-area {
    width: 100%;
  }
}

#sidebar {
  position: fixed;
  right: 2%;
  top: 38%;
}

@media (max-width: 480px) {
  #sidebar {
    display: none;
  }
}

.side-insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
  font-family: "Lato", sans-serif;
  font-size: 1vw;
  letter-spacing: 0.1em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.side-insta li:first-of-type {
  margin-bottom: 18px;
}

.side-insta:hover {
  opacity: 0.6;
}

/* ------------- */
/* mv*/
/* ------------- */
.mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9.2%;
}

@media (max-width: 480px) {
  .mv {
    display: block;
    margin-bottom: 32.2%;
  }
}

.mv-text {
  position: relative;
  width: 56.5%;
  padding: 12vw 0 11.5vw 4.5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 50vw;
}

@media (max-width: 480px) {
  .mv-text {
    width: 100%;
    height: 406px;
    padding: 16vw 0 11.5vw 8vw;
  }
}

.gray-mv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vw;
  background-color: #f2f2f2;
}

@media (max-width: 480px) {
  .gray-mv {
    z-index: -1;
    width: 330px;
    height: 406px;
  }
}

.bg {
  margin-bottom: 7%;
}

@media (max-width: 480px) {
  .bg {
    margin-bottom: 5%;
  }
}

.bg-wrap {
  position: relative;
  display: inline-block;
  opacity: 0;
  margin-bottom: 2.5%;
  overflow: hidden;
  background: #1a416a;
}

.bg-wrap .inn {
  color: #fff;
  display: inline-block;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 1.2vw;
  letter-spacing: 0.15em;
  padding: 19px 14px;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .bg-wrap .inn {
    font-size: 1.4rem;
    padding: 8px 4px;
    letter-spacing: 0.01em;
  }
}

.bg-wrap.is-animated {
  opacity: 1;
}

.bg-wrap.is-animated::before {
  -webkit-animation: img-wrap 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: img-wrap 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: #f2f2f2;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

@media (max-width: 480px) {
  .bg-wrap.is-animated::before {
    -webkit-animation: img-wrap 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            animation: img-wrap 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
}

@-webkit-keyframes img-wrap {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes img-wrap {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.mv-title {
  position: relative;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 2.4vw;
  letter-spacing: 0.15em;
}

@media (max-width: 480px) {
  .mv-title {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

.mv-title span {
  font-size: 6vw;
  font-family: "Sawarabi Gothic", sans-serif;
  color: #cf5c78;
  display: inline-block;
  vertical-align: -19%;
  letter-spacing: 0.01em;
  padding: 0 1.5%;
}

@media (max-width: 480px) {
  .mv-title span {
    font-size: 4.8rem;
    vertical-align: -15%;
  }
}

.mv-title p {
  position: relative;
}

.mv-title p:nth-of-type(2) {
  margin: 4.5% 0 0 0.5%;
  letter-spacing: 0.06em;
}

@media (max-width: 480px) {
  .mv-title p:nth-of-type(2) {
    margin: 6.9% 0 0 0.5%;
    letter-spacing: 0.01em;
  }
}

.mv-title p:nth-of-type(3) {
  margin: 5% 0 0 0.5%;
  letter-spacing: 0.1em;
}

@media (max-width: 480px) {
  .mv-title p:nth-of-type(3) {
    letter-spacing: 0.05em;
  }
}

.mv-title::before {
  position: absolute;
  top: -13%;
  left: -0.5%;
  content: url(../images/mark_fvpc.svg);
  display: inline-block;
  width: 12%;
  height: auto;
  z-index: 0;
}

@media (max-width: 480px) {
  .mv-title::before {
    content: url(../images/mark_fvsp.svg);
    top: 5%;
  }
}

.box-slider {
  margin: -14% 0 3.2vw;
}

@media (max-width: 480px) {
  .box-slider {
    margin: -24% 0 11vw 0;
  }
}

.slider {
  position: relative;
  z-index: 1;
  height: 100vh;
  width: 100%;
}

.slider-item01, .slider-item02, .slider-item03, .slider-item04 {
  position: relative;
  background: url(../images/manA.png);
  width: 100%;
  height: 29.2vw;
  display: block;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: 56%;
  background-position: 51% 100%;
  background-color: #00a0b0;
}

@media (max-width: 480px) {
  .slider-item01, .slider-item02, .slider-item03, .slider-item04 {
    height: 203px;
  }
}

.slider-item01:after, .slider-item02:after, .slider-item03:after, .slider-item04:after {
  content: "";
  position: absolute;
  top: 5.5%;
  left: 6%;
  width: 88%;
  height: 88%;
  display: block;
  border: 1px solid #fff;
}

.slider-item02 {
  background: url(../images/女性B.png);
  background-repeat: no-repeat;
  background-size: 42%;
  background-position: 51% 100%;
  background-color: #cf5c78;
}

.slider-item03 {
  background: url(../images/manC.png);
  background-repeat: no-repeat;
  background-size: 58%;
  background-position: 51% 100%;
  background-color: #a38f86;
}

.slider-item04 {
  background: url(../images/女性D.png);
  background-repeat: no-repeat;
  background-size: 34%;
  background-position: 51% 100%;
  background-color: #00589b;
}

.slider-item {
  width: 860px;
  height: 560px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 480px) {
  .slider-item {
    width: 330px;
    height: 203px;
  }
}

.mv-img {
  width: 44.8vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 2.5% 8%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 480px) {
  .mv-img {
    width: 97%;
    padding: 0;
    margin: 0 auto;
  }
}

.mv-img li {
  width: calc(100% / 3);
}

.mv-img .mv-img_list {
  position: relative;
  text-align: center;
}

.mv-img .mv-img_list::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 4.5vw;
  height: 4.5vw;
  border-radius: 50%;
  background-color: #f2f2f2;
  top: 9%;
  left: 52%;
  z-index: -1;
}

@media (max-width: 480px) {
  .mv-img .mv-img_list::before {
    width: 40px;
    height: 40px;
    top: 39%;
    left: 47%;
  }
}

.mv-img img {
  width: 63.5%;
  height: auto;
  margin: 0 auto;
  display: block;
  margin: 0 auto 7%;
}

@media (max-width: 480px) {
  .mv-img img {
    width: 85%;
  }
}

.mv-img p {
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 1vw;
  letter-spacing: 0.1em;
  text-align: center;
}

@media (max-width: 480px) {
  .mv-img p {
    font-size: 1.2rem;
  }
}

/* ------------- */
/* about*/
/* ------------- */
.sec1-bg {
  position: relative;
}

@media (max-width: 480px) {
  .sec1-bg {
    padding: 0 0 0 10.5%;
  }
}

.sec1-bg::before {
  position: absolute;
  top: -76%;
  left: 12.5%;
  z-index: 0;
  content: "";
  display: inline-block;
  width: 4vw;
  height: 4vw;
  background-image: url(../images/mark_gr_pc.svg);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}

@media (max-width: 480px) {
  .sec1-bg::before {
    width: 39px;
    height: 39px;
    top: -26%;
    left: 8%;
    background-image: url(../images/mark_gr_sp.svg);
  }
}

.sec1 {
  font-size: 2.4vw;
  letter-spacing: 0.15em;
  margin: 0 0 0 6%;
}

@media (max-width: 480px) {
  .sec1 {
    margin: 0;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
}

.sec1-contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 13%;
  overflow: hidden;
}

@media (max-width: 480px) {
  .sec1-contents {
    display: block;
    margin-bottom: 16%;
  }
}

.sec1-contents::after {
  position: absolute;
  top: 64%;
  left: 8.8%;
  content: "About us";
  color: #f2f2f2;
  font-family: "Lato", sans-serif;
  font-size: 10.5vw;
  z-index: -1;
}

@media (max-width: 480px) {
  .sec1-contents::after {
    font-size: 27vw;
    top: 83.5%;
    left: -2.2%;
    width: 105%;
    letter-spacing: -0.01em;
  }
}

.sec1-contents2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 7.5%;
}

@media (max-width: 480px) {
  .sec1-contents2 {
    display: block;
  }
}

.sec1-details {
  margin: 6.7% 0 0 8.8%;
}

@media (max-width: 480px) {
  .sec1-details {
    margin: 6.7% 11% 0 10.8%;
  }
}

.sec1-img {
  width: 33%;
  height: auto;
  margin-top: auto;
}

@media (max-width: 480px) {
  .sec1-img {
    width: 100%;
    height: auto;
    padding-bottom: 10%;
  }
}

.sec1-img2 {
  width: 33%;
  height: auto;
  margin: 0 12% 0 7.8%;
}

@media (max-width: 480px) {
  .sec1-img2 {
    width: 80%;
    margin: 0 auto 16% 0;
  }
}

/* ------------- */
/* reason*/
/* ------------- */
.bg-reason {
  position: relative;
  background-color: #f2f2f2;
  margin-bottom: 9%;
  padding: 14% 8.8% 4.2%;
  z-index: 0;
}

@media (max-width: 480px) {
  .bg-reason {
    background: none;
    padding: 25% 0 4.2% 10.5%;
    margin-bottom: 16.5%;
  }
}

.bg-reason::before {
  position: absolute;
  top: -2.8%;
  left: 47.8%;
  content: "Advantage";
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 10.5vw;
  z-index: 1;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.16);
}

@media (max-width: 480px) {
  .bg-reason::before {
    top: -0.8%;
    left: 11.8%;
    font-size: 6rem;
  }
}

@media (max-width: 480px) {
  .gray-reason {
    position: absolute;
    top: 0;
    left: 0;
    width: 88%;
    height: 100%;
    z-index: -10;
    background-color: #f2f2f2;
  }
}

.sec2-bg {
  position: relative;
}

.sec2-bg::before {
  position: absolute;
  top: -100%;
  left: 17%;
  z-index: 0;
  content: "";
  display: inline-block;
  width: 4vw;
  height: 4vw;
  background-image: url(../images/mark_fvpc.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .sec2-bg::before {
    width: 39px;
    height: 39px;
    top: -30%;
    left: -2%;
    background-image: url(../images/mark_fvsp.svg);
  }
}

.sec2 {
  font-size: 2.4vw;
  letter-spacing: 0.15em;
  margin: 0 0 0 6%;
}

@media (max-width: 480px) {
  .sec2 {
    margin: 0;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
}

.reason-contents {
  padding-top: 8%;
}

@media (max-width: 480px) {
  .reason-contents {
    padding-top: 12%;
  }
}

.reason-details, .reason-details2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 13.2%;
}

@media (max-width: 480px) {
  .reason-details, .reason-details2 {
    display: block;
  }
}

.reason-details:last-of-type, .reason-details2:last-of-type {
  margin-bottom: 6.5%;
}

.reason-details2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
  margin-bottom: 13.5%;
}

.reason-info {
  width: 47%;
}

@media (max-width: 480px) {
  .reason-info {
    width: 100%;
  }
}

.reason-info p {
  position: relative;
  margin-bottom: 9%;
  padding-top: 6.5%;
  color: #2ea7e0;
  font-family: "Lato", sans-serif;
  font-size: 1.2vw;
  letter-spacing: 0.15em;
}

@media (max-width: 480px) {
  .reason-info p {
    margin-bottom: 11%;
    padding-top: 2.5%;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}

.reason-info p::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 5vw;
  height: 5vw;
  border-radius: 50%;
  background-color: #fff;
  top: 0.5vw;
  left: 9%;
  z-index: -1;
}

@media (max-width: 480px) {
  .reason-info p::before {
    width: 40px;
    height: 40px;
    top: -14.5%;
    left: 14%;
  }
}

.reason-info h3 {
  margin-bottom: 10%;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 2.1vw;
  letter-spacing: 0.1em;
}

@media (max-width: 480px) {
  .reason-info h3 {
    margin-bottom: 12.5%;
    font-size: 1.6rem;
  }
}

.reason-info h4 {
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  line-height: 2;
}

@media (max-width: 480px) {
  .reason-info h4 {
    padding: 0 16.5% 0 0;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.reason-info h4 span {
  color: #cf5c78;
}

.reason-img, .reason-img2, .reason-img3 {
  width: 40%;
  height: auto;
  min-width: 270px;
  opacity: 0;
}

@media (max-width: 480px) {
  .reason-img, .reason-img2, .reason-img3 {
    width: 89%;
    min-width: 89%;
    margin: 11% 0 19% auto;
  }
}

.reason-img.is-show, .is-show.reason-img2, .is-show.reason-img3 {
  -webkit-animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .reason-img2 {
    margin: 11% 0 19% -11%;
  }
}

.reason-img2.is-show {
  -webkit-animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .reason-img3 {
    margin: 11% 0 11% auto;
  }
}

.reason-img3.is-show {
  -webkit-animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ------------- */
/* flow*/
/* ------------- */
.sec-flow {
  position: relative;
  height: 50vw;
  margin-bottom: 8.2%;
}

@media (max-width: 480px) {
  .sec-flow {
    height: 1661px;
    margin-bottom: 17.2%;
  }
}

.sec-flow::before {
  position: absolute;
  top: -6.8%;
  left: 8.8%;
  content: "How to use";
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 10.5vw;
  z-index: 1;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.16);
}

@media (max-width: 480px) {
  .sec-flow::before {
    top: -1%;
    left: 17.2%;
    font-size: 6rem;
  }
}

.bg-flow {
  position: absolute;
  right: -6%;
  width: 100.5%;
  height: 49.5vw;
  background-color: #f2f2f2;
  z-index: -10;
}

@media (max-width: 480px) {
  .bg-flow {
    width: 88%;
    right: 0;
    height: 100%;
  }
}

.flow-contents {
  position: absolute;
  left: 2.5%;
  width: 100.5%;
  padding: 13% 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 480px) {
  .flow-contents {
    display: block;
    padding: 25% 0 0 4%;
  }
}

.flow-box {
  width: calc(100% / 4 - 2%);
  padding: 3% 1% 3.6% 2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
}

@media (max-width: 480px) {
  .flow-box {
    width: 77.5%;
    padding: 9.5% 1% 7.1% 11%;
    margin-bottom: 12%;
  }
}

.flow-box .flow-num {
  position: relative;
  margin-bottom: 13%;
  color: #2ea7e0;
  font-size: 1.6vw;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.1em;
  z-index: 1;
}

@media (max-width: 480px) {
  .flow-box .flow-num {
    font-size: 2.4rem;
    margin-bottom: -1%;
  }
}

.flow-box .flow-num::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 5vw;
  height: 5vw;
  border-radius: 50%;
  background-color: #f2f2f2;
  top: -2vw;
  left: 5%;
  z-index: -1;
}

@media (max-width: 480px) {
  .flow-box .flow-num::before {
    width: 50px;
    height: 50px;
    top: -4vw;
    left: 4%;
  }
}

.flow-box .flow-img, .flow-box .flow-img2 {
  display: block;
  width: 83%;
  margin: 0 0 6% 7%;
}

@media (max-width: 480px) {
  .flow-box .flow-img, .flow-box .flow-img2 {
    width: 77%;
    margin: 0 0 3% 4%;
  }
}

.flow-box .flow-img2 {
  margin: 0 0 6% 9%;
}

@media (max-width: 480px) {
  .flow-box .flow-img2 {
    margin: 0 0 3% 4%;
  }
}

.flow-box .flow-text, .flow-box .flow-text2, .flow-box .flow-text3 {
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  padding: 0 13% 0 6%;
  line-height: 2;
  letter-spacing: 0.01em;
}

@media (max-width: 480px) {
  .flow-box .flow-text, .flow-box .flow-text2, .flow-box .flow-text3 {
    padding: 0 11% 0 0%;
    font-size: 1.4rem;
    line-height: 1.9;
  }
}

.flow-box .flow-text2 {
  padding: 0 10% 0 9%;
}

@media (max-width: 480px) {
  .flow-box .flow-text2 {
    padding: 0 11% 0 0%;
  }
}

.flow-box .flow-text3 {
  padding: 0 10% 0 9%;
}

@media (max-width: 480px) {
  .flow-box .flow-text3 {
    padding: 0 11% 0 0%;
  }
}

/* ------------- */
/* question*/
/* ------------- */
.sec-question {
  position: relative;
  width: 100%;
  height: auto;
  background-image: url(../images/QA.png);
  background-size: cover;
  background-position: 0 74%;
  background-repeat: no-repeat;
  margin-bottom: 8.5%;
  z-index: 0;
}

@media (max-width: 480px) {
  .sec-question {
    width: 88%;
    margin-bottom: 16.5%;
    background-position: 78.8% 0;
    background-size: 654%;
  }
}

.sec-question::before {
  position: absolute;
  top: -7.8%;
  right: 3%;
  content: "Q＆A";
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 10.5vw;
  z-index: 1;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.16);
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .sec-question::before {
    top: -2%;
    right: 6%;
    font-size: 6rem;
    letter-spacing: 0.14em;
  }
}

.sec-question::after {
  width: 100%;
  height: 100%;
  z-index: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.sec3 {
  display: block;
  padding: 5% 0 5.5%;
  color: #fff;
  font-size: 2.4vw;
  letter-spacing: 0.15em;
}

@media (max-width: 480px) {
  .sec3 {
    margin: 0 auto 13%;
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 31% 0 0;
  }
}

.accordion {
  padding-bottom: 4.5%;
}

@media (max-width: 480px) {
  .accordion {
    padding-bottom: 12%;
  }
}

.box-white {
  width: 53%;
  min-width: 450px;
  margin: 0 auto;
  padding: 2.8% 6% 3% 8.2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
}

@media (max-width: 480px) {
  .box-white {
    width: 85%;
    min-width: 85%;
    margin: 0 auto;
    padding: 3% 0 7% 12%;
  }
}

.ac-box {
  width: 100%;
  border-bottom: 1px solid #333333;
}

@media (max-width: 480px) {
  .ac-box {
    width: 83%;
  }
}

.q-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  .q-item {
    display: block;
  }
}

.q-item .q-icon {
  position: relative;
  display: inline-block;
  margin-right: 8%;
  margin-left: 5%;
  font-family: "Lato", sans-serif;
  font-size: 1.6vw;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  .q-item .q-icon {
    margin: 0 0 10% -80%;
    font-size: 1.6rem;
  }
}

.q-item .q-icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 3.5vw;
  height: 3.5vw;
  border-radius: 50%;
  background-color: #2ea7e0;
  z-index: -1;
}

@media (max-width: 480px) {
  .q-item .q-icon::before {
    width: 40px;
    height: 40px;
  }
}

.ac-parent {
  position: relative;
  letter-spacing: 0.06em;
  padding: 7% 0;
  line-height: 1.8;
  cursor: pointer;
  z-index: 0;
}

@media (max-width: 480px) {
  .ac-parent {
    padding: 16.5% 0 15%;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

.ac-parent:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 45%;
  right: 8px;
  width: 0.9vw;
  height: 0.9vw;
  border-right: 3px solid #333333;
  border-bottom: 3px solid #333333;
  -webkit-transform: translateY(-50%) rotate(46deg);
  transform: translateY(-50%) rotate(46deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 480px) {
  .ac-parent:after {
    top: 17%;
    right: 1px;
    width: 11px;
    height: 11px;
    -webkit-transform: translateY(-50%) rotate(44deg);
    transform: translateY(-50%) rotate(44deg);
  }
}

.ac-parent.open:after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.ac-child {
  display: none;
  position: relative;
  letter-spacing: 0.06em;
  padding: 1% 0 4.5%;
  line-height: 1.8;
  cursor: pointer;
  z-index: 0;
}

@media (max-width: 480px) {
  .ac-child {
    padding: 2.5% 0 15%;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.a-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  .a-item {
    display: block;
  }
}

.a-item .a-icon {
  position: relative;
  display: inline-block;
  margin-right: 8%;
  margin-left: 5%;
  font-family: "Lato", sans-serif;
  font-size: 1.6vw;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  .a-item .a-icon {
    margin: 0 0 10% -80%;
    font-size: 1.6rem;
  }
}

.a-item .a-icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 3.5vw;
  height: 3.5vw;
  border-radius: 50%;
  background-color: #cf5c78;
  z-index: -1;
}

@media (max-width: 480px) {
  .a-item .a-icon::before {
    width: 40px;
    height: 40px;
  }
}

/* ------------- */
/* cv*/
/* ------------- */
.bg-cv {
  position: relative;
  z-index: 0;
  background-color: #1a416a;
  width: 106%;
  padding: 5% 0 4.2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 480px) {
  .bg-cv {
    width: 100%;
    padding: 15.5% 0 15.5%;
  }
}

.bg-cv .sec4 {
  font-size: 1.6vw;
  letter-spacing: 0.14em;
  color: #fff;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 3.5%;
}

@media (max-width: 480px) {
  .bg-cv .sec4 {
    margin-bottom: 10%;
    font-size: 1.6rem;
    text-align: center;
  }
}

/* Scss Document */
.header-btn_pc {
  position: relative;
  width: 15.5vw;
  height: 2.8vw;
  display: block;
  min-width: 180px;
  min-height: 35px;
  margin: 1.8vw 39px 0 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: #2ea7e0;
  overflow: hidden;
  padding: 0;
}

@media (max-width: 480px) {
  .header-btn_pc {
    display: none;
  }
}

.header-btn_pc .btn-text {
  display: block;
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.13em;
  color: #fff;
  font-family: "Sawarabi Gothic", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  position: relative;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 480px) {
  .header-btn_pc .btn-text {
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0;
  }
}

.header-btn_pc .btn-text::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header-btn_pc .btn-text:hover {
  opacity: 1;
  color: #2ea7e0;
}

.header-btn_pc .btn-text:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #2ea7e0;
}

.h-btn img {
  width: 45px;
  height: 45px;
  display: block;
  margin-right: 10px;
  color: #fff;
  padding: 8px;
  background-color: #2ea7e0;
}

@media (max-width: 480px) {
  .header-btn_sp {
    padding: 0;
    background: none;
  }
}

.other {
  background-color: #f2f2f2;
  padding-top: 10px;
  padding-bottom: 106px;
}

@media (max-width: 480px) {
  .other {
    padding: 45px 0 1px;
  }
}

.inner-other {
  width: 62.5%;
  margin: 10vw auto 1%;
  background-color: #fff;
}

@media (max-width: 480px) {
  .inner-other {
    width: 90%;
    margin: 60px auto 40px;
  }
}

.other-title {
  padding: 3.5vw 0 2.8vw;
  font-size: 1.36vw;
  font-family: "Sawarabi Gothic", sans-serif;
  text-align: center;
}

@media (max-width: 480px) {
  .other-title {
    padding: 62px 0 23px;
    font-size: 1.8rem;
  }
}

.pv-policy {
  position: relative;
  width: 5vw;
  height: 5vw;
  margin: 0 auto 2vw;
  background-color: #1a416a;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  .pv-policy {
    width: 80px;
    height: 80px;
    margin: 0 auto 38px;
  }
}

.pv-policy img {
  width: 2.7vw;
  height: auto;
}

@media (max-width: 480px) {
  .pv-policy img {
    width: 40px;
    height: 50px;
  }
}

.under-line {
  width: 11%;
  margin: 0 auto 4vw;
  border-bottom: 5px solid #1a416a;
}

@media (max-width: 480px) {
  .under-line {
    width: 39%;
    margin: 0 auto 60px;
    border-bottom: 3px solid #1a416a;
  }
}

.other-contents {
  padding: 0 9% 1.5vw;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 0.84vw;
  line-height: 2;
  letter-spacing: 0.01em;
}

@media (max-width: 480px) {
  .other-contents {
    padding: 0 7% 68px;
    font-size: 1.4rem;
  }
  .other-contents dd:last-of-type {
    margin-bottom: 0;
  }
}

.other-contents_text {
  margin-bottom: 1.8vw;
}

@media (max-width: 480px) {
  .other-contents_text {
    margin-bottom: 27px;
  }
}

/* Scss Document */
.sec-contact {
  background-color: #f2f2f2;
  padding-top: 10px;
  padding-bottom: 20px;
  color: #333;
}

@media (max-width: 480px) {
  .sec-contact {
    padding: 45px 0 1px;
  }
}

.inner-contact {
  position: relative;
  z-index: 0;
  width: 62.5%;
  margin: 10vw auto 1%;
  font-family: "Sawarabi Gothic", sans-serif;
  background-color: #fff;
}

@media (max-width: 480px) {
  .inner-contact {
    width: 90%;
    margin: 58px auto 0;
  }
}

.contact-title {
  padding: 4vw 0 2.8vw;
  font-size: 2.1vw;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: bold;
  color: #333333;
  line-height: 1.39;
  letter-spacing: 0.08em;
  text-align: center;
}

@media (max-width: 480px) {
  .contact-title {
    padding: 57px 0 34px;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.01em;
  }
}

.contact-info {
  margin-bottom: 3.2vw;
  padding: 0 12.5vw 0 12vw;
  font-size: 0.84vw;
  font-family: "YuGothic medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 2;
  letter-spacing: 0.07em;
  color: #333333;
}

@media (max-width: 480px) {
  .contact-info {
    margin-bottom: 90px;
    font-family: "Sawarabi Gothic", sans-serif;
    font-size: 1.4rem;
    padding: 0 5% 0 7%;
    text-align: left;
    letter-spacing: -0.01em;
  }
}

.contact-form {
  width: 47.5%;
  min-width: 280px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .contact-form {
    width: 87%;
    min-width: 87%;
    padding: 0 0 0 6px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.form {
  margin-bottom: 5.5vw;
  padding-bottom: 12%;
}

@media (max-width: 480px) {
  .form {
    margin-bottom: 40px;
  }
}

.form-contents {
  font-size: 0.94vw;
  letter-spacing: 0.1em;
}

@media (max-width: 480px) {
  .form-contents {
    font-size: 1.4rem;
  }
}

.form-item, .form-item2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 480px) {
  .form-item2 {
    display: block;
    position: relative;
  }
}

.form-title, .form-title2, .form-title3, .form-title4, .form-title5, .form-title6, .form-title7 {
  width: 29%;
  min-width: 120px;
}

@media (max-width: 480px) {
  .form-title, .form-title2, .form-title3, .form-title4, .form-title5, .form-title6, .form-title7 {
    width: 23%;
    min-width: 23%;
    margin: 0 2px 0 0;
    letter-spacing: -0.01em;
  }
}

.form-title2 {
  padding: 24px 0 0 0;
}

@media (max-width: 480px) {
  .form-title2 {
    padding: 4px 0 0 0;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .form-title3 {
    width: 44%;
    margin: 0 0 18px 0;
    height: 10%;
  }
}

@media (max-width: 480px) {
  .form-title4 {
    width: 44%;
    margin: -8px 0 18px 0;
    height: 10%;
  }
}

.form-title5 {
  line-height: 2;
}

@media (max-width: 480px) {
  .form-title5 {
    width: 36%;
    line-height: 1.3;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .form-title6 {
    width: 37%;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .form-title7 {
    width: 40%;
    line-height: 1.8;
    margin: -2px 2px 10px 0;
  }
}

.form-detail, .form-detail2, .form-detail3, .form-detail4, .form-detail5 {
  width: 70%;
  position: relative;
}

@media (max-width: 480px) {
  .form-detail, .form-detail2, .form-detail3, .form-detail4, .form-detail5 {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .form-detail2 {
    width: 76.5%;
    margin-left: -55px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .form-detail3 {
    width: 63.5%;
  }
}

@media (max-width: 480px) {
  .form-detail4 {
    width: 100%;
  }
}

.form-detail5::before {
  content: "〒";
  position: absolute;
  top: 20px;
  left: -33px;
  font-family: "YuGothic Bold", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

@media (max-width: 480px) {
  .form-detail5::before {
    margin-left: 32px;
    top: 6px;
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .form-detail5 {
    width: 127%;
  }
}

.form-parts, .form-parts2, .form-parts3, .form-parts4, .form-parts5, .form-parts6, .form-parts7, .form-parts8, .form-parts9, .form-parts10 {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: solid 1px #707070;
  background-color: #fff;
  width: 21vw;
  height: 3.6vw;
  margin-bottom: 15.2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 480px) {
  .form-parts, .form-parts2, .form-parts3, .form-parts4, .form-parts5, .form-parts6, .form-parts7, .form-parts8, .form-parts9, .form-parts10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 40px;
    margin-bottom: 46px;
  }
}

@media (max-width: 480px) {
  .form-parts2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 42px;
  }
}

@media (max-width: 480px) {
  .form-parts3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 46px;
    margin-top: 2px;
  }
}

.form-parts4 {
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .form-parts4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 43px;
    margin-top: 7px;
  }
}

.form-parts5 {
  padding: 0;
  height: 163px;
  margin-bottom: 5vw;
}

@media (max-width: 480px) {
  .form-parts5 {
    height: 289px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.form-parts6 {
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .form-parts6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 40px;
    margin-left: 27px;
    width: 90%;
    height: 40px;
  }
}

.form-parts7 {
  margin-bottom: 20px;
  width: 10.5vw;
}

@media (max-width: 480px) {
  .form-parts7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 52%;
    height: 40px;
    margin-left: 27px;
    margin-bottom: 41px;
  }
}

.form-parts8 {
  position: relative;
  margin-bottom: 20px;
  width: 10.5vw;
}

@media (max-width: 480px) {
  .form-parts8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 53%;
    height: 40px;
    margin-bottom: 44px;
    margin-left: 26px;
  }
}

@media (max-width: 480px) {
  .form-parts9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 51px 17px;
    width: 92%;
    height: 40px;
  }
}

.form-parts10 {
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .form-parts10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 42px;
  }
}

.form-parts-text, .form-parts-text2 {
  font-size: 0.94vw;
  letter-spacing: 0.1em;
}

@media (max-width: 480px) {
  .form-parts-text, .form-parts-text2 {
    font-size: 1.4rem;
  }
}

.form-parts-text2 {
  padding-top: 20px;
}

@media (max-width: 480px) {
  .form-parts-text2 {
    width: 100%;
    margin: 0 auto;
    padding: 4%;
    font-size: 1.8rem;
  }
}

.form-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-radio li {
  margin: 0 3.5vw 7vw 0;
}

@media (max-width: 480px) {
  .form-radio li {
    margin: 0 20px 59px 0;
    font-size: 1.5rem;
  }
}

.form-recruit {
  margin-bottom: 2vw;
}

@media (max-width: 480px) {
  .form-recruit {
    margin-bottom: 21px;
  }
}

input[type="radio" i] {
  width: 1vw;
  height: 1vw;
  margin: -1% 0.4vw 0 0.2vw;
}

@media (max-width: 480px) {
  input[type="radio" i] {
    width: 20px;
    height: 20px;
    margin: -1% 7px 0 5px;
  }
}

.policy {
  margin-bottom: 4vw;
  text-align: center;
}

.policy .policy-line {
  display: inline-block;
  border-bottom: 1px solid #333;
}

@media (max-width: 480px) {
  .policy .policy-line {
    padding-bottom: 2%;
  }
}

.policy .policy-space {
  margin-left: 0.6vw;
}

@media (max-width: 480px) {
  .policy .policy-space {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .policy .policy-space2 {
    margin: 0 0 0 31px;
  }
}

@media (max-width: 480px) {
  .policy {
    margin: 32px 0 36px;
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.3;
  }
}

.important::after {
  display: block;
  content: "必須";
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  width: 34.4%;
  margin-top: 8%;
  padding: 4%;
  text-align: center;
  color: #fff;
  background-color: #1a416a;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: bold;
}

@media (max-width: 480px) {
  .important::after {
    width: 40px;
    margin-top: 10px;
    padding: 4px;
    font-size: 1.2rem;
    text-align: center;
  }
}

.important2 {
  margin-top: -1%;
}

.important2::before {
  display: block;
  content: "必須";
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  width: 72.4%;
  margin-right: 2vw;
  padding: 10% 0;
  text-align: center;
  color: #fff;
  background-color: #1a416a;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: bold;
}

@media (max-width: 480px) {
  .important2::before {
    width: 40px;
    margin-top: 32px;
    margin-right: 6vw;
    padding: 4px;
    font-size: 1.2rem;
    text-align: center;
  }
}

.policy-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0 5.5%;
}

@media (max-width: 480px) {
  .policy-contents {
    padding: 0;
  }
}

input[type="text"] {
  padding-left: 10%;
}

input[type="tel" i] {
  padding-left: 10%;
}

input[type="email" i] {
  padding-left: 10%;
}

input[type="button" i] {
  padding: 0;
}

.submit-btn {
  width: 23vw;
  height: 4vw;
  margin: 0 auto;
  color: #fff;
  background-color: #2ea7e0;
  border: 1px solid #2ea7e0;
  -webkit-box-shadow: 0 3px 6px #ccc;
          box-shadow: 0 3px 6px #ccc;
  text-align: center;
  vertical-align: middle;
  font-size: 1.2vw;
  letter-spacing: 0.15em;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: bold;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  .submit-btn {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 240px;
    height: 40px;
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

.form-btn {
  position: relative;
  width: 23vw;
  height: 4vw;
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
  z-index: 10;
  background: #2ea7e0;
}

@media (max-width: 480px) {
  .form-btn {
    width: 240px;
    padding-bottom: 39px;
  }
}

.form-btn:hover {
  opacity: 0.6;
}

/* -- for JavaScript ここから -------------------------------------------------------------------------------- */
form#mail_form dl dt span.optional {
  display: none;
}

form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
  display: block;
  color: #ff0000;
  margin-top: 3px;
  text-align: left;
}

@media (max-width: 480px) {
  form#mail_form dl dd span.error_blank,
  form#mail_form dl dd span.error_format,
  form#mail_form dl dd span.error_match {
    margin-top: 0;
  }
}

form#mail_form input#postal + a {
  margin-left: 2vw;
  vertical-align: 0.5vw;
  padding: 3% 4%;
  border-radius: 10px;
  background: #1a416a;
  font-size: 0.84vw;
  color: #fff;
  font-family: "YuGothic Bold", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 480px) {
  form#mail_form input#postal + a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 1.4rem;
    margin-left: 5px;
    padding: 11px 6px;
    vertical-align: 146%;
    letter-spacing: -0.01em;
  }
}

form#mail_form input#postal + a:hover {
  cursor: pointer;
  background: #333333;
}

span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffffff;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load-circle 1s linear infinite;
  animation: load-circle 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}

@-webkit-keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */
form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]:focus,
form#mail_form input[type="tel"]:focus,
form#mail_form textarea:focus {
  -webkit-box-shadow: 0px 0px 5px #55ccff;
          box-shadow: 0px 0px 5px #55ccff;
  border: 1px solid #55ccff;
  background: #ffffff;
}

/* -- for JavaScript ここから -------------------------------------------------------------------------------- */
/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */
/*# sourceMappingURL=style.css.map */