@charset "UTF-8";
/* ====================================================
reset style
==================================================== */
html {
  overflow-y: scroll;
  font-size: 10px;
  /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

fieldset, img {
  border: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input, textarea, select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

del, ins {
  text-decoration: none;
}

/* ====================================================
Color
==================================================== */
/* ====================================================
Font
==================================================== */
/* ====================================================
Position & transform
==================================================== */
/* ====================================================
Media Quary
==================================================== */
/* ====================================================
px→vwの計算

.foo {
  width: vw(40px);
}

.bar {
  width: vw(40px, 768px);
}

.baz {
  width: vw(50%);
}
==================================================== */
/* ====================================================
// 隣接要素のmargin
==================================================== */
/* ====================================================
// formスタイルリセット
==================================================== */
/* ====================================================
// flexセット
==================================================== */
/* ====================================================
// 疑似クラス
==================================================== */
/* ====================================================
// hover時の透過度
==================================================== */
/* ====================================================
// グラデーション
==================================================== */
/* ====================================================
object-fit
.photo__image {
  &.-image1 {
    @include object-fit(cover);
  }
  
  &.-image2 {
    @include object-fit(contain, top center);
  }
}
==================================================== */
/* ====================================================
画像などを縦横比を維持したままレスポンシブ対応
*画像やGoogle Map、YouTubeの埋め込みなどを縦横比を維持したままレスポンシブ対応
.photo {
  // 画像を16:9にトリミングして縦横比を常に保つ
  @include aspect-ratio(16, 9);

  & > .image {
    @include object-fit(cover);
  }
}
==================================================== */
/* ====================================================
Margin PC and SP
==================================================== */
@media screen and (min-width: 835px) {
  .mbpc-0 {
    margin-bottom: 0px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-0 {
    margin-bottom: 0px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-1 {
    margin-bottom: 1px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-1 {
    margin-bottom: 1px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-2 {
    margin-bottom: 2px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-2 {
    margin-bottom: 2px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-3 {
    margin-bottom: 3px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-3 {
    margin-bottom: 3px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-4 {
    margin-bottom: 4px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-4 {
    margin-bottom: 4px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-5 {
    margin-bottom: 5px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-5 {
    margin-bottom: 5px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-6 {
    margin-bottom: 6px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-6 {
    margin-bottom: 6px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-7 {
    margin-bottom: 7px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-7 {
    margin-bottom: 7px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-8 {
    margin-bottom: 8px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-8 {
    margin-bottom: 8px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-9 {
    margin-bottom: 9px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-9 {
    margin-bottom: 9px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-10 {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-10 {
    margin-bottom: 10px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-11 {
    margin-bottom: 11px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-11 {
    margin-bottom: 11px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-12 {
    margin-bottom: 12px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-12 {
    margin-bottom: 12px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-13 {
    margin-bottom: 13px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-13 {
    margin-bottom: 13px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-14 {
    margin-bottom: 14px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-14 {
    margin-bottom: 14px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-15 {
    margin-bottom: 15px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-15 {
    margin-bottom: 15px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-16 {
    margin-bottom: 16px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-16 {
    margin-bottom: 16px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-17 {
    margin-bottom: 17px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-17 {
    margin-bottom: 17px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-18 {
    margin-bottom: 18px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-18 {
    margin-bottom: 18px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-19 {
    margin-bottom: 19px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-19 {
    margin-bottom: 19px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-20 {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-20 {
    margin-bottom: 20px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-21 {
    margin-bottom: 21px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-21 {
    margin-bottom: 21px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-22 {
    margin-bottom: 22px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-22 {
    margin-bottom: 22px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-23 {
    margin-bottom: 23px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-23 {
    margin-bottom: 23px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-24 {
    margin-bottom: 24px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-24 {
    margin-bottom: 24px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-25 {
    margin-bottom: 25px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-25 {
    margin-bottom: 25px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-26 {
    margin-bottom: 26px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-26 {
    margin-bottom: 26px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-27 {
    margin-bottom: 27px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-27 {
    margin-bottom: 27px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-28 {
    margin-bottom: 28px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-28 {
    margin-bottom: 28px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-29 {
    margin-bottom: 29px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-29 {
    margin-bottom: 29px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-30 {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-30 {
    margin-bottom: 30px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-31 {
    margin-bottom: 31px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-31 {
    margin-bottom: 31px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-32 {
    margin-bottom: 32px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-32 {
    margin-bottom: 32px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-33 {
    margin-bottom: 33px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-33 {
    margin-bottom: 33px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-34 {
    margin-bottom: 34px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-34 {
    margin-bottom: 34px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-35 {
    margin-bottom: 35px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-35 {
    margin-bottom: 35px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-36 {
    margin-bottom: 36px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-36 {
    margin-bottom: 36px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-37 {
    margin-bottom: 37px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-37 {
    margin-bottom: 37px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-38 {
    margin-bottom: 38px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-38 {
    margin-bottom: 38px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-39 {
    margin-bottom: 39px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-39 {
    margin-bottom: 39px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-40 {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-40 {
    margin-bottom: 40px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-41 {
    margin-bottom: 41px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-41 {
    margin-bottom: 41px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-42 {
    margin-bottom: 42px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-42 {
    margin-bottom: 42px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-43 {
    margin-bottom: 43px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-43 {
    margin-bottom: 43px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-44 {
    margin-bottom: 44px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-44 {
    margin-bottom: 44px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-45 {
    margin-bottom: 45px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-45 {
    margin-bottom: 45px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-46 {
    margin-bottom: 46px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-46 {
    margin-bottom: 46px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-47 {
    margin-bottom: 47px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-47 {
    margin-bottom: 47px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-48 {
    margin-bottom: 48px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-48 {
    margin-bottom: 48px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-49 {
    margin-bottom: 49px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-49 {
    margin-bottom: 49px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-50 {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-50 {
    margin-bottom: 50px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-51 {
    margin-bottom: 51px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-51 {
    margin-bottom: 51px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-52 {
    margin-bottom: 52px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-52 {
    margin-bottom: 52px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-53 {
    margin-bottom: 53px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-53 {
    margin-bottom: 53px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-54 {
    margin-bottom: 54px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-54 {
    margin-bottom: 54px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-55 {
    margin-bottom: 55px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-55 {
    margin-bottom: 55px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-56 {
    margin-bottom: 56px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-56 {
    margin-bottom: 56px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-57 {
    margin-bottom: 57px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-57 {
    margin-bottom: 57px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-58 {
    margin-bottom: 58px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-58 {
    margin-bottom: 58px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-59 {
    margin-bottom: 59px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-59 {
    margin-bottom: 59px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-60 {
    margin-bottom: 60px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-60 {
    margin-bottom: 60px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-61 {
    margin-bottom: 61px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-61 {
    margin-bottom: 61px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-62 {
    margin-bottom: 62px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-62 {
    margin-bottom: 62px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-63 {
    margin-bottom: 63px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-63 {
    margin-bottom: 63px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-64 {
    margin-bottom: 64px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-64 {
    margin-bottom: 64px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-65 {
    margin-bottom: 65px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-65 {
    margin-bottom: 65px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-66 {
    margin-bottom: 66px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-66 {
    margin-bottom: 66px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-67 {
    margin-bottom: 67px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-67 {
    margin-bottom: 67px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-68 {
    margin-bottom: 68px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-68 {
    margin-bottom: 68px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-69 {
    margin-bottom: 69px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-69 {
    margin-bottom: 69px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-70 {
    margin-bottom: 70px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-70 {
    margin-bottom: 70px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-71 {
    margin-bottom: 71px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-71 {
    margin-bottom: 71px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-72 {
    margin-bottom: 72px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-72 {
    margin-bottom: 72px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-73 {
    margin-bottom: 73px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-73 {
    margin-bottom: 73px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-74 {
    margin-bottom: 74px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-74 {
    margin-bottom: 74px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-75 {
    margin-bottom: 75px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-75 {
    margin-bottom: 75px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-76 {
    margin-bottom: 76px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-76 {
    margin-bottom: 76px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-77 {
    margin-bottom: 77px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-77 {
    margin-bottom: 77px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-78 {
    margin-bottom: 78px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-78 {
    margin-bottom: 78px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-79 {
    margin-bottom: 79px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-79 {
    margin-bottom: 79px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-80 {
    margin-bottom: 80px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-80 {
    margin-bottom: 80px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-81 {
    margin-bottom: 81px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-81 {
    margin-bottom: 81px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-82 {
    margin-bottom: 82px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-82 {
    margin-bottom: 82px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-83 {
    margin-bottom: 83px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-83 {
    margin-bottom: 83px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-84 {
    margin-bottom: 84px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-84 {
    margin-bottom: 84px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-85 {
    margin-bottom: 85px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-85 {
    margin-bottom: 85px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-86 {
    margin-bottom: 86px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-86 {
    margin-bottom: 86px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-87 {
    margin-bottom: 87px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-87 {
    margin-bottom: 87px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-88 {
    margin-bottom: 88px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-88 {
    margin-bottom: 88px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-89 {
    margin-bottom: 89px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-89 {
    margin-bottom: 89px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-90 {
    margin-bottom: 90px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-90 {
    margin-bottom: 90px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-91 {
    margin-bottom: 91px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-91 {
    margin-bottom: 91px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-92 {
    margin-bottom: 92px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-92 {
    margin-bottom: 92px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-93 {
    margin-bottom: 93px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-93 {
    margin-bottom: 93px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-94 {
    margin-bottom: 94px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-94 {
    margin-bottom: 94px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-95 {
    margin-bottom: 95px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-95 {
    margin-bottom: 95px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-96 {
    margin-bottom: 96px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-96 {
    margin-bottom: 96px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-97 {
    margin-bottom: 97px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-97 {
    margin-bottom: 97px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-98 {
    margin-bottom: 98px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-98 {
    margin-bottom: 98px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-99 {
    margin-bottom: 99px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-99 {
    margin-bottom: 99px !important;
  }
}

@media screen and (min-width: 835px) {
  .mbpc-100 {
    margin-bottom: 100px !important;
  }
}

@media screen and (max-width: 834px) {
  .mbsp-100 {
    margin-bottom: 100px !important;
  }
}

/* ====================================================
MODULE
==================================================== */
.c-fc__ff {
  color: #fff;
}

.c-fc__pk {
  color: #f984b6;
}

.c-fc__bl {
  color: #0394d9;
}

.c-fc__bl2 {
  color: #0096df;
}

.c-fc__ye {
  color: #fff372;
}

.c-fc__gr {
  color: #02ba04;
}

.c-ft__jp {
  font-family: "Noto Serif JP", serif;
}

.c-ft__en {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  letter-spacing: .05em;
}

.c-fw__lt {
  font-weight: 300 !important;
}

.c-fw__rg {
  font-weight: 400 !important;
}

.c-fw__md {
  font-weight: 500 !important;
}

.c-fw__sbd {
  font-weight: 600 !important;
}

.c-fw__bd {
  font-weight: 700 !important;
}

.c-fw__bk {
  font-weight: 900 !important;
}

.c-tx__v {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

@media screen and (min-width: 835px) {
  .c-tx__v-pc {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
  }
}

.c-al__c {
  text-align: center !important;
}

.c-al__r {
  text-align: right !important;
}

.c-al__l {
  text-align: left;
}

.c-val__md {
  vertical-align: middle;
}

.c-val__top {
  vertical-align: top;
}

.c-fst__i {
  font-style: italic;
}

/*テキストMODULE*/
.c-txt01 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2.4;
}

@media screen and (max-width: 834px) {
  .c-txt01 {
    line-height: 1.8;
  }
}

.c-txt02 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
}

@media screen and (max-width: 640px) {
  .c-txt02 {
    line-height: 1.8;
  }
}

.c-txt03 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 640px) {
  .c-txt03 {
    line-height: 1.8;
  }
}

.c-ttl01 {
  position: relative;
  padding-bottom: 20px;
  line-height: 1.4;
  text-align: center;
}

.c-ttl01 .en {
  display: block;
  color: #0096df;
  margin-top: 20px;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .18em;
}

@media screen and (max-width: 834px) {
  .c-ttl01 .en {
    margin-top: 10px;
  }
}

.c-ttl01 .jp {
  color: #b7b7b7;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: .06em;
}

@media screen and (max-width: 834px) {
  .c-ttl01 .jp {
    font-size: max(26px, 3.59vw);
  }
}

.c-ttl01:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 74px;
  height: 3px;
}

.c-ttl01:before {
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  background: #f984b6;
  background: -webkit-gradient(linear, left top, right top, from(#f984b6), color-stop(50%, #f984b6), color-stop(50%, #0096df), to(#0096df));
  background: -o-linear-gradient(left, #f984b6 0%, #f984b6 50%, #0096df 50%, #0096df 100%);
  background: linear-gradient(to right, #f984b6 0%, #f984b6 50%, #0096df 50%, #0096df 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f984b6', endColorstr='#0096df',GradientType=1 );
}

.c-ttl02 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 640px) {
  .c-ttl02 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.7;
  }
}

.c-ttl02 .strong {
  display: block;
  color: #0394d9;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  .c-ttl02 .strong {
    font-size: max(22px, 3.75vw);
  }
}

.c-ttl03 {
  display: block;
  letter-spacing: .08em;
}

.c-ttl03 .cap {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding: 0 20px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 640px) {
  .c-ttl03 .cap {
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-ttl03 .cap:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 20px;
}

.c-ttl03 .cap:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 20px;
}

.c-ttl03 .cap:before, .c-ttl03 .cap:after {
  bottom: -3px;
  background: #474747;
}

.c-ttl03 .cap:before {
  left: 0;
  -webkit-transform: rotate(-25deg);
      -ms-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

.c-ttl03 .cap:after {
  right: 0;
  -webkit-transform: rotate(25deg);
      -ms-transform: rotate(25deg);
          transform: rotate(25deg);
}

.c-ttl03 .jp {
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.4;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffe0ed));
  background: -o-linear-gradient(transparent 60%, #ffe0ed 60%);
  background: linear-gradient(transparent 60%, #ffe0ed 60%);
}

@media screen and (max-width: 640px) {
  .c-ttl03 .jp {
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 1.8;
  }
}

.c-ttl-cap {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4;
}

@media screen and (max-width: 640px) {
  .c-ttl-cap {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/*リンクMODULE*/
.c-link01 {
  position: relative;
  padding-left: 20px;
  display: inline-block;
  color: #f984b6;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: left;
}

.c-link01:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 14px;
  height: 14px;
}

.c-link01:before {
  left: 0;
  top: 1px;
  content: '\f138';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/*ボタンMODULE*/
/* hover style */
.fn-hover {
  display: inline-block;
}

@media screen and (min-width: 835px) {
  .fn-hover {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .fn-hover:hover {
    opacity: .7;
  }
}

.img-of {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center", sans-serif;
}

.scroll-box {
  padding-bottom: 20px;
  overflow-x: scroll;
  overflow-y: hidden;
}

@media screen and (max-width: 834px) {
  .scroll-box-sp {
    padding-bottom: 20px;
    overflow-x: scroll;
    overflow-y: hidden;
  }
}

.scrollin {
  opacity: 0;
  -webkit-transform: translate(0, 70px);
  -ms-transform: translate(0, 70px);
  transform: translate(0, 70px);
}

.scrollin.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ====================================================
Base style & container
==================================================== */
body {
  color: #3c3c3c;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  background: #fff;
  overflow-x: hidden;
}

.inner {
  margin: 0 auto;
  padding: 0 40px;
  max-width: 1180px;
}

@media screen and (max-width: 834px) {
  .inner {
    width: 100%;
    padding: 0 4.19%;
  }
}

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

@media screen and (min-width: 835px) {
  .sp {
    display: none;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none;
  }
}

/* ====================================================
Float & clear
==================================================== */
.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

/* ====================================================
Header
==================================================== */
#main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 1000;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

#main-header .container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

#main-header .logo {
  display: none;
  margin-top: 12px;
  margin-left: 4.6%;
  width: 198px;
  height: 48px;
}

#main-header .mobile-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin-left: auto;
  -webkit-transition: background .5s;
  -o-transition: background .5s;
  transition: background .5s;
  z-index: 102;
  cursor: pointer;
}

#main-header .mobile-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 36px;
  height: 2px;
  font-size: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: #fff;
  border-radius: 3px;
}

#main-header .mobile-icon span:before, #main-header .mobile-icon span:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: '';
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 3px;
}

#main-header .mobile-icon span:before {
  top: -9px;
}

#main-header .mobile-icon span:after {
  bottom: -9px;
}

#main-header .mobile-icon.mobile-close span {
  background: transparent;
}

#main-header .mobile-icon.mobile-close span:before, #main-header .mobile-icon.mobile-close span:after {
  width: 100%;
  background-color: #0394d9;
}

#main-header .mobile-icon.mobile-close span:before {
  -webkit-transform: translateY(0) rotate(35deg);
  -ms-transform: translateY(0) rotate(35deg);
      transform: translateY(0) rotate(35deg);
  top: 0;
}

#main-header .mobile-icon.mobile-close span:after {
  -webkit-transform: translateY(0) rotate(-35deg);
  -ms-transform: translateY(0) rotate(-35deg);
      transform: translateY(0) rotate(-35deg);
  bottom: 0;
}

#main-header.is-animation, #main-header.active {
  position: fixed;
  top: 0;
  left: 0;
  background: #fffdfc;
}

#main-header.is-animation .mobile-icon span, #main-header.active .mobile-icon span {
  background-color: #0394d9;
}

#main-header.is-animation .mobile-icon span:before, #main-header.is-animation .mobile-icon span:after, #main-header.active .mobile-icon span:before, #main-header.active .mobile-icon span:after {
  background-color: #0394d9;
}

#main-header.is-animation .mobile-icon.mobile-close span, #main-header.active .mobile-icon.mobile-close span {
  background: transparent;
}

#main-header.is-animation .logo, #main-header.active .logo {
  display: block;
}

#main-header .btn-contact {
  display: inline-block;
  width: 50%;
  height: 100px;
  line-height: 100px;
  font-size: 15px;
  font-size: 1.5rem;
  text-align: center;
  background: #f984b6;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

@media screen and (min-width: 835px) {
  #main-header .btn-contact {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  #main-header .btn-contact:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 834px) {
  #main-header .btn-contact {
    height: 70px;
    line-height: 70px;
  }
}

#main-header .btn-contact.__line {
  background: #02ba04;
}

.navGlobal {
  position: relative;
  z-index: 101;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 834px) {
  .navGlobal {
    text-align: center;
  }
}

.navGlobal .navGlobal-inner {
  position: absolute;
  right: 0;
  top: 0;
  margin-left: auto;
  min-height: 560px;
  background: #fff;
  width: 390px;
  -webkit-transition: all .8s;
  -o-transition: all .8s;
  transition: all .8s;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

@media screen and (max-width: 640px) {
  .navGlobal .navGlobal-inner {
    width: 100%;
  }
}

.navGlobalIn {
  padding: 20% 23% 15%;
}

@media screen and (max-width: 834px) {
  .navGlobalIn {
    padding: 70px 5%;
  }
}

.navGlobalIn > li {
  margin: 40px 0;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}

@media screen and (max-width: 834px) {
  .navGlobalIn > li {
    margin: 20px 0;
  }
}

.navGlobalIn > li > a {
  display: block;
  position: relative;
}

.navGlobal .fn-contact {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.navGlobal .fn-contact a {
  display: block;
  width: 50%;
}

.js-nav {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s, visibility .1s .5s;
  -o-transition: opacity .5s, visibility .1s .5s;
  transition: opacity .5s, visibility .1s .5s;
}

.js-nav.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 1s, visibility .1s;
  -o-transition: opacity 1s, visibility .1s;
  transition: opacity 1s, visibility .1s;
}

.js-nav.active .navGlobal-inner {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

/* ====================================================
Footer
==================================================== */
.ft-map {
  position: relative;
  padding-top: 700px;
  width: 100%;
  height: 0;
}

@media screen and (max-width: 1200px) {
  .ft-map {
    padding-top: 46.66vw;
  }
}

@media screen and (max-width: 640px) {
  .ft-map {
    padding-top: 300px;
  }
}

.ft-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#main-footer {
  padding: 80px 0 64px;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
  background: #324667;
}

@media screen and (max-width: 834px) {
  #main-footer {
    padding: 40px 0;
  }
}

#main-footer > .inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#main-footer .address {
  width: 395px;
}

@media screen and (max-width: 834px) {
  #main-footer .address {
    margin-bottom: 40px;
    width: 100%;
  }
}

#main-footer .address .name {
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.8rem;
}

#main-footer .address .tel {
  margin: 20px 0 10px;
  font-size: 17px;
  font-size: 1.7rem;
}

#main-footer .address .c-btn02 {
  margin-top: 25px;
}

#main-footer .ft-nav {
  width: 50%;
  max-width: calc(100% - 430px);
}

@media screen and (max-width: 1300px) {
  #main-footer .ft-nav {
    width: 56%;
  }
}

@media screen and (max-width: 834px) {
  #main-footer .ft-nav {
    width: 100%;
    max-width: 100%;
  }
}

#main-footer .ft-nav .ft-nav__list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 120px;
}

@media screen and (max-width: 1200px) {
  #main-footer .ft-nav .ft-nav__list {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 1024px) {
  #main-footer .ft-nav .ft-nav__list {
    margin-bottom: 40px;
  }
}

#main-footer .ft-nav .ft-nav__list > li {
  width: 25%;
  margin-bottom: 18px;
}

@media screen and (max-width: 1200px) {
  #main-footer .ft-nav .ft-nav__list > li {
    width: 33.33%;
  }
}

@media screen and (max-width: 1024px) {
  #main-footer .ft-nav .ft-nav__list > li {
    width: 50%;
  }
}

@media screen and (min-width: 835px) {
  #main-footer .ft-nav .ft-nav__list a {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  #main-footer .ft-nav .ft-nav__list a:hover {
    opacity: .7;
  }
}

#main-footer .copyright {
  color: #7f8b9f;
  text-align: right;
}

@media screen and (max-width: 834px) {
  #main-footer .copyright {
    text-align: center;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* ====================================================
content style
==================================================== */
@media screen and (max-width: 834px) {
  .page-index {
    padding-bottom: 70px;
  }
}

.btn-fixed {
  position: fixed;
  right: 0;
  z-index: 10;
}

@media screen and (min-width: 835px) {
  .btn-fixed {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.btn-fixed a {
  display: block;
  padding-top: 25px;
  width: 100px;
  height: 100px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.53333;
  font-weight: 500;
  text-align: center;
  background: #f984b6;
}

@media screen and (min-width: 835px) {
  .btn-fixed a {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .btn-fixed a:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 640px) {
  .btn-fixed a {
    width: 50%;
    height: 60px;
    line-height: 60px;
    padding-top: 8px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.64286;
  }
}

.btn-fixed .btn-contact.__line {
  background: #02ba04;
}

.mv {
  position: relative;
}

.mv .inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
}

@media screen and (max-width: 834px) {
  .mv > img {
    height: 80vw;
  }
}

.mv .mv-ttl {
  width: 35%;
}

@media screen and (max-width: 990px) {
  .mv .mv-ttl {
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (max-width: 640px) {
  .mv .mv-ttl {
    max-width: 230px;
  }
}

.mv .mv-ttl .logo {
  width: 385px;
}

.mv .mv-ttl .cap {
  display: block;
  margin-bottom: 40px;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.68;
}

@media screen and (max-width: 834px) {
  .mv .mv-ttl .cap {
    margin-bottom: 25px;
    font-size: max(22px, 3.59vw);
  }
}

.head-bnr {
  background: url(../img/bg-mainbnr.jpg) no-repeat center bottom;
  background-size: cover;
}

.head-bnr .inner {
  padding-top: 50px;
  padding-bottom: 45px;
  position: relative;
}

.head-bnr .inner:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 247px;
  height: 267px;
}

.head-bnr .inner:before {
  left: 5.68%;
  bottom: 0;
  background: url(../img/img-mainbnr01.png) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

@media screen and (max-width: 990px) {
  .head-bnr .inner:before {
    left: 3%;
    width: 24.9%;
  }
}

@media screen and (max-width: 834px) {
  .head-bnr .inner:before {
    left: 1%;
    background: url(../img/sp.png) no-repeat center bottom;
    background-size: contain;
  }
}

@media screen and (max-width: 640px) {
  .head-bnr .inner:before {
    left: 2%;
    width: 18%;
  }
}

.head-bnr .info-block {
  position: relative;
  margin: 0 auto;
  padding: 0 5% 35px;
  max-width: 583px;
  background: #fff;
  border-radius: 15px;
}

.head-bnr .info-block:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 75px;
  height: 218px;
}

.head-bnr .info-block:before {
  right: -6.8%;
  background: url(../img/img-mainbnr02.png) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

@media screen and (min-width: 835px) {
  .head-bnr .info-block:before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 834px) {
  .head-bnr .info-block:before {
    display: none;
    width: 20%;
    bottom: -10%;
    right: -3.5%;
  }
}

.head-bnr .info-block .bar {
  display: inline-block;
  padding: 10px 1.5em;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: .08em;
  background: #0391d4;
  border-radius: 30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.head-bnr .info-block .ttl {
  display: inline-block;
  margin-bottom: 20px;
  padding: 3px 0 3px 55px;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: .08em;
  line-height: 1.4;
  background: url(../img/icn-line.png) no-repeat left center;
  background-size: 45px;
}

@media screen and (max-width: 834px) {
  .head-bnr .info-block .ttl {
    padding-left: 45px;
    font-size: 20px;
    font-size: 2rem;
    background-size: 35px;
    letter-spacing: .05em;
  }
}

.head-bnr .info-block .ttl > span {
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 3px solid #02ba04;
}

.head-bnr .info-block .desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 834px) {
  .head-bnr .info-block .desc {
    line-height: 1.6;
  }
}

.sec-about {
  padding: 100px 0 95px;
  background: url(../img/bg-about.jpg) no-repeat center bottom;
  background-size: 100% auto;
}

@media screen and (max-width: 834px) {
  .sec-about {
    padding: 50px 0;
    background-size: auto 250px;
  }
}

.sec-about .lead-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 80px 0 88px;
}

@media screen and (max-width: 834px) {
  .sec-about .lead-block {
    margin: 40px 0 60px;
  }
}

.sec-about .lead-block .img {
  width: 50%;
}

@media screen and (max-width: 834px) {
  .sec-about .lead-block .img {
    margin-bottom: 20px;
    width: 100%;
  }
}

.sec-about .lead-block .cont {
  padding: 0 4.5%;
  width: 50%;
}

@media screen and (max-width: 834px) {
  .sec-about .lead-block .cont {
    padding: 0;
    width: 100%;
  }
}

.sec-about .lead-block .cont .ttl-block {
  margin-bottom: 30px;
}

@media screen and (max-width: 640px) {
  .sec-about .lead-block .cont .ttl-block {
    margin-bottom: 20px;
  }
}

.sec-about .point-block {
  position: relative;
  padding: 0 5% 48px;
  background: #fff;
  border: 1px solid #3e3e3e;
}

@media screen and (max-width: 834px) {
  .sec-about .point-block {
    padding-bottom: 10px;
  }
}

.sec-about .point-block .ttl-block {
  position: relative;
  margin: 0 auto 25px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 382px;
}

@media screen and (max-width: 834px) {
  .sec-about .point-block .ttl-block {
    margin: 0 auto 15px;
  }
}

.sec-about .point-block .point-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sec-about .point-block .point-list li {
  width: 17.5%;
}

@media screen and (max-width: 990px) {
  .sec-about .point-block .point-list li {
    width: 22%;
  }
}

@media screen and (max-width: 834px) {
  .sec-about .point-block .point-list li {
    margin-bottom: 20px;
    width: 47%;
  }
}

.sec-about .point-block .point-list li .cont {
  margin-top: 25px;
}

@media screen and (max-width: 834px) {
  .sec-about .point-block .point-list li .cont {
    margin-top: 15px;
  }
}

.sec-about .point-block .point-list li .ttl {
  margin-bottom: 15px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
}

@media screen and (max-width: 834px) {
  .sec-about .point-block .point-list li .ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.bnr-block {
  padding-top: 95px;
  padding-bottom: 88px;
}

@media screen and (max-width: 834px) {
  .bnr-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.bnr-line {
  padding: 70px 0 65px;
  background: url(../img/bg-line.jpg) no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 1200px) {
  .bnr-line {
    background-position: left center;
  }
}

@media screen and (max-width: 834px) {
  .bnr-line {
    padding: 40px 0;
    background-position: center center;
  }
}

.bnr-line .c-txt02 {
  margin: 30px 0 35px;
}

.bnr-line .btn-line {
  max-width: 490px;
}

@media screen and (max-width: 834px) {
  .bnr-line .btn-line {
    max-width: 300px;
  }
}

.btn-line {
  display: inline-block;
  padding: 18px 1.5em;
  width: 100%;
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  background: #02ba04;
  border-radius: 60px;
}

@media screen and (max-width: 834px) {
  .btn-line {
    padding: 15px 1.5em;
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (min-width: 835px) {
  .btn-line {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .btn-line:hover {
    opacity: .7;
  }
}

.btn-line > span {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.btn-line i {
  margin-right: 30px;
  font-size: 63px;
  font-size: 6.3rem;
}

@media screen and (max-width: 834px) {
  .btn-line i {
    margin-right: 15px;
    font-size: 40px;
    font-size: 4rem;
  }
}

.sec-recommend {
  padding: 130px 0 115px;
}

@media screen and (max-width: 834px) {
  .sec-recommend {
    padding: 50px 0;
  }
}

.sec-recommend .c-ttl01 {
  margin-bottom: 80px;
}

@media screen and (max-width: 834px) {
  .sec-recommend .c-ttl01 {
    margin-bottom: 40px;
  }
}

.sec-recommend .workStyle-block {
  margin: 50px 0 100px;
  padding: 70px 5% 20px;
  background: #66b5dc;
  border-radius: 15px;
}

@media screen and (max-width: 834px) {
  .sec-recommend .workStyle-block {
    margin: 20px 0 50px;
    padding: 40px 4% 10px;
  }
}

.sec-recommend .workStyle-block .ttl-block {
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 834px) {
  .sec-recommend .workStyle-block .ttl-block {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.sec-recommend .workStyle-block .ttl-block .no {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 700;
}

@media screen and (max-width: 834px) {
  .sec-recommend .workStyle-block .ttl-block .no {
    font-size: 30px;
    font-size: 3rem;
  }
}

.sec-recommend .workStyle-block .cap {
  margin: 30px 0 50px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.4;
}

@media screen and (max-width: 834px) {
  .sec-recommend .workStyle-block .cap {
    margin: 15px 0 25px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.sec-recommend .workStyle-block .cap span {
  display: inline-block;
  position: relative;
  padding: 0 20px;
}

.sec-recommend .workStyle-block .cap span:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 25px;
}

.sec-recommend .workStyle-block .cap span:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 25px;
}

.sec-recommend .workStyle-block .cap span:before, .sec-recommend .workStyle-block .cap span:after {
  bottom: 0;
  background: #fff;
}

.sec-recommend .workStyle-block .cap span:before {
  left: 0;
  -webkit-transform: rotate(-25deg);
      -ms-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

.sec-recommend .workStyle-block .cap span:after {
  right: 0;
  -webkit-transform: rotate(25deg);
      -ms-transform: rotate(25deg);
          transform: rotate(25deg);
}

.sec-recommend .workStyle-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sec-recommend .workStyle-list__item {
  margin-bottom: 43px;
  width: 47.925%;
  background: #fff;
}

@media screen and (max-width: 640px) {
  .sec-recommend .workStyle-list__item {
    margin-bottom: 20px;
    width: 100%;
  }
}

.sec-recommend .workStyle-list__item .img {
  position: relative;
}

.sec-recommend .workStyle-list__item .img .ttl {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  padding: 11px 15px;
  background: #f984b6;
  border-radius: 0 8px 0 0;
  font-size: 18px;
  font-size: 1.8rem;
}

.sec-recommend .workStyle-list__item .img .ttl .no {
  display: inline-block;
  padding-right: 15px;
  margin-right: 20px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 640px) {
  .sec-recommend .workStyle-list__item .img .ttl .no {
    padding-right: 10px;
    margin-right: 15px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 990px) {
  .sec-recommend .workStyle-list__item .img img {
    width: 100%;
    min-height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    font-family: "object-fit: cover; object-position: center", sans-serif;
  }
}

.sec-recommend .workStyle-list__item .cont {
  position: relative;
  padding: 30px 12.6% 35px;
}

@media screen and (max-width: 834px) {
  .sec-recommend .workStyle-list__item .cont {
    padding: 20px 6% 25px;
  }
}

.sec-recommend .workStyle-list__item .cont .icn {
  position: absolute;
  right: 15px;
  bottom: 5px;
  width: 153px;
}

@media screen and (max-width: 640px) {
  .sec-recommend .workStyle-list__item .cont .icn {
    width: 120px;
  }
}

.sec-recommend .workStyle-list__item .cont .ttl-cont {
  margin-bottom: 25px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4;
}

@media screen and (max-width: 640px) {
  .sec-recommend .workStyle-list__item .cont .ttl-cont {
    margin-bottom: 15px;
  }
}

.sec-recommend .case-slide-wrap {
  position: relative;
}

.sec-recommend .case-slide-wrap .slide-arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 30.8vw;
}

@media screen and (max-width: 834px) {
  .sec-recommend .case-slide-wrap .slide-arrows {
    width: 94vw;
  }
}

.sec-recommend .case-slide {
  margin-top: 80px;
}

@media screen and (max-width: 834px) {
  .sec-recommend .case-slide {
    margin-top: 30px;
  }
}

.sec-recommend .case-slide__item {
  padding: 20px 1.346vw 0;
}

@media screen and (max-width: 990px) {
  .sec-recommend .case-slide__item {
    padding: 20px 10px 0;
  }
}

.sec-recommend .case-slide__item .item-inner {
  padding: 0 8% 35px;
  border: 1px solid #ddd;
}

@media screen and (max-width: 834px) {
  .sec-recommend .case-slide__item .item-inner {
    padding: 0 6% 20px;
  }
}

.sec-recommend .case-slide__item .label {
  position: relative;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  padding: 10px 1em;
  width: 100%;
  max-width: 320px;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .08em;
  line-height: 1.4;
  text-align: center;
  background: #0391d4;
  border-radius: 40px;
}

@media screen and (max-width: 1200px) {
  .sec-recommend .case-slide__item .label {
    font-size: 1.2vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-recommend .case-slide__item .label {
    padding: 5px 2em;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

.sec-recommend .case-slide__item .ttl {
  margin: 5px 0 20px;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: .08em;
  line-height: 1.4;
}

@media screen and (max-width: 834px) {
  .sec-recommend .case-slide__item .ttl {
    text-align: center;
  }
}

.slick-dots {
  position: static;
  bottom: 0;
  margin-top: 30px;
}

@media screen and (max-width: 834px) {
  .slick-dots {
    margin-top: 15px;
  }
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button:before {
  width: 10px;
  height: 10px;
  background: #e2e2e2;
}

.slick-dots li.slick-active button:before {
  border: 0;
  background: #9ccfe8;
}

.slide-arrows {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.slide-arrows .slick-arrow {
  position: relative;
  width: 35px;
  height: 35px;
  background: #d7d7d7;
  border-radius: 50%;
}

.slide-arrows .slick-arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  width: 100%;
  line-height: 35px;
  text-align: center;
}

.slide-arrows .slick-arrow:hover, .slide-arrows .slick-arrow.slick-disabled {
  background: #e8e8e8;
}

.slide-arrows .slick-prev:before {
  content: "\f053";
}

.slide-arrows .slick-next {
  margin-left: 2px;
}

.slide-arrows .slick-next:before {
  content: "\f054";
}

.sec-feature .feature-block {
  padding: 70px 0 55px;
  background: #e8f1f6;
}

@media screen and (max-width: 834px) {
  .sec-feature .feature-block {
    padding: 50px 0 20px;
  }
}

.sec-feature .c-ttl01 {
  margin: 30px 0 35px;
}

@media screen and (max-width: 834px) {
  .sec-feature .c-ttl01 {
    margin: 20px 0 35px;
  }
}

.sec-feature .feature-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sec-feature .feature-list__item {
  margin-bottom: 50px;
  width: 46%;
}

@media screen and (max-width: 834px) {
  .sec-feature .feature-list__item {
    margin-bottom: 30px;
    width: 48%;
  }
}

@media screen and (max-width: 640px) {
  .sec-feature .feature-list__item {
    width: 100%;
  }
}

.sec-feature .feature-list__item .img {
  position: relative;
  padding-top: 20px;
}

@media screen and (max-width: 834px) {
  .sec-feature .feature-list__item .img {
    padding-top: 15px;
  }
}

.sec-feature .feature-list__item .img .icn {
  position: absolute;
  top: 0;
  left: -20px;
  width: 112px;
}

@media screen and (max-width: 834px) {
  .sec-feature .feature-list__item .img .icn {
    left: -4%;
    width: 80px;
  }
}

.sec-feature .feature-list__item .cont {
  padding: 0 10px;
}

.sec-feature .feature-list__item .cont .ttl {
  margin: 30px 0 10px;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.77;
}

@media screen and (max-width: 834px) {
  .sec-feature .feature-list__item .cont .ttl {
    margin: 15px 0 10px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

.sec-feature .feature-list__item .cont .ttl .small {
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 834px) {
  .sec-feature .feature-list__item .cont .ttl .small {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.reputation-block {
  padding: 100px 0 85px;
}

@media screen and (max-width: 834px) {
  .reputation-block {
    padding: 40px 0 50px;
  }
}

.reputation-block .desc {
  margin: 40px 0 60px;
}

@media screen and (max-width: 834px) {
  .reputation-block .desc {
    margin: 20px 0 30px;
  }
}

.reputation-block .reputation {
  padding: 20px;
  margin: 0 auto;
  max-width: 1050px;
  border-radius: 15px;
  background: rgba(249, 132, 182, 0.4);
  background: -o-linear-gradient(315deg, rgba(249, 132, 182, 0.4) 0%, rgba(0, 150, 223, 0.4) 100%);
  background: linear-gradient(135deg, rgba(249, 132, 182, 0.4) 0%, rgba(0, 150, 223, 0.4) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f984b6', endColorstr='#0096df',GradientType=1 );
}

@media screen and (max-width: 834px) {
  .reputation-block .reputation {
    padding: 15px;
  }
}

.reputation-block .reputation-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 50px 4.4% 50px 7.4%;
  background: #fff;
}

@media screen and (max-width: 834px) {
  .reputation-block .reputation-inner {
    padding: 40px 5%;
  }
}

.reputation-block .reputation .cont {
  width: 43.4%;
}

@media screen and (max-width: 834px) {
  .reputation-block .reputation .cont {
    margin-bottom: 30px;
    width: 100%;
  }
}

.reputation-block .reputation .cont .ttl {
  margin-bottom: 25px;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.73;
  letter-spacing: .08em;
  max-width: 376px;
}

@media screen and (max-width: 834px) {
  .reputation-block .reputation .cont .ttl {
    margin-bottom: 15px;
    max-width: 100%;
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 1.6;
    text-align: center;
  }
}

.reputation-block .reputation .cont .ttl img {
  margin-right: 5px;
  width: 71px;
  vertical-align: initial;
}

.reputation-block .reputation .img {
  width: 50%;
}

@media screen and (max-width: 834px) {
  .reputation-block .reputation .img {
    width: 100%;
  }
}

.reputation-block .reputation .note {
  margin-top: 10px;
  font-size: 12px;
  font-size: 1.2rem;
}

.support-block {
  padding: 95px 0 110px;
  background-color: #e8f1f6;
  background-image: url(../img/img-feature06.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center top;
}

@media screen and (max-width: 834px) {
  .support-block {
    padding: 40px 0;
    background-size: auto 100vw;
  }
}

@media screen and (max-width: 640px) {
  .support-block {
    background-size: auto 120vw;
  }
}

.support-block .ttl-block {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.6;
}

@media screen and (max-width: 834px) {
  .support-block .ttl-block {
    font-size: max(24px, 3.59vw);
  }
}

.support-block .ttlsub-block {
  margin: 60px 0 35px;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.6;
}

@media screen and (max-width: 834px) {
  .support-block .ttlsub-block {
    margin: 20px 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.support-block .ttlsub-block span {
  display: inline-block;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 834px) {
  .support-block .ttlsub-block {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 834px) and (max-width: 834px) {
  .support-block .ttlsub-block {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.support-block .desc {
  text-align: center;
}

.support-block .inner-box {
  margin-top: 45px;
  padding: 65px 7.2% 35px;
  background: #fff;
  border-radius: 15px;
}

@media screen and (max-width: 1024px) {
  .support-block .inner-box {
    padding: 65px 5% 35px;
  }
}

@media screen and (max-width: 834px) {
  .support-block .inner-box {
    margin-top: 30px;
    padding: 40px 5% 15px;
  }
}

.support-block .support-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 42px 4.8% 45px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 834px) {
  .support-block .support-item {
    margin-bottom: 30px;
    padding: 25px 5%;
  }
}

.support-block .support-item .img {
  width: 46.42%;
}

@media screen and (max-width: 834px) {
  .support-block .support-item .img {
    margin-bottom: 20px;
    width: 100%;
  }
}

.support-block .support-item .cont {
  width: 47%;
}

@media screen and (max-width: 1024px) {
  .support-block .support-item .cont {
    width: 50%;
  }
}

@media screen and (max-width: 834px) {
  .support-block .support-item .cont {
    width: 100%;
  }
}

.support-block .support-item .cont .ttl {
  margin-bottom: 20px;
  padding-left: 83px;
  line-height: 1.7;
  font-size: 21px;
  font-size: 2.1rem;
  background-size: 63px;
  background-position: left center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 834px) {
  .support-block .support-item .cont .ttl {
    margin-bottom: 15px;
    padding-left: 65px;
    line-height: 1.6;
    font-size: 18px;
    font-size: 1.8rem;
    background-size: 55px;
  }
}

.support-block .support-item .cont .ttl .small {
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 834px) {
  .support-block .support-item .cont .ttl .small {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.support-block .support-item.item01 {
  margin-top: 50px;
}

@media screen and (max-width: 834px) {
  .support-block .support-item.item01 {
    margin-top: 40px;
  }
}

.support-block .support-item.item01 .cont .ttl {
  background-image: url(../img/icn05.png);
}

.support-block .support-item.item02 .cont .ttl {
  background-image: url(../img/icn06.png);
}

.support-block .support-item.item03 .cont .ttl {
  background-image: url(../img/icn07.png);
}

.support-block .support-item.item04 .cont .ttl {
  background-image: url(../img/icn08.png);
}

.support-block .main-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 680px;
}

.sec-promise {
  padding: 105px 0 60px;
}

@media screen and (max-width: 834px) {
  .sec-promise {
    padding: 50px 0 10px;
  }
}

.sec-promise .c-ttl01 {
  margin: 30px 0 35px;
}

@media screen and (max-width: 834px) {
  .sec-promise .c-ttl01 {
    margin: 20px 0 35px;
  }
}

.sec-promise .lead-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px auto 30px;
  max-width: 930px;
}

@media screen and (max-width: 834px) {
  .sec-promise .lead-block {
    margin-top: 40px;
  }
}

.sec-promise .lead-block .img {
  padding-left: 7.5%;
  width: 43.54%;
}

@media screen and (max-width: 834px) {
  .sec-promise .lead-block .img {
    margin-top: 20px;
    padding-left: 0;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
  }
  .sec-promise .lead-block .img img {
    width: 80%;
  }
}

.sec-promise .lead-block .cont {
  width: 50%;
}

@media screen and (max-width: 834px) {
  .sec-promise .lead-block .cont {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.sec-promise .lead-block .ttl-lead {
  margin-bottom: 25px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.875;
}

@media screen and (max-width: 834px) {
  .sec-promise .lead-block .ttl-lead {
    margin-bottom: 15px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.6;
    text-align: center;
  }
}

.sec-promise .promise-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 55px 5.45% 5px;
  background: #e8f1f6;
  border-radius: 14px;
}

@media screen and (max-width: 834px) {
  .sec-promise .promise-block {
    padding: 35px 5% 5px;
  }
}

.sec-promise .promise-block__item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 55px;
  width: 45%;
}

@media screen and (max-width: 990px) {
  .sec-promise .promise-block__item {
    width: 48%;
  }
}

@media screen and (max-width: 834px) {
  .sec-promise .promise-block__item {
    margin-bottom: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .sec-promise .promise-block__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sec-promise .promise-block__item img {
  width: 96px;
}

@media screen and (max-width: 640px) {
  .sec-promise .promise-block__item img {
    display: block;
    margin: 0 auto 15px;
  }
}

.sec-promise .promise-block__item .txt {
  width: min(calc(100% - 120px), 68.53%);
  text-align: left;
}

@media screen and (max-width: 834px) {
  .sec-promise .promise-block__item .txt {
    width: calc(100% - 90px);
  }
}

@media screen and (max-width: 640px) {
  .sec-promise .promise-block__item .txt {
    text-align: center;
    width: 100%;
  }
}

.sec-promise .promise-block__item .txt .c-txt03 {
  text-align: left;
}

.sec-promise .promise-block__item .ttl {
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 6px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  border-bottom: 1px solid #0096df;
}

.sec-promise .promise-block__item .ttl .no {
  display: inline-block;
  margin-right: 15px;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1;
}

@media screen and (max-width: 834px) {
  .sec-promise .promise-block__item .ttl .no {
    margin-right: 10px;
    font-size: 30px;
    font-size: 3rem;
  }
}

.sec-promise .worklife-block {
  padding: 92px 0 0;
}

@media screen and (max-width: 834px) {
  .sec-promise .worklife-block {
    padding: 50px 0 0;
  }
}

.sec-promise .worklife-block .cap {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4;
}

@media screen and (max-width: 834px) {
  .sec-promise .worklife-block .cap {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-promise .worklife-block .cap span {
  position: relative;
  display: inline-block;
  padding: 0 30px 0 40px;
}

.sec-promise .worklife-block .cap span:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 21px;
  height: 28px;
}

@media screen and (max-width: 834px) {
  .sec-promise .worklife-block .cap span {
    padding: 0 20px 0 30px;
  }
}

.sec-promise .worklife-block .cap span:before, .sec-promise .worklife-block .cap span:after {
  bottom: 0;
}

.sec-promise .worklife-block .cap span:before {
  left: 0;
  background: url(../img/img-ttl-deco_l.png) no-repeat center center;
  background-size: contain;
}

.sec-promise .worklife-block .cap span:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 21px;
  height: 28px;
}

.sec-promise .worklife-block .cap span:after {
  right: 0;
  background: url(../img/img-ttl-deco_r.png) no-repeat center center;
  background-size: contain;
}

.sec-promise .worklife-block .ttl-lead {
  margin: 20px 0 35px;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.73;
}

@media screen and (max-width: 834px) {
  .sec-promise .worklife-block .ttl-lead {
    margin: 10px 0 20px;
    font-size: 22px;
    font-size: 2.2rem;
    text-align: left;
  }
}

.sec-promise .worklife-block .txt-lead {
  text-align: center;
}

@media screen and (max-width: 834px) {
  .sec-promise .worklife-block .txt-lead {
    text-align: left;
  }
}

.sec-promise .worklife-block__item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

@media screen and (max-width: 834px) {
  .sec-promise .worklife-block__item {
    margin-bottom: 50px;
  }
}

.sec-promise .worklife-block__item:first-of-type {
  margin-top: 78px;
}

@media screen and (max-width: 834px) {
  .sec-promise .worklife-block__item:first-of-type {
    margin-top: 40px;
  }
}

.sec-promise .worklife-block__item .img {
  width: 50%;
  position: relative;
  padding-top: 35px;
  padding-right: 35px;
}

.sec-promise .worklife-block__item .img:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 80.1%;
  height: 83.6%;
}

@media screen and (max-width: 834px) {
  .sec-promise .worklife-block__item .img {
    margin-bottom: 20px;
    padding-top: 25px;
    padding-right: 25px;
    width: 100%;
  }
}

.sec-promise .worklife-block__item .img:before {
  top: 0;
  right: 0;
  background: rgba(84, 183, 234, 0.3);
  background: -o-linear-gradient(315deg, rgba(84, 183, 234, 0.3) 0%, rgba(241, 154, 173, 0.3) 100%);
  background: linear-gradient(135deg, rgba(84, 183, 234, 0.3) 0%, rgba(241, 154, 173, 0.3) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#54b7ea', endColorstr='#f19aad',GradientType=1 );
  z-index: -1;
}

@media screen and (min-width: 835px) {
  .sec-promise .worklife-block__item .img.__r {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.sec-promise .worklife-block__item .txt-deco {
  position: absolute;
  top: 0;
  left: 6.4%;
  display: inline-block;
  color: #b7b7b7;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .12em;
  line-height: 1;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: .35;
}

@media screen and (max-width: 834px) {
  .sec-promise .worklife-block__item .txt-deco {
    left: 4%;
    font-size: max(24px, 3.59vw);
  }
}

.sec-promise .worklife-block__item .cont {
  margin-top: -5%;
  width: 50%;
  max-width: 480px;
  padding: 0 3.5%;
}

@media screen and (max-width: 834px) {
  .sec-promise .worklife-block__item .cont {
    margin-top: 0;
    padding: 0;
    width: 100%;
  }
}

@media screen and (min-width: 835px) {
  .sec-promise .worklife-block__item .cont.__l {
    margin-top: 0;
    padding-top: 3%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.sec-promise .worklife-block__item .cont .ttl-block {
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 2;
}

@media screen and (max-width: 834px) {
  .sec-promise .worklife-block__item .cont .ttl-block {
    margin-bottom: 15px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

.sec-promise .worklife-block__item .cont .ttl-block .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, #ffe0ed));
  background: -o-linear-gradient(transparent 55%, #ffe0ed 55%);
  background: linear-gradient(transparent 55%, #ffe0ed 55%);
}

.sec-service {
  padding: 105px 0 60px;
  background: #e8f1f6;
}

@media screen and (max-width: 834px) {
  .sec-service {
    padding: 50px 0 40px;
  }
}

.sec-service .txt-lead {
  margin: 35px 0 55px;
}

@media screen and (max-width: 834px) {
  .sec-service .txt-lead {
    margin: 20px 0 30px;
  }
}

.sec-service .chart-block {
  padding: 48px 5% 38px;
  background: #fff;
  border-radius: 15px;
}

@media screen and (max-width: 834px) {
  .sec-service .chart-block {
    padding: 30px 5% 20px;
  }
  .sec-service .chart-block .scroll-box-sp {
    margin-right: -5%;
  }
}

.sec-service .chart-block .note {
  margin-top: 10px;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: left;
}

.sec-service .chart-block .ttl {
  margin-bottom: 35px;
  color: #e8f1f6;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 834px) {
  .sec-service .chart-block .ttl {
    margin-bottom: 20px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.sec-service .chart-block img {
  max-width: 705px;
  width: 100%;
}

@media screen and (max-width: 834px) {
  .sec-service .chart-block img {
    min-width: 700px;
  }
}

.sec-voice {
  padding: 130px 0 75px;
}

@media screen and (max-width: 834px) {
  .sec-voice {
    padding: 50px 0 30px;
  }
}

.sec-voice .voice-slide-wrap {
  position: relative;
  margin-top: 55px;
}

.sec-voice .voice-slide-wrap .slide-arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(508px + 3.6vw);
  width: 31.19vw;
}

@media screen and (max-width: 1300px) {
  .sec-voice .voice-slide-wrap .slide-arrows {
    width: 59vw;
  }
}

@media screen and (max-width: 640px) {
  .sec-voice .voice-slide-wrap .slide-arrows {
    width: 92vw;
  }
}

.sec-voice .voice-slide .slick-dots {
  margin-top: 20px;
}

@media screen and (max-width: 834px) {
  .sec-voice .voice-slide .slick-dots {
    margin-top: 10px;
  }
}

.sec-voice .voice-slide__item {
  padding: 10px 24px;
}

@media screen and (max-width: 834px) {
  .sec-voice .voice-slide__item {
    padding: 15px;
  }
}

.sec-voice .voice-slide .item-inner {
  padding: 50px 8.85% 55px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 834px) {
  .sec-voice .voice-slide .item-inner {
    padding: 25px 7%;
  }
}

.sec-voice .voice-slide .head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f984b6;
}

@media screen and (max-width: 834px) {
  .sec-voice .voice-slide .head {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

.sec-voice .voice-slide .head .icn {
  width: 105px;
}

@media screen and (max-width: 834px) {
  .sec-voice .voice-slide .head .icn {
    width: 80px;
  }
}

@media screen and (max-width: 640px) {
  .sec-voice .voice-slide .head .icn {
    margin-bottom: 12px;
    width: 100%;
    text-align: center;
  }
  .sec-voice .voice-slide .head .icn img {
    display: inline-block;
    width: 90px;
  }
}

.sec-voice .voice-slide .head .txt {
  width: calc(100% - 135px);
}

@media screen and (max-width: 834px) {
  .sec-voice .voice-slide .head .txt {
    width: calc(100% - 95px);
  }
}

@media screen and (max-width: 640px) {
  .sec-voice .voice-slide .head .txt {
    width: 100%;
  }
}

.sec-voice .voice-slide .head .txt .ttl {
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 834px) {
  .sec-voice .voice-slide .head .txt .ttl {
    margin-bottom: 0;
    line-height: 1.6;
  }
}

.sec-voice .voice-slide .head .txt .user {
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 834px) {
  .sec-voice .voice-slide .head .txt .user {
    margin-bottom: 8px;
    text-align: center;
  }
}

.sec-flow {
  padding: 75px 0 94px;
}

@media screen and (max-width: 834px) {
  .sec-flow {
    padding: 30px 0 50px;
  }
}

.sec-flow .lead-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 67px 0 60px;
  padding: 50px 7.8% 40px;
  border: 1px solid #3e3e3e;
}

@media screen and (max-width: 990px) {
  .sec-flow .lead-block {
    margin: 40px 0;
    padding: 35px 5%;
  }
}

.sec-flow .lead-block .img {
  margin-top: -77px;
  margin-left: -6.3%;
  width: 42.16%;
}

@media screen and (max-width: 834px) {
  .sec-flow .lead-block .img {
    margin-bottom: 30px;
    margin-top: -55px;
    margin-left: -8%;
    width: 100%;
    text-align: center;
  }
  .sec-flow .lead-block .img img {
    width: 70%;
  }
}

@media screen and (max-width: 640px) {
  .sec-flow .lead-block .img img {
    width: 90%;
    max-width: 450px;
  }
}

.sec-flow .lead-block .txt {
  width: 60.3%;
}

@media screen and (max-width: 834px) {
  .sec-flow .lead-block .txt {
    width: 100%;
  }
}

.sec-flow .lead-block .ttl {
  margin-bottom: 25px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.4;
}

@media screen and (max-width: 834px) {
  .sec-flow .lead-block .ttl {
    margin-bottom: 15px;
    font-size: 20px;
    font-size: 2rem;
  }
}

.sec-flow .flow-block-wrap {
  margin-bottom: 23px;
  padding-bottom: 20px;
}

@media screen and (max-width: 1180px) {
  .sec-flow .flow-block-wrap {
    overflow-x: scroll;
  }
}

@media screen and (max-width: 834px) {
  .sec-flow .flow-block-wrap {
    margin-right: calc(((100vw - 100%) / 2) * -1);
  }
  .sec-flow .flow-block-wrap .c-txt03 {
    line-height: 1.5;
  }
}

.sec-flow .flow-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 1100px;
}

.sec-flow .flow-block__item {
  position: relative;
  width: 15.72%;
}

.sec-flow .flow-block__item:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 26px;
}

.sec-flow .flow-block__item:before {
  top: 58px;
  right: -24%;
  content: '\f0da';
  color: #dbdbdb;
  font-size: 40px;
  font-size: 4rem;
  line-height: .7;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.sec-flow .flow-block__item:last-child:before {
  display: none;
}

.sec-flow .flow-block__item .icn {
  width: 83.5%;
}

.sec-flow .flow-block__item .ttl {
  margin: 20px 0 25px;
  font-size: 18px;
  font-size: 1.8rem;
  image-rendering: 1.4;
}

.sec-flow .flow-block__item .c-link01 {
  margin: 15px 0 10px;
}

.sec-flow .flow-block__item .btn-line {
  padding: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 5px;
}

.sec-flow .flow-block__item .note {
  padding: 10px 20px;
  margin-top: 16px;
  border: 1px solid #3e3e3e;
}

.sec-faq {
  padding: 100px 0 90px;
  background: #e8f1f6;
}

@media screen and (max-width: 834px) {
  .sec-faq {
    padding: 50px 0 30px;
  }
}

.sec-faq .c-ttl01 {
  margin-bottom: 65px;
}

@media screen and (max-width: 834px) {
  .sec-faq .c-ttl01 {
    margin-bottom: 40px;
  }
}

.sec-faq .faq-block {
  margin-bottom: 40px;
  background: #fff;
  border-radius: 4px;
}

@media screen and (max-width: 834px) {
  .sec-faq .faq-block {
    margin-bottom: 20px;
  }
}

.sec-faq .faq-block .faq-q {
  position: relative;
  padding: 25px 4% 20px 3.18%;
  line-height: 1.6;
  border-radius: 4px;
  cursor: pointer;
}

@media screen and (min-width: 835px) {
  .sec-faq .faq-block .faq-q {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .sec-faq .faq-block .faq-q:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 834px) {
  .sec-faq .faq-block .faq-q {
    padding: 20px 40px 20px 4%;
  }
}

.sec-faq .faq-block .faq-q:before {
  content: '\f0fe';
  display: inline-block;
  position: absolute;
  right: 2.2%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 22px;
  color: #dbdbdb;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

@media screen and (max-width: 834px) {
  .sec-faq .faq-block .faq-q:before {
    right: 15px;
  }
}

.sec-faq .faq-block .faq-q.active:before {
  content: '\f146';
}

.sec-faq .faq-block .faq-q .txt-q {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 834px) {
  .sec-faq .faq-block .faq-q .txt-q {
    padding-left: 25px;
  }
}

.sec-faq .faq-block .faq-q .txt-q:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: -1px;
  content: "Q.";
  color: #f984b6;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
}

.sec-faq .faq-block .faq-a {
  display: none;
  border-top: 1px solid #e6e0da;
  padding: 35px 5.8%;
}

@media screen and (max-width: 834px) {
  .sec-faq .faq-block .faq-a {
    padding: 25px 4%;
  }
}

.sec-faq .faq-block .faq-a .txt-a {
  position: relative;
  padding-left: 30px;
}

@media screen and (max-width: 834px) {
  .sec-faq .faq-block .faq-a .txt-a {
    padding-left: 25px;
  }
}

.sec-faq .faq-block .faq-a .txt-a:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: -1px;
  content: "A.";
  color: #f984b6;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
}

.btn-ft {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  z-index: 2;
}

@media screen and (max-width: 834px) {
  .btn-ft {
    position: fixed;
    bottom: 0;
    left: 0;
  }
}

.btn-ft a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 33.33%;
  height: 150px;
  text-align: center;
  color: #fff;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 500;
}

@media screen and (min-width: 835px) {
  .btn-ft a {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .btn-ft a:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 834px) {
  .btn-ft a {
    font-size: 16px;
    font-size: 1.6rem;
    height: 70px;
  }
}

@media screen and (max-width: 640px) {
  .btn-ft a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.btn-ft a i {
  margin-right: 10px;
  font-size: 25px;
  font-size: 2.5rem;
}

@media screen and (max-width: 834px) {
  .btn-ft a i {
    margin-right: 5px;
    font-size: 20px;
    font-size: 2rem;
  }
}

.btn-ft .btn-tel {
  background: #0096df;
}

.btn-ft .btn-tel .jp {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 834px) {
  .btn-ft .btn-tel .jp {
    margin-bottom: 10px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 640px) {
  .btn-ft .btn-tel i {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.btn-ft .btn-resist {
  background: #f984b6;
}

.btn-ft .btn-line_ft {
  background: #02ba04;
}

@media screen and (max-width: 640px) {
  .btn-ft .btn-line_ft i {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 640px) {
  .btn-ft .btn-resist i,
  .btn-ft .btn-line_ft i {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.js-popup {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

@media screen and (max-width: 834px) {
  .js-popup {
    opacity: 0;
    visibility: hidden;
  }
  .js-popup.on {
    opacity: 1;
    visibility: visible;
  }
}

.page-entry,
.page-thanks {
  padding: 250px 0 120px;
  background: #e8f1f6;
}

@media screen and (max-width: 834px) {
  .page-entry,
  .page-thanks {
    padding: 110px 0 60px;
  }
}

.page-entry .inner,
.page-thanks .inner {
  max-width: 1280px;
}

.page-entry .txt-lead,
.page-thanks .txt-lead {
  margin: 64px 0 76px;
}

@media screen and (max-width: 834px) {
  .page-entry .txt-lead,
  .page-thanks .txt-lead {
    margin: 30px 0 40px;
  }
}

.form-wrap {
  padding: 80px 9.5% 100px;
  background: #fff;
  border-radius: 8px;
}

@media screen and (max-width: 990px) {
  .form-wrap {
    padding: 60px 5%;
  }
}

@media screen and (max-width: 834px) {
  .form-wrap {
    padding: 20px 5% 40px;
  }
}

.form-wrap input, .form-wrap button, .form-wrap textarea, .form-wrap select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-wrap input[type="text"],
.form-wrap textarea {
  display: inline-block;
  width: 100%;
  padding: 18px 15px;
  border: 1px solid #d1d1d1;
  border-radius: 0;
  resize: none;
}

@media screen and (max-width: 834px) {
  .form-wrap input[type="text"],
  .form-wrap textarea {
    padding: 14px 1em;
  }
}

.form-wrap textarea {
  height: 155px;
}

.form-wrap ::-webkit-input-placeholder {
  color: #bcbcbc;
}

.form-wrap ::-moz-placeholder {
  color: #bcbcbc;
}

.form-wrap :-ms-input-placeholder {
  color: #bcbcbc;
}

.form-wrap ::-ms-input-placeholder {
  color: #bcbcbc;
}

.form-wrap ::placeholder {
  color: #bcbcbc;
}

.form-wrap .txt-privacy {
  margin: 58px 0 30px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 834px) {
  .form-wrap .txt-privacy {
    margin: 40px 0 30px;
  }
}

.form-wrap .txt-privacy a {
  display: inline-block;
  padding-bottom: 4px;
  color: #0391d4;
  border-bottom: 1px solid #0391d4;
}

.form-wrap .btn {
  margin: 0 10px;
  display: inline-block;
  padding: 45px 10px;
  width: 100%;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: .08em;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
}

@media screen and (min-width: 835px) {
  .form-wrap .btn {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .form-wrap .btn:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 834px) {
  .form-wrap .btn {
    padding: 20px 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.form-wrap .btn-submit {
  max-width: 506px;
  color: #fff;
  background: #0391d4;
}

.form-wrap .btn-back {
  color: #fff;
  background: #ccc;
}

.form-wrap .form-control {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 30px;
}

.form-wrap .form-inline {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 22px 0;
}

@media screen and (max-width: 834px) {
  .form-wrap .form-inline {
    padding: 12px 0;
  }
}

.form-wrap .form-inline .form-head {
  padding-top: 15px;
  width: 26%;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (max-width: 1200px) {
  .form-wrap .form-inline .form-head {
    width: 250px;
  }
}

@media screen and (max-width: 834px) {
  .form-wrap .form-inline .form-head {
    margin-bottom: 15px;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.form-wrap .form-inline .form-head.pt0 {
  padding-top: 5px;
}

.form-wrap .form-inline .form-head .tag {
  display: inline-block;
  margin-right: 10px;
  width: 50px;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 27px;
  border-radius: 4px;
}

.form-wrap .form-inline .form-head .required {
  background: #f984b6;
}

.form-wrap .form-inline .form-head .any {
  background: #ddd;
}

.form-wrap .form-inline .form-cont {
  width: 74%;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 1200px) {
  .form-wrap .form-inline .form-cont {
    width: calc(100% - 250px);
  }
}

@media screen and (max-width: 834px) {
  .form-wrap .form-inline .form-cont {
    width: 100%;
  }
}

.form-wrap .form-inline .select-inline {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form-wrap .form-inline .select-inline.condition .c-checkbox {
  margin-right: 13.98%;
}

@media screen and (max-width: 1200px) {
  .form-wrap .form-inline .select-inline.condition .c-checkbox {
    margin-right: 8%;
  }
}

@media screen and (max-width: 640px) {
  .form-wrap .form-inline .select-inline.condition .c-checkbox {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.form-wrap .form-inline .select-inline.spec .c-checkbox {
  margin-bottom: 25px;
  padding-right: 2%;
  width: 25%;
}

@media screen and (max-width: 990px) {
  .form-wrap .form-inline .select-inline.spec .c-checkbox {
    width: 50%;
  }
}

@media screen and (max-width: 834px) {
  .form-wrap .form-inline .select-inline.spec .c-checkbox {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 640px) {
  .form-wrap .form-inline .select-inline.spec .c-checkbox {
    width: 100%;
    margin-right: 0;
  }
}

.form-wrap .form-inline .postcode-inline {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

@media screen and (max-width: 834px) {
  .form-wrap .form-inline .postcode-inline {
    margin-bottom: 10px;
  }
}

.form-wrap .form-inline .postcode-inline input {
  width: 155px;
}

@media screen and (max-width: 640px) {
  .form-wrap .form-inline .postcode-inline input {
    width: 110px;
  }
}

.form-wrap .form-inline .tel-inline {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.form-wrap .form-inline .tel-inline input {
  width: 118px;
}

@media screen and (max-width: 640px) {
  .form-wrap .form-inline .tel-inline input {
    width: 80px;
  }
}

.form-wrap .error {
  display: block;
  margin-top: 10px;
  color: #f984b6;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 500;
}

.form-wrap .select-birthday.select-inline {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.form-wrap .select-birthday.select-inline .select-inline__item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-right: 1em;
}

@media screen and (max-width: 990px) {
  .form-wrap .select-birthday.select-inline .select-inline__item {
    margin-right: .5em;
  }
}

.form-wrap .select-birthday.select-inline .select-inline__item:last-child {
  margin-right: 0;
}

.form-wrap .select-birthday.select-inline .select-inline__item .c-selectbox {
  margin-right: 1em;
}

@media screen and (max-width: 990px) {
  .form-wrap .select-birthday.select-inline .select-inline__item .c-selectbox {
    margin-right: .5em;
  }
}

.form-wrap.confirm {
  padding: 80px 6.66% 125px;
}

@media screen and (max-width: 990px) {
  .form-wrap.confirm {
    padding: 60px 5% 40px;
  }
}

.form-wrap.confirm .form-inline {
  padding: 0;
}

.form-wrap.confirm .form-head {
  padding: 36px 0 36px 3.9%;
  width: 237px;
  color: #fff;
  background: #66b5dc;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 834px) {
  .form-wrap.confirm .form-head {
    margin: 0;
    padding: 15px;
    width: 100%;
  }
}

.form-wrap.confirm .form-head .tag {
  display: none;
}

.form-wrap.confirm .form-cont {
  padding: 36px 0 36px 3.9%;
  width: calc(100% - 237px);
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 834px) {
  .form-wrap.confirm .form-cont {
    padding: 20px 15px;
    width: 100%;
  }
}

.form-wrap.confirm .form-control {
  margin-top: 110px;
}

@media screen and (max-width: 834px) {
  .form-wrap.confirm .form-control {
    margin-top: 40px;
  }
}

.form-wrap.confirm .form-control .btn {
  max-width: 455px;
}

.form-wrap.confirm .form-control .btn-submit {
  background: #f984b6;
}

.c-checkbox {
  position: relative;
  display: inline-block;
  padding: 4px 0 4px 42px;
  cursor: pointer;
  text-align: left;
}

.c-checkbox > span {
  display: inline-block;
}

.c-checkbox > span:before {
  background: #fff;
  border: 1px solid #d1d1d1;
  content: '';
  display: block;
  width: 29px;
  height: 29px;
  position: absolute;
  left: 0;
  top: 1px;
}

.c-checkbox > span:after {
  border-right: 4px solid #2ea8e4;
  border-bottom: 4px solid #2ea8e4;
  content: '';
  display: block;
  height: 18px;
  width: 10px;
  opacity: 0;
  position: absolute;
  top: 2px;
  left: 8px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-checkbox input[type=checkbox]:checked + span:after {
  opacity: 1;
}

.c-radio {
  position: relative;
  display: inline-block;
  margin-right: 6.9%;
  padding: 6px 0 8px 42px;
  cursor: pointer;
  text-align: left;
}

.c-radio > span {
  display: inline-block;
}

.c-radio > span:before {
  background: #fff;
  border: 1px solid #d1d1d1;
  content: '';
  display: block;
  width: 29px;
  height: 29px;
  position: absolute;
  left: 0;
  top: 1px;
  border-radius: 50%;
}

.c-radio > span:after {
  position: absolute;
  top: 9px;
  left: 8px;
  content: '';
  display: block;
  height: 15px;
  width: 15px;
  background: #2ea8e4;
  border-radius: 50%;
  opacity: 0;
}

.c-radio input[type=radio]:checked + span:before {
  border: 1px solid #2ea8e4;
}

.c-radio input[type=radio]:checked + span:after {
  opacity: 1;
}

.c-selectbox {
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #d1d1d1;
  border-radius: 0;
}

.c-selectbox:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 6px;
  height: 6px;
}

.c-selectbox:before {
  top: 50%;
  right: 10px;
  margin-top: -6px;
  border-top: 2px solid #d1d1d1;
  border-right: 2px solid #d1d1d1;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
      transform: rotate(135deg);
}

.c-selectbox select {
  display: inline-block;
  padding: 18px 30px 18px 15px;
  width: 100%;
  height: 57px;
  cursor: pointer;
}

@media screen and (max-width: 990px) {
  .c-selectbox select {
    padding-right: 20px;
  }
}

.c-selectbox.w100 {
  width: 100px;
}

@media screen and (max-width: 990px) {
  .c-selectbox.w100 {
    width: 80px;
  }
}

@media screen and (max-width: 640px) {
  .c-selectbox.w100 {
    width: 70px;
  }
}

.c-selectbox.w140 {
  width: 140px;
}

@media screen and (max-width: 990px) {
  .c-selectbox.w140 {
    width: 120px;
  }
}

@media screen and (max-width: 640px) {
  .c-selectbox.w140 {
    width: 90px;
  }
}

.privacy-block {
  margin-bottom: 30px;
}

@media screen and (max-width: 834px) {
  .privacy-block {
    margin-bottom: 20px;
  }
}

.privacy-block .head {
  margin-bottom: 20px;
  padding-bottom: 15px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6;
  border-bottom: 1px solid #d3cdcd;
}

@media screen and (max-width: 834px) {
  .privacy-block .head {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}

.privacy-block .desc {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.14;
}

@media screen and (max-width: 834px) {
  .privacy-block .desc {
    line-height: 1.6;
  }
}

@media screen and (max-width: 834px) {
  .page-thanks .form-wrap {
    padding-top: 40px;
  }
}

.page-thanks .ttl-wrap {
  font-size: 18px;
  font-size: 1.8rem;
}

.page-thanks .desc {
  margin: 35px 0 65px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2.4;
}

@media screen and (max-width: 834px) {
  .page-thanks .desc {
    margin: 20px 0 40px;
    line-height: 2;
  }
}

/*# sourceMappingURL=maps/styles.css.map */
